diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 8680993055..89066ee92e 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -23,7 +23,7 @@ These are just guidelines, not rules, use your best judgment and feel free to pr ### Code of Conduct -This project adheres to the Contributor Covenant [code of conduct](CODE_OF_CONDUCT.md). +This project adheres to the Contributor Covenant [code of conduct](code_of_conduct.md). By participating, you are expected to uphold this code. ## How Can I Contribute? @@ -38,7 +38,7 @@ Any code submissions that do not meet our coding standards are likely to be reje * If it is something like a bugfix that Polaris would want (the codebase we use), you may want to consider coding it there as well. They may want any general gameplay bugfixes, and things that are obviously intended to work one way, but do not. They do not have any of our fluff species (vulp, akula, fenn, etc) so do not make PRs related to that, or any vore content to them. * Change whitespace as little as possible. Do not randomly add/remove whitespace. -* Map changes must be in tgm format. See the [Mapmerge2 Readme] for details. +* Map changes must be in tgm format. See the [Mapmerge2 Readme] for details, or use [StrongDMM] which can automatically save maps as tgm. ### Pull Requests @@ -60,4 +60,5 @@ Commits with a git authorship date prior to `1420675200 +0000` (2015/01/08 00:00 All commits whose authorship dates are not prior to `1420675200 +0000` are assumed to be licensed under AGPL v3, if you wish to license under GPL v3 please make this clear in the commit message and any added files. -[Mapmerge2 Readme]: ../tools/mapmerge2/readme.md +[Mapmerge2 Readme]: ../tools/mapmerge2/mapmerge tool readme.md +[StrongDMM]: ../tools/StrongDMM/README.md \ No newline at end of file diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 59319c4b8b..1760c46fae 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -69,7 +69,7 @@ jobs: run: | sudo dpkg --add-architecture i386 sudo apt update || true - sudo apt install zlib1g-dev:i386 libssl-dev:i386 pkg-config:i386 + sudo apt install zlib1g-dev:i386 libssl-dev:i386 ldd librust_g.so - name: Unit Tests run: | diff --git a/ATTRIBUTIONS.md b/ATTRIBUTIONS.md index b205feae99..41fe7592fe 100644 --- a/ATTRIBUTIONS.md +++ b/ATTRIBUTIONS.md @@ -44,3 +44,13 @@ **License:** [CC BY-NC-SA 4.0](https://creativecommons.org/licenses/by-nc-sa/4.0/)
**URL:** [Patreon Post](https://www.patreon.com/posts/diable-avionics-44573931)
**Notes:** Permission to use assets also given in writing.
+
+**File:** `sound/ambience/space/aurora_caelus.ogg`
+**Title:** Music for Manatees
+**Creator:** Kevin MacLeod (incompetech.com)
+**License:** [CC BY 3.0](http://creativecommons.org/licenses/by/3.0/)
+
+**File:** `sound/ambience/startup.ogg` and `sound/ambience/shutdown.ogg`
+**Title:** Spaceship starup and shutdown
+**Creator:** viznoman (https://freesound.org/people/viznoman/sounds/267308/)
+**License:** [CC BY 3.0](http://creativecommons.org/licenses/by/3.0/)
\ No newline at end of file diff --git a/_build_dependencies.sh b/_build_dependencies.sh index 3e1b40130b..8e582bab3d 100644 --- a/_build_dependencies.sh +++ b/_build_dependencies.sh @@ -6,6 +6,6 @@ export NODE_VERSION=12 # Byond Major export BYOND_MAJOR=514 # Byond Minor -export BYOND_MINOR=1557 +export BYOND_MINOR=1569 # Macro Count export MACRO_COUNT=4 \ No newline at end of file diff --git a/code/ATMOSPHERICS/components/binary_devices/algae_generator_vr.dm b/code/ATMOSPHERICS/components/binary_devices/algae_generator_vr.dm index 451a2a8bce..f4207eeba5 100644 --- a/code/ATMOSPHERICS/components/binary_devices/algae_generator_vr.dm +++ b/code/ATMOSPHERICS/components/binary_devices/algae_generator_vr.dm @@ -238,9 +238,7 @@ if(amount <= 0) amount = S.max_amount var/ejected = min(round(stored_material[material_name] / S.perunit), amount) - S.amount = min(ejected, amount) - if(S.amount <= 0) - qdel(S) + if(!S.set_amount(min(ejected, amount))) return stored_material[material_name] -= ejected * S.perunit if(recursive && stored_material[material_name] >= S.perunit) @@ -256,7 +254,7 @@ var/max_res_amount = storage_capacity[S.material.name] if(stored_material[S.material.name] + S.perunit <= max_res_amount) var/count = 0 - while(stored_material[S.material.name] + S.perunit <= max_res_amount && S.amount >= 1) + while(stored_material[S.material.name] + S.perunit <= max_res_amount && S.get_amount() >= 1) stored_material[S.material.name] += S.perunit S.use(1) count++ diff --git a/code/ATMOSPHERICS/components/tvalve.dm b/code/ATMOSPHERICS/components/tvalve.dm index 12c3fbfa13..acbf9f6ba2 100644 --- a/code/ATMOSPHERICS/components/tvalve.dm +++ b/code/ATMOSPHERICS/components/tvalve.dm @@ -329,9 +329,6 @@ /obj/machinery/atmospherics/tvalve/attackby(var/obj/item/weapon/W as obj, var/mob/user as mob) if (!W.is_wrench()) return ..() - if (istype(src, /obj/machinery/atmospherics/tvalve/digital)) - to_chat(user, "You cannot unwrench \the [src], it's too complicated.") - return 1 if(!can_unwrench()) to_chat(user, "You cannot unwrench \the [src], it too exerted due to internal pressure.") add_fingerprint(user) diff --git a/code/__defines/belly_modes_vr.dm b/code/__defines/belly_modes_vr.dm index c716615a7f..bf64819cd4 100644 --- a/code/__defines/belly_modes_vr.dm +++ b/code/__defines/belly_modes_vr.dm @@ -1,5 +1,6 @@ // Normal digestion modes #define DM_HOLD "Hold" +#define DM_HOLD_ABSORBED "Hold Absorbed" // Not a real bellymode, used for handling different idle messages for absorbed prey. #define DM_DIGEST "Digest" #define DM_ABSORB "Absorb" #define DM_UNABSORB "Unabsorb" @@ -10,10 +11,6 @@ #define DM_HEAL "Heal" #define DM_EGG "Encase In Egg" -//#define DM_ITEMWEAK "Digest (Item Friendly)" -//#define DM_STRIPDIGEST "Strip Digest (Items Only)" -//#define DM_DIGEST_NUMB "Digest (Numbing)" - //Addon mode flags #define DM_FLAG_NUMBING 0x1 #define DM_FLAG_STRIPPING 0x2 diff --git a/code/__defines/gamemode.dm b/code/__defines/gamemode.dm index b512065f61..c1606e77f6 100644 --- a/code/__defines/gamemode.dm +++ b/code/__defines/gamemode.dm @@ -38,9 +38,11 @@ #define BE_LOYALIST 0x4000 #define BE_PAI 0x8000 //VOREStation Add -#define BE_LOSTDRONE 0x10000 -#define BE_MAINTPRED 0x20000 -#define BE_MORPH 0x40000 +#define BE_LOSTDRONE 0x10000 +#define BE_MAINTPRED 0x20000 +#define BE_MORPH 0x40000 +#define BE_CORGI 0x80000 +#define BE_CURSEDSWORD 0x100000 //VOREStation Add End var/list/be_special_flags = list( @@ -64,6 +66,8 @@ var/list/be_special_flags = list( "Lost Drone" = BE_LOSTDRONE, "Maint Pred" = BE_MAINTPRED, "Morph" = BE_MORPH, + "Corgi" = BE_CORGI, + "Cursed Sword" = BE_CURSEDSWORD, //VOREStation Add End ) diff --git a/code/__defines/is_helpers.dm b/code/__defines/is_helpers.dm index 3f56ebda7f..07c25a40ab 100644 --- a/code/__defines/is_helpers.dm +++ b/code/__defines/is_helpers.dm @@ -21,6 +21,8 @@ #define isstorage(A) istype(A, /obj/item/weapon/storage) +#define ismecha(A) istype(A, /obj/mecha) + //--------------- //#define isarea(D) istype(D, /area) //Built in @@ -60,3 +62,4 @@ #define ismineralturf(A) istype(A, /turf/simulated/mineral) #define istaurtail(A) istype(A, /datum/sprite_accessory/tail/taur) +#define islongtail(A) istype(A, /datum/sprite_accessory/tail/longtail) diff --git a/code/__defines/machinery.dm b/code/__defines/machinery.dm index f17b037e80..afeef6e0f2 100644 --- a/code/__defines/machinery.dm +++ b/code/__defines/machinery.dm @@ -66,7 +66,9 @@ var/global/defer_powernet_rebuild = 0 // True if net rebuild will be called #define NETWORK_PRISON "Prison" #define NETWORK_SECURITY "Security" #define NETWORK_INTERROGATION "Interrogation" -#define NETWORK_TELECOM "Tcomms" +#define NETWORK_TELECOM "Telecomms" +#define NETWORK_EXPLORATION "Exploration" +#define NETWORK_XENOBIO "Xenobiology" #define NETWORK_THUNDER "Entertainment" //VOREStation Edit: broader definition #define NETWORK_COMMUNICATORS "Communicators" #define NETWORK_ALARM_ATMOS "Atmosphere Alarms" diff --git a/code/__defines/map.dm b/code/__defines/map.dm index 9bb1469212..760110b534 100644 --- a/code/__defines/map.dm +++ b/code/__defines/map.dm @@ -9,6 +9,7 @@ #define MAP_LEVEL_XENOARCH_EXEMPT 0x080 // Z-levels exempt from xenoarch digsite generation. #define MAP_LEVEL_PERSIST 0x100 // Z-levels where SSpersistence should persist between rounds #define MAP_LEVEL_MAPPABLE 0x200 // Z-levels where mapping units will work fully +#define MAP_LEVEL_BELOW_BLOCKED 0x400 // Z-levels in multiz with level below not meant to be 'normally' accessible // Misc map defines. #define SUBMAP_MAP_EDGE_PAD 8 // Automatically created submaps are forbidden from being this close to the main map's edge. //VOREStation Edit diff --git a/code/__defines/materials.dm b/code/__defines/materials.dm index 75e0ec5bcc..7086ef7c9d 100644 --- a/code/__defines/materials.dm +++ b/code/__defines/materials.dm @@ -18,6 +18,8 @@ #define MAT_LOG "log" #define MAT_SIFWOOD "alien wood" #define MAT_SIFLOG "alien log" +#define MAT_HARDWOOD "hardwood" +#define MAT_HARDLOG "hardwood log" #define MAT_STEELHULL "steel hull" #define MAT_PLASTEEL "plasteel" #define MAT_PLASTEELHULL "plasteel hull" @@ -49,6 +51,10 @@ #define MAT_BOROSILICATE "borosilicate glass" #define MAT_SANDSTONE "sandstone" #define MAT_FLINT "flint" +#define MAT_PLATINUM "platinum" +#define MAT_TRITIUM "tritium" +#define MAT_DEUTERIUM "deuterium" + #define DEFAULT_TABLE_MATERIAL MAT_PLASTIC #define DEFAULT_WALL_MATERIAL MAT_STEEL diff --git a/code/__defines/species_languages.dm b/code/__defines/species_languages.dm index 268b5d3253..46cff510cb 100644 --- a/code/__defines/species_languages.dm +++ b/code/__defines/species_languages.dm @@ -37,15 +37,17 @@ #define ALLERGEN_COFFEE 0x200 // Mostly here for tajara. #define ALLERGEN_SUGARS 0x400 // For unathi-like reactions #define ALLERGEN_EGGS 0x800 // For Skrell eggs allergy +#define ALLERGEN_STIMULANT 0x1000 // Stimulants are what makes the Tajaran heart go ruh roh - not just coffee! // Allergen reactions -#define AG_TOX_DMG 0x1 // the classic +#define AG_TOX_DMG 0x1 // the classic #define AG_OXY_DMG 0x2 // intense airway reactions #define AG_EMOTE 0x4 // general emote reactions based on affect type #define AG_PAIN 0x8 // short-lived hurt #define AG_WEAKEN 0x10 // too weak to move, oof #define AG_BLURRY 0x20 // blurred vision! #define AG_SLEEPY 0x40 // fatigue/exhaustion +#define AG_CONFUSE 0x80 // disorientation - VOREStation addition // Species spawn flags #define SPECIES_IS_WHITELISTED 0x1 // Must be whitelisted to play. diff --git a/code/__defines/species_languages_vr.dm b/code/__defines/species_languages_vr.dm index 78054e6ba8..32457d9567 100644 --- a/code/__defines/species_languages_vr.dm +++ b/code/__defines/species_languages_vr.dm @@ -11,6 +11,7 @@ #define LANGUAGE_VESPINAE "Vespinae" #define LANGUAGE_SPACER "Spacer" #define LANGUAGE_CLOWNISH "Coulrian" +#define LANGUAGE_TAVAN "Tavan" #define LANGUAGE_CHIMPANZEE "Chimpanzee" #define LANGUAGE_NEAERA "Neaera" diff --git a/code/_global_vars/lists/misc.dm b/code/_global_vars/lists/misc.dm index ee320056be..a16573905e 100644 --- a/code/_global_vars/lists/misc.dm +++ b/code/_global_vars/lists/misc.dm @@ -7,6 +7,6 @@ GLOBAL_LIST_EMPTY(wire_color_directory) // This is an associative list with the // Reference list for disposal sort junctions. Filled up by sorting junction's New() GLOBAL_LIST_EMPTY(tagger_locations) -GLOBAL_LIST_INIT(char_directory_tags, list("Pred", "Prey", "Switch", "Non-Vore", "Unset")) +GLOBAL_LIST_INIT(char_directory_tags, list("Pred", "Pred-Pref", "Prey", "Prey-Pref", "Switch", "Non-Vore", "Unset")) GLOBAL_LIST_INIT(char_directory_erptags, list("Top", "Bottom", "Switch", "No ERP", "Unset")) GLOBAL_LIST_EMPTY(crafting_recipes) //list of all table craft recipes diff --git a/code/_helpers/game.dm b/code/_helpers/game.dm index ed4734f355..c9727a8a98 100644 --- a/code/_helpers/game.dm +++ b/code/_helpers/game.dm @@ -249,13 +249,13 @@ /mob/living/silicon/robot/can_hear_radio(var/list/hearturfs) var/turf/T = get_turf(src) var/obj/item/device/radio/borg/R = hearturfs[T] // this should be an assoc list of turf-to-radio - + // We heard it on our own radio? We use power for that. if(istype(R) && R.myborg == src) var/datum/robot_component/CO = get_component("radio") if(!CO || !is_component_functioning("radio") || !cell_use_power(CO.active_usage)) return FALSE // Sorry, couldn't hear - + return R // radio, true, false, what's the difference /mob/observer/dead/can_hear_radio(var/list/hearturfs) @@ -272,14 +272,17 @@ var/list/hear = dview(range,T,INVISIBILITY_MAXIMUM) var/list/hearturfs = list() - + // Openspace visibility handling // Below turfs we can see for(var/turf/simulated/open/O in hear) var/turf/U = GetBelow(O) while(istype(U)) hearturfs |= U - U = GetBelow(U) + if(isopenspace(U)) + U = GetBelow(U) + else + U = null // Above us var/above_range = range diff --git a/code/_helpers/global_lists.dm b/code/_helpers/global_lists.dm index 1a482e6d24..63c9c1a24e 100644 --- a/code/_helpers/global_lists.dm +++ b/code/_helpers/global_lists.dm @@ -42,6 +42,7 @@ var/global/list/facial_hair_styles_male_list = list() var/global/list/facial_hair_styles_female_list = list() var/global/list/skin_styles_female_list = list() //unused var/global/list/body_marking_styles_list = list() //stores /datum/sprite_accessory/marking indexed by name +var/global/list/body_marking_nopersist_list = list() // Body marking styles, minus non-genetic markings and augments var/global/list/ear_styles_list = list() // Stores /datum/sprite_accessory/ears indexed by type var/global/list/tail_styles_list = list() // Stores /datum/sprite_accessory/tail indexed by type var/global/list/wing_styles_list = list() // Stores /datum/sprite_accessory/wing indexed by type @@ -149,6 +150,8 @@ GLOBAL_LIST_EMPTY(mannequins) for(var/path in paths) var/datum/sprite_accessory/marking/M = new path() body_marking_styles_list[M.name] = M + if(!M.genetic) + body_marking_nopersist_list[M.name] = M //Surgery Steps - Initialize all /datum/surgery_step into a list paths = subtypesof(/datum/surgery_step) diff --git a/code/_helpers/global_lists_vr.dm b/code/_helpers/global_lists_vr.dm index 1f5b6d41ae..455732fa7c 100644 --- a/code/_helpers/global_lists_vr.dm +++ b/code/_helpers/global_lists_vr.dm @@ -13,6 +13,9 @@ var/global/list/active_ghost_pods = list() var/global/list/sensorpreflist = list("Off", "Binary", "Vitals", "Tracking", "No Preference") +// Used by the ban panel to determine what departments are offmap departments. All these share an 'offmap roles' ban. +var/global/list/offmap_departments = list(DEPARTMENT_TALON) + // Closets have magic appearances GLOBAL_LIST_EMPTY(closet_appearances) @@ -226,7 +229,8 @@ var/global/list/edible_trash = list(/obj/item/broken_device, /obj/item/weapon/storage/fancy/egg_box, /obj/item/weapon/storage/wallet, /obj/item/weapon/storage/vore_egg, - /obj/item/weapon/bikehorn/tinytether + /obj/item/weapon/bikehorn/tinytether, + /obj/item/capture_crystal ) var/global/list/contamination_flavors = list( diff --git a/code/_helpers/matrices.dm b/code/_helpers/matrices.dm index a5ef701c2d..88bec71bc2 100644 --- a/code/_helpers/matrices.dm +++ b/code/_helpers/matrices.dm @@ -6,6 +6,13 @@ /atom/proc/SpinAnimation(speed = 10, loops = -1, clockwise = 1, segments = 3) if(!segments) return + //VOREStation Addition Start + if(speed == 0) + loops = 0 + if(speed < 0) + speed = speed * -1 + clockwise = 0 + //VOREStation Addition End var/segment = 360/segments if(!clockwise) segment = -segment diff --git a/code/_helpers/names.dm b/code/_helpers/names.dm index 20f7b2b31d..e85a607417 100644 --- a/code/_helpers/names.dm +++ b/code/_helpers/names.dm @@ -172,7 +172,7 @@ var/syndicate_code_response//Code response for traitors. var/safety[] = list(1,2,3)//Tells the proc which options to remove later on. var/nouns[] = list("love","hate","anger","peace","pride","sympathy","bravery","loyalty","honesty","integrity","compassion","charity","success","courage","deceit","skill","beauty","brilliance","pain","misery","beliefs","dreams","justice","truth","faith","liberty","knowledge","thought","information","culture","trust","dedication","progress","education","hospitality","leisure","trouble","friendships", "relaxation") - var/drinks[] = list("vodka and tonic","gin fizz","bahama mama","manhattan","black Russian","whiskey soda","long island tea","margarita","Irish coffee"," manly dwarf","Irish cream","doctor's delight","Beepksy Smash","tequilla sunrise","brave bull","gargle blaster","bloody mary","whiskey cola","white Russian","vodka martini","martini","Cuba libre","kahlua","vodka","wine","moonshine") + var/drinks[] = list("vodka and tonic","gin fizz","bahama mama","manhattan","black Russian","whiskey soda","long island tea","margarita","Irish coffee"," manly dwarf","Irish cream","doctor's delight","Beepksy Smash","tequilla sunrise","brave bull","gargle blaster","bloody mary","whiskey cola","white Russian","vodka martini","martini","Cuba libre","kahlua","vodka","redwine","moonshine") var/locations[] = teleportlocs.len ? teleportlocs : drinks//if null, defaults to drinks instead. var/names[] = list() diff --git a/code/_helpers/sorts/comparators.dm b/code/_helpers/sorts/comparators.dm index c24267e678..2f1b69191c 100644 --- a/code/_helpers/sorts/comparators.dm +++ b/code/_helpers/sorts/comparators.dm @@ -95,3 +95,6 @@ ///Species have sort_hint they self-generate to hint themselves into groups. After that, alphabetical. /proc/cmp_species(datum/species/A, datum/species/B) return A.sort_hint == B.sort_hint ? sorttext("[B.name]","[A.name]") : A.sort_hint - B.sort_hint + +/proc/cmp_stored_item_name(datum/stored_item/A, datum/stored_item/B) + return sorttext(B.item_name, A.item_name) \ No newline at end of file diff --git a/code/_helpers/time.dm b/code/_helpers/time.dm index d1badd69fd..c50b5e2941 100644 --- a/code/_helpers/time.dm +++ b/code/_helpers/time.dm @@ -50,13 +50,17 @@ var/station_date = "" var/next_station_date_change = 1 DAY #define duration2stationtime(time) time2text(station_time_in_ds + time, "hh:mm") -#define worldtime2stationtime(time) time2text(GLOB.roundstart_hour HOURS + time, "hh:mm") +#define roundstart_delay_time (world.time - round_duration_in_ds) +#define world_time_in_ds(time) (GLOB.roundstart_hour HOURS + time - roundstart_delay_time) #define round_duration_in_ds (GLOB.round_start_time ? REALTIMEOFDAY - GLOB.round_start_time : 0) #define station_time_in_ds (GLOB.roundstart_hour HOURS + round_duration_in_ds) /proc/stationtime2text() return time2text(station_time_in_ds + GLOB.timezoneOffset, "hh:mm") +/proc/worldtime2stationtime(time) + return time2text(world_time_in_ds(time) + GLOB.timezoneOffset, "hh:mm") + /proc/stationdate2text() var/update_time = FALSE if(station_time_in_ds > next_station_date_change) diff --git a/code/_macros_vr.dm b/code/_macros_vr.dm index 2eecbe69ed..314689541e 100644 --- a/code/_macros_vr.dm +++ b/code/_macros_vr.dm @@ -1 +1,2 @@ #define isbelly(A) istype(A, /obj/belly) +#define iscapturecrystal(A) istype(A, /obj/item/capture_crystal) diff --git a/code/_onclick/click.dm b/code/_onclick/click.dm index c9fe06d47c..2164dbe5dd 100644 --- a/code/_onclick/click.dm +++ b/code/_onclick/click.dm @@ -84,12 +84,10 @@ RestrainedClickOn(A) return 1 - if(in_throw_mode) - if(isturf(A) || isturf(A.loc)) - throw_item(A) - trigger_aiming(TARGET_CAN_CLICK) - return 1 + if(in_throw_mode && (isturf(A) || isturf(A.loc)) && throw_item(A)) + trigger_aiming(TARGET_CAN_CLICK) throw_mode_off() + return TRUE var/obj/item/W = get_active_hand() @@ -286,7 +284,7 @@ if(T && user.TurfAdjacent(T)) user.ToggleTurfTab(T) return 1 - + /mob/proc/ToggleTurfTab(var/turf/T) if(listed_turf == T) listed_turf = null diff --git a/code/_onclick/drag_drop.dm b/code/_onclick/drag_drop.dm index 65974fe009..9f7848b3d3 100644 --- a/code/_onclick/drag_drop.dm +++ b/code/_onclick/drag_drop.dm @@ -15,14 +15,13 @@ return FALSE // should stop you from dragging through windows return TRUE -/atom/MouseDrop(atom/over) - if(!usr || !over) return - if(!Adjacent(usr) || !over.Adjacent(usr)) return // should stop you from dragging through windows +/atom/MouseDrop(atom/over, src_location, over_location, src_control, over_control, params) + if(!usr || !over) + return + if(!Adjacent(usr) || !over.Adjacent(usr)) + return // should stop you from dragging through windows - spawn(0) - over.MouseDrop_T(src,usr) - return + INVOKE_ASYNC(over, /atom/.proc/MouseDrop_T, src, usr, src_location, over_location, src_control, over_control, params) -// recieve a mousedrop -/atom/proc/MouseDrop_T(atom/dropping, mob/user) - return +/atom/proc/MouseDrop_T(atom/dropping, mob/user, src_location, over_location, src_control, over_control, params) + return \ No newline at end of file diff --git a/code/controllers/configuration.dm b/code/controllers/configuration.dm index 21acf2c577..2da3f71025 100644 --- a/code/controllers/configuration.dm +++ b/code/controllers/configuration.dm @@ -297,6 +297,9 @@ var/list/gamemode_cache = list() var/static/list/jukebox_track_files + var/static/suggested_byond_version + var/static/suggested_byond_build + /datum/configuration/New() var/list/L = subtypesof(/datum/game_mode) for (var/T in L) @@ -949,6 +952,12 @@ var/list/gamemode_cache = list() if("jukebox_track_files") config.jukebox_track_files = splittext(value, ";") + + if("suggested_byond_version") + config.suggested_byond_version = text2num(value) + + if("suggested_byond_build") + config.suggested_byond_build = text2num(value) // VOREStation Edit Start - Can't be in _vr file because it is loaded too late. if("vgs_access_identifier") diff --git a/code/controllers/subsystems/ai.dm b/code/controllers/subsystems/ai.dm index 4ed43a3481..41fb3a7e29 100644 --- a/code/controllers/subsystems/ai.dm +++ b/code/controllers/subsystems/ai.dm @@ -10,7 +10,7 @@ SUBSYSTEM_DEF(ai) var/list/currentrun = list() var/slept_mobs = 0 - var/list/process_z = list() + var/list/process_z = list() /datum/controller/subsystem/ai/stat_entry(msg_prefix) ..("P: [processing.len] | S: [slept_mobs]") @@ -32,10 +32,14 @@ SUBSYSTEM_DEF(ai) while(currentrun.len) var/datum/ai_holder/A = currentrun[currentrun.len] --currentrun.len - if(!A || QDELETED(A) || !A.holder?.loc || A.busy) // Doesn't exist or won't exist soon or not doing it this tick + if(!A || QDELETED(A) || A.busy) // Doesn't exist or won't exist soon or not doing it this tick continue - - if(process_z[get_z(A.holder)]) + + var/mob/living/L = A.holder //VOREStation Edit Start + if(!L?.loc) + continue + + if(process_z[get_z(L)] || !L.low_priority) //VOREStation Edit End A.handle_strategicals() else slept_mobs++ diff --git a/code/controllers/subsystems/mapping.dm b/code/controllers/subsystems/mapping.dm index 06bf16e255..832a84784d 100644 --- a/code/controllers/subsystems/mapping.dm +++ b/code/controllers/subsystems/mapping.dm @@ -76,7 +76,9 @@ SUBSYSTEM_DEF(mapping) // VOREStation Edit Start: Enable This /datum/controller/subsystem/mapping/proc/loadLateMaps() var/list/deffo_load = using_map.lateload_z_levels - var/list/maybe_load = using_map.lateload_single_pick + var/list/maybe_load = using_map.lateload_gateway + var/list/also_load = using_map.lateload_overmap + for(var/list/maplist in deffo_load) if(!islist(maplist)) @@ -110,6 +112,28 @@ SUBSYSTEM_DEF(mapping) error("Randompick Z level \"[map]\" is not a valid map!") else MT.load_new_z(centered = FALSE) + + if(LAZYLEN(also_load)) //Just copied from gateway picking, this is so we can have a kind of OM map version of the same concept. + var/picklist = pick(also_load) + + if(!picklist) //No lateload maps at all + return + + if(!islist(picklist)) //So you can have a 'chain' of z-levels that make up one away mission + error("Randompick Z level [picklist] is not a list! Must be in a list!") + return + + for(var/map in picklist) + if(islist(map)) + // TRIPLE NEST. In this situation we pick one at random from the choices in the list. + //This allows a sort of a1,a2,a3,b1,b2,b3,c1,c2,c3 setup where it picks one 'a', one 'b', one 'c' + map = pick(map) + var/datum/map_template/MT = map_templates[map] + if(!istype(MT)) + error("Randompick Z level \"[map]\" is not a valid map!") + else + MT.load_new_z(centered = FALSE) + /datum/controller/subsystem/mapping/proc/preloadShelterTemplates() for(var/datum/map_template/shelter/shelter_type as anything in subtypesof(/datum/map_template/shelter)) diff --git a/code/controllers/subsystems/persist_vr.dm b/code/controllers/subsystems/persist_vr.dm index a00d4f7a3d..c40a0b0e35 100644 --- a/code/controllers/subsystems/persist_vr.dm +++ b/code/controllers/subsystems/persist_vr.dm @@ -25,6 +25,7 @@ SUBSYSTEM_DEF(persist) return if(!resumed) src.currentrun = human_mob_list.Copy() + src.currentrun += silicon_mob_list.Copy() //cache for sanic speed (lists are references anyways) var/list/currentrun = src.currentrun @@ -41,9 +42,7 @@ SUBSYSTEM_DEF(persist) return continue - // Do not collect useless PTO var/department_earning = J.pto_type - clear_unused_pto(M) // Determine special PTO types and convert properly if(department_earning == PTO_CYBORG) @@ -103,12 +102,4 @@ SUBSYSTEM_DEF(persist) // They have a custom title, aren't crew, or someone deleted their record, so we need a fallback method. // Let's check the mind. if(M.mind && M.mind.assigned_role) - . = job_master.GetJob(M.mind.assigned_role) - -// This proc tries makes sure old Command PTO doesn't linger -/datum/controller/subsystem/persist/proc/clear_unused_pto(var/mob/M) - var/client/C = M.client - LAZYINITLIST(C.department_hours) - if(C.department_hours[DEPARTMENT_COMMAND]) - C.department_hours[DEPARTMENT_COMMAND] = null - C.department_hours.Remove(DEPARTMENT_COMMAND) + . = job_master.GetJob(M.mind.assigned_role) \ No newline at end of file diff --git a/code/controllers/subsystems/persistence.dm b/code/controllers/subsystems/persistence.dm index f238621b3e..e20c83e5a5 100644 --- a/code/controllers/subsystems/persistence.dm +++ b/code/controllers/subsystems/persistence.dm @@ -4,7 +4,7 @@ SUBSYSTEM_DEF(persistence) flags = SS_NO_FIRE var/list/tracking_values = list() var/list/persistence_datums = list() - + /// Places our subsystem can spawn paintings (helps with art spawning differently across maps) var/list/obj/structure/sign/painting/painting_frames = list() var/list/all_paintings = list() @@ -36,10 +36,6 @@ SUBSYSTEM_DEF(persistence) if(!A || (A.flags & AREA_FLAG_IS_NOT_PERSISTENT)) return -// if((!T.z in GLOB.using_map.station_levels) || !initialized) - if(!(T.z in using_map.station_levels)) - return - if(!(T.z in using_map.persist_levels)) return diff --git a/code/controllers/subsystems/supply.dm b/code/controllers/subsystems/supply.dm index 04908f3f31..af096c33a8 100644 --- a/code/controllers/subsystems/supply.dm +++ b/code/controllers/subsystems/supply.dm @@ -56,6 +56,8 @@ SUBSYSTEM_DEF(supply) return 1 if(istype(A,/obj/item/device/perfect_tele_beacon)) //VOREStation Addition: Translocator beacons return 1 //VOREStation Addition: Translocator beacons + if(istype(A,/obj/machinery/power/quantumpad)) // //VOREStation Add: Quantum pads + return 1 //VOREStation Add: Quantum pads for(var/atom/B in A.contents) if(.(B)) diff --git a/code/controllers/subsystems/throwing.dm b/code/controllers/subsystems/throwing.dm index 3b908ac393..6c3a799b28 100644 --- a/code/controllers/subsystems/throwing.dm +++ b/code/controllers/subsystems/throwing.dm @@ -67,7 +67,7 @@ SUBSYSTEM_DEF(throwing) src.speed = speed src.thrower = thrower src.callback = callback - if(!QDELETED(thrower)) + if(!QDELETED(thrower) && ismob(thrower)) src.target_zone = thrower.zone_sel ? thrower.zone_sel.selecting : null dist_x = abs(target.x - thrownthing.x) @@ -204,4 +204,4 @@ SUBSYSTEM_DEF(throwing) if(hit_thing) finalize(hit=TRUE, t_target=hit_thing) - return TRUE \ No newline at end of file + return TRUE diff --git a/code/datums/autolathe/medical_vr.dm b/code/datums/autolathe/medical_vr.dm index 64504fa342..bfaeb3a63b 100644 --- a/code/datums/autolathe/medical_vr.dm +++ b/code/datums/autolathe/medical_vr.dm @@ -1,3 +1,9 @@ /datum/category_item/autolathe/medical/autoinjector name = "empty autoinjector" - path =/obj/item/weapon/reagent_containers/hypospray/autoinjector/empty \ No newline at end of file + path =/obj/item/weapon/reagent_containers/hypospray/autoinjector/empty + resources = list(MAT_PLASTIC = 10) //for recycling purposes mostly + +/datum/category_item/autolathe/medical/autoinjector/biginjector + name = "empty large autoinjector" + path =/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/empty + resources = list(MAT_PLASTIC = 500) \ No newline at end of file diff --git a/code/datums/components/crafting/crafting.dm b/code/datums/components/crafting/crafting.dm index c866711ab5..6e0a3bfdc5 100644 --- a/code/datums/components/crafting/crafting.dm +++ b/code/datums/components/crafting/crafting.dm @@ -62,55 +62,7 @@ del_reqs - takes recipe and a user, loops over the recipes reqs var and tries to find everything in the list make by get_environment and delete it/add to parts list, then returns the said list */ -/** - * Check that the contents of the recipe meet the requirements. - * - * user: The /mob that initated the crafting. - * R: The /datum/crafting_recipe being attempted. - * contents: List of items to search for R's reqs. - */ -/datum/component/personal_crafting/proc/check_contents(atom/a, datum/crafting_recipe/R, list/contents) - var/list/item_instances = contents["instances"] - var/list/machines = contents["machinery"] - contents = contents["other"] - - - var/list/requirements_list = list() - - // Process all requirements - for(var/requirement_path in R.reqs) - // Check we have the appropriate amount available in the contents list - var/needed_amount = R.reqs[requirement_path] - for(var/content_item_path in contents) - // Right path and not blacklisted - if(!ispath(content_item_path, requirement_path) || R.blacklist.Find(content_item_path)) - continue - - needed_amount -= contents[content_item_path] - if(needed_amount <= 0) - break - - if(needed_amount > 0) - return FALSE - - // Store the instances of what we will use for R.check_requirements() for requirement_path - var/list/instances_list = list() - for(var/instance_path in item_instances) - if(ispath(instance_path, requirement_path)) - instances_list += item_instances[instance_path] - - requirements_list[requirement_path] = instances_list - - for(var/requirement_path in R.chem_catalysts) - if(contents[requirement_path] < R.chem_catalysts[requirement_path]) - return FALSE - - for(var/machinery_path in R.machinery) - if(!machines[machinery_path])//We don't care for volume with machines, just if one is there or not - return FALSE - - return R.check_requirements(a, requirements_list) - +// Returns a list of objects available /datum/component/personal_crafting/proc/get_environment(atom/a, list/blacklist = null, radius_range = 1) . = list() @@ -122,20 +74,20 @@ continue . += AM - +// Returns an associative list containing the types of tools available, and the paths of objects available /datum/component/personal_crafting/proc/get_surroundings(atom/a, list/blacklist=null) . = list() - .["tool_qualities"] = list() - .["other"] = list() - .["instances"] = list() - .["machinery"] = list() + .["tool_qualities"] = list() // List of tool types available + .["other"] = list() // List of reagents/material stacks available + .["instances"] = list() // List of /obj/items available, maybe? + .["machinery"] = list() // List of /obj/machinery available for(var/obj/object in get_environment(a, blacklist)) if(isitem(object)) var/obj/item/item = object LAZYADDASSOCLIST(.["instances"], item.type, item) if(istype(item, /obj/item/stack)) var/obj/item/stack/stack = item - .["other"][item.type] += stack.amount + .["other"][item.type] += stack.get_amount() else if(item.tool_qualities) .["tool_qualities"] |= item.tool_qualities .["other"][item.type] += 1 @@ -150,11 +102,55 @@ else if (istype(object, /obj/machinery)) LAZYADDASSOCLIST(.["machinery"], object.type, object) +/** + * Check that the contents of the recipe meet the requirements. + * + * user: The /mob that initated the crafting. + * R: The /datum/crafting_recipe being attempted. + * contents: List of items to search for R's reqs. + */ +/datum/component/personal_crafting/proc/check_contents(atom/a, datum/crafting_recipe/R, list/contents) + var/list/item_instances = contents["instances"] + contents = contents["other"] + var/list/requirements_list = list() + + // Process all requirements + for(var/list/requirement in R.reqs) + var/satisfied = FALSE + for(var/requirement_path in requirement) + // Check we have the appropriate amount available in the contents list + var/needed_amount = requirement[requirement_path] + for(var/content_item_path in contents) + // Right path and not blacklisted + if(!ispath(content_item_path, requirement_path) || R.blacklist.Find(content_item_path)) + continue + + needed_amount -= contents[content_item_path] + if(needed_amount <= 0) + break + + if(needed_amount > 0) + continue + + // Store the instances of what we will use for R.check_requirements() for requirement_path + var/list/instances_list = list() + for(var/instance_path in item_instances) + if(ispath(instance_path, requirement_path)) + instances_list += item_instances[instance_path] + + requirements_list[requirement_path] = instances_list + satisfied = TRUE + break + if(!satisfied) + return FALSE + + return R.check_requirements(a, requirements_list) + /// Returns a boolean on whether the tool requirements of the input recipe are satisfied by the input source and surroundings. -/datum/component/personal_crafting/proc/check_tools(atom/source, datum/crafting_recipe/recipe, list/surroundings) - if(!length(recipe.tool_behaviors) && !length(recipe.tool_paths)) +/datum/component/personal_crafting/proc/check_tools(atom/source, datum/crafting_recipe/R, list/surroundings) + if(!length(R.tool_behaviors) && !length(R.tool_paths)) return TRUE var/list/available_tools = list() var/list/present_qualities = list() @@ -176,50 +172,70 @@ for(var/path in surroundings["other"]) available_tools[path] = TRUE - for(var/required_quality in recipe.tool_behaviors) + for(var/required_quality in R.tool_behaviors) if(present_qualities[required_quality]) continue return FALSE - for(var/required_path in recipe.tool_paths) - var/found_this_tool = FALSE - for(var/tool_path in available_tools) - if(!ispath(required_path, tool_path)) - continue - found_this_tool = TRUE - break - if(found_this_tool) + for(var/required_path in R.tool_paths) + if(is_path_in_list(required_path, available_tools)) continue return FALSE return TRUE +/datum/component/personal_crafting/proc/check_reagents(atom/source, datum/crafting_recipe/R, list/surroundings) + var/list/reagents = surroundings["other"] + for(var/requirement_path in R.chem_catalysts) + if(reagents[requirement_path] < R.chem_catalysts[requirement_path]) + return FALSE + return TRUE + +/datum/component/personal_crafting/proc/check_machinery(atom/source, datum/crafting_recipe/R, list/surroundings) + var/list/machines = surroundings["machinery"] + for(var/machinery_path in R.machinery) + if(!machines[machinery_path])//We don't care for volume with machines, just if one is there or not + return FALSE + return TRUE + +/datum/component/personal_crafting/proc/check_requirements(atom/source, datum/crafting_recipe/R, list/surroundings) + if(!check_contents(source, R, surroundings)) + return ", missing component." + if(!check_tools(source, R, surroundings)) + return ", missing tool." + if(!check_reagents(source, R, surroundings)) + return ", missing reagents." + if(!check_machinery(source, R, surroundings)) + return ", missing machinery." + return /datum/component/personal_crafting/proc/construct_item(atom/a, datum/crafting_recipe/R) - var/list/contents = get_surroundings(a,R.blacklist) + var/list/surroundings = get_surroundings(a,R.blacklist) // var/send_feedback = 1 - if(check_contents(a, R, contents)) - if(check_tools(a, R, contents)) - if(R.one_per_turf) - for(var/content in get_turf(a)) - if(istype(content, R.result)) - return ", object already present." - //If we're a mob we'll try a do_after; non mobs will instead instantly construct the item - if(ismob(a) && !do_after(a, R.time, target = a)) - return "." - contents = get_surroundings(a,R.blacklist) - if(!check_contents(a, R, contents)) - return ", missing component." - if(!check_tools(a, R, contents)) - return ", missing tool." - var/list/parts = del_reqs(R, a) - var/atom/movable/I = new R.result (get_turf(a.loc)) - I.CheckParts(parts, R) - // if(send_feedback) - // SSblackbox.record_feedback("tally", "object_crafted", 1, I.type) - return I //Send the item back to whatever called this proc so it can handle whatever it wants to do with the new item - return ", missing tool." - return ", missing component." + . = check_requirements(a, R, surroundings) + if(.) + return + + if(R.one_per_turf) + for(var/content in get_turf(a)) + if(istype(content, R.result)) + return ", object already present." + + //If we're a mob we'll try a do_after; non mobs will instead instantly construct the item + if(ismob(a) && !do_after(a, R.time, target = a)) + return "." + + surroundings = get_surroundings(a, R.blacklist) + . = check_requirements(a, R, surroundings) + if(.) + return + + var/list/parts = del_reqs(R, a) + var/atom/movable/I = new R.result (get_turf(a.loc)) + I.CheckParts(parts, R) + // if(send_feedback) + // SSblackbox.record_feedback("tally", "object_crafted", 1, I.type) + return I //Send the item back to whatever called this proc so it can handle whatever it wants to do with the new item /*Del reqs works like this: @@ -246,119 +262,108 @@ */ /datum/component/personal_crafting/proc/del_reqs(datum/crafting_recipe/R, atom/a) - var/list/surroundings - var/list/Deletion = list() - . = list() - var/data - var/amt + var/list/surroundings = get_environment(a) + var/list/parts = list("items" = list()) + if(R.get_parts_reagents_volume()) + parts["reagents"] = new /datum/reagents(R.get_parts_reagents_volume()) // Datums don't have create_reagents() var/list/requirements = list() if(R.reqs) - requirements += R.reqs + for(var/list/L in R.reqs) + requirements += L if(R.machinery) requirements += R.machinery - main_loop: - for(var/path_key in requirements) - amt = R.reqs[path_key] || R.machinery[path_key] - if(!amt)//since machinery can have 0 aka CRAFTING_MACHINERY_USE - i.e. use it, don't consume it! - continue main_loop - surroundings = get_environment(a, R.blacklist) - surroundings -= Deletion - if(ispath(path_key, /datum/reagent)) - var/datum/reagent/RG = new path_key - var/datum/reagent/RGNT - while(amt > 0) - var/obj/item/weapon/reagent_containers/RC = locate() in surroundings - RG = RC.reagents.get_reagent(path_key) - if(RG) - if(!locate(RG.type) in Deletion) - Deletion += new RG.type() - if(RG.volume > amt) - RG.volume -= amt - data = RG.data - RC.reagents.conditional_update(RC) - RG = locate(RG.type) in Deletion - RG.volume = amt - RG.data += data - continue main_loop - else - surroundings -= RC - amt -= RG.volume - RC.reagents.reagent_list -= RG - RC.reagents.conditional_update(RC) - RGNT = locate(RG.type) in Deletion - RGNT.volume += RG.volume - RGNT.data += RG.data - qdel(RG) - SEND_SIGNAL(RC.reagents, COMSIG_REAGENTS_CRAFTING_PING) // - [] TODO: Make this entire thing less spaghetti - else - surroundings -= RC - else if(ispath(path_key, /obj/item/stack)) - var/obj/item/stack/S - var/obj/item/stack/SD - while(amt > 0) - S = locate(path_key) in surroundings - if(S.amount >= amt) - if(!locate(S.type) in Deletion) - SD = new S.type() - Deletion += SD - S.use(amt) - SD = locate(S.type) in Deletion - SD.amount += amt - continue main_loop - else - amt -= S.amount - if(!locate(S.type) in Deletion) - Deletion += S - else - data = S.amount - S = locate(S.type) in Deletion - S.add(data) - surroundings -= S - else - var/atom/movable/I - while(amt > 0) - I = locate(path_key) in surroundings - Deletion += I - surroundings -= I - amt-- - var/list/partlist = list(R.parts.len) - for(var/M in R.parts) - partlist[M] = R.parts[M] - for(var/part in R.parts) - if(istype(part, /datum/reagent)) - var/datum/reagent/RG = locate(part) in Deletion - if(RG.volume > partlist[part]) - RG.volume = partlist[part] - . += RG - Deletion -= RG + + // Try to find everything that was actually used to craft + for(var/path_key in requirements) + var/amt = requirements[path_key] + if(amt <= 0)//since machinery can have 0 aka CRAFTING_MACHINERY_USE - i.e. use it, don't consume it! continue - else if(istype(part, /obj/item/stack)) - var/obj/item/stack/ST = locate(part) in Deletion - if(ST.amount > partlist[part]) - ST.amount = partlist[part] - . += ST - Deletion -= ST - continue - else - while(partlist[part] > 0) - var/atom/movable/AM = locate(part) in Deletion - . += AM - Deletion -= AM - partlist[part] -= 1 - while(Deletion.len) - var/DL = Deletion[Deletion.len] - Deletion.Cut(Deletion.len) - // Snowflake handling of reagent containers and storage atoms. - // If we consumed them in our crafting, we should dump their contents out before qdeling them. - if(istype(DL, /obj/item/weapon/reagent_containers)) - var/obj/item/weapon/reagent_containers/container = DL - container.reagents.clear_reagents() - // container.reagents.expose(container.loc, TOUCH) - else if(istype(DL, /obj/item/weapon/storage)) - var/obj/item/weapon/storage/container = DL - container.spill() - container.close_all() - qdel(DL) + + // If the path is in R.parts, we want to grab those to stuff into the product + var/amt_to_transfer = 0 + if(is_path_in_list(path_key, R.parts)) + amt_to_transfer = R.parts[path_key] + + + // Reagent: gotta go sniffing in all the beakers + if(ispath(path_key, /datum/reagent)) + var/datum/reagent/reagent = path_key + var/id = initial(reagent.id) + + for(var/obj/item/weapon/reagent_containers/RC in surroundings) + // Found everything we need + if(amt <= 0 && amt_to_transfer <= 0) + break + + // If we need to keep any to put in the new object, pull it out + if(amt_to_transfer > 0) + var/A = RC.reagents.trans_id_to(parts["reagents"], id, amt_to_transfer) + amt_to_transfer -= A + amt -= A + + // If we need to consume some amount of it + if(amt > 0) + var/datum/reagent/RG = RC.reagents.get_reagent(id) + var/A = min(RG.volume, amt) + RC.reagents.remove_reagent(id, A) + amt -= A + SEND_SIGNAL(RC.reagents, COMSIG_REAGENTS_CRAFTING_PING) + + // Material stacks may have to accumulate across multiple stacks + else if(ispath(path_key, /obj/item/stack)) + for(var/obj/item/stack/S in surroundings) + if(amt <= 0 && amt_to_transfer <= 0) + break + + // This could put 50 stacks in an object but frankly so long as the amount's right we don't care + if(amt_to_transfer > 0) + var/obj/item/stack/split = S.split(amt_to_transfer) + if(istype(split)) + parts["items"] += split + amt_to_transfer -= split.get_amount() + amt -= split.get_amount() + + if(amt > 0) + var/A = min(amt, S.get_amount()) + if(S.use(A)) + amt -= A + + + else // Just a regular item. Find them all and delete them + for(var/atom/movable/I in surroundings) + if(amt <= 0 && amt_to_transfer <= 0) + break + + if(!istype(I, path_key)) + continue + + // Special case: the reagents may be needed for other recipes + if(istype(I, /obj/item/weapon/reagent_containers)) + var/obj/item/weapon/reagent_containers/RC = I + if(RC.reagents.total_volume > 0) + continue + + // We're using it for something + amt-- + + // Prepare to stuff inside product, don't delete it + if(is_path_in_list(path_key, R.parts)) + parts["items"] += I + amt_to_transfer-- + continue + + // Snowflake handling of reagent containers and storage atoms. + // If we consumed them in our crafting, we should dump their contents out before qdeling them. + if(istype(I, /obj/item/weapon/reagent_containers)) + var/obj/item/weapon/reagent_containers/container = I + container.reagents.clear_reagents() + // container.reagents.expose(container.loc, TOUCH) + else if(istype(I, /obj/item/weapon/storage)) + var/obj/item/weapon/storage/container = I + container.spill() + container.close_all() + qdel(I) + return parts /datum/component/personal_crafting/proc/component_ui_interact(source, location, control, params, user) // SIGNAL_HANDLER @@ -487,10 +492,14 @@ var/list/tool_list = list() var/list/catalyst_text = list() - for(var/atom/req_atom as anything in R.reqs) - //We just need the name, so cheat-typecast to /atom for speed (even tho Reagents are /datum they DO have a "name" var) - //Also these are typepaths so sadly we can't just do "[a]" - req_text += "[R.reqs[req_atom]] [initial(req_atom.name)]" + for(var/list/req in R.reqs) + var/list/L = list() + for(var/atom/req_atom as anything in req) + //We just need the name, so cheat-typecast to /atom for speed (even tho Reagents are /datum they DO have a "name" var) + //Also these are typepaths so sadly we can't just do "[a]" + L += "[req[req_atom]] [initial(req_atom.name)]" + req_text += L.Join(" OR ") + for(var/obj/machinery/content as anything in R.machinery) req_text += "[R.reqs[content]] [initial(content.name)]" if(R.additional_req_text) diff --git a/code/datums/components/crafting/crafting_external.dm b/code/datums/components/crafting/crafting_external.dm index e40d501132..8346a0fa58 100644 --- a/code/datums/components/crafting/crafting_external.dm +++ b/code/datums/components/crafting/crafting_external.dm @@ -12,21 +12,30 @@ */ /atom/proc/CheckParts(list/parts_list, datum/crafting_recipe/R) SEND_SIGNAL(src, COMSIG_ATOM_CHECKPARTS, parts_list, R) - if(parts_list) - for(var/A in parts_list) - if(istype(A, /datum/reagent)) - if(!reagents) - reagents = new() - reagents.reagent_list.Add(A) - reagents.conditional_update() - else if(ismovable(A)) - var/atom/movable/M = A - if(isliving(M.loc)) - var/mob/living/L = M.loc - L.unEquip(M, target = src) - else - M.forceMove(src) - SEND_SIGNAL(M, COMSIG_ATOM_USED_IN_CRAFT, src) + if(LAZYLEN(parts_list)) + if(istype(parts_list["reagents"], /datum/reagents)) + var/datum/reagents/RG = parts_list["reagents"] + if(istype(reagents)) + RG.trans_to_holder(reagents, RG.total_volume) + else + reagents = RG + RG.my_atom = src + reagents.conditional_update() + + for(var/atom/movable/M as anything in parts_list["items"]) + if(isliving(M.loc)) + var/mob/living/L = M.loc + L.unEquip(M, target = src) + else + M.forceMove(src) + SEND_SIGNAL(M, COMSIG_ATOM_USED_IN_CRAFT, src) + + var/list/L = parts_list["reagents"] + if(LAZYLEN(L)) + L.Cut() + L = parts_list["items"] + if(LAZYLEN(L)) + L.Cut() parts_list.Cut() /obj/machinery/CheckParts(list/parts_list) diff --git a/code/datums/components/crafting/recipes.dm b/code/datums/components/crafting/recipes.dm index bd5aec3395..d39d012832 100644 --- a/code/datums/components/crafting/recipes.dm +++ b/code/datums/components/crafting/recipes.dm @@ -47,3 +47,28 @@ /datum/crafting_recipe/proc/on_craft_completion(mob/user, atom/result) return + +// Computes the total reagents volume +/datum/crafting_recipe/proc/get_parts_reagents_volume() + . = 0 + for(var/list/L in parts) + for(var/path in L) + if(ispath(path, /datum/reagent)) + . += L[path] + +// Locate one of the things that set the material type, and update it from the default (glass) +/datum/crafting_recipe/spear/on_craft_completion(mob/user, atom/result) + var/obj/item/weapon/material/M + for(var/path in parts) + var/obj/item/weapon/material/N = locate(path) in result + if(istype(N, path)) + if(!istype(M)) + M = N + else + N.forceMove(get_turf(result)) + if(!istype(M)) + return + + var/obj/item/weapon/material/twohanded/spear/S = result + S.set_material(M.material.name) + qdel(M) diff --git a/code/datums/components/crafting/recipes/primitive.dm b/code/datums/components/crafting/recipes/primitive.dm index 064fd63020..97f6be5e39 100644 --- a/code/datums/components/crafting/recipes/primitive.dm +++ b/code/datums/components/crafting/recipes/primitive.dm @@ -1,13 +1,37 @@ /datum/crafting_recipe/cloth name = "Cloth bolt" result = /obj/item/stack/material/cloth - reqs = list(/obj/item/stack/material/fiber = 3) + reqs = list(list(/obj/item/stack/material/fiber = 3)) time = 40 category = CAT_PRIMAL /datum/crafting_recipe/crude_bandage name = "Crude bandages (x10)" result = /obj/item/stack/medical/crude_pack - reqs = list(/obj/item/stack/material/cloth = 2) + reqs = list(list(/obj/item/stack/material/cloth = 2)) time = 40 category = CAT_PRIMAL + +/* + * Clothing + */ + +/datum/crafting_recipe/primitive_clothes + name = "primitive clothes" + result = /obj/item/clothing/under/primitive + reqs = list( + list(/obj/item/stack/material/fiber = 4), + list(/obj/item/stack/material/cloth = 6) + ) + time = 90 + category = CAT_CLOTHING + +/datum/crafting_recipe/primitive_shoes + name = "primitive shoes" + result = /obj/item/clothing/shoes/primitive + reqs = list( + list(/obj/item/stack/material/fiber = 2), + list(/obj/item/stack/material/cloth = 3) + ) + time = 60 + category = CAT_CLOTHING \ No newline at end of file diff --git a/code/datums/components/crafting/recipes/survival.dm b/code/datums/components/crafting/recipes/survival.dm index 425f39500b..a1100f6808 100644 --- a/code/datums/components/crafting/recipes/survival.dm +++ b/code/datums/components/crafting/recipes/survival.dm @@ -2,10 +2,10 @@ name = "Wooden Shovel" result = /obj/item/weapon/shovel/wood reqs = list( - /obj/item/stack/material/stick = 5, - /obj/item/stack/material/wood = 1, - /obj/item/stack/material/fiber = 3, - /obj/item/stack/material/flint = 1 + list(/obj/item/stack/material/stick = 5), + list(/obj/item/stack/material/wood = 1), + list(/obj/item/stack/material/fiber = 3), + list(/obj/item/stack/material/flint = 1) ) time = 120 category = CAT_WEAPONRY @@ -15,7 +15,7 @@ name = "stone blade" result = /obj/item/weapon/material/knife/stone reqs = list( - /obj/item/stack/material/flint = 2 + list(/obj/item/stack/material/flint = 2) ) time = 60 category = CAT_WEAPONRY @@ -25,10 +25,10 @@ name = "stone knife" result = /obj/item/weapon/material/knife/stone/wood reqs = list( - /obj/item/weapon/material/knife/stone = 1, - /obj/item/stack/material/flint = 1, - /obj/item/stack/material/wood = 1, - /obj/item/stack/material/fiber = 3 + list(/obj/item/weapon/material/knife/stone = 1), + list(/obj/item/stack/material/flint = 1), + list(/obj/item/stack/material/wood = 1), + list(/obj/item/stack/material/fiber = 3) ) time = 120 category = CAT_WEAPONRY @@ -38,10 +38,10 @@ name = "stone knife" result = /obj/item/weapon/material/knife/stone/bone reqs = list( - /obj/item/weapon/material/knife/stone = 1, - /obj/item/stack/material/flint = 1, - /obj/item/weapon/bone = 1, - /obj/item/stack/material/fiber = 3 + list(/obj/item/weapon/material/knife/stone = 1), + list(/obj/item/stack/material/flint = 1), + list(/obj/item/weapon/bone = 1), + list(/obj/item/stack/material/fiber = 3) ) time = 120 category = CAT_WEAPONRY @@ -51,9 +51,9 @@ name = "wooden bucket" result = /obj/item/weapon/reagent_containers/glass/bucket/wood reqs = list( - /obj/item/stack/material/wood = 1, - /obj/item/stack/material/stick = 1, - /obj/item/stack/material/fiber = 2 + list(/obj/item/stack/material/wood = 1), + list(/obj/item/stack/material/stick = 1), + list(/obj/item/stack/material/fiber = 2) ) time = 60 category = CAT_TOOL @@ -61,7 +61,7 @@ /datum/crafting_recipe/sticks name = "sticks" result = /obj/item/stack/material/stick/fivestack - reqs = list(/obj/item/stack/material/wood = 1) + reqs = list(list(/obj/item/stack/material/wood = 1)) tool_paths = list(/obj/item/weapon/material/knife) time = 200 category = CAT_MISC @@ -70,10 +70,10 @@ name = "stone axe" result = /obj/item/weapon/material/knife/machete/hatchet/stone reqs = list( - /obj/item/weapon/material/knife/stone = 1, - /obj/item/stack/material/flint = 1, - /obj/item/stack/material/stick = 10, - /obj/item/stack/material/fiber = 3 + list(/obj/item/weapon/material/knife/stone = 1), + list(/obj/item/stack/material/flint = 1), + list(/obj/item/stack/material/stick = 1), + list(/obj/item/stack/material/fiber = 3) ) time = 120 category = CAT_WEAPONRY @@ -83,10 +83,10 @@ name = "stone axe" result = /obj/item/weapon/material/knife/machete/hatchet/stone/bone reqs = list( - /obj/item/weapon/material/knife/stone = 1, - /obj/item/stack/material/flint = 1, - /obj/item/weapon/bone = 1, - /obj/item/stack/material/fiber = 3 + list(/obj/item/weapon/material/knife/stone = 1), + list(/obj/item/stack/material/flint = 1), + list(/obj/item/weapon/bone = 1), + list(/obj/item/stack/material/fiber = 3) ) time = 120 category = CAT_WEAPONRY @@ -96,10 +96,10 @@ name = "stone spear" result = /obj/item/weapon/material/twohanded/spear/flint reqs = list( - /obj/item/weapon/material/knife/stone = 1, - /obj/item/stack/material/flint = 1, - /obj/item/stack/material/wood = 2, - /obj/item/stack/material/fiber = 3 + list(/obj/item/weapon/material/knife/stone = 1), + list(/obj/item/stack/material/flint = 1), + list(/obj/item/stack/material/wood = 2), + list(/obj/item/stack/material/fiber = 3) ) time = 120 category = CAT_WEAPONRY @@ -109,10 +109,10 @@ name = "stone spear" result = /obj/item/weapon/material/twohanded/spear/flint reqs = list( - /obj/item/weapon/material/knife/stone = 1, - /obj/item/stack/material/flint = 1, - /obj/item/weapon/bone = 2, - /obj/item/stack/material/fiber = 3 + list(/obj/item/weapon/material/knife/stone = 1), + list(/obj/item/stack/material/flint = 1), + list(/obj/item/weapon/bone = 2), + list(/obj/item/stack/material/fiber = 3) ) time = 120 category = CAT_WEAPONRY @@ -121,6 +121,6 @@ /datum/crafting_recipe/ropebindings name = "rope bindings" result = /obj/item/weapon/handcuffs/cable/plantfiber - reqs = list(/obj/item/stack/material/fiber = 3) + reqs = list(list(/obj/item/stack/material/fiber = 3)) time = 60 category = CAT_MISC \ No newline at end of file diff --git a/code/datums/components/crafting/recipes/weapons.dm b/code/datums/components/crafting/recipes/weapons.dm index 4022265137..b8fe974e05 100644 --- a/code/datums/components/crafting/recipes/weapons.dm +++ b/code/datums/components/crafting/recipes/weapons.dm @@ -1,9 +1,23 @@ /datum/crafting_recipe/stunprod name = "Stunprod" result = /obj/item/weapon/melee/baton/cattleprod - reqs = list(/obj/item/weapon/handcuffs/cable = 1, - /obj/item/stack/rods = 1, - /obj/item/weapon/tool/wirecutters = 1) + reqs = list(list(/obj/item/weapon/handcuffs/cable = 1), + list(/obj/item/stack/rods = 1), + list(/obj/item/weapon/tool/wirecutters = 1)) + time = 40 + category = CAT_WEAPONRY + subcategory = CAT_WEAPON + +/datum/crafting_recipe/spear + name = "Spear" + result = /obj/item/weapon/material/twohanded/spear + reqs = list(list(/obj/item/weapon/handcuffs/cable = 1), + list(/obj/item/stack/rods = 1), + list(/obj/item/weapon/material/shard = 1, + /obj/item/weapon/material/butterflyblade = 1) + ) + parts = list(/obj/item/weapon/material/shard = 1, + /obj/item/weapon/material/butterflyblade = 1) time = 40 category = CAT_WEAPONRY subcategory = CAT_WEAPON @@ -11,10 +25,8 @@ /datum/crafting_recipe/shortbow name = "Shortbow" result = /obj/item/weapon/gun/launcher/crossbow/bow - reqs = list( - /obj/item/stack/material/wood = 10, - /obj/item/stack/material/cloth = 5 - ) + reqs = list(list(/obj/item/stack/material/wood = 10), + list(/obj/item/stack/material/cloth = 5)) time = 120 category = CAT_WEAPONRY subcategory = CAT_WEAPON @@ -22,10 +34,8 @@ /datum/crafting_recipe/arrow_sandstone name = "Wood arrow (sandstone tip)" result = /obj/item/weapon/arrow/standard - reqs = list( - /obj/item/stack/material/wood = 2, - /obj/item/stack/material/sandstone = 2 - ) + reqs = list(list(/obj/item/stack/material/wood = 2), + list(/obj/item/stack/material/sandstone = 2)) time = 40 category = CAT_WEAPONRY subcategory = CAT_AMMO @@ -33,10 +43,16 @@ /datum/crafting_recipe/arrow_marble name = "Wood arrow (marble tip)" result = /obj/item/weapon/arrow/standard - reqs = list( - /obj/item/stack/material/wood = 2, - /obj/item/stack/material/marble = 2 - ) + reqs = list(list(/obj/item/stack/material/wood = 2), + list(/obj/item/stack/material/marble = 2)) time = 40 category = CAT_WEAPONRY subcategory = CAT_AMMO + +/datum/crafting_recipe/primitive_shield + name = "Primitive Shield" + result = /obj/item/weapon/shield/primitive + reqs = list(list(/obj/item/stack/material/wood = 2), list(/obj/item/weapon/reagent_containers/glass/bucket/wood =1), list(/obj/item/stack/material/cloth = 5)) + time = 120 + category = CAT_WEAPONRY + subcategory = CAT_WEAPON diff --git a/code/datums/ghost_query.dm b/code/datums/ghost_query.dm index d40ef7bab8..6a342f5820 100644 --- a/code/datums/ghost_query.dm +++ b/code/datums/ghost_query.dm @@ -47,17 +47,22 @@ for(var/ban in check_bans) if(jobban_isbanned(candidate, ban)) return FALSE // They're banned from this role. - + return TRUE /// Send async alerts and ask for responses. Expects you to have tested D for client and type already /datum/ghost_query/proc/ask_question(var/mob/observer/dead/D) + //VOREStation Add Start Check the ban status before we ask + if(jobban_isbanned(D, "GhostRoles")) + return + //VOREStation Add End + var/client/C = D.client window_flash(C) - + if(query_sound) SEND_SOUND(C, sound(query_sound)) - + tgui_alert_async(D, question, "[role_name] request", list("Yes", "No", "Never for this round"), CALLBACK(src, .proc/get_reply), wait_time SECONDS) /// Process an async alert response @@ -65,7 +70,7 @@ var/mob/observer/dead/D = usr if(!D?.client) return - + // Unhandled are "No" and "Nevermind" responses, which should just do nothing // This response is always fine, doesn't warrant retesting @@ -184,10 +189,12 @@ role_name = "Dark Creature" question = "A curious explorer has touched a mysterious rune. \ Would you like to play as the creature it summons?" + be_special_flag = BE_CORGI cutoff_number = 1 /datum/ghost_query/cursedblade role_name = "Cursed Sword" question = "A cursed blade has been discovered by a curious explorer. \ Would you like to play as the soul imprisoned within?" + be_special_flag = BE_CURSEDSWORD cutoff_number = 1 diff --git a/code/datums/looping_sounds/weather_sounds.dm b/code/datums/looping_sounds/weather_sounds.dm index 4a02993058..67a97c71f1 100644 --- a/code/datums/looping_sounds/weather_sounds.dm +++ b/code/datums/looping_sounds/weather_sounds.dm @@ -75,17 +75,24 @@ mid_sounds = list( 'sound/effects/weather/acidrain_mid.ogg' = 1 ) - mid_length = 15 SECONDS // The lengths for the files vary, but the longest is ten seconds, so this will make it sound like intermittent wind. + mid_length = 15 SECONDS start_sound = 'sound/effects/weather/acidrain_start.ogg' start_length = 13 SECONDS end_sound = 'sound/effects/weather/acidrain_end.ogg' volume = 20 -/datum/looping_sound/weather/rain/indoors - volume = 10 - /datum/looping_sound/weather/rain/heavy volume = 40 -/datum/looping_sound/weather/rain/heavy/indoors - volume = 20 \ No newline at end of file +/datum/looping_sound/weather/rain/indoors + mid_sounds = list( + 'sound/effects/weather/indoorrain_mid.ogg' = 1 + ) + mid_length = 15 SECONDS + start_sound = 'sound/effects/weather/indoorrain_start.ogg' + start_length = 13 SECONDS + end_sound = 'sound/effects/weather/indoorrain_end.ogg' + volume = 20 //Sound is already quieter in file + +/datum/looping_sound/weather/rain/indoors/heavy + volume = 40 \ No newline at end of file diff --git a/code/datums/outfits/costumes/halloween.dm b/code/datums/outfits/costumes/halloween.dm index cca8047625..35f4aa238d 100644 --- a/code/datums/outfits/costumes/halloween.dm +++ b/code/datums/outfits/costumes/halloween.dm @@ -25,14 +25,14 @@ var/obj/item/weapon/storage/briefcase/new_briefcase = new(H) for(var/obj/item/briefcase_item in new_briefcase) qdel(briefcase_item) - new_briefcase.contents += new /obj/item/toy/crossbow - new_briefcase.contents += new /obj/item/weapon/gun/projectile/revolver/capgun + new_briefcase.contents += new /obj/item/weapon/gun/projectile/pistol/toy + new_briefcase.contents += new /obj/item/ammo_magazine/mfoam_dart/pistol new_briefcase.contents += new /obj/item/clothing/mask/gas/clown_hat H.equip_to_slot_or_del(new_briefcase, slot_l_hand) /decl/hierarchy/outfit/costume/horrorcop name = OUTFIT_COSTUME("Slasher Movie Cop") - uniform = /obj/item/clothing/under/pcrc{ starting_accessories=list(/obj/item/clothing/accessory/holster/hip) } + uniform = /obj/item/clothing/under/corp/pcrc{ starting_accessories=list(/obj/item/clothing/accessory/holster/hip) } shoes = /obj/item/clothing/shoes/black gloves = /obj/item/clothing/gloves/black glasses = /obj/item/clothing/glasses/fakesunglasses @@ -52,7 +52,7 @@ name = OUTFIT_COSTUME("Cowboy") uniform = /obj/item/clothing/under/pants{ starting_accessories=list(/obj/item/clothing/accessory/holster/hip) } shoes = /obj/item/clothing/shoes/boots/cowboy - head = /obj/item/clothing/head/cowboy_hat + head = /obj/item/clothing/head/cowboy gloves = /obj/item/clothing/gloves/fingerless suit = /obj/item/clothing/accessory/poncho r_hand = /obj/item/weapon/gun/projectile/revolver/capgun @@ -78,10 +78,9 @@ name = OUTFIT_COSTUME("Firefighter") uniform = /obj/item/clothing/under/pants shoes = /obj/item/clothing/shoes/boots/workboots - head = /obj/item/clothing/head/hardhat/red + head = /obj/item/clothing/head/hardhat/firefighter gloves = /obj/item/clothing/gloves/black suit = /obj/item/clothing/suit/fire/firefighter - mask = /obj/item/clothing/mask/gas /decl/hierarchy/outfit/costume/highlander name = OUTFIT_COSTUME("Highlander") @@ -103,7 +102,7 @@ suit = /obj/item/clothing/suit/storage/toggle/brown_jacket/sleeveless shoes = /obj/item/clothing/shoes/boots/jackboots gloves = /obj/item/clothing/gloves/fingerless - l_pocket = /obj/item/toy/crossbow + l_pocket = /obj/item/weapon/gun/projectile/revolver/toy/crossbow/halloween r_pocket = /obj/item/device/flashlight/color/red /decl/hierarchy/outfit/costume/pirate @@ -120,4 +119,12 @@ shoes = /obj/item/clothing/shoes/white suit = /obj/item/clothing/suit/storage/hooded/chaplain_hoodie/whiteout gloves = /obj/item/clothing/gloves/white - mask = /obj/item/clothing/mask/surgical \ No newline at end of file + mask = /obj/item/clothing/mask/surgical + +/decl/hierarchy/outfit/costume/marine + name = OUTFIT_COSTUME("Ruin Marine") + uniform = /obj/item/clothing/under/color/grey + shoes = /obj/item/clothing/shoes/brown + head = /obj/item/clothing/head/marine + suit = /obj/item/clothing/suit/marine + r_hand = /obj/item/weapon/gun/projectile/revolver/toy/sawnoff \ No newline at end of file diff --git a/code/datums/outfits/jobs/engineering.dm b/code/datums/outfits/jobs/engineering.dm index a2aba61a96..86bf9fa8cf 100644 --- a/code/datums/outfits/jobs/engineering.dm +++ b/code/datums/outfits/jobs/engineering.dm @@ -1,6 +1,6 @@ /decl/hierarchy/outfit/job/engineering hierarchy_type = /decl/hierarchy/outfit/job/engineering - belt = /obj/item/weapon/storage/belt/utility/full + belt = /obj/item/weapon/storage/belt/utility/full/multitool l_ear = /obj/item/device/radio/headset/headset_eng shoes = /obj/item/clothing/shoes/boots/workboots r_pocket = /obj/item/device/t_scanner diff --git a/code/datums/outfits/jobs/science.dm b/code/datums/outfits/jobs/science.dm index 307da0a8f9..fcccfb8f8c 100644 --- a/code/datums/outfits/jobs/science.dm +++ b/code/datums/outfits/jobs/science.dm @@ -34,7 +34,7 @@ name = OUTFIT_JOB_NAME("Roboticist") uniform = /obj/item/clothing/under/rank/roboticist shoes = /obj/item/clothing/shoes/black - belt = /obj/item/weapon/storage/belt/utility/full + belt = /obj/item/weapon/storage/belt/utility/full/multitool id_type = /obj/item/weapon/card/id/science pda_slot = slot_r_store pda_type = /obj/item/device/pda/roboticist diff --git a/code/datums/outfits/misc.dm b/code/datums/outfits/misc.dm index c9a43077b5..7facd60d5e 100644 --- a/code/datums/outfits/misc.dm +++ b/code/datums/outfits/misc.dm @@ -21,7 +21,7 @@ name = "Soviet soldier" uniform = /obj/item/clothing/under/soviet shoes = /obj/item/clothing/shoes/boots/combat - head = /obj/item/clothing/head/ushanka + head = /obj/item/clothing/head/ushanka/soviet gloves = /obj/item/clothing/gloves/combat back = /obj/item/weapon/storage/backpack/satchel belt = /obj/item/weapon/gun/projectile/revolver/mateba diff --git a/code/datums/riding.dm b/code/datums/riding.dm index ba96dbc405..9dd32dcd93 100644 --- a/code/datums/riding.dm +++ b/code/datums/riding.dm @@ -8,6 +8,7 @@ var/key_name = "the keys" // What the 'keys' for the thing being rided on would be called. var/atom/movable/ridden = null // The thing that the datum is attached to. var/only_one_driver = FALSE // If true, only the person in 'front' (first on list of riding mobs) can drive. + var/rider_size = 1 // VOREStation Edit to figure out offsets for rider. /datum/riding/New(atom/movable/_ridden) ridden = _ridden diff --git a/code/datums/supplypacks/costumes.dm b/code/datums/supplypacks/costumes.dm index 4af40491d3..1cf5292f9f 100644 --- a/code/datums/supplypacks/costumes.dm +++ b/code/datums/supplypacks/costumes.dm @@ -62,8 +62,8 @@ /obj/item/clothing/suit/nun, /obj/item/clothing/suit/imperium_monk, /obj/item/clothing/suit/ianshirt, - /obj/item/clothing/under/gimmick/rank/captain/suit, - /obj/item/clothing/under/gimmick/rank/head_of_personnel/suit, + /obj/item/clothing/under/suit_jacket/green, + /obj/item/clothing/under/suit_jacket/teal, /obj/item/clothing/under/lawyer/purpsuit, /obj/item/clothing/under/rank/mailman, /obj/item/clothing/under/dress/dress_saloon, diff --git a/code/datums/supplypacks/costumes_vr.dm b/code/datums/supplypacks/costumes_vr.dm index 5d65a98ca9..951f58fc8b 100644 --- a/code/datums/supplypacks/costumes_vr.dm +++ b/code/datums/supplypacks/costumes_vr.dm @@ -296,8 +296,10 @@ /obj/item/clothing/accessory/collar/spike, /obj/item/clothing/gloves/fingerless, /obj/item/clothing/gloves/botanic_leather, - /obj/item/clothing/head/cowboy_hat, - /obj/item/clothing/head/cowboy_hat/black + /obj/item/clothing/head/cowboy, + /obj/item/clothing/head/cowboy/bandit, + /obj/item/clothing/accessory/cowboy_vest/brown, + /obj/item/clothing/accessory/cowboy_vest/grey ) cost = 50 containertype = /obj/structure/closet/crate @@ -392,4 +394,22 @@ ) cost = 10 containertype = /obj/structure/closet/crate - containername = "Knights Gear Crate" \ No newline at end of file + containername = "Knights Gear Crate" + +/datum/supply_pack/costumes/christmas + name = "Christmas costume pack" + contains = list( + /obj/item/clothing/head/santa, + /obj/item/clothing/head/santa/green, + /obj/item/clothing/suit/storage/hooded/wintercoat/christmasred, + /obj/item/clothing/suit/storage/hooded/wintercoat/christmasgreen, + /obj/item/clothing/under/christmas/red, + /obj/item/clothing/under/christmas/green, + /obj/item/clothing/under/christmas/croptop/red, + /obj/item/clothing/under/christmas/croptop/green, + /obj/item/clothing/shoes/boots/winter/christmasred, + /obj/item/clothing/shoes/boots/winter/christmasgreen + ) + cost = 20 + containertype = /obj/structure/closet/crate + containername = "Christmas costume pack" \ No newline at end of file diff --git a/code/datums/supplypacks/hydroponics.dm b/code/datums/supplypacks/hydroponics.dm index 4b47a77140..66b3207b2f 100644 --- a/code/datums/supplypacks/hydroponics.dm +++ b/code/datums/supplypacks/hydroponics.dm @@ -49,6 +49,13 @@ containertype = /obj/structure/largecrate/animal/cat containername = "Cat Crate" +/datum/supply_pack/hydro/catslug + name = "Catslug Crate" + contains = list() + cost = 200 + containertype = /obj/structure/largecrate/animal/catslug + containername = "Catslug Crate" + /datum/supply_pack/hydro/hydroponics name = "Hydroponics Supply Crate" contains = list( diff --git a/code/datums/supplypacks/materials.dm b/code/datums/supplypacks/materials.dm index 3cc385eac1..5e181d8af8 100644 --- a/code/datums/supplypacks/materials.dm +++ b/code/datums/supplypacks/materials.dm @@ -28,6 +28,13 @@ containertype = /obj/structure/closet/crate/grayson containername = "Wooden planks crate" +/datum/supply_pack/materials/hardwood50 + name = "50 hardwood planks" + contains = list(/obj/fiftyspawner/hardwood) + cost = 50 + containertype = /obj/structure/closet/crate/gilthari + containername = "Hardwood planks crate" + /datum/supply_pack/materials/plastic50 name = "50 plastic sheets" contains = list(/obj/fiftyspawner/plastic) diff --git a/code/datums/supplypacks/misc_vr.dm b/code/datums/supplypacks/misc_vr.dm index df7af42f5c..63f055d2d4 100644 --- a/code/datums/supplypacks/misc_vr.dm +++ b/code/datums/supplypacks/misc_vr.dm @@ -99,8 +99,8 @@ ) cost = 250 containertype = /obj/structure/closet/crate/secure/gear - containername = "Commonwealth medical hardsuit crate" - access = access_medical + containername = "Commonwealth engineering hardsuit crate" + access = access_engine /datum/supply_pack/misc/zero_rig name = "null hardsuit (jets)" @@ -157,5 +157,4 @@ ) cost = 300 containertype = /obj/structure/closet/crate - containername = "cordless jukebox speakers crate" - \ No newline at end of file + containername = "cordless jukebox speakers crate" \ No newline at end of file diff --git a/code/datums/supplypacks/munitions.dm b/code/datums/supplypacks/munitions.dm index f7b8eeebad..cec258270c 100644 --- a/code/datums/supplypacks/munitions.dm +++ b/code/datums/supplypacks/munitions.dm @@ -187,6 +187,14 @@ containername = "Magnetic ammunition crate" access = access_security +/datum/supply_pack/munitions/claymore + name = "Weapons - Melee - Claymores" + contains = list(/obj/item/weapon/material/sword = 2) + cost = 150 + containertype = /obj/structure/closet/crate/secure/weapon + containername = "Claymore crate" + access = access_armory //two swords that are a one-hit 40 brute + IB chance should be armory-locked + /datum/supply_pack/munitions/shotgunammo name = "Ammunition - Shotgun shells" contains = list( diff --git a/code/datums/supplypacks/munitions_vr.dm b/code/datums/supplypacks/munitions_vr.dm index d9f23902f8..243c0ea871 100644 --- a/code/datums/supplypacks/munitions_vr.dm +++ b/code/datums/supplypacks/munitions_vr.dm @@ -18,3 +18,43 @@ containertype = /obj/structure/closet/crate/secure containername = "phaser handbow crate" access = access_explorer + +/datum/supply_pack/munitions/ofd_charge_emp + name = "OFD Charge - EMP" + contains = list( + /obj/structure/ship_munition/disperser_charge/emp + ) + cost = 35 + containertype = /obj/structure/closet/crate/large/secure/heph + containername = "EMP disperser charge crate" + access = access_security + +/datum/supply_pack/munitions/ofd_charge_explosive + name = "OFD Charge - Explosive" + contains = list( + /obj/structure/ship_munition/disperser_charge/explosive + ) + cost = 35 + containertype = /obj/structure/closet/crate/large/secure/heph + containername = "Explosive disperser charge crate" + access = access_security + +/datum/supply_pack/munitions/ofd_charge_incendiary + name = "OFD Charge - Incendiary" + contains = list( + /obj/structure/ship_munition/disperser_charge/fire + ) + cost = 35 + containertype = /obj/structure/closet/crate/large/secure/heph + containername = "Incendiary disperser charge crate" + access = access_security + +/datum/supply_pack/munitions/ofd_charge_mining + name = "OFD Charge - Mining" + contains = list( + /obj/structure/ship_munition/disperser_charge/mining + ) + cost = 35 + containertype = /obj/structure/closet/crate/large/secure/heph + containername = "Mining disperser charge crate" + access = access_security \ No newline at end of file diff --git a/code/datums/supplypacks/recreation.dm b/code/datums/supplypacks/recreation.dm index a3b6ad30d5..ba6a33d48c 100644 --- a/code/datums/supplypacks/recreation.dm +++ b/code/datums/supplypacks/recreation.dm @@ -1,7 +1,7 @@ /* -* Here is where any supply packs -* related to recreation live. -*/ + * Here is where any supply packs + * related to recreation live. + */ /datum/supply_pack/recreation @@ -23,6 +23,25 @@ containertype = /obj/structure/closet/crate/allico containername = "foam weapon crate" +/datum/supply_pack/recreation/donksoftweapons + name = "Donk-Soft Weapon Crate" + contains = list( + /obj/item/ammo_magazine/ammo_box/foam = 2, + /obj/item/weapon/gun/projectile/shotgun/pump/toy = 2, + /obj/item/weapon/gun/projectile/pistol/toy = 2, + /obj/item/ammo_magazine/mfoam_dart/pistol = 2 + ) + cost = 50 + containertype = /obj/structure/closet/crate/allico + containername = "foam weapon crate" + +/datum/supply_pack/recreation/donksoftvend + name = "Donk-Soft Vendor Crate" + contains = list() + cost = 75 + containertype = /obj/structure/largecrate/donksoftvendor + containername = "\improper Donk-Soft vendor crate" + /datum/supply_pack/recreation/lasertag name = "Lasertag equipment" contains = list( diff --git a/code/datums/supplypacks/supplypacks.dm b/code/datums/supplypacks/supplypacks.dm index d419198af3..14e97cce7a 100644 --- a/code/datums/supplypacks/supplypacks.dm +++ b/code/datums/supplypacks/supplypacks.dm @@ -23,6 +23,7 @@ var/list/all_supply_groups = list("Atmospherics", "Science", "Security", "Supplies", + "Vendor Refills", "Voidsuits") /datum/supply_pack diff --git a/code/datums/supplypacks/vending_refills_vr.dm b/code/datums/supplypacks/vending_refills_vr.dm new file mode 100644 index 0000000000..47ee538d7e --- /dev/null +++ b/code/datums/supplypacks/vending_refills_vr.dm @@ -0,0 +1,137 @@ +/datum/supply_pack/vending_refills + group = "Vendor Refills" + containertype = /obj/structure/closet/crate/plastic + containername = "vendor refill cartridge crate" + +/datum/supply_pack/randomised/vending_refills + group = "Vendor Refills" + containertype = /obj/structure/closet/crate/plastic + containername = "vendor refill cartridge crate" + +/datum/supply_pack/vending_refills/snack + contains = list(/obj/item/weapon/refill_cartridge/autoname/food/snack) + name = "Getmore Chocolate Corp Vendor Refill Cartridge" + cost = 10 + +/datum/supply_pack/vending_refills/fitness + contains = list(/obj/item/weapon/refill_cartridge/autoname/food/fitness) + name = "SweatMAX Vendor Refill Cartridge" + cost = 10 + +/datum/supply_pack/vending_refills/hotfood + contains = list(/obj/item/weapon/refill_cartridge/autoname/food/hotfood) + name = "Hot Foods Vendor Refill Cartridge" + cost = 10 + +/datum/supply_pack/vending_refills/weeb + contains = list(/obj/item/weapon/refill_cartridge/autoname/food/weeb) + name = "Nippon-tan Vendor Refill Cartridge" + cost = 10 + +/datum/supply_pack/vending_refills/sol + contains = list(/obj/item/weapon/refill_cartridge/autoname/food/sol) + name = "Sol-Snacks Vendor Refill Cartridge" + cost = 10 + +/datum/supply_pack/vending_refills/snix + contains = list(/obj/item/weapon/refill_cartridge/autoname/food/snix) + name = "Snix Vendor Refill Cartridge" + cost = 10 + +/datum/supply_pack/vending_refills/snlvend + contains = list(/obj/item/weapon/refill_cartridge/autoname/food/snlvend) + name = "Shop-n-Large Snacks Vendor Refill Cartridge" + cost = 10 + +/datum/supply_pack/vending_refills/sovietvend + contains = list(/obj/item/weapon/refill_cartridge/autoname/food/sovietvend) + name = "Ration Station Vendor Refill Cartridge" + cost = 10 + +/datum/supply_pack/vending_refills/coffee + contains = list(/obj/item/weapon/refill_cartridge/autoname/drink/coffee) + name = "Hot Drinks Vendor Refill Cartridge" + cost = 10 + +/datum/supply_pack/vending_refills/cola + contains = list(/obj/item/weapon/refill_cartridge/autoname/drink/cola) + name = "Robust Softdrinks Vendor Refill Cartridge" + cost = 10 + +/datum/supply_pack/vending_refills/cola_soft + contains = list(/obj/item/weapon/refill_cartridge/autoname/drink/cola_soft) + name = "Soft Robustdrinks Vendor Refill Cartridge" + cost = 10 + +/datum/supply_pack/vending_refills/sovietsoda + contains = list(/obj/item/weapon/refill_cartridge/autoname/drink/sovietsoda) + name = "BODA Vendor Refill Cartridge" + cost = 10 + +/datum/supply_pack/vending_refills/bepis + contains = list(/obj/item/weapon/refill_cartridge/autoname/drink/bepis) + name = "Bepis Softdrinks Vendor Refill Cartridge" + cost = 10 + +/datum/supply_pack/vending_refills/cigarette + contains = list(/obj/item/weapon/refill_cartridge/autoname/cigarette) + name = "Cigarette Vendor Refill Cartridge" + cost = 15 + +/datum/supply_pack/vending_refills/wardrobe + contains = list(/obj/item/weapon/refill_cartridge/multitype/wardrobe) + name = "Wardrobe Vendor Refill Cartridge" + cost = 10 + +/datum/supply_pack/vending_refills/giftvendor + contains = list(/obj/item/weapon/refill_cartridge/autoname/giftvendor) + name = "AlliCo Baubles and Confectionaries Vendor Refill Cartridge" + cost = 20 + +/datum/supply_pack/vending_refills/general_food + contains = list(/obj/item/weapon/refill_cartridge/multitype/food = 5) + name = "5-Pack Food Vendor Refill Cartridges" + cost = 75 + +/datum/supply_pack/vending_refills/general_drink + contains = list(/obj/item/weapon/refill_cartridge/multitype/drink = 5) + name = "5-Pack Drink Vendor Refill Cartridges" + cost = 75 + +/datum/supply_pack/vending_refills/general_clothing + contains = list(/obj/item/weapon/refill_cartridge/multitype/clothing = 5) + name = "5-Pack Clothing Vendor Refill Cartridges" + cost = 75 + +/datum/supply_pack/vending_refills/general_technical + contains = list(/obj/item/weapon/refill_cartridge/multitype/technical = 5) + name = "5-Pack Technical Vendor Refill Cartridges" + cost = 75 + +/datum/supply_pack/vending_refills/general_specialty + contains = list(/obj/item/weapon/refill_cartridge/multitype/specialty = 5) + name = "5-Pack Specialty Vendor Refill Cartridges" + cost = 150 + +/datum/supply_pack/randomised/vending_refills/value_pack // 5 random vendor-specific cartridges at lower average price. But why? + num_contained = 5 + contains = list(/obj/item/weapon/refill_cartridge/autoname/food/snack, + /obj/item/weapon/refill_cartridge/autoname/food/fitness, + /obj/item/weapon/refill_cartridge/autoname/food/hotfood, + /obj/item/weapon/refill_cartridge/autoname/food/weeb, + /obj/item/weapon/refill_cartridge/autoname/food/sol, + /obj/item/weapon/refill_cartridge/autoname/food/snix, + /obj/item/weapon/refill_cartridge/autoname/food/snlvend, + /obj/item/weapon/refill_cartridge/autoname/food/sovietvend, + /obj/item/weapon/refill_cartridge/autoname/drink/coffee, + /obj/item/weapon/refill_cartridge/autoname/drink/cola, + /obj/item/weapon/refill_cartridge/autoname/drink/cola_soft, + /obj/item/weapon/refill_cartridge/autoname/drink/sovietsoda, + /obj/item/weapon/refill_cartridge/autoname/drink/bepis, + /obj/item/weapon/refill_cartridge/autoname/cigarette, + /obj/item/weapon/refill_cartridge/multitype/wardrobe, + /obj/item/weapon/refill_cartridge/autoname/technical/assist, + /obj/item/weapon/refill_cartridge/autoname/technical/tool, + /obj/item/weapon/refill_cartridge/autoname/giftvendor) + name = "5-pack Extra-Cheap Vendor Refill Cartridges" + cost = 35 \ No newline at end of file diff --git a/code/datums/uplink/tools_vr.dm b/code/datums/uplink/tools_vr.dm index abc4d481bf..1cf66457d0 100644 --- a/code/datums/uplink/tools_vr.dm +++ b/code/datums/uplink/tools_vr.dm @@ -73,6 +73,11 @@ item_cost = 15 path = /obj/fiftyspawner/glass +/datum/uplink_item/item/tools/holdingpouch + name = "Pouch of Holding" + item_cost = 20 + path = /obj/item/weapon/storage/pouch/holding + /datum/uplink_item/item/tools/elitelaptop name = "Laptop (Advanced)" item_cost = 20 diff --git a/code/datums/vending/stored_item.dm b/code/datums/vending/stored_item.dm index 4b8606ff61..48162fa940 100644 --- a/code/datums/vending/stored_item.dm +++ b/code/datums/vending/stored_item.dm @@ -42,6 +42,11 @@ var/atom/movable/product = instances[instances.len] // Remove the last added product instances -= product product.forceMove(product_location) + //VOREStation Addition Start + if(istype(product, /obj)) + var/obj/item = product + item.persist_storable = FALSE + //VOREStation Addition End return product /datum/stored_item/proc/add_product(var/atom/movable/product) @@ -60,7 +65,12 @@ var/new_product = new item_path(stored) instances += new_product - +/datum/stored_item/proc/refill_products(var/refill_amount) + if(!instances) + init_products() + for(var/i = 1 to refill_amount) + var/new_product = new item_path(stored) + instances += new_product /datum/stored_item/stack/get_amount() return amount @@ -70,20 +80,20 @@ if(.) var/obj/item/stack/S = product if(istype(S)) - amount += S.amount + amount += S.get_amount() /datum/stored_item/stack/get_product(var/product_location, var/count) if(!LAZYLEN(instances)) return null // Shouldn't happen, but will loudly complain if it breaks - + var/obj/item/stack/S = instances[1] count = min(count, S.get_max_amount()) src.amount -= count // We won't vend more than one full stack per call - + // Case 1: Draw the full amount from the first instance if(count < S.get_amount()) S = S.split(count) - + // Case 2: Amount at least one stack, or have to accumulate else if(count >= S.get_amount()) count -= S.get_amount() @@ -91,6 +101,8 @@ for(var/obj/item/stack/T as anything in instances) if(count <= 0) break + if(T.get_amount() <= count) + instances -=T count -= T.transfer_to(S, count) S.forceMove(product_location) diff --git a/code/defines/obj.dm b/code/defines/obj.dm index f6a8ebfbe0..db64bd8546 100644 --- a/code/defines/obj.dm +++ b/code/defines/obj.dm @@ -100,5 +100,21 @@ user.drop_item() src.throw_at(target, throw_range, throw_speed, user) +/obj/item/weapon/beach_ball/dodgeball + icon = 'icons/obj/balls_vr.dmi' + icon_state = "dodgeball" + item_state = "dodgeball" + item_icons = list(slot_l_hand_str = 'icons/mob/items/lefthand_balls_vr.dmi', slot_r_hand_str = 'icons/mob/items/righthand_balls_vr.dmi') + name = "dodgeball" + desc = "Think fast, chucklenuts!" + w_class = ITEMSIZE_LARGE //Stops people from hiding it in their bags/pockets + force = 0.1 + throwforce = 0.1 + throw_speed = 5 + throw_range = 15 + drop_sound = 'sound/items/drop/rubber.ogg' + pickup_sound = 'sound/items/pickup/rubber.ogg' + hitsound = 'sound/weapons/dodgeball.ogg' + /obj/effect/spawner name = "object spawner" diff --git a/code/defines/obj/weapon.dm b/code/defines/obj/weapon.dm index 0256ec25e5..96ce6d7356 100644 --- a/code/defines/obj/weapon.dm +++ b/code/defines/obj/weapon.dm @@ -298,7 +298,9 @@ /obj/item/weapon/storage/part_replacer name = "rapid part exchange device" desc = "A special mechanical module made to store, sort, and apply standard machine parts." + icon = 'icons/obj/storage_vr.dmi' icon_state = "RPED" + item_state = "RPED" w_class = ITEMSIZE_HUGE can_hold = list(/obj/item/weapon/stock_parts) storage_slots = 50 @@ -312,29 +314,69 @@ drop_sound = 'sound/items/drop/device.ogg' pickup_sound = 'sound/items/pickup/device.ogg' var/panel_req = TRUE + var/pshoom_or_beepboopblorpzingshadashwoosh = 'sound/items/rped.ogg' + var/reskin_ran = FALSE + var/unique_reskin = list("Soulless" = "RPED", + "Soulful" = "RPED_old") + +/obj/item/weapon/storage/part_replacer/proc/play_rped_sound() + //Plays the sound for RPED exhanging or installing parts. +/* if(alt_sound && prob(1)) + playsound(src, alt_sound, 40, 1) + else +*/ + playsound(src, pshoom_or_beepboopblorpzingshadashwoosh, 40, 1) /obj/item/weapon/storage/part_replacer/adv name = "advanced rapid part exchange device" - desc = "A special mechanical module made to store, sort, and apply standard machine parts. This one has a greatly upgraded storage capacity." - icon_state = "RPED" - w_class = ITEMSIZE_HUGE - can_hold = list(/obj/item/weapon/stock_parts) + desc = "A special mechanical module made to store, sort, and apply standard machine parts. This one has a greatly upgraded storage capacity, \ + and the ability to hold beakers." + can_hold = list(/obj/item/weapon/stock_parts, /obj/item/weapon/reagent_containers/glass/beaker) storage_slots = 200 - use_to_pickup = TRUE - allow_quick_gather = 1 - allow_quick_empty = 1 - collection_mode = 1 - display_contents_with_number = 1 - max_w_class = ITEMSIZE_NORMAL max_storage_space = 400 /obj/item/weapon/storage/part_replacer/adv/discount_bluespace - name = "discount bluespace rapid part exchange device" - desc = "A special mechanical module made to store, sort, and apply standard machine parts. This one has a further increased storage capacity, \ + name = "prototype bluespace rapid part exchange device" + icon_state = "DBRPED" + item_state = "DBRPED" + desc = "A special mechanical module made to store, sort, and apply standard machine parts. This one has a further increased storage capacity, \ and the ability to work on machines with closed maintenance panels." storage_slots = 400 max_storage_space = 800 panel_req = FALSE + pshoom_or_beepboopblorpzingshadashwoosh = 'sound/items/pshoom.ogg' + unique_reskin = list("Soulless" = "DBRPED", + "Soulful" = "DBRPED_old") + +/obj/item/weapon/storage/part_replacer/examine(mob/user) + . = ..() + if(!reskin_ran) + . += "[src]'s external casing can be modified via alt-click." + +/obj/item/weapon/storage/part_replacer/AltClick(mob/user) + . = ..() + if(!reskin_ran) + reskin_radial(user) + +/obj/item/weapon/storage/part_replacer/proc/reskin_radial(mob/M) + if(!LAZYLEN(unique_reskin)) + return + + var/list/items = list() + for(var/reskin_option in unique_reskin) + var/image/item_image = image(icon = src.icon, icon_state = unique_reskin[reskin_option]) + items += list("[reskin_option]" = item_image) + sortList(items) + + var/pick = show_radial_menu(M, src, items, radius = 38, require_near = TRUE) + if(!pick) + return + if(!unique_reskin[pick]) + return + icon_state = unique_reskin[pick] + item_state = unique_reskin[pick] + reskin_ran = TRUE + to_chat(M, "[src] is now '[pick]'.") /obj/item/weapon/storage/part_replacer/drop_contents() // hacky-feeling tier-based drop system hide_from(usr) @@ -344,6 +386,7 @@ * Why not just use the stock part's rating variable? * Future-proofing for a potential future where stock parts aren't the only thing that can fit in an RPED. * see: /tg/ and /vg/'s RPEDs fitting power cells, beakers, etc. + * 10/8/21 edit - It's Time. */ for(var/obj/item/B in contents) if(B.rped_rating() < lowest_rating) @@ -352,7 +395,7 @@ if(B.rped_rating() > lowest_rating) continue remove_from_storage(B, T) - + /obj/item/weapon/stock_parts name = "stock part" desc = "What?" @@ -378,6 +421,7 @@ desc = "Used in the construction of computers and other devices with a interactive console." icon_state = "screen" origin_tech = list(TECH_MATERIAL = 1) + rating = 5 // these are actually Really Important for some things?? matter = list(MAT_GLASS = 200) /obj/item/weapon/stock_parts/capacitor @@ -692,3 +736,72 @@ icon_state = "spring" origin_tech = list(TECH_ENGINEERING = 1) matter = list(MAT_STEEL = 40) + +/obj/effect/spawner/parts + name = "nondescript parts bundle that shouldn't exist" + desc = "this qdels itself lol! if you're reading this you're codediving or Someone fucked up" + var/list/items + +/obj/effect/spawner/parts/Initialize(mapload) + ..() + if(items && items.len) + var/turf/T = get_turf(src) + for(var/path in items) + for(var/i in 1 to 5) + new path(T) + return INITIALIZE_HINT_QDEL + +/obj/effect/spawner/parts/t1 + name = "basic parts bundle" + desc = "5 of each T1 part, no more and no less." + items = list( + /obj/item/weapon/stock_parts/matter_bin, + /obj/item/weapon/stock_parts/manipulator, + /obj/item/weapon/stock_parts/capacitor, + /obj/item/weapon/stock_parts/scanning_module, + /obj/item/weapon/stock_parts/micro_laser + ) + +/obj/effect/spawner/parts/t2 + name = "advanced parts bundle" + desc = "5 of each T2 part, no more and no less." + items = list( + /obj/item/weapon/stock_parts/matter_bin/adv, + /obj/item/weapon/stock_parts/manipulator/nano, + /obj/item/weapon/stock_parts/capacitor/adv, + /obj/item/weapon/stock_parts/scanning_module/adv, + /obj/item/weapon/stock_parts/micro_laser/high + ) + +/obj/effect/spawner/parts/t3 + name = "super parts bundle" + desc = "5 of each T3 part, no more and no less." + items = list( + /obj/item/weapon/stock_parts/matter_bin/super, + /obj/item/weapon/stock_parts/manipulator/pico, + /obj/item/weapon/stock_parts/capacitor/super, + /obj/item/weapon/stock_parts/scanning_module/phasic, + /obj/item/weapon/stock_parts/micro_laser/ultra + ) + +/obj/effect/spawner/parts/t4 + name = "hyper parts bundle" + desc = "5 of each T4 part, no more and no less." + items = list( + /obj/item/weapon/stock_parts/matter_bin/hyper, + /obj/item/weapon/stock_parts/manipulator/hyper, + /obj/item/weapon/stock_parts/capacitor/hyper, + /obj/item/weapon/stock_parts/scanning_module/hyper, + /obj/item/weapon/stock_parts/micro_laser/hyper + ) + +/obj/effect/spawner/parts/t5 + name = "omni parts bundle" + desc = "5 of each T5 part, no more and no less." + items = list( + /obj/item/weapon/stock_parts/matter_bin/omni, + /obj/item/weapon/stock_parts/manipulator/omni, + /obj/item/weapon/stock_parts/capacitor/omni, + /obj/item/weapon/stock_parts/scanning_module/omni, + /obj/item/weapon/stock_parts/micro_laser/omni + ) diff --git a/code/game/area/CC_areas_vr.dm b/code/game/area/CC_areas_vr.dm new file mode 100644 index 0000000000..b4853bd081 --- /dev/null +++ b/code/game/area/CC_areas_vr.dm @@ -0,0 +1,36 @@ +/area/centcom/terminal/tramfluff + name = "Orange Line Tram" + icon_state = "centcom_dock" + ambience = AMBIENCE_ARRIVALS + base_turf = /turf/simulated/floor/tiled/techfloor/grid + +/area/centcom/terminal/shuttlefluff + name = "NRV Transfer Shuttle" + icon_state = "centcom_dock" + ambience = AMBIENCE_ARRIVALS + base_turf = /turf/simulated/floor/reinforced + +//////// Abductor Areas //////// +/area/unknown + requires_power = 0 + flags = RAD_SHIELDED + icon_state = "red2" + limit_mob_size = FALSE + +/area/unknown/dorm1 + name = "Unknown Dorm 1" + +/area/unknown/dorm2 + name = "Unknown Dorm 2" + +/area/unknown/dorm3 + name = "Unknown Dorm 3" + +/area/unknown/dorm4 + name = "Unknown Dorm 4" + +/area/unknown/dorm5 + name = "Unknown Dorm 5" + +/area/unknown/dorm6 + name = "Unknown Dorm 6" diff --git a/code/game/area/Space Station 13 areas_vr.dm b/code/game/area/Space Station 13 areas_vr.dm index c7a18a4107..f25c8e5f5f 100644 --- a/code/game/area/Space Station 13 areas_vr.dm +++ b/code/game/area/Space Station 13 areas_vr.dm @@ -42,4 +42,11 @@ /area/holodeck/source_smoleworld name = "\improper Holodeck - Smolworld" - +/area/holodeck/source_gym + name = "\improper Holodeck - Gym" + +/area/holodeck/source_game_room + name = "\improper Holodeck - Game Room" + +/area/holodeck/source_patient_ward + name = "\improper Holodeck - Patient Ward" diff --git a/code/game/area/areas.dm b/code/game/area/areas.dm index 90d43a7c36..e11bf6e2c2 100644 --- a/code/game/area/areas.dm +++ b/code/game/area/areas.dm @@ -43,7 +43,9 @@ var/no_air = null // var/list/lights // list of all lights on this area var/list/all_doors = null //Added by Strumpetplaya - Alarm Change - Contains a list of doors adjacent to this area + var/list/all_arfgs = null //Similar, but a list of all arfgs adjacent to this area var/firedoors_closed = 0 + var/arfgs_active = 0 var/list/ambience = list() var/list/forced_ambience = null var/sound_env = STANDARD_STATION @@ -128,10 +130,11 @@ return 1 return 0 -// Either close or open firedoors depending on current alert statuses +// Either close or open firedoors and arfgs depending on current alert statuses /area/proc/firedoors_update() if(fire || party || atmosalm) firedoors_close() + arfgs_activate() // VOREStation Edit - Make the lights colored! if(fire) for(var/obj/machinery/light/L in src) @@ -142,6 +145,7 @@ // VOREStation Edit End else firedoors_open() + arfgs_deactivate() // VOREStation Edit - Put the lights back! for(var/obj/machinery/light/L in src) L.reset_alert() @@ -175,6 +179,25 @@ spawn(0) E.open() +// Activate all retention fields! +/area/proc/arfgs_activate() + if(!arfgs_active) + arfgs_active = TRUE + if(!all_arfgs) + return + for(var/obj/machinery/atmospheric_field_generator/E in all_arfgs) + E.generate_field() //don't need to check powered state like doors, the arfgs handles it on its end + E.wasactive = TRUE + +// Deactivate retention fields! +/area/proc/arfgs_deactivate() + if(arfgs_active) + arfgs_active = FALSE + if(!all_arfgs) + return + for(var/obj/machinery/atmospheric_field_generator/E in all_arfgs) + E.disable_field() + E.wasactive = FALSE /area/proc/fire_alert() if(!fire) diff --git a/code/game/atoms.dm b/code/game/atoms.dm index 183cbf4ca8..55b6938a7c 100644 --- a/code/game/atoms.dm +++ b/code/game/atoms.dm @@ -477,7 +477,11 @@ src.germ_level = 0 if(istype(blood_DNA, /list)) blood_DNA = null - return 1 + return TRUE + +/atom/proc/on_rag_wipe(var/obj/item/weapon/reagent_containers/glass/rag/R) + clean_blood() + R.reagents.splash(src, 1) /atom/proc/get_global_map_pos() if(!islist(global_map) || isemptylist(global_map)) return diff --git a/code/game/dna/dna2.dm b/code/game/dna/dna2.dm index 93a2895311..df62ad8ecf 100644 --- a/code/game/dna/dna2.dm +++ b/code/game/dna/dna2.dm @@ -123,6 +123,7 @@ var/global/list/datum/dna/gene/dna_genes[0] // New stuff var/species = SPECIES_HUMAN var/list/body_markings = list() + var/list/body_markings_genetic = list() var/list/body_descriptors = null var/list/genetic_modifiers = list() // Modifiers with the MODIFIER_GENETIC flag are saved. Note that only the type is saved, not an instance. @@ -143,6 +144,8 @@ var/global/list/datum/dna/gene/dna_genes[0] new_dna.custom_ask=custom_ask //VOREStaton Edit new_dna.custom_whisper=custom_whisper //VOREStaton Edit new_dna.custom_exclaim=custom_exclaim //VOREStaton Edit + var/list/body_markings_genetic = (body_markings - body_marking_nopersist_list) + new_dna.body_markings=body_markings_genetic.Copy() for(var/b=1;b<=DNA_SE_LENGTH;b++) new_dna.SE[b]=SE[b] if(b<=DNA_UI_LENGTH) diff --git a/code/game/gamemodes/changeling/changeling_powers.dm b/code/game/gamemodes/changeling/changeling_powers.dm index 54b1b4c1e0..431b4e06f3 100644 --- a/code/game/gamemodes/changeling/changeling_powers.dm +++ b/code/game/gamemodes/changeling/changeling_powers.dm @@ -102,7 +102,8 @@ var/global/list/possible_changeling_IDs = list("Alpha","Beta","Gamma","Delta","E var/mob/living/carbon/human/H = src if(istype(H)) - var/datum/absorbed_dna/newDNA = new(H.real_name, H.dna, H.species.name, H.languages, H.identifying_gender, H.flavor_texts) + var/saved_dna = H.dna.Clone() /// Prevent transform from breaking. + var/datum/absorbed_dna/newDNA = new(H.real_name, saved_dna, H.species.name, H.languages, H.identifying_gender, H.flavor_texts, H.modifiers) absorbDNA(newDNA) return 1 diff --git a/code/game/gamemodes/changeling/powers/armblade.dm b/code/game/gamemodes/changeling/powers/armblade.dm index fc54b32891..ffdc9b4ae3 100644 --- a/code/game/gamemodes/changeling/powers/armblade.dm +++ b/code/game/gamemodes/changeling/powers/armblade.dm @@ -88,11 +88,6 @@ creator = null ..() -/obj/item/weapon/melee/changeling/suicide_act(mob/user) - var/datum/gender/T = gender_datums[user.get_visible_gender()] - user.visible_message("[user] is impaling [T.himself] with the [src.name]! It looks like [T.he] [T.is] trying to commit suicide.") - return(BRUTELOSS) - /obj/item/weapon/melee/changeling/process() //Stolen from ninja swords. if(!creator || loc != creator || !creator.item_is_in_hands(src)) // Tidy up a bit. diff --git a/code/game/gamemodes/changeling/powers/extract_dna_sting.dm b/code/game/gamemodes/changeling/powers/extract_dna_sting.dm index 35ce94daf0..baf80140f1 100644 --- a/code/game/gamemodes/changeling/powers/extract_dna_sting.dm +++ b/code/game/gamemodes/changeling/powers/extract_dna_sting.dm @@ -37,7 +37,8 @@ add_attack_logs(src,T,"DNA extraction sting (changeling)") - var/datum/absorbed_dna/newDNA = new(T.real_name, T.dna, T.species.name, T.languages) + var/saved_dna = T.dna.Clone() /// Prevent transforming bugginess. + var/datum/absorbed_dna/newDNA = new(T.real_name, saved_dna, T.species.name, T.languages, T.identifying_gender, T.flavor_text, T.modifiers) absorbDNA(newDNA) feedback_add_details("changeling_powers","ED") diff --git a/code/game/gamemodes/objective.dm b/code/game/gamemodes/objective.dm index ed28b847fa..cb2a3fcb4b 100644 --- a/code/game/gamemodes/objective.dm +++ b/code/game/gamemodes/objective.dm @@ -632,7 +632,7 @@ var/global/list/all_objectives = list() return /datum/objective/heist/kidnap/choose_target() - var/list/roles = list("Chief Engineer","Research Director","Roboticist","Chemist","Station Engineer") + var/list/roles = list("Chief Engineer","Research Director","Roboticist","Chemist","Engineer") var/list/possible_targets = list() var/list/priority_targets = list() diff --git a/code/game/jobs/access_datum_vr.dm b/code/game/jobs/access_datum_vr.dm index bdfef8a12b..4500e061a5 100644 --- a/code/game/jobs/access_datum_vr.dm +++ b/code/game/jobs/access_datum_vr.dm @@ -15,7 +15,7 @@ var/const/access_pilot = 67 /datum/access/pilot id = access_pilot desc = "Pilot" - region = ACCESS_REGION_SUPPLY + region = ACCESS_REGION_GENERAL /var/const/access_talon = 301 /datum/access/talon diff --git a/code/game/jobs/job/captain.dm b/code/game/jobs/job/captain.dm index 596f078eca..2138298e6d 100644 --- a/code/game/jobs/job/captain.dm +++ b/code/game/jobs/job/captain.dm @@ -23,7 +23,10 @@ var/datum/announcement/minor/captain_announcement = new(do_newscast = 1) economic_modifier = 20 minimum_character_age = 25 + min_age_by_species = list(SPECIES_HUMAN_VATBORN = 14) ideal_character_age = 70 // Old geezer captains ftw + ideal_age_by_species = list(SPECIES_HUMAN_VATBORN = 55) /// Vatborn live shorter, no other race eligible for captain besides human/skrell + banned_job_species = list(SPECIES_UNATHI, SPECIES_TAJ, SPECIES_DIONA, SPECIES_PROMETHEAN, SPECIES_ZADDAT, "mechanical", "digital") outfit_type = /decl/hierarchy/outfit/job/captain job_description = "The Site Manager manages the other Command Staff, and through them the rest of the station. Though they have access to everything, \ @@ -31,6 +34,7 @@ var/datum/announcement/minor/captain_announcement = new(do_newscast = 1) have an understanding of Standard Operating Procedure, and is subject to it, and legal action, in the same way as every other crew member." alt_titles = list("Overseer"= /datum/alt_title/overseer) + /* /datum/job/captain/equip(var/mob/living/carbon/human/H) . = ..() @@ -66,7 +70,10 @@ var/datum/announcement/minor/captain_announcement = new(do_newscast = 1) economic_modifier = 10 minimum_character_age = 25 + min_age_by_species = list(SPECIES_UNATHI = 70, SPECIES_TESHARI = 20, "mechanical" = 10, SPECIES_HUMAN_VATBORN = 14) ideal_character_age = 50 + ideal_age_by_species = list(SPECIES_UNATHI = 140, SPECIES_TESHARI = 27, "mechanical" = 20, SPECIES_HUMAN_VATBORN = 20) + banned_job_species = list(SPECIES_PROMETHEAN, SPECIES_ZADDAT, "digital", SPECIES_DIONA) outfit_type = /decl/hierarchy/outfit/job/hop job_description = "The Head of Personnel manages the Service department, the Exploration team, and most other civilians. They also \ diff --git a/code/game/jobs/job/captain_vr.dm b/code/game/jobs/job/captain_vr.dm index af4b1c3619..a055ce9590 100644 --- a/code/game/jobs/job/captain_vr.dm +++ b/code/game/jobs/job/captain_vr.dm @@ -2,7 +2,8 @@ disallow_jobhop = TRUE pto_type = PTO_CIVILIAN dept_time_required = 80 //Pending something more complicated - alt_titles = list("Overseer"= /datum/alt_title/overseer, "Facility Director" = /datum/alt_title/facility_director, "Chief Supervisor" = /datum/alt_title/chief_supervisor) + alt_titles = list("Overseer"= /datum/alt_title/overseer, "Facility Director" = /datum/alt_title/facility_director, "Chief Supervisor" = /datum/alt_title/chief_supervisor, + "Captain" = /datum/alt_title/captain) /datum/alt_title/facility_director title = "Facility Director" @@ -10,6 +11,8 @@ /datum/alt_title/chief_supervisor title = "Chief Supervisor" +/datum/alt_title/captain + title = "Captain" /datum/job/hop disallow_jobhop = TRUE diff --git a/code/game/jobs/job/civilian.dm b/code/game/jobs/job/civilian.dm index febbd265b2..b80257fee5 100644 --- a/code/game/jobs/job/civilian.dm +++ b/code/game/jobs/job/civilian.dm @@ -99,6 +99,7 @@ economic_modifier = 5 access = list(access_maint_tunnels, access_mailsorting, access_cargo, access_cargo_bot, access_qm, access_mining, access_mining_station) minimal_access = list(access_maint_tunnels, access_mailsorting, access_cargo, access_cargo_bot, access_qm, access_mining, access_mining_station) + banned_job_species = list("digital", SPECIES_PROMETHEAN) ideal_character_age = 40 @@ -231,6 +232,7 @@ access = list(access_lawyer, access_sec_doors, access_maint_tunnels, access_heads) minimal_access = list(access_lawyer, access_sec_doors, access_heads) minimal_player_age = 7 + banned_job_species = list(SPECIES_PROMETHEAN, SPECIES_UNATHI, SPECIES_DIONA, SPECIES_TESHARI, SPECIES_ZADDAT, "digital") outfit_type = /decl/hierarchy/outfit/job/internal_affairs_agent job_description = "An Internal Affairs Agent makes sure that the crew is following Standard Operating Procedure. They also \ diff --git a/code/game/jobs/job/civilian_vr.dm b/code/game/jobs/job/civilian_vr.dm index eb04306912..c26903f1dc 100644 --- a/code/game/jobs/job/civilian_vr.dm +++ b/code/game/jobs/job/civilian_vr.dm @@ -196,6 +196,38 @@ title = "Monk" +////////////////////////////////// +// Pilot +////////////////////////////////// + +/datum/job/pilot + title = "Pilot" + flag = PILOT + departments = list(DEPARTMENT_CIVILIAN) + department_flag = CIVILIAN + faction = "Station" + total_positions = 5 + spawn_positions = 5 + supervisors = "the Head of Personnel" + selection_color = "#515151" + economic_modifier = 5 + minimal_player_age = 3 + pto_type = PTO_CIVILIAN + access = list(access_pilot) + minimal_access = list(access_pilot) + outfit_type = /decl/hierarchy/outfit/job/pilot + job_description = "A Pilot flies the various shuttles in the Virgo-Erigone System." + alt_titles = list("Co-Pilot" = /datum/alt_title/co_pilot, "Navigator" = /datum/alt_title/navigator, "Helmsman" = /datum/alt_title/helmsman) + +/datum/alt_title/co_pilot + title = "Co-Pilot" + title_blurb = "A Co-Pilot is there primarily to assist main pilot as well as learn from them" + +/datum/alt_title/navigator + title = "Navigator" + +/datum/alt_title/helmsman + title = "Helmsman" ////////////////////////////////// // Entertainer @@ -219,7 +251,8 @@ job_description = "An entertainer does just that, entertains! Put on plays, play music, sing songs, tell stories, or read your favorite fanfic." alt_titles = list("Performer" = /datum/alt_title/performer, "Musician" = /datum/alt_title/musician, "Stagehand" = /datum/alt_title/stagehand, "Actor" = /datum/alt_title/actor, "Dancer" = /datum/alt_title/dancer, "Singer" = /datum/alt_title/singer, - "Magician" = /datum/alt_title/magician, "Comedian" = /datum/alt_title/comedian, "Tragedian" = /datum/alt_title/tragedian) + "Magician" = /datum/alt_title/magician, "Comedian" = /datum/alt_title/comedian, "Tragedian" = /datum/alt_title/tragedian, + "Artist" = /datum/alt_title/artist) // Entertainer Alt Titles /datum/alt_title/actor @@ -256,4 +289,8 @@ /datum/alt_title/tragedian title = "Tragedian" - title_blurb = "A Tragedian will focus on making people think about life and world around them! Life is a tragedy, and who's better to convey its emotions than you?" \ No newline at end of file + title_blurb = "A Tragedian will focus on making people think about life and world around them! Life is a tragedy, and who's better to convey its emotions than you?" + +/datum/alt_title/artist + title = "Artist" + title_blurb = "An Artist's calling is to create beautiful arts! Whatever form may they take, create and have people astonished with your creativity." \ No newline at end of file diff --git a/code/game/jobs/job/engineering.dm b/code/game/jobs/job/engineering.dm index ae937d106b..780f99a76f 100644 --- a/code/game/jobs/job/engineering.dm +++ b/code/game/jobs/job/engineering.dm @@ -17,7 +17,10 @@ economic_modifier = 10 minimum_character_age = 25 + min_age_by_species = list(SPECIES_UNATHI = 70, "mechanical" = 10, SPECIES_HUMAN_VATBORN = 14) ideal_character_age = 50 + ideal_age_by_species = list(SPECIES_UNATHI = 140, "mechanical" = 20, SPECIES_HUMAN_VATBORN = 20) + banned_job_species = list(SPECIES_TESHARI, SPECIES_DIONA, SPECIES_PROMETHEAN, SPECIES_ZADDAT, "digital") access = list(access_engine, access_engine_equip, access_tech_storage, access_maint_tunnels, @@ -39,7 +42,7 @@ // Engineer ////////////////////////////////// /datum/job/engineer - title = "Station Engineer" + title = "Engineer" flag = ENGINEER departments = list(DEPARTMENT_ENGINEERING) department_flag = ENGSEC @@ -55,6 +58,7 @@ "Engine Technician" = /datum/alt_title/engine_tech, "Electrician" = /datum/alt_title/electrician) minimal_player_age = 3 + min_age_by_species = list(SPECIES_PROMETHEAN = 2) outfit_type = /decl/hierarchy/outfit/job/engineering/engineer job_description = "An Engineer keeps the station running. They repair damages, keep the atmosphere stable, and ensure that power is being \ @@ -94,6 +98,7 @@ minimal_access = list(access_eva, access_engine, access_atmospherics, access_maint_tunnels, access_emergency_storage, access_construction, access_external_airlocks) minimal_player_age = 3 + min_age_by_species = list(SPECIES_PROMETHEAN = 2) outfit_type = /decl/hierarchy/outfit/job/engineering/atmos job_description = "An Atmospheric Technician is primarily concerned with keeping the station's atmosphere breathable. They are expected to have a good \ diff --git a/code/game/jobs/job/exploration_vr.dm b/code/game/jobs/job/exploration_vr.dm index f201406fbc..80b32adb37 100644 --- a/code/game/jobs/job/exploration_vr.dm +++ b/code/game/jobs/job/exploration_vr.dm @@ -55,37 +55,6 @@ /datum/alt_title/exploration_manager title = "Exploration Manager" - -/datum/job/pilot - title = "Pilot" - flag = PILOT - departments = list(DEPARTMENT_CIVILIAN) - department_flag = CIVILIAN - faction = "Station" - total_positions = 5 - spawn_positions = 5 - supervisors = "the Head of Personnel" - selection_color = "#515151" - economic_modifier = 5 - minimal_player_age = 3 - pto_type = PTO_EXPLORATION - access = list(access_pilot) - minimal_access = list(access_pilot) - outfit_type = /decl/hierarchy/outfit/job/pilot - job_description = "A Pilot flies the various shuttles in the Virgo-Erigone System." - alt_titles = list("Co-Pilot" = /datum/alt_title/co_pilot, "Navigator" = /datum/alt_title/navigator, "Helmsman" = /datum/alt_title/helmsman) - -/datum/alt_title/co_pilot - title = "Co-Pilot" - title_blurb = "A Co-Pilot is there primarily to assist main pilot as well as learn from them" - -/datum/alt_title/navigator - title = "Navigator" - -/datum/alt_title/helmsman - title = "Helmsman" - - /datum/job/explorer title = "Explorer" flag = EXPLORER diff --git a/code/game/jobs/job/job.dm b/code/game/jobs/job/job.dm index a1ca756462..509572aa98 100644 --- a/code/game/jobs/job/job.dm +++ b/code/game/jobs/job/job.dm @@ -22,7 +22,10 @@ var/department_accounts = null // Which department accounts should people with this position be given the pin for? var/assignable = TRUE // Should it show up on things like the ID computer? var/minimum_character_age = 0 + var/list/min_age_by_species = null var/ideal_character_age = 30 + var/list/ideal_age_by_species = null + var/list/banned_job_species = null var/has_headset = TRUE //Do people with this job need to be given headsets and told how to use them? E.g. Cyborgs don't. var/account_allowed = 1 // Does this job type come with a station account? @@ -158,4 +161,25 @@ if(mannequin.back) var/obj/O = mannequin.back mannequin.drop_from_inventory(O) - qdel(O) \ No newline at end of file + qdel(O) + +///Assigns minimum age by race & brain type. Code says Positronic = mechanical and Drone = digital because nothing can be simple. +///Will first check based on brain type, then based on species. +/datum/job/proc/get_min_age(species_name, brain_type) + return minimum_character_age // VOREStation Edit - Minimum character age by rules is 18, return default which is standard for all species + //return (brain_type && LAZYACCESS(min_age_by_species, brain_type)) || LAZYACCESS(min_age_by_species, species_name) || minimum_character_age //VOREStation Removal + +/datum/job/proc/get_ideal_age(species_name, brain_type) + return ideal_character_age // VOREStation Edit - Minimum character age by rules is 18, return default which is standard for all species + //return (brain_type && LAZYACCESS(ideal_age_by_species, brain_type)) || LAZYACCESS(ideal_age_by_species, brain_type) || ideal_character_age //VOREStation Removal + +/datum/job/proc/is_species_banned(species_name, brain_type) + return FALSE // VOREStation Edit - Any species can be any job. + /* VOREStation Removal + if(banned_job_species == null) + return + if(species_name in banned_job_species) + return TRUE + if(brain_type in banned_job_species) + return TRUE + */ \ No newline at end of file diff --git a/code/game/jobs/job/medical.dm b/code/game/jobs/job/medical.dm index e74b0798b6..7594ade21f 100644 --- a/code/game/jobs/job/medical.dm +++ b/code/game/jobs/job/medical.dm @@ -23,8 +23,11 @@ access_keycard_auth, access_sec_doors, access_psychiatrist, access_eva, access_external_airlocks, access_maint_tunnels) minimum_character_age = 25 + min_age_by_species = list(SPECIES_UNATHI = 70, "mechanical" = 10, SPECIES_HUMAN_VATBORN = 14) minimal_player_age = 10 ideal_character_age = 50 + ideal_age_by_species = list(SPECIES_UNATHI = 140, "mechanical" = 20, SPECIES_HUMAN_VATBORN = 20) + banned_job_species = list(SPECIES_TESHARI, SPECIES_DIONA, SPECIES_PROMETHEAN, SPECIES_ZADDAT, "digital") outfit_type = /decl/hierarchy/outfit/job/medical/cmo job_description = "The CMO manages the Medical department and is a position requiring experience and skill; their goal is to ensure that their \ @@ -58,6 +61,8 @@ "Nurse" = /datum/alt_title/nurse, "Virologist" = /datum/alt_title/virologist) + min_age_by_species = list(SPECIES_PROMETHEAN = 3) + //Medical Doctor Alt Titles /datum/alt_title/surgeon title = "Surgeon" @@ -103,6 +108,7 @@ access = list(access_medical, access_medical_equip, access_morgue, access_surgery, access_chemistry, access_virology, access_genetics) minimal_access = list(access_medical, access_medical_equip, access_chemistry) minimal_player_age = 3 + min_age_by_species = list(SPECIES_PROMETHEAN = 3) outfit_type = /decl/hierarchy/outfit/job/medical/chemist job_description = "A Chemist produces and maintains a stock of basic to advanced chemicals for medical and occasionally research use. \ @@ -157,6 +163,7 @@ job_description = "A Psychiatrist provides mental health services to crew members in need. They may also be called upon to determine whatever \ ails the mentally unwell, frequently under Security supervision. They understand the effects of various psychoactive drugs." alt_titles = list("Psychologist" = /datum/alt_title/psychologist) + banned_job_species = list(SPECIES_PROMETHEAN, SPECIES_DIONA) //Psychiatrist Alt Titles /datum/alt_title/psychologist @@ -185,6 +192,9 @@ job_description = "A Paramedic is primarily concerned with the recovery of patients who are unable to make it to the Medical Department on their own. \ They may also be called upon to keep patients stable when Medical is busy or understaffed." alt_titles = list("Emergency Medical Technician" = /datum/alt_title/emt) + banned_job_species = list(SPECIES_DIONA) + + min_age_by_species = list(SPECIES_PROMETHEAN = 2) // Paramedic Alt Titles /datum/alt_title/emt diff --git a/code/game/jobs/job/science.dm b/code/game/jobs/job/science.dm index 79d1be6c3b..805cd683be 100644 --- a/code/game/jobs/job/science.dm +++ b/code/game/jobs/job/science.dm @@ -26,7 +26,10 @@ minimum_character_age = 25 minimal_player_age = 14 + min_age_by_species = list(SPECIES_UNATHI = 70, "mechanical" = 10, SPECIES_HUMAN_VATBORN = 14) ideal_character_age = 50 + ideal_age_by_species = list(SPECIES_UNATHI = 140, "mechanical" = 20, SPECIES_HUMAN_VATBORN = 20) + banned_job_species = list(SPECIES_TESHARI, SPECIES_DIONA, SPECIES_PROMETHEAN, SPECIES_ZADDAT, "digital") outfit_type = /decl/hierarchy/outfit/job/science/rd job_description = "The Research Director manages and maintains the Research department. They are required to ensure the safety of the entire crew, \ @@ -35,6 +38,7 @@ are encouraged to allow their staff to perform their own duties." alt_titles = list("Research Supervisor" = /datum/alt_title/research_supervisor) + // Research Director Alt Titles /datum/alt_title/research_supervisor title = "Research Supervisor" @@ -55,6 +59,8 @@ economic_modifier = 7 access = list(access_robotics, access_tox, access_tox_storage, access_research, access_xenobiology, access_xenoarch) minimal_access = list(access_tox, access_tox_storage, access_research, access_xenoarch) + min_age_by_species = list(SPECIES_PROMETHEAN = 2) + banned_job_species = list("digital") minimal_player_age = 14 @@ -98,8 +104,10 @@ economic_modifier = 7 access = list(access_robotics, access_tox, access_tox_storage, access_research, access_xenobiology, access_hydroponics) minimal_access = list(access_research, access_xenobiology, access_hydroponics, access_tox_storage) + banned_job_species = list("digital") minimal_player_age = 14 + min_age_by_species = list(SPECIES_PROMETHEAN = 2) outfit_type = /decl/hierarchy/outfit/job/science/xenobiologist job_description = "A Xenobiologist studies esoteric lifeforms, usually in the relative safety of their lab. They attempt to find ways to benefit \ @@ -131,6 +139,8 @@ VR edit end*/ access = list(access_robotics, access_tox, access_tox_storage, access_tech_storage, access_morgue, access_research) //As a job that handles so many corpses, it makes sense for them to have morgue access. minimal_access = list(access_robotics, access_tech_storage, access_morgue, access_research) //As a job that handles so many corpses, it makes sense for them to have morgue access. minimal_player_age = 7 + min_age_by_species = list(SPECIES_PROMETHEAN = 2) + banned_job_species = list("digital") outfit_type = /decl/hierarchy/outfit/job/science/roboticist job_description = "A Roboticist maintains and repairs the station's synthetics, including crew with prosthetic limbs. \ diff --git a/code/game/jobs/job/security.dm b/code/game/jobs/job/security.dm index 631b81e16e..07b363b67f 100644 --- a/code/game/jobs/job/security.dm +++ b/code/game/jobs/job/security.dm @@ -24,7 +24,11 @@ access_research, access_engine, access_mining, access_medical, access_construction, access_mailsorting, access_heads, access_hos, access_RC_announce, access_keycard_auth, access_gateway, access_external_airlocks) minimum_character_age = 25 + min_age_by_species = list(SPECIES_HUMAN_VATBORN = 14) minimal_player_age = 14 + ideal_character_age = 50 + ideal_age_by_species = list(SPECIES_HUMAN_VATBORN = 20) + banned_job_species = list(SPECIES_TESHARI, SPECIES_DIONA, SPECIES_PROMETHEAN, SPECIES_ZADDAT, "digital", SPECIES_UNATHI, "mechanical") outfit_type = /decl/hierarchy/outfit/job/security/hos job_description = " The Head of Security manages the Security Department, keeping the station safe and making sure the rules are followed. They are expected to \ @@ -32,6 +36,7 @@ perform the duties of absent Security roles, such as distributing gear from the Armory." alt_titles = list("Security Commander" = /datum/alt_title/sec_commander, "Chief of Security" = /datum/alt_title/sec_chief) + // Head of Security Alt Titles /datum/alt_title/sec_commander title = "Security Commander" @@ -57,6 +62,7 @@ access = list(access_security, access_eva, access_sec_doors, access_brig, access_armory, access_maint_tunnels, access_morgue, access_external_airlocks) minimal_access = list(access_security, access_eva, access_sec_doors, access_brig, access_armory, access_maint_tunnels, access_external_airlocks) minimal_player_age = 5 + banned_job_species = list(SPECIES_ZADDAT, SPECIES_PROMETHEAN, SPECIES_TESHARI, SPECIES_DIONA) outfit_type = /decl/hierarchy/outfit/job/security/warden job_description = "The Warden watches over the physical Security Department, making sure the Brig and Armoury are secure and in order at all times. They oversee \ @@ -81,6 +87,7 @@ minimal_access = list(access_security, access_sec_doors, access_forensics_lockers, access_morgue, access_maint_tunnels, access_eva, access_external_airlocks) economic_modifier = 5 minimal_player_age = 3 + banned_job_species = list(SPECIES_ZADDAT, SPECIES_PROMETHEAN, SPECIES_DIONA) outfit_type = /decl/hierarchy/outfit/job/security/detective job_description = "A Detective works to help Security find criminals who have not properly been identified, through interviews and forensic work. \ @@ -110,6 +117,7 @@ access = list(access_security, access_eva, access_sec_doors, access_brig, access_maint_tunnels, access_morgue, access_external_airlocks) minimal_access = list(access_security, access_eva, access_sec_doors, access_brig, access_maint_tunnels, access_external_airlocks) minimal_player_age = 3 + banned_job_species = list(SPECIES_ZADDAT, SPECIES_TESHARI, SPECIES_DIONA) outfit_type = /decl/hierarchy/outfit/job/security/officer job_description = "A Security Officer is concerned with maintaining the safety and security of the station as a whole, dealing with external threats and \ @@ -117,6 +125,8 @@ No one is above the Law, not Security or Command." alt_titles = list("Junior Officer" = /datum/alt_title/junior_officer) + min_age_by_species = list(SPECIES_PROMETHEAN = 3) + // Security Officer Alt Titles /datum/alt_title/junior_officer title = "Junior Officer" diff --git a/code/game/jobs/job_controller.dm b/code/game/jobs/job_controller.dm index 2e45691570..2c8f6dd8b8 100644 --- a/code/game/jobs/job_controller.dm +++ b/code/game/jobs/job_controller.dm @@ -54,7 +54,7 @@ var/global/datum/controller/occupations/job_master var/datum/job/job = GetJob(rank) if(!job) return 0 - if(job.minimum_character_age && (player.client.prefs.age < job.minimum_character_age)) + if((job.minimum_character_age || job.min_age_by_species) && (player.client.prefs.age < job.get_min_age(player.client.prefs.species, player.client.prefs.organ_data["brain"]))) return 0 if(jobban_isbanned(player, rank)) return 0 @@ -97,7 +97,7 @@ var/global/datum/controller/occupations/job_master if(!job.player_old_enough(player.client)) Debug("FOC player not old enough, Player: [player]") continue - if(job.minimum_character_age && (player.client.prefs.age < job.minimum_character_age)) + if(job.minimum_character_age && (player.client.prefs.age < job.get_min_age(player.client.prefs.species, player.client.prefs.organ_data["brain"]))) Debug("FOC character not old enough, Player: [player]") continue //VOREStation Code Start @@ -108,6 +108,9 @@ var/global/datum/controller/occupations/job_master Debug("FOC is_job_whitelisted failed, Player: [player]") continue //VOREStation Code End + if(job.is_species_banned(player.client.prefs.species, player.client.prefs.organ_data["brain"]) == TRUE) + Debug("FOC character species invalid for job, Player: [player]") + continue if(flag && !(player.client.prefs.be_special & flag)) Debug("FOC flag failed, Player: [player], Flag: [flag], ") continue @@ -122,7 +125,10 @@ var/global/datum/controller/occupations/job_master if(!job) continue - if(job.minimum_character_age && (player.client.prefs.age < job.minimum_character_age)) + if((job.minimum_character_age || job.min_age_by_species) && (player.client.prefs.age < job.get_min_age(player.client.prefs.species, player.client.prefs.organ_data["brain"]))) + continue + + if(job.is_species_banned(player.client.prefs.species, player.client.prefs.organ_data["brain"]) == TRUE) continue if(istype(job, GetJob(USELESS_JOB))) // We don't want to give him assistant, that's boring! //VOREStation Edit - Visitor not Assistant @@ -180,20 +186,18 @@ var/global/datum/controller/occupations/job_master if(!V.client) continue var/age = V.client.prefs.age - if(age < job.minimum_character_age) // Nope. + if(age < job.get_min_age(V.client.prefs.species, V.client.prefs.organ_data["brain"])) // Nope. continue - switch(age) - if(job.minimum_character_age to (job.minimum_character_age+10)) - weightedCandidates[V] = 3 // Still a bit young. - if((job.minimum_character_age+10) to (job.ideal_character_age-10)) - weightedCandidates[V] = 6 // Better. - if((job.ideal_character_age-10) to (job.ideal_character_age+10)) - weightedCandidates[V] = 10 // Great. - if((job.ideal_character_age+10) to (job.ideal_character_age+20)) - weightedCandidates[V] = 6 // Still good. - if((job.ideal_character_age+20) to INFINITY) - weightedCandidates[V] = 3 // Geezer. + var/idealage = job.get_ideal_age(V.client.prefs.species, V.client.prefs.organ_data["brain"]) + var/agediff = abs(idealage - age) // Compute the absolute difference in age from target + switch(agediff) /// If the math sucks, it's because I almost failed algebra in high school. + if(20 to INFINITY) + weightedCandidates[V] = 3 // Too far off + if(10 to 20) + weightedCandidates[V] = 6 // Nearer the mark, but not quite + if(0 to 10) + weightedCandidates[V] = 10 // On the mark else // If there's ABSOLUTELY NOBODY ELSE if(candidates.len == 1) weightedCandidates[V] = 1 diff --git a/code/game/jobs/jobs.dm b/code/game/jobs/jobs.dm index 6f04fc5121..8dfa4fe5af 100644 --- a/code/game/jobs/jobs.dm +++ b/code/game/jobs/jobs.dm @@ -59,6 +59,7 @@ var/const/TALPIL =(1<<1) var/const/TALDOC =(1<<2) var/const/TALSEC =(1<<3) var/const/TALENG =(1<<4) +var/const/TALMIN =(1<<5) //VOREStation Add End /proc/guest_jobbans(var/job) diff --git a/code/game/jobs/whitelist.dm b/code/game/jobs/whitelist.dm index af25d2ed54..b47e3787a8 100644 --- a/code/game/jobs/whitelist.dm +++ b/code/game/jobs/whitelist.dm @@ -89,6 +89,27 @@ var/list/whitelist = list() return FALSE +/proc/is_borg_whitelisted(mob/M, var/module) + //They are admin or the whitelist isn't in use + if(whitelist_overrides(M)) + return 1 + + //You did something wrong + if(!M || !module) + return 0 + + //Module is not even whitelisted + if(!(module in whitelisted_module_types)) + return 1 + + //If we have a loaded file, search it + if(alien_whitelist) + for (var/s in alien_whitelist) + if(findtext(s,"[M.ckey] - [module]")) + return 1 + if(findtext(s,"[M.ckey] - All")) + return 1 + /proc/whitelist_overrides(mob/M) if(!config.usealienwhitelist) return TRUE diff --git a/code/game/machinery/CableLayer.dm b/code/game/machinery/CableLayer.dm index d4045aefe8..20677bb0ff 100644 --- a/code/game/machinery/CableLayer.dm +++ b/code/game/machinery/CableLayer.dm @@ -9,8 +9,7 @@ var/on = 0 /obj/machinery/cablelayer/New() - cable = new(src) - cable.amount = 100 + cable = new(src, 100) ..() /obj/machinery/cablelayer/Moved(atom/old_loc, direction, forced = FALSE) @@ -36,32 +35,32 @@ return if(O.is_wirecutter()) - if(cable && cable.amount) - var/m = round(input(usr,"Please specify the length of cable to cut","Cut cable",min(cable.amount,30)) as num, 1) - m = min(m, cable.amount) + if(cable && cable.get_amount()) + var/m = round(input(usr, "Please specify the length of cable to cut", "Cut cable", min(cable.get_amount(), 30)) as num, 1) + m = min(m, cable.get_amount()) m = min(m, 30) if(m) playsound(src, O.usesound, 50, 1) use_cable(m) var/obj/item/stack/cable_coil/CC = new (get_turf(src)) - CC.amount = m + CC.set_amount(m) else to_chat(usr, "There's no more cable on the reel.") /obj/machinery/cablelayer/examine(mob/user) . = ..() - . += "[src]'s cable reel has [cable.amount] length\s left." + . += "[src]'s cable reel has [cable.get_amount()] length\s left." /obj/machinery/cablelayer/proc/load_cable(var/obj/item/stack/cable_coil/CC) - if(istype(CC) && CC.amount) - var/cur_amount = cable? cable.amount : 0 + if(istype(CC) && CC.get_amount()) + var/cur_amount = cable ? cable.get_amount() : 0 var/to_load = max(max_cable - cur_amount,0) if(to_load) - to_load = min(CC.amount, to_load) + to_load = min(CC.get_amount(), to_load) if(!cable) - cable = new(src) - cable.amount = 0 - cable.amount += to_load + cable = new(src, to_load) + else + cable.add(to_load) CC.use(to_load) return to_load else @@ -69,7 +68,7 @@ return /obj/machinery/cablelayer/proc/use_cable(amount) - if(!cable || cable.amount<1) + if(!cable || cable.get_amount() < 1) visible_message("A red light flashes on \the [src].") return cable.use(amount) diff --git a/code/game/machinery/adv_med.dm b/code/game/machinery/adv_med.dm index c2170d5b7b..f33549fc23 100644 --- a/code/game/machinery/adv_med.dm +++ b/code/game/machinery/adv_med.dm @@ -219,7 +219,7 @@ if(H.reagents.reagent_list.len >= 1) for(var/datum/reagent/R in H.reagents.reagent_list) reagentData[++reagentData.len] = list( - "name" = R.name, + "name" = R.name, "amount" = R.volume, "overdose" = (R.overdose && R.volume > R.overdose) ? TRUE : FALSE, ) @@ -291,7 +291,7 @@ if(istype(E, /obj/item/organ/external/chest) && H.is_lung_ruptured()) organData["lungRuptured"] = 1 - + for(var/datum/wound/W in E.wounds) if(W.internal) organData["internalBleeding"] = 1 @@ -349,10 +349,10 @@ var/obj/item/weapon/paper/P = new /obj/item/weapon/paper(get_turf(target)) var/name = occupant ? occupant.name : "Unknown" P.info = "
Body Scan - [name]

" - P.info += "Time of scan: [worldtime2stationtime(world.time)]

" + P.info += "Time of scan: [stationtime2text()]

" P.info += "[generate_printing_text()]" P.info += "

Notes:
" - P.name = "Body Scan - [name] ([worldtime2stationtime(world.time)]" + P.name = "Body Scan - [name] ([stationtime2text()]" else return FALSE @@ -479,7 +479,7 @@ var/obj/item/device/nif/N = I //VOREStation Add: NIFs if(istype(I) && I.known_implant) imp += "[I] implanted:" - if(istype(N) && N.known_implant) //VOREStation Add: NIFs + else if(istype(N) && N.known_implant) //VOREStation Add: NIFs imp += "[N] implanted:" else unknown_body++ diff --git a/code/game/machinery/atm_ret_field.dm b/code/game/machinery/atm_ret_field.dm new file mode 100644 index 0000000000..bcf78539a7 --- /dev/null +++ b/code/game/machinery/atm_ret_field.dm @@ -0,0 +1,240 @@ +/obj/machinery/atmospheric_field_generator + name = "atmospheric retention field generator" + desc = "A floor-mounted piece of equipment that generates an atmosphere-retaining energy field when powered and activated. Linked to environmental alarm systems and will automatically activate when hazardous conditions are detected.

Note: prolonged immersion in active atmospheric retention fields may have negative long-term health consequences." + icon = 'icons/obj/atm_fieldgen.dmi' + icon_state = "arfg_off" + anchored = TRUE + opacity = FALSE + density = FALSE + power_channel = ENVIRON //so they shut off last + use_power = USE_POWER_IDLE + idle_power_usage = 10 + active_power_usage = 2500 + var/ispowered = TRUE + var/isactive = FALSE + var/wasactive = FALSE //controls automatic reboot after power-loss + var/alwaysactive = FALSE //for a special subtype + + //how long it takes us to reboot if we're shut down by an EMP + var/reboot_delay_min = 50 + var/reboot_delay_max = 75 + + var/hatch_open = FALSE + var/wires_intact = TRUE + var/list/areas_added + var/field_type = /obj/structure/atmospheric_retention_field + circuit = /obj/item/weapon/circuitboard/arf_generator + +/obj/machinery/atmospheric_field_generator/impassable + desc = "An older model of ARF-G that generates an impassable retention field. Works just as well as the modern variety, but is slightly more energy-efficient.

Note: prolonged immersion in active atmospheric retention fields may have negative long-term health consequences." + active_power_usage = 2000 + field_type = /obj/structure/atmospheric_retention_field/impassable + +/obj/machinery/atmospheric_field_generator/perma + name = "static atmospheric retention field generator" + desc = "A floor-mounted piece of equipment that generates an atmosphere-retaining energy field when powered and activated. This model is designed to always be active, though the field will still drop from loss of power or electromagnetic interference.

Note: prolonged immersion in active atmospheric retention fields may have negative long-term health consequences." + alwaysactive = TRUE + active_power_usage = 2000 + +/obj/machinery/atmospheric_field_generator/perma/impassable + active_power_usage = 1500 + field_type = /obj/structure/atmospheric_retention_field/impassable + +/obj/machinery/atmospheric_field_generator/attackby(obj/item/weapon/W as obj, mob/user as mob) + if(W.is_crowbar() && isactive) + if(!src) return + to_chat(user, "You can't open the ARF-G whilst it's running!") + return + if(W.is_crowbar() && !isactive) + if(!src) return + to_chat(user, "You [hatch_open? "close" : "open"] \the [src]'s access hatch.") + hatch_open = !hatch_open + update_icon() + if(alwaysactive && wires_intact) + generate_field() + return + if(hatch_open && W.is_multitool()) + if(!src) return + to_chat(user, "You toggle \the [src]'s activation behavior to [alwaysactive? "emergency" : "always-on"].") + alwaysactive = !alwaysactive + update_icon() + return + if(hatch_open && W.is_wirecutter()) + if(!src) return + to_chat(user, "You [wires_intact? "cut" : "mend"] \the [src]'s wires!") + wires_intact = !wires_intact + update_icon() + return + if(hatch_open && istype(W,/obj/item/weapon/weldingtool)) + if(!src) return + var/obj/item/weapon/weldingtool/WT = W + if(!WT.isOn()) return + if(WT.get_fuel() < 5) // uses up 5 fuel. + to_chat(user, "You need more fuel to complete this task.") + return + user.visible_message("[user] starts to disassemble \the [src].", "You start to disassemble \the [src].") + playsound(src, WT.usesound, 50, 1) + if(do_after(user,15 * W.toolspeed)) + if(!src || !user || !WT.remove_fuel(5, user)) return + to_chat(user, "You fully disassemble \the [src]. There were no salvageable parts.") + qdel(src) + return + +/obj/machinery/atmospheric_field_generator/perma/Initialize() + generate_field() + +/obj/machinery/atmospheric_field_generator/update_icon() + if(stat & BROKEN) + icon_state = "arfg_broken" + else if(hatch_open && wires_intact) + icon_state = "arfg_open_wires" + else if(hatch_open && !wires_intact) + icon_state = "arfg_open_wirescut" + else if(isactive) + icon_state = "arfg_on" + else + icon_state = "arfg_off" + +/obj/machinery/atmospheric_field_generator/power_change() + var/oldstat + ..() + if(!(stat & NOPOWER)) + ispowered = 1 + update_icon() + if(alwaysactive || wasactive) //reboot our field if we were on or are supposed to be always-on + generate_field() + if(stat != oldstat && isactive && (stat & NOPOWER)) + ispowered = 0 + disable_field() + update_icon() + +/obj/machinery/atmospheric_field_generator/emp_act() + . = ..() + disable_field() //shutting dowwwwwwn + if(alwaysactive || wasactive) //reboot after a short delay if we were online before + spawn(rand(reboot_delay_min,reboot_delay_max)) + generate_field() + +/obj/machinery/atmospheric_field_generator/ex_act(severity) + switch(severity) + if(1) + disable_field() + qdel(src) + return + if(2) + stat |= BROKEN + update_icon() + src.visible_message("The ARF-G cracks and shatters!","You hear an uncomfortable metallic crunch.") + disable_field() + if(3) + emp_act() + return + +/obj/machinery/atmospheric_field_generator/proc/generate_field() + if(!ispowered || hatch_open || !wires_intact || isactive) //if it's not powered, the hatch is open, the wires are busted, or it's already on, don't do anything + return + else + isactive = 1 + icon_state = "arfg_on" + new field_type (src.loc) + src.visible_message("The ARF-G crackles to life!","You hear an ARF-G coming online!") + update_use_power(USE_POWER_ACTIVE) + return + +/obj/machinery/atmospheric_field_generator/proc/disable_field() + if(isactive) + icon_state = "arfg_off" + for(var/obj/structure/atmospheric_retention_field/F in loc) + qdel(F) + src.visible_message("The ARF-G shuts down with a low hum.","You hear an ARF-G powering down.") + update_use_power(USE_POWER_IDLE) + isactive = 0 + return + +/obj/machinery/atmospheric_field_generator/Initialize() + . = ..() + //Delete ourselves if we find extra mapped in arfgs + for(var/obj/machinery/atmospheric_field_generator/F in loc) + if(F != src) + log_debug("Duplicate ARFGS at [x],[y],[z]") + return INITIALIZE_HINT_QDEL + + var/area/A = get_area(src) + ASSERT(istype(A)) + + LAZYADD(A.all_arfgs, src) + areas_added = list(A) + + for(var/direction in cardinal) + A = get_area(get_step(src,direction)) + if(istype(A) && !(A in areas_added)) + LAZYADD(A.all_arfgs, src) + areas_added += A + +/obj/structure/atmospheric_retention_field + name = "atmospheric retention field" + desc = "A shimmering forcefield that keeps the good air inside and the bad air outside. This field has been modulated so that it doesn't impede movement or projectiles.

Note: prolonged immersion in active atmospheric retention fields may have negative long-term health consequences." + icon = 'icons/obj/atm_fieldgen.dmi' + icon_state = "arfg_field" + anchored = TRUE + density = FALSE + opacity = 0 + plane = MOB_PLANE + layer = ABOVE_MOB_LAYER + //mouse_opacity = 0 + can_atmos_pass = ATMOS_PASS_NO + var/basestate = "arfg_field" + + light_range = 3 + light_power = 1 + light_color = "#FFFFFF" + light_on = TRUE + +/obj/structure/atmospheric_retention_field/update_icon() + cut_overlays() //overlays.Cut() + var/list/dirs = list() + for(var/obj/structure/atmospheric_retention_field/F in orange(src,1)) + dirs += get_dir(src, F) + + var/list/connections = dirs_to_corner_states(dirs) + + icon_state = "" + for(var/i = 1 to 4) + var/image/I = image(icon, "[basestate][connections[i]]", dir = 1<<(i-1)) + add_overlay(I) + + return + +/obj/structure/atmospheric_retention_field/Initialize() + . = ..() + update_nearby_tiles() //Force ZAS update + update_connections(1) + update_icon() + +/obj/structure/atmospheric_retention_field/Destroy() + for(var/obj/structure/atmospheric_retention_field/W in orange(1, src.loc)) + W.update_connections(1) + update_nearby_tiles() //Force ZAS update + . = ..() + +/obj/structure/atmospheric_retention_field/attack_hand(mob/user as mob) + if(density) + visible_message("You touch the retention field, and it crackles faintly. Tingly!") + else + visible_message("You try to touch the retention field, but pass through it like it isn't even there.") + +/obj/structure/atmospheric_retention_field/ex_act() + return + +/obj/structure/atmospheric_retention_field/impassable + desc = "A shimmering forcefield that keeps the good air inside and the bad air outside. It seems fairly solid, almost like it's made out of some kind of hardened light.

Note: prolonged immersion in active atmospheric retention fields may have negative long-term health consequences." + icon = 'icons/obj/atm_fieldgen.dmi' + icon_state = "arfg_field" + density = TRUE + +/obj/machinery/atmospheric_field_generator/perma/underdoors + field_type = /obj/structure/atmospheric_retention_field/underdoors + +/obj/structure/atmospheric_retention_field/underdoors + plane = OBJ_PLANE + layer = UNDER_JUNK_LAYER diff --git a/code/game/machinery/atmoalter/portable_atmospherics.dm b/code/game/machinery/atmoalter/portable_atmospherics.dm index e51b4825cc..6bdf71c525 100644 --- a/code/game/machinery/atmoalter/portable_atmospherics.dm +++ b/code/game/machinery/atmoalter/portable_atmospherics.dm @@ -15,9 +15,11 @@ /obj/machinery/portable_atmospherics/New() ..() - - air_contents.volume = volume - air_contents.temperature = T20C + //VOREStation Edit - Fix runtime + if(air_contents) + air_contents.volume = volume + air_contents.temperature = T20C + //VOREStation Edit End return 1 diff --git a/code/game/machinery/autolathe.dm b/code/game/machinery/autolathe.dm index f079485f19..bc8a8081d0 100644 --- a/code/game/machinery/autolathe.dm +++ b/code/game/machinery/autolathe.dm @@ -223,7 +223,7 @@ if(multiplier > 1) if(istype(I, /obj/item/stack)) var/obj/item/stack/S = I - S.amount = multiplier + S.set_amount(multiplier) else for(multiplier; multiplier > 1; --multiplier) // Create multiple items if it's not a stack. I = new making.path(src.loc) diff --git a/code/game/machinery/biogenerator.dm b/code/game/machinery/biogenerator.dm index e5cf8da8e1..e98e687af4 100644 --- a/code/game/machinery/biogenerator.dm +++ b/code/game/machinery/biogenerator.dm @@ -183,8 +183,7 @@ points -= cost if(ispath(bi.equipment_path, /obj/item/stack)) - var/obj/item/stack/S = new bi.equipment_path(loc) - S.amount = bi.equipment_amt + new bi.equipment_path(loc, bi.equipment_amt) playsound(src, 'sound/machines/vending/vending_drop.ogg', 100, 1) return TRUE diff --git a/code/game/machinery/bioprinter.dm b/code/game/machinery/bioprinter.dm index d00efc79b6..4c684abb99 100644 --- a/code/game/machinery/bioprinter.dm +++ b/code/game/machinery/bioprinter.dm @@ -34,6 +34,7 @@ "Eyes" = list(/obj/item/organ/internal/eyes, 20), "Liver" = list(/obj/item/organ/internal/liver, 20), "Spleen" = list(/obj/item/organ/internal/spleen, 20), + "Stomach" = list(/obj/item/organ/internal/stomach, 20), "Arm, Left" = list(/obj/item/organ/external/arm, 40), "Arm, Right" = list(/obj/item/organ/external/arm/right, 40), "Leg, Left" = list(/obj/item/organ/external/leg, 40), @@ -80,7 +81,7 @@ /obj/machinery/organ_printer/Initialize() . = ..() default_apply_parts() - + /obj/machinery/organ_printer/examine(var/mob/user) . = ..() var/biomass = get_biomass_volume() diff --git a/code/game/machinery/camera/presets.dm b/code/game/machinery/camera/presets.dm index cef3a344bb..7e1de88bbb 100644 --- a/code/game/machinery/camera/presets.dm +++ b/code/game/machinery/camera/presets.dm @@ -99,6 +99,12 @@ var/global/list/engineering_networks = list( /obj/machinery/camera/network/telecom network = list(NETWORK_TELECOM) +/obj/machinery/camera/network/exploration + network = list(NETWORK_EXPLORATION) + +/obj/machinery/camera/network/research/xenobio + network = list(NETWORK_RESEARCH, NETWORK_XENOBIO) + /obj/machinery/camera/network/thunder network = list(NETWORK_THUNDER) invuln = 1 @@ -171,9 +177,9 @@ var/global/list/engineering_networks = list( var/list/my_area = by_area[A.name] my_area += src var/number = my_area.len - + c_tag = "[A.name] #[number]" - + /obj/machinery/camera/autoname/Destroy() var/area/A = get_area(src) if(!A || !by_area || !by_area[A.name]) diff --git a/code/game/machinery/computer/ai_core.dm b/code/game/machinery/computer/ai_core.dm index f723cc5acc..a399fc7ef6 100644 --- a/code/game/machinery/computer/ai_core.dm +++ b/code/game/machinery/computer/ai_core.dm @@ -86,8 +86,7 @@ to_chat(user, "You remove the cables.") state = 2 icon_state = "2" - var/obj/item/stack/cable_coil/A = new /obj/item/stack/cable_coil( loc ) - A.amount = 5 + new /obj/item/stack/cable_coil(loc, 5) if(istype(P, /obj/item/stack/material) && P.get_material_name() == "rglass") var/obj/item/stack/RG = P diff --git a/code/game/machinery/computer/arcade.dm b/code/game/machinery/computer/arcade.dm index 59cb576971..b4f85da77d 100644 --- a/code/game/machinery/computer/arcade.dm +++ b/code/game/machinery/computer/arcade.dm @@ -8,8 +8,8 @@ /obj/item/toy/blink = 2, /obj/item/clothing/under/syndicate/tacticool = 2, /obj/item/toy/sword = 2, - /obj/item/weapon/gun/projectile/revolver/capgun = 2, - /obj/item/toy/crossbow = 2, + /obj/item/weapon/storage/box/capguntoy = 2, + /obj/item/weapon/gun/projectile/revolver/toy/crossbow = 2, /obj/item/clothing/suit/syndicatefake = 2, /obj/item/weapon/storage/fancy/crayons = 2, /obj/item/toy/spinningtoy = 2, @@ -20,7 +20,7 @@ /obj/item/toy/cultsword = 1, /obj/item/toy/bouquet/fake = 1, /obj/item/clothing/accessory/badge/sheriff = 2, - /obj/item/clothing/head/cowboy_hat/small = 2, + /obj/item/clothing/head/cowboy/small = 2, /obj/item/toy/stickhorse = 2 ) var/list/special_prizes = list() // Holds instanced objects, intended for admins to shove surprises inside or something. @@ -1083,7 +1083,7 @@ /obj/machinery/computer/arcade/clawmachine name = "AlliCo Grab-a-Gift" desc = "Show off your arcade skills for that special someone!" - icon_state = "clawmachine" + icon_state = "clawmachine_new" icon_keyboard = null icon_screen = null circuit = /obj/item/weapon/circuitboard/arcade/clawmachine @@ -1244,10 +1244,10 @@ /// TGUI Stuff -/obj/machinery/computer/arcade/clawmachine/tgui_interact(mob/user, ui_key = "main", datum/tgui/ui = null, force_open = 0, datum/tgui/master_ui = null, datum/tgui_state/state = GLOB.tgui_default_state) - ui = SStgui.try_update_ui(user, src, ui_key, ui, force_open) +/obj/machinery/computer/arcade/clawmachine/tgui_interact(mob/user, datum/tgui/ui) + ui = SStgui.try_update_ui(user, src, ui) if(!ui) - ui = new(user, src, ui_key, "ClawMachine", name, 300, 400, master_ui, state) + ui = new(user, src, "ClawMachine", name, ui_x = 300, ui_y = 400) ui.autoupdate = TRUE ui.open() @@ -1270,7 +1270,7 @@ if(action == "newgame" && gamepaid == 1) gameStatus = "CLAWMACHINE_ON" - icon_state = "clawmachine_move" + icon_state = "clawmachine_new_move" instructions = "Guide the claw to the prize you want!" wintick = 0 @@ -1307,7 +1307,7 @@ winscreen = "Aw, shucks. Try again!" wintick = 0 gamepaid = 0 - icon_state = "clawmachine" + icon_state = "clawmachine_new" gameStatus = "CLAWMACHINE_END" /obj/machinery/computer/arcade/clawmachine/emag_act(mob/user) diff --git a/code/game/machinery/computer/arcade_vr.dm b/code/game/machinery/computer/arcade_vr.dm index f5c23ead0d..cc5bd8fe74 100644 --- a/code/game/machinery/computer/arcade_vr.dm +++ b/code/game/machinery/computer/arcade_vr.dm @@ -1,10 +1,10 @@ /obj/machinery/computer/arcade - prizes = list( /obj/item/weapon/storage/box/snappops = 2, + prizes = list( /obj/item/weapon/storage/box/snappops = 2, /obj/item/toy/blink = 2, /obj/item/clothing/under/syndicate/tacticool = 2, /obj/item/toy/sword = 2, - /obj/item/weapon/gun/projectile/revolver/capgun = 2, - /obj/item/toy/crossbow = 2, + /obj/item/weapon/storage/box/capguntoy = 2, + /obj/item/weapon/gun/projectile/revolver/toy/crossbow = 2, /obj/item/clothing/suit/syndicatefake = 2, /obj/item/weapon/storage/fancy/crayons = 2, /obj/item/toy/spinningtoy = 2, @@ -15,7 +15,7 @@ /obj/item/toy/cultsword = 1, /obj/item/toy/bouquet/fake = 1, /obj/item/clothing/accessory/badge/sheriff = 2, - /obj/item/clothing/head/cowboy_hat/small = 2, + /obj/item/clothing/head/cowboy/small = 2, /obj/item/toy/stickhorse = 2, /obj/item/toy/rock = 2, /obj/item/toy/flash = 2, diff --git a/code/game/machinery/computer/atmos_control.dm b/code/game/machinery/computer/atmos_control.dm index 32fbaf3082..869756f987 100644 --- a/code/game/machinery/computer/atmos_control.dm +++ b/code/game/machinery/computer/atmos_control.dm @@ -22,9 +22,11 @@ name = "\improper Atmospherics PCU" desc = "A personal computer unit. It seems to have only the Atmosphereics Control program installed." icon_screen = "pcu_atmo" - icon_state = "pcu" + icon_state = "pcu_engi" icon_keyboard = "pcu_key" density = FALSE + light_color = "#00cc00" + density = 0 /obj/machinery/computer/atmoscontrol/attack_ai(var/mob/user as mob) tgui_interact(user) diff --git a/code/game/machinery/computer/camera_vr.dm b/code/game/machinery/computer/camera_vr.dm index 1e006b0f4b..372a5bfb11 100644 --- a/code/game/machinery/computer/camera_vr.dm +++ b/code/game/machinery/computer/camera_vr.dm @@ -23,4 +23,13 @@ "TalonShip", "Entertainment", "Communicators" - ) \ No newline at end of file + ) + +/obj/machinery/computer/security/xenobio + name = "xenobiology camera monitor" + desc = "Used to access the xenobiology cell cameras." + icon_keyboard = "mining_key" + icon_screen = "mining" + network = list(NETWORK_XENOBIO) + circuit = /obj/item/weapon/circuitboard/security/xenobio + light_color = "#F9BBFC" \ No newline at end of file diff --git a/code/game/machinery/computer/guestpass.dm b/code/game/machinery/computer/guestpass.dm index 1d5392fc54..c3584ee48a 100644 --- a/code/game/machinery/computer/guestpass.dm +++ b/code/game/machinery/computer/guestpass.dm @@ -5,6 +5,7 @@ name = "guest pass" desc = "Allows temporary access to station areas." icon_state = "guest" + initial_sprite_stack = list() light_color = "#0099ff" var/temp_access = list() //to prevent agent cards stealing access as permanent @@ -12,6 +13,9 @@ var/expired = 0 var/reason = "NOT SPECIFIED" +/obj/item/weapon/card/id/guest/update_icon() + return + /obj/item/weapon/card/id/guest/GetAccess() if(world.time > expiration_time) return access diff --git a/code/game/machinery/computer/medical.dm b/code/game/machinery/computer/medical.dm index af7b04dc33..63b067d542 100644 --- a/code/game/machinery/computer/medical.dm +++ b/code/game/machinery/computer/medical.dm @@ -497,9 +497,9 @@ name = "\improper Medical Laptop" desc = "A personal computer unit. It seems to have only the medical records program installed." icon_screen = "pcu_generic" - icon_state = "pcu" + icon_state = "pcu_med" icon_keyboard = "pcu_key" - light_color = "#59888e8" + light_color = "#5284e7" circuit = /obj/item/weapon/circuitboard/med_data/pcu density = FALSE diff --git a/code/game/machinery/computer/skills.dm b/code/game/machinery/computer/skills.dm index 3c209280a6..7fe2e80364 100644 --- a/code/game/machinery/computer/skills.dm +++ b/code/game/machinery/computer/skills.dm @@ -12,7 +12,7 @@ icon_screen = "pcu_generic" icon_state = "pcu" icon_keyboard = "pcu_key" - light_color = "#59888e8" + light_color = "#5284e7" req_one_access = list(access_heads) circuit = /obj/item/weapon/circuitboard/skills/pcu density = FALSE diff --git a/code/game/machinery/constructable_frame.dm b/code/game/machinery/constructable_frame.dm index a2f310aaf1..6a61f01502 100644 --- a/code/game/machinery/constructable_frame.dm +++ b/code/game/machinery/constructable_frame.dm @@ -50,6 +50,11 @@ if(istype(P, /obj/item/weapon/circuitboard)) var/obj/item/weapon/circuitboard/B = P if(B.board_type == "machine") + //VOREStation Addition End + if(istype(B, /obj/item/weapon/circuitboard/quantumpad) && istype(get_area(src), /area/shuttle)) + to_chat(user, "This is too unstable a platform for a quantum pad to operate on!") + return + //VOREStation Addition End playsound(src, 'sound/items/Deconstruct.ogg', 50, 1) to_chat(user, "You add the circuit board to the frame.") circuit = P diff --git a/code/game/machinery/cryopod.dm b/code/game/machinery/cryopod.dm index 78f8569cb4..be8639e4bc 100644 --- a/code/game/machinery/cryopod.dm +++ b/code/game/machinery/cryopod.dm @@ -95,7 +95,7 @@ data["real_name"] = user.real_name data["allow_items"] = allow_items data["crew"] = frozen_crew - + var/list/items = list() if(allow_items) for(var/F in frozen_items) @@ -250,6 +250,10 @@ /obj/machinery/cryopod/robot/door/dorms name = "Residential District Elevator" desc = "A small elevator that goes down to the deeper section of the colony." + icon = 'icons/obj/Cryogenic2_vr.dmi' + icon_state = "lift_closed" + base_icon_state = "lift_open" + occupied_icon_state = "lift_closed" on_store_message = "has departed for the residential district." on_store_name = "Residential Oversight" on_enter_occupant_message = "The elevator door closes slowly, ready to bring you down to the residential district." @@ -259,6 +263,10 @@ /obj/machinery/cryopod/robot/door/travel name = "Passenger Elevator" desc = "A small elevator that goes down to the passenger section of the vessel." + icon = 'icons/obj/Cryogenic2_vr.dmi' + icon_state = "lift_closed" + base_icon_state = "lift_open" + occupied_icon_state = "lift_closed" on_store_message = "is slated to depart from the colony." on_store_name = "Travel Oversight" on_enter_occupant_message = "The elevator door closes slowly, ready to bring you down to the hell that is economy class travel." @@ -491,7 +499,7 @@ for(var/datum/data/record/G in data_core.general) if((G.fields["name"] == to_despawn.real_name)) qdel(G) - + // Also check the hidden version of each datacore, if they're an offmap role. var/datum/job/J = SSjob.get_job(job) if(J?.offmap_spawn) diff --git a/code/game/machinery/cryopod_vr.dm b/code/game/machinery/cryopod_vr.dm index b6aa3e227f..0ccd6a5d05 100644 --- a/code/game/machinery/cryopod_vr.dm +++ b/code/game/machinery/cryopod_vr.dm @@ -8,6 +8,10 @@ /obj/machinery/cryopod/robot spawnpoint_type = /datum/spawnpoint/cyborg +// Used at centcomm for the elevator +/obj/machinery/cryopod/robot/door/dorms + spawnpoint_type = /datum/spawnpoint/tram + /obj/machinery/cryopod/robot/door/gateway name = "public teleporter" desc = "The short-range teleporter you might've came in from. You could leave easily using this." @@ -35,23 +39,23 @@ /obj/machinery/cryopod/proc/log_special_item(var/atom/movable/item,var/mob/to_despawn) ASSERT(item && to_despawn) - + var/loaded_from_key var/char_name = to_despawn.name var/item_name = item.name - + // Best effort key aquisition if(ishuman(to_despawn)) var/mob/living/carbon/human/H = to_despawn if(H.original_player) loaded_from_key = H.original_player - + if(!loaded_from_key && to_despawn.mind && to_despawn.mind.loaded_from_ckey) loaded_from_key = to_despawn.mind.loaded_from_ckey - + else loaded_from_key = "INVALID" - + // Log to harrass them later log_game("CRYO [loaded_from_key]/([to_despawn.name]) cryo'd with [item_name] ([item.type])") qdel(item) diff --git a/code/game/machinery/doors/airlock.dm b/code/game/machinery/doors/airlock.dm index 50e6b04923..20d0f634da 100644 --- a/code/game/machinery/doors/airlock.dm +++ b/code/game/machinery/doors/airlock.dm @@ -55,6 +55,9 @@ var/denied_sound = 'sound/machines/deniedbeep.ogg' var/bolt_up_sound = 'sound/machines/door/boltsup.ogg' var/bolt_down_sound = 'sound/machines/door/boltsdown.ogg' + var/knock_sound = 'sound/machines/2beeplow.ogg' + var/knock_hammer_sound = 'sound/weapons/sonic_jackhammer.ogg' + var/knock_unpowered_sound = 'sound/machines/door/knock_glass.ogg' /obj/machinery/door/airlock/attack_generic(var/mob/living/user, var/damage) if(stat & (BROKEN|NOPOWER)) @@ -975,6 +978,29 @@ About the new airlock wires panel: ..(user) return +/obj/machinery/door/airlock/AltClick(mob/user as mob) + . = ..() + user.setClickCooldown(DEFAULT_ATTACK_COOLDOWN) + if(!Adjacent(user)) + return + else if(user.a_intent == I_HURT) + src.visible_message("[user] hammers on \the [src]!", "Someone hammers loudly on \the [src]!") + src.add_fingerprint(user) + if(icon_state == "door_closed" && arePowerSystemsOn()) + flick("door_deny", src) + playsound(src, knock_hammer_sound, 50, 0, 3) + else if(arePowerSystemsOn() && user.a_intent == I_HELP) + src.visible_message("[user] presses the door bell on \the [src].", "\The [src]'s bell rings.") + src.add_fingerprint(user) + if(icon_state == "door_closed") + flick("door_deny", src) + playsound(src, knock_sound, 50, 0, 3) + else if(user.a_intent == I_HELP) + src.visible_message("[user] knocks on \the [src].", "Someone knocks on \the [src].") + src.add_fingerprint(user) + playsound(src, knock_unpowered_sound, 50, 0, 3) + return + /obj/machinery/door/airlock/tgui_act(action, params) if(..()) return TRUE diff --git a/code/game/machinery/doors/blast_door.dm b/code/game/machinery/doors/blast_door.dm index bba24a4888..08ae8653df 100644 --- a/code/game/machinery/doors/blast_door.dm +++ b/code/game/machinery/doors/blast_door.dm @@ -189,7 +189,7 @@ to_chat(user, "\The [src] is already fully repaired.") return var/obj/item/stack/P = C - if(P.amount < amt) + if(P.get_amount() < amt) to_chat(user, "You don't have enough sheets to repair this! You need at least [amt] sheets.") return to_chat(user, "You begin repairing [src]...") @@ -319,6 +319,23 @@ density = FALSE opacity = 0 + +// SUBTYPE: Shuttle +// Slightly weaker, intergrated shutters - open state is hidden from view. Found on fancy_shuttles +/obj/machinery/door/blast/shuttle + name = "shuttle blast doors" + icon_state_open = "spdoor0" + icon_state_opening = "spdoorc0" + icon_state_closed = "spdoor1" + icon_state_closing = "spdoorc1" + icon_state = "spdoor1" + maxhealth = 400 + +/obj/machinery/door/blast/shuttle/open + icon_state = "spdoor0" + density = FALSE + opacity = 0 + // SUBTYPE: Shutters // Nicer looking, and also weaker, shutters. Found in kitchen and similar areas. /obj/machinery/door/blast/shutters diff --git a/code/game/machinery/doors/door.dm b/code/game/machinery/doors/door.dm index 3c392cf9a0..fa31ef365f 100644 --- a/code/game/machinery/doors/door.dm +++ b/code/game/machinery/doors/door.dm @@ -277,8 +277,7 @@ if(repairing && I.is_crowbar()) var/datum/material/mat = get_material() - var/obj/item/stack/material/repairing_sheet = mat.place_sheet(loc) - repairing_sheet.amount += repairing-1 + var/obj/item/stack/material/repairing_sheet = mat.place_sheet(loc, repairing) repairing = 0 to_chat(user, "You remove \the [repairing_sheet].") playsound(src, I.usesound, 100, 1) diff --git a/code/game/machinery/doors/door_vr.dm b/code/game/machinery/doors/door_vr.dm index 6c36a2514d..1a504065cc 100644 --- a/code/game/machinery/doors/door_vr.dm +++ b/code/game/machinery/doors/door_vr.dm @@ -90,8 +90,7 @@ return TRUE if(reinforcing && I.is_crowbar()) - var/obj/item/stack/material/plasteel/reinforcing_sheet = new /obj/item/stack/material/plasteel(src.loc) - reinforcing_sheet.amount = reinforcing + var/obj/item/stack/material/plasteel/reinforcing_sheet = new /obj/item/stack/material/plasteel(src.loc, reinforcing) reinforcing = 0 to_chat(user, "You remove \the [reinforcing_sheet].") playsound(src, I.usesound, 100, 1) @@ -102,7 +101,19 @@ /obj/machinery/door/blast/regular/fire_act(datum/gas_mixture/air, exposed_temperature, exposed_volume) return // blast doors are immune to fire completely. -/obj/machinery/door/blast/regular/ +/obj/machinery/door/blast/regular + heat_proof = 1 //just so repairing them doesn't try to fireproof something that never takes fire damage + +/obj/machinery/door/blast/angled/fire_act(datum/gas_mixture/air, exposed_temperature, exposed_volume) + return // blast doors are immune to fire completely. + +/obj/machinery/door/blast/angled + heat_proof = 1 //just so repairing them doesn't try to fireproof something that never takes fire damage + +/obj/machinery/door/blast/puzzle/fire_act(datum/gas_mixture/air, exposed_temperature, exposed_volume) + return // blast doors are immune to fire completely. + +/obj/machinery/door/blast/puzzle heat_proof = 1 //just so repairing them doesn't try to fireproof something that never takes fire damage /obj/machinery/door/proc/toggle() diff --git a/code/game/machinery/doors/firedoor_vr.dm b/code/game/machinery/doors/firedoor_vr.dm index 2bc297a041..2466cabe87 100644 --- a/code/game/machinery/doors/firedoor_vr.dm +++ b/code/game/machinery/doors/firedoor_vr.dm @@ -16,3 +16,8 @@ name = "\improper Emergency Shutter System" desc = "Emergency air-tight shutter, capable of sealing off breached areas. This model fits flush with the walls, and has a panel in the floor for maintenance." icon = 'icons/obj/doors/DoorHazardHidden_steel.dmi' + +/obj/machinery/door/firedoor/glass/hidden/shuttle + name = "\improper Emergency Shuttle Shutters" + desc = "Emergency air-tight shutter, capable of sealing off breached areas. This model fits flush with shuttle walls." + icon = 'icons/obj/doors/DoorHazardHidden_shuttle.dmi' \ No newline at end of file diff --git a/code/game/machinery/frame.dm b/code/game/machinery/frame.dm index 6a593ab554..d651ad2025 100644 --- a/code/game/machinery/frame.dm +++ b/code/game/machinery/frame.dm @@ -221,6 +221,11 @@ frame_style = FRAME_STYLE_WALL x_offset = 28 y_offset = 28 + +/datum/frame/frame_types/arfgs + name = "ARF Generator" + frame_class = FRAME_CLASS_MACHINE + frame_size = 3 ////////////////////////////// // Frame Object (Structure) @@ -514,9 +519,8 @@ if(istype(P, /obj/item/stack/cable_coil)) var/obj/item/stack/cable_coil/CP = P if(CP.get_amount() > 1) - var/camt = min(CP.amount, req_components[I]) // amount of cable to take, idealy amount required, but limited by amount provided - var/obj/item/stack/cable_coil/CC = new /obj/item/stack/cable_coil(src) - CC.amount = camt + var/camt = min(CP.get_amount(), req_components[I]) // amount of cable to take, idealy amount required, but limited by amount provided + var/obj/item/stack/cable_coil/CC = new /obj/item/stack/cable_coil(src, camt) CC.update_icon() CP.use(camt) components += CC @@ -587,9 +591,8 @@ if(istype(P, /obj/item/stack)) var/obj/item/stack/ST = P if(ST.get_amount() > 1) - var/camt = min(ST.amount, req_components[I]) // amount of stack to take, idealy amount required, but limited by amount provided - var/obj/item/stack/NS = new ST.stacktype(src) - NS.amount = camt + var/camt = min(ST.get_amount(), req_components[I]) // amount of stack to take, idealy amount required, but limited by amount provided + var/obj/item/stack/NS = new ST.stacktype(src, camt) NS.update_icon() ST.use(camt) components += NS diff --git a/code/game/machinery/iv_drip.dm b/code/game/machinery/iv_drip.dm index 5a78697b2a..f3149dc78a 100644 --- a/code/game/machinery/iv_drip.dm +++ b/code/game/machinery/iv_drip.dm @@ -71,8 +71,7 @@ to_chat(user, "You start to dismantle the IV drip.") if(do_after(user, 15)) to_chat(user, "You dismantle the IV drip.") - var/obj/item/stack/rods/A = new /obj/item/stack/rods(src.loc) - A.amount = 6 + new /obj/item/stack/rods(src.loc, 6) if(beaker) beaker.loc = get_turf(src) beaker = null diff --git a/code/game/machinery/machinery.dm b/code/game/machinery/machinery.dm index 26766addf6..137d3a7adb 100644 --- a/code/game/machinery/machinery.dm +++ b/code/game/machinery/machinery.dm @@ -330,6 +330,7 @@ Class Procs: return C /obj/machinery/proc/default_part_replacement(var/mob/user, var/obj/item/weapon/storage/part_replacer/R) + var/parts_replaced = FALSE if(!istype(R)) return 0 if(!component_parts) @@ -340,23 +341,26 @@ Class Procs: if(panel_open || !R.panel_req) var/obj/item/weapon/circuitboard/CB = circuit var/P - for(var/obj/item/weapon/stock_parts/A in component_parts) + for(var/obj/item/A in component_parts) for(var/T in CB.req_components) if(ispath(A.type, T)) P = T break - for(var/obj/item/weapon/stock_parts/B in R.contents) + for(var/obj/item/B in R.contents) if(istype(B, P) && istype(A, P)) - if(B.rating > A.rating) + if(B.get_rating() > A.get_rating()) R.remove_from_storage(B, src) R.handle_item_insertion(A, 1) component_parts -= A component_parts += B B.loc = null to_chat(user, "[A.name] replaced with [B.name].") + parts_replaced = TRUE break update_icon() RefreshParts() + if(parts_replaced) + R.play_rped_sound() return 1 // Default behavior for wrenching down machines. Supports both delay and instant modes. diff --git a/code/game/machinery/partslathe_vr.dm b/code/game/machinery/partslathe_vr.dm index 77eefb94c9..3fe7074b41 100644 --- a/code/game/machinery/partslathe_vr.dm +++ b/code/game/machinery/partslathe_vr.dm @@ -125,12 +125,12 @@ if(!(S.material.name in materials)) to_chat(user, "The [src] doesn't accept [S.material]!") return 1 - if(S.amount < 1) + if(S.get_amount() < 1) return 1 // Does this even happen? Sanity check I guess. var/max_res_amount = storage_capacity[S.material.name] if(materials[S.material.name] + S.perunit <= max_res_amount) var/count = 0 - while(materials[S.material.name] + S.perunit <= max_res_amount && S.amount >= 1) + while(materials[S.material.name] + S.perunit <= max_res_amount && S.get_amount() >= 1) materials[S.material.name] += S.perunit S.use(1) count++ @@ -205,7 +205,7 @@ // 0 amount = 0 means ejecting a full stack; -1 means eject everything /obj/machinery/partslathe/proc/eject_materials(var/material, var/amount) - var/recursive = amount == -1 ? 1 : 0 + var/recursive = amount == -1 ? TRUE : FALSE material = lowertext(material) var/mattype switch(material) @@ -219,9 +219,7 @@ if(amount <= 0) amount = S.max_amount var/ejected = min(round(materials[material] / S.perunit), amount) - S.amount = min(ejected, amount) - if(S.amount <= 0) - qdel(S) + if(!S.set_amount(min(ejected, amount))) return materials[material] -= ejected * S.perunit if(recursive && materials[material] >= S.perunit) diff --git a/code/game/machinery/pipe/pipe_recipes.dm b/code/game/machinery/pipe/pipe_recipes.dm index 8aee2a1908..ad70f938a0 100644 --- a/code/game/machinery/pipe/pipe_recipes.dm +++ b/code/game/machinery/pipe/pipe_recipes.dm @@ -134,7 +134,7 @@ GLOBAL_LIST_INIT(disposal_pipe_recipes, list( dirtype = initial(construction_type.dispenser_class) if (dirtype == PIPE_TRIN_M) icon_state_m = "[icon_state]m" - paintable = ispath(path, /obj/machinery/atmospherics/pipe) && !(ispath(path, /obj/machinery/atmospherics/pipe/vent)) // VOREStation Add + paintable = !ispath(path, /obj/machinery/atmospherics/pipe/simple/heat_exchanging) && ispath(path, /obj/machinery/atmospherics/pipe) && !(ispath(path, /obj/machinery/atmospherics/pipe/vent)) // VOREStation Add // diff --git a/code/game/machinery/pipe/pipelayer.dm b/code/game/machinery/pipe/pipelayer.dm index 3debf68f53..bcc1f770a3 100644 --- a/code/game/machinery/pipe/pipelayer.dm +++ b/code/game/machinery/pipe/pipelayer.dm @@ -146,10 +146,9 @@ var/amount_ejected = 0 while (metal >= 1) var/datum/material/M = get_material_by_name(MAT_STEEL) - var/obj/item/stack/material/S = new M.stack_type(get_turf(src)) - S.amount = min(metal, S.max_amount) - metal -= S.amount - amount_ejected += S.amount + var/obj/item/stack/material/S = new M.stack_type(get_turf(src), metal) + metal -= S.get_amount() + amount_ejected += S.get_amount() return amount_ejected /obj/machinery/pipelayer/proc/dismantleFloor(var/turf/new_turf) diff --git a/code/game/machinery/requests_console_vr.dm b/code/game/machinery/requests_console_vr.dm index 9e93691c2e..39f0a8ecb9 100644 --- a/code/game/machinery/requests_console_vr.dm +++ b/code/game/machinery/requests_console_vr.dm @@ -10,7 +10,7 @@ name = "" department = "" departmentType = "" - announcementConsole = 0 + announcementConsole = TRUE // Departments /obj/machinery/requests_console/preset/cargo diff --git a/code/game/machinery/robot_fabricator.dm b/code/game/machinery/robot_fabricator.dm index 1f9c9c8f70..103ea5f7ae 100644 --- a/code/game/machinery/robot_fabricator.dm +++ b/code/game/machinery/robot_fabricator.dm @@ -21,7 +21,7 @@ if(M) if(!M.get_amount()) return - while(metal_amount < 150000 && M.amount) + while(metal_amount < 150000 && M.get_amount()) metal_amount += O.matter[MAT_STEEL] /*O:height * O:width * O:length * 100000.0*/ M.use(1) count++ diff --git a/code/game/machinery/suit_cycler_datums.dm b/code/game/machinery/suit_cycler_datums.dm index e796213acf..9938af1cd0 100644 --- a/code/game/machinery/suit_cycler_datums.dm +++ b/code/game/machinery/suit_cycler_datums.dm @@ -286,6 +286,10 @@ GLOBAL_LIST_EMPTY(suit_cycler_emagged) name = "Talon Pilot (Closed Helm)" helmet_becomes = /obj/item/clothing/head/helmet/space/void/refurb/pilot/alt/talon suit_becomes = /obj/item/clothing/suit/space/void/refurb/pilot/talon +/datum/suit_cycler_choice/department/talon/miner + name = "Talon Miner" + helmet_becomes = /obj/item/clothing/head/helmet/space/void/refurb/mining/talon + suit_becomes = /obj/item/clothing/suit/space/void/refurb/mining/talon /datum/suit_cycler_choice/department/talon/res name = "Talon Research (Bubble Helm)" helmet_becomes = /obj/item/clothing/head/helmet/space/void/refurb/research/alt/talon diff --git a/code/game/machinery/suit_storage_unit_vr.dm b/code/game/machinery/suit_storage_unit_vr.dm index 4337096a68..be0d121096 100644 --- a/code/game/machinery/suit_storage_unit_vr.dm +++ b/code/game/machinery/suit_storage_unit_vr.dm @@ -52,4 +52,10 @@ name = "Talon captain suit cycler" model_text = "Talon captain" req_access = list(access_talon) - departments = list(/datum/suit_cycler_choice/department/talon/officer) \ No newline at end of file + departments = list(/datum/suit_cycler_choice/department/talon/officer) + +/obj/machinery/suit_cycler/vintage/tminer + name = "Talon miner suit cycler" + model_text = "Talon miner" + req_access = list(access_talon) + departments = list(/datum/suit_cycler_choice/department/talon/miner) \ No newline at end of file diff --git a/code/game/machinery/virtual_reality/vr_console.dm b/code/game/machinery/virtual_reality/vr_console.dm index 694d08fa13..4a83de34d3 100644 --- a/code/game/machinery/virtual_reality/vr_console.dm +++ b/code/game/machinery/virtual_reality/vr_console.dm @@ -185,7 +185,8 @@ if(!forced && avatar && tgui_alert(avatar, "Someone wants to remove you from virtual reality. Do you want to leave?", "Leave VR?", list("Yes", "No")) == "No") return - avatar.exit_vr() + if(avatar) + avatar.exit_vr() avatar = null if(occupant.client) diff --git a/code/game/machinery/wall_frames.dm b/code/game/machinery/wall_frames.dm index 83fdefe442..be00cab96a 100644 --- a/code/game/machinery/wall_frames.dm +++ b/code/game/machinery/wall_frames.dm @@ -4,6 +4,7 @@ icon = 'icons/obj/stock_parts.dmi' icon_state = "frame_bitem" var/build_machine_type + var/build_wall_only = FALSE var/refund_amt = 5 var/refund_type = /obj/item/stack/material/steel var/reverse = 0 //if resulting object faces opposite its dir (like light fixtures) @@ -27,7 +28,7 @@ ..() update_type_list() var/datum/frame/frame_types/frame_type - if(!build_machine_type) + if(!build_machine_type && !build_wall_only) var/datum/frame/frame_types/response = tgui_input_list(user, "What kind of frame would you like to make?", "Frame type request", frame_types_floor) if(!response) return diff --git a/code/game/machinery/washing_machine.dm b/code/game/machinery/washing_machine.dm index b57a7a3ce8..77c3187458 100644 --- a/code/game/machinery/washing_machine.dm +++ b/code/game/machinery/washing_machine.dm @@ -67,11 +67,10 @@ //Tanning! for(var/obj/item/stack/hairlesshide/HH in washing) - var/obj/item/stack/wetleather/WL = new(src) - WL.amount = HH.amount + var/obj/item/stack/wetleather/WL = new(src, HH.get_amount()) washing -= HH HH.forceMove(get_turf(src)) - HH.use(HH.amount) + HH.use(HH.get_amount()) washing += WL diff --git a/code/game/machinery/wishgranter.dm b/code/game/machinery/wishgranter.dm index cab7caba17..2c65530b9f 100644 --- a/code/game/machinery/wishgranter.dm +++ b/code/game/machinery/wishgranter.dm @@ -3,16 +3,18 @@ desc = "You're not so sure about this, anymore..." icon = 'icons/obj/device.dmi' icon_state = "syndbeacon" - use_power = USE_POWER_OFF - anchored = TRUE - density = TRUE - var/charges = 1 - var/insisting = 0 -/obj/machinery/wish_granter/attack_hand(var/mob/user as mob) + anchored = 1 + density = 1 + use_power = USE_POWER_OFF + + var/chargesa = 1 + var/insistinga = 0 + +/obj/machinery/wish_granter/attack_hand(var/mob/living/carbon/human/user as mob) usr.set_machine(src) - if(charges <= 0) + if(chargesa <= 0) to_chat(user, "The Wish Granter lies silent.") return @@ -23,47 +25,45 @@ else if(is_special_character(user)) to_chat(user, "Even to a heart as dark as yours, you know nothing good will come of this. Something instinctual makes you pull away.") - else if(!insisting) + else if (!insistinga) to_chat(user, "Your first touch makes the Wish Granter stir, listening to you. Are you really sure you want to do this?") - insisting++ + insistinga++ else - var/message = "You speak. [pick("I want the station to disappear","Humanity is corrupt, mankind must be destroyed","I want to be rich", "I want to rule the world","I want immortality.")]. The Wish Granter answers." - to_chat(user, message) - to_chat(user, "Your head pounds for a moment, before your vision clears. You are the avatar of the Wish Granter, and your power is LIMITLESS! And it's all yours. You need to make sure no one can take it from you. No one can know, first.") - - charges-- - insisting = 0 - - if(!(HULK in user.mutations)) - user.mutations.Add(HULK) - - if(!(LASER in user.mutations)) - user.mutations.Add(LASER) - - if(!(XRAY in user.mutations)) - user.mutations.Add(XRAY) - user.sight |= (SEE_MOBS|SEE_OBJS|SEE_TURFS) - user.see_in_dark = 8 - user.see_invisible = SEE_INVISIBLE_LEVEL_TWO - - if(!(COLD_RESISTANCE in user.mutations)) - user.mutations.Add(COLD_RESISTANCE) - - if(!(TK in user.mutations)) - user.mutations.Add(TK) - - if(!(HEAL in user.mutations)) - user.mutations.Add(HEAL) - - user.update_mutations() - user.mind.special_role = "Avatar of the Wish Granter" - - var/datum/objective/silence/silence = new - silence.owner = user.mind - user.mind.objectives += silence - - show_objectives(user.mind) - to_chat(user, "You have a very bad feeling about this.") - - return \ No newline at end of file + chargesa-- + insistinga = 0 + var/wish = tgui_input_list(usr, "You want...","Wish", list("Power","Wealth","Immortality","To Kill","Peace")) + switch(wish) + if("Power") + to_chat(user, "Your wish is granted, but at a terrible cost...") + to_chat(user, "The Wish Granter punishes you for your selfishness, claiming your soul.") + if (!(LASER in user.mutations)) + user.mutations.Add(LASER) + to_chat(user, "You feel pressure building behind your eyes.") + if (!(COLD_RESISTANCE in user.mutations)) + user.mutations.Add(COLD_RESISTANCE) + to_chat(user, "Your body feels warm.") + if (!(XRAY in user.mutations)) + user.mutations.Add(XRAY) + user.sight |= (SEE_MOBS|SEE_OBJS|SEE_TURFS) + user.see_in_dark = 8 + user.see_invisible = SEE_INVISIBLE_LEVEL_TWO + to_chat(user, "The walls suddenly disappear.") + if("Wealth") + to_chat(user, "Your wish is granted, but at a terrible cost...") + to_chat(user, "The Wish Granter punishes you for your selfishness, claiming your soul.") + new /obj/structure/closet/syndicate/resources/everything(loc) + if("To Kill") + to_chat(user, "Your wish is granted, but at a terrible cost...") + to_chat(user, "The Wish Granter is outraged at your excessive wickedness, yet grants you your wish regardless. Someone will be killed soon.") + spawn(100) + if(user) + to_chat(user, "Suddenly, you feel as though you are being torn to countless shreds! Your wish is coming true!") + user.gib() + if("Peace") + to_chat(user, "Whatever alien sentience that the Wish Granter possesses is satisfied with your wish. There is a distant wailing as the last of the Faithless begin to die, then silence.") + to_chat(user, "You feel as if you just narrowly avoided a terrible fate...") + for(var/mob/living/simple_mob/faithless/F in living_mob_list) + F.health = -10 + F.set_stat(DEAD) + F.icon_state = "faithless_dead" \ No newline at end of file diff --git a/code/game/mecha/equipment/mecha_equipment.dm b/code/game/mecha/equipment/mecha_equipment.dm index 82db351ed1..85af948f96 100644 --- a/code/game/mecha/equipment/mecha_equipment.dm +++ b/code/game/mecha/equipment/mecha_equipment.dm @@ -228,6 +228,8 @@ return ..() /obj/item/mecha_parts/mecha_equipment/proc/detach(atom/moveto=null) + if(!chassis) + return moveto = moveto || get_turf(chassis) forceMove(moveto) chassis.equipment -= src diff --git a/code/game/mecha/equipment/tools/cable_layer.dm b/code/game/mecha/equipment/tools/cable_layer.dm index a431ecdcbf..8de184cb7a 100644 --- a/code/game/mecha/equipment/tools/cable_layer.dm +++ b/code/game/mecha/equipment/tools/cable_layer.dm @@ -8,8 +8,7 @@ required_type = list(/obj/mecha/working) /obj/item/mecha_parts/mecha_equipment/tool/cable_layer/New() - cable = new(src) - cable.amount = 0 + cable = new(src, 0) ..() /obj/item/mecha_parts/mecha_equipment/tool/cable_layer/MoveAction() @@ -38,13 +37,12 @@ log_message("[equip_ready?"Dea":"A"]ctivated.") return if(href_list["cut"]) - if(cable && cable.amount) - var/m = round(input(chassis.occupant,"Please specify the length of cable to cut","Cut cable",min(cable.amount,30)) as num, 1) - m = min(m, cable.amount) + if(cable && cable.get_amount()) + var/m = round(input(chassis.occupant, "Please specify the length of cable to cut", "Cut cable", min(cable.get_amount(), 30)) as num, 1) + m = min(m, cable.get_amount()) if(m) use_cable(m) - var/obj/item/stack/cable_coil/CC = new (get_turf(chassis)) - CC.amount = m + new /obj/item/stack/cable_coil(get_turf(chassis), m) else occupant_message("There's no more cable on the reel.") return @@ -52,19 +50,19 @@ /obj/item/mecha_parts/mecha_equipment/tool/cable_layer/get_equip_info() var/output = ..() if(output) - return "[output] \[Cable: [cable ? cable.amount : 0] m\][(cable && cable.amount) ? "- [!equip_ready?"Dea":"A"]ctivate|Cut" : null]" + return "[output] \[Cable: [cable ? cable.get_amount() : 0] m\][(cable && cable.get_amount()) ? "- [!equip_ready?"Dea":"A"]ctivate|Cut" : null]" return /obj/item/mecha_parts/mecha_equipment/tool/cable_layer/proc/load_cable(var/obj/item/stack/cable_coil/CC) - if(istype(CC) && CC.amount) - var/cur_amount = cable? cable.amount : 0 + if(istype(CC) && CC.get_amount()) + var/cur_amount = cable? cable.get_amount() : 0 var/to_load = max(max_cable - cur_amount,0) if(to_load) - to_load = min(CC.amount, to_load) + to_load = min(CC.get_amount(), to_load) if(!cable) - cable = new(src) - cable.amount = 0 - cable.amount += to_load + cable = new(src, to_load) + else + cable.add(to_load) CC.use(to_load) return to_load else @@ -72,12 +70,12 @@ return /obj/item/mecha_parts/mecha_equipment/tool/cable_layer/proc/use_cable(amount) - if(!cable || cable.amount<1) + if(!cable || cable.get_amount() < 1) set_ready_state(TRUE) occupant_message("Cable depleted, [src] deactivated.") log_message("Cable depleted, [src] deactivated.") return - if(cable.amount < amount) + if(cable.get_amount() < amount) occupant_message("No enough cable to finish the task.") return cable.use(amount) diff --git a/code/game/mecha/equipment/tools/generator.dm b/code/game/mecha/equipment/tools/generator.dm index 78a74bc0f8..cdb8eb4680 100644 --- a/code/game/mecha/equipment/tools/generator.dm +++ b/code/game/mecha/equipment/tools/generator.dm @@ -18,8 +18,7 @@ /obj/item/mecha_parts/mecha_equipment/generator/Initialize() . = ..() - fuel = new fuel_type(src) - fuel.amount = 0 + fuel = new fuel_type(src, 0) /obj/item/mecha_parts/mecha_equipment/generator/Destroy() qdel(fuel) @@ -29,7 +28,7 @@ if(!chassis) set_ready_state(TRUE) return PROCESS_KILL - if(fuel.amount<=0) + if(fuel.get_amount() <= 0) log_message("Deactivated - no fuel.") set_ready_state(TRUE) return PROCESS_KILL @@ -43,7 +42,7 @@ if(cur_charge3\] - [(datum_flags & DF_ISPROCESSING)?"Dea":"A"]ctivate" + return "[output] \[[fuel]: [round(fuel.get_amount()*fuel.perunit,0.1)] cm3\] - [(datum_flags & DF_ISPROCESSING)?"Dea":"A"]ctivate" return /obj/item/mecha_parts/mecha_equipment/generator/action(target) @@ -86,12 +85,12 @@ return /obj/item/mecha_parts/mecha_equipment/generator/proc/load_fuel(var/obj/item/stack/material/P) - if(P.type == fuel.type && P.amount) - var/to_load = max(max_fuel - fuel.amount*fuel.perunit,0) + if(P.type == fuel.type && P.get_amount()) + var/to_load = max(max_fuel - fuel.get_amount()*fuel.perunit,0) if(to_load) - var/units = min(max(round(to_load / P.perunit),1),P.amount) + var/units = min(max(round(to_load / P.perunit),1),P.get_amount()) if(units) - fuel.amount += units + fuel.add(units) P.use(units) return units else diff --git a/code/game/mecha/equipment/tools/jetpack.dm b/code/game/mecha/equipment/tools/jetpack.dm index 5f2fc153a2..9b6de6121f 100644 --- a/code/game/mecha/equipment/tools/jetpack.dm +++ b/code/game/mecha/equipment/tools/jetpack.dm @@ -48,6 +48,43 @@ if(!action_checks()) return chassis.dyndomove(direction) var/move_result = 0 + if(direction == UP || direction == DOWN) + if(!chassis.can_ztravel()) + chassis.occupant_message("Your vehicle lacks the capacity to move in that direction!") + return FALSE + + //We're using locs because some mecha are 2x2 turfs. So thicc! + var/result = TRUE + + for(var/turf/T in chassis.locs) + if(!T.CanZPass(chassis,direction)) + chassis.occupant_message("You can't move that direction from here!") + result = FALSE + break + var/turf/dest = (direction == UP) ? GetAbove(chassis) : GetBelow(chassis) + if(!dest) + chassis.occupant_message("There is nothing of interest in this direction.") + result = FALSE + break + if(!dest.CanZPass(chassis,direction)) + chassis.occupant_message("There's something blocking your movement in that direction!") + result = FALSE + break + if(result) + move_result = chassis.mechstep(direction) + + if(move_result) + chassis.can_move = 0 + chassis.use_power(chassis.step_energy_drain) + if(istype(chassis.loc, /turf/space)) + if(!chassis.check_for_support()) + chassis.float_direction = direction + chassis.start_process(MECHA_PROC_MOVEMENT) + chassis.log_message("Movement control lost. Inertial movement started.") + if(chassis.do_after(get_step_delay())) + chassis.can_move = 1 + return 1 + return 0 if(chassis.hasInternalDamage(MECHA_INT_CONTROL_LOST)) move_result = step_rand(chassis) else if(chassis.dir!=direction) diff --git a/code/game/mecha/equipment/tools/storage_compartment.dm b/code/game/mecha/equipment/tools/storage_compartment.dm new file mode 100644 index 0000000000..1cbd0acce5 --- /dev/null +++ b/code/game/mecha/equipment/tools/storage_compartment.dm @@ -0,0 +1,25 @@ +/obj/item/mecha_parts/mecha_equipment/storage + name = "auxillary exosuit storage bay" + desc = "An auxillary storage compartment, for attaching to exosuits." + icon_state = "mecha_tiler" + icon = 'icons/mecha/mecha_equipment_vr.dmi' + origin_tech = list(TECH_MATERIAL = 3) + range = 0 + var/storage_added = 5 + equip_type = EQUIP_SPECIAL + +/obj/item/mecha_parts/mecha_equipment/storage/attach(obj/mecha/M) + . = ..() + M.cargo_capacity += storage_added + +/obj/item/mecha_parts/mecha_equipment/storage/detach() + chassis.cargo_capacity -= storage_added + ..() + +/obj/item/mecha_parts/mecha_equipment/storage/bluespace + name = "auxillary exosuit storage wormhole" + desc = "An auxillary storage wormhole, utilizing a localized rip in bluespace for storage. Interestingly enough, teleport-stable, \ + despite its blatant disregard for the fabric of reality or reality-adjacency." + icon_state = "mecha_phase_array" + storage_added = 15 + origin_tech = list(TECH_MATERIAL = 6, TECH_ENGINEERING = 4, TECH_MAGNET = 4, TECH_POWER = 5, TECH_BLUESPACE = 3) \ No newline at end of file diff --git a/code/game/mecha/equipment/tools/tools.dm b/code/game/mecha/equipment/tools/tools.dm index 01aeca691d..4fd4c8d967 100644 --- a/code/game/mecha/equipment/tools/tools.dm +++ b/code/game/mecha/equipment/tools/tools.dm @@ -1,2 +1,3 @@ /obj/item/mecha_parts/mecha_equipment/tool + matter = list(MAT_STEEL = 5000, MAT_GLASS = 3000) equip_type = EQUIP_UTILITY \ No newline at end of file diff --git a/code/game/mecha/equipment/weapons/weapons.dm b/code/game/mecha/equipment/weapons/weapons.dm index 89a38383dd..01f8a5ef6d 100644 --- a/code/game/mecha/equipment/weapons/weapons.dm +++ b/code/game/mecha/equipment/weapons/weapons.dm @@ -2,6 +2,7 @@ name = "mecha weapon" range = RANGED origin_tech = list(TECH_MATERIAL = 3, TECH_COMBAT = 3) + matter = list(MAT_STEEL = 6000, MAT_GLASS = 3000) var/projectile //Type of projectile fired. var/projectiles = 1 //Amount of projectiles loaded. var/projectiles_per_shot = 1 //Amount of projectiles fired per single shot. diff --git a/code/game/mecha/mech_fabricator.dm b/code/game/mecha/mech_fabricator.dm index d6d51fa923..4e92255d05 100644 --- a/code/game/mecha/mech_fabricator.dm +++ b/code/game/mecha/mech_fabricator.dm @@ -451,6 +451,7 @@ if(..()) return if(!allowed(user)) + to_chat(user, SPAN_WARNING("\The [src] rejects your use due to lack of access!")) return tgui_interact(user) @@ -665,18 +666,44 @@ visible_message("[bicon(src)] [src] beeps: \"No records in User DB\"") /obj/machinery/mecha_part_fabricator/proc/eject_materials(var/material, var/amount) // 0 amount = 0 means ejecting a full stack; -1 means eject everything - var/recursive = amount == -1 ? 1 : 0 + var/recursive = amount == -1 ? TRUE : FALSE var/matstring = lowertext(material) - var/datum/material/M = get_material_by_name(matstring) - var/obj/item/stack/material/S = M.place_sheet(get_turf(src)) - if(amount <= 0) - amount = S.max_amount - var/ejected = min(round(materials[matstring] / S.perunit), amount) - S.amount = min(ejected, amount) - if(S.amount <= 0) - qdel(S) + // 0 or null, nothing to eject + if(!materials[matstring]) return + // Problem, fix problem and abort + if(materials[matstring] < 0) + warning("[src] tried to eject material '[material]', which it has 'materials[matstring]' of!") + materials[matstring] = 0 + return + + // Find the material datum for our material + var/datum/material/M = get_material_by_name(matstring) + if(!M) + warning("[src] tried to eject material '[matstring]', which didn't match any known material datum!") + return + // Find what type of sheets it makes + var/obj/item/stack/material/S = M.stack_type + if(!S) + warning("[src] tried to eject material '[matstring]', which didn't have a stack_type!") + return + + // If we were passed -1, then it's recursive ejection and we should eject all we can + if(amount <= 0) + amount = initial(S.max_amount) + // Smaller of what we have left, or the desired amount (note the amount is in sheets, but the array stores perunit values) + var/ejected = min(round(materials[matstring] / initial(S.perunit)), amount) + + // Place a sheet + S = M.place_sheet(get_turf(src), ejected) + if(!istype(S)) + warning("[src] tried to eject material '[material]', which didn't generate a proper stack when asked!") + return + + // Reduce our amount stored materials[matstring] -= ejected * S.perunit + + // Recurse if we have enough left for more sheets if(recursive && materials[matstring] >= S.perunit) eject_materials(matstring, -1) diff --git a/code/game/mecha/mecha.dm b/code/game/mecha/mecha.dm index 01175eb3b0..3c428580f3 100644 --- a/code/game/mecha/mecha.dm +++ b/code/game/mecha/mecha.dm @@ -101,7 +101,7 @@ var/list/equipment = new //This lists holds what stuff you bolted onto your baby ride var/obj/item/mecha_parts/mecha_equipment/selected var/max_equip = 2 - + // What direction to float in, if inertial movement is active. var/float_direction = 0 // Process() iterator count. @@ -212,6 +212,9 @@ for(var/path in starting_equipment) var/obj/item/mecha_parts/mecha_equipment/ME = new path(src) ME.attach(src) + + START_PROCESSING(SSobj, src) + update_transform() /obj/mecha/drain_power(var/drain_check) @@ -328,6 +331,8 @@ QDEL_NULL(spark_system) QDEL_NULL(minihud) + STOP_PROCESSING(SSobj, src) + mechas_list -= src //global mech list . = ..() @@ -828,7 +833,7 @@ if(hasInternalDamage(MECHA_INT_CONTROL_LOST)) move_result = mechsteprand() //Up/down zmove - else if(direction & UP || direction & DOWN) + else if(direction == UP || direction == DOWN) if(!can_ztravel()) occupant_message("Your vehicle lacks the capacity to move in that direction!") return FALSE @@ -841,7 +846,7 @@ occupant_message("You can't move that direction from here!") result = FALSE break - var/turf/dest = direction & UP ? GetAbove(T) : GetBelow(T) + var/turf/dest = (direction == UP) ? GetAbove(src) : GetBelow(src) if(!dest) occupant_message("There is nothing of interest in this direction.") result = FALSE @@ -917,27 +922,19 @@ if(istype(obstacle, /mob))//First we check if it is a mob. Mechs mostly shouln't go through them, even while phasing. var/mob/M = obstacle M.Move(get_step(obstacle,src.dir)) + else if(phasing && get_charge()>=phasing_energy_drain)//Phazon check. This could use an improvement elsewhere. + src.use_power(phasing_energy_drain) + phase() + . = ..(obstacle) + return else if(istype(obstacle, /obj))//Then we check for regular obstacles. var/obj/O = obstacle - - if(phasing && get_charge()>=phasing_energy_drain)//Phazon check. This could use an improvement elsewhere. - spawn() - if(can_phase) - can_phase = FALSE - flick("[initial_icon]-phase", src) - src.loc = get_step(src,src.dir) - src.use_power(phasing_energy_drain) - sleep(get_step_delay() * 3) - can_phase = TRUE - occupant_message("Phazed.") - . = ..(obstacle) - return if(istype(O, /obj/effect/portal)) //derpfix - src.anchored = FALSE //I have no idea what this really fix. + src.anchored = 0 // Portals can only move unanchored objects. O.Crossed(src) spawn(0)//countering portal teleport spawn(0), hurr - src.anchored = TRUE - else if(O.anchored) + src.anchored = 1 + if(O.anchored) obstacle.Bumped(src) else step(obstacle,src.dir) @@ -946,6 +943,18 @@ . = ..(obstacle) return +/obj/mecha/proc/phase() // Force the mecha to move forward by phasing. + set waitfor = FALSE + if(can_phase) + can_phase = FALSE + flick("[initial_icon]-phase", src) + forceMove(get_step(src,src.dir)) + sleep(get_step_delay() * 3) + can_phase = TRUE + occupant_message("Phazed.") + return TRUE // In the event this is sequenced + return FALSE + /////////////////////////////////// //////// Internal damage //////// /////////////////////////////////// @@ -1704,8 +1713,7 @@ return /obj/mecha/remove_air(amount) - var/obj/item/mecha_parts/component/gas/GC = internal_components[MECH_GAS] - if(use_internal_tank && (GC && prob(GC.get_efficiency() * 100))) + if(use_internal_tank) return cabin_air.remove(amount) else var/turf/T = get_turf(src) @@ -1714,7 +1722,8 @@ return /obj/mecha/return_air() - if(use_internal_tank) + var/obj/item/mecha_parts/component/gas/GC = internal_components[MECH_GAS] + if(use_internal_tank && (GC && prob(GC.get_efficiency() * 100))) return cabin_air return get_turf_air() @@ -2474,8 +2483,8 @@ var/obj/item/mecha_parts/mecha_equipment/equip = top_filter.getObj("select_equip") if(equip) src.selected = equip - src.occupant_message("You switch to [equip]") - src.visible_message("[src] raises [equip]") + src.occupant_message("You switch to [equip].") + src.visible_message("[src] raises [equip].") send_byjax(src.occupant,"exosuit.browser","eq_list",src.get_equipment_list()) return if(href_list["eject"]) diff --git a/code/game/mecha/mecha_construction_paths.dm b/code/game/mecha/mecha_construction_paths.dm index 82a83e601e..27974a588d 100644 --- a/code/game/mecha/mecha_construction_paths.dm +++ b/code/game/mecha/mecha_construction_paths.dm @@ -190,8 +190,7 @@ holder.icon_state = "ripley4" else user.visible_message("[user] removes the wiring from [holder].", "You remove the wiring from [holder].") - var/obj/item/stack/cable_coil/coil = new /obj/item/stack/cable_coil(get_turf(holder)) - coil.amount = 4 + new /obj/item/stack/cable_coil(get_turf(holder), 4) holder.icon_state = "ripley2" if(10) if(diff==FORWARD) @@ -238,8 +237,7 @@ holder.icon_state = "ripley10" else user.visible_message("[user] pries internal armor layer from [holder].", "You prie internal armor layer from [holder].") - var/obj/item/stack/material/steel/MS = new /obj/item/stack/material/steel(get_turf(holder)) - MS.amount = 5 + new /obj/item/stack/material/steel(get_turf(holder), 5) holder.icon_state = "ripley8" if(4) if(diff==FORWARD) @@ -261,8 +259,7 @@ holder.icon_state = "ripley13" else user.visible_message("[user] pries external armor layer from [holder].", "You prie external armor layer from [holder].") - var/obj/item/stack/material/plasteel/MS = new /obj/item/stack/material/plasteel(get_turf(holder)) - MS.amount = 5 + new /obj/item/stack/material/plasteel(get_turf(holder), 5) holder.icon_state = "ripley11" if(1) if(diff==FORWARD) @@ -425,8 +422,7 @@ holder.icon_state = "gygax4" else user.visible_message("[user] removes the wiring from [holder].", "You remove the wiring from [holder].") - var/obj/item/stack/cable_coil/coil = new /obj/item/stack/cable_coil(get_turf(holder)) - coil.amount = 4 + new /obj/item/stack/cable_coil(get_turf(holder), 4) holder.icon_state = "gygax2" if(16) if(diff==FORWARD) @@ -521,8 +517,7 @@ holder.icon_state = "gygax16" else user.visible_message("[user] pries internal armor layer from [holder].", "You prie internal armor layer from [holder].") - var/obj/item/stack/material/steel/MS = new /obj/item/stack/material/steel(get_turf(holder)) - MS.amount = 5 + new /obj/item/stack/material/steel(get_turf(holder), 5) holder.icon_state = "gygax14" if(4) if(diff==FORWARD) @@ -709,8 +704,7 @@ holder.icon_state = "gygax4" else user.visible_message("[user] removes the wiring from [holder].", "You remove the wiring from [holder].") - var/obj/item/stack/cable_coil/coil = new /obj/item/stack/cable_coil(get_turf(holder)) - coil.amount = 4 + new /obj/item/stack/cable_coil(get_turf(holder), 4) holder.icon_state = "gygax2" if(16) if(diff==FORWARD) @@ -805,8 +799,7 @@ holder.icon_state = "gygax16" else user.visible_message("[user] pries internal armor layer from [holder].", "You pry the internal armor layer from [holder].") - var/obj/item/stack/material/steel/MS = new /obj/item/stack/material/steel(get_turf(holder)) - MS.amount = 5 + new /obj/item/stack/material/steel(get_turf(holder), 5) holder.icon_state = "gygax14" if(4) if(diff==FORWARD) @@ -828,8 +821,7 @@ holder.icon_state = "gygax19-s" else user.visible_message("[user] pries the external armor layer from [holder].", "You pry the external armor layer from [holder].") - var/obj/item/stack/material/plasteel/MS = new /obj/item/stack/material/plasteel(get_turf(holder)) // Fixes serenity giving Gygax Armor Plates for the reverse action... - MS.amount = 5 + new /obj/item/stack/material/plasteel(get_turf(holder), 5) // Fixes serenity giving Gygax Armor Plates for the reverse action... holder.icon_state = "gygax17" if(1) if(diff==FORWARD) @@ -975,8 +967,7 @@ holder.icon_state = "fireripley4" else user.visible_message("[user] removes the wiring from [holder].", "You remove the wiring from [holder].") - var/obj/item/stack/cable_coil/coil = new /obj/item/stack/cable_coil(get_turf(holder)) - coil.amount = 4 + new /obj/item/stack/cable_coil(get_turf(holder), 4) holder.icon_state = "fireripley2" if(11) if(diff==FORWARD) @@ -1023,8 +1014,7 @@ holder.icon_state = "fireripley10" else user.visible_message("[user] pries internal armor layer from [holder].", "You prie internal armor layer from [holder].") - var/obj/item/stack/material/plasteel/MS = new /obj/item/stack/material/plasteel(get_turf(holder)) - MS.amount = 5 + new /obj/item/stack/material/plasteel(get_turf(holder), 5) holder.icon_state = "fireripley8" if(5) if(diff==FORWARD) @@ -1046,8 +1036,7 @@ holder.icon_state = "fireripley13" else user.visible_message("[user] removes the external armor from [holder].", "You remove the external armor from [holder].") - var/obj/item/stack/material/plasteel/MS = new /obj/item/stack/material/plasteel(get_turf(holder)) - MS.amount = 5 + new /obj/item/stack/material/plasteel(get_turf(holder), 5) holder.icon_state = "fireripley11" if(2) if(diff==FORWARD) @@ -1055,8 +1044,7 @@ holder.icon_state = "fireripley14" else user.visible_message("[user] pries external armor layer from [holder].", "You prie external armor layer from [holder].") - var/obj/item/stack/material/plasteel/MS = new /obj/item/stack/material/plasteel(get_turf(holder)) - MS.amount = 5 + new /obj/item/stack/material/plasteel(get_turf(holder), 5) holder.icon_state = "fireripley12" if(1) if(diff==FORWARD) @@ -1220,8 +1208,7 @@ holder.icon_state = "durand4" else user.visible_message("[user] removes the wiring from [holder].", "You remove the wiring from [holder].") - var/obj/item/stack/cable_coil/coil = new /obj/item/stack/cable_coil(get_turf(holder)) - coil.amount = 4 + new /obj/item/stack/cable_coil(get_turf(holder), 4) holder.icon_state = "durand2" if(16) if(diff==FORWARD) @@ -1316,8 +1303,7 @@ holder.icon_state = "durand16" else user.visible_message("[user] pries internal armor layer from [holder].", "You prie internal armor layer from [holder].") - var/obj/item/stack/material/steel/MS = new /obj/item/stack/material/steel(get_turf(holder)) - MS.amount = 5 + new /obj/item/stack/material/steel(get_turf(holder), 5) holder.icon_state = "durand14" if(4) if(diff==FORWARD) @@ -1479,8 +1465,7 @@ holder.icon_state = "odysseus4" else user.visible_message("[user] removes the wiring from [holder].", "You remove the wiring from [holder].") - var/obj/item/stack/cable_coil/coil = new /obj/item/stack/cable_coil(get_turf(holder)) - coil.amount = 4 + new /obj/item/stack/cable_coil(get_turf(holder), 4) holder.icon_state = "odysseus2" if(10) if(diff==FORWARD) @@ -1527,8 +1512,7 @@ holder.icon_state = "odysseus10" else user.visible_message("[user] pries internal armor layer from [holder].", "You prie internal armor layer from [holder].") - var/obj/item/stack/material/steel/MS = new /obj/item/stack/material/steel(get_turf(holder)) - MS.amount = 5 + new /obj/item/stack/material/steel(get_turf(holder), 5) holder.icon_state = "odysseus8" if(4) if(diff==FORWARD) @@ -1549,9 +1533,8 @@ user.visible_message("[user] secures external armor layer.", "You secure external reinforced armor layer.") holder.icon_state = "odysseus13" else - var/obj/item/stack/material/plasteel/MS = new /obj/item/stack/material/plasteel(get_turf(holder)) - MS.amount = 5 - user.visible_message("[user] pries [MS] from [holder].", "You prie [MS] from [holder].") + new /obj/item/stack/material/plasteel(get_turf(holder), 5) + user.visible_message("[user] pries the plasteel from [holder].", "You prie the plasteel from [holder].") holder.icon_state = "odysseus11" if(1) if(diff==FORWARD) @@ -1714,8 +1697,7 @@ holder.icon_state = "phazon4" else user.visible_message("[user] removes the wiring from [holder].", "You remove the wiring from [holder].") - var/obj/item/stack/cable_coil/coil = new /obj/item/stack/cable_coil(get_turf(holder)) - coil.amount = 4 + new /obj/item/stack/cable_coil(get_turf(holder), 4) holder.icon_state = "phazon2" if(16) if(diff==FORWARD) @@ -1810,8 +1792,7 @@ holder.icon_state = "phazon20" else user.visible_message("[user] pries the internal armor layer from [holder].", "You pry the internal armor layer from [holder].") - var/obj/item/stack/material/steel/MS = new /obj/item/stack/material/steel(get_turf(holder)) - MS.amount = 5 + new /obj/item/stack/material/steel(get_turf(holder), 5) holder.icon_state = "phazon14" if(4) if(diff==FORWARD) @@ -1833,8 +1814,7 @@ holder.icon_state = "phazon23" else user.visible_message("[user] pries the external armor layer from [holder].", "You pry external armor layer from [holder].") - var/obj/item/stack/material/plasteel/MS = new /obj/item/stack/material/plasteel(get_turf(holder)) - MS.amount = 5 + new /obj/item/stack/material/plasteel(get_turf(holder), 5) holder.icon_state = "phazon21" if(1) if(diff==FORWARD) @@ -2004,8 +1984,7 @@ holder.icon_state = "janus4" else user.visible_message("[user] removes the wiring from [holder].", "You remove the wiring from [holder].") - var/obj/item/stack/cable_coil/coil = new /obj/item/stack/cable_coil(get_turf(holder)) - coil.amount = 4 + new /obj/item/stack/cable_coil(get_turf(holder), 4) holder.icon_state = "janus2" if(18) if(diff==FORWARD) @@ -2116,8 +2095,7 @@ holder.icon_state = "janus18" else user.visible_message("[user] pries the internal armor layer from [holder].", "You pry the internal armor layer from [holder].") - var/obj/item/stack/material/durasteel/MS = new /obj/item/stack/material/durasteel(get_turf(holder)) - MS.amount = 5 + new /obj/item/stack/material/durasteel(get_turf(holder), 5) holder.icon_state = "janus16" if(4) if(diff==FORWARD) @@ -2139,8 +2117,7 @@ holder.icon_state = "janus21" else user.visible_message("[user] pries the external armor layer from [holder].", "You pry external armor layer from [holder].") - var/obj/item/stack/material/morphium/MS = new /obj/item/stack/material/morphium(get_turf(holder)) - MS.amount = 5 + new /obj/item/stack/material/morphium(get_turf(holder), 5) holder.icon_state = "janus19" if(1) if(diff==FORWARD) diff --git a/code/game/mecha/micro/mecha_construction_paths_vr.dm b/code/game/mecha/micro/mecha_construction_paths_vr.dm index 60d8d2d3b7..4117e2ca65 100644 --- a/code/game/mecha/micro/mecha_construction_paths_vr.dm +++ b/code/game/mecha/micro/mecha_construction_paths_vr.dm @@ -145,8 +145,7 @@ holder.icon_state = "polecat4" else user.visible_message("[user] removes the wiring from [holder].", "You remove the wiring from [holder].") - var/obj/item/stack/cable_coil/coil = new /obj/item/stack/cable_coil(get_turf(holder)) - coil.amount = 4 + new /obj/item/stack/cable_coil(get_turf(holder), 4) holder.icon_state = "polecat2" if(16) if(diff==FORWARD) @@ -241,8 +240,7 @@ holder.icon_state = "polecat16" else user.visible_message("[user] pries internal armor layer from [holder].", "You prie internal armor layer from [holder].") - var/obj/item/stack/material/steel/MS = new /obj/item/stack/material/steel(get_turf(holder)) - MS.amount = 3 + new /obj/item/stack/material/steel(get_turf(holder), 3) holder.icon_state = "polecat14" if(4) if(diff==FORWARD) @@ -402,8 +400,7 @@ holder.icon_state = "gopher4" else user.visible_message("[user] removes the wiring from [holder].", "You remove the wiring from [holder].") - var/obj/item/stack/cable_coil/coil = new /obj/item/stack/cable_coil(get_turf(holder)) - coil.amount = 4 + new /obj/item/stack/cable_coil(get_turf(holder), 4) holder.icon_state = "gopher2" if(10) if(diff==FORWARD) @@ -450,8 +447,7 @@ holder.icon_state = "gopher10" else user.visible_message("[user] pries internal armor layer from [holder].", "You prie internal armor layer from [holder].") - var/obj/item/stack/material/steel/MS = new /obj/item/stack/material/steel(get_turf(holder)) - MS.amount = 3 + new /obj/item/stack/material/steel(get_turf(holder), 3) holder.icon_state = "gopher8" if(4) if(diff==FORWARD) @@ -473,8 +469,7 @@ holder.icon_state = "gopher13" else user.visible_message("[user] pries external armor layer from [holder].", "You prie external armor layer from [holder].") - var/obj/item/stack/material/plasteel/MS = new /obj/item/stack/material/plasteel(get_turf(holder)) - MS.amount = 2 + new /obj/item/stack/material/plasteel(get_turf(holder), 2) holder.icon_state = "gopher11" if(1) if(diff==FORWARD) @@ -635,8 +630,7 @@ holder.icon_state = "weasel4" else user.visible_message("[user] removes the wiring from [holder].", "You remove the wiring from [holder].") - var/obj/item/stack/cable_coil/coil = new /obj/item/stack/cable_coil(get_turf(holder)) - coil.amount = 4 + new /obj/item/stack/cable_coil(get_turf(holder), 4) holder.icon_state = "weasel2" if(16) if(diff==FORWARD) @@ -731,8 +725,7 @@ holder.icon_state = "weasel16" else user.visible_message("[user] pries internal armor layer from [holder].", "You prie internal armor layer from [holder].") - var/obj/item/stack/material/steel/MS = new /obj/item/stack/material/steel(get_turf(holder)) - MS.amount = 3 + new /obj/item/stack/material/steel(get_turf(holder), 3) holder.icon_state = "weasel14" if(4) if(diff==FORWARD) @@ -754,8 +747,7 @@ holder.icon_state = "weasel19" else user.visible_message("[user] pries external armor layer from [holder].", "You prie external armor layer from [holder].") - var/obj/item/stack/material/plasteel/MS = new /obj/item/stack/material/plasteel(get_turf(holder)) - MS.amount = 3 + new /obj/item/stack/material/plasteel(get_turf(holder), 3) holder.icon_state = "weasel17" if(1) if(diff==FORWARD) diff --git a/code/game/objects/effects/alien/aliens.dm b/code/game/objects/effects/alien/aliens.dm index bcba116014..c8149fc7ce 100644 --- a/code/game/objects/effects/alien/aliens.dm +++ b/code/game/objects/effects/alien/aliens.dm @@ -1,7 +1,6 @@ /* Alien Effects! * Contains: * effect/alien - * Resin * Weeds * Acid */ @@ -14,139 +13,6 @@ desc = "theres something alien about this" icon = 'icons/mob/alien.dmi' -/* - * Resin - */ -/obj/effect/alien/resin - name = "resin" - desc = "Looks like some kind of slimy growth." - icon_state = "resin" - - density = TRUE - opacity = 1 - anchored = TRUE - can_atmos_pass = ATMOS_PASS_NO - var/health = 200 - //var/mob/living/affecting = null - -/obj/effect/alien/resin/wall - name = "resin wall" - desc = "Purple slime solidified into a wall." - icon_state = "resinwall" //same as resin, but consistency ho! - -/obj/effect/alien/resin/membrane - name = "resin membrane" - desc = "Purple slime just thin enough to let light pass through." - icon_state = "resinmembrane" - opacity = 0 - health = 120 - -/obj/effect/alien/resin/New() - ..() - var/turf/T = get_turf(src) - T.thermal_conductivity = WALL_HEAT_TRANSFER_COEFFICIENT - -/obj/effect/alien/resin/Destroy() - var/turf/T = get_turf(src) - T.thermal_conductivity = initial(T.thermal_conductivity) - ..() - -/obj/effect/alien/resin/proc/healthcheck() - if(health <=0) - density = FALSE - qdel(src) - return - -/obj/effect/alien/resin/bullet_act(var/obj/item/projectile/Proj) - health -= Proj.damage - ..() - healthcheck() - return - -/obj/effect/alien/resin/attack_generic(var/mob/user, var/damage, var/attack_verb) - visible_message("[user] [attack_verb] the [src]!") - playsound(src, 'sound/effects/attackblob.ogg', 100, 1) - user.do_attack_animation(src) - health -= damage - healthcheck() - return - -/obj/effect/alien/resin/take_damage(var/damage) - health -= damage - healthcheck() - return - -/obj/effect/alien/resin/ex_act(severity) - switch(severity) - if(1.0) - health-=50 - if(2.0) - health-=50 - if(3.0) - if (prob(50)) - health-=50 - else - health-=25 - healthcheck() - return - -/obj/effect/alien/resin/hitby(AM as mob|obj) - ..() - for(var/mob/O in viewers(src, null)) - O.show_message("[src] was hit by [AM].", 1) - var/tforce = 0 - if(ismob(AM)) - tforce = 10 - else - tforce = AM:throwforce - playsound(src, 'sound/effects/attackblob.ogg', 100, 1) - health = max(0, health - tforce) - healthcheck() - ..() - return - -/obj/effect/alien/resin/attack_hand() - usr.setClickCooldown(DEFAULT_ATTACK_COOLDOWN) - if (HULK in usr.mutations) - to_chat(usr, "You easily destroy the [name].") - for(var/mob/O in oviewers(src)) - O.show_message("[usr] destroys the [name]!", 1) - health = 0 - else - - // Aliens can get straight through these. - if(istype(usr,/mob/living/carbon)) - var/mob/living/carbon/M = usr - if(locate(/obj/item/organ/internal/xenos/hivenode) in M.internal_organs) - for(var/mob/O in oviewers(src)) - O.show_message("[usr] strokes the [name] and it melts away!", 1) - health = 0 - healthcheck() - return - - to_chat(usr, "You claw at the [name].") - for(var/mob/O in oviewers(src)) - O.show_message("[usr] claws at the [name]!", 1) - health -= rand(5,10) - healthcheck() - return - -/obj/effect/alien/resin/attackby(obj/item/weapon/W as obj, mob/user as mob) - - user.setClickCooldown(user.get_attack_speed(W)) - var/aforce = W.force - health = max(0, health - aforce) - playsound(src, 'sound/effects/attackblob.ogg', 100, 1) - healthcheck() - ..() - return - -/obj/effect/alien/resin/CanPass(atom/movable/mover, turf/target) - if(istype(mover) && mover.checkpass(PASSGLASS)) - return !opacity - return !density - - /* * Weeds */ diff --git a/code/game/objects/effects/decals/posters/voreposters_vr.dm b/code/game/objects/effects/decals/posters/voreposters_vr.dm index 3974cecf9f..03af8416e4 100644 --- a/code/game/objects/effects/decals/posters/voreposters_vr.dm +++ b/code/game/objects/effects/decals/posters/voreposters_vr.dm @@ -363,7 +363,7 @@ name = "Virgo Orbital Research Establishment" desc = "It features the logo of the local branch of Nanotrasen; Virgo Orbital Research Establishment." /decl/poster/vore_95 - icon_state = "3btetherposter" + icon_state = "tetherposter" name = "The Frontier Awaits" desc = "A stunning depiction of Virgo 3b in front of a field of stars, a purple nebula laces in from behind, while the shining tower of NSB Adephagia gleams in the starlight. 'The Frontier Awaits' is printed in silver lettering. It looks like a recruitment ad." /decl/poster/vore_96 diff --git a/code/game/objects/effects/job_start_landmarks.dm b/code/game/objects/effects/job_start_landmarks.dm new file mode 100644 index 0000000000..974b34a93f --- /dev/null +++ b/code/game/objects/effects/job_start_landmarks.dm @@ -0,0 +1,94 @@ +/obj/effect/landmark/start/captain + name = "Site Manager" +/obj/effect/landmark/start/hop + name = "Head of Personnel" +/obj/effect/landmark/start/commandsecretary + name = "Command Secretary" +/obj/effect/landmark/start/hos + name = "Head of Security" +/obj/effect/landmark/start/warden + name = "Warden" +/obj/effect/landmark/start/detective + name = "Detective" +/obj/effect/landmark/start/security + name = "Security Officer" +/obj/effect/landmark/start/ce + name = "Chief Engineer" +/obj/effect/landmark/start/atmostech + name = "Atmospheric Technician" +/obj/effect/landmark/start/engineer + name = "Engineer" +/obj/effect/landmark/start/cmo + name = "Chief Medical Officer" +/obj/effect/landmark/start/chemist + name = "Chemist" +/obj/effect/landmark/start/medical + name = "Medical Doctor" +/obj/effect/landmark/start/paramedic + name = "Paramedic" +/obj/effect/landmark/start/psych + name = "Psychiatrist" +/obj/effect/landmark/start/rd + name = "Research Director" +/obj/effect/landmark/start/roboticist + name = "Roboticist" +/obj/effect/landmark/start/scientist + name = "Scientist" +/obj/effect/landmark/start/xenobio + name = "Xenobiologist" +/obj/effect/landmark/start/xenobot + name = "Xenobotanist" +/obj/effect/landmark/start/qm + name = "Quartermaster" +/obj/effect/landmark/start/cargo + name = "Cargo Technician" +/obj/effect/landmark/start/miner + name = "Shaft Miner" +/obj/effect/landmark/start/pf + name = "Pathfinder" +/obj/effect/landmark/start/explorer + name = "Explorer" +/obj/effect/landmark/start/fieldmedic + name = "Field Medic" +/obj/effect/landmark/start/bartender + name = "Bartender" +/obj/effect/landmark/start/botanist + name = "Botanist" +/obj/effect/landmark/start/chaplain + name = "Chaplain" +/obj/effect/landmark/start/chef + name = "Chef" +/obj/effect/landmark/start/clown + name = "Clown" +/obj/effect/landmark/start/entertainer + name = "Entertainer" +/obj/effect/landmark/start/intern + name = "Intern" +/obj/effect/landmark/start/iaa + name = "Internal Affairs Agent" +/obj/effect/landmark/start/janitor + name = "Janitor" +/obj/effect/landmark/start/librarian + name = "Librarian" +/obj/effect/landmark/start/mime + name = "Mime" +/obj/effect/landmark/start/pilot + name = "Pilot" +/obj/effect/landmark/start/visitor + name = "Visitor" +/obj/effect/landmark/start/ai + name = "AI" +/obj/effect/landmark/start/cyborg + name = "Cyborg" +/obj/effect/landmark/start/taloncap + name = "Talon Captain" +/obj/effect/landmark/start/talondoc + name = "Talon Doctor" +/obj/effect/landmark/start/taloneng + name = "Talon Engineer" +/obj/effect/landmark/start/talonguard + name = "Talon Guard" +/obj/effect/landmark/start/talonpilot + name = "Talon Pilot" +/obj/effect/landmark/start/talonminer + name = "Talon Miner" diff --git a/code/game/objects/effects/landmarks.dm b/code/game/objects/effects/landmarks.dm index ce1535601f..fc6af6b2fd 100644 --- a/code/game/objects/effects/landmarks.dm +++ b/code/game/objects/effects/landmarks.dm @@ -29,6 +29,7 @@ return if("JoinLateGateway") latejoin_gateway += loc + latejoin += src //VOREStation Addition delete_me = 1 return if("JoinLateElevator") @@ -77,6 +78,12 @@ endgame_exits += loc delete_me = 1 return + //VOREStation Add Start + if("vinestart") + vinestart += loc + delete_me = 1 + return + //VORE Station Add End landmarks_list += src return 1 @@ -161,14 +168,14 @@ qdel(src) /obj/effect/landmark/costume/madscientist/New() - new /obj/item/clothing/under/gimmick/rank/captain/suit(src.loc) + new /obj/item/clothing/under/suit_jacket/green(src.loc) new /obj/item/clothing/head/flatcap(src.loc) new /obj/item/clothing/suit/storage/toggle/labcoat/mad(src.loc) new /obj/item/clothing/glasses/gglasses(src.loc) delete_me = 1 /obj/effect/landmark/costume/elpresidente/New() - new /obj/item/clothing/under/gimmick/rank/captain/suit(src.loc) + new /obj/item/clothing/under/suit_jacket/green(src.loc) new /obj/item/clothing/head/flatcap(src.loc) new /obj/item/clothing/mask/smokable/cigarette/cigar/havana(src.loc) new /obj/item/clothing/shoes/boots/jackboots(src.loc) diff --git a/code/game/objects/effects/landmarks_vr.dm b/code/game/objects/effects/landmarks_vr.dm index b9dd81e967..e436447109 100644 --- a/code/game/objects/effects/landmarks_vr.dm +++ b/code/game/objects/effects/landmarks_vr.dm @@ -1,6 +1,12 @@ /obj/effect/landmark var/abductor = 0 +/obj/effect/landmark/vines + name = "vinestart" + +/obj/effect/landmark/vermin + name = "verminstart" + /obj/effect/landmark/late_antag name = "Antag Latespawn" var/antag_id @@ -39,4 +45,4 @@ /obj/effect/landmark/late_antag/raider name = "Raider - Lateload" - antag_id = MODE_RAIDER \ No newline at end of file + antag_id = MODE_RAIDER diff --git a/code/game/objects/effects/semirandom_mobs_vr.dm b/code/game/objects/effects/semirandom_mobs_vr.dm index ae5230f976..e6b26da087 100644 --- a/code/game/objects/effects/semirandom_mobs_vr.dm +++ b/code/game/objects/effects/semirandom_mobs_vr.dm @@ -51,11 +51,16 @@ var/global/list/semirandom_mob_spawner_decisions = list() list(/mob/living/simple_mob/animal/passive/opossum), list(/mob/living/simple_mob/animal/passive/pillbug), list(/mob/living/simple_mob/animal/passive/snake), + list(/mob/living/simple_mob/animal/passive/snake/red), + list(/mob/living/simple_mob/animal/passive/snake/python), list(/mob/living/simple_mob/animal/passive/tindalos), list(/mob/living/simple_mob/animal/passive/yithian), list( /mob/living/simple_mob/animal/wolf = 10, - /mob/living/simple_mob/animal/wolf/direwolf = 1 + /mob/living/simple_mob/animal/wolf/direwolf = 5, + /mob/living/simple_mob/vore/greatwolf = 1, + /mob/living/simple_mob/vore/greatwolf/black = 1, + /mob/living/simple_mob/vore/greatwolf/grey = 1 ), list(/mob/living/simple_mob/vore/rabbit), list(/mob/living/simple_mob/vore/redpanda), @@ -109,12 +114,8 @@ var/global/list/semirandom_mob_spawner_decisions = list() /mob/living/simple_mob/animal/giant_spider/phorogenic = 10, /mob/living/simple_mob/animal/giant_spider/thermic = 5, /mob/living/simple_mob/animal/giant_spider/tunneler = 10, - /mob/living/simple_mob/animal/giant_spider/webslinger = 5 - ), - list( - /mob/living/simple_mob/animal/wolf = 10, - /mob/living/simple_mob/animal/wolf/direwolf = 1 - ), + /mob/living/simple_mob/animal/giant_spider/webslinger = 5, + /mob/living/simple_mob/animal/giant_spider/broodmother = 1), list(/mob/living/simple_mob/creature/strong), list(/mob/living/simple_mob/faithless/strong), list(/mob/living/simple_mob/animal/goat), @@ -244,7 +245,6 @@ var/global/list/semirandom_mob_spawner_decisions = list() list(/mob/living/simple_mob/mechanical/wahlem), list(/mob/living/simple_mob/animal/passive/fox/syndicate), list(/mob/living/simple_mob/animal/passive/fox), - list(/mob/living/simple_mob/animal/wolf/direwolf), list(/mob/living/simple_mob/animal/space/jelly), list( /mob/living/simple_mob/otie/feral, @@ -253,12 +253,12 @@ var/global/list/semirandom_mob_spawner_decisions = list() /mob/living/simple_mob/otie/red/chubby ), list( - /mob/living/simple_mob/shadekin/blue/ai = 100, - /mob/living/simple_mob/shadekin/green/ai = 50, - /mob/living/simple_mob/shadekin/orange/ai = 20, - /mob/living/simple_mob/shadekin/purple/ai = 60, - /mob/living/simple_mob/shadekin/red/ai = 40, - /mob/living/simple_mob/shadekin/yellow/ai = 1 + /mob/living/simple_mob/shadekin/blue = 100, + /mob/living/simple_mob/shadekin/green = 50, + /mob/living/simple_mob/shadekin/orange = 20, + /mob/living/simple_mob/shadekin/purple = 60, + /mob/living/simple_mob/shadekin/red = 40, + /mob/living/simple_mob/shadekin/yellow = 1 ), list( /mob/living/simple_mob/vore/aggressive/corrupthound, @@ -291,7 +291,22 @@ var/global/list/semirandom_mob_spawner_decisions = list() /mob/living/simple_mob/vore/sect_queen = 1 ), list(/mob/living/simple_mob/vore/solargrub), - list(/mob/living/simple_mob/vore/woof) + list(/mob/living/simple_mob/vore/woof), + list(/mob/living/simple_mob/vore/alienanimals/teppi), + list(/mob/living/simple_mob/vore/alienanimals/space_ghost), + list(/mob/living/simple_mob/vore/alienanimals/catslug), + list(/mob/living/simple_mob/vore/alienanimals/space_jellyfish), + list(/mob/living/simple_mob/vore/alienanimals/startreader), + list( + /mob/living/simple_mob/vore/bigdragon, + /mob/living/simple_mob/vore/bigdragon/friendly), + list( + /mob/living/simple_mob/vore/leopardmander = 50, + /mob/living/simple_mob/vore/leopardmander/blue = 10, + /mob/living/simple_mob/vore/leopardmander/exotic = 1 + ), + list(/mob/living/simple_mob/vore/sheep), + list(/mob/living/simple_mob/vore/weretiger) ) /obj/random/mob/semirandom_mob_spawner/item_to_spawn() @@ -358,11 +373,16 @@ var/global/list/semirandom_mob_spawner_decisions = list() list(/mob/living/simple_mob/animal/passive/opossum) = 10, list(/mob/living/simple_mob/animal/passive/pillbug) = 10, list(/mob/living/simple_mob/animal/passive/snake) = 10, + list(/mob/living/simple_mob/animal/passive/snake/red) = 10, + list(/mob/living/simple_mob/animal/passive/snake/python) = 10, list(/mob/living/simple_mob/animal/passive/tindalos) = 10, list(/mob/living/simple_mob/animal/passive/yithian) = 10, list( /mob/living/simple_mob/animal/wolf = 10, - /mob/living/simple_mob/animal/wolf/direwolf = 1 + /mob/living/simple_mob/animal/wolf/direwolf = 5, + /mob/living/simple_mob/vore/greatwolf = 1, + /mob/living/simple_mob/vore/greatwolf/black = 1, + /mob/living/simple_mob/vore/greatwolf/grey = 1 ) = 10, list(/mob/living/simple_mob/vore/rabbit) = 10, list(/mob/living/simple_mob/vore/redpanda) = 10, @@ -405,8 +425,19 @@ var/global/list/semirandom_mob_spawner_decisions = list() /mob/living/simple_mob/animal/sif/shantak/leader = 1 ) = 5, list(/mob/living/simple_mob/animal/sif/siffet) = 5, - list(/mob/living/simple_mob/animal/sif/tymisian) = 5 - + list(/mob/living/simple_mob/animal/sif/tymisian) = 5, + list(/mob/living/simple_mob/vore/alienanimals/teppi) = 10, + list(/mob/living/simple_mob/vore/alienanimals/dustjumper) = 5, + list(/mob/living/simple_mob/vore/alienanimals/space_jellyfish) = 5, + list(/mob/living/simple_mob/vore/alienanimals/space_ghost) = 5, + list( + /mob/living/simple_mob/vore/leopardmander = 50, + /mob/living/simple_mob/vore/leopardmander/blue = 10, + /mob/living/simple_mob/vore/leopardmander/exotic = 1 + ) = 5, + list(/mob/living/simple_mob/vore/sheep) = 5, + list(/mob/living/simple_mob/vore/weretiger) = 5, + list(/mob/living/simple_mob/vore/alienanimals/skeleton) = 5 ) /obj/random/mob/semirandom_mob_spawner/monster @@ -432,14 +463,17 @@ var/global/list/semirandom_mob_spawner_decisions = list() /mob/living/simple_mob/animal/giant_spider/webslinger = 5 ) = 100, list( - /mob/living/simple_mob/shadekin/red/ai = 5, - /mob/living/simple_mob/shadekin/orange/ai = 1, - /mob/living/simple_mob/shadekin/purple/ai = 10 + /mob/living/simple_mob/shadekin/red = 5, + /mob/living/simple_mob/shadekin/orange = 1, + /mob/living/simple_mob/shadekin/purple = 10 ) = 1, list( /mob/living/simple_mob/animal/wolf = 10, - /mob/living/simple_mob/animal/wolf/direwolf = 1, - ) = 80, + /mob/living/simple_mob/animal/wolf/direwolf = 5, + /mob/living/simple_mob/vore/greatwolf = 1, + /mob/living/simple_mob/vore/greatwolf/black = 1, + /mob/living/simple_mob/vore/greatwolf/grey = 1 + ) = 40, list(/mob/living/simple_mob/creature/strong) = 40, list(/mob/living/simple_mob/faithless/strong) = 20, list(/mob/living/simple_mob/animal/goat) = 1, @@ -499,7 +533,19 @@ var/global/list/semirandom_mob_spawner_decisions = list() list( /mob/living/simple_mob/vore/oregrub = 5, /mob/living/simple_mob/vore/oregrub/lava = 1 - ) = 15 + ) = 15, + list(/mob/living/simple_mob/vore/alienanimals/teppi) = 15, + list(/mob/living/simple_mob/vore/alienanimals/space_jellyfish) = 5, + list(/mob/living/simple_mob/vore/alienanimals/space_ghost) = 5, + list( + /mob/living/simple_mob/vore/leopardmander = 50, + /mob/living/simple_mob/vore/leopardmander/blue = 10, + /mob/living/simple_mob/vore/leopardmander/exotic = 1 + ) = 5, + list(/mob/living/simple_mob/vore/sheep) = 5, + list(/mob/living/simple_mob/vore/weretiger) = 5, + list(/mob/living/simple_mob/vore/alienanimals/skeleton) = 5, + list(/mob/living/simple_mob/vore/alienanimals/catslug) = 5 ) /obj/random/mob/semirandom_mob_spawner/humanoid @@ -510,9 +556,9 @@ var/global/list/semirandom_mob_spawner_decisions = list() possible_mob_types = list( list( - /mob/living/simple_mob/shadekin/blue/ai = 25, - /mob/living/simple_mob/shadekin/green/ai = 10, - /mob/living/simple_mob/shadekin/purple/ai = 1, + /mob/living/simple_mob/shadekin/blue = 25, + /mob/living/simple_mob/shadekin/green = 10, + /mob/living/simple_mob/shadekin/purple = 1, ) = 1, list(/mob/living/simple_mob/vore/catgirl) = 100, list(/mob/living/simple_mob/vore/wolfgirl) = 100, @@ -535,7 +581,7 @@ var/global/list/semirandom_mob_spawner_decisions = list() /mob/living/simple_mob/vore/lamia/zebra/bra, /mob/living/simple_mob/vore/lamia/zebra/shirt ) = 100, -// LOOK OKAY MERCS ARE HUMANOIDS SO THEY ARE HERE, but they are also kind of bullshit so they probably shouldn't be able to spawn in the same place as catgirls. +// LOOK OKAY MERCS ARE HUMANOIDS SO THEY ARE HERE, but they are also kind of bullshit so they probably shouldn't be able to spawn in the same place as catgirls. // I want some better potentially hostile humanoids that aren't stupid to fight. If they become a big issue I'll comment them out. // For now they are just rare, and the ranged ones are way more rare than the melee ones, which I think will help balance them out. list( @@ -673,7 +719,12 @@ var/global/list/semirandom_mob_spawner_decisions = list() mob_faction = "vore" possible_mob_types = list( - list(/mob/living/simple_mob/animal/wolf/direwolf) = 100, + list( + /mob/living/simple_mob/animal/wolf/direwolf = 5, + /mob/living/simple_mob/vore/greatwolf = 1, + /mob/living/simple_mob/vore/greatwolf/black = 1, + /mob/living/simple_mob/vore/greatwolf/grey = 1 + ) = 100, list(/mob/living/simple_mob/animal/space/jelly) = 70, list( /mob/living/simple_mob/otie/feral, @@ -682,12 +733,12 @@ var/global/list/semirandom_mob_spawner_decisions = list() /mob/living/simple_mob/otie/red/chubby ) = 50, list( - /mob/living/simple_mob/shadekin/blue/ai = 100, - /mob/living/simple_mob/shadekin/green/ai = 50, - /mob/living/simple_mob/shadekin/orange/ai = 20, - /mob/living/simple_mob/shadekin/purple/ai = 60, - /mob/living/simple_mob/shadekin/red/ai = 40, - /mob/living/simple_mob/shadekin/yellow/ai = 1 + /mob/living/simple_mob/shadekin/blue = 100, + /mob/living/simple_mob/shadekin/green = 50, + /mob/living/simple_mob/shadekin/orange = 20, + /mob/living/simple_mob/shadekin/purple = 60, + /mob/living/simple_mob/shadekin/red = 40, + /mob/living/simple_mob/shadekin/yellow = 1 ) = 1, list( /mob/living/simple_mob/vore/aggressive/corrupthound, @@ -738,7 +789,8 @@ var/global/list/semirandom_mob_spawner_decisions = list() /mob/living/simple_mob/vore/sect_queen = 1 ) = 50, list(/mob/living/simple_mob/vore/solargrub) = 100, - list(/mob/living/simple_mob/vore/woof) = 1 + list(/mob/living/simple_mob/vore/woof) = 1, + list(/mob/living/simple_mob/vore/alienanimals/teppi) = 25 ) /obj/random/mob/semirandom_mob_spawner/sus diff --git a/code/game/objects/effects/spawners/bombspawner.dm b/code/game/objects/effects/spawners/bombspawner.dm index ef681e5aa4..b3b22fc082 100644 --- a/code/game/objects/effects/spawners/bombspawner.dm +++ b/code/game/objects/effects/spawners/bombspawner.dm @@ -1,110 +1,3 @@ -/* The old single tank bombs that dont really work anymore -/obj/effect/spawner/bomb - name = "bomb" - icon = 'icons/mob/screen1.dmi' - icon_state = "x" - var/btype = 0 //0 = radio, 1= prox, 2=time - var/explosive = 1 // 0= firebomb - var/btemp = 500 // bomb temperature (degC) - var/active = 0 - -/obj/effect/spawner/bomb/radio - btype = 0 - -/obj/effect/spawner/bomb/proximity - btype = 1 - -/obj/effect/spawner/bomb/timer - btype = 2 - -/obj/effect/spawner/bomb/timer/syndicate - btemp = 450 - -/obj/effect/spawner/bomb/suicide - btype = 3 - -/obj/effect/spawner/bomb/New() - ..() - - switch (src.btype) - // radio - if (0) - var/obj/item/assembly/r_i_ptank/R = new /obj/item/assembly/r_i_ptank(src.loc) - var/obj/item/weapon/tank/phoron/p3 = new /obj/item/weapon/tank/phoron(R) - var/obj/item/device/radio/signaler/p1 = new /obj/item/device/radio/signaler(R) - var/obj/item/device/igniter/p2 = new /obj/item/device/igniter(R) - R.part1 = p1 - R.part2 = p2 - R.part3 = p3 - p1.master = R - p2.master = R - p3.master = R - R.status = explosive - p1.b_stat = 0 - p2.secured = 1 - p3.air_contents.temperature = btemp + T0C - - // proximity - if (1) - var/obj/item/assembly/m_i_ptank/R = new /obj/item/assembly/m_i_ptank(src.loc) - var/obj/item/weapon/tank/phoron/p3 = new /obj/item/weapon/tank/phoron(R) - var/obj/item/device/prox_sensor/p1 = new /obj/item/device/prox_sensor(R) - var/obj/item/device/igniter/p2 = new /obj/item/device/igniter(R) - R.part1 = p1 - R.part2 = p2 - R.part3 = p3 - p1.master = R - p2.master = R - p3.master = R - R.status = explosive - - p3.air_contents.temperature = btemp + T0C - p2.secured = 1 - - if(src.active) - R.part1.secured = 1 - R.part1.icon_state = text("motion[]", 1) - R.c_state(1, src) - - // timer - if (2) - var/obj/item/assembly/t_i_ptank/R = new /obj/item/assembly/t_i_ptank(src.loc) - var/obj/item/weapon/tank/phoron/p3 = new /obj/item/weapon/tank/phoron(R) - var/obj/item/device/timer/p1 = new /obj/item/device/timer(R) - var/obj/item/device/igniter/p2 = new /obj/item/device/igniter(R) - R.part1 = p1 - R.part2 = p2 - R.part3 = p3 - p1.master = R - p2.master = R - p3.master = R - R.status = explosive - - p3.air_contents.temperature = btemp + T0C - p2.secured = 1 - //bombvest - if(3) - var/obj/item/clothing/suit/armor/a_i_a_ptank/R = new /obj/item/clothing/suit/armor/a_i_a_ptank(src.loc) - var/obj/item/weapon/tank/phoron/p4 = new /obj/item/weapon/tank/phoron(R) - var/obj/item/device/healthanalyzer/p1 = new /obj/item/device/healthanalyzer(R) - var/obj/item/device/igniter/p2 = new /obj/item/device/igniter(R) - var/obj/item/clothing/suit/armor/vest/p3 = new /obj/item/clothing/suit/armor/vest(R) - R.part1 = p1 - R.part2 = p2 - R.part3 = p3 - R.part4 = p4 - p1.master = R - p2.master = R - p3.master = R - p4.master = R - R.status = explosive - - p4.air_contents.temperature = btemp + T0C - p2.secured = 1 - - qdel(src) -*/ - /client/proc/spawn_tanktransferbomb() set category = "Debug" set desc = "Spawn a tank transfer valve bomb" diff --git a/code/game/objects/items.dm b/code/game/objects/items.dm index c8c7dbbbfc..02dd0426fb 100644 --- a/code/game/objects/items.dm +++ b/code/game/objects/items.dm @@ -4,6 +4,8 @@ w_class = ITEMSIZE_NORMAL blocks_emissive = EMISSIVE_BLOCK_GENERIC + //matter = list(MAT_STEEL = 1) + var/image/blood_overlay = null //this saves our blood splatter overlay, which will be processed not to go over the edges of the sprite var/randpixel = 6 var/abstract = 0 @@ -171,27 +173,12 @@ switch(severity) if(1.0) qdel(src) - return if(2.0) if (prob(50)) qdel(src) - return if(3.0) if (prob(5)) qdel(src) - return - else - return - -//user: The mob that is suiciding -//damagetype: The type of damage the item will inflict on the user -//BRUTELOSS = 1 -//FIRELOSS = 2 -//TOXLOSS = 4 -//OXYLOSS = 8 -//Output a creative message and then return the damagetype done -/obj/item/proc/suicide_act(mob/user) - return /obj/item/verb/move_to_top() set name = "Move To Top" @@ -247,7 +234,7 @@ var/obj/item/weapon/storage/S = src.loc if(!S.remove_from_storage(src)) return - + src.pickup(user) src.throwing = 0 if (src.loc == user) @@ -256,7 +243,7 @@ else if(isliving(src.loc)) return - + if(user.put_in_active_hand(src)) if(isturf(old_loc)) var/obj/effect/temporary_effect/item_pickup_ghost/ghost = new(old_loc) @@ -352,9 +339,9 @@ if(user.pulling == src) user.stop_pulling() if((slot_flags & slot)) if(equip_sound) - playsound(src, equip_sound, 30) + playsound(src, equip_sound, 20) else - playsound(src, drop_sound, 30) + playsound(src, drop_sound, 20) else if(slot == slot_l_hand || slot == slot_r_hand) playsound(src, pickup_sound, 20, preference = /datum/client_preference/pickup_sounds) return @@ -830,7 +817,7 @@ modules/mob/living/carbon/human/life.dm if you die, you will be zoomed out. if(!inhands) apply_blood(standing) //Some items show blood when bloodied apply_accessories(standing) //Some items sport accessories like webbing - + //Apply overlays to our...overlay apply_overlays(standing) @@ -952,6 +939,7 @@ modules/mob/living/carbon/human/life.dm if you die, you will be zoomed out. #define CELLS 8 //Amount of cells per row/column in grid #define CELLSIZE (world.icon_size/CELLS) //Size of a cell in pixels + /* Automatic alignment of items to an invisible grid, defined by CELLS and CELLSIZE. Since the grid will be shifted to own a cell that is perfectly centered on the turf, we end up with two 'cell halves' @@ -966,7 +954,7 @@ Note: This proc can be overwritten to allow for different types of auto-alignmen /obj/item/var/list/center_of_mass = list("x" = 16,"y" = 16) -/proc/auto_align(obj/item/W, click_parameters) +/proc/auto_align(obj/item/W, click_parameters, var/animate = FALSE) if(!W.center_of_mass) W.randpixel_xy() return @@ -983,8 +971,20 @@ Note: This proc can be overwritten to allow for different types of auto-alignmen var/cell_x = max(0, min(CELLS-1, round(mouse_x/CELLSIZE))) var/cell_y = max(0, min(CELLS-1, round(mouse_y/CELLSIZE))) - W.pixel_x = (CELLSIZE * (0.5 + cell_x)) - W.center_of_mass["x"] - W.pixel_y = (CELLSIZE * (0.5 + cell_y)) - W.center_of_mass["y"] + var/target_x = (CELLSIZE * (0.5 + cell_x)) - W.center_of_mass["x"] + var/target_y = (CELLSIZE * (0.5 + cell_y)) - W.center_of_mass["y"] + if(animate) + var/dist_x = abs(W.pixel_x - target_x) + var/dist_y = abs(W.pixel_y - target_y) + var/dist = sqrt((dist_x*dist_x)+(dist_y*dist_y)) + animate(W, pixel_x=target_x, pixel_y=target_y,time=dist*0.5) + else + W.pixel_x = target_x + W.pixel_y = target_y #undef CELLS -#undef CELLSIZE \ No newline at end of file +#undef CELLSIZE + +// this gets called when the item gets chucked by the vending machine +/obj/item/proc/vendor_action(var/obj/machinery/vending/V) + return diff --git a/code/game/objects/items/apc_frame.dm b/code/game/objects/items/apc_frame.dm index 8af1c01a2a..ca3f7241c3 100644 --- a/code/game/objects/items/apc_frame.dm +++ b/code/game/objects/items/apc_frame.dm @@ -6,6 +6,8 @@ icon = 'icons/obj/apc_repair.dmi' icon_state = "apc_frame" refund_amt = 2 + build_wall_only = TRUE + matter = list(MAT_STEEL = 100, MAT_GLASS = 30) /obj/item/frame/apc/try_build(turf/on_wall, mob/user as mob) if (get_dist(on_wall, user)>1) @@ -29,8 +31,7 @@ to_chat(user, "There is another network terminal here.") return else - var/obj/item/stack/cable_coil/C = new /obj/item/stack/cable_coil(loc) - C.amount = 10 + new /obj/item/stack/cable_coil(loc, 10) to_chat(user, "You cut the cables and disassemble the unused power terminal.") qdel(T) new /obj/machinery/power/apc(loc, ndir, 1) diff --git a/code/game/objects/items/bells.dm b/code/game/objects/items/bells.dm index c05c7d2686..e9219957e4 100644 --- a/code/game/objects/items/bells.dm +++ b/code/game/objects/items/bells.dm @@ -6,6 +6,7 @@ force = 2 throwforce = 2 w_class = 2.0 + matter = list(MAT_STEEL = 50) var/broken attack_verb = list("annoyed") var/static/radial_examine = image(icon = 'icons/mob/radial.dmi', icon_state = "radial_examine") diff --git a/code/game/objects/items/devices/denecrotizer_vr.dm b/code/game/objects/items/devices/denecrotizer_vr.dm index 8aeaba5b0d..4a6160b242 100644 --- a/code/game/objects/items/devices/denecrotizer_vr.dm +++ b/code/game/objects/items/devices/denecrotizer_vr.dm @@ -43,7 +43,9 @@ /mob/living/simple_mob/attack_ghost(mob/observer/dead/user as mob) if(!ghostjoin) return ..() - + if(jobban_isbanned(user, "GhostRoles")) + to_chat(user, "You cannot inhabit this creature because you are banned from playing ghost roles.") + return if(!evaluate_ghost_join(user)) return ..() @@ -74,6 +76,10 @@ // Clean up the simplemob ghostjoin = FALSE ghostjoin_icon() + if(capture_caught) + to_chat(src, "You are bound to [revivedby], follow their commands within reason and to the best of your abilities, and avoid betraying or abandoning them. You are allied with [revivedby]. Do not attack anyone for no reason. Of course, you may do scenes as you like, but you must still respect preferences.") + visible_message("[src]'s eyes flicker with a curious intelligence.", runemessage = "looks around") + return if(revivedby != "no one") to_chat(src, "Where once your life had been rough and scary, you have been assisted by [revivedby]. They seem to be the reason you are on your feet again... so perhaps you should help them out. Being as you were revived, you are allied with the station. Do not attack anyone unless they are threatening the one who revived you. And try to listen to the one who revived you within reason. Of course, you may do scenes as you like, but you must still respect preferences.") visible_message("[src]'s eyes flicker with a curious intelligence.", runemessage = "looks around") @@ -93,6 +99,10 @@ to_chat(D, "Sorry, someone else has already inhabited [src].") return FALSE + if(capture_caught && !D.client.prefs.capture_crystal) + to_chat(D, "Sorry, [src] is participating in capture mechanics, and your preferences do not allow for that.") + return FALSE + // Insert whatever ban checks you want here if we ever add simplemob bans return TRUE diff --git a/code/game/objects/items/devices/flashlight.dm b/code/game/objects/items/devices/flashlight.dm index 9595f1ba80..3b20ccbb5c 100644 --- a/code/game/objects/items/devices/flashlight.dm +++ b/code/game/objects/items/devices/flashlight.dm @@ -1,3 +1,16 @@ +/* + * Contains: + * Flashlights + * Lamps + * Flares + * Chemlights + * Slime Extract + */ + +/* + * Flashlights + */ + /obj/item/device/flashlight name = "flashlight" desc = "A hand-held emergency light." @@ -7,15 +20,15 @@ slot_flags = SLOT_BELT matter = list(MAT_STEEL = 50,MAT_GLASS = 20) action_button_name = "Toggle Flashlight" - + light_system = MOVABLE_LIGHT_DIRECTIONAL light_range = 4 //luminosity when on light_power = 0.8 //lighting power when on light_color = "#FFFFFF" //LIGHT_COLOR_INCANDESCENT_FLASHLIGHT //lighting colour when on light_cone_y_offset = -7 - + var/on = 0 - + var/obj/item/weapon/cell/cell var/cell_type = /obj/item/weapon/cell/device var/power_usage = 1 @@ -26,7 +39,7 @@ if(power_use && cell_type) cell = new cell_type(src) - + update_brightness() /obj/item/device/flashlight/Destroy() @@ -232,24 +245,34 @@ w_class = ITEMSIZE_TINY power_use = 0 -/obj/item/device/flashlight/color //Default color is blue, just roll with it. +/obj/item/device/flashlight/color //Default color is blue name = "blue flashlight" - desc = "A hand-held emergency light. This one is blue." + desc = "A small flashlight. This one is blue." icon_state = "flashlight_blue" +/obj/item/device/flashlight/color/green + name = "green flashlight" + desc = "A small flashlight. This one is green." + icon_state = "flashlight_green" + +/obj/item/device/flashlight/color/purple + name = "purple flashlight" + desc = "A small flashlight. This one is purple." + icon_state = "flashlight_purple" + /obj/item/device/flashlight/color/red name = "red flashlight" - desc = "A hand-held emergency light. This one is red." + desc = "A small flashlight. This one is red." icon_state = "flashlight_red" /obj/item/device/flashlight/color/orange name = "orange flashlight" - desc = "A hand-held emergency light. This one is orange." + desc = "A small flashlight. This one is orange." icon_state = "flashlight_orange" /obj/item/device/flashlight/color/yellow name = "yellow flashlight" - desc = "A hand-held emergency light. This one is yellow." + desc = "A small flashlight. This one is yellow." icon_state = "flashlight_yellow" /obj/item/device/flashlight/maglight @@ -273,7 +296,11 @@ w_class = ITEMSIZE_TINY power_use = 0 -// the desk lamps are a bit special +/* + * Lamps + */ + +// pixar desk lamp /obj/item/device/flashlight/lamp name = "desk lamp" desc = "A desk lamp with an adjustable mount." @@ -286,14 +313,6 @@ on = 1 light_system = STATIC_LIGHT - -// green-shaded desk lamp -/obj/item/device/flashlight/lamp/green - desc = "A classic green-shaded desk lamp." - icon_state = "lampgreen" - center_of_mass = list("x" = 15,"y" = 11) - light_color = "#FFC58F" - /obj/item/device/flashlight/lamp/verb/toggle_light() set name = "Toggle light" set category = "Object" @@ -302,7 +321,23 @@ if(!usr.stat) attack_self(usr) -// FLARES +// green-shaded desk lamp +/obj/item/device/flashlight/lamp/green + desc = "A classic green-shaded desk lamp." + icon_state = "lampgreen" + center_of_mass = list("x" = 15,"y" = 11) + light_color = "#FFC58F" + +// clown lamp +/obj/item/device/flashlight/lamp/clown + desc = "A whacky banana peel shaped lamp." + icon_state = "bananalamp" + center_of_mass = list("x" = 15,"y" = 11) + + +/* + * Flares + */ /obj/item/device/flashlight/flare name = "flare" @@ -368,18 +403,20 @@ START_PROCESSING(SSobj, src) return 1 -//Glowsticks +/* + * Chemlights + */ /obj/item/device/flashlight/glowstick name = "green glowstick" - desc = "A green military-grade glowstick." + desc = "A green military-grade chemical light." w_class = ITEMSIZE_SMALL light_system = MOVABLE_LIGHT light_range = 4 light_power = 0.9 light_color = "#49F37C" - icon_state = "glowstick" - item_state = "glowstick" + icon_state = "glowstick_green" + item_state = "glowstick_green" var/fuel = 0 power_use = 0 @@ -414,32 +451,45 @@ /obj/item/device/flashlight/glowstick/red name = "red glowstick" - desc = "A red military-grade glowstick." + desc = "A red military-grade chemical light." light_color = "#FC0F29" icon_state = "glowstick_red" item_state = "glowstick_red" /obj/item/device/flashlight/glowstick/blue name = "blue glowstick" - desc = "A blue military-grade glowstick." + desc = "A blue military-grade chemical light." light_color = "#599DFF" icon_state = "glowstick_blue" item_state = "glowstick_blue" /obj/item/device/flashlight/glowstick/orange name = "orange glowstick" - desc = "A orange military-grade glowstick." + desc = "A orange military-grade chemical light." light_color = "#FA7C0B" icon_state = "glowstick_orange" item_state = "glowstick_orange" /obj/item/device/flashlight/glowstick/yellow name = "yellow glowstick" - desc = "A yellow military-grade glowstick." + desc = "A yellow military-grade chemical light." light_color = "#FEF923" icon_state = "glowstick_yellow" item_state = "glowstick_yellow" +/obj/item/device/flashlight/glowstick/radioisotope + name = "radioisotope glowstick" + desc = "A radioisotope powered chemical light. Escaping particles light up the area far brighter on similar levels to flares and for longer" + icon_state = "glowstick_isotope" + item_state = "glowstick_isotope" + + light_range = 8 + light_power = 0.1 + light_color = "#49F37C" + +/* + * Slime Extract + */ /obj/item/device/flashlight/slime gender = PLURAL diff --git a/code/game/objects/items/devices/flashlight_vr.dm b/code/game/objects/items/devices/flashlight_vr.dm deleted file mode 100644 index 876dddc76d..0000000000 --- a/code/game/objects/items/devices/flashlight_vr.dm +++ /dev/null @@ -1,9 +0,0 @@ -/obj/item/device/flashlight/glowstick/radioisotope - name = "radioisotope glowstick" - desc = "A radioisotope powered glowstick. Escaping particles light up the area far brighter on similar levels to flares and for longer" - icon_state = "glowstick_blue" - item_state = "glowstick_blue" - - light_range = 8 - light_power = 0.1 - light_color = "#599DFF" diff --git a/code/game/objects/items/devices/radio/headset.dm b/code/game/objects/items/devices/radio/headset.dm index 22cfcad31d..a7ba535c3b 100644 --- a/code/game/objects/items/devices/radio/headset.dm +++ b/code/game/objects/items/devices/radio/headset.dm @@ -16,7 +16,7 @@ var/obj/item/device/encryptionkey/keyslot2 = null var/ks1type = null var/ks2type = null - + drop_sound = 'sound/items/drop/component.ogg' pickup_sound = 'sound/items/pickup/component.ogg' @@ -62,10 +62,12 @@ /obj/item/device/radio/headset/receive_range(freq, level, aiOverride = 0) if (aiOverride) + playsound(loc, 'sound/effects/radio_common.ogg', 20, 1, 1, preference = /datum/client_preference/radio_sounds) return ..(freq, level) if(ishuman(src.loc)) var/mob/living/carbon/human/H = src.loc if(H.l_ear == src || H.r_ear == src) + playsound(loc, 'sound/effects/radio_common.ogg', 20, 1, 1, preference = /datum/client_preference/radio_sounds) return ..(freq, level) return -1 diff --git a/code/game/objects/items/devices/translocator_vr.dm b/code/game/objects/items/devices/translocator_vr.dm index 5cf4f70038..02089da037 100644 --- a/code/game/objects/items/devices/translocator_vr.dm +++ b/code/game/objects/items/devices/translocator_vr.dm @@ -409,7 +409,7 @@ GLOBAL_LIST_BOILERPLATE(premade_tele_beacons, /obj/item/device/perfect_tele_beac if(confirm == "Eat it!") var/obj/belly/bellychoice = tgui_input_list(usr, "Which belly?","Select A Belly", L.vore_organs) if(bellychoice) - user.visible_message("[user] is trying to stuff \the [src] into [user.gender == MALE ? "his" : user.gender == FEMALE ? "her" : "their"] [bellychoice]!","You begin putting \the [src] into your [bellychoice]!") + user.visible_message("[user] is trying to stuff \the [src] into [user.gender == MALE ? "his" : user.gender == FEMALE ? "her" : "their"] [bellychoice.name]!","You begin putting \the [src] into your [bellychoice.name]!") if(do_after(user,5 SECONDS,src)) user.unEquip(src) forceMove(bellychoice) diff --git a/code/game/objects/items/magazine.dm b/code/game/objects/items/magazine.dm new file mode 100644 index 0000000000..59640c4c01 --- /dev/null +++ b/code/game/objects/items/magazine.dm @@ -0,0 +1,97 @@ +/obj/item/tabloid + name = "tabloid magazine" + desc = "It's one of those trashy tabloid magazines. It looks pretty out of date." + icon = 'icons/obj/magazine.dmi' + icon_state = "magazine" + + var/headline + var/static/list/tabloid_states = icon_states('icons/obj/magazine.dmi') + var/static/list/tabloid_publishers = list( + "\improper Solar Enquirer", + "\improper Stellar Examiner", + "\improper Antares Daily", + "\improper Weekly Galactic News", + "\improper Spiral" + ) + + var/static/list/tabloid_headlines = list( + "NARCOALGORITHMS: ARE YOUR CHILDREN SAFE?", + "ARE GMO HUMANS POISONOUS IN BED?", + "TOP 10 REASONS WHY OTHER SPECIES ARE A HOAX", + "CENTENNIAL POSITRONIC EXTENDS LIFESPAN WITH 1 SIMPLE TRICK", + "TOP 10 DANGEROUS FOODS WITH CHEMICALS", + "NEW TERRIFYING TEEN TREND: SUN-DIVING", + "HAS YOUR SPOUSE BEEN REPLACED BY AN ALIEN IMPOSTER? STUDIES SUGGEST YES!", + "SPACE CAUSES CANCER: DOCTORS CONFIRM", + "ARE BODY SCANNERS TOO INVASIVE? FIND OUT INSIDE!", + "HAS SCIENCE GONE TOO FAR? LOCAL SCIENTIST DEBUNKS ALIEN THEORY, DECRIES THEM AS TUBE EXPERIMENTS GONE WRONG", + "100 DELICIOUS RECIPES LETHAL TO CARBON-BASED LIFE", + "TOP FIVE SPECIES WE DROVE TO EXTINCTION; NUMBER TWO WILL SHOCK YOU", + "LOCAL MAN HAS SEIZURE AFTER SAYING SKRELLIAN NAME; FORCED ASSIMILATION SOON?", + "RELIGION WAS RIGHT? SHOCK FINDINGS SHOW ALIEN SIMILARITY TO ANIMALS, EXISTENCE OF BOATS", + "TOP TEN REASONS WHY ONLY HUMANS ARE SENTIENT", + "LOCAL UNATHI SYMPATHIZER: 'I really think you should stop with these spacebaiting articles.'", + "DO UNATHI SYMPATHIZERS HATE THE HUMAN RACE?", + "WHICH PLANET HAS THE BEST LOVERS? THIS AND MORE INSIDE!", + "SHE SAID WE SHOULD SEE OTHER PEOPLE, SO I MARRIED A TESHARI PACK: FULL STORY INSIDE", + "LOSE WEIGHT THREE TIMES FASTER WITH THESE LOW-G MANEUVERS!", + "SHOCKING FIGURES REVEAL MORE TEENS DIE TO UNATHI HONOUR DUELS THAN GUN VIOLENCE", + "MY DAUGHTER JOINED A NEURAL COLLECTIVE AND NOW SHE CAN TASTE SPACETIME: FULL STORY INSIDE", + "WERE THE NAZIS PSYCHIC? ONE HISTORIAN TELLS ALL", + "TAJARANS: CUTE AND CUDDLY, OR INFILTRATING THE GOVERNMENT? FIND OUT MORE INSIDE", + "IS THE SOLAR GOVERNMENT CREATING AN AI SUPERINTELLIGENCE NEAR MERCURY? ONE EXPERT REVEALS SHOCKING INSIDER DETAILS!", + "TOP TEN HISTORICAL FIGURES THAT WERE TWO PROMETHEANS IN A TRENCHCOAT", + "ZADDAT: FACT OR FICTION?", + "TOP 10 SECRET AUGMENTS THE GOVERNMENT DOESN'T WANT YOU TO GET", + "ENLARGE YOUR MENTAL FACULTIES WITH THIS 1 WEIRD HAT", + "'HELP, MY SON THINKS HE'S A 20TH CENTURY VID CHARACTER CALLED SPOCK' AND MORE SHOCKING TALES INSIDE", + "18 RADICAL HIP IMPLANTS ALL THE KIDS ARE GETTING!", + "PRESERVED HEAD OF 21ST CENTURY CAPITALIST INSISTS THAT 'DYSON WALL' ONLY SANE SOLUTION TO RIMWARD MALCONTENTS", + "50 SHADES OF GREEN; BESTSELLING MULTISPECIES ROMANCE COMING TO CINEMAS", + "PLUTO: DWARF PLANET, OR SECRET RAMPANT AI FACILITY HELL-BENT ON CORRUPTING YOUR CHILDREN?", + "TOP TEN ANIME ALIENS. NUMBER 3 WILL SICKEN YOU", + "OCTUBER X'RALLBRE EXPOSED; NUDE PHOTOSHOOT LEAKS", + "WAR ON MARS AFTER NAKED MAN WAS FOUND; WERE THE ROMANS RIGHT?", + "REAL ALIENS ARGUE EARTH MOVIES RACIST!", + "HELP! I MARRIED A HEGEMONOUS SWARM INTELLIGENCE AND MY SON THINKS HE'S A ROUTER!", + "POSITRONICS: HUMAN INGENUITY AND GENEROSITY, OR A HORRIBLE MISTAKE? FIND OUT INSIDE!", + "TENTACLES OF TERROR: SKRELL BLACK OPS SEIGE NYX NAVAL DEPOT. SHOCKING PHOTOGRAPHS INSIDE!", + "THE FREE TRADER UNION: NEITHER FREE NOR A UNION. SHOCKING EXPOSE!", + "HAS THE FREE MARKET GONE TOO FAR? LUNA GLITTERPOP STAR AUCTIONS THIRD TESTICLE FOR TRANS-ORBITAL SHIPPING BONDS", + "THEY SAID IT WAS CANCER, BUT I KNEW IT WAS A TINY, SELF-REPLICATING CLONE OF RAY KURZWEIL: FULL STORY INSIDE", + "WHAT HAS TECHNOLOGY DONE? INDUSTRY BILLIONAIRE MARRIES OWN INFORMORPH MIND-COPY", + "REPTILLIAN ICE WARRIORS FROM ANOTHER WORLD LIVE INSIDE YOUR AIR DUCTS: HERE'S HOW TO GET RID OF THEM", + "10 CRITICAL THINGS YOU NEED TO KNOW ABOUT 'DRONEGATE'", + "THEY CALL THEM JUMPGATES BUT I'VE NEVER SEEN THEM JUMP: AN INDUSTRY INSIDER SPEAKS FOR THE FIRST TIME", + "EMERGENT INTELLIGENCES ARE STEALING YOUR BANK DETAILS, FETISHES: FOIL HAT RECIPE INSIDE", + "TIME TRAVELLERS ARE STEALING YOUR WIFI: 5 TIPS FOR DEFEATING HACKERS FROM THE FUTURE", + "'My mother was an alien spy': THIS CELEBRITY REVEAL WILL SHOCK AND AMAZE YOU", + "LUMINARY SCIENTIST SPEAKS: DIABETES IS A HYPERCORP RETROVIRUS!", + "'I REROUTED MY NEURAL CIRCUITRY SO THAT PAIN TASTES OF STRAWBERRIES' AND FIFTEEN OTHER CRAZY ALMACH STORIES", + "JOINING THE NAVY? HERE'S 15 EXPERT TIPS FOR AVOIDING BRAIN PARASITES" + ) + +/obj/item/tabloid/Initialize() + . = ..() + + pixel_x = 5-rand(10) + pixel_x = 5-rand(10) + + icon_state = pick(tabloid_states) + headline = pick(tabloid_headlines) + name = pick(tabloid_publishers) + +/obj/item/tabloid/examine(mob/user, distance) + . = ..() + if(headline) + to_chat(user, "The headline screams, \"[headline]\"") + +/obj/item/tabloid/attack_self(mob/user) + user.visible_message(SPAN_NOTICE("\The [user] leafs idly through \the [src].")) + if(headline) + to_chat(user, "Most of it is the usual tabloid garbage, but the headline story, \"[headline]\", holds your attention for awhile.") + if(tabloid_headlines[headline]) + to_chat(user, tabloid_headlines[headline]) + else + to_chat(user, "Most of it is the usual tabloid garbage. You find nothing of interest.") + return TRUE diff --git a/code/game/objects/items/paintkit.dm b/code/game/objects/items/paintkit.dm index 45430a41c9..f172326fce 100644 --- a/code/game/objects/items/paintkit.dm +++ b/code/game/objects/items/paintkit.dm @@ -259,6 +259,17 @@ new_desc = "A very retro APLU unit; didn't they retire these back in 2543?" new_icon = "ripley-old" allowed_types = list("ripley") + var/showpilot = TRUE + var/showpilot_lift = 5 + +/obj/item/device/kit/paint/ripley/customize(obj/mecha/M, mob/user) + if(showpilot) + M.show_pilot = TRUE + M.pilot_lift = 5 + else + M.show_pilot = FALSE + M.pilot_lift = 0 + . = ..() /obj/item/device/kit/paint/ripley/death name = "\"Reaper\" APLU customisation kit" @@ -266,18 +277,21 @@ new_desc = "A terrifying, grim power loader. Why do those clamps have spikes?" new_icon = "deathripley" allowed_types = list("ripley","firefighter") + showpilot = FALSE /obj/item/device/kit/paint/ripley/flames_red name = "\"Firestarter\" APLU customisation kit" new_name = "APLU \"Firestarter\"" new_desc = "A standard APLU exosuit with stylish orange flame decals." new_icon = "ripley_flames_red" + showpilot = FALSE /obj/item/device/kit/paint/ripley/flames_blue name = "\"Burning Chrome\" APLU customisation kit" new_name = "APLU \"Burning Chrome\"" new_desc = "A standard APLU exosuit with stylish blue flame decals." new_icon = "ripley_flames_blue" + showpilot = FALSE // Durand kits. /obj/item/device/kit/paint/durand diff --git a/code/game/objects/items/robot/robot_upgrades_vr.dm b/code/game/objects/items/robot/robot_upgrades_vr.dm index b31f737e78..215a936bda 100644 --- a/code/game/objects/items/robot/robot_upgrades_vr.dm +++ b/code/game/objects/items/robot/robot_upgrades_vr.dm @@ -8,6 +8,7 @@ R.add_language(LANGUAGE_ENOCHIAN, 1) R.add_language(LANGUAGE_SLAVIC, 1) R.add_language(LANGUAGE_DRUDAKAR, 1) + R.add_language(LANGUAGE_TAVAN, 1) return 1 else return 0 diff --git a/code/game/objects/items/stacks/marker_beacons.dm b/code/game/objects/items/stacks/marker_beacons.dm index 1340418249..bbedcc2255 100644 --- a/code/game/objects/items/stacks/marker_beacons.dm +++ b/code/game/objects/items/stacks/marker_beacons.dm @@ -127,7 +127,7 @@ var/list/marker_beacon_colors = list( if(istype(I, /obj/item/stack/marker_beacon)) var/obj/item/stack/marker_beacon/M = I to_chat(user, "You start picking [src] up...") - if(do_after(user, remove_speed, target = src) && M.amount + 1 <= M.max_amount) + if(do_after(user, remove_speed, target = src) && M.get_amount() + 1 <= M.max_amount) M.add(1) playsound(src, 'sound/items/deconstruct.ogg', 50, 1) qdel(src) diff --git a/code/game/objects/items/stacks/stack.dm b/code/game/objects/items/stacks/stack.dm index b014c1810f..2ea9ad0667 100644 --- a/code/game/objects/items/stacks/stack.dm +++ b/code/game/objects/items/stacks/stack.dm @@ -17,7 +17,7 @@ center_of_mass = null var/list/datum/stack_recipe/recipes var/singular_name - var/amount = 1 + VAR_PROTECTED/amount = 1 var/max_amount //also see stack recipes initialisation, param "max_res_amount" must be equal to this max_amount var/stacktype //determines whether different stack types can merge var/build_type = null //used when directly applied to a turf @@ -29,12 +29,19 @@ var/pass_color = FALSE // Will the item pass its own color var to the created item? Dyed cloth, wood, etc. var/strict_color_stacking = FALSE // Will the stack merge with other stacks that are different colors? (Dyed cloth, wood, etc) -/obj/item/stack/Initialize(var/ml, var/amount) +/obj/item/stack/Initialize(var/ml, var/starting_amount) . = ..() if(!stacktype) stacktype = type - if(amount) - src.amount = amount + if(!isnull(starting_amount)) // Could be 0 + // Negative numbers are 'give full stack', like -1 + if(starting_amount < 0) + // But sometimes a coder forgot to define what that even means + if(max_amount) + starting_amount = max_amount + else + starting_amount = 1 + set_amount(starting_amount, TRUE) update_icon() /obj/item/stack/Destroy() @@ -229,12 +236,15 @@ //Return 1 if an immediate subsequent call to use() would succeed. //Ensures that code dealing with stacks uses the same logic /obj/item/stack/proc/can_use(var/used) - if (get_amount() < used) + if(used < 0 || used % 1) + stack_trace("Tried to use a bad stack amount: [used]") + return 0 + if(get_amount() < used) return 0 return 1 /obj/item/stack/proc/use(var/used) - if (!can_use(used)) + if(!can_use(used)) return 0 if(!uses_charge) amount -= used @@ -251,6 +261,9 @@ return 1 /obj/item/stack/proc/add(var/extra) + if(extra < 0 || extra % 1) + stack_trace("Tried to add a bad stack amount: [extra]") + return 0 if(!uses_charge) if(amount + extra > get_max_amount()) return 0 @@ -265,6 +278,27 @@ var/datum/matter_synth/S = synths[i] S.add_charge(charge_costs[i] * extra) +/obj/item/stack/proc/set_amount(var/new_amount, var/no_limits = FALSE) + if(new_amount < 0 || new_amount % 1) + stack_trace("Tried to set a bad stack amount: [new_amount]") + return 0 + + // Clean up the new amount + new_amount = max(round(new_amount), 0) + + // Can exceed max if you really want + if(new_amount > max_amount && !no_limits) + new_amount = max_amount + + amount = new_amount + + // Can set it to 0 without qdel if you really want + if(amount == 0 && !no_limits) + qdel(src) + return FALSE + + return TRUE + /* The transfer and split procs work differently than use() and add(). Whereas those procs take no action if the desired amount cannot be added or removed these procs will try to transfer whatever they can. @@ -282,6 +316,10 @@ if (isnull(tamount)) tamount = src.get_amount() + + if(tamount < 0 || tamount % 1) + stack_trace("Tried to transfer a bad stack amount: [tamount]") + return 0 var/transfer = max(min(tamount, src.get_amount(), (S.get_max_amount() - S.get_amount())), 0) @@ -302,7 +340,10 @@ if(uses_charge) return null - tamount = round(tamount) + if(tamount < 0 || tamount % 1) + stack_trace("Tried to split a bad stack amount: [tamount]") + return null + var/transfer = max(min(tamount, src.amount, initial(max_amount)), 0) var/orig_amount = src.amount diff --git a/code/game/objects/items/toys/mech_toys.dm b/code/game/objects/items/toys/mech_toys.dm index cbc7baf9f4..3fdb9c6659 100644 --- a/code/game/objects/items/toys/mech_toys.dm +++ b/code/game/objects/items/toys/mech_toys.dm @@ -2,7 +2,7 @@ * Mech toys (previously labeled prizes, but that's unintuitive) * Mech toy combat */ - + // Mech battle special attack types. #define SPECIAL_ATTACK_HEAL 1 #define SPECIAL_ATTACK_DAMAGE 2 @@ -17,7 +17,7 @@ icon_state = "ripleytoy" drop_sound = 'sound/mecha/mechstep.ogg' reach = 2 // So you can battle across the table! - + // Mech Battle Vars var/timer = 0 // Timer when it'll be off cooldown var/cooldown = 1.5 SECONDS // Cooldown between play sessions (and interactions) @@ -34,7 +34,7 @@ var/special_attack_cooldown = 0 // Current cooldown of their special attack var/wins = 0 // This mech's win count in combat var/losses = 0 // ...And their loss count in combat - + /obj/item/toy/mecha/Initialize() . = ..() desc = "Mini-Mecha action figure! Collect them all! Attack your friends or another mech with one to initiate epic mech combat! [desc]." @@ -58,12 +58,11 @@ return 0 //not in range and not telekinetic /** - * this proc combines "sleep" while also checking for if the battle should continue + * this proc combines "sleep" while also checking for if the battle should continue * * this goes through some of the checks - the toys need to be next to each other to fight! * if it's player vs themself: They need to be able to "control" both mechs (either must be adjacent or using TK). * if it's player vs player: Both players need to be able to "control" their mechs (either must be adjacent or using TK). - * if it's player vs mech (suicide): the mech needs to be in range of the player. * if all the checks are TRUE, it does the sleeps, and returns TRUE. Otherwise, it returns FALSE. * Arguments: * * delay - the amount of time the sleep at the end of the check will sleep for @@ -113,7 +112,7 @@ // If all that is good, then we can sleep peacefully. sleep(delay) return TRUE - + //all credit to skasi for toy mech fun ideas /obj/item/toy/mecha/attack_self(mob/user) if(timer < world.time) @@ -131,15 +130,15 @@ attack_self(user) /** - * If you attack a mech with a mech, initiate combat between them + * If you attack a mech with a mech, initiate combat between them */ /obj/item/toy/mecha/attackby(obj/item/user_toy, mob/living/user) - if(istype(user_toy, /obj/item/toy/mecha)) + if(istype(user_toy, /obj/item/toy/mecha)) var/obj/item/toy/mecha/M = user_toy if(check_battle_start(user, M)) mecha_brawl(M, user) ..() - + /** * Attack is called from the user's toy, aimed at target(another human), checking for target's toy. */ @@ -196,48 +195,6 @@ if(wants_to_battle) wants_to_battle = FALSE to_chat(user, "You get the feeling they don't want to battle.") -/** - * Starts a battle, toy mech vs player. Player... doesn't win. Commented out for now as suicide_act is not physically doable. - */ -/obj/item/toy/mecha/suicide_act(mob/living/carbon/user) - if(in_combat) - to_chat(user, "[src] is in battle, let it finish first.") - return - - var/datum/gender/T = gender_datums[user.get_visible_gender()] - user.visible_message("[user] begins a fight [T.His] can't win with [src]! It looks like [T.His] trying to commit suicide!") - - in_combat = TRUE - sleep(1.5 SECONDS) - for(var/i in 1 to 4) - switch(i) - if(1, 3) - SpinAnimation(5, 0) - playsound(src, 'sound/mecha/mechstep.ogg', 30, TRUE) - user.adjustBruteLoss(25) - if(2) - user.SpinAnimation(5, 0) - playsound(user, 'sound/weapons/smash.ogg', 20, TRUE) - combat_health-- //we scratched it! - if(4) - visible_message(special_attack_cry + "!!") - - if(!combat_sleep(1 SECONDS, null, user)) - visible_message("PATHETIC.") - combat_health = max_combat_health - in_combat = FALSE - return (BRUTELOSS) - - sleep(0.5 SECONDS) - user.adjustBruteLoss(450) - - in_combat = FALSE - visible_message("AN EASY WIN. MY POWER INCREASES.") // steal a soul, become swole - color= "#ff7373" - max_combat_health = round(max_combat_health*1.5 + 0.1) - combat_health = max_combat_health - wins++ - return (BRUTELOSS) /obj/item/toy/mecha/examine() . = ..() @@ -284,9 +241,9 @@ sleep(1 SECONDS) //--THE BATTLE BEGINS-- - while(combat_health > 0 && attacker.combat_health > 0 && battle_length < MAX_BATTLE_LENGTH) + while(combat_health > 0 && attacker.combat_health > 0 && battle_length < MAX_BATTLE_LENGTH) if(!combat_sleep(0.5 SECONDS, attacker, attacker_controller, opponent)) //combat_sleep checks everything we need to have checked for combat to continue - break + break //before we do anything - deal with charged attacks if(special_attack_charged) @@ -312,7 +269,7 @@ attacker.special_attack_charged = TRUE attacker_controller.visible_message(" [attacker] begins charging its special attack!! ", \ " You begin charging [attacker]'s special attack! ") - else //just attack + else //just attack attacker.SpinAnimation(5, 0) playsound(attacker, 'sound/mecha/mechstep.ogg', 30, TRUE) combat_health-- @@ -365,7 +322,7 @@ special_attack_charged = TRUE src_controller.visible_message(" [src] begins charging its special attack!! ", \ " You begin charging [src]'s special attack! ") - else //just attack + else //just attack SpinAnimation(5, 0) playsound(src, 'sound/mecha/mechstep.ogg', 30, TRUE) attacker.combat_health-- @@ -376,12 +333,12 @@ attacker.combat_health-- playsound(attacker, 'sound/effects/meteorimpact.ogg', 20, TRUE) src_controller.visible_message(" ...and lands a CRIPPLING BLOW! ", \ - " ...and you land a CRIPPLING blow on [attacker]! ", null) + " ...and you land a CRIPPLING blow on [attacker]! ", null) else attacker_controller.visible_message(" [src] and [attacker] stand around awkwardly.", \ - " You don't know what to do next.") + " You don't know what to do next.") - battle_length++ + battle_length++ sleep(0.5 SECONDS) /// Lines chosen for the winning mech @@ -390,7 +347,7 @@ if(attacker.combat_health <= 0 && combat_health <= 0) //both lose playsound(src, 'sound/machines/warning-buzzer.ogg', 20, TRUE) attacker_controller.visible_message(" MUTUALLY ASSURED DESTRUCTION!! [src] and [attacker] both end up destroyed!", \ - " Both [src] and [attacker] are destroyed!") + " Both [src] and [attacker] are destroyed!") else if(attacker.combat_health <= 0) //src wins wins++ attacker.losses++ @@ -402,7 +359,7 @@ " You raise up [src] victoriously over [attacker]!") else if (combat_health <= 0) //attacker wins attacker.wins++ - losses++ + losses++ playsound(src, 'sound/effects/light_flicker.ogg', 20, TRUE) src_controller.visible_message(" [src] collapses!", \ " [src] collapses!", null) @@ -417,7 +374,7 @@ in_combat = FALSE attacker.in_combat = FALSE - combat_health = max_combat_health + combat_health = max_combat_health attacker.combat_health = attacker.max_combat_health return @@ -425,49 +382,49 @@ /** * This proc checks if a battle can be initiated between src and attacker. * - * Both SRC and attacker (if attacker is included) timers are checked if they're on cooldown, and + * Both SRC and attacker (if attacker is included) timers are checked if they're on cooldown, and * both SRC and attacker (if attacker is included) are checked if they are in combat already. * If any of the above are true, the proc returns FALSE and sends a message to user (and target, if included) otherwise, it returns TRUE * Arguments: * * user: the user who is initiating the battle - * * attacker: optional arg for checking two mechs at once + * * attacker: optional arg for checking two mechs at once * * target: optional arg used in Mech PvP battles (if used, attacker is target's toy) */ -/obj/item/toy/mecha/proc/check_battle_start(mob/living/carbon/user, obj/item/toy/mecha/attacker, mob/living/carbon/target) - var/datum/gender/T +/obj/item/toy/mecha/proc/check_battle_start(mob/living/carbon/user, obj/item/toy/mecha/attacker, mob/living/carbon/target) + var/datum/gender/T if(target) T = gender_datums[target.get_visible_gender()] // Doing this because Polaris Code has shitty gender datums and it's clunkier than FUCK. if(attacker && attacker.in_combat) to_chat(user, "[target ? T.His : "Your" ] [attacker.name] is in combat.") - if(target) + if(target) to_chat(target, "Your [attacker.name] is in combat.") - return FALSE + return FALSE if(in_combat) to_chat(user, "Your [name] is in combat.") - if(target) + if(target) to_chat(target, "[T.His] [name] is in combat.") - return FALSE + return FALSE if(attacker && attacker.timer > world.time) to_chat(user, "[target?T.His : "Your" ] [attacker.name] isn't ready for battle.") - if(target) + if(target) to_chat(target, "Your [attacker.name] isn't ready for battle.") - return FALSE + return FALSE if(timer > world.time) to_chat(user, "Your [name] isn't ready for battle.") - if(target) + if(target) to_chat(target, "[T.His] [name] isn't ready for battle.") - return FALSE + return FALSE return TRUE /** - * Processes any special attack moves that happen in the battle (called in the mechaBattle proc). + * Processes any special attack moves that happen in the battle (called in the mechaBattle proc). * * Makes the toy shout their special attack cry and updates its cooldown. Then, does the special attack. * Arguments: * * victim - the toy being hit by the special move */ -/obj/item/toy/mecha/proc/special_attack_move(obj/item/toy/mecha/victim) +/obj/item/toy/mecha/proc/special_attack_move(obj/item/toy/mecha/victim) visible_message(special_attack_cry + "!!") special_attack_charged = FALSE @@ -490,15 +447,15 @@ visible_message("I FORGOT MY SPECIAL ATTACK...") /** - * Base proc for 'other' special attack moves. + * Base proc for 'other' special attack moves. * - * This one is only for inheritance, each mech with an 'other' type move has their procs below. + * This one is only for inheritance, each mech with an 'other' type move has their procs below. * Arguments: * * victim - the toy being hit by the super special move (doesn't necessarily need to be used) */ -/obj/item/toy/mecha/proc/super_special_attack(obj/item/toy/mecha/victim) +/obj/item/toy/mecha/proc/super_special_attack(obj/item/toy/mecha/victim) visible_message(" [src] does a cool flip.") - + /obj/random/mech_toy name = "Random Mech Toy" desc = "This is a random mech toy." @@ -531,8 +488,8 @@ special_attack_type = SPECIAL_ATTACK_OTHER special_attack_type_message = "instantly destroys the opposing mech if its health is less than this mech's health." special_attack_cry = "KILLER CLAMP" - -/obj/item/toy/mecha/deathripley/super_special_attack(obj/item/toy/mecha/victim) + +/obj/item/toy/mecha/deathripley/super_special_attack(obj/item/toy/mecha/victim) playsound(src, 'sound/weapons/sonic_jackhammer.ogg', 20, TRUE) if(victim.combat_health < combat_health) // Instantly kills the other mech if it's health is below our's. visible_message("EXECUTE!!") @@ -565,7 +522,7 @@ special_attack_type_message = "puts the opposing mech's special move on cooldown and heals this mech." special_attack_cry = "MEGA HORN" -/obj/item/toy/mecha/honk/super_special_attack(obj/item/toy/mecha/victim) +/obj/item/toy/mecha/honk/super_special_attack(obj/item/toy/mecha/victim) playsound(src, 'sound/machines/honkbot_evil_laugh.ogg', 20, TRUE) victim.special_attack_cooldown += 3 // Adds cooldown to the other mech and gives a minor self heal combat_health++ @@ -620,7 +577,7 @@ special_attack_type_message = "has a lower cooldown than normal special moves, increases the opponent's cooldown, and deals damage." special_attack_cry = "*wave" -/obj/item/toy/mecha/reticence/super_special_attack(obj/item/toy/mecha/victim) +/obj/item/toy/mecha/reticence/super_special_attack(obj/item/toy/mecha/victim) special_attack_cooldown-- //Has a lower cooldown... victim.special_attack_cooldown++ //and increases the opponent's cooldown by 1... victim.combat_health-- //and some free damage. diff --git a/code/game/objects/items/toys/toys.dm b/code/game/objects/items/toys/toys.dm index c2d2b171c9..0b1343d63e 100644 --- a/code/game/objects/items/toys/toys.dm +++ b/code/game/objects/items/toys/toys.dm @@ -3,8 +3,6 @@ * Balloons * Fake telebeacon * Fake singularity - * Toy gun - * Toy crossbow * Toy swords * Toy bosun's whistle * Snap pops @@ -145,127 +143,6 @@ icon = 'icons/obj/singularity.dmi' icon_state = "singularity_s1" -/* - * Toy crossbow - */ - -/obj/item/toy/crossbow - name = "foam dart crossbow" - desc = "A weapon favored by many overactive children. Ages 8 and up." - icon = 'icons/obj/gun.dmi' - icon_state = "crossbow" - item_icons = list( - icon_l_hand = 'icons/mob/items/lefthand_guns.dmi', - icon_r_hand = 'icons/mob/items/righthand_guns.dmi', - ) - slot_flags = SLOT_HOLSTER - w_class = ITEMSIZE_SMALL - attack_verb = list("attacked", "struck", "hit") - var/bullets = 5 - drop_sound = 'sound/items/drop/gun.ogg' - -/obj/item/toy/crossbow/examine(mob/user) - . = ..() - if(bullets && get_dist(user, src) <= 2) - . += "It is loaded with [bullets] foam darts!" - -/obj/item/toy/crossbow/attackby(obj/item/I as obj, mob/user as mob) - if(istype(I, /obj/item/toy/ammo/crossbow)) - if(bullets <= 4) - user.drop_item() - qdel(I) - bullets++ - to_chat(user, "You load the foam dart into the crossbow.") - else - to_chat(usr, "It's already fully loaded.") - - -/obj/item/toy/crossbow/afterattack(atom/target as mob|obj|turf|area, mob/user as mob, flag) - if(!isturf(target.loc) || target == user) return - if(flag) return - - if (locate (/obj/structure/table, src.loc)) - return - else if (bullets) - var/turf/trg = get_turf(target) - var/obj/effect/foam_dart_dummy/D = new/obj/effect/foam_dart_dummy(get_turf(src)) - bullets-- - D.icon_state = "foamdart" - D.name = "foam dart" - playsound(src, 'sound/items/syringeproj.ogg', 50, 1) - - for(var/i=0, i<6, i++) - if (D) - if(D.loc == trg) break - step_towards(D,trg) - - for(var/mob/living/M in D.loc) - if(!istype(M,/mob/living)) continue - if(M == user) continue - for(var/mob/O in viewers(world.view, D)) - O.show_message(text("\The [] was hit by the foam dart!", M), 1) - new /obj/item/toy/ammo/crossbow(M.loc) - qdel(D) - return - - for(var/atom/A in D.loc) - if(A == user) continue - if(A.density) - new /obj/item/toy/ammo/crossbow(A.loc) - qdel(D) - - sleep(1) - - spawn(10) - if(D) - new /obj/item/toy/ammo/crossbow(D.loc) - qdel(D) - - return - else if (bullets == 0) - user.Weaken(5) - for(var/mob/O in viewers(world.view, user)) - O.show_message(text("\The [] realized they were out of ammo and starting scrounging for some!", user), 1) - - -/obj/item/toy/crossbow/attack(mob/M as mob, mob/user as mob) - src.add_fingerprint(user) - -// ******* Check - - if (src.bullets > 0 && M.lying) - - for(var/mob/O in viewers(M, null)) - if(O.client) - O.show_message(text("\The [] casually lines up a shot with []'s head and pulls the trigger!", user, M), 1, "You hear the sound of foam against skull", 2) - O.show_message(text("\The [] was hit in the head by the foam dart!", M), 1) - - playsound(src, 'sound/items/syringeproj.ogg', 50, 1) - new /obj/item/toy/ammo/crossbow(M.loc) - src.bullets-- - else if (M.lying && src.bullets == 0) - for(var/mob/O in viewers(M, null)) - if (O.client) O.show_message(text("\The [] casually lines up a shot with []'s head, pulls the trigger, then realizes they are out of ammo and drops to the floor in search of some!", user, M), 1, "You hear someone fall", 2) - user.Weaken(5) - return - -/obj/item/toy/ammo/crossbow - name = "foam dart" - desc = "It's nerf or nothing! Ages 8 and up." - icon = 'icons/obj/toy.dmi' - icon_state = "foamdart" - w_class = ITEMSIZE_TINY - slot_flags = SLOT_EARS - drop_sound = 'sound/items/drop/food.ogg' - -/obj/effect/foam_dart_dummy - name = "" - desc = "" - icon = 'icons/obj/toy.dmi' - icon_state = "null" - anchored = TRUE - density = FALSE - /* * Toy swords */ @@ -394,7 +271,6 @@ /* * Bosun's whistle */ - /obj/item/toy/bosunwhistle name = "bosun's whistle" desc = "A genuine Admiral Krush Bosun's Whistle, for the aspiring ship's captain! Suitable for ages 8 and up, do not swallow." @@ -814,13 +690,6 @@ name = "void carp plushie" icon_state = "voidcarp" -// Eris -/obj/structure/plushie/fumo - name = "Fumo" - desc = "A plushie of a....?." - icon_state = "fumoplushie" - phrase = "I just don't think about losing." - //Large plushies. /obj/structure/plushie name = "generic plush" @@ -952,7 +821,7 @@ else searching = FALSE - if(world.time - last_message <= 1 SECOND) + if(world.time - last_message <= 15 SECONDS) return if(user.a_intent == I_HELP) user.visible_message("\The [user] hugs [src]!","You hug [src]!") @@ -1258,6 +1127,11 @@ icon_state = "therapygreen" item_state = "egg3" // It's the green egg in items_left/righthand +/obj/item/toy/plushie/fumo + name = "Fumo" + desc = "A plushie of a....?" + icon_state = "fumoplushie" + pokephrase = "I just don't think about losing." //Toy cult sword /obj/item/toy/cultsword @@ -1528,7 +1402,7 @@ name = "black king" desc = "A black king chess piece." description_info = "The King can move exactly one square horizontally, vertically, or diagonally. If your opponent captures this piece, you lose." - icon_state = "black_king" + icon_state = "black_king" /// Balloon structures diff --git a/code/game/objects/items/toys/toys_vr.dm b/code/game/objects/items/toys/toys_vr.dm index 3884b0a17c..cb05e944cf 100644 --- a/code/game/objects/items/toys/toys_vr.dm +++ b/code/game/objects/items/toys/toys_vr.dm @@ -1,9 +1,42 @@ +/* Virgo Toys! + * Contains: + * Mistletoe + * Plushies + * Pet rocks + * Chew toys + * Cat toys + * Fake flash + * Big red button + * Garden gnome + * Toy AI + * Hand buzzer + * Toy cuffs + * Toy nuke + * Toy gibber + * Toy xeno + * Russian revolver + * Trick revolver + * Toy chainsaw + * Random miniature spawner + * Snake popper + * Professor Who universal ID + * Professor Who sonic driver + * Action figures + */ + + +/* + * Mistletoe + */ /obj/item/toy/mistletoe name = "mistletoe" desc = "You are supposed to kiss someone under these" icon = 'icons/obj/toy_vr.dmi' icon_state = "mistletoe" +/* + * Plushies + */ /obj/item/toy/plushie/lizardplushie name = "lizard plushie" desc = "An adorable stuffed toy that resembles a lizardperson." @@ -101,38 +134,6 @@ /obj/item/toy/plushie/vox/proc/cooldownreset() cooldown = 0 -/* -* 4/9/21 * -* IPC Plush -* Toaster plush -* Snake plush -* Cube plush -* Pip plush -* Moth plush -* Crab plush -* Possum plush -* Goose plush -* White mouse plush -* Pet rock -* Pet rock (m) -* Pet rock (f) -* Chew toys -* Cat toy * 2 -* Toy flash -* Toy button -* Gnome -* Toy AI -* Buzzer ring -* Fake handcuffs -* Nuke toy -* Toy gibber -* Toy xeno -* Fake gun * 2 -* Toy chainsaw -* Random tabletop miniature spawner -* snake popper -*/ - /obj/item/toy/plushie/ipc name = "IPC plushie" desc = "A pleasing soft-toy of a monitor-headed robot. Toaster functionality included." @@ -172,7 +173,6 @@ else return ..() - /obj/item/toy/plushie/ipc/attack_self(mob/user as mob) if(!cooldown) playsound(user, 'sound/machines/ping.ogg', 10, 0) @@ -274,7 +274,9 @@ /obj/item/toy/plushie/goose name = "goose plushie" - desc = "An adorable likeness of a terrifying beast. It's simple existance chills you to the bone and compells you to hide any loose objects it might steal." + desc = "An adorable likeness of a terrifying beast. \ + It's simple existance chills you to the bone and \ + compells you to hide any loose objects it might steal." icon = 'icons/obj/toy_vr.dmi' icon_state = "goose" attack_verb = list("honked") @@ -284,9 +286,54 @@ icon_state = "mouse" icon = 'icons/obj/toy_vr.dmi' +/obj/item/toy/plushie/susred + name = "red spaceman plushie" + desc = "A suspicious looking red spaceman plushie. Why does it smell like the vents?" + icon = 'icons/obj/toy_vr.dmi' + icon_state = "sus_red" + attack_verb = list("stabbed", "slashed") + +/obj/item/toy/plushie/ipc/toaster/attack_self(mob/user as mob) + if(!cooldown) + playsound(user, 'sound/weapons/slice.ogg', 10, 0) + src.visible_message("Stab!") + cooldown = 1 + addtimer(CALLBACK(src, .proc/cooldownreset), 50) + return ..() + +/obj/item/toy/plushie/susblue + name = "blue spaceman plushie" + desc = "A dapper looking blue spaceman plushie. Looks very intuitive." + icon = 'icons/obj/toy_vr.dmi' + icon_state = "sus_blue" + +/obj/item/toy/plushie/suswhite + name = "white spaceman plushie" + desc = "A whiny looking white spaceman plushie. Looks like it could cry at any moment." + icon = 'icons/obj/toy_vr.dmi' + icon_state = "sus_white" + +/obj/item/toy/plushie/bigcat + name = "big cat plushie" + desc = "A big, fluffy looking cat that just looks very huggable." + icon = 'icons/obj/toy_vr.dmi' + icon_state = "big_cat" + +/obj/item/toy/plushie/basset + name = "basset plushie" + desc = "A sleepy looking basset hound plushie." + icon = 'icons/obj/toy_vr.dmi' + icon_state = "basset" + +/* + * Pet rocks + */ /obj/item/toy/rock name = "pet rock" - desc = "A stuffed version of the classic pet. The soft ones were made after kids kept throwing them at each other. It has a small piece of soft plastic that you can draw on if you wanted." + desc = "A stuffed version of the classic pet. \ + The soft ones were made after kids kept throwing \ + them at each other. It has a small piece of soft \ + plastic that you can draw on if you wanted." icon = 'icons/obj/toy_vr.dmi' icon_state = "rock" attack_verb = list("grug'd", "unga'd") @@ -307,6 +354,9 @@ to_chat(user, "You draw a face on the rock and pull aside the plastic slightly, revealing a small pink bow.") return +/* + * Chew toys + */ /obj/item/toy/chewtoy name = "chew toy" desc = "A red hard-rubber chew toy shaped like a bone. Perfect for your dog! You wouldn't want to chew on it, right?" @@ -330,6 +380,9 @@ playsound(loc, 'sound/items/drop/plushie.ogg', 50, 1) user.visible_message("\The [user] gnaws on [src]!","You gnaw on [src]!") +/* + * Cat toys + */ /obj/item/toy/cat_toy name = "toy mouse" desc = "A colorful toy mouse!" @@ -349,6 +402,9 @@ slot_r_hand_str = 'icons/mob/items/righthand_material.dmi', ) +/* + * Fake flash + */ /obj/item/toy/flash name = "toy flash" desc = "FOR THE REVOLU- Oh wait, that's just a toy." @@ -374,6 +430,9 @@ /obj/item/toy/flash/proc/cooldownreset() cooldown = 0 +/* + * Big red button + */ /obj/item/toy/redbutton name = "big red button" desc = "A big, plastic red button. Reads 'From HonkCo Pranks?' on the back." @@ -394,12 +453,18 @@ else to_chat(user, "Nothing happens.") +/* + * Garden gnome + */ /obj/item/toy/gnome name = "garden gnome" desc = "It's a gnome, not a gnelf. Made of weak ceramic." icon = 'icons/obj/toy_vr.dmi' icon_state = "gnome" +/* + * Toy AI + */ /obj/item/toy/AI name = "toy AI" desc = "A little toy model AI core with real law announcing action!" @@ -434,6 +499,9 @@ /obj/item/toy/AI/proc/cooldownreset() cooldown = 0 +/* + * Hand buzzer + */ /obj/item/clothing/gloves/ring/buzzer/toy name = "steel ring" desc = "Torus shaped finger decoration. It has a small piece of metal on the palm-side." @@ -460,6 +528,9 @@ return 0 +/* + * Toy cuffs + */ /obj/item/weapon/handcuffs/fake name = "plastic handcuffs" desc = "Use this to keep plastic prisoners in line." @@ -484,6 +555,9 @@ foldable = null can_hold = list(/obj/item/weapon/handcuffs/fake, /obj/item/weapon/handcuffs/legcuffs/fake) +/* + * Toy nuke + */ /obj/item/toy/nuke name = "\improper Nuclear Fission Explosive toy" desc = "A plastic model of a Nuclear Fission Explosive." @@ -510,6 +584,9 @@ if(istype(I, /obj/item/weapon/disk/nuclear)) to_chat(user, "Nice try. Put that disk back where it belongs.") +/* + * Toy gibber + */ /obj/item/toy/minigibber name = "miniature gibber" desc = "A miniature recreation of NanoTrasen's famous meat grinder. Equipped with a special interlock that prevents insertion of organic material." @@ -547,6 +624,9 @@ else ..() +/* + * Toy xeno + */ /obj/item/toy/toy_xeno icon = 'icons/obj/toy_vr.dmi' icon_state = "xeno" @@ -571,6 +651,9 @@ to_chat(user, "The string on [src] hasn't rewound all the way!") return +/* + * Russian revolver + */ /obj/item/toy/russian_revolver name = "russian revolver" desc = "For fun and games!" @@ -641,6 +724,9 @@ to_chat(user, "[src] needs to be reloaded.") return FALSE +/* + * Trick revolver + */ /obj/item/toy/russian_revolver/trick_revolver name = "\improper .357 revolver" desc = "A suspicious revolver. Uses .357 ammo." @@ -668,6 +754,9 @@ sleep(5) icon_state = "[initial(icon_state)]" +/* + * Toy chainsaw + */ /obj/item/toy/chainsaw name = "Toy Chainsaw" desc = "A toy chainsaw with a rubber edge. Ages 8 and up" @@ -690,6 +779,9 @@ /obj/item/toy/chainsaw/proc/cooldownreset() cooldown = 0 +/* + * Random miniature spawner + */ /obj/random/miniature name = "Random miniature" desc = "This is a random miniature." @@ -699,6 +791,9 @@ /obj/random/miniature/item_to_spawn() return pick(typesof(/obj/item/toy/character)) +/* + * Snake popper + */ /obj/item/toy/snake_popper name = "bread tube" desc = "Bread in a tube. Chewy...and surprisingly tasty." @@ -775,3 +870,93 @@ real = 2 to_chat(user, "You short out the bluespace refill system of [src].") +/* + * Professor Who universal ID + */ +/obj/item/clothing/under/universalid + name = "identification card" + desc = "A novelty identification card based on Professor Who's Universal ID." + icon = 'icons/obj/toy_vr.dmi' + icon_state = "universal_id" + w_class = ITEMSIZE_TINY + slot_flags = SLOT_ID | SLOT_EARS + body_parts_covered = 0 + equip_sound = null + + sprite_sheets = null + + item_state = "golem" //This is dumb and hacky but was here when I got here. + worn_state = "golem" //It's basically just a coincidentally black iconstate in the file. + +/* + * Professor Who sonic driver + */ +/obj/item/weapon/tool/screwdriver/sdriver + name = "sonic driver" + desc = "A novelty screwdriver that uses tiny magnets to manipulate screws." + icon = 'icons/obj/toy_vr.dmi' + icon_state = "sonic_driver" + item_state = "screwdriver_black" + usesound = 'sound/items/sonic_driver.ogg' + toolspeed = 1 + random_color = FALSE + +/* + * Professor Who time capsule + */ +/obj/item/weapon/storage/box/timecap + name = "action time capsule" + desc = "A toy recreation of the Time Capsule from Professor Who. Can hold up to two action figures." + icon = 'icons/obj/toy_vr.dmi' + icon_state = "time_cap" + can_hold = list(/obj/item/toy/figure) + max_w_class = ITEMSIZE_TINY + max_storage_space = ITEMSIZE_COST_TINY * 2 + use_sound = 'sound/machines/click.ogg' + drop_sound = 'sound/items/drop/accessory.ogg' + pickup_sound = 'sound/items/pickup/accessory.ogg' + +/* + * Action figures + */ +/obj/item/toy/figure/ranger + name = "Space Ranger action figure" + desc = "A \"Space Life\" brand Space Ranger action figure." + icon = 'icons/obj/toy_vr.dmi' + icon_state = "ranger" + toysay = "To the Fontier and beyond!" + +/obj/item/toy/figure/leadbandit + name = "Bandit Leader action figure" + desc = "A \"Space Life\" brand Bandit Leader action figure." + icon = 'icons/obj/toy_vr.dmi' + icon_state = "bandit_lead" + toysay = "Give us yer bluespace crystals!" + +/obj/item/toy/figure/bandit + name = "Bandit action figure" + desc = "A \"Space Life\" brand Bandit action figure." + icon = 'icons/obj/toy_vr.dmi' + icon_state = "bandit" + toysay = "Stick em' up!" + +/obj/item/toy/figure/abe + name = "Action Abe action figure" + desc = "A \"Space Life\" brand Action Abe action figure." + icon = 'icons/obj/toy_vr.dmi' + icon_state = "action_abe" + toysay = "Four score and seven decades ago..." + +/obj/item/toy/figure/profwho + name = "Professor Who action figure" + desc = "A \"Space Life\" brand Professor Who action figure." + icon = 'icons/obj/toy_vr.dmi' + icon_state = "prof_who" + toysay = "Smells like... bad wolf..." + +/obj/item/toy/figure/prisoner + name = "prisoner action figure" + desc = "A \"Space Life\" brand prisoner action figure." + icon = 'icons/obj/toy_vr.dmi' + icon_state = "prisoner" + toysay = "I did not hit her! I did not!" diff --git a/code/game/objects/items/trash.dm b/code/game/objects/items/trash.dm index 356edb5341..c8c8d376c8 100644 --- a/code/game/objects/items/trash.dm +++ b/code/game/objects/items/trash.dm @@ -8,6 +8,7 @@ desc = "This is rubbish." drop_sound = 'sound/items/drop/wrapper.ogg' pickup_sound = 'sound/items/pickup/wrapper.ogg' + matter = list(MAT_STEEL = 30) var/age = 0 /obj/item/trash/New(var/newloc, var/_age) @@ -248,6 +249,12 @@ drop_sound = 'sound/items/drop/soda.ogg' pickup_sound = 'sound/items/pickup/soda.ogg' +/obj/item/trash/tomato + name = "empty tomato soup can" + icon_state = "tomato" + drop_sound = 'sound/items/drop/soda.ogg' + pickup_sound = 'sound/items/pickup/soda.ogg' + /obj/item/trash/spinach name = "empty spinach can" icon_state = "spinach" @@ -409,3 +416,14 @@ name = "burrito packaging" icon_state = "smolburrito" +/obj/item/trash/brainzsnax + name = "\improper BrainzSnax can" + icon_state = "brainzsnax" + drop_sound = 'sound/items/drop/soda.ogg' + pickup_sound = 'sound/items/pickup/soda.ogg' + +/obj/item/trash/brainzsnaxred + name = "\improper BrainzSnax RED can" + icon_state = "brainzsnaxred" + drop_sound = 'sound/items/drop/soda.ogg' + pickup_sound = 'sound/items/pickup/soda.ogg' \ No newline at end of file diff --git a/code/game/objects/items/weapons/AI_modules.dm b/code/game/objects/items/weapons/AI_modules.dm index 58c91b5b46..e366a3e8ee 100644 --- a/code/game/objects/items/weapons/AI_modules.dm +++ b/code/game/objects/items/weapons/AI_modules.dm @@ -18,6 +18,7 @@ AI MODULES throw_range = 15 origin_tech = list(TECH_DATA = 3) preserve_item = 1 + matter = list(MAT_STEEL = 30, MAT_GLASS = 10) var/datum/ai_laws/laws = null /obj/item/weapon/aiModule/proc/install(var/atom/movable/AM, var/mob/living/user) diff --git a/code/game/objects/items/weapons/RPD_vr.dm b/code/game/objects/items/weapons/RPD_vr.dm index d794f9318a..8affac0c7f 100644 --- a/code/game/objects/items/weapons/RPD_vr.dm +++ b/code/game/objects/items/weapons/RPD_vr.dm @@ -16,7 +16,7 @@ item_icons = list( slot_l_hand_str = 'icons/mob/items/lefthand_vr.dmi', slot_r_hand_str = 'icons/mob/items/righthand_vr.dmi', - ) + ) flags = NOBLUDGEON force = 10 throwforce = 10 @@ -64,13 +64,6 @@ qdel_null(tool) return ..() -/obj/item/weapon/pipe_dispenser/suicide_act(mob/user) - var/datum/gender/TU = gender_datums[user.get_visible_gender()] - user.visible_message("[user] points the end of the RPD down [TU.his] throat and presses a button! It looks like [TU.hes] trying to commit suicide...") - playsound(src, 'sound/machines/click.ogg', 50, 1) - playsound(src, 'sound/items/deconstruct.ogg', 50, 1) - return(BRUTELOSS) - /obj/item/weapon/pipe_dispenser/attack_self(mob/user) tgui_interact(user) @@ -191,9 +184,9 @@ activate() animate_deletion(A) return - + if((mode & PAINT_MODE)) //Paint pipes - if(istype(A, /obj/machinery/atmospherics/pipe)) + if(!istype(A, /obj/machinery/atmospherics/pipe/simple/heat_exchanging) && istype(A, /obj/machinery/atmospherics/pipe)) var/obj/machinery/atmospherics/pipe/P = A playsound(src, 'sound/machines/click.ogg', 50, 1) P.change_color(pipe_colors[paint_color]) diff --git a/code/game/objects/items/weapons/capture_crystal.dm b/code/game/objects/items/weapons/capture_crystal.dm new file mode 100644 index 0000000000..d9c4d79a3d --- /dev/null +++ b/code/game/objects/items/weapons/capture_crystal.dm @@ -0,0 +1,845 @@ +/obj/item/capture_crystal + name = "curious crystal" + desc = "A silent, unassuming crystal in what appears to be some kind of steel housing." + icon = 'icons/obj/capture_crystal_vr.dmi' + icon_state = "inactive" + drop_sound = 'sound/items/drop/ring.ogg' + pickup_sound = 'sound/items/pickup/ring.ogg' + throwforce = 0 + force = 0 + action_button_name = "Command" + + var/active = FALSE //Is it set up? + var/mob/living/owner //Reference to the owner + var/mob/living/bound_mob //Reference to our bound mob + var/spawn_mob_type //The kind of mob an inactive crystal will try to spawn when activated + var/activate_cooldown = 30 SECONDS //How long do we wait between unleashing and recalling + var/last_activate //Automatically set by things that try to move the bound mob or capture things + var/empty_icon = "empty" + var/full_icon = "full" + var/capture_chance_modifier = 1 //So we can have special subtypes with different capture rates! + +/obj/item/capture_crystal/Initialize() + . = ..() + update_icon() + +//Let's make sure we clean up our references and things if the crystal goes away (such as when it's digested) +/obj/item/capture_crystal/Destroy() + if(bound_mob) + if(bound_mob in contents) + unleash() + to_chat(bound_mob, "You feel like yourself again. You are no longer under the influence of \the [src]'s command.") + UnregisterSignal(bound_mob, COMSIG_PARENT_QDELETING) + bound_mob.capture_caught = FALSE + bound_mob = null + if(owner) + UnregisterSignal(owner, COMSIG_PARENT_QDELETING) + owner = null + return ..() + +/obj/item/capture_crystal/examine(user) + . = ..() + if(user == owner && bound_mob) + . += "[bound_mob]'s crystal" + if(isanimal(bound_mob)) + . += "[bound_mob.health / bound_mob.maxHealth * 100]%" + if(bound_mob.ooc_notes) + . += "OOC Notes: \[View\]" + . += "\[Mechanical Vore Preferences\]" + +//Command! This lets the owner toggle hostile on AI controlled mobs, or send a silent command message to your bound mob, wherever they may be. +/obj/item/capture_crystal/ui_action_click() + if(!ismob(loc)) + return + var/mob/living/M = src.loc + if(M != owner) + to_chat(M, "\The [src] emits an unpleasant tone... It does not respond to your command.") + playsound(src, 'sound/effects/capture-crystal-negative.ogg', 75, 1, -1) + else if(!bound_mob) + to_chat(M, "\The [src] emits an unpleasant tone... There is nothing to command.") + playsound(src, 'sound/effects/capture-crystal-negative.ogg', 75, 1, -1) + else if(isanimal(bound_mob) && !bound_mob.client) + if(!isnull(bound_mob.get_AI_stance())) + var/datum/ai_holder/AI = bound_mob.ai_holder + AI.hostile = !AI.hostile + if(!AI.hostile) + AI.set_stance(STANCE_IDLE) + to_chat(M, span("notice", "\The [bound_mob] is now [AI.hostile ? "hostile" : "passive"].")) + log_admin("[key_name_admin(M)] set [bound_mob] to [AI.hostile].") + else if(bound_mob.client) + var/transmit_msg = tgui_input_text(usr, "What is your command?", "Command") + if(length(transmit_msg) >= MAX_MESSAGE_LEN) + to_chat(M, "Your message was TOO LONG!:[transmit_msg]") + return + transmit_msg = sanitize(transmit_msg, max_length = MAX_MESSAGE_LEN) + if(isnull(transmit_msg)) + to_chat(M, "You decided against it.") + return + to_chat(bound_mob, "\The [owner] commands, '[transmit_msg]'") + to_chat(M, "Your command has been transmitted, '[transmit_msg]'") + log_admin("[key_name_admin(M)] sent the command, '[transmit_msg]' to [bound_mob].") + else + to_chat(M, "\The [src] emits an unpleasant tone... \The [bound_mob] is unresponsive.") + playsound(src, 'sound/effects/capture-crystal-negative.ogg', 75, 1, -1) + +//Lets the owner get AI controlled bound mobs to follow them, or tells player controlled mobs to follow them. +/obj/item/capture_crystal/verb/follow_owner() + set name = "Toggle Follow" + set category = "Object" + set src in usr + if(!ismob(loc)) + return + var/mob/living/M = src.loc + if(M != owner) + to_chat(M, "\The [src] emits an unpleasant tone... It does not respond to your command.") + playsound(src, 'sound/effects/capture-crystal-negative.ogg', 75, 1, -1) + else if(bound_mob.stat != CONSCIOUS) + to_chat(M, "\The [src] emits an unpleasant tone... \The [bound_mob] is not able to hear your command.") + playsound(src, 'sound/effects/capture-crystal-negative.ogg', 75, 1, -1) + else if(bound_mob.client) + to_chat(bound_mob, "\The [owner] wishes for you to follow them.") + else if(bound_mob in contents) + if(!bound_mob.ai_holder) + to_chat(M, "\The [src] emits an unpleasant tone... \The [bound_mob] is not able to follow your command.") + playsound(src, 'sound/effects/capture-crystal-negative.ogg', 75, 1, -1) + return + var/datum/ai_holder/AI = bound_mob.ai_holder + if(AI.leader) + to_chat(M, "\The [src] chimes~ \The [bound_mob] stopped following [AI.leader].") + AI.lose_follow(AI.leader) + else + AI.set_follow(M) + to_chat(M, "\The [src] chimes~ \The [bound_mob] started following following [AI.leader].") + else if(!(bound_mob in view(M))) + to_chat(M, "\The [src] emits an unpleasant tone... \The [bound_mob] is not able to hear your command.") + playsound(src, 'sound/effects/capture-crystal-negative.ogg', 75, 1, -1) + if(!bound_mob.ai_holder) + to_chat(M, "\The [src] emits an unpleasant tone... \The [bound_mob] is not able to follow your command.") + playsound(src, 'sound/effects/capture-crystal-negative.ogg', 75, 1, -1) + return + var/datum/ai_holder/AI = bound_mob.ai_holder + if(AI.leader) + to_chat(M, "\The [src] chimes~ \The [bound_mob] stopped following [AI.leader].") + AI.lose_follow(AI.leader) + else + AI.set_follow(M) + to_chat(M, "\The [src] chimes~ \The [bound_mob] started following following [AI.leader].") + +//Don't really want people 'haha funny' capturing and releasing one another willy nilly. So! If you wanna release someone, you gotta destroy the thingy. +//(Which is consistent with how it works with digestion anyway.) +/obj/item/capture_crystal/verb/destroy_crystal() + set name = "Destroy Crystal" + set category = "Object" + set src in usr + if(!ismob(loc)) + return + var/mob/living/M = src.loc + if(M != owner) + to_chat(M, "\The [src] is too hard for you to break.") + else + M.visible_message("\The [M] crushes \the [src] into dust...", "\The [src] cracks and disintegrates in your hand.") + qdel(src) + +//If you catch something/someone and want to give it to someone else though, that's fine. +/obj/item/capture_crystal/verb/release_ownership() + set name = "Release Ownership" + set category = "Object" + set src in usr + if(!ismob(loc)) + return + var/mob/living/M = src.loc + if(M != owner) + to_chat(M, "\The [src] emits an unpleasant tone... It does not respond to your command.") + playsound(src, 'sound/effects/capture-crystal-negative.ogg', 75, 1, -1) + else + M.visible_message("\The [src] flickers in \the [M]'s hand and emits a little tone.", "\The [src] flickers in your hand and emits a little tone.") + playsound(src, 'sound/effects/capture-crystal-out.ogg', 75, 1, -1) + UnregisterSignal(owner, COMSIG_PARENT_QDELETING) + owner = null + +//Let's make inviting ghosts be an option you can do instead of an automatic thing! +/obj/item/capture_crystal/verb/invite_ghost() + set name = "Enhance (Toggle Ghost Join)" + set category = "Object" + set src in usr + if(!ismob(loc)) + return + var/mob/living/U = src.loc + if(!bound_mob) + to_chat(U, "\The [src] emits an unpleasant tone... There is nothing to enhance.") + playsound(src, 'sound/effects/capture-crystal-negative.ogg', 75, 1, -1) + return + else if(U != owner) + to_chat(U, "\The [src] emits an unpleasant tone... It does not respond to your command.") + playsound(src, 'sound/effects/capture-crystal-negative.ogg', 75, 1, -1) + return + else if(bound_mob.client || !isanimal(bound_mob)) + to_chat(U, "\The [src] emits an unpleasant tone... \The [bound_mob] is not eligable for enhancement.") + playsound(src, 'sound/effects/capture-crystal-problem.ogg', 75, 1, -1) + return //Need to type cast the mob so it can detect ghostjoin + var/mob/living/simple_mob/M = bound_mob + if(M.ghostjoin) + M.ghostjoin = FALSE + to_chat(U, "\The [bound_mob] is no longer eligable to be joined by ghosts.") + else if(tgui_alert(U, "Do you want to offer your [bound_mob] up to ghosts to play as? There is no way undo this once a ghost takes over.", "Invite ghosts?",list("No","Yes")) == "Yes") + M.ghostjoin = TRUE + to_chat(U, "\The [bound_mob] is now eligable to be joined by ghosts. It will need to be out of the crystal to be able to be joined.") + else + to_chat(U, "You decided against it.") + +/obj/item/capture_crystal/update_icon() + . = ..() + if(spawn_mob_type) + icon_state = full_icon + else if(!bound_mob) + icon_state = "inactive" + else if(bound_mob in contents) + icon_state = full_icon + else + icon_state = empty_icon + if(!cooldown_check()) + icon_state = "[icon_state]-busy" + spawn(activate_cooldown) //If it's busy then we want to wait a bit to fix the sprite after the cooldown is done. + update_icon() + +/obj/item/capture_crystal/proc/cooldown_check() + if(world.time < last_activate + activate_cooldown) + return FALSE + else return TRUE + +/obj/item/capture_crystal/attack(mob/living/M, mob/living/user) + if(bound_mob) + if(!bound_mob.devourable) //Don't eat if prefs are bad + return + if(user.zone_sel.selecting == "mouth") //Click while targetting the mouth and you eat/feed the stored mob to whoever you clicked on + if(bound_mob in contents) + user.visible_message("\The [user] moves \the [src] to [M]'s [M.vore_selected]...") + M.perform_the_nom(M, bound_mob, M, M.vore_selected) + else if(M == user) //You don't have a mob, you ponder the orb instead of trying to capture yourself + user.visible_message("\The [user] ponders \the [src]...", "You ponder \the [src]...") + else if (cooldown_check()) //Try to capture someone without throwing + user.visible_message("\The [user] taps \the [M] with \the [src].") + activate(user, M) + else + to_chat(user, "\The [src] emits an unpleasant tone... It is not ready yet.") + playsound(src, 'sound/effects/capture-crystal-negative.ogg', 75, 1, -1) + +//Tries to unleash or recall your stored mob +/obj/item/capture_crystal/attack_self(mob/living/user) + if(!cooldown_check()) + to_chat(user, "\The [src] emits an unpleasant tone... It is not ready yet.") + if(bound_mob) + playsound(src, 'sound/effects/capture-crystal-problem.ogg', 75, 1, -1) + else + playsound(src, 'sound/effects/capture-crystal-negative.ogg', 75, 1, -1) + else if(user == bound_mob) //You can't recall yourself + to_chat(user, "\The [src] emits an unpleasant tone... It does not activate for you.") + playsound(src, 'sound/effects/capture-crystal-negative.ogg', 75, 1, -1) + else if(!active) + activate(user) + else + determine_action(user) + +//Make it so the crystal knows if its mob references get deleted to make sure things get cleaned up +/obj/item/capture_crystal/proc/knowyoursignals(mob/living/M, mob/living/U) + RegisterSignal(M, COMSIG_PARENT_QDELETING, .proc/mob_was_deleted, TRUE) + RegisterSignal(U, COMSIG_PARENT_QDELETING, .proc/owner_was_deleted, TRUE) + +//The basic capture command does most of the registration work. +/obj/item/capture_crystal/proc/capture(mob/living/M, mob/living/U) + if(!M.capture_crystal || M.capture_caught) + to_chat(U, "This creature is not suitable for capture.") + playsound(src, 'sound/effects/capture-crystal-negative.ogg', 75, 1, -1) + return + knowyoursignals(M, U) + owner = U + if(isanimal(M)) + var/mob/living/simple_mob/S = M + S.revivedby = U.name + if(!bound_mob) + bound_mob = M + bound_mob.capture_caught = TRUE + persist_storable = FALSE + desc = "A glowing crystal in what appears to be some kind of steel housing." + +//Determines the capture chance! So you can't capture AI mobs if they're perfectly healthy and all that +/obj/item/capture_crystal/proc/capture_chance(mob/living/M, user) + if(capture_chance_modifier >= 100) //Master crystal always work + return 100 + var/capture_chance = ((1 - (M.health / M.maxHealth)) * 100) //Inverted health percent! 100% = 0% + //So I don't know how this works but here's a kind of explanation + //Basic chance + ((Mob's max health - minimum calculated health) / (Max allowed health - Min allowed health)*(Chance at Max allowed health - Chance at minimum allowed health) + capture_chance += 35 + ((M.maxHealth - 5)/ (1000-5)*(-100 - 35)) + //Basically! Mobs over 1000 max health will be unable to be caught without using status effects. + //Thanks Aronai! + var/effect_count = 0 //This will give you a smol chance to capture if you have applied status effects, even if the chance would ordinarily be <0 + if(M.stat == UNCONSCIOUS) + capture_chance += 0.1 + effect_count += 1 + else if(M.stat == CONSCIOUS) + capture_chance *= 0.9 + else + capture_chance = 0 + if(M.weakened) //Haha you fall down + capture_chance += 0.1 + effect_count += 1 + if(M.stunned) //What's the matter??? + capture_chance += 0.1 + effect_count += 1 + if(M.on_fire) //AAAAAAAA + capture_chance += 0.1 + effect_count += 1 + if(M.paralysis) //Oh noooo + capture_chance += 0.1 + effect_count += 1 + if(M.ai_holder.stance == STANCE_IDLE) //SNEAK ATTACK??? + capture_chance += 0.1 + effect_count += 1 + + capture_chance *= capture_chance_modifier + + if(capture_chance <= 0) + capture_chance = 0 + effect_count + if(capture_chance <= 0) + capture_chance = 0 + to_chat(user, "There's no chance... It needs to be weaker.") + + last_activate = world.time + log_admin("[user] threw a capture crystal at [M] and got [capture_chance]% chance to catch.") + return capture_chance + +//Handles checking relevent bans, preferences, and asking the player if they want to be caught +/obj/item/capture_crystal/proc/capture_player(mob/living/M, mob/living/U) + if(jobban_isbanned(M, "GhostRoles")) + to_chat(U, "This creature is not suitable for capture.") + playsound(src, 'sound/effects/capture-crystal-negative.ogg', 75, 1, -1) + else if(!M.capture_crystal || M.capture_caught) + to_chat(U, "This creature is not suitable for capture.") + playsound(src, 'sound/effects/capture-crystal-negative.ogg', 75, 1, -1) + else if(tgui_alert(M, "Would you like to be caught by in [src] by [U]? You will be bound to their will.", "Become Caught",list("No","Yes")) == "Yes") + if(tgui_alert(M, "Are you really sure? The only way to undo this is to OOC escape while you're in the crystal.", "Become Caught", list("No","Yes")) == "Yes") + log_admin("[key_name(M)] has agreed to become caught by [key_name(U)].") + capture(M, U) + recall(U) + return + to_chat(U, "This creature is too strong willed to be captured.") + playsound(src, 'sound/effects/capture-crystal-negative.ogg', 75, 1, -1) + +//The clean up procs! +/obj/item/capture_crystal/proc/mob_was_deleted() + UnregisterSignal(bound_mob, COMSIG_PARENT_QDELETING) + UnregisterSignal(owner, COMSIG_PARENT_QDELETING) + bound_mob.capture_caught = FALSE + bound_mob = null + owner = null + active = FALSE + persist_storable = TRUE + update_icon() + +/obj/item/capture_crystal/proc/owner_was_deleted() + UnregisterSignal(owner, COMSIG_PARENT_QDELETING) + owner = null + active = FALSE + update_icon() + +//If the crystal hasn't been set up, it does this +/obj/item/capture_crystal/proc/activate(mob/living/user, target) + if(!cooldown_check()) //Are we ready to do things yet? + to_chat(thrower, "\The [src] clicks unsatisfyingly... It is not ready yet.") + playsound(src, 'sound/effects/capture-crystal-negative.ogg', 75, 1, -1) + return + if(spawn_mob_type && !bound_mob) //We don't already have a mob, but we know what kind of mob we want + bound_mob = new spawn_mob_type(src) //Well let's spawn it then! + bound_mob.faction = user.faction + spawn_mob_type = null + capture(bound_mob, user) + if(bound_mob) //We have a mob! Let's finish setting up. + user.visible_message("\The [src] clicks, and then emits a small chime.", "\The [src] grows warm in your hand, something inside is awake.") + active = TRUE + if(!owner) //Do we have an owner? It's pretty unlikely that this would ever happen! But it happens, let's claim the crystal. + owner = user + if(isanimal(bound_mob)) + var/mob/living/simple_mob/S = bound_mob + S.revivedby = user.name + determine_action(user, target) + return + else if(isliving(target)) //So we don't have a mob, let's try to claim one! Is the target a mob? + var/mob/living/M = target + last_activate = world.time + if(M.capture_caught) //Can't capture things that were already caught. + playsound(src, 'sound/effects/capture-crystal-negative.ogg', 75, 1, -1) + to_chat(user, "\The [src] clicks unsatisfyingly... \The [M] is already under someone else's control.") + return + else if(M.stat == DEAD) //Is it dead? We can't influence dead things. + playsound(src, 'sound/effects/capture-crystal-negative.ogg', 75, 1, -1) + to_chat(user, "\The [src] clicks unsatisfyingly... \The [M] is not in a state to be captured.") + return + else if(M.client) //Is it player controlled? + capture_player(M, user) //We have to do things a little differently if so. + return + else if(!isanimal(M)) //So it's not player controlled, but it's also not a simplemob? + to_chat(user, "This creature is not suitable for capture.") + playsound(src, 'sound/effects/capture-crystal-negative.ogg', 75, 1, -1) + return + var/mob/living/simple_mob/S = M + if(!S.ai_holder) //We don't really want to capture simplemobs that don't have an AI + to_chat(user, "This creature is not suitable for capture.") + playsound(src, 'sound/effects/capture-crystal-negative.ogg', 75, 1, -1) + else if(prob(capture_chance(S, user))) //OKAY! So we have an NPC simplemob with an AI, let's calculate its capture chance! It varies based on the mob's condition. + capture(S, user) //We did it! Woo! We capture it! + user.visible_message("\The [src] clicks, and then emits a small chime.", "Alright! \The [S] was caught!") + recall(user) + active = TRUE + else //Shoot, it didn't work and now it's mad!!! + S.ai_holder.go_wake() + S.ai_holder.target = user + S.ai_holder.track_target_position() + S.ai_holder.set_stance(STANCE_FIGHT) + user.visible_message("\The [src] bonks into \the [S], angering it!") + playsound(src, 'sound/effects/capture-crystal-negative.ogg', 75, 1, -1) + to_chat(user, "\The [src] clicks unsatisfyingly.") + update_icon() + return + //The target is not a mob, so let's not do anything. + playsound(src, 'sound/effects/capture-crystal-negative.ogg', 75, 1, -1) + to_chat(user, "\The [src] clicks unsatisfyingly.") + +//We're using the crystal, but what will it do? +/obj/item/capture_crystal/proc/determine_action(mob/living/U, T) + if(!cooldown_check()) //Are we ready yet? + to_chat(thrower, "\The [src] clicks unsatisfyingly... It is not ready yet.") + playsound(src, 'sound/effects/capture-crystal-negative.ogg', 75, 1, -1) + return //No + if(bound_mob in contents) //Do we have our mob? + if(T) + unleash(U, T) //Yes, let's let it out! + else + unleash(U) + else if (bound_mob) //Do we HAVE a mob? + recall(U) //Yes, let's try to put it back in the crystal + else //No we don't have a mob, let's reset the crystal. + to_chat(U, "\The [src] clicks unsatisfyingly.") + active = FALSE + update_icon() + owner = null + playsound(src, 'sound/effects/capture-crystal-negative.ogg', 75, 1, -1) + +//Let's try to call our mob back! +/obj/item/capture_crystal/proc/recall(mob/living/user) + if(bound_mob in view(user)) //We can only recall it if we can see it + var/turf/turfmemory = get_turf(bound_mob) + if(isanimal(bound_mob)) + var/mob/living/simple_mob/M = bound_mob + M.ai_holder.go_sleep() //AI doesn't need to think when it's in the crystal + bound_mob.forceMove(src) + last_activate = world.time + bound_mob.visible_message("\The [user]'s [src] flashes, disappearing [bound_mob] in an instant!!!", "\The [src] pulls you back into confinement in a flash of light!!!") + animate_action(turfmemory) + playsound(src, 'sound/effects/capture-crystal-in.ogg', 75, 1, -1) + update_icon() + else + to_chat(user, "\The [src] clicks and emits a small, unpleasant tone. \The [bound_mob] cannot be recalled.") + playsound(src, 'sound/effects/capture-crystal-negative.ogg', 75, 1, -1) + +//Let's let our mob out! +/obj/item/capture_crystal/proc/unleash(mob/living/user, atom/target) + if(!user && !target) //We got thrown but we're not sure who did it, let's go to where the crystal is + bound_mob.forceMove(src.drop_location()) + return + if(!target) //We know who wants to let us out, but they didn't say where, so let's drop us on them + bound_mob.forceMove(user.drop_location()) + else //We got thrown! Let's go where we got thrown + bound_mob.forceMove(target.drop_location()) + last_activate = world.time + if(isanimal(bound_mob)) + var/mob/living/simple_mob/M = bound_mob + M.ai_holder.go_wake() //Okay it's time to do work, let's wake up! + bound_mob.faction = owner.faction //Let's make sure we aren't hostile to our owner or their friends + bound_mob.visible_message("\The [user]'s [src] flashes, \the [bound_mob] appears in an instant!!!", "The world around you rematerialize as you are unleashed from the [src] next to \the [user]. You feel a strong compulsion to enact \the [owner]'s will.") + animate_action(get_turf(bound_mob)) + playsound(src, 'sound/effects/capture-crystal-out.ogg', 75, 1, -1) + update_icon() + +//Let's make a flashy sparkle when someone appears or disappears! +/obj/item/capture_crystal/proc/animate_action(atom/thing) + var/image/coolanimation = image('icons/obj/capture_crystal_vr.dmi', null, "animation") + coolanimation.plane = PLANE_LIGHTING_ABOVE + thing.overlays += coolanimation + sleep(11) + thing.overlays -= coolanimation + +//IF the crystal somehow ends up in a tummy and digesting with a bound mob who doesn't want to be eaten, let's move them to the ground +/obj/item/capture_crystal/digest_act(var/atom/movable/item_storage = null) + if(bound_mob in contents && !bound_mob.devourable) + bound_mob.forceMove(src.drop_location()) + return ..() + +//We got thrown! Let's figure out what to do +/obj/item/capture_crystal/throw_at(atom/target, range, speed, mob/thrower, spin = TRUE, datum/callback/callback) + . = ..() + if(target == bound_mob && thrower != bound_mob) //We got thrown at our bound mob (and weren't thrown by the bound mob) let's ignore the cooldown and just put them back in + recall(thrower) + else if(!cooldown_check()) //OTHERWISE let's obey the cooldown + to_chat(thrower, "\The [src] emits an soft tone... It is not ready yet.") + if(bound_mob) + playsound(src, 'sound/effects/capture-crystal-problem.ogg', 75, 1, -1) + else + playsound(src, 'sound/effects/capture-crystal-negative.ogg', 75, 1, -1) + else if(!active) //The ball isn't set up, let's try to set it up. + if(isliving(target)) //We're hitting a mob, let's try to capture it. + sleep(10) + activate(thrower, target) + return + sleep(10) + activate(thrower, src) + else if(!bound_mob) //We hit something else, and we don't have a mob, so we can't really do anything! + to_chat(thrower, "\The [src] clicks unpleasantly...") + playsound(src, 'sound/effects/capture-crystal-negative.ogg', 75, 1, -1) + else if(bound_mob in contents) //We have our mob! Let's try to let it out. + sleep(10) + unleash(thrower, src) + update_icon() + else //Our mob isn't here, we can't do anything. + to_chat(thrower, "\The [src] clicks unpleasantly...") + playsound(src, 'sound/effects/capture-crystal-negative.ogg', 75, 1, -1) + +/obj/item/capture_crystal/great + capture_chance_modifier = 1.5 + +/obj/item/capture_crystal/ultra + capture_chance_modifier = 2 + +/obj/item/capture_crystal/master + capture_chance_modifier = 100 + +/obj/item/capture_crystal/cass + spawn_mob_type = /mob/living/simple_mob/vore/woof/cass +/obj/item/capture_crystal/adg + spawn_mob_type = /mob/living/simple_mob/mechanical/mecha/combat/gygax/dark/advanced +/obj/item/capture_crystal/bigdragon + spawn_mob_type = /mob/living/simple_mob/vore/bigdragon +/obj/item/capture_crystal/bigdragon/friendly + spawn_mob_type = /mob/living/simple_mob/vore/bigdragon/friendly +/obj/item/capture_crystal/teppi + spawn_mob_type = /mob/living/simple_mob/vore/alienanimals/teppi +/obj/item/capture_crystal/broodmother + spawn_mob_type = /mob/living/simple_mob/animal/giant_spider/broodmother +/obj/item/capture_crystal/skeleton + spawn_mob_type = /mob/living/simple_mob/vore/alienanimals/skeleton +/obj/item/capture_crystal/dustjumper + spawn_mob_type = /mob/living/simple_mob/vore/alienanimals/dustjumper + +/obj/item/capture_crystal/random + var/static/list/possible_mob_types = list( + list(/mob/living/simple_mob/animal/goat), + list( + /mob/living/simple_mob/animal/passive/bird, + /mob/living/simple_mob/animal/passive/bird/azure_tit, + /mob/living/simple_mob/animal/passive/bird/black_bird, + /mob/living/simple_mob/animal/passive/bird/european_robin, + /mob/living/simple_mob/animal/passive/bird/goldcrest, + /mob/living/simple_mob/animal/passive/bird/ringneck_dove, + /mob/living/simple_mob/animal/passive/bird/parrot, + /mob/living/simple_mob/animal/passive/bird/parrot/black_headed_caique, + /mob/living/simple_mob/animal/passive/bird/parrot/budgerigar, + /mob/living/simple_mob/animal/passive/bird/parrot/budgerigar/blue, + /mob/living/simple_mob/animal/passive/bird/parrot/budgerigar/bluegreen, + /mob/living/simple_mob/animal/passive/bird/parrot/cockatiel, + /mob/living/simple_mob/animal/passive/bird/parrot/cockatiel/grey, + /mob/living/simple_mob/animal/passive/bird/parrot/cockatiel/white, + /mob/living/simple_mob/animal/passive/bird/parrot/cockatiel/yellowish, + /mob/living/simple_mob/animal/passive/bird/parrot/eclectus, + /mob/living/simple_mob/animal/passive/bird/parrot/grey_parrot, + /mob/living/simple_mob/animal/passive/bird/parrot/kea, + /mob/living/simple_mob/animal/passive/bird/parrot/pink_cockatoo, + /mob/living/simple_mob/animal/passive/bird/parrot/sulphur_cockatoo, + /mob/living/simple_mob/animal/passive/bird/parrot/white_caique, + /mob/living/simple_mob/animal/passive/bird/parrot/white_cockatoo + ), + list( + /mob/living/simple_mob/animal/passive/cat, + /mob/living/simple_mob/animal/passive/cat/black + ), + list(/mob/living/simple_mob/animal/passive/chick), + list(/mob/living/simple_mob/animal/passive/cow), + list(/mob/living/simple_mob/animal/passive/dog/brittany), + list(/mob/living/simple_mob/animal/passive/dog/corgi), + list(/mob/living/simple_mob/animal/passive/dog/tamaskan), + list(/mob/living/simple_mob/animal/passive/fox), + list(/mob/living/simple_mob/animal/passive/hare), + list(/mob/living/simple_mob/animal/passive/lizard), + list(/mob/living/simple_mob/animal/passive/mouse), + list(/mob/living/simple_mob/animal/passive/mouse/jerboa), + list(/mob/living/simple_mob/animal/passive/opossum), + list(/mob/living/simple_mob/animal/passive/pillbug), + list(/mob/living/simple_mob/animal/passive/snake), + list(/mob/living/simple_mob/animal/passive/tindalos), + list(/mob/living/simple_mob/animal/passive/yithian), + list( + /mob/living/simple_mob/animal/wolf, + /mob/living/simple_mob/animal/wolf/direwolf + ), + list(/mob/living/simple_mob/vore/rabbit), + list(/mob/living/simple_mob/vore/redpanda), + list(/mob/living/simple_mob/vore/woof), + list(/mob/living/simple_mob/vore/fennec), + list(/mob/living/simple_mob/vore/fennix), + list(/mob/living/simple_mob/vore/hippo), + list(/mob/living/simple_mob/vore/horse), + list(/mob/living/simple_mob/vore/bee), + list( + /mob/living/simple_mob/animal/space/bear, + /mob/living/simple_mob/animal/space/bear/brown + ), + list( + /mob/living/simple_mob/otie/feral, + /mob/living/simple_mob/otie/feral/chubby, + /mob/living/simple_mob/otie/red, + /mob/living/simple_mob/otie/red/chubby + ), + list(/mob/living/simple_mob/animal/sif/diyaab), + list(/mob/living/simple_mob/animal/sif/duck), + list(/mob/living/simple_mob/animal/sif/frostfly), + list( + /mob/living/simple_mob/animal/sif/glitterfly =50, + /mob/living/simple_mob/animal/sif/glitterfly/rare = 1 + ), + list( + /mob/living/simple_mob/animal/sif/kururak = 10, + /mob/living/simple_mob/animal/sif/kururak/leader = 1, + /mob/living/simple_mob/animal/sif/kururak/hibernate = 2, + ), + list( + /mob/living/simple_mob/animal/sif/sakimm = 10, + /mob/living/simple_mob/animal/sif/sakimm/intelligent = 1 + ), + list(/mob/living/simple_mob/animal/sif/savik) = 5, + list( + /mob/living/simple_mob/animal/sif/shantak = 10, + /mob/living/simple_mob/animal/sif/shantak/leader = 1 + ), + list(/mob/living/simple_mob/animal/sif/siffet), + list(/mob/living/simple_mob/animal/sif/tymisian), + list( + /mob/living/simple_mob/animal/giant_spider/nurse = 10, + /mob/living/simple_mob/animal/giant_spider/electric = 5, + /mob/living/simple_mob/animal/giant_spider/frost = 5, + /mob/living/simple_mob/animal/giant_spider/hunter = 10, + /mob/living/simple_mob/animal/giant_spider/ion = 5, + /mob/living/simple_mob/animal/giant_spider/lurker = 10, + /mob/living/simple_mob/animal/giant_spider/pepper = 10, + /mob/living/simple_mob/animal/giant_spider/phorogenic = 10, + /mob/living/simple_mob/animal/giant_spider/thermic = 5, + /mob/living/simple_mob/animal/giant_spider/tunneler = 10, + /mob/living/simple_mob/animal/giant_spider/webslinger = 5, + /mob/living/simple_mob/animal/giant_spider/broodmother = 1), + list( + /mob/living/simple_mob/animal/wolf = 10, + /mob/living/simple_mob/animal/wolf/direwolf = 5, + /mob/living/simple_mob/vore/greatwolf = 1, + /mob/living/simple_mob/vore/greatwolf/black = 1, + /mob/living/simple_mob/vore/greatwolf/grey = 1 + ), + list(/mob/living/simple_mob/creature/strong), + list(/mob/living/simple_mob/faithless/strong), + list(/mob/living/simple_mob/animal/goat), + list( + /mob/living/simple_mob/animal/sif/shantak/leader = 1, + /mob/living/simple_mob/animal/sif/shantak = 10), + list(/mob/living/simple_mob/animal/sif/savik,), + list(/mob/living/simple_mob/animal/sif/hooligan_crab), + list( + /mob/living/simple_mob/animal/space/alien = 50, + /mob/living/simple_mob/animal/space/alien/drone = 40, + /mob/living/simple_mob/animal/space/alien/sentinel = 25, + /mob/living/simple_mob/animal/space/alien/sentinel/praetorian = 15, + /mob/living/simple_mob/animal/space/alien/queen = 10, + /mob/living/simple_mob/animal/space/alien/queen/empress = 5, + /mob/living/simple_mob/animal/space/alien/queen/empress/mother = 1 + ), + list(/mob/living/simple_mob/animal/space/bats/cult/strong), + list( + /mob/living/simple_mob/animal/space/bear, + /mob/living/simple_mob/animal/space/bear/brown + ), + list( + /mob/living/simple_mob/animal/space/carp = 50, + /mob/living/simple_mob/animal/space/carp/large = 10, + /mob/living/simple_mob/animal/space/carp/large/huge = 5 + ), + list(/mob/living/simple_mob/animal/space/goose), + list(/mob/living/simple_mob/animal/space/jelly), + list(/mob/living/simple_mob/animal/space/tree), + list( + /mob/living/simple_mob/vore/aggressive/corrupthound = 10, + /mob/living/simple_mob/vore/aggressive/corrupthound/prettyboi = 1, + ), + list(/mob/living/simple_mob/vore/aggressive/deathclaw), + list(/mob/living/simple_mob/vore/aggressive/dino), + list(/mob/living/simple_mob/vore/aggressive/dragon), + list(/mob/living/simple_mob/vore/aggressive/dragon/virgo3b), + list(/mob/living/simple_mob/vore/aggressive/frog), + list(/mob/living/simple_mob/vore/aggressive/giant_snake), + list(/mob/living/simple_mob/vore/aggressive/mimic), + list(/mob/living/simple_mob/vore/aggressive/panther), + list(/mob/living/simple_mob/vore/aggressive/rat), + list(/mob/living/simple_mob/vore/bee), + list( + /mob/living/simple_mob/vore/sect_drone = 10, + /mob/living/simple_mob/vore/sect_queen = 1 + ), + list(/mob/living/simple_mob/vore/solargrub), + list( + /mob/living/simple_mob/vore/oregrub = 5, + /mob/living/simple_mob/vore/oregrub/lava = 1 + ), + list(/mob/living/simple_mob/vore/catgirl), + list(/mob/living/simple_mob/vore/wolfgirl), + list( + /mob/living/simple_mob/vore/lamia, + /mob/living/simple_mob/vore/lamia/albino, + /mob/living/simple_mob/vore/lamia/albino/bra, + /mob/living/simple_mob/vore/lamia/albino/shirt, + /mob/living/simple_mob/vore/lamia/bra, + /mob/living/simple_mob/vore/lamia/cobra, + /mob/living/simple_mob/vore/lamia/cobra/bra, + /mob/living/simple_mob/vore/lamia/cobra/shirt, + /mob/living/simple_mob/vore/lamia/copper, + /mob/living/simple_mob/vore/lamia/copper/bra, + /mob/living/simple_mob/vore/lamia/copper/shirt, + /mob/living/simple_mob/vore/lamia/green, + /mob/living/simple_mob/vore/lamia/green/bra, + /mob/living/simple_mob/vore/lamia/green/shirt, + /mob/living/simple_mob/vore/lamia/zebra, + /mob/living/simple_mob/vore/lamia/zebra/bra, + /mob/living/simple_mob/vore/lamia/zebra/shirt + ), + list( + /mob/living/simple_mob/humanoid/merc = 100, + /mob/living/simple_mob/humanoid/merc/melee/sword = 50, + /mob/living/simple_mob/humanoid/merc/ranged = 25, + /mob/living/simple_mob/humanoid/merc/ranged/grenadier = 1, + /mob/living/simple_mob/humanoid/merc/ranged/ionrifle = 10, + /mob/living/simple_mob/humanoid/merc/ranged/laser = 5, + /mob/living/simple_mob/humanoid/merc/ranged/rifle = 5, + /mob/living/simple_mob/humanoid/merc/ranged/smg = 5, + /mob/living/simple_mob/humanoid/merc/ranged/sniper = 1, + /mob/living/simple_mob/humanoid/merc/ranged/space = 10, + /mob/living/simple_mob/humanoid/merc/ranged/technician = 5 + ), + list( + /mob/living/simple_mob/humanoid/pirate = 3, + /mob/living/simple_mob/humanoid/pirate/ranged = 1 + ), + list(/mob/living/simple_mob/mechanical/combat_drone), + list(/mob/living/simple_mob/mechanical/corrupt_maint_drone), + list( + /mob/living/simple_mob/mechanical/hivebot = 100, + /mob/living/simple_mob/mechanical/hivebot/ranged_damage = 20, + /mob/living/simple_mob/mechanical/hivebot/ranged_damage/backline = 10, + /mob/living/simple_mob/mechanical/hivebot/ranged_damage/basic = 20, + /mob/living/simple_mob/mechanical/hivebot/ranged_damage/dot = 5, + /mob/living/simple_mob/mechanical/hivebot/ranged_damage/ion = 20, + /mob/living/simple_mob/mechanical/hivebot/ranged_damage/laser = 10, + /mob/living/simple_mob/mechanical/hivebot/ranged_damage/rapid = 2, + /mob/living/simple_mob/mechanical/hivebot/ranged_damage/siege = 1, + /mob/living/simple_mob/mechanical/hivebot/ranged_damage/siege/emp = 5, + /mob/living/simple_mob/mechanical/hivebot/ranged_damage/siege/fragmentation = 1, + /mob/living/simple_mob/mechanical/hivebot/ranged_damage/siege/radiation = 1, + /mob/living/simple_mob/mechanical/hivebot/ranged_damage/strong = 3, + /mob/living/simple_mob/mechanical/hivebot/ranged_damage/strong/guard = 3, + /mob/living/simple_mob/mechanical/hivebot/support = 8, + /mob/living/simple_mob/mechanical/hivebot/support/commander = 5, + /mob/living/simple_mob/mechanical/hivebot/support/commander/autofollow = 10, + /mob/living/simple_mob/mechanical/hivebot/swarm = 20, + /mob/living/simple_mob/mechanical/hivebot/tank = 20, + /mob/living/simple_mob/mechanical/hivebot/tank/armored = 20, + /mob/living/simple_mob/mechanical/hivebot/tank/armored/anti_bullet = 20, + /mob/living/simple_mob/mechanical/hivebot/tank/armored/anti_laser = 20, + /mob/living/simple_mob/mechanical/hivebot/tank/armored/anti_melee = 20, + /mob/living/simple_mob/mechanical/hivebot/tank/meatshield = 20 + ), + list(/mob/living/simple_mob/mechanical/infectionbot), + list(/mob/living/simple_mob/mechanical/mining_drone), + list(/mob/living/simple_mob/mechanical/technomancer_golem), + list( + /mob/living/simple_mob/mechanical/viscerator, + /mob/living/simple_mob/mechanical/viscerator/piercing + ), + list(/mob/living/simple_mob/mechanical/wahlem), + list(/mob/living/simple_mob/animal/passive/fox/syndicate), + list(/mob/living/simple_mob/animal/passive/fox), + list(/mob/living/simple_mob/animal/wolf/direwolf), + list(/mob/living/simple_mob/animal/space/jelly), + list( + /mob/living/simple_mob/otie/feral, + /mob/living/simple_mob/otie/feral/chubby, + /mob/living/simple_mob/otie/red, + /mob/living/simple_mob/otie/red/chubby + ), + list( + /mob/living/simple_mob/shadekin/blue = 100, + /mob/living/simple_mob/shadekin/green = 50, + /mob/living/simple_mob/shadekin/orange = 20, + /mob/living/simple_mob/shadekin/purple = 60, + /mob/living/simple_mob/shadekin/red = 40, + /mob/living/simple_mob/shadekin/yellow = 1 + ), + list( + /mob/living/simple_mob/vore/aggressive/corrupthound, + /mob/living/simple_mob/vore/aggressive/corrupthound/prettyboi + ), + list(/mob/living/simple_mob/vore/aggressive/deathclaw), + list(/mob/living/simple_mob/vore/aggressive/dino), + list(/mob/living/simple_mob/vore/aggressive/dragon), + list(/mob/living/simple_mob/vore/aggressive/dragon/virgo3b), + list(/mob/living/simple_mob/vore/aggressive/frog), + list(/mob/living/simple_mob/vore/aggressive/giant_snake), + list(/mob/living/simple_mob/vore/aggressive/mimic), + list(/mob/living/simple_mob/vore/aggressive/panther), + list(/mob/living/simple_mob/vore/aggressive/rat), + list(/mob/living/simple_mob/vore/bee), + list(/mob/living/simple_mob/vore/catgirl), + list(/mob/living/simple_mob/vore/cookiegirl), + list(/mob/living/simple_mob/vore/fennec), + list(/mob/living/simple_mob/vore/fennix), + list(/mob/living/simple_mob/vore/hippo), + list(/mob/living/simple_mob/vore/horse), + list(/mob/living/simple_mob/vore/oregrub), + list(/mob/living/simple_mob/vore/rabbit), + list( + /mob/living/simple_mob/vore/redpanda = 50, + /mob/living/simple_mob/vore/redpanda/fae = 1 + ), + list( + /mob/living/simple_mob/vore/sect_drone = 10, + /mob/living/simple_mob/vore/sect_queen = 1 + ), + list(/mob/living/simple_mob/vore/solargrub), + list(/mob/living/simple_mob/vore/woof), + list(/mob/living/simple_mob/vore/alienanimals/teppi), + list(/mob/living/simple_mob/vore/alienanimals/space_ghost), + list(/mob/living/simple_mob/vore/alienanimals/catslug), + list(/mob/living/simple_mob/vore/alienanimals/space_jellyfish), + list(/mob/living/simple_mob/vore/alienanimals/startreader), + list(/mob/living/simple_mob/vore/bigdragon), + list( + /mob/living/simple_mob/vore/leopardmander = 50, + /mob/living/simple_mob/vore/leopardmander/blue = 10, + /mob/living/simple_mob/vore/leopardmander/exotic = 1 + ), + list(/mob/living/simple_mob/vore/sheep), + list(/mob/living/simple_mob/vore/weretiger), + list(/mob/living/simple_mob/vore/alienanimals/skeleton), + list(/mob/living/simple_mob/vore/alienanimals/dustjumper) + ) + +/obj/item/capture_crystal/random/Initialize() + var/subchoice = pickweight(possible_mob_types) //Some of the lists have nested lists, so let's pick one of them + var/choice = pickweight(subchoice) //And then we'll pick something from whatever's left + spawn_mob_type = choice //Now when someone uses this, we'll spawn whatever we picked! + return ..() + +/mob/living + var/capture_crystal = TRUE //If TRUE, the mob is capturable. Otherwise it isn't. + var/capture_caught = FALSE //If TRUE, the mob has already been caught, and so cannot be caught again. \ No newline at end of file diff --git a/code/game/objects/items/weapons/chewables.dm b/code/game/objects/items/weapons/chewables.dm index 93a2df1615..181db77e91 100644 --- a/code/game/objects/items/weapons/chewables.dm +++ b/code/game/objects/items/weapons/chewables.dm @@ -254,6 +254,7 @@ desc = "A chocolate-coated biscuit stick." icon_state = "pockystick" item_state = "pocky" + type_butt = null /obj/item/clothing/mask/chewable/candy/pocky/process() chew() diff --git a/code/game/objects/items/weapons/cigs_lighters.dm b/code/game/objects/items/weapons/cigs_lighters.dm index ade55cbeca..5a751e3527 100644 --- a/code/game/objects/items/weapons/cigs_lighters.dm +++ b/code/game/objects/items/weapons/cigs_lighters.dm @@ -207,8 +207,6 @@ CIGARETTE PACKETS ARE IN FANCY.DM to_chat(M, "Your [name] goes out.") M.remove_from_mob(src) //un-equip it so the overlays can update M.update_inv_wear_mask(0) - M.update_inv_l_hand(0) - M.update_inv_r_hand(1) qdel(src) else new /obj/effect/decal/cleanable/ash(T) @@ -221,8 +219,6 @@ CIGARETTE PACKETS ARE IN FANCY.DM icon_state = initial(icon_state) item_state = initial(item_state) M.update_inv_wear_mask(0) - M.update_inv_l_hand(0) - M.update_inv_r_hand(1) smoketime = 0 reagents.clear_reagents() name = "empty [initial(name)]" diff --git a/code/game/objects/items/weapons/circuitboards/circuitboard.dm b/code/game/objects/items/weapons/circuitboards/circuitboard.dm index c1989902a2..a083027713 100644 --- a/code/game/objects/items/weapons/circuitboards/circuitboard.dm +++ b/code/game/objects/items/weapons/circuitboards/circuitboard.dm @@ -16,6 +16,7 @@ throwforce = 5.0 throw_speed = 3 throw_range = 15 + matter = list(MAT_STEEL = 30, MAT_GLASS = 10) var/build_path = null var/board_type = new /datum/frame/frame_types/computer var/list/req_components = null diff --git a/code/game/objects/items/weapons/circuitboards/circuitboards_vr.dm b/code/game/objects/items/weapons/circuitboards/circuitboards_vr.dm index 2311e48983..174e1cde97 100644 --- a/code/game/objects/items/weapons/circuitboards/circuitboards_vr.dm +++ b/code/game/objects/items/weapons/circuitboards/circuitboards_vr.dm @@ -60,3 +60,10 @@ build_path = /obj/machinery/computer/id_restorer board_type = new /datum/frame/frame_types/id_restorer matter = list(MAT_STEEL = 50, MAT_GLASS = 50) + +/obj/item/weapon/circuitboard/security/xenobio + name = T_BOARD("xenobiology camera monitor") + build_path = /obj/machinery/computer/security/xenobio + network = list(NETWORK_XENOBIO) + req_access = list() + matter = list(MAT_STEEL = 50, MAT_GLASS = 50) diff --git a/code/game/objects/items/weapons/circuitboards/frame.dm b/code/game/objects/items/weapons/circuitboards/frame.dm index ddc86fb4ed..7ef7c4bfef 100644 --- a/code/game/objects/items/weapons/circuitboards/frame.dm +++ b/code/game/objects/items/weapons/circuitboards/frame.dm @@ -255,3 +255,13 @@ /obj/item/weapon/stock_parts/spring = 1, /obj/item/stack/cable_coil = 5) +/obj/item/weapon/circuitboard/arf_generator + name = T_BOARD("atmospheric field generator") + build_path = /obj/machinery/atmospheric_field_generator + board_type = new /datum/frame/frame_types/arfgs + origin_tech = list(TECH_MAGNET = 4, TECH_POWER = 4, TECH_BIO = 3) + req_components = list( + /obj/item/weapon/stock_parts/micro_laser/high = 2, //field emitters + /obj/item/weapon/stock_parts/scanning_module = 1, //atmosphere sensor + /obj/item/weapon/stock_parts/capacitor/adv = 1, //for the JUICE + /obj/item/stack/cable_coil = 10) \ No newline at end of file diff --git a/code/game/objects/items/weapons/circuitboards/machinery/mining_drill.dm b/code/game/objects/items/weapons/circuitboards/machinery/mining_drill.dm index c24b296412..3f97fad2f7 100644 --- a/code/game/objects/items/weapons/circuitboards/machinery/mining_drill.dm +++ b/code/game/objects/items/weapons/circuitboards/machinery/mining_drill.dm @@ -17,4 +17,6 @@ build_path = /obj/machinery/mining/brace board_type = new /datum/frame/frame_types/machine origin_tech = list(TECH_DATA = 1, TECH_ENGINEERING = 1) - req_components = list() + req_components = list( + /obj/item/weapon/stock_parts/manipulator = 1 + ) diff --git a/code/game/objects/items/weapons/extinguisher.dm b/code/game/objects/items/weapons/extinguisher.dm index 82550df2ae..7643191642 100644 --- a/code/game/objects/items/weapons/extinguisher.dm +++ b/code/game/objects/items/weapons/extinguisher.dm @@ -37,6 +37,19 @@ sprite_name = "miniFE" rand_overlays = 0 +/obj/item/weapon/extinguisher/atmo + name = "atmospheric fire extinguisher" + desc = "A heavy duty fire extinguisher meant to fight large fires." + icon_state = "atmos_extinguisher0" + item_state = "atmos_extinguisher" + throwforce = 12 + w_class = ITEMSIZE_LARGE + force = 3.0 + max_water = 600 + spray_particles = 3 + sprite_name = "atmo_extinguisher" + rand_overlays = 0 + /obj/item/weapon/extinguisher/Initialize() create_reagents(max_water) reagents.add_reagent("firefoam", max_water) diff --git a/code/game/objects/items/weapons/gift_wrappaper.dm b/code/game/objects/items/weapons/gift_wrappaper.dm index 285fba5bfd..d7fcb01fce 100644 --- a/code/game/objects/items/weapons/gift_wrappaper.dm +++ b/code/game/objects/items/weapons/gift_wrappaper.dm @@ -85,8 +85,8 @@ /obj/item/weapon/beach_ball/holoball, /obj/item/toy/balloon, /obj/item/toy/blink, - /obj/item/toy/crossbow, - /obj/item/weapon/gun/projectile/revolver/capgun, + /obj/item/weapon/gun/projectile/revolver/toy/crossbow, + /obj/item/weapon/storage/box/capguntoy, /obj/item/toy/katana, /obj/item/toy/mecha/deathripley, /obj/item/toy/mecha/durand, diff --git a/code/game/objects/items/weapons/grenades/chem_grenade.dm b/code/game/objects/items/weapons/grenades/chem_grenade.dm index 744cc130e2..1a19b98910 100644 --- a/code/game/objects/items/weapons/grenades/chem_grenade.dm +++ b/code/game/objects/items/weapons/grenades/chem_grenade.dm @@ -55,7 +55,7 @@ C.throw_mode_on() /obj/item/weapon/grenade/chem_grenade/attackby(obj/item/weapon/W as obj, mob/user as mob) - if(istype(W,/obj/item/device/assembly_holder) && (!stage || stage==1) && path != 2) + if(istype(W,/obj/item/device/assembly_holder) && (!stage || stage==1) && !detonator && path != 2) var/obj/item/device/assembly_holder/det = W if(istype(det.a_left,det.a_right.type) || (!isigniter(det.a_left) && !isigniter(det.a_right))) to_chat(user, "Assembly must contain one igniter.") @@ -314,4 +314,3 @@ beakers += B1 beakers += B2 - \ No newline at end of file diff --git a/code/game/objects/items/weapons/grenades/grenade.dm b/code/game/objects/items/weapons/grenades/grenade.dm index 7ac049a774..209e47b253 100644 --- a/code/game/objects/items/weapons/grenades/grenade.dm +++ b/code/game/objects/items/weapons/grenades/grenade.dm @@ -112,3 +112,6 @@ walk(src, null, null) ..() return + +/obj/item/weapon/grenade/vendor_action(var/obj/machinery/vending/V) + activate(V) \ No newline at end of file diff --git a/code/game/objects/items/weapons/handcuffs.dm b/code/game/objects/items/weapons/handcuffs.dm index fe034f0095..35e55428a9 100644 --- a/code/game/objects/items/weapons/handcuffs.dm +++ b/code/game/objects/items/weapons/handcuffs.dm @@ -141,6 +141,7 @@ var/last_chew = 0 /obj/item/weapon/handcuffs/fuzzy name = "fuzzy cuffs" icon_state = "fuzzycuff" + breakouttime = 100 //VOREstation edit desc = "Use this to keep... 'prisoners' in line." /obj/item/weapon/handcuffs/cable diff --git a/code/game/objects/items/weapons/id cards/cards.dm b/code/game/objects/items/weapons/id cards/cards.dm index e62268c2c1..260eff8539 100644 --- a/code/game/objects/items/weapons/id cards/cards.dm +++ b/code/game/objects/items/weapons/id cards/cards.dm @@ -116,7 +116,6 @@ else log_and_message_admins("attempted to emag \an [A].") // Vorestation Edit: End of Edit - log_and_message_admins("emagged \an [A].") if(uses<1) user.visible_message("\The [src] fizzles and sparks - it seems it's been used once too often, and is now spent.") @@ -130,10 +129,10 @@ /obj/item/weapon/card/emag/attackby(obj/item/O as obj, mob/user as mob) if(istype(O, /obj/item/stack/telecrystal)) var/obj/item/stack/telecrystal/T = O - if(T.amount < 1) + if(T.get_amount() < 1) to_chat(usr, "You are not adding enough telecrystals to fuel \the [src].") return - uses += T.amount/2 //Gives 5 uses per 10 TC + uses += T.get_amount()*0.5 //Gives 5 uses per 10 TC uses = CEILING(uses, 1) //Ensures no decimal uses nonsense, rounds up to be nice to_chat(usr, "You add \the [O] to \the [src]. Increasing the uses of \the [src] to [uses].") qdel(O) diff --git a/code/game/objects/items/weapons/id cards/id_stacks_vr.dm b/code/game/objects/items/weapons/id cards/id_stacks_vr.dm index 13680cadbe..159041e571 100644 --- a/code/game/objects/items/weapons/id cards/id_stacks_vr.dm +++ b/code/game/objects/items/weapons/id cards/id_stacks_vr.dm @@ -261,6 +261,10 @@ name = "Talon Pilot ID" initial_sprite_stack = list("base-stamp-dark", "top-dark", "stamp-silhouette", "pips-purple", "stripe-purple") +/obj/item/weapon/card/id/talon/miner + name = "Talon Mining ID" + initial_sprite_stack = list("base-stamp-dark", "top-dark", "stamp-silhouette", "pips-brown", "stripe-brown") + /obj/item/weapon/card/id/talon/captain name = "Talon Captain ID" initial_sprite_stack = list("base-stamp-dark", "top-dark", "stamp-silhouette", "pips-gold", "stripe-gold") diff --git a/code/game/objects/items/weapons/id cards/station_ids.dm b/code/game/objects/items/weapons/id cards/station_ids.dm index 5a8fe7448d..325e9f518a 100644 --- a/code/game/objects/items/weapons/id cards/station_ids.dm +++ b/code/game/objects/items/weapons/id cards/station_ids.dm @@ -73,6 +73,7 @@ /mob/living/carbon/human/set_id_info(var/obj/item/weapon/card/id/id_card) ..() id_card.age = age + id_card.sex = capitalize(name_gender()) /obj/item/weapon/card/id/tgui_data(mob/user) var/list/data = list() diff --git a/code/game/objects/items/weapons/id cards/station_ids_vr.dm b/code/game/objects/items/weapons/id cards/station_ids_vr.dm index 0a9015145a..286b9f3e79 100644 --- a/code/game/objects/items/weapons/id cards/station_ids_vr.dm +++ b/code/game/objects/items/weapons/id cards/station_ids_vr.dm @@ -208,6 +208,7 @@ "Shaft Miner" = "itg", "Intern" = "itg", "Talon Pilot" = "itg", + "Talon Miner" = "itg", "Bartender" = "itg_green", "Botanist" = "itg_green", "Chef" = "itg_green", @@ -233,7 +234,7 @@ "Field Medic" = "itg_white", "Talon Doctor" = "itg_white", "Atmospheric Technician" = "itg_orange", - "Station Engineer" = "itg_orange", + "Engineer" = "itg_orange", "Off-duty Officer" = "itg_red", "Off-duty Engineer" = "itg_orange", "Off-duty Medic" = "itg_white", diff --git a/code/game/objects/items/weapons/implants/implant_vr.dm b/code/game/objects/items/weapons/implants/implant_vr.dm index 133bcb48f4..0702ac6697 100644 --- a/code/game/objects/items/weapons/implants/implant_vr.dm +++ b/code/game/objects/items/weapons/implants/implant_vr.dm @@ -35,6 +35,7 @@ source.add_language(LANGUAGE_CANILUNZT) source.add_language(LANGUAGE_SLAVIC) source.add_language(LANGUAGE_SOL_COMMON) //In case they're giving a xenomorph an implant or something. + source.add_language(LANGUAGE_TAVAN) /obj/item/weapon/implant/vrlanguage/post_implant(mob/source) source.mind.store_memory("A implant can be activated by using the smile emote, say *smile to attempt to activate.", 0, 0) diff --git a/code/game/objects/items/weapons/implants/implantlanguage.dm b/code/game/objects/items/weapons/implants/implantlanguage.dm index 692cdd381f..595e40c2b9 100644 --- a/code/game/objects/items/weapons/implants/implantlanguage.dm +++ b/code/game/objects/items/weapons/implants/implantlanguage.dm @@ -7,6 +7,7 @@ desc = "An implant allowing someone to speak the range of frequencies used in Galactic Common, as well as produce any phonemes that they usually cannot. Only helps with producing sounds, not understanding them." known_implant = TRUE var/list/languages = list(LANGUAGE_GALCOM) // List of languages that this assists with + initialize_loc = BP_HEAD /obj/item/weapon/implant/language/post_implant(mob/M) // Amends the mob's voice organ, then deletes itself if(ishuman(M)) diff --git a/code/game/objects/items/weapons/material/chainsaw.dm b/code/game/objects/items/weapons/material/chainsaw.dm index 0006e7acd1..74fb9681e0 100644 --- a/code/game/objects/items/weapons/material/chainsaw.dm +++ b/code/game/objects/items/weapons/material/chainsaw.dm @@ -117,11 +117,6 @@ if(max_fuel && get_dist(user, src) == 0) . += "The [src] feels like it contains roughtly [get_fuel()] units of fuel left." -/obj/item/weapon/chainsaw/suicide_act(mob/user) - var/datum/gender/TU = gender_datums[user.get_visible_gender()] - to_chat(viewers(user), "[user] is lying down and pulling the chainsaw into [TU.him], it looks like [TU.he] [TU.is] trying to commit suicide!") - return(BRUTELOSS) - /obj/item/weapon/chainsaw/update_icon() if(on) icon_state = "chainsaw1" diff --git a/code/game/objects/items/weapons/material/kitchen.dm b/code/game/objects/items/weapons/material/kitchen.dm index 1d32db4888..21fe275785 100644 --- a/code/game/objects/items/weapons/material/kitchen.dm +++ b/code/game/objects/items/weapons/material/kitchen.dm @@ -84,6 +84,13 @@ to_chat(user, SPAN_WARNING("You don't have anything on \the [src].")) //if we have help intent and no food scooped up DON'T STAB OURSELVES WITH THE FORK return +/obj/item/weapon/material/kitchen/utensil/on_rag_wipe() + . = ..() + if(reagents.total_volume > 0) + reagents.clear_reagents() + cut_overlays() + return + /obj/item/weapon/material/kitchen/utensil/fork name = "fork" desc = "It's a fork. Sure is pointy." diff --git a/code/game/objects/items/weapons/material/knives.dm b/code/game/objects/items/weapons/material/knives.dm index f4d5755778..3895d0c6f6 100644 --- a/code/game/objects/items/weapons/material/knives.dm +++ b/code/game/objects/items/weapons/material/knives.dm @@ -71,13 +71,6 @@ attack_verb = list("slashed", "stabbed", "sliced", "torn", "ripped", "diced", "cut") drop_sound = 'sound/items/drop/knife.ogg' -/obj/item/weapon/material/knife/suicide_act(mob/user) - var/datum/gender/TU = gender_datums[user.get_visible_gender()] - to_chat(viewers(user), pick("\The [user] is slitting [TU.his] wrists with \the [src]! It looks like [TU.hes] trying to commit suicide.", \ - "\The [user] is slitting [TU.his] throat with \the [src]! It looks like [TU.hes] trying to commit suicide.", \ - "\The [user] is slitting [TU.his] stomach open with \the [src]! It looks like [TU.hes] trying to commit seppuku.")) - return (BRUTELOSS) - // These no longer inherit from hatchets. /obj/item/weapon/material/knife/tacknife name = "tactical knife" diff --git a/code/game/objects/items/weapons/material/misc.dm b/code/game/objects/items/weapons/material/misc.dm index 333064c3f6..10c57abf85 100644 --- a/code/game/objects/items/weapons/material/misc.dm +++ b/code/game/objects/items/weapons/material/misc.dm @@ -211,11 +211,6 @@ playsound(src, 'sound/weapons/thudswoosh.ogg', 50, 1, -1) return -/obj/item/weapon/material/whip/suicide_act(mob/user) - var/datum/gender/T = gender_datums[user.get_visible_gender()] - user.visible_message(span("danger", "\The [user] [T.is] strangling [T.himself] with \the [src]! It looks like [T.he] [T.is] trying to commit suicide."), span("danger", "You start to strangle yourself with \the [src]!"), span("danger", "You hear the sound of someone choking!")) - return (OXYLOSS) - /obj/item/weapon/material/whip/attack_self(mob/user) user.visible_message("\The [user] cracks \the [src]!") playsound(src, 'sound/effects/snap.ogg', 50, 1) diff --git a/code/game/objects/items/weapons/material/shards.dm b/code/game/objects/items/weapons/material/shards.dm index 45a83ca1da..64d2c0d9cb 100644 --- a/code/game/objects/items/weapons/material/shards.dm +++ b/code/game/objects/items/weapons/material/shards.dm @@ -17,12 +17,6 @@ unbreakable = 1 //It's already broken. drops_debris = 0 -/obj/item/weapon/material/shard/suicide_act(mob/user) - var/datum/gender/TU = gender_datums[user.get_visible_gender()] - to_chat(viewers(user), pick("\The [user] is slitting [TU.his] wrists with \the [src]! It looks like [TU.hes] trying to commit suicide.", - "\The [user] is slitting [TU.his] throat with \the [src]! It looks like [TU.hes] trying to commit suicide.")) - return (BRUTELOSS) - /obj/item/weapon/material/shard/set_material(var/new_material) ..(new_material) if(!istype(material)) diff --git a/code/game/objects/items/weapons/material/swords.dm b/code/game/objects/items/weapons/material/swords.dm index b2d26f823e..efc1615bdf 100644 --- a/code/game/objects/items/weapons/material/swords.dm +++ b/code/game/objects/items/weapons/material/swords.dm @@ -19,18 +19,8 @@ return 1 return 0 -/obj/item/weapon/material/sword/suicide_act(mob/user) - var/datum/gender/TU = gender_datums[user.get_visible_gender()] - to_chat(viewers(user),"[user] is falling on the [src.name]! It looks like [TU.he] [TU.is] trying to commit suicide.") - return(BRUTELOSS) - /obj/item/weapon/material/sword/katana name = "katana" desc = "Woefully underpowered in D20. This one looks pretty sharp." icon_state = "katana" - slot_flags = SLOT_BELT | SLOT_BACK - -/obj/item/weapon/material/sword/katana/suicide_act(mob/user) - var/datum/gender/TU = gender_datums[user.get_visible_gender()] - visible_message(span("danger", "[user] is slitting [TU.his] stomach open with \the [src.name]! It looks like [TU.hes] trying to commit seppuku."), span("danger", "You slit your stomach open with \the [src.name]!"), span("danger", "You hear the sound of flesh tearing open.")) // gory, but it gets the point across - return(BRUTELOSS) + slot_flags = SLOT_BELT | SLOT_BACK \ No newline at end of file diff --git a/code/game/objects/items/weapons/material/whetstone.dm b/code/game/objects/items/weapons/material/whetstone.dm index 12da5d23fd..dd0437198c 100644 --- a/code/game/objects/items/weapons/material/whetstone.dm +++ b/code/game/objects/items/weapons/material/whetstone.dm @@ -13,7 +13,7 @@ /obj/item/weapon/whetstone/attackby(obj/item/I, mob/user) if(istype(I, /obj/item/stack/material)) var/obj/item/stack/material/M = I - if(M.amount >= 5) + if(M.get_amount() >= 5) to_chat(user, "You begin to refine the [src] with [M]...") if(do_after(user, 70)) M.use(5) diff --git a/code/game/objects/items/weapons/melee/energy.dm b/code/game/objects/items/weapons/melee/energy.dm index 7610c85dfd..04ed3f1411 100644 --- a/code/game/objects/items/weapons/melee/energy.dm +++ b/code/game/objects/items/weapons/melee/energy.dm @@ -117,13 +117,6 @@ add_fingerprint(user) return -/obj/item/weapon/melee/energy/suicide_act(mob/user) - var/datum/gender/TU = gender_datums[user.get_visible_gender()] - if(active) - user.visible_message(pick("\The [user] is slitting [TU.his] stomach open with \the [src]! It looks like [TU.he] [TU.is] trying to commit seppuku.",\ - "\The [user] is falling on \the [src]! It looks like [TU.he] [TU.is] trying to commit suicide.")) - return (BRUTELOSS|FIRELOSS) - /obj/item/weapon/melee/energy/attack(mob/M, mob/user) if(active && use_cell) if(!use_charge(hitcost)) @@ -238,11 +231,6 @@ damtype = BRUTE to_chat(user, "\The [src] is de-energised. It's just a regular axe now.") -/obj/item/weapon/melee/energy/axe/suicide_act(mob/user) - var/datum/gender/TU = gender_datums[user.get_visible_gender()] - visible_message("\The [user] swings \the [src] towards [TU.his] head! It looks like [TU.he] [TU.is] trying to commit suicide.") - return (BRUTELOSS|FIRELOSS) - /obj/item/weapon/melee/energy/axe/charge name = "charge axe" desc = "An energised axe." diff --git a/code/game/objects/items/weapons/melee/misc.dm b/code/game/objects/items/weapons/melee/misc.dm index 54413bb6e0..6fddd15013 100644 --- a/code/game/objects/items/weapons/melee/misc.dm +++ b/code/game/objects/items/weapons/melee/misc.dm @@ -8,13 +8,22 @@ w_class = ITEMSIZE_NORMAL origin_tech = list(TECH_COMBAT = 4) attack_verb = list("flogged", "whipped", "lashed", "disciplined") - + hitsound = 'sound/weapons/whip.ogg' reach = 2 -/obj/item/weapon/melee/chainofcommand/suicide_act(mob/user) - var/datum/gender/T = gender_datums[user.get_visible_gender()] - user.visible_message(span("danger", "\The [user] [T.is] strangling [T.himself] with \the [src]! It looks like [T.he] [T.is] trying to commit suicide."), span("danger", "You start to strangle yourself with \the [src]!"), span("danger", "You hear the sound of someone choking!")) - return (OXYLOSS) +/obj/item/weapon/melee/chainofcommand/curator_whip + name = "leather whip" + desc = "A fine weapon for some treasure hunting." + icon_state = "curator_whip" + force = 5 + throwforce = 5 + origin_tech = list(TECH_COMBAT = 2) + +/obj/item/weapon/melee/chainofcommand/curator_whip/toy + name = "toy whip" + desc = "A fake whip. Perfect for fake treasure hunting" + force = 2 + throwforce = 2 /obj/item/weapon/melee/umbrella name = "umbrella" diff --git a/code/game/objects/items/weapons/shields_vr.dm b/code/game/objects/items/weapons/shields_vr.dm index 514ecd15c9..a311a74089 100644 --- a/code/game/objects/items/weapons/shields_vr.dm +++ b/code/game/objects/items/weapons/shields_vr.dm @@ -92,3 +92,11 @@ icon_state = "explorer_shield_P_lighted" else icon_state = "explorer_shield_P" + +/obj/item/weapon/shield/primitive + name = "primitive shield" + desc = "A defensive object that is little more than planks strapped your arm" + icon = 'icons/obj/weapons.dmi' + icon_state = "buckler" + w_class = ITEMSIZE_LARGE + base_block_chance = 30 diff --git a/code/game/objects/items/weapons/storage/backpack_vr.dm b/code/game/objects/items/weapons/storage/backpack_vr.dm index a3c1e34619..5588969224 100644 --- a/code/game/objects/items/weapons/storage/backpack_vr.dm +++ b/code/game/objects/items/weapons/storage/backpack_vr.dm @@ -190,3 +190,14 @@ icon_override = 'icons/inventory/back/mob_vr.dmi' item_state = "kr_rucksack" icon_state = "kr_rucksack" + + +//strapless +/obj/item/weapon/storage/backpack/satchel/strapless + name = "strapless satchel" + desc = "A satchel for carrying a large number of supplies easily. Without Straps" + icon = 'icons/inventory/back/item_vr.dmi' + icon_override = 'icons/inventory/back/mob_vr.dmi' + icon_state = "satchel_strapless" + item_state_slots = null + diff --git a/code/game/objects/items/weapons/storage/bags.dm b/code/game/objects/items/weapons/storage/bags.dm index a9f9d312f4..28d5f6bcde 100644 --- a/code/game/objects/items/weapons/storage/bags.dm +++ b/code/game/objects/items/weapons/storage/bags.dm @@ -245,7 +245,7 @@ return 0 var/current = 0 for(var/obj/item/stack/material/S in contents) - current += S.amount + current += S.get_amount() if(capacity == current)//If it's full, you're done if(!stop_messages) to_chat(usr, "The snatcher is full.") @@ -262,29 +262,27 @@ var/inserted = 0 var/current = 0 for(var/obj/item/stack/material/S2 in contents) - current += S2.amount - if(capacity < current + S.amount)//If the stack will fill it up + current += S2.get_amount() + if(capacity < current + S.get_amount())//If the stack will fill it up amount = capacity - current else - amount = S.amount + amount = S.get_amount() for(var/obj/item/stack/material/sheet in contents) - if(S.type == sheet.type) // we are violating the amount limitation because these are not sane objects - sheet.amount += amount // they should only be removed through procs in this file, which split them up. - S.amount -= amount + if(S.type == sheet.type) + // we are violating the amount limitation because these are not sane objects + sheet.set_amount(sheet.get_amount() + amount, TRUE) + S.use(amount) // will qdel() if we use it all inserted = 1 break - if(!inserted || !S.amount) + if(!inserted) usr.remove_from_mob(S) usr.update_icons() //update our overlays if (usr.client && usr.s_active != src) usr.client.screen -= S S.dropped(usr) - if(!S.amount) - qdel(S) - else - S.loc = src + S.loc = src orient2hud(usr) if(usr.s_active) @@ -305,7 +303,7 @@ for(var/obj/item/stack/material/I in contents) adjusted_contents++ var/datum/numbered_display/D = new/datum/numbered_display(I) - D.number = I.amount + D.number = I.get_amount() numbered_contents.Add( D ) var/row_num = 0 @@ -319,14 +317,14 @@ /obj/item/weapon/storage/bag/sheetsnatcher/quick_empty() var/location = get_turf(src) for(var/obj/item/stack/material/S in contents) - while(S.amount) - var/obj/item/stack/material/N = new S.type(location) - var/stacksize = min(S.amount,N.max_amount) - N.amount = stacksize - S.amount -= stacksize - N.update_icon() - if(!S.amount) - qdel(S) // todo: there's probably something missing here + var/cur_amount = S.get_amount() + var/full_stacks = round(cur_amount / S.max_amount) // Floor of current/max is amount of full stacks we make + var/remainder = cur_amount % S.max_amount // Current mod max is remainder after full sheets removed + for(var/i = 1 to full_stacks) + new S.type(location, S.max_amount) + if(remainder) + new S.type(location, remainder) + S.set_amount(0) orient2hud(usr) if(usr.s_active) usr.s_active.show_to(usr) @@ -342,10 +340,10 @@ //Therefore, make a new stack internally that has the remainder. // -Sayu - if(S.amount > S.max_amount) - var/obj/item/stack/material/temp = new S.type(src) - temp.amount = S.amount - S.max_amount - S.amount = S.max_amount + if(S.get_amount() > S.max_amount) + var/newstack_amt = S.get_amount() - S.max_amount + new S.type(src, newstack_amt) // The one we'll keep to replace the one we give + S.set_amount(S.max_amount) // The one we hand to the clicker return ..(S,new_location) diff --git a/code/game/objects/items/weapons/storage/belt.dm b/code/game/objects/items/weapons/storage/belt.dm index 9cee87c945..96d0326654 100644 --- a/code/game/objects/items/weapons/storage/belt.dm +++ b/code/game/objects/items/weapons/storage/belt.dm @@ -85,13 +85,24 @@ /obj/item/stack/cable_coil/random_belt ) -/obj/item/weapon/storage/belt/utility/atmostech +/obj/item/weapon/storage/belt/utility/full/multitool starts_with = list( /obj/item/weapon/tool/screwdriver, /obj/item/weapon/tool/wrench, /obj/item/weapon/weldingtool, /obj/item/weapon/tool/crowbar, /obj/item/weapon/tool/wirecutters, + /obj/item/stack/cable_coil/random_belt, + /obj/item/device/multitool + ) + +/obj/item/weapon/storage/belt/utility/atmostech + starts_with = list( + /obj/item/weapon/tool/screwdriver, + /obj/item/weapon/tool/wrench, + /obj/item/weapon/weldingtool, + /obj/item/weapon/tool/crowbar, + /obj/item/weapon/tool/wirecutters ) /obj/item/weapon/storage/belt/utility/chief @@ -111,6 +122,52 @@ /obj/item/device/analyzer ) +/obj/item/weapon/storage/belt/utility/holding + name = "tool-belt of holding" + desc = "A belt that uses localized bluespace pockets to hold more items than expected!" + icon_state = "utility_holding" + storage_slots = 14 //twice the amount as a normal belt + max_storage_space = ITEMSIZE_COST_NORMAL * 14 + can_hold = list( + /obj/item/weapon/tool/crowbar, + /obj/item/weapon/tool/screwdriver, + /obj/item/weapon/weldingtool, + /obj/item/weapon/tool/wirecutters, + /obj/item/weapon/tool/wrench, + /obj/item/device/multitool, + /obj/item/device/flashlight, + /obj/item/weapon/cell/device, + /obj/item/stack/cable_coil, + /obj/item/device/t_scanner, + /obj/item/device/analyzer, + /obj/item/clothing/glasses, + /obj/item/clothing/gloves, + /obj/item/device/pda, + /obj/item/device/megaphone, + /obj/item/taperoll, + /obj/item/device/radio/headset, + /obj/item/device/robotanalyzer, + /obj/item/weapon/material/minihoe, + /obj/item/weapon/material/knife/machete/hatchet, + /obj/item/device/analyzer/plant_analyzer, + /obj/item/weapon/extinguisher/mini, + /obj/item/weapon/tape_roll, + /obj/item/device/integrated_electronics/wirer, + /obj/item/device/integrated_electronics/debugger, + /obj/item/weapon/shovel/spade, + /obj/item/stack/nanopaste, + /obj/item/weapon/cell, //this is a bigger belt, might as well make it hold bigger cells too + /obj/item/weapon/pipe_dispenser, //bigger belt for bigger tools + /obj/item/weapon/rcd, //see above + /obj/item/device/quantum_pad_booster, + /obj/item/weapon/inducer, + /obj/item/stack/material/steel, + /obj/item/stack/material/glass, + /obj/item/device/lightreplacer, + /obj/item/weapon/pickaxe/plasmacutter + ) + + /obj/item/weapon/storage/belt/medical name = "medical belt" desc = "Can hold various medical equipment." @@ -149,6 +206,13 @@ desc = "A sturdy black webbing belt with attached pouches." icon_state = "ems" +/obj/item/weapon/storage/belt/medical/holding + name = "medical belt of holding" + desc = "A belt that uses localized bluespace pockets to hold more items than expected!" + icon_state = "med_holding" + storage_slots = 14 //twice the amount as a normal belt + max_storage_space = ITEMSIZE_COST_NORMAL * 14 + /obj/item/weapon/storage/belt/security name = "security belt" desc = "Can hold security gear like handcuffs and flashes." @@ -325,10 +389,28 @@ max_w_class = ITEMSIZE_NORMAL max_storage_space = ITEMSIZE_COST_NORMAL * 7 +/obj/item/weapon/storage/belt/bandolier + name = "shotgun bandolier" + desc = "Designed to hold shotgun shells. Can't really hold more than that." + icon_state = "bandolier1" + storage_slots = 8 + max_w_class = ITEMSIZE_TINY + can_hold = list( + /obj/item/ammo_casing/a12g, + /obj/item/ammo_casing/a12g/pellet, + /obj/item/ammo_casing/a12g/blank, + /obj/item/ammo_casing/a12g/practice, + /obj/item/ammo_casing/a12g/beanbag, + /obj/item/ammo_casing/a12g/stunshell, + /obj/item/ammo_casing/a12g/flash, + /obj/item/ammo_casing/a12g/emp, + /obj/item/ammo_casing/a12g/flechette + ) + /obj/item/weapon/storage/belt/security/tactical/bandolier - name = "combat belt" + name = "combat bandolier" desc = "Can hold security gear like handcuffs and flashes, with more pouches for more storage." - icon_state = "bandolier" + icon_state = "bandolier2" /obj/item/weapon/storage/belt/janitor name = "janitorial belt" @@ -447,4 +529,13 @@ name = "ranger belt" desc = "The fancy utility-belt holding the tools, cuffs and gadgets of the Go Go ERT-Rangers. The belt buckle is not real phoron, but it is still surprisingly comfortable to wear." icon = 'icons/obj/clothing/ranger.dmi' - icon_state = "ranger_belt" \ No newline at end of file + icon_state = "ranger_belt" + +/obj/item/weapon/storage/belt/dbandolier + name = "\improper Donk-Soft bandolier" + desc = "A Donk-Soft bandolier! Carry your spare darts anywhere! Ages 8 and up." + icon_state = "dbandolier" + storage_slots = 8 + can_hold = list( + /obj/item/ammo_casing/afoam_dart + ) \ No newline at end of file diff --git a/code/game/objects/items/weapons/storage/boxes.dm b/code/game/objects/items/weapons/storage/boxes.dm index 4e31dd5f9a..4eac505ebf 100644 --- a/code/game/objects/items/weapons/storage/boxes.dm +++ b/code/game/objects/items/weapons/storage/boxes.dm @@ -22,6 +22,7 @@ /obj/item/weapon/storage/box name = "box" desc = "It's just an ordinary box." + icon = 'icons/obj/boxes.dmi' icon_state = "box" item_state = "syringe_kit" center_of_mass = list("x" = 13,"y" = 10) @@ -72,21 +73,29 @@ /obj/item/weapon/storage/box/survival name = "emergency supply box" desc = "A survival box issued to crew members for use in emergency situations." + icon_state = "survival" starts_with = list( + /obj/item/weapon/tool/prybar/red, + /obj/item/clothing/glasses/goggles, /obj/item/clothing/mask/breath ) /obj/item/weapon/storage/box/survival/synth name = "synthetic supply box" desc = "A survival box issued to synthetic crew members for use in emergency situations." + icon_state = "survival_synth" starts_with = list( + /obj/item/weapon/tool/prybar/red, + /obj/item/clothing/glasses/goggles ) /obj/item/weapon/storage/box/survival/comp name = "emergency supply box" desc = "A comprehensive survival box issued to crew members for use in emergency situations. Contains additional supplies." - icon_state = "survival" + icon_state = "survival_comp" starts_with = list( + /obj/item/weapon/tool/prybar/red, + /obj/item/clothing/glasses/goggles, /obj/item/weapon/reagent_containers/hypospray/autoinjector, /obj/item/stack/medical/bruise_pack, /obj/item/device/flashlight/glowstick, @@ -115,7 +124,7 @@ /obj/item/weapon/storage/box/syringegun name = "box of syringe gun cartridges" desc = "A box full of compressed gas cartridges." - icon_state = "syringe" + icon_state = "syringe2" starts_with = list(/obj/item/weapon/syringe_cartridge = 7) /obj/item/weapon/storage/box/beakers @@ -127,6 +136,7 @@ /obj/item/weapon/storage/box/injectors name = "box of DNA injectors" desc = "This box contains injectors it seems." + icon_state = "dna" starts_with = list( /obj/item/weapon/dnainjector/h2m = 3, /obj/item/weapon/dnainjector/m2h = 3 @@ -374,17 +384,19 @@ /obj/item/weapon/storage/box/condimentbottles name = "box of condiment bottles" desc = "It has a large ketchup smear on it." + icon_state = "condiment" starts_with = list(/obj/item/weapon/reagent_containers/food/condiment = 7) /obj/item/weapon/storage/box/cups name = "box of paper cups" desc = "It has pictures of paper cups on the front." + icon_state = "cups" starts_with = list(/obj/item/weapon/reagent_containers/food/drinks/sillycup = 7) /obj/item/weapon/storage/box/donkpockets name = "box of donk-pockets" desc = "Instructions: Heat in microwave. Product will cool if not eaten within seven minutes." - icon_state = "donk_kit" + icon_state = "donkpocketbox" starts_with = list(/obj/item/weapon/reagent_containers/food/snacks/donkpocket = 7) /obj/item/weapon/storage/box/sinpockets @@ -450,6 +462,7 @@ /obj/item/weapon/storage/box/pillbottles name = "box of pill bottles" desc = "It has pictures of pill bottles on its front." + icon_state = "pillbox" starts_with = list(/obj/item/weapon/storage/pill_bottle = 7) /obj/item/weapon/storage/box/snappops @@ -485,12 +498,12 @@ /obj/item/weapon/storage/box/autoinjectors name = "box of injectors" desc = "Contains autoinjectors." - icon_state = "syringe" + icon_state = "auto" starts_with = list(/obj/item/weapon/reagent_containers/hypospray/autoinjector = 7) /obj/item/weapon/storage/box/lights name = "box of replacement bulbs" - icon = 'icons/obj/storage.dmi' + icon = 'icons/obj/boxes.dmi' icon_state = "light" desc = "This box is shaped on the inside so that only light tubes and bulbs fit." item_state_slots = list(slot_r_hand_str = "syringe_kit", slot_l_hand_str = "syringe_kit") @@ -555,3 +568,17 @@ name = "ambrosia deus seeds box" desc = "Contains the seeds you need to get a proper healthy high." starts_with = list(/obj/item/seeds/ambrosiadeusseed = 7) + +/obj/item/weapon/storage/box/capguntoy + name = "\improper AlliCo \"Zipper\" Cap Gun" + icon = 'icons/obj/gun_toy.dmi' + icon_state = "cap_gun_box" + desc = "This box is shaped on the inside so that only the \"Zipper\" Capgun and extra caps can fit." + item_state_slots = list(slot_r_hand_str = "syringe_kit", slot_l_hand_str = "syringe_kit") + storage_slots = 2 + max_w_class = ITEMSIZE_NORMAL + can_hold = list(/obj/item/weapon/gun/projectile/revolver/capgun, /obj/item/ammo_magazine/ammo_box/cap) + starts_with = list( + /obj/item/weapon/gun/projectile/revolver/capgun = 1, + /obj/item/ammo_magazine/ammo_box/cap = 1 + ) diff --git a/code/game/objects/items/weapons/storage/boxes_vr.dm b/code/game/objects/items/weapons/storage/boxes_vr.dm index 8feee76bdd..e234f22d4a 100644 --- a/code/game/objects/items/weapons/storage/boxes_vr.dm +++ b/code/game/objects/items/weapons/storage/boxes_vr.dm @@ -1,27 +1,3 @@ -/obj/item/weapon/storage/box/survival - starts_with = list( - /obj/item/weapon/tool/prybar/red, - /obj/item/clothing/glasses/goggles, - /obj/item/clothing/mask/breath - ) - -/obj/item/weapon/storage/box/survival/synth - starts_with = list( - /obj/item/weapon/tool/prybar/red, - /obj/item/clothing/glasses/goggles - ) - -/obj/item/weapon/storage/box/survival/comp - starts_with = list( - /obj/item/weapon/tool/prybar/red, - /obj/item/clothing/glasses/goggles, - /obj/item/weapon/reagent_containers/hypospray/autoinjector, - /obj/item/stack/medical/bruise_pack, - /obj/item/device/flashlight/glowstick, - /obj/item/weapon/reagent_containers/food/snacks/candy/proteinbar, - /obj/item/clothing/mask/breath - ) - /obj/item/weapon/storage/box/explorerkeys name = "box of volunteer headsets" desc = "A box full of volunteer headsets, for issuing out to exploration volunteers." @@ -39,7 +15,7 @@ /obj/item/weapon/storage/box/survival/space name = "boxed emergency suit and helmet" - icon_state = "survivaleng" + icon_state = "survival_comp3" starts_with = list( /obj/item/clothing/suit/space/emergency, /obj/item/clothing/head/helmet/space/emergency, @@ -49,3 +25,14 @@ /obj/item/weapon/storage/secure/briefcase/trashmoney starts_with = list(/obj/item/weapon/spacecash/c200 = 10) + +/obj/item/weapon/storage/box/brainzsnax + name = "\improper BrainzSnax box" + icon_state = "brainzsnax_box" + desc = "A box designed to hold canned food. This one has BrainzSnax branding printed on it." + can_hold = list(/obj/item/weapon/reagent_containers/food/snacks/canned) + max_storage_space = ITEMSIZE_COST_NORMAL * 6 + starts_with = list(/obj/item/weapon/reagent_containers/food/snacks/canned/brainzsnax = 6) + +/obj/item/weapon/storage/box/brainzsnax/red + starts_with = list(/obj/item/weapon/reagent_containers/food/snacks/canned/brainzsnax/red = 6) \ No newline at end of file diff --git a/code/game/objects/items/weapons/storage/egg_vr.dm b/code/game/objects/items/weapons/storage/egg_vr.dm index a035ce2264..0adb9533bf 100644 --- a/code/game/objects/items/weapons/storage/egg_vr.dm +++ b/code/game/objects/items/weapons/storage/egg_vr.dm @@ -16,6 +16,10 @@ allow_quick_empty = TRUE use_sound = 'sound/items/drop/flesh.ogg' +/obj/item/weapon/storage/vore_egg/Initialize() + . = ..() + randpixel_xy() + /obj/item/weapon/storage/vore_egg/open(mob/user as mob) if(isobserver(user)) return diff --git a/code/game/objects/items/weapons/storage/fancy.dm b/code/game/objects/items/weapons/storage/fancy.dm index 673f54340e..aa0e4598ea 100644 --- a/code/game/objects/items/weapons/storage/fancy.dm +++ b/code/game/objects/items/weapons/storage/fancy.dm @@ -68,7 +68,8 @@ item_state = "candlebox5" throwforce = 2 slot_flags = SLOT_BELT - max_storage_space = ITEMSIZE_COST_SMALL * 5 + max_storage_space = ITEMSIZE_COST_TINY * 5 + can_hold = list(/obj/item/weapon/flame/candle) starts_with = list(/obj/item/weapon/flame/candle = 5) /obj/item/weapon/storage/fancy/whitecandle_box @@ -80,7 +81,8 @@ item_state = "whitecandlebox5" throwforce = 2 slot_flags = SLOT_BELT - max_storage_space = ITEMSIZE_COST_SMALL * 5 + max_storage_space = ITEMSIZE_COST_TINY * 5 + can_hold = list(/obj/item/weapon/flame/candle) starts_with = list(/obj/item/weapon/flame/candle/white = 5) /obj/item/weapon/storage/fancy/blackcandle_box @@ -92,7 +94,8 @@ item_state = "blackcandlebox5" throwforce = 2 slot_flags = SLOT_BELT - max_storage_space = ITEMSIZE_COST_SMALL * 5 + max_storage_space = ITEMSIZE_COST_TINY * 5 + can_hold = list(/obj/item/weapon/flame/candle) starts_with = list(/obj/item/weapon/flame/candle/black = 5) diff --git a/code/game/objects/items/weapons/storage/pouches.dm b/code/game/objects/items/weapons/storage/pouches.dm index 62e04c0764..3cbf4d5130 100644 --- a/code/game/objects/items/weapons/storage/pouches.dm +++ b/code/game/objects/items/weapons/storage/pouches.dm @@ -15,7 +15,7 @@ can_hold = null pocketable = TRUE - var/insert_delay = 0 + var/insert_delay = 0 SECONDS var/remove_delay = 2 SECONDS /obj/item/weapon/storage/pouch/stall_insertion(obj/item/W, mob/user) @@ -23,26 +23,23 @@ if(user.get_active_hand() == src || user.get_inactive_hand() == src) return TRUE // Skip delay - if(insert_delay && !do_after(user, 2 SECONDS, src, needhand = TRUE, exclusive = TASK_USER_EXCLUSIVE)) - return FALSE // Moved or whatever + if(insert_delay && !do_after(user, insert_delay, src, needhand = TRUE, exclusive = TASK_USER_EXCLUSIVE)) + return FALSE // Moved while there is a delay - if(W in src) - return TRUE // Item is still inside - - return FALSE + return TRUE //Now we're allowed to put the item in the pouch /obj/item/weapon/storage/pouch/stall_removal(obj/item/W, mob/user) // No delay if you have the pouch in your hands if(user.get_active_hand() == src || user.get_inactive_hand() == src) return TRUE // Skip delay - if(remove_delay && !do_after(user, 2 SECONDS, src, needhand = TRUE, exclusive = TASK_USER_EXCLUSIVE)) - return FALSE // Moved or whatever + if(remove_delay && !do_after(user, remove_delay, src, needhand = TRUE, exclusive = TASK_USER_EXCLUSIVE)) + return FALSE // Moved while there is a delay if(W in src) return TRUE // Item is still inside - return FALSE + return FALSE //Item was somehow already removed /obj/item/weapon/storage/pouch/pocket_description(mob/haver, mob/examiner) return "[src]" diff --git a/code/game/objects/items/weapons/storage/storage.dm b/code/game/objects/items/weapons/storage/storage.dm index 73f8b7728e..6dfabb3d86 100644 --- a/code/game/objects/items/weapons/storage/storage.dm +++ b/code/game/objects/items/weapons/storage/storage.dm @@ -679,6 +679,10 @@ if(!Adjacent(usr)) return + //VOREStation Add: No turf dumping if user is in a belly + if(isbelly(usr.loc)) + return + drop_contents() /obj/item/weapon/storage/proc/drop_contents() // why is this a proc? literally just for RPEDs diff --git a/code/game/objects/items/weapons/storage/toolbox.dm b/code/game/objects/items/weapons/storage/toolbox.dm index e62ac35ea8..bd80bf247e 100644 --- a/code/game/objects/items/weapons/storage/toolbox.dm +++ b/code/game/objects/items/weapons/storage/toolbox.dm @@ -1,7 +1,10 @@ +/* + * Toolboxes + */ /obj/item/weapon/storage/toolbox name = "toolbox" desc = "Danger. Very robust." - icon = 'icons/obj/storage.dmi' + icon = 'icons/obj/storage_vr.dmi' icon_state = "red" item_state_slots = list(slot_r_hand_str = "toolbox_red", slot_l_hand_str = "toolbox_red") center_of_mass = list("x" = 16,"y" = 11) @@ -18,8 +21,10 @@ drop_sound = 'sound/items/drop/toolbox.ogg' pickup_sound = 'sound/items/pickup/toolbox.ogg' +//Emergency /obj/item/weapon/storage/toolbox/emergency name = "emergency toolbox" + icon = 'icons/obj/storage_vr.dmi' icon_state = "red" item_state_slots = list(slot_r_hand_str = "toolbox_red", slot_l_hand_str = "toolbox_red") starts_with = list( @@ -34,8 +39,10 @@ new /obj/item/device/flashlight/flare(src) . = ..() +//Mechanical /obj/item/weapon/storage/toolbox/mechanical name = "mechanical toolbox" + icon = 'icons/obj/storage_vr.dmi' icon_state = "blue" item_state_slots = list(slot_r_hand_str = "toolbox_blue", slot_l_hand_str = "toolbox_blue") starts_with = list( @@ -47,8 +54,10 @@ /obj/item/weapon/tool/wirecutters ) +//Electrical /obj/item/weapon/storage/toolbox/electrical name = "electrical toolbox" + icon = 'icons/obj/storage_vr.dmi' icon_state = "yellow" item_state_slots = list(slot_r_hand_str = "toolbox_yellow", slot_l_hand_str = "toolbox_yellow") starts_with = list( @@ -67,8 +76,10 @@ new /obj/item/stack/cable_coil/random(src,30) calibrate_size() +//Syndicate /obj/item/weapon/storage/toolbox/syndicate name = "black and red toolbox" + icon = 'icons/obj/storage_vr.dmi' icon_state = "syndicate" item_state_slots = list(slot_r_hand_str = "toolbox_syndi", slot_l_hand_str = "toolbox_syndi") origin_tech = list(TECH_COMBAT = 1, TECH_ILLEGAL = 1) @@ -94,9 +105,43 @@ /obj/item/device/analyzer ) +//Brass +/obj/item/weapon/storage/toolbox/brass + name = "brass toolbox" + icon = 'icons/obj/storage_vr.dmi' + icon_state = "brass" + item_state_slots = list(slot_r_hand_str = "toolbox_yellow", slot_l_hand_str = "toolbox_yellow") + starts_with = list( + /obj/item/weapon/tool/crowbar/brass, + /obj/item/weapon/tool/wirecutters/brass, + /obj/item/weapon/tool/screwdriver/brass, + /obj/item/weapon/tool/wrench/brass, + /obj/item/weapon/weldingtool/brass + ) + +//Hydro +/obj/item/weapon/storage/toolbox/hydro + name = "hydroponic toolbox" + icon = 'icons/obj/storage_vr.dmi' + icon_state = "green" + item_state_slots = list(slot_r_hand_str = "toolbox_green", slot_l_hand_str = "toolbox_green") + starts_with = list( + /obj/item/device/analyzer/plant_analyzer, + /obj/item/weapon/material/minihoe, + /obj/item/weapon/material/knife/machete/hatchet, + /obj/item/weapon/tool/wirecutters/clippers/trimmers, + /obj/item/weapon/reagent_containers/spray/plantbgone, + /obj/item/weapon/reagent_containers/glass/beaker + ) + +/* + * Lunchboxes + */ + /obj/item/weapon/storage/toolbox/lunchbox max_storage_space = ITEMSIZE_COST_SMALL * 4 //slightly smaller than a toolbox name = "rainbow lunchbox" + icon = 'icons/obj/storage.dmi' icon_state = "lunchbox_rainbow" item_state_slots = list(slot_r_hand_str = "toolbox_pink", slot_l_hand_str = "toolbox_pink") desc = "A little lunchbox. This one is the colors of the rainbow!" @@ -125,6 +170,7 @@ /obj/item/weapon/storage/toolbox/lunchbox/heart name = "heart lunchbox" + icon = 'icons/obj/storage.dmi' icon_state = "lunchbox_lovelyhearts" item_state_slots = list(slot_r_hand_str = "toolbox_pink", slot_l_hand_str = "toolbox_pink") desc = "A little lunchbox. This one has cute little hearts on it!" @@ -134,6 +180,7 @@ /obj/item/weapon/storage/toolbox/lunchbox/cat name = "cat lunchbox" + icon = 'icons/obj/storage.dmi' icon_state = "lunchbox_sciencecatshow" item_state_slots = list(slot_r_hand_str = "toolbox_green", slot_l_hand_str = "toolbox_green") desc = "A little lunchbox. This one has a cute little science cat from a popular show on it!" @@ -143,6 +190,7 @@ /obj/item/weapon/storage/toolbox/lunchbox/nt name = "NanoTrasen brand lunchbox" + icon = 'icons/obj/storage.dmi' icon_state = "lunchbox_nanotrasen" item_state_slots = list(slot_r_hand_str = "toolbox_blue", slot_l_hand_str = "toolbox_blue") desc = "A little lunchbox. This one is branded with the NanoTrasen logo!" @@ -152,6 +200,7 @@ /obj/item/weapon/storage/toolbox/lunchbox/mars name = "\improper Mojave university lunchbox" + icon = 'icons/obj/storage.dmi' icon_state = "lunchbox_marsuniversity" item_state_slots = list(slot_r_hand_str = "toolbox_red", slot_l_hand_str = "toolbox_red") desc = "A little lunchbox. This one is branded with the Mojave university logo!" @@ -161,6 +210,7 @@ /obj/item/weapon/storage/toolbox/lunchbox/cti name = "\improper CTI lunchbox" + icon = 'icons/obj/storage.dmi' icon_state = "lunchbox_cti" item_state_slots = list(slot_r_hand_str = "toolbox_blue", slot_l_hand_str = "toolbox_blue") desc = "A little lunchbox. This one is branded with the CTI logo!" @@ -170,6 +220,7 @@ /obj/item/weapon/storage/toolbox/lunchbox/nymph name = "\improper Diona nymph lunchbox" + icon = 'icons/obj/storage.dmi' icon_state = "lunchbox_dionanymph" item_state_slots = list(slot_r_hand_str = "toolbox_yellow", slot_l_hand_str = "toolbox_yellow") desc = "A little lunchbox. This one is an adorable Diona nymph on the side!" @@ -179,6 +230,7 @@ /obj/item/weapon/storage/toolbox/lunchbox/syndicate name = "black and red lunchbox" + icon = 'icons/obj/storage.dmi' icon_state = "lunchbox_syndie" item_state_slots = list(slot_r_hand_str = "toolbox_syndi", slot_l_hand_str = "toolbox_syndi") desc = "A little lunchbox. This one is a sleek black and red, made of a durable steel!" diff --git a/code/game/objects/items/weapons/stunbaton.dm b/code/game/objects/items/weapons/stunbaton.dm index fe8f6f1a00..f7314010ba 100644 --- a/code/game/objects/items/weapons/stunbaton.dm +++ b/code/game/objects/items/weapons/stunbaton.dm @@ -31,11 +31,6 @@ /obj/item/weapon/melee/baton/get_cell() return bcell -/obj/item/weapon/melee/baton/suicide_act(mob/user) - var/datum/gender/TU = gender_datums[user.get_visible_gender()] - user.visible_message("\The [user] is putting the live [name] in [TU.his] mouth! It looks like [TU.he] [TU.is] trying to commit suicide.") - return (FIRELOSS) - /obj/item/weapon/melee/baton/MouseDrop(obj/over_object as obj) if(!canremove) return diff --git a/code/game/objects/items/weapons/surgery_tools.dm b/code/game/objects/items/weapons/surgery_tools.dm index 61a7448334..c852fefe9f 100644 --- a/code/game/objects/items/weapons/surgery_tools.dm +++ b/code/game/objects/items/weapons/surgery_tools.dm @@ -84,12 +84,6 @@ attack_verb = list("drilled") drop_sound = 'sound/items/drop/accessory.ogg' -/obj/item/weapon/surgical/surgicaldrill/suicide_act(mob/user) - var/datum/gender/TU = gender_datums[user.get_visible_gender()] - to_chat(viewers(user),pick("\The [user] is pressing \the [src] to [TU.his] temple and activating it! It looks like [TU.hes] trying to commit suicide.", - "\The [user] is pressing \the [src] to [TU.his] chest and activating it! It looks like [TU.hes] trying to commit suicide.")) - return (BRUTELOSS) - /* * Scalpel */ @@ -110,13 +104,6 @@ attack_verb = list("attacked", "slashed", "stabbed", "sliced", "torn", "ripped", "diced", "cut") drop_sound = 'sound/items/drop/knife.ogg' -/obj/item/weapon/surgical/scalpel/suicide_act(mob/user) - var/datum/gender/TU = gender_datums[user.get_visible_gender()] - to_chat(viewers(user),pick("\The [user] is slitting [TU.his] wrists with the [src.name]! It looks like [TU.hes] trying to commit suicide.", \ - "\The [user] is slitting [TU.his] throat with the [src.name]! It looks like [TU.hes] trying to commit suicide.", \ - "\The [user] is slitting [TU.his] stomach open with the [src.name]! It looks like [TU.hes] trying to commit seppuku.")) - return (BRUTELOSS) - /* * Researchable Scalpels */ diff --git a/code/game/objects/items/weapons/tools/brass.dm b/code/game/objects/items/weapons/tools/brass.dm new file mode 100644 index 0000000000..eedebe3220 --- /dev/null +++ b/code/game/objects/items/weapons/tools/brass.dm @@ -0,0 +1,32 @@ +/* + * Brass Tools + */ + +//Crowbar +/obj/item/weapon/tool/crowbar/brass + icon_state = "crowbar_brass" + item_state = "crowbar" + +//Cutters +/obj/item/weapon/tool/wirecutters/brass + icon_state = "cutters_brass" + item_state = "cutters_yellow" + +//Screwdriver +/obj/item/weapon/tool/screwdriver/brass + icon_state = "screwdriver_brass" + item_state = "screwdriver_black" + +//Wrench +/obj/item/weapon/tool/wrench/brass + icon_state = "wrench_brass" + item_state = "wrench_brass" + +//Welder +/obj/item/weapon/weldingtool/brass + name = "brass welding tool" + desc = "A welder made from brass fittings." + icon_state = "brasswelder" + max_fuel = 20 + origin_tech = list(TECH_ENGINEERING = 2, TECH_PHORON = 2) + matter = list(MAT_STEEL = 70, MAT_GLASS = 60) \ No newline at end of file diff --git a/code/game/objects/items/weapons/tools/crowbar.dm b/code/game/objects/items/weapons/tools/crowbar.dm index 0d34937656..9da82688c3 100644 --- a/code/game/objects/items/weapons/tools/crowbar.dm +++ b/code/game/objects/items/weapons/tools/crowbar.dm @@ -1,7 +1,6 @@ /* * Crowbar */ - /obj/item/weapon/tool/crowbar name = "crowbar" desc = "Used to remove floors and to pry open doors." @@ -27,6 +26,10 @@ icon_state = "red_crowbar" item_state = "crowbar_red" +/obj/item/weapon/tool/crowbar/old + icon = 'icons/obj/tools.dmi' + icon_state = "old_crowbar" + item_state = "crowbar" /datum/category_item/catalogue/anomalous/precursor_a/alien_crowbar name = "Precursor Alpha Object - Hard Light Pry Tool" diff --git a/code/game/objects/items/weapons/tools/crowbar_vr.dm b/code/game/objects/items/weapons/tools/crowbar_vr.dm index b376c15af8..b846a0e294 100644 --- a/code/game/objects/items/weapons/tools/crowbar_vr.dm +++ b/code/game/objects/items/weapons/tools/crowbar_vr.dm @@ -7,11 +7,11 @@ desc = "A steel bar with a wedge, designed specifically for opening unpowered doors in an emergency. It comes in a variety of configurations - collect them all!" icon = 'icons/obj/tools_vr.dmi' icon_state = "prybar" + item_state = "crowbar" slot_flags = SLOT_BELT force = 4 throwforce = 5 pry = 1 - item_state = "crowbar" w_class = ITEMSIZE_SMALL origin_tech = list(TECH_ENGINEERING = 1) matter = list(MAT_STEEL = 30) diff --git a/code/game/objects/items/weapons/tools/screwdriver.dm b/code/game/objects/items/weapons/tools/screwdriver.dm index 7b673c0b7e..faabb582f7 100644 --- a/code/game/objects/items/weapons/tools/screwdriver.dm +++ b/code/game/objects/items/weapons/tools/screwdriver.dm @@ -24,12 +24,6 @@ tool_qualities = list(TOOL_SCREWDRIVER) var/random_color = TRUE -/obj/item/weapon/tool/screwdriver/suicide_act(mob/user) - var/datum/gender/TU = gender_datums[user.get_visible_gender()] - to_chat(viewers(user), pick("\The [user] is stabbing the [src.name] into [TU.his] temple! It looks like [TU.hes] trying to commit suicide.", \ - "\The [user] is stabbing the [src.name] into [TU.his] heart! It looks like [TU.hes] trying to commit suicide.")) - return(BRUTELOSS) - /obj/item/weapon/tool/screwdriver/New() if(random_color) switch(pick("red","blue","purple","brown","green","cyan","yellow")) diff --git a/code/game/objects/items/weapons/tools/weldingtool.dm b/code/game/objects/items/weapons/tools/weldingtool.dm index 30056ed7a4..d6181cf126 100644 --- a/code/game/objects/items/weapons/tools/weldingtool.dm +++ b/code/game/objects/items/weapons/tools/weldingtool.dm @@ -21,7 +21,7 @@ //R&D tech level origin_tech = list(TECH_ENGINEERING = 1) - + tool_qualities = list(TOOL_WELDER) //Welding tool specific stuff @@ -375,7 +375,7 @@ /obj/item/weapon/weldingtool/hugetank name = "upgraded welding tool" desc = "A much larger welder with a huge tank." - icon_state = "indwelder" + icon_state = "upindwelder" max_fuel = 80 w_class = ITEMSIZE_NORMAL origin_tech = list(TECH_ENGINEERING = 3) @@ -392,6 +392,9 @@ toolspeed = 2 eye_safety_modifier = 1 // Safer on eyes. +/obj/item/weapon/weldingtool/mini/two + icon_state = "miniwelder2" + /datum/category_item/catalogue/anomalous/precursor_a/alien_welder name = "Precursor Alpha Object - Self Refueling Exothermic Tool" desc = "An unwieldly tool which somewhat resembles a weapon, due to \ diff --git a/code/game/objects/items/weapons/tools/wirecutters.dm b/code/game/objects/items/weapons/tools/wirecutters.dm index a8f64d4f10..6e5973f0c3 100644 --- a/code/game/objects/items/weapons/tools/wirecutters.dm +++ b/code/game/objects/items/weapons/tools/wirecutters.dm @@ -6,6 +6,7 @@ desc = "This cuts wires." icon = 'icons/obj/tools.dmi' icon_state = "cutters" + item_state = "cutters" center_of_mass = list("x" = 18,"y" = 10) slot_flags = SLOT_BELT force = 6 @@ -26,9 +27,20 @@ var/random_color = TRUE /obj/item/weapon/tool/wirecutters/New() - if(random_color && prob(50)) - icon_state = "cutters-y" - item_state = "cutters_yellow" + if(random_color) + switch(pick("red","blue","yellow")) + if ("red") + icon_state = "cutters" + item_state = "cutters" + if ("blue") + icon_state = "cutters-b" + item_state = "cutters_blue" + if ("yellow") + icon_state = "cutters-y" + item_state = "cutters_yellow" + + if (prob(75)) + src.pixel_y = rand(0, 16) ..() /obj/item/weapon/tool/wirecutters/attack(mob/living/carbon/C as mob, mob/user as mob) diff --git a/code/game/objects/items/weapons/tools/wrench.dm b/code/game/objects/items/weapons/tools/wrench.dm index 052eae0d2c..634382ff11 100644 --- a/code/game/objects/items/weapons/tools/wrench.dm +++ b/code/game/objects/items/weapons/tools/wrench.dm @@ -25,6 +25,14 @@ usesound = 'sound/items/drill_use.ogg' toolspeed = 0.5 +/obj/item/weapon/tool/wrench/pipe + name = "pipe wrench" + desc = "A wrench used for plumbing. Can make a good makeshift weapon." + icon_state = "pipe_wrench" + slot_flags = SLOT_BELT + force = 8 + throwforce = 10 + /obj/item/weapon/tool/wrench/hybrid // Slower and bulkier than normal power tools, but it has the power of reach. If reach even worked half the time. name = "strange wrench" desc = "A wrench with many common uses. Can be usually found in your hand." @@ -40,7 +48,6 @@ toolspeed = 0.5 reach = 2 - /datum/category_item/catalogue/anomalous/precursor_a/alien_wrench name = "Precursor Alpha Object - Fastener Torque Tool" desc = "This is an object that has a distinctive tool shape. \ diff --git a/code/game/objects/items/weapons/traps.dm b/code/game/objects/items/weapons/traps.dm index 0cf9db2b57..c183bc5c76 100644 --- a/code/game/objects/items/weapons/traps.dm +++ b/code/game/objects/items/weapons/traps.dm @@ -22,11 +22,6 @@ var/camo_net = FALSE var/stun_length = 0.25 SECONDS -/obj/item/weapon/beartrap/suicide_act(mob/user) - var/datum/gender/T = gender_datums[user.get_visible_gender()] - to_chat(viewers(user),"[user] is putting the [src.name] on [T.his] head! It looks like [T.hes] trying to commit suicide.") - return (BRUTELOSS) - /obj/item/weapon/beartrap/proc/can_use(mob/user) return (user.IsAdvancedToolUser() && !issilicon(user) && !user.stat && !user.restrained()) diff --git a/code/game/objects/items/weapons/weaponry.dm b/code/game/objects/items/weapons/weaponry.dm index 28e38a0d70..02c25c736d 100644 --- a/code/game/objects/items/weapons/weaponry.dm +++ b/code/game/objects/items/weapons/weaponry.dm @@ -12,11 +12,6 @@ drop_sound = 'sound/items/drop/sword.ogg' pickup_sound = 'sound/items/pickup/sword.ogg' -/obj/item/weapon/nullrod/suicide_act(mob/user) - var/datum/gender/T = gender_datums[user.get_visible_gender()] - to_chat(viewers(user),"[user] is impaling [T.himself] with the [src.name]! It looks like [T.he] [T.is] trying to commit suicide.") - return (BRUTELOSS|FIRELOSS) - /obj/item/weapon/nullrod/attack(mob/M as mob, mob/living/user as mob) //Paste from old-code to decult with a null rod. add_attack_logs(user,M,"Hit with [src] (nullrod)") diff --git a/code/game/objects/random/_random.dm b/code/game/objects/random/_random.dm index e9beda6de1..df32a567d7 100644 --- a/code/game/objects/random/_random.dm +++ b/code/game/objects/random/_random.dm @@ -1,8 +1,8 @@ /obj/random name = "random object" desc = "This item type is used to spawn random objects at round-start" - icon = 'icons/misc/mark.dmi' - icon_state = "rup" + icon = 'icons/misc/random_spawners.dmi' + icon_state = "generic" var/spawn_nothing_percentage = 0 // this variable determines the likelyhood that this random object will not spawn anything var/drop_get_turf = TRUE @@ -80,7 +80,7 @@ var/list/random_useful_ /obj/random/single name = "randomly spawned object" desc = "This item type is used to randomly spawn a given object at round-start" - icon_state = "x3" + icon_state = "generic" var/spawn_object = null /obj/random/single/item_to_spawn() @@ -104,8 +104,8 @@ var/list/multi_point_spawns /obj/random_multi name = "random object spawn point" desc = "This item type is used to spawn random objects at round-start. Only one spawn point for a given group id is selected." - icon = 'icons/misc/mark.dmi' - icon_state = "x3" + icon = 'icons/misc/random_spawners.dmi' + icon_state = "generic_3" invisibility = INVISIBILITY_MAXIMUM var/id // Group id var/weight // Probability weight for this spawn point diff --git a/code/game/objects/items/weapons/power_cells.dm b/code/game/objects/random/gradient.dm similarity index 100% rename from code/game/objects/items/weapons/power_cells.dm rename to code/game/objects/random/gradient.dm diff --git a/code/game/objects/random/guns_and_ammo.dm b/code/game/objects/random/guns_and_ammo.dm index cb8362879d..c4766db55a 100644 --- a/code/game/objects/random/guns_and_ammo.dm +++ b/code/game/objects/random/guns_and_ammo.dm @@ -1,8 +1,7 @@ /obj/random/gun/random name = "Random Weapon" desc = "This is a random energy or ballistic weapon." - icon = 'icons/obj/gun.dmi' - icon_state = "energystun100" + icon_state = "gun" /obj/random/gun/random/item_to_spawn() return pick(prob(5);/obj/random/energy, @@ -10,9 +9,8 @@ /obj/random/energy name = "Random Energy Weapon" - desc = "This is a random weapon." - icon = 'icons/obj/gun.dmi' - icon_state = "energykill100" + desc = "This is a random energy weapon." + icon_state = "gun_energy" /obj/random/energy/item_to_spawn() return pick(prob(3);/obj/item/weapon/gun/energy/laser, @@ -28,17 +26,34 @@ prob(2);/obj/item/weapon/gun/energy/ionrifle, prob(2);/obj/item/weapon/gun/energy/ionrifle/pistol, prob(3);/obj/item/weapon/gun/energy/toxgun, - prob(4);/obj/item/weapon/gun/energy/taser, + prob(3);/obj/item/weapon/gun/energy/taser, prob(2);/obj/item/weapon/gun/energy/crossbow/largecrossbow, - prob(4);/obj/item/weapon/gun/energy/stunrevolver, + prob(3);/obj/item/weapon/gun/energy/stunrevolver, prob(2);/obj/item/weapon/gun/energy/stunrevolver/vintage, prob(3);/obj/item/weapon/gun/energy/gun/compact) +/obj/random/energy/highend + name = "Random Energy Weapon" + desc = "This is a random, actually good energy weapon." + icon_state = "gun_energy_2" + +/obj/random/energy/item_to_spawn() + return pick(prob(3);/obj/item/weapon/gun/energy/laser, + prob(3);/obj/item/weapon/gun/energy/laser/sleek, + prob(4);/obj/item/weapon/gun/energy/gun, + prob(3);/obj/item/weapon/gun/energy/gun/burst, + prob(1);/obj/item/weapon/gun/energy/gun/nuclear, + prob(2);/obj/item/weapon/gun/energy/retro, + prob(2);/obj/item/weapon/gun/energy/lasercannon, + prob(3);/obj/item/weapon/gun/energy/xray, + prob(1);/obj/item/weapon/gun/energy/sniperrifle, + prob(2);/obj/item/weapon/gun/energy/crossbow/largecrossbow, + prob(3);/obj/item/weapon/gun/energy/gun/compact) + /obj/random/energy/sec name = "Random Security Energy Weapon" desc = "This is a random security weapon." - icon = 'icons/obj/gun.dmi' - icon_state = "energykill100" + icon_state = "gun_energy" /obj/random/energy/sec/item_to_spawn() return pick(prob(2);/obj/item/weapon/gun/energy/laser, @@ -47,8 +62,7 @@ /obj/random/projectile name = "Random Projectile Weapon" desc = "This is a random projectile weapon." - icon = 'icons/obj/gun.dmi' - icon_state = "revolver" + icon_state = "gun" /obj/random/projectile/item_to_spawn() return pick(prob(3);/obj/item/weapon/gun/projectile/automatic/wt550, @@ -89,8 +103,7 @@ /obj/random/projectile/sec name = "Random Security Projectile Weapon" desc = "This is a random security weapon." - icon = 'icons/obj/gun.dmi' - icon_state = "revolver" + icon_state = "gun_shotgun" /obj/random/projectile/sec/item_to_spawn() return pick(prob(3);/obj/item/weapon/gun/projectile/shotgun/pump, @@ -98,10 +111,9 @@ prob(1);/obj/item/weapon/gun/projectile/shotgun/pump/combat) /obj/random/projectile/shotgun - name = "Random Projectile Weapon" - desc = "This is a random projectile weapon." - icon = 'icons/obj/gun.dmi' - icon_state = "shotgun" + name = "Random Shotgun" + desc = "This is a random shotgun-type weapon." + icon_state = "gun_shotgun" /obj/random/projectile/item_to_spawn() return pick(prob(4);/obj/item/weapon/gun/projectile/shotgun/doublebarrel, @@ -113,7 +125,7 @@ name = "Random Handgun" desc = "This is a random sidearm." icon = 'icons/obj/gun.dmi' - icon_state = "secgundark" + icon_state = "gun" /obj/random/handgun/item_to_spawn() return pick(prob(4);/obj/item/weapon/gun/projectile/sec, @@ -130,8 +142,7 @@ /obj/random/handgun/sec name = "Random Security Handgun" desc = "This is a random security sidearm." - icon = 'icons/obj/gun.dmi' - icon_state = "secgundark" + icon_state = "gun" /obj/random/handgun/sec/item_to_spawn() return pick(prob(3);/obj/item/weapon/gun/projectile/sec, @@ -140,8 +151,7 @@ /obj/random/ammo name = "Random Ammunition" desc = "This is random security ammunition." - icon = 'icons/obj/ammo.dmi' - icon_state = "45-10" + icon_state = "ammo" /obj/random/ammo/item_to_spawn() return pick(prob(6);/obj/item/weapon/storage/box/beanbags, @@ -157,11 +167,10 @@ /obj/random/grenade name = "Random Grenade" desc = "This is random thrown grenades (no C4/etc.)." - icon = 'icons/obj/grenade.dmi' - icon_state = "clusterbang_segment" + icon_state = "grenade_2" /obj/random/grenade/item_to_spawn() - return pick( prob(15);/obj/item/weapon/grenade/concussion, + return pick(prob(15);/obj/item/weapon/grenade/concussion, prob(5);/obj/item/weapon/grenade/empgrenade, prob(15);/obj/item/weapon/grenade/empgrenade/low_yield, prob(5);/obj/item/weapon/grenade/chem_grenade/metalfoam, @@ -179,14 +188,27 @@ prob(15);/obj/item/weapon/grenade/smokebomb ) +/obj/random/grenade/lethal + name = "Random Grenade" + desc = "This is random thrown grenade that hurts a lot." + icon_state = "grenade_3" + +/obj/random/grenade/lethal/item_to_spawn() + return pick( prob(15);/obj/item/weapon/grenade/concussion, + prob(5);/obj/item/weapon/grenade/empgrenade, + prob(2);/obj/item/weapon/grenade/chem_grenade/incendiary, + prob(5);/obj/item/weapon/grenade/explosive, + prob(10);/obj/item/weapon/grenade/explosive/mini, + prob(2);/obj/item/weapon/grenade/explosive/frag + ) + /obj/random/grenade/less_lethal name = "Random Security Grenade" desc = "This is a random thrown grenade that shouldn't kill anyone." - icon = 'icons/obj/grenade.dmi' - icon_state = "clusterbang_segment" + icon_state = "grenade" /obj/random/grenade/less_lethal/item_to_spawn() - return pick( prob(20);/obj/item/weapon/grenade/concussion, + return pick(prob(20);/obj/item/weapon/grenade/concussion, prob(15);/obj/item/weapon/grenade/empgrenade/low_yield, prob(15);/obj/item/weapon/grenade/chem_grenade/metalfoam, prob(20);/obj/item/weapon/grenade/chem_grenade/teargas, @@ -199,11 +221,10 @@ /obj/random/grenade/box name = "Random Grenade Box" desc = "This is a random box of grenades. Not to be mistaken for a box of random grenades. Or a grenade of random boxes - but that would just be silly." - icon = 'icons/obj/grenade.dmi' - icon_state = "clusterbang_segment" + icon_state = "grenade_box" /obj/random/grenade/box/item_to_spawn() - return pick( prob(20);/obj/item/weapon/storage/box/flashbangs, + return pick(prob(20);/obj/item/weapon/storage/box/flashbangs, prob(10);/obj/item/weapon/storage/box/emps, prob(20);/obj/item/weapon/storage/box/empslite, prob(15);/obj/item/weapon/storage/box/smokes, @@ -215,9 +236,9 @@ /obj/random/projectile/random name = "Random Projectile Weapon" - desc = "This is a random weapon." + desc = "This is a random projectile weapon." icon = 'icons/obj/gun.dmi' - icon_state = "revolver" + icon_state = "gun_2" /obj/random/projectile/random/item_to_spawn() return pick(prob(3);/obj/random/multiple/gun/projectile/handgun, @@ -228,8 +249,7 @@ /obj/random/multiple/gun/projectile/smg name = "random smg projectile gun" desc = "Loot for PoIs." - icon = 'icons/obj/gun.dmi' - icon_state = "saber" + icon_state = "gun_auto" /obj/random/multiple/gun/projectile/smg/item_to_spawn() return pick( @@ -267,8 +287,7 @@ /obj/random/multiple/gun/projectile/rifle name = "random rifle projectile gun" desc = "Loot for PoIs." - icon = 'icons/obj/gun.dmi' - icon_state = "carbine" + icon_state = "gun_rifle" //Concerns about the bullpup, but currently seems to be only a slightly stronger z8. But we shall see. @@ -319,8 +338,7 @@ /obj/random/multiple/gun/projectile/handgun name = "random handgun projectile gun" desc = "Loot for PoIs." - icon = 'icons/obj/gun.dmi' - icon_state = "revolver" + icon_state = "gun" /obj/random/multiple/gun/projectile/handgun/item_to_spawn() return pick( @@ -451,8 +469,7 @@ /obj/random/multiple/gun/projectile/shotgun name = "random shotgun projectile gun" desc = "Loot for PoIs." - icon = 'icons/obj/gun.dmi' - icon_state = "shotgun" + icon_state = "gun_shotgun" /obj/random/multiple/gun/projectile/shotgun/item_to_spawn() return pick( @@ -485,7 +502,7 @@ name = "broken gun spawner" desc = "Spawns a random broken gun, or rarely a fully functional one." icon = 'icons/obj/gun.dmi' - icon_state = "revolver" + icon_state = "gun_scrap" /obj/random/projectile/scrapped_gun/item_to_spawn() return pickweight(list( @@ -503,8 +520,7 @@ /obj/random/projectile/scrapped_shotgun name = "broken shotgun spawner" desc = "Loot for PoIs, or their mobs." - icon = 'icons/obj/gun.dmi' - icon_state = "shotgun" + icon_state = "gun_scrap" /obj/random/projectile/scrapped_shotgun/item_to_spawn() return pickweight(list( @@ -517,8 +533,7 @@ /obj/random/projectile/scrapped_smg name = "broken smg spawner" desc = "Loot for PoIs, or their mobs." - icon = 'icons/obj/gun.dmi' - icon_state = "revolver" + icon_state = "gun_scrap" /obj/random/projectile/scrapped_smg/item_to_spawn() return pickweight(list( @@ -529,8 +544,7 @@ /obj/random/projectile/scrapped_pistol name = "broken pistol spawner" desc = "Loot for PoIs, or their mobs." - icon = 'icons/obj/gun.dmi' - icon_state = "revolver" + icon_state = "gun_scrap" /obj/random/projectile/scrapped_pistol/item_to_spawn() return pickweight(list( @@ -541,8 +555,7 @@ /obj/random/projectile/scrapped_laser name = "broken laser spawner" desc = "Loot for PoIs, or their mobs." - icon = 'icons/obj/gun.dmi' - icon_state = "revolver" + icon_state = "gun_scrap" /obj/random/projectile/scrapped_laser/item_to_spawn() return pickweight(list( @@ -555,8 +568,7 @@ /obj/random/projectile/scrapped_ionrifle name = "broken ionrifle spawner" desc = "Loot for PoIs, or their mobs." - icon = 'icons/obj/gun.dmi' - icon_state = "revolver" + icon_state = "gun_scrap" /obj/random/projectile/scrapped_ionrifle/item_to_spawn() return pickweight(list( @@ -567,8 +579,7 @@ /obj/random/projectile/scrapped_bulldog name = "broken z8 spawner" desc = "Loot for PoIs, or their mobs." - icon = 'icons/obj/gun.dmi' - icon_state = "revolver" + icon_state = "gun_scrap" /obj/random/projectile/scrapped_bulldog/item_to_spawn() return pickweight(list( @@ -579,8 +590,7 @@ /obj/random/projectile/scrapped_flechette name = "broken flechette spawner" desc = "Loot for PoIs, or their mobs." - icon = 'icons/obj/gun.dmi' - icon_state = "revolver" + icon_state = "gun_scrap" /obj/random/projectile/scrapped_flechette/item_to_spawn() return pickweight(list( @@ -591,8 +601,7 @@ /obj/random/projectile/scrapped_grenadelauncher name = "broken grenadelauncher spawner" desc = "Loot for PoIs, or their mobs." - icon = 'icons/obj/gun.dmi' - icon_state = "revolver" + icon_state = "gun_scrap" /obj/random/projectile/scrapped_grenadelauncher/item_to_spawn() return pickweight(list( @@ -603,8 +612,7 @@ /obj/random/projectile/scrapped_dartgun name = "broken dartgun spawner" desc = "Loot for PoIs, or their mobs." - icon = 'icons/obj/gun.dmi' - icon_state = "revolver" + icon_state = "gun_scrap" /obj/random/projectile/scrapped_dartgun/item_to_spawn() return pickweight(list( diff --git a/code/game/objects/random/maintenance.dm b/code/game/objects/random/maintenance.dm index 736318e6f1..acb7f93fc8 100644 --- a/code/game/objects/random/maintenance.dm +++ b/code/game/objects/random/maintenance.dm @@ -1,8 +1,6 @@ /obj/random/maintenance //Clutter and loot for maintenance and away missions name = "random maintenance item" desc = "This is a random maintenance item." - icon = 'icons/obj/items.dmi' - icon_state = "gift1" /obj/random/maintenance/item_to_spawn() return pick(prob(300);/obj/random/tech_supply, @@ -25,8 +23,6 @@ Individual items to add to the maintenance list should go here, if you add something, make sure it's not in one of the other lists.*/ name = "random clean maintenance item" desc = "This is a random clean maintenance item." - icon = 'icons/obj/items.dmi' - icon_state = "gift1" /obj/random/maintenance/clean/item_to_spawn() return pick(prob(10);/obj/random/contraband, @@ -123,8 +119,7 @@ something, make sure it's not in one of the other lists.*/ /*Maintenance loot list. This one is for around security areas*/ name = "random security maintenance item" desc = "This is a random security maintenance item." - icon = 'icons/obj/items.dmi' - icon_state = "gift1" + icon_state = "security" /obj/random/maintenance/security/item_to_spawn() return pick(prob(320);/obj/random/maintenance/clean, @@ -180,8 +175,7 @@ something, make sure it's not in one of the other lists.*/ /*Maintenance loot list. This one is for around medical areas*/ name = "random medical maintenance item" desc = "This is a random medical maintenance item." - icon = 'icons/obj/items.dmi' - icon_state = "gift1" + icon_state = "medical" /obj/random/maintenance/medical/item_to_spawn() return pick(prob(320);/obj/random/maintenance/clean, @@ -220,8 +214,7 @@ something, make sure it's not in one of the other lists.*/ /*Maintenance loot list. This one is for around medical areas*/ name = "random engineering maintenance item" desc = "This is a random engineering maintenance item." - icon = 'icons/obj/items.dmi' - icon_state = "gift1" + icon_state = "tool" /obj/random/maintenance/engineering/item_to_spawn() return pick(prob(320);/obj/random/maintenance/clean, @@ -258,8 +251,7 @@ something, make sure it's not in one of the other lists.*/ /*Maintenance loot list. This one is for around medical areas*/ name = "random research maintenance item" desc = "This is a random research maintenance item." - icon = 'icons/obj/items.dmi' - icon_state = "gift1" + icon_state = "science" /obj/random/maintenance/research/item_to_spawn() return pick(prob(320);/obj/random/maintenance/clean, @@ -290,8 +282,6 @@ something, make sure it's not in one of the other lists.*/ /*Maintenance loot list. This one is for around cargo areas*/ name = "random cargo maintenance item" desc = "This is a random cargo maintenance item." - icon = 'icons/obj/items.dmi' - icon_state = "gift1" /obj/random/maintenance/cargo/item_to_spawn() return pick(prob(320);/obj/random/maintenance/clean, diff --git a/code/game/objects/random/mapping.dm b/code/game/objects/random/mapping.dm index 377ae5a2ea..a9e567c6c0 100644 --- a/code/game/objects/random/mapping.dm +++ b/code/game/objects/random/mapping.dm @@ -105,10 +105,14 @@ icon = 'icons/obj/vending.dmi' icon_state = "Cola_Machine" +//VOREStation Edit Start /obj/random/vendordrink/item_to_spawn() //Not including coffee as it's more specific in usage. return pick (/obj/machinery/vending/cola, + /obj/machinery/vending/cola/soft, + /obj/machinery/vending/bepis, /obj/machinery/vending/sovietsoda, /obj/machinery/vending/radren) +//VOREStation Edit End /obj/random/obstruction //Large objects to block things off in maintenance name = "random obstruction" @@ -1451,4 +1455,194 @@ /obj/random/turf/lava/item_to_spawn() return pick(prob(5);/turf/simulated/floor/lava, prob(3);/turf/simulated/floor/outdoors/rocks/caves, - prob(1);/turf/simulated/mineral) + prob(1);/turf/simulated/mineral/ignore_mapgen/cave) + +//VOREStation Add Start - Underdark stuff that would be cool if existed if the underdark doesn't. + +/obj/random/underdark + name = "random underdark loot" + desc = "Random loot for Underdark." + icon = 'icons/obj/items.dmi' + icon_state = "spickaxe" + +/obj/random/underdark/item_to_spawn() + return pick(prob(3);/obj/random/multiple/underdark/miningdrills, + prob(3);/obj/random/multiple/underdark/ores, + prob(2);/obj/random/multiple/underdark/treasure, + prob(1);/obj/random/multiple/underdark/mechtool) + +/obj/random/underdark/uncertain + icon_state = "upickaxe" + spawn_nothing_percentage = 65 //only 33% to spawn loot + +/obj/random/multiple/underdark/miningdrills + name = "random underdark mining tool loot" + desc = "Random mining tool loot for Underdark." + icon = 'icons/obj/items.dmi' + icon_state = "spickaxe" + +/obj/random/multiple/underdark/miningdrills/item_to_spawn() + return pick( + prob(10);list(/obj/item/weapon/pickaxe/silver), + prob(8);list(/obj/item/weapon/pickaxe/drill), + prob(6);list(/obj/item/weapon/pickaxe/jackhammer), + prob(5);list(/obj/item/weapon/pickaxe/gold), + prob(4);list(/obj/item/weapon/pickaxe/plasmacutter), + prob(2);list(/obj/item/weapon/pickaxe/diamond), + prob(1);list(/obj/item/weapon/pickaxe/diamonddrill) + ) + +/obj/random/multiple/underdark/ores + name = "random underdark mining ore loot" + desc = "Random mining utility loot for Underdark." + icon = 'icons/obj/mining.dmi' + icon_state = "satchel" + +/obj/random/multiple/underdark/ores/item_to_spawn() + return pick( + prob(9);list( + /obj/item/weapon/storage/bag/ore, + /obj/item/weapon/shovel, + /obj/item/weapon/ore/glass, + /obj/item/weapon/ore/glass, + /obj/item/weapon/ore/glass, + /obj/item/weapon/ore/glass, + /obj/item/weapon/ore/glass, + /obj/item/weapon/ore/glass, + /obj/item/weapon/ore/glass, + /obj/item/weapon/ore/glass, + /obj/item/weapon/ore/glass, + /obj/item/weapon/ore/glass, + /obj/item/weapon/ore/hydrogen, + /obj/item/weapon/ore/hydrogen, + /obj/item/weapon/ore/hydrogen, + /obj/item/weapon/ore/hydrogen, + /obj/item/weapon/ore/hydrogen, + /obj/item/weapon/ore/hydrogen + ), + prob(7);list( + /obj/item/weapon/storage/bag/ore, + /obj/item/weapon/pickaxe, + /obj/item/weapon/ore/osmium, + /obj/item/weapon/ore/osmium, + /obj/item/weapon/ore/osmium, + /obj/item/weapon/ore/osmium, + /obj/item/weapon/ore/osmium, + /obj/item/weapon/ore/osmium, + /obj/item/weapon/ore/osmium, + /obj/item/weapon/ore/osmium, + /obj/item/weapon/ore/osmium, + /obj/item/weapon/ore/osmium + ), + prob(4);list( + /obj/item/clothing/suit/radiation, + /obj/item/clothing/head/radiation, + /obj/item/weapon/ore/uranium, + /obj/item/weapon/ore/uranium, + /obj/item/weapon/ore/uranium, + /obj/item/weapon/ore/uranium, + /obj/item/weapon/ore/uranium, + /obj/item/weapon/ore/uranium, + /obj/item/weapon/ore/uranium, + /obj/item/weapon/ore/uranium, + /obj/item/weapon/ore/uranium, + /obj/item/weapon/ore/uranium, + /obj/item/weapon/ore/uranium, + /obj/item/weapon/ore/uranium, + /obj/item/weapon/ore/uranium, + /obj/item/weapon/ore/uranium, + /obj/item/weapon/ore/uranium, + /obj/item/weapon/ore/uranium, + /obj/item/weapon/ore/uranium, + /obj/item/weapon/ore/uranium, + /obj/item/weapon/ore/uranium, + /obj/item/weapon/ore/uranium), + prob(2);list( + /obj/item/device/flashlight/lantern, + /obj/item/clothing/glasses/material, + /obj/item/weapon/ore/diamond, + /obj/item/weapon/ore/diamond, + /obj/item/weapon/ore/diamond, + /obj/item/weapon/ore/diamond, + /obj/item/weapon/ore/diamond, + /obj/item/weapon/ore/diamond, + /obj/item/weapon/ore/diamond, + /obj/item/weapon/ore/diamond, + /obj/item/weapon/ore/diamond, + /obj/item/weapon/ore/diamond + ), + prob(1);list( + /obj/item/weapon/mining_scanner, + /obj/item/weapon/shovel/spade, + /obj/item/weapon/ore/verdantium, + /obj/item/weapon/ore/verdantium, + /obj/item/weapon/ore/verdantium, + /obj/item/weapon/ore/verdantium, + /obj/item/weapon/ore/verdantium + ) + ) + +/obj/random/multiple/underdark/treasure + name = "random underdark treasure" + desc = "Random treasure loot for Underdark." + icon = 'icons/obj/storage.dmi' + icon_state = "cashbag" + +/obj/random/multiple/underdark/treasure/item_to_spawn() + return pick( + prob(5);list( + /obj/random/coin, + /obj/random/coin, + /obj/random/coin, + /obj/random/coin, + /obj/random/coin, + /obj/item/clothing/head/pirate + ), + prob(4);list( + /obj/item/weapon/storage/bag/cash, + /obj/item/weapon/spacecash/c500, + /obj/item/weapon/spacecash/c100, + /obj/item/weapon/spacecash/c50 + ), + prob(3);list( + /obj/item/clothing/head/hardhat/orange, + /obj/item/stack/material/gold, + /obj/item/stack/material/gold, + /obj/item/stack/material/gold, + /obj/item/stack/material/gold, + /obj/item/stack/material/gold, + /obj/item/stack/material/gold, + /obj/item/stack/material/gold, + /obj/item/stack/material/gold, + /obj/item/stack/material/gold, + /obj/item/stack/material/gold), + prob(1);list( + /obj/item/stack/material/phoron, + /obj/item/stack/material/phoron, + /obj/item/stack/material/phoron, + /obj/item/stack/material/phoron, + /obj/item/stack/material/diamond, + /obj/item/stack/material/diamond, + /obj/item/stack/material/diamond + ) + ) + +/obj/random/multiple/underdark/mechtool + name = "random underdark mech equipment" + desc = "Random mech equipment loot for Underdark." + icon = 'icons/mecha/mecha_equipment.dmi' + icon_state = "mecha_clamp" + +/obj/random/multiple/underdark/mechtool/item_to_spawn() + return pick( + prob(12);list(/obj/item/mecha_parts/mecha_equipment/tool/drill), + prob(10);list(/obj/item/mecha_parts/mecha_equipment/tool/hydraulic_clamp), + prob(8);list(/obj/item/mecha_parts/mecha_equipment/generator), + prob(7);list(/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/scattershot/rigged), + prob(6);list(/obj/item/mecha_parts/mecha_equipment/repair_droid), + prob(3);list(/obj/item/mecha_parts/mecha_equipment/gravcatapult), + prob(2);list(/obj/item/mecha_parts/mecha_equipment/weapon/energy/riggedlaser), + prob(2);list(/obj/item/mecha_parts/mecha_equipment/weapon/energy/flamer/rigged), + prob(1);list(/obj/item/mecha_parts/mecha_equipment/tool/drill/diamonddrill), + ) +//VOREStation Add End \ No newline at end of file diff --git a/code/game/objects/random/mapping_vr.dm b/code/game/objects/random/mapping_vr.dm index b9ebfd1dc0..3075c40415 100644 --- a/code/game/objects/random/mapping_vr.dm +++ b/code/game/objects/random/mapping_vr.dm @@ -8,14 +8,21 @@ /obj/random/empty_or_lootable_crate/item_to_spawn() return pick(/obj/random/crate, /obj/random/multiple/corp_crate) - + /obj/random/forgotten_tram name = "random forgotten tram item" desc = "Spawns a random item that someone might accidentally leave on a tram. Sometimes spawns nothing." spawn_nothing_percentage = 30 /obj/random/forgotten_tram/item_to_spawn() - return pick(prob(2);/obj/item/device/flashlight, + return pick( + prob(2);/obj/item/device/flashlight, + prob(2);/obj/item/device/flashlight/color, + prob(2);/obj/item/device/flashlight/color/green, + prob(2);/obj/item/device/flashlight/color/purple, + prob(2);/obj/item/device/flashlight/color/red, + prob(2);/obj/item/device/flashlight/color/orange, + prob(2);/obj/item/device/flashlight/color/yellow, prob(2);/obj/item/device/flashlight/glowstick, prob(2);/obj/item/device/flashlight/glowstick/blue, prob(1);/obj/item/device/flashlight/glowstick/orange, diff --git a/code/game/objects/random/mechs.dm b/code/game/objects/random/mechs.dm index 7dcd3db5cc..6129e177da 100644 --- a/code/game/objects/random/mechs.dm +++ b/code/game/objects/random/mechs.dm @@ -1,8 +1,7 @@ /obj/random/mech name = "random mech" desc = "This is a random single mech." - icon = 'icons/mecha/mecha.dmi' - icon_state = "old_durand" + icon_state = "mecha" drop_get_turf = FALSE //This list includes the phazon, gorilla and mauler. You might want to use something else if balance is a concern. @@ -25,8 +24,6 @@ /obj/random/mech/weaker name = "random mech" desc = "This is a random single mech. Those are less potent and more common." - icon = 'icons/mecha/mecha.dmi' - icon_state = "old_durand" drop_get_turf = FALSE /obj/random/mech/weaker/item_to_spawn() @@ -42,8 +39,6 @@ /obj/random/mech/old name = "random mech" desc = "This is a random single old mech." - icon = 'icons/mecha/mecha.dmi' - icon_state = "old_durand" drop_get_turf = FALSE //Note that all of those are worn out and have slightly less maximal health than the standard. diff --git a/code/game/objects/random/misc.dm b/code/game/objects/random/misc.dm index 41db4704fd..ac7d045704 100644 --- a/code/game/objects/random/misc.dm +++ b/code/game/objects/random/misc.dm @@ -6,8 +6,7 @@ /obj/random/tool name = "random tool" desc = "This is a random tool" - icon = 'icons/obj/tools.dmi' - icon_state = "welder" + icon_state = "tool" /obj/random/tool/item_to_spawn() return pick(/obj/item/weapon/tool/screwdriver, @@ -22,7 +21,7 @@ /obj/random/tool/powermaint name = "random powertool" desc = "This is a random rare powertool for maintenance" - icon_state = "jaws_pry" + icon_state = "tool_2" /obj/random/tool/powermaint/item_to_spawn() return pick(prob(320);/obj/random/tool, @@ -34,7 +33,7 @@ /obj/random/tool/power name = "random powertool" desc = "This is a random powertool" - icon_state = "jaws_pry" + icon_state = "tool_2" /obj/random/tool/power/item_to_spawn() return pick(/obj/item/weapon/tool/screwdriver/power, @@ -45,8 +44,7 @@ /obj/random/tool/alien name = "random alien tool" desc = "This is a random tool" - icon = 'icons/obj/abductor.dmi' - icon_state = "welder" + icon_state = "tool_3" /obj/random/tool/alien/item_to_spawn() return pick(/obj/item/weapon/tool/screwdriver/alien, @@ -60,8 +58,7 @@ /obj/random/technology_scanner name = "random scanner" desc = "This is a random technology scanner." - icon = 'icons/obj/device.dmi' - icon_state = "atmos" + icon_state = "tech" /obj/random/technology_scanner/item_to_spawn() return pick(prob(5);/obj/item/device/t_scanner, @@ -85,8 +82,7 @@ /obj/random/bomb_supply name = "bomb supply" desc = "This is a random bomb supply." - icon = 'icons/obj/assemblies/new_assemblies.dmi' - icon_state = "signaller" + icon_state = "tech" /obj/random/bomb_supply/item_to_spawn() return pick(/obj/item/device/assembly/igniter, @@ -99,8 +95,7 @@ /obj/random/toolbox name = "random toolbox" desc = "This is a random toolbox." - icon = 'icons/obj/storage.dmi' - icon_state = "red" + icon_state = "toolbox" /obj/random/toolbox/item_to_spawn() return pick(prob(6);/obj/item/weapon/storage/toolbox/mechanical, @@ -111,8 +106,7 @@ /obj/random/smes_coil name = "random smes coil" desc = "This is a random smes coil." - icon = 'icons/obj/power.dmi' - icon_state = "smes" + icon_state = "cell_2" /obj/random/smes_coil/item_to_spawn() return pick(prob(4);/obj/item/weapon/smes_coil, @@ -122,8 +116,7 @@ /obj/random/pacman name = "random portable generator" desc = "This is a random portable generator." - icon = 'icons/obj/power.dmi' - icon_state = "portgen0" + icon_state = "cell_3" /obj/random/pacman/item_to_spawn() return pick(prob(6);/obj/machinery/power/port_gen/pacman, @@ -161,8 +154,7 @@ /obj/random/tech_supply/component name = "random tech component" desc = "This is a random machine component." - icon = 'icons/obj/items.dmi' - icon_state = "portable_analyzer" + icon_state = "tech" /obj/random/tech_supply/component/item_to_spawn() return pick(prob(3);/obj/item/weapon/stock_parts/gear, @@ -188,8 +180,7 @@ /obj/random/medical name = "Random Medicine" desc = "This is a random medical item." - icon = 'icons/obj/stacks.dmi' - icon_state = "traumakit" + icon_state = "medical" /obj/random/medical/item_to_spawn() return pick(prob(21);/obj/random/medical/lite, @@ -208,8 +199,7 @@ /obj/random/medical/pillbottle name = "Random Pill Bottle" desc = "This is a random pill bottle." - icon = 'icons/obj/chemical.dmi' - icon_state = "pill_canister" + icon_state = "pillbottle" /obj/random/medical/pillbottle/item_to_spawn() return pick(prob(1);/obj/item/weapon/storage/pill_bottle/spaceacillin, @@ -221,8 +211,7 @@ /obj/random/medical/lite name = "Random Medicine" desc = "This is a random simple medical item." - icon = 'icons/obj/items.dmi' - icon_state = "brutepack" + icon_state = "medical" spawn_nothing_percentage = 25 /obj/random/medical/lite/item_to_spawn() @@ -240,8 +229,7 @@ /obj/random/firstaid name = "Random First Aid Kit" desc = "This is a random first aid kit." - icon = 'icons/obj/storage.dmi' - icon_state = "firstaid" + icon_state = "medicalkit" /obj/random/firstaid/item_to_spawn() return pick(prob(10);/obj/item/weapon/storage/firstaid/regular, @@ -255,8 +243,7 @@ /obj/random/contraband name = "Random Illegal Item" desc = "Hot Stuff." - icon = 'icons/obj/items.dmi' - icon_state = "purplecomb" + icon_state = "sus" spawn_nothing_percentage = 50 /obj/random/contraband/item_to_spawn() return pick(prob(6);/obj/item/weapon/storage/pill_bottle/paracetamol, //VOREStation Edit, @@ -505,8 +492,7 @@ /obj/random/material //Random materials for building stuff name = "random material" desc = "This is a random material." - icon = 'icons/obj/stacks.dmi' - icon_state = "sheet-metal_2" + icon_state = "material" /obj/random/material/item_to_spawn() return pick(/obj/item/stack/material/steel{amount = 10}, @@ -524,8 +510,7 @@ /obj/random/material/refined //Random materials for building stuff name = "random refined material" desc = "This is a random refined metal." - icon = 'icons/obj/stacks.dmi' - icon_state = "sheet-adamantine_3" + icon_state = "material_2" /obj/random/material/refined/item_to_spawn() return pick(/obj/item/stack/material/steel{amount = 10}, @@ -555,8 +540,7 @@ /obj/random/material/precious //Precious metals, go figure name = "random precious metal" desc = "This is a small stack of a random precious metal." - icon = 'icons/obj/stacks.dmi' - icon_state = "sheet-gold_2" + icon_state = "material_3" /obj/random/material/precious/item_to_spawn() return pick(/obj/item/stack/material/gold{amount = 5}, @@ -616,6 +600,12 @@ prob(2);/obj/item/weapon/coin/platinum, prob(1);/obj/item/weapon/coin/diamond) +//VOREStation Add Start +/obj/random/coin/sometimes + spawn_nothing_percentage = 66 + +//VOREStation Add End + /obj/random/action_figure name = "random action figure" desc = "This is a random action figure." @@ -744,7 +734,7 @@ /obj/item/toy/snappop, /obj/item/toy/sword, /obj/item/toy/balloon, - /obj/item/toy/crossbow, + /obj/item/weapon/gun/projectile/revolver/toy/crossbow, /obj/item/toy/blink, /obj/item/weapon/reagent_containers/spray/waterflower, /obj/item/toy/eight_ball, @@ -779,8 +769,7 @@ /obj/random/janusmodule name = "random janus circuit" desc = "A random (possibly broken) Janus module." - icon = 'icons/obj/abductor.dmi' - icon_state = "circuit_damaged" + icon_state = "tech_2" /obj/random/janusmodule/item_to_spawn() return pick(subtypesof(/obj/item/weapon/circuitboard/mecha/imperion)) @@ -978,3 +967,21 @@ prob(5);/obj/item/weapon/storage/pouch/baton/full, prob(1);/obj/item/weapon/storage/pouch/holding ) + +/obj/random/flashlight + name = "Random Flashlight" + desc = "This is a random storage pouch." + icon = 'icons/obj/lighting.dmi' + icon_state = "random_flashlight" + +/obj/random/flashlight/item_to_spawn() + return pick( + prob(8);/obj/item/device/flashlight, + prob(6);/obj/item/device/flashlight/color, + prob(6);/obj/item/device/flashlight/color/green, + prob(6);/obj/item/device/flashlight/color/purple, + prob(6);/obj/item/device/flashlight/color/red, + prob(6);/obj/item/device/flashlight/color/orange, + prob(6);/obj/item/device/flashlight/color/yellow, + prob(2);/obj/item/device/flashlight/maglight + ) \ No newline at end of file diff --git a/code/game/objects/random/misc_vr.dm b/code/game/objects/random/misc_vr.dm index 0d3a17c23f..9030e874ac 100644 --- a/code/game/objects/random/misc_vr.dm +++ b/code/game/objects/random/misc_vr.dm @@ -23,6 +23,7 @@ prob(30);/obj/item/weapon/aliencoin/gold, prob(20);/obj/item/weapon/aliencoin/phoron, prob(10);/obj/item/device/denecrotizer, + prob(5);/obj/item/capture_crystal, prob(5);/obj/item/device/perfect_tele, prob(5);/obj/item/weapon/bluespace_harpoon, prob(1);/obj/item/weapon/cell/infinite, @@ -43,9 +44,59 @@ prob(3);/obj/fiftyspawner/silver, prob(1);/obj/fiftyspawner/diamond, prob(5);/obj/fiftyspawner/phoron, - prob(1);/obj/item/weapon/telecube/randomized + prob(1);/obj/item/weapon/telecube/randomized, + prob(1);/obj/item/capture_crystal/random ) /obj/random/awayloot/nofail name = "garunteed random away mission loot" spawn_nothing_percentage = 0 + +/obj/random/awayloot/looseloot +/obj/random/awayloot/looseloot/item_to_spawn() + return pick(prob(50);/obj/item/weapon/aliencoin, + prob(40);/obj/item/weapon/aliencoin/silver, + prob(30);/obj/item/weapon/aliencoin/gold, + prob(20);/obj/item/weapon/aliencoin/phoron, + prob(10);/obj/item/device/denecrotizer, + prob(5);/obj/item/capture_crystal, + prob(3);/obj/item/capture_crystal/great, + prob(1);/obj/item/capture_crystal/ultra, + prob(4);/obj/item/capture_crystal/random, + prob(5);/obj/item/device/perfect_tele, + prob(5);/obj/item/weapon/bluespace_harpoon, + prob(1);/obj/item/weapon/cell/infinite, + prob(1);/obj/item/weapon/cell/void, + prob(1);/obj/item/weapon/cell/device/weapon/recharge/alien, + prob(1);/obj/item/clothing/shoes/boots/speed, + prob(1);/obj/item/device/nif, + prob(1);/obj/item/device/paicard, + prob(2);/obj/item/weapon/storage/backpack/dufflebag/syndie, + prob(2);/obj/item/weapon/storage/backpack/dufflebag/syndie/ammo, + prob(2);/obj/item/weapon/storage/backpack/dufflebag/syndie/med, + prob(2);/obj/item/clothing/mask/gas/voice, + prob(2);/obj/item/device/radio_jammer, + prob(1);/obj/item/toy/bosunwhistle, + prob(1);/obj/item/weapon/bananapeel, + prob(5);/obj/fiftyspawner/platinum, + prob(3);/obj/fiftyspawner/gold, + prob(3);/obj/fiftyspawner/silver, + prob(1);/obj/fiftyspawner/diamond, + prob(5);/obj/fiftyspawner/phoron, + prob(1);/obj/item/weapon/telecube/randomized, + prob(10);/obj/random/empty_or_lootable_crate, + prob(10);/obj/random/medical, + prob(5);/obj/random/firstaid, + prob(30);/obj/random/maintenance, + prob(10);/obj/random/mre, + prob(15);/obj/random/snack, + prob(10);/obj/random/tech_supply, + prob(15);/obj/random/tech_supply/component, + prob(10);/obj/random/tool, + prob(5);/obj/random/tool/power, + prob(1);/obj/random/tool/alien, + prob(5);/obj/random/weapon, + prob(5);/obj/random/ammo_all, + prob(3);/obj/random/projectile/random, + prob(5);/obj/random/multiple/voidsuit + ) diff --git a/code/game/objects/random/mob.dm b/code/game/objects/random/mob.dm index 0699dfb9a1..be1222aabe 100644 --- a/code/game/objects/random/mob.dm +++ b/code/game/objects/random/mob.dm @@ -5,8 +5,7 @@ /obj/random/mob name = "Random Animal" desc = "This is a random animal." - icon = 'icons/mob/animal.dmi' - icon_state = "chicken_white" + icon_state = "animal" var/overwrite_hostility = 0 @@ -68,7 +67,7 @@ /obj/random/mob/sif name = "Random Sif Animal" desc = "This is a random cold weather animal." - icon_state = "penguin" + icon_state = "animal" mob_returns_home = 1 mob_wander_distance = 10 @@ -89,7 +88,7 @@ /obj/random/mob/sif/peaceful name = "Random Peaceful Sif Animal" desc = "This is a random peaceful cold weather animal." - icon_state = "penguin" + icon_state = "animal_passive" mob_returns_home = 1 mob_wander_distance = 12 @@ -106,7 +105,7 @@ /obj/random/mob/sif/hostile name = "Random Hostile Sif Animal" desc = "This is a random hostile cold weather animal." - icon_state = "frost" + icon_state = "animal_hostile" /obj/random/mob/sif/hostile/item_to_spawn() return pick(prob(22);/mob/living/simple_mob/animal/sif/savik, @@ -169,7 +168,7 @@ /obj/random/mob/robotic name = "Random Robot Mob" desc = "This is a random robot." - icon_state = "drone_dead" + icon_state = "robot" overwrite_hostility = 1 @@ -217,7 +216,7 @@ /obj/random/mob/robotic/hivebot name = "Random Hivebot" desc = "This is a random hivebot." - icon_state = "drone3" + icon_state = "robot" mob_faction = "hivebot" @@ -237,18 +236,59 @@ name = "Random Mouse" desc = "This is a random boring maus." icon_state = "mouse_gray" + spawn_nothing_percentage = 15 /obj/random/mob/mouse/item_to_spawn() return pick(prob(15);/mob/living/simple_mob/animal/passive/mouse/white, + prob(15);/mob/living/simple_mob/animal/passive/mouse/black, prob(30);/mob/living/simple_mob/animal/passive/mouse/brown, prob(30);/mob/living/simple_mob/animal/passive/mouse/gray, - prob(25);/obj/random/mouseremains) //because figuring out how to come up with it picking nothing is beyond my coding ability. + prob(30);/mob/living/simple_mob/animal/passive/mouse/rat) + +/obj/random/mob/fish + name = "Random Fish" + desc = "This is a random fish found on Sif." + icon_state = "fish" + mob_faction = "fish" + overwrite_hostility = 1 + mob_hostile = 0 + mob_retaliate = 0 + +/obj/random/mob/fish/item_to_spawn() + return pick(prob(10);/mob/living/simple_mob/animal/passive/fish/bass, + prob(20);/mob/living/simple_mob/animal/passive/fish/icebass, + prob(20);/mob/living/simple_mob/animal/passive/fish/trout, + prob(20);/mob/living/simple_mob/animal/passive/fish/salmon, + prob(10);/mob/living/simple_mob/animal/passive/fish/pike, + prob(10);/mob/living/simple_mob/animal/passive/fish/perch, + prob(20);/mob/living/simple_mob/animal/passive/fish/murkin, + prob(15);/mob/living/simple_mob/animal/passive/fish/javelin, + prob(20);/mob/living/simple_mob/animal/passive/fish/rockfish, + prob(5);/mob/living/simple_mob/animal/passive/fish/solarfish, + prob(10);/mob/living/simple_mob/animal/passive/crab, + prob(1);/mob/living/simple_mob/animal/sif/hooligan_crab) + +/obj/random/mob/bird + name = "Random Bird" + desc = "This is a random wild/feral bird." + icon_state = "bird" + mob_faction = "bird" + +/obj/random/mob/bird/item_to_spawn() + return pick(prob(10);/mob/living/simple_mob/animal/passive/bird/black_bird, + prob(10);/mob/living/simple_mob/animal/passive/bird/azure_tit, + prob(20);/mob/living/simple_mob/animal/passive/bird/european_robin, + prob(10);/mob/living/simple_mob/animal/passive/bird/goldcrest, + prob(20);/mob/living/simple_mob/animal/passive/bird/ringneck_dove, + prob(10);/mob/living/simple_mob/animal/space/goose, + prob(5);/mob/living/simple_mob/animal/passive/chicken, + prob(1);/mob/living/simple_mob/animal/passive/penguin) // Mercs /obj/random/mob/merc name = "Random Mercenary" desc = "This is a random PoI mercenary." - icon_state = "syndicate" + icon_state = "humanoid" mob_faction = "syndicate" mob_returns_home = 1 @@ -270,7 +310,7 @@ /obj/random/mob/merc/armored name = "Random Armored Infantry Merc" desc = "This is a random PoI exo or robot for mercs." - icon_state = "drone3" + icon_state = "mecha" /obj/random/mob/merc/armored/item_to_spawn() return pick(prob(30);/mob/living/simple_mob/mechanical/mecha/combat/gygax/dark, @@ -327,6 +367,7 @@ /obj/random/mob/multiple/sifmobs name = "Random Sifmob Pack" desc = "A pack of random neutral sif mobs." + icon_state = "animal_group" /obj/random/mob/multiple/sifmobs/item_to_spawn() return pick( diff --git a/code/game/objects/random/spacesuits.dm b/code/game/objects/random/spacesuits.dm index 5db5bbb074..00416fa19a 100644 --- a/code/game/objects/random/spacesuits.dm +++ b/code/game/objects/random/spacesuits.dm @@ -227,6 +227,7 @@ /obj/item/clothing/suit/space/void/refurb/pilot, /obj/item/clothing/head/helmet/space/void/refurb/pilot ), + prob(10);list( /obj/item/clothing/suit/space/void/refurb/pilot, /obj/item/clothing/head/helmet/space/void/refurb/pilot/alt @@ -239,6 +240,10 @@ /obj/item/clothing/suit/space/void/refurb/research, /obj/item/clothing/head/helmet/space/void/refurb/research/alt ), + prob(10);list( + /obj/item/clothing/suit/space/void/refurb/mining, + /obj/item/clothing/head/helmet/space/void/refurb/mining + ), prob(5);list( /obj/item/clothing/suit/space/void/refurb/mercenary, /obj/item/clothing/head/helmet/space/void/refurb/mercenary diff --git a/code/game/objects/structures/alien/alien egg.dm b/code/game/objects/structures/alien/alien egg.dm index 7ca4bd37b7..eebdbb9969 100644 --- a/code/game/objects/structures/alien/alien egg.dm +++ b/code/game/objects/structures/alien/alien egg.dm @@ -4,8 +4,7 @@ desc = "It looks like a weird egg." name = "egg" icon_state = "egg_growing" - density = 0 - anchored = 1 + density = FALSE var/progress = 0 /obj/structure/alien/egg/Initialize() diff --git a/code/game/objects/structures/alien/alien.dm b/code/game/objects/structures/alien/alien.dm index 6aa1ec5060..77945491f7 100644 --- a/code/game/objects/structures/alien/alien.dm +++ b/code/game/objects/structures/alien/alien.dm @@ -1,10 +1,11 @@ -/obj/structure/alien //Gurg Addition, framework for alien eggs. +/obj/structure/alien //Gurg Addition, framework for alien eggs and structures. name = "alien thing" desc = "There's something alien about this." icon = 'icons/mob/alien.dmi' layer = ABOVE_JUNK_LAYER var/health = 50 unacidable = TRUE + anchored = TRUE /obj/structure/alien/proc/healthcheck() if(health <=0) @@ -46,16 +47,45 @@ ..() return -/obj/structure/alien/attack_generic() - attack_hand(usr) +/obj/structure/alien/attack_generic(var/mob/user, var/damage, var/attack_verb) + visible_message("[user] [attack_verb] the [src]!") + playsound(src, 'sound/effects/attackblob.ogg', 100, 1) + user.do_attack_animation(src) + health -= damage + healthcheck() + return -/obj/structure/alien/attackby(var/obj/item/weapon/W, var/mob/user) - health = max(0, health - W.force) - playsound(loc, 'sound/effects/attackblob.ogg', 100, 1) +/obj/structure/alien/attackby(obj/item/weapon/W as obj, mob/user as mob) + + user.setClickCooldown(user.get_attack_speed(W)) + var/aforce = W.force + health = max(0, health - aforce) + playsound(src, 'sound/effects/attackblob.ogg', 100, 1) + visible_message("[user] attacks the [src]!") healthcheck() ..() return +/obj/structure/alien/attack_hand() + usr.setClickCooldown(DEFAULT_ATTACK_COOLDOWN) + if (HULK in usr.mutations) + visible_message("[usr] destroys the [name]!") + health = 0 + else + + // Aliens can get straight through these. + if(istype(usr,/mob/living/carbon)) + var/mob/living/carbon/M = usr + if(locate(/obj/item/organ/internal/xenos/hivenode) in M.internal_organs) + visible_message ("[usr] strokes the [name] and it melts away!", 1) + health = 0 + healthcheck() + return + visible_message("[usr] claws at the [name]!") + health -= rand(5,10) + healthcheck() + return + /obj/structure/alien/CanPass(atom/movable/mover, turf/target, height=0, air_group=0) if(air_group) return 0 if(istype(mover) && mover.checkpass(PASSGLASS)) diff --git a/code/game/objects/structures/alien/resin structures.dm b/code/game/objects/structures/alien/resin structures.dm new file mode 100644 index 0000000000..b3326b8dd2 --- /dev/null +++ b/code/game/objects/structures/alien/resin structures.dm @@ -0,0 +1,17 @@ +/obj/structure/alien/wall + name = "resin wall" + desc = "A disgusting mass of purple slime solidified into a wall." + icon_state = "resin wall" + health = 200 + opacity = 1 + density = TRUE + can_atmos_pass = ATMOS_PASS_NO + +/obj/structure/alien/membrane + name = "resin membrane" + desc = "A revolting mass of purple slime, it appears to be stretched enough to be transparent." + icon_state = "resin membrane" + opacity = 0 + health = 120 + density = TRUE + can_atmos_pass = ATMOS_PASS_NO diff --git a/code/game/objects/structures/artstuff.dm b/code/game/objects/structures/artstuff.dm index cbb95e955f..8ec67cdf8f 100644 --- a/code/game/objects/structures/artstuff.dm +++ b/code/game/objects/structures/artstuff.dm @@ -112,7 +112,7 @@ user.visible_message("[user] smears paint on [src], covering the entire thing in paint.", "You smear paint on [src], changing the color of the entire thing.", runemessage = "smears paint") update_appearance() return - + if(user.a_intent == I_HELP) tgui_interact(user) else @@ -215,7 +215,7 @@ return canvas_color /obj/item/canvas/proc/try_rename(mob/user) - var/new_name = stripped_input(user,"What do you want to name the painting?") + var/new_name = stripped_input(user,"What do you want to name the painting?", max_length = 250) if(new_name != painting_name && new_name && CanUseTopic(user, GLOB.tgui_physical_state)) painting_name = new_name SStgui.update_uis(src) @@ -291,7 +291,7 @@ if(new_color) selected_color = new_color color_drop.color = new_color - + cut_overlays() if(hud_level) add_overlay(color_drop) @@ -316,21 +316,10 @@ name = "painting frame" desc = "The perfect showcase for your favorite deathtrap memories." icon = 'icons/obj/decals.dmi' - //custom_materials = list(/datum/material/wood = 2000) - //flags_1 = NONE + refund_amt = 5 + refund_type = /obj/item/stack/material/wood icon_state = "frame-empty" - -/obj/item/frame/painting/try_build(turf/on_wall, mob/user as mob) - if(get_dist(on_wall, user) > 1) - return - var/ndir = get_dir(on_wall, user) - if (!(ndir in cardinal)) - return - if(!istype(on_wall, /turf/simulated/wall)) - to_chat(user, "Frame cannot be placed on this spot.") - return - new /obj/structure/sign/painting(get_turf(user), ndir, TRUE) - qdel(src) + build_machine_type = /obj/structure/sign/painting /obj/structure/sign/painting name = "Painting" @@ -346,6 +335,7 @@ var/desc_with_canvas var/persistence_id var/loaded = FALSE + var/curator = "nobody! Report bug if you see this." //Presets for art gallery mapping, for paintings to be shared across stations /obj/structure/sign/painting/public @@ -356,10 +346,11 @@ /obj/structure/sign/painting/library_secure name = "\improper Curated Painting Exhibit mounting" - desc = "For masterpieces hand-picked by the curator." - desc_with_canvas = "A masterpiece hand-picked by the curator, supposedly." + desc = "For masterpieces hand-picked by the librarian." + desc_with_canvas = "A masterpiece hand-picked by the librarian, supposedly." persistence_id = "library" req_one_access = list(access_library) + curator = "Librarian" /obj/structure/sign/painting/chapel_secure name = "\improper Religious Painting Exhibit mounting" @@ -367,13 +358,15 @@ desc_with_canvas = "A masterpiece hand-picked by the chaplain, supposedly." persistence_id = "chapel" req_one_access = list(access_chapel_office) + curator = "Chaplain" /obj/structure/sign/painting/library_private // keep your smut away from prying eyes, or non-librarians at least name = "\improper Private Painting Exhibit mounting" - desc = "For art pieces deemed too subversive or too illegal to be shared outside of curators." + desc = "For art pieces deemed too subversive or too illegal to be shared outside of librarians." desc_with_canvas = "A painting hung away from lesser minds." persistence_id = "library_private" req_one_access = list(access_library) + curator = "Librarian" /obj/structure/sign/painting/away_areas // for very hard-to-get-to areas name = "\improper Remote Painting Exhibit mounting" @@ -423,7 +416,7 @@ /obj/structure/sign/painting/proc/frame_canvas(mob/user,obj/item/canvas/new_canvas) if(!allowed(user)) - to_chat(user, "You're not comfortable framing this canvas in such a prestigious spot!") + to_chat(user, "Access lock prevents you from putting a painting into this frame. Ask [curator] for help!") return if(user.drop_from_inventory(new_canvas, src)) current_canvas = new_canvas @@ -434,7 +427,7 @@ /obj/structure/sign/painting/proc/unframe_canvas(mob/living/user) if(!allowed(user)) - to_chat(user, "You're not comfortable removing this prestigious canvas!") + to_chat(user, "Access lock prevents you from removing paintings from this frame. Ask [curator] ((or admins)) for help!") return if(current_canvas) current_canvas.forceMove(drop_location()) @@ -483,12 +476,12 @@ /obj/structure/sign/painting/proc/load_persistent() if(!persistence_id || !LAZYLEN(SSpersistence.unpicked_paintings)) return - + var/list/painting_category = list() for (var/list/P in SSpersistence.unpicked_paintings) if(P["persistence_id"] == persistence_id) painting_category[++painting_category.len] = P - + var/list/painting while(!painting) if(!length(painting_category)) @@ -500,7 +493,7 @@ continue //and try again painting = chosen SSpersistence.unpicked_paintings -= list(chosen) - + var/title = painting["title"] var/author_name = painting["author"] var/author_ckey = painting["ckey"] @@ -509,7 +502,7 @@ var/obj/item/canvas/new_canvas var/w = I.Width() var/h = I.Height() - + for(var/T in typesof(/obj/item/canvas)) new_canvas = T if(initial(new_canvas.width) == w && initial(new_canvas.height) == h) @@ -519,7 +512,7 @@ if(!new_canvas) warning("Couldn't find a canvas to match [w]x[h] of painting") return - + new_canvas.fill_grid_from_icon(I) new_canvas.generated_icon = I new_canvas.icon_generated = TRUE @@ -540,7 +533,7 @@ return if(!current_canvas.painting_name) current_canvas.painting_name = "Untitled Artwork" - + var/data = current_canvas.get_data_string() var/md5 = md5(lowertext(data)) for(var/list/entry in SSpersistence.all_paintings) @@ -549,10 +542,10 @@ var/png_directory = "data/persistent/paintings/[persistence_id]/" var/png_path = png_directory + "[md5].png" var/result = rustg_dmi_create_png(png_path,"[current_canvas.width]","[current_canvas.height]",data) - + if(result) CRASH("Error saving persistent painting: [result]") - + SSpersistence.all_paintings += list(list( "persistence_id" = persistence_id, "title" = current_canvas.painting_name, diff --git a/code/game/objects/structures/barricades.dm b/code/game/objects/structures/barricades.dm index 098b126d00..f33c400023 100644 --- a/code/game/objects/structures/barricades.dm +++ b/code/game/objects/structures/barricades.dm @@ -104,6 +104,12 @@ return TRUE return FALSE +/obj/structure/barricade/planks + name = "crude barricade" + icon_state = "barricade_planks" + health = 50 + maxhealth = 50 + /obj/structure/barricade/sandbag name = "sandbags" desc = "Bags. Bags of sand. It's rough and coarse and somehow stays in the bag." diff --git a/code/game/objects/structures/crates_lockers/_closets_appearance_definitions.dm b/code/game/objects/structures/crates_lockers/_closets_appearance_definitions.dm index 0db94e5aaf..c64593078f 100644 --- a/code/game/objects/structures/crates_lockers/_closets_appearance_definitions.dm +++ b/code/game/objects/structures/crates_lockers/_closets_appearance_definitions.dm @@ -51,7 +51,7 @@ open_icon.Blend(icon(base_icon, "open"), ICON_OVERLAY) open_icon.Blend(color, BLEND_ADD) open_icon.Blend(icon(base_icon, "interior"), ICON_OVERLAY) - + door_back_icon = icon(base_icon, "door_back") door_back_icon.Blend(color, BLEND_ADD) @@ -74,7 +74,7 @@ this_decal_icon.Blend(decals[thing], BLEND_ADD) closed_emagged_icon.Blend(this_decal_icon, ICON_OVERLAY) door_front_icon.Blend(this_decal_icon, ICON_OVERLAY) - + door_front_icon.AddAlphaMask(icon(base_icon, "door_front")) // Remove pesky 'more than just door' decals closed_locked_icon = icon(closed_emagged_icon) @@ -622,6 +622,13 @@ "vertical_stripe_simple" = COLOR_OFF_WHITE, ) +/decl/closet_appearance/oxygen/fire/atmos + color = COLOR_YELLOW_GRAY + extra_decals = list( + "extinguisher" = COLOR_TEAL, + "vertical_stripe_simple" = COLOR_TEAL, + ) + /decl/closet_appearance/alien color = COLOR_PURPLE @@ -1437,6 +1444,13 @@ "stripes" = COLOR_OFF_WHITE, "glass" = COLOR_WHITE ) + +/decl/closet_appearance/wall_double/survival + color = COLOR_CYAN_BLUE + decals = null + extra_decals = list( + "stripe_outer" = COLOR_WHITE + ) // Carts /decl/closet_appearance/cart diff --git a/code/game/objects/structures/crates_lockers/_closets_appearance_definitions_vr.dm b/code/game/objects/structures/crates_lockers/_closets_appearance_definitions_vr.dm index de02a4baf6..0f85ed63c8 100644 --- a/code/game/objects/structures/crates_lockers/_closets_appearance_definitions_vr.dm +++ b/code/game/objects/structures/crates_lockers/_closets_appearance_definitions_vr.dm @@ -32,6 +32,11 @@ "stripes_horizontal" = COLOR_SKY_BLUE ) +/decl/closet_appearance/secure_closet/talon/miner + extra_decals = list( + "stripes_horizontal" = COLOR_BEASTY_BROWN + ) + /decl/closet_appearance/secure_closet/talon/captain extra_decals = list( "stripes_horizontal" = COLOR_GOLD diff --git a/code/game/objects/structures/crates_lockers/closets/fitness.dm b/code/game/objects/structures/crates_lockers/closets/fitness.dm index ca2f81e307..9d01a4efbe 100644 --- a/code/game/objects/structures/crates_lockers/closets/fitness.dm +++ b/code/game/objects/structures/crates_lockers/closets/fitness.dm @@ -3,6 +3,35 @@ desc = "It's a storage unit for athletic wear." closet_appearance = /decl/closet_appearance/wardrobe/mixed + starts_with = list( + /obj/item/clothing/under/shorts/grey, + /obj/item/clothing/under/shorts/black, + /obj/item/clothing/under/shorts/red, + /obj/item/clothing/under/shorts/blue, + /obj/item/clothing/under/shorts/green, + /obj/item/clothing/under/shorts/white, + /obj/item/clothing/suit/storage/toggle/track, + /obj/item/clothing/suit/storage/toggle/track/blue, + /obj/item/clothing/suit/storage/toggle/track/green, + /obj/item/clothing/suit/storage/toggle/track/red, + /obj/item/clothing/suit/storage/toggle/track/white, + /obj/item/clothing/under/pants/track, + /obj/item/clothing/under/pants/track/blue, + /obj/item/clothing/under/pants/track/green, + /obj/item/clothing/under/pants/track/white, + /obj/item/clothing/under/pants/track/red, + /obj/item/clothing/shoes/athletic = 2, + /obj/item/clothing/shoes/hitops, + /obj/item/clothing/shoes/hitops/red, + /obj/item/clothing/shoes/hitops/black, + /obj/item/clothing/shoes/hitops/blue + ) + +/obj/structure/closet/athletic_swimwear + name = "athletic wardrobe" + desc = "It's a storage unit for swimwear." + closet_appearance = /decl/closet_appearance/wardrobe/mixed + starts_with = list( /obj/item/clothing/under/shorts/grey, /obj/item/clothing/under/shorts/black, @@ -17,6 +46,9 @@ /obj/item/clothing/under/swimsuit/striped, /obj/item/clothing/under/swimsuit/white, /obj/item/clothing/under/swimsuit/earth, + /obj/item/clothing/under/wetsuit, + /obj/item/clothing/under/wetsuit_rec, + /obj/item/clothing/under/wetsuit_skimpy, /obj/item/clothing/mask/snorkel = 2, /obj/item/clothing/shoes/swimmingfins = 2) diff --git a/code/game/objects/structures/crates_lockers/closets/misc_vr.dm b/code/game/objects/structures/crates_lockers/closets/misc_vr.dm index da49626d58..a3474cefca 100644 --- a/code/game/objects/structures/crates_lockers/closets/misc_vr.dm +++ b/code/game/objects/structures/crates_lockers/closets/misc_vr.dm @@ -93,7 +93,7 @@ */ /obj/structure/closet/secure_closet/pathfinder name = "pathfinder locker" - req_access = list(access_gateway) + req_access = list(access_pathfinder) closet_appearance = /decl/closet_appearance/secure_closet/expedition/pathfinder starts_with = list( @@ -113,7 +113,6 @@ /obj/item/device/geiger, /obj/item/weapon/cell/device, /obj/item/device/radio, - /obj/item/device/bluespaceradio/tether_prelinked, /obj/item/stack/marker_beacon/thirty, /obj/item/weapon/material/knife/tacknife/survival, /obj/item/weapon/material/knife/machete/deluxe, diff --git a/code/game/objects/structures/crates_lockers/closets/secure/cargo.dm b/code/game/objects/structures/crates_lockers/closets/secure/cargo.dm index 11f5250b27..2f6aaf5ce2 100644 --- a/code/game/objects/structures/crates_lockers/closets/secure/cargo.dm +++ b/code/game/objects/structures/crates_lockers/closets/secure/cargo.dm @@ -41,13 +41,13 @@ /obj/item/device/radio/headset/headset_qm/alt, //VOREStation Edit, /obj/item/clothing/gloves/black, /obj/item/clothing/gloves/fingerless, - /obj/item/clothing/suit/fire/firefighter, /obj/item/weapon/tank/emergency/oxygen, /obj/item/clothing/mask/gas, /obj/item/clothing/glasses/meson, /obj/item/clothing/head/soft, /obj/item/clothing/suit/storage/hooded/wintercoat/cargo, /obj/item/clothing/suit/storage/hooded/wintercoat/cargo/qm, + /obj/item/clothing/head/beret/qm, /obj/item/clothing/shoes/boots/winter/supply) /obj/structure/closet/secure_closet/quartermaster/Initialize() diff --git a/code/game/objects/structures/crates_lockers/closets/secure/engineering.dm b/code/game/objects/structures/crates_lockers/closets/secure/engineering.dm index d189cd7269..eecfde21bc 100644 --- a/code/game/objects/structures/crates_lockers/closets/secure/engineering.dm +++ b/code/game/objects/structures/crates_lockers/closets/secure/engineering.dm @@ -12,7 +12,7 @@ /obj/item/clothing/under/rank/chief_engineer/skirt, /obj/item/clothing/head/hardhat/white, /obj/item/clothing/head/welding, - /obj/item/clothing/gloves/yellow, + /obj/item/clothing/gloves/heavy_engineer, //VOREStation Edit: chief gets the good shit /obj/item/clothing/shoes/brown, /obj/item/weapon/cartridge/ce, /obj/item/device/radio/headset/heads/ce, @@ -28,6 +28,8 @@ /obj/item/clothing/suit/storage/hooded/wintercoat/engineering, /obj/item/clothing/suit/storage/hooded/wintercoat/engineering/ce, /obj/item/clothing/shoes/boots/winter/engineering, + /obj/item/clothing/head/beret/engineering/ce, + /obj/item/clothing/head/beret/engineering/ce/white, /obj/item/weapon/tank/emergency/oxygen/engi, /obj/item/weapon/reagent_containers/spray/windowsealant) //VOREStation Add @@ -82,6 +84,7 @@ /obj/item/clothing/suit/storage/hooded/wintercoat/engineering, /obj/item/clothing/shoes/boots/winter/engineering, /obj/item/weapon/tank/emergency/oxygen/engi, + /obj/item/weapon/storage/belt/utility, //VOREStation Add /obj/item/weapon/reagent_containers/spray/windowsealant) //VOREStation Add /obj/structure/closet/secure_closet/engineering_personal/Initialize() @@ -101,10 +104,10 @@ starts_with = list( /obj/item/clothing/accessory/storage/brown_vest, - /obj/item/clothing/suit/fire/firefighter, - /obj/item/clothing/head/hardhat/red, + /obj/item/clothing/suit/fire/heavy, + /obj/item/clothing/head/hardhat/firefighter/atmos, /obj/item/device/flashlight, - /obj/item/weapon/extinguisher, + /obj/item/weapon/extinguisher/atmo, ///obj/item/clamp, //VOREStation Removal: without leaks those are pointless, /obj/item/device/radio/headset/headset_eng, /obj/item/device/radio/headset/headset_eng/alt, @@ -114,7 +117,8 @@ /obj/item/taperoll/atmos, /obj/item/clothing/suit/storage/hooded/wintercoat/engineering/atmos, /obj/item/clothing/shoes/boots/winter/atmos, - /obj/item/weapon/tank/emergency/oxygen/engi) + /obj/item/weapon/tank/emergency/oxygen/engi, + /obj/item/weapon/storage/belt/utility) //VOREStation Add /obj/structure/closet/secure_closet/atmos_personal/Initialize() if(prob(50)) diff --git a/code/game/objects/structures/crates_lockers/closets/secure/guncabinet.dm b/code/game/objects/structures/crates_lockers/closets/secure/guncabinet.dm index 028f67f06d..b5e3e39150 100644 --- a/code/game/objects/structures/crates_lockers/closets/secure/guncabinet.dm +++ b/code/game/objects/structures/crates_lockers/closets/secure/guncabinet.dm @@ -49,3 +49,15 @@ else add_overlay("open") +//VOREStation Add Start +/obj/structure/closet/secure_closet/guncabinet/excursion + name = "expedition weaponry cabinet" + req_one_access = list(access_explorer,access_armory) + +/obj/structure/closet/secure_closet/guncabinet/excursion/New() + ..() + for(var/i = 1 to 2) + new /obj/item/weapon/gun/energy/locked/frontier(src) + for(var/i = 1 to 2) + new /obj/item/weapon/gun/energy/locked/frontier/holdout(src) +//VOREStation Add End \ No newline at end of file diff --git a/code/game/objects/structures/crates_lockers/closets/secure/hydroponics.dm b/code/game/objects/structures/crates_lockers/closets/secure/hydroponics.dm index 17d67f912c..af7092d9d6 100644 --- a/code/game/objects/structures/crates_lockers/closets/secure/hydroponics.dm +++ b/code/game/objects/structures/crates_lockers/closets/secure/hydroponics.dm @@ -6,6 +6,7 @@ starts_with = list( /obj/item/weapon/storage/bag/plants, /obj/item/clothing/under/rank/hydroponics, + /obj/item/clothing/gloves/botanic_leather, /obj/item/device/analyzer/plant_analyzer, /obj/item/device/radio/headset/headset_service, /obj/item/clothing/head/greenbandana, diff --git a/code/game/objects/structures/crates_lockers/closets/secure/medical.dm b/code/game/objects/structures/crates_lockers/closets/secure/medical.dm index f3f9746b7c..19fb96b2f5 100644 --- a/code/game/objects/structures/crates_lockers/closets/secure/medical.dm +++ b/code/game/objects/structures/crates_lockers/closets/secure/medical.dm @@ -44,7 +44,8 @@ /obj/item/clothing/shoes/boots/winter/medical, /obj/item/clothing/under/rank/nursesuit, /obj/item/clothing/head/nursehat, - /obj/item/weapon/storage/box/freezer = 3) + /obj/item/weapon/storage/box/freezer = 3, + /obj/item/weapon/storage/belt/medical) //VOREStation Add /obj/structure/closet/secure_closet/medical3/Initialize() if(prob(50)) @@ -141,13 +142,16 @@ /obj/item/clothing/suit/storage/hooded/wintercoat/medical, /obj/item/clothing/suit/storage/hooded/wintercoat/medical/cmo, /obj/item/clothing/shoes/boots/winter/medical, + /obj/item/clothing/head/beret/medical/cmo, + /obj/item/clothing/head/beret/medical/cmo/blue, /obj/item/weapon/storage/box/freezer, /obj/item/clothing/mask/gas, /obj/item/taperoll/medical, /obj/item/clothing/suit/bio_suit/cmo, /obj/item/clothing/head/bio_hood/cmo, /obj/item/clothing/shoes/white, - /obj/item/weapon/reagent_containers/glass/beaker/vial) //VOREStation Add + /obj/item/weapon/reagent_containers/glass/beaker/vial, //VOREStation Add + /obj/item/weapon/storage/belt/medical) //VOREStation Add /obj/structure/closet/secure_closet/CMO/Initialize() if(prob(50)) diff --git a/code/game/objects/structures/crates_lockers/closets/secure/scientist.dm b/code/game/objects/structures/crates_lockers/closets/secure/scientist.dm index c9cea196b3..a23147b0c5 100644 --- a/code/game/objects/structures/crates_lockers/closets/secure/scientist.dm +++ b/code/game/objects/structures/crates_lockers/closets/secure/scientist.dm @@ -47,6 +47,7 @@ /obj/item/clothing/suit/storage/hooded/wintercoat/science, /obj/item/clothing/suit/storage/hooded/wintercoat/science/rd, /obj/item/clothing/shoes/boots/winter/science, + /obj/item/clothing/head/beret/science/rd, /obj/item/weapon/bluespace_harpoon) //VOREStation Add /obj/structure/closet/secure_closet/xenoarchaeologist diff --git a/code/game/objects/structures/crates_lockers/closets/secure/security.dm b/code/game/objects/structures/crates_lockers/closets/secure/security.dm index b19449a400..65ea14bb4d 100644 --- a/code/game/objects/structures/crates_lockers/closets/secure/security.dm +++ b/code/game/objects/structures/crates_lockers/closets/secure/security.dm @@ -58,10 +58,12 @@ /obj/item/clothing/shoes/white, /obj/item/clothing/under/rank/head_of_personnel_whimsy, /obj/item/clothing/head/caphat/hop, - /obj/item/clothing/under/gimmick/rank/head_of_personnel/suit, - /obj/item/clothing/under/gimmick/rank/head_of_personnel/suit/skirt, + /obj/item/clothing/under/suit_jacket/teal, + /obj/item/clothing/under/suit_jacket/teal/skirt, /obj/item/clothing/glasses/sunglasses, - /obj/item/clothing/suit/storage/hooded/wintercoat/hop) + /obj/item/clothing/suit/storage/hooded/wintercoat/hop, + /obj/item/clothing/head/caphat/hop/beret/, + /obj/item/clothing/head/caphat/hop/beret/white) /obj/structure/closet/secure_closet/hos diff --git a/code/game/objects/structures/crates_lockers/closets/syndicate.dm b/code/game/objects/structures/crates_lockers/closets/syndicate.dm index dee5e284a3..824da68846 100644 --- a/code/game/objects/structures/crates_lockers/closets/syndicate.dm +++ b/code/game/objects/structures/crates_lockers/closets/syndicate.dm @@ -116,7 +116,6 @@ for(var/i = 0, i<2, i++) for(var/res in resources) - var/obj/item/stack/R = new res(src) - R.amount = R.max_amount + new res(src, -1) return ..() diff --git a/code/game/objects/structures/crates_lockers/closets/utility_closets.dm b/code/game/objects/structures/crates_lockers/closets/utility_closets.dm index 07c5276a6f..61a8fe6afd 100644 --- a/code/game/objects/structures/crates_lockers/closets/utility_closets.dm +++ b/code/game/objects/structures/crates_lockers/closets/utility_closets.dm @@ -65,7 +65,7 @@ closet_appearance = /decl/closet_appearance/oxygen/fire starts_with = list( - /obj/item/clothing/suit/fire/firefighter, + /obj/item/clothing/suit/fire, /obj/item/clothing/mask/gas, /obj/item/weapon/tank/oxygen/red, /obj/item/weapon/extinguisher, @@ -73,7 +73,7 @@ /obj/structure/closet/firecloset/full starts_with = list( - /obj/item/clothing/suit/fire/firefighter, + /obj/item/clothing/suit/fire, /obj/item/clothing/mask/gas, /obj/item/device/flashlight, /obj/item/weapon/tank/oxygen/red, @@ -82,13 +82,24 @@ /obj/structure/closet/firecloset/full/double starts_with = list( - /obj/item/clothing/suit/fire/firefighter = 2, + /obj/item/clothing/suit/fire = 2, /obj/item/clothing/mask/gas = 2, /obj/item/device/flashlight = 2, /obj/item/weapon/tank/oxygen/red = 2, /obj/item/weapon/extinguisher = 2, /obj/item/clothing/head/hardhat/red = 2) +/obj/structure/closet/firecloset/full/atmos + name = "atmos fire-safety closet" + desc = "It's a storage unit for atmospheric fire-fighting supplies." + closet_appearance = /decl/closet_appearance/oxygen/fire/atmos + + starts_with = list( + /obj/item/clothing/suit/fire/heavy, + /obj/item/weapon/tank/oxygen/red, + /obj/item/weapon/extinguisher/atmo, + /obj/item/clothing/head/hardhat/firefighter/atmos) + /* * Tool Closet */ diff --git a/code/game/objects/structures/crates_lockers/closets/walllocker.dm b/code/game/objects/structures/crates_lockers/closets/walllocker.dm index f829254ce8..d699305639 100644 --- a/code/game/objects/structures/crates_lockers/closets/walllocker.dm +++ b/code/game/objects/structures/crates_lockers/closets/walllocker.dm @@ -131,7 +131,7 @@ /obj/structure/closet/walllocker_double/kitchen/east pixel_x = 32 dir = EAST - + /obj/structure/closet/walllocker_double/medical name = "Medical Cabinet" desc = "A wall mounted medical supply cabinet. Probably full of drugs!" //not actually full of drugs, sorry! @@ -152,7 +152,7 @@ /obj/structure/closet/walllocker_double/medical/east pixel_x = 32 dir = EAST - + /obj/structure/closet/walllocker_double/hydrant name = "fire-safety closet" desc = "It's a storage cabinet packed with fire-fighting supplies." @@ -161,7 +161,7 @@ density = FALSE starts_with = list( - /obj/item/clothing/suit/fire/firefighter, + /obj/item/clothing/suit/fire, /obj/item/clothing/mask/gas, /obj/item/device/flashlight, /obj/item/weapon/tank/oxygen/red, @@ -183,3 +183,44 @@ /obj/structure/closet/walllocker_double/hydrant/east pixel_x = 32 dir = EAST + +/obj/structure/closet/walllocker_double/survival + desc = "A wall mounted storage cabinet. It contains a small amount of emergency supplies for wilderness survival, but they probably won't last very long." + name = "Emergency Survival Wall Cabinet" + icon = 'icons/obj/closets/bases/wall_double.dmi' + closet_appearance = /decl/closet_appearance/wall_double/survival + density = FALSE + anchored = TRUE + store_mobs = 0 + wall_mounted = 1 + plane = TURF_PLANE + layer = ABOVE_TURF_LAYER + + starts_with = list( + /obj/item/clothing/suit/space/emergency, + /obj/item/clothing/head/helmet/space/emergency, + /obj/item/clothing/mask/breath, + /obj/item/weapon/tank/oxygen, + /obj/item/device/suit_cooling_unit/emergency, + /obj/item/device/gps, + /obj/item/weapon/material/knife/tacknife/survival, + /obj/random/mre, + /obj/item/device/flashlight/color/yellow, + /obj/item/device/flashlight/flare, + /obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle) + +/obj/structure/closet/walllocker_double/survival/north + pixel_y = 32 + dir = SOUTH + +/obj/structure/closet/walllocker_double/survival/south + pixel_y = -32 + dir = NORTH + +/obj/structure/closet/walllocker_double/survival/west + pixel_x = -32 + dir = WEST + +/obj/structure/closet/walllocker_double/survival/east + pixel_x = 32 + dir = EAST \ No newline at end of file diff --git a/code/game/objects/structures/crates_lockers/closets/wardrobe.dm b/code/game/objects/structures/crates_lockers/closets/wardrobe.dm index ead22e53e9..21034b90e5 100644 --- a/code/game/objects/structures/crates_lockers/closets/wardrobe.dm +++ b/code/game/objects/structures/crates_lockers/closets/wardrobe.dm @@ -364,8 +364,11 @@ /obj/item/clothing/under/pants/khaki, /obj/item/clothing/mask/bandana/blue, /obj/item/clothing/mask/bandana/blue, - /obj/item/clothing/accessory/hawaii, - /obj/item/clothing/accessory/hawaii/random) + /obj/item/clothing/accessory/hawaiian, + /obj/item/clothing/accessory/hawaiian/blue, + /obj/item/clothing/accessory/hawaiian/pink, + /obj/item/clothing/accessory/hawaiian/red, + /obj/item/clothing/accessory/hawaiian/yellow) /obj/structure/closet/wardrobe/tactical @@ -448,7 +451,9 @@ /obj/item/clothing/suit/captunic, /obj/item/clothing/suit/captunic/capjacket, /obj/item/clothing/head/caphat/cap, + /obj/item/clothing/head/caphat/beret, /obj/item/clothing/under/rank/captain, + /obj/item/clothing/under/dress/dress_cap/femformal, /obj/item/clothing/shoes/brown, /obj/item/clothing/gloves/captain, /obj/item/clothing/under/dress/dress_cap, @@ -458,7 +463,7 @@ /obj/item/clothing/suit/storage/hooded/wintercoat/captain, /obj/item/clothing/shoes/boots/winter/command, /obj/item/clothing/head/beret/centcom/captain, - /obj/item/clothing/under/gimmick/rank/captain/suit, - /obj/item/clothing/under/gimmick/rank/captain/suit/skirt, + /obj/item/clothing/under/suit_jacket/green, + /obj/item/clothing/under/suit_jacket/green/skirt, /obj/item/clothing/glasses/sunglasses, /obj/item/clothing/head/caphat) diff --git a/code/game/objects/structures/crates_lockers/largecrate.dm b/code/game/objects/structures/crates_lockers/largecrate.dm index 1ceded17fd..6b338895e3 100644 --- a/code/game/objects/structures/crates_lockers/largecrate.dm +++ b/code/game/objects/structures/crates_lockers/largecrate.dm @@ -32,7 +32,7 @@ if(AM.simulated) AM.forceMove(T) //VOREStation Add Start - if(isanimal(AM)) + if(isanimal(AM)) var/mob/living/simple_mob/AMBLINAL = AM if(!AMBLINAL.mind) AMBLINAL.ghostjoin = 1 @@ -65,6 +65,11 @@ ME.attach(H) ..() +/obj/structure/largecrate/donksoftvendor + name = "\improper Donk-Soft vendor crate" + desc = "A hefty wooden crate displaying the logo of Donk-Soft. It's rather heavy." + starts_with = list(/obj/machinery/vending/donksoft) + /obj/structure/largecrate/vehicle name = "vehicle crate" desc = "Wulf Aeronautics says it comes in a box for the consumer's sake... How is this so light?" @@ -121,3 +126,7 @@ /obj/structure/largecrate/animal/chick name = "chicken crate" starts_with = list(/mob/living/simple_mob/animal/passive/chick = 5) + +/obj/structure/largecrate/animal/catslug + name = "catslug carrier" + starts_with = list(/mob/living/simple_mob/vore/alienanimals/catslug) diff --git a/code/game/objects/structures/curtains.dm b/code/game/objects/structures/curtains.dm index 1d53318125..f40a827806 100644 --- a/code/game/objects/structures/curtains.dm +++ b/code/game/objects/structures/curtains.dm @@ -43,8 +43,7 @@ to_chat(user, "You start to cut the shower curtains.") if(do_after(user, 10)) to_chat(user, "You cut the shower curtains.") - var/obj/item/stack/material/plastic/A = new /obj/item/stack/material/plastic( src.loc ) - A.amount = 3 + new /obj/item/stack/material/plastic(src.loc, 3) qdel(src) return else diff --git a/code/game/objects/structures/droppod.dm b/code/game/objects/structures/droppod.dm index 8598d632fc..730fba388b 100644 --- a/code/game/objects/structures/droppod.dm +++ b/code/game/objects/structures/droppod.dm @@ -113,8 +113,7 @@ if(finished) to_chat(user, "You start breaking down \the [src].") if(do_after(user, 10 SECONDS, src, exclusive = TASK_ALL_EXCLUSIVE)) - var/obj/item/stack/S = new /obj/item/stack/material/plasteel(loc) - S.amount = 10 + new /obj/item/stack/material/plasteel(loc, 10) playsound(user, O.usesound, 50, 1) qdel(src) else diff --git a/code/game/objects/structures/extinguisher.dm b/code/game/objects/structures/extinguisher.dm index bbcd3e8840..a0c01e52cd 100644 --- a/code/game/objects/structures/extinguisher.dm +++ b/code/game/objects/structures/extinguisher.dm @@ -17,7 +17,7 @@ pixel_y = (dir & 3)? (dir ==1 ? -27 : 27) : 0 else has_extinguisher = new/obj/item/weapon/extinguisher(src) - + update_icon() /obj/structure/extinguisher_cabinet/attackby(obj/item/O, mob/user) @@ -80,9 +80,11 @@ if(has_extinguisher) if(istype(has_extinguisher, /obj/item/weapon/extinguisher/mini)) suffix = "mini" + if(istype(has_extinguisher, /obj/item/weapon/extinguisher/atmo)) + suffix = "advanced" else suffix = "standard" - + icon_state = "[initial(icon_state)][opened ? "" : "_closed"]_[suffix]" /obj/structure/extinguisher_cabinet/old diff --git a/code/game/objects/structures/flora/flora.dm b/code/game/objects/structures/flora/flora.dm index 8a130c91f5..1f7e2d0ba9 100644 --- a/code/game/objects/structures/flora/flora.dm +++ b/code/game/objects/structures/flora/flora.dm @@ -479,6 +479,42 @@ adjust_scale(-1, 1) pixel_x = rand(-4, 4) +/obj/random/pottedplant + name = "random potted plant" + desc = "This is a random potted plant." + +/obj/random/pottedplant/item_to_spawn() + return pick( + prob(10);/obj/structure/flora/pottedplant, + prob(10);/obj/structure/flora/pottedplant/large, + prob(10);/obj/structure/flora/pottedplant/fern, + prob(10);/obj/structure/flora/pottedplant/overgrown, + prob(10);/obj/structure/flora/pottedplant/bamboo, + prob(10);/obj/structure/flora/pottedplant/largebush, + prob(10);/obj/structure/flora/pottedplant/thinbush, + prob(10);/obj/structure/flora/pottedplant/mysterious, + prob(10);/obj/structure/flora/pottedplant/smalltree, + prob(10);/obj/structure/flora/pottedplant/unusual, + prob(10);/obj/structure/flora/pottedplant/orientaltree, + prob(10);/obj/structure/flora/pottedplant/smallcactus, + prob(10);/obj/structure/flora/pottedplant/tall, + prob(10);/obj/structure/flora/pottedplant/sticky, + prob(10);/obj/structure/flora/pottedplant/smelly, + prob(10);/obj/structure/flora/pottedplant/small, + prob(10);/obj/structure/flora/pottedplant/aquatic, + prob(10);/obj/structure/flora/pottedplant/shoot, + prob(10);/obj/structure/flora/pottedplant/flower, + prob(10);/obj/structure/flora/pottedplant/crystal, + prob(10);/obj/structure/flora/pottedplant/subterranean, + prob(10);/obj/structure/flora/pottedplant/minitree, + prob(10);/obj/structure/flora/pottedplant/stoutbush, + prob(10);/obj/structure/flora/pottedplant/drooping, + prob(10);/obj/structure/flora/pottedplant/tropical, + prob(10);/obj/structure/flora/pottedplant/dead, + prob(10);/obj/structure/flora/pottedplant/decorative, + prob(1);/obj/structure/flora/pottedplant/xmas + ) + /obj/structure/flora/sif icon = 'icons/obj/flora/sifflora.dmi' diff --git a/code/game/objects/structures/flora/trees.dm b/code/game/objects/structures/flora/trees.dm index ff1a99cd0c..4b4921a3e2 100644 --- a/code/game/objects/structures/flora/trees.dm +++ b/code/game/objects/structures/flora/trees.dm @@ -101,8 +101,7 @@ return if(product && product_amount) // Make wooden logs. - var/obj/item/stack/material/M = new product(get_turf(src)) - M.amount = product_amount + var/obj/item/stack/material/M = new product(get_turf(src), product_amount) M.update_icon() visible_message("\The [src] is felled!") stump() diff --git a/code/game/objects/structures/ghost_pods/event_vr.dm b/code/game/objects/structures/ghost_pods/event_vr.dm index a41e1e99b5..cc7cf8379a 100644 --- a/code/game/objects/structures/ghost_pods/event_vr.dm +++ b/code/game/objects/structures/ghost_pods/event_vr.dm @@ -41,7 +41,8 @@ "Frost Giant Spider" = /mob/living/simple_mob/animal/giant_spider/frost, "Nurse Giant Spider" = /mob/living/simple_mob/animal/giant_spider/nurse/eggless, "Giant Spider Queen" = /mob/living/simple_mob/animal/giant_spider/nurse/queen/eggless, - "Weretiger" = /mob/living/simple_mob/vore/weretiger + "Weretiger" = /mob/living/simple_mob/vore/weretiger, + "Catslug" = /mob/living/simple_mob/vore/alienanimals/catslug ) /obj/structure/ghost_pod/ghost_activated/maintpred/create_occupant(var/mob/M) @@ -51,6 +52,9 @@ var/finalized = "No" while(finalized == "No" && M.client) + if(jobban_isbanned(M, "GhostRoles")) + to_chat(M, "You cannot inhabit this creature because you are banned from playing ghost roles.") + return choice = tgui_input_list(M, "What type of predator do you want to play as?", "Maintpred Choice", possible_mobs) if(!choice) randomize = TRUE @@ -76,11 +80,6 @@ to_chat(M, "You may be a spooky space monster, but your role is to facilitate spooky space monster roleplay, not to fight the station and kill people. You can of course eat and/or digest people as you like if OOC prefs align, but this should be done as part of roleplay. If you intend to fight the station and kill people and such, you need permission from the staff team. GENERALLY, this role should avoid well populated areas. You’re a weird spooky space monster, so the bar is probably not where you’d want to go if you intend to survive. Of course, you’re welcome to try to make friends and roleplay how you will in this regard, but something to keep in mind.") newPred.ckey = M.ckey newPred.visible_message("[newPred] emerges from somewhere!") - - if(prob(announce_prob)) - spawn(2 MINUTES) - command_announcement.Announce("Unexpected biosignature detected in the maintenance tunnels of [station_name()].", "Lifesign Alert") - qdel(src) /obj/structure/ghost_pod/ghost_activated/maintpred/no_announce @@ -115,11 +114,6 @@ newMorph.ckey = M.ckey newMorph.visible_message("A morph appears to crawl out of somewhere.") - - if(prob(announce_prob)) - spawn(2 MINUTES) - command_announcement.Announce("Unexpected biosignature detected in the maintenance tunnels of [station_name()].", "Lifesign Alert") - qdel(src) /obj/structure/ghost_pod/ghost_activated/morphspawn/no_announce diff --git a/code/game/objects/structures/ghost_pods/ghost_pods.dm b/code/game/objects/structures/ghost_pods/ghost_pods.dm index c77e00e13e..f09522ddb8 100644 --- a/code/game/objects/structures/ghost_pods/ghost_pods.dm +++ b/code/game/objects/structures/ghost_pods/ghost_pods.dm @@ -84,6 +84,11 @@ description_info = "A ghost can click on this to return to the round as whatever is contained inside this object." /obj/structure/ghost_pod/ghost_activated/attack_ghost(var/mob/observer/dead/user) + //VOREStation Add Start + if(jobban_isbanned(user, "GhostRoles")) + to_chat(user, "You cannot inhabit this creature because you are banned from playing ghost roles.") + return + //VOREStation Add End if(used) to_chat(user, "Another spirit appears to have gotten to \the [src] before you. Sorry.") return diff --git a/code/game/objects/structures/ghost_pods/ghost_pods_vr.dm b/code/game/objects/structures/ghost_pods/ghost_pods_vr.dm index a792e1b559..0297346c57 100644 --- a/code/game/objects/structures/ghost_pods/ghost_pods_vr.dm +++ b/code/game/objects/structures/ghost_pods/ghost_pods_vr.dm @@ -11,6 +11,10 @@ var/activated = FALSE /obj/structure/ghost_pod/manual/attack_ghost(var/mob/observer/dead/user) + if(jobban_isbanned(user, "GhostRoles")) + to_chat(user, "You cannot inhabit this creature because you are banned from playing ghost roles.") + return + if(!remains_active || busy) return diff --git a/code/game/objects/structures/girders.dm b/code/game/objects/structures/girders.dm index 825459b8f4..8e8568953b 100644 --- a/code/game/objects/structures/girders.dm +++ b/code/game/objects/structures/girders.dm @@ -1,4 +1,5 @@ /obj/structure/girder + name = "girder" icon_state = "girder" anchored = TRUE density = TRUE diff --git a/code/game/objects/structures/low_wall.dm b/code/game/objects/structures/low_wall.dm index 44678a0a34..f50ea247b5 100644 --- a/code/game/objects/structures/low_wall.dm +++ b/code/game/objects/structures/low_wall.dm @@ -21,9 +21,9 @@ var/stripe_color //rad_resistance_modifier = 0.5 - // blend_objects defined on subtypes + // blend_objects defined on subtypes noblend_objects = list(/obj/machinery/door/window, /obj/machinery/door/firedoor) - + var/default_material = DEFAULT_WALL_MATERIAL var/datum/material/material var/grille_type @@ -38,9 +38,9 @@ if(!materialtype) materialtype = default_material - + material = get_material_by_name(materialtype) - + health = material.integrity return INITIALIZE_HINT_LATELOAD @@ -79,12 +79,12 @@ if(istype(W, /obj/item/stack/rods)) handle_rod_use(user, W) return - + // Making windows, different per subtype else if(istype(W, /obj/item/stack/material/glass)) handle_glass_use(user, W) return - + // Dismantling the half wall if(W.is_wrench()) for(var/obj/structure/S in loc) @@ -99,6 +99,7 @@ if(do_after(user, 40, src)) to_chat(user, "You dissasembled the low wall!") dismantle() + return // Handle placing things if(isrobot(user)) @@ -110,7 +111,7 @@ if(can_place_items() && user.unEquip(W, 0, src.loc) && user.is_preference_enabled(/datum/client_preference/precision_placement)) auto_align(W, click_parameters) return 1 - + return ..() /obj/structure/low_wall/proc/can_place_items() @@ -121,19 +122,44 @@ return FALSE return TRUE -/obj/structure/low_wall/MouseDrop_T(obj/O as obj, mob/user as mob) +/obj/structure/low_wall/MouseDrop_T(atom/movable/AM, mob/user, src_location, over_location, src_control, over_control, params) + if(AM == user) + var/mob/living/H = user + if(istype(H) && can_climb(H)) + do_climb(AM) + var/obj/O = AM + if(!istype(O)) + return if(istype(O, /obj/structure/window)) var/obj/structure/window/W = O if(Adjacent(W) && !W.anchored) to_chat("You hoist [W] up onto [src].") W.forceMove(loc) return - if ((!( istype(O, /obj/item/weapon) ) || user.get_active_hand() != O)) - return ..() if(isrobot(user)) return if(can_place_items()) - user.unEquip(O, 0, src.loc) + if(ismob(O.loc)) //If placing an item + if(!isitem(O) || user.get_active_hand() != O) + return ..() + if(isrobot(user)) + return + user.drop_item() + if(O.loc != src.loc) + step(O, get_dir(O, src)) + + else if(isturf(O.loc) && isitem(O)) //If pushing an item on the tabletop + var/obj/item/I = O + if(I.anchored) + return + + if((isliving(user)) && (Adjacent(user)) && !(user.incapacitated())) + if(O.w_class <= user.can_pull_size) + O.forceMove(loc) + auto_align(I, params, TRUE) + else + to_chat(user, SPAN_WARNING("\The [I] is too big for you to move!")) + return /obj/structure/low_wall/proc/handle_rod_use(mob/user, obj/item/stack/rods/R) if(!grille_type) @@ -169,7 +195,7 @@ to_chat(user, "Assembling window...") if(!do_after(user, 4 SECONDS, G, exclusive = TASK_ALL_EXCLUSIVE)) return - if(!G.use(2)) + if(!G.use(4)) return new window_type(loc, null, TRUE) return @@ -397,7 +423,7 @@ other_connections = list("0","0","0","0") else update_connections() - + var/percent_damage = 0 // Used for icon state of damage layer var/damage_alpha = 0 // Used for alpha blending of damage layer if (maxhealth && health < maxhealth) @@ -488,7 +514,7 @@ other_connections = list("0","0","0","0") else update_connections() - + var/img_dir var/image/I for(var/i = 1 to 4) @@ -555,14 +581,14 @@ if(locate(/obj/effect/low_wall_spawner) in oview(0, src)) warning("Duplicate low wall spawners in [x],[y],[z]!") return INITIALIZE_HINT_QDEL - + if(low_wall_type) new low_wall_type(loc) if(grille_type) new grille_type(loc) if(window_type) new window_type(loc) - + return INITIALIZE_HINT_QDEL // Bay types diff --git a/code/game/objects/structures/plasticflaps.dm b/code/game/objects/structures/plasticflaps.dm index 8b54df0c6c..bd7e7836f6 100644 --- a/code/game/objects/structures/plasticflaps.dm +++ b/code/game/objects/structures/plasticflaps.dm @@ -22,8 +22,7 @@ to_chat(user, "You start to cut the plastic flaps.") if(do_after(user, 10 * P.toolspeed)) to_chat(user, "You cut the plastic flaps.") - var/obj/item/stack/material/plastic/A = new /obj/item/stack/material/plastic( src.loc ) - A.amount = 4 + new /obj/item/stack/material/plastic(src.loc, 4) qdel(src) return else diff --git a/code/game/objects/structures/simple_doors.dm b/code/game/objects/structures/simple_doors.dm index e7799fcf8f..ea70fa44a6 100644 --- a/code/game/objects/structures/simple_doors.dm +++ b/code/game/objects/structures/simple_doors.dm @@ -12,6 +12,8 @@ var/isSwitchingStates = 0 var/hardness = 1 var/oreAmount = 7 + var/knock_sound = 'sound/machines/door/knock_glass.ogg' + var/knock_hammer_sound = 'sound/weapons/sonic_jackhammer.ogg' /obj/structure/simple_door/fire_act(datum/gas_mixture/air, exposed_temperature, exposed_volume) TemperatureAct(exposed_temperature) @@ -68,6 +70,21 @@ /obj/structure/simple_door/attack_hand(mob/user as mob) return TryToSwitchState(user) +/obj/structure/simple_door/AltClick(mob/user as mob) + . = ..() + user.setClickCooldown(DEFAULT_ATTACK_COOLDOWN) + if(!Adjacent(user)) + return + else if(user.a_intent == I_HURT) + src.visible_message("[user] hammers on \the [src]!", "Someone hammers loudly on \the [src]!") + src.add_fingerprint(user) + playsound(src, knock_hammer_sound, 50, 0, 3) + else if(user.a_intent == I_HELP) + src.visible_message("[user] knocks on \the [src].", "Someone knocks on \the [src].") + src.add_fingerprint(user) + playsound(src, knock_sound, 50, 0, 3) + return + /obj/structure/simple_door/CanPass(atom/movable/mover, turf/target) if(istype(mover, /obj/effect/beam)) return !opacity @@ -140,7 +157,7 @@ visible_message("[user] hits [src] with [W]!") if(material == get_material_by_name("resin")) playsound(src, 'sound/effects/attackblob.ogg', 100, 1) - else if(material == (get_material_by_name(MAT_WOOD) || get_material_by_name(MAT_SIFWOOD))) + else if(material == (get_material_by_name(MAT_WOOD) || get_material_by_name(MAT_SIFWOOD) || get_material_by_name(MAT_HARDWOOD))) playsound(src, 'sound/effects/woodcutting.ogg', 100, 1) else playsound(src, 'sound/weapons/smash.ogg', 50, 1) @@ -165,7 +182,7 @@ visible_message("[user] [attack_verb] the [src]!") if(material == get_material_by_name("resin")) playsound(src, 'sound/effects/attackblob.ogg', 100, 1) - else if(material == (get_material_by_name(MAT_WOOD) || get_material_by_name(MAT_SIFWOOD))) + else if(material == (get_material_by_name(MAT_WOOD) || get_material_by_name(MAT_SIFWOOD) || get_material_by_name(MAT_HARDWOOD))) playsound(src, 'sound/effects/woodcutting.ogg', 100, 1) else playsound(src, 'sound/weapons/smash.ogg', 50, 1) @@ -225,6 +242,10 @@ /obj/structure/simple_door/wood/Initialize(mapload,var/material_name) ..(mapload, material_name || MAT_WOOD) + knock_sound = 'sound/machines/door/knock_wood.wav' + +/obj/structure/simple_door/hardwood/Initialize(mapload,var/material_name) + ..(mapload, material_name || MAT_HARDWOOD) /obj/structure/simple_door/sifwood/Initialize(mapload,var/material_name) ..(mapload, material_name || MAT_SIFWOOD) diff --git a/code/game/objects/structures/stool_bed_chair_nest/bed.dm b/code/game/objects/structures/stool_bed_chair_nest/bed.dm index e858ad6ac6..eba9ea3319 100644 --- a/code/game/objects/structures/stool_bed_chair_nest/bed.dm +++ b/code/game/objects/structures/stool_bed_chair_nest/bed.dm @@ -127,6 +127,13 @@ playsound(src, W.usesound, 100, 1) remove_padding() + else if(istype(W, /obj/item/weapon/disk) || (istype(W, /obj/item/toy/plushie))) + user.drop_from_inventory(W, get_turf(src)) + W.pixel_x = 10 //make sure they reach the pillow + W.pixel_y = -6 + if(istype(W, /obj/item/weapon/disk)) + user.visible_message("[src] sleeps soundly. Sleep tight, disky.") + else if(istype(W, /obj/item/weapon/grab)) var/obj/item/weapon/grab/G = W var/mob/living/affecting = G.affecting @@ -290,7 +297,7 @@ /obj/structure/bed/roller/Moved(atom/old_loc, direction, forced = FALSE) . = ..() - + playsound(src, 'sound/effects/roll.ogg', 100, 1) /obj/structure/bed/roller/post_buckle_mob(mob/living/M as mob) diff --git a/code/game/objects/structures/stool_bed_chair_nest/chairs.dm b/code/game/objects/structures/stool_bed_chair_nest/chairs.dm index 690164e265..5466582125 100644 --- a/code/game/objects/structures/stool_bed_chair_nest/chairs.dm +++ b/code/game/objects/structures/stool_bed_chair_nest/chairs.dm @@ -334,7 +334,7 @@ corner_piece = TRUE //color variations - +//Middle sofas first /obj/structure/bed/chair/sofa sofa_material = "carpet" @@ -379,92 +379,92 @@ /obj/structure/bed/chair/sofa/corner icon_state = "sofacorner" -/obj/structure/bed/chair/sofa/brown/left - icon_state = "sofaend_left" +/obj/structure/bed/chair/sofa/left/brown + sofa_material = "leather" -/obj/structure/bed/chair/sofa/brown/right - icon_state = "sofaend_right" +/obj/structure/bed/chair/sofa/right/brown + sofa_material = "leather" -/obj/structure/bed/chair/sofa/brown/corner - icon_state = "sofacorner" +/obj/structure/bed/chair/sofa/corner/brown + sofa_material = "leather" -/obj/structure/bed/chair/sofa/teal/left - icon_state = "sofaend_left" +/obj/structure/bed/chair/sofa/left/teal + sofa_material = "teal" -/obj/structure/bed/chair/sofa/teal/right - icon_state = "sofaend_right" +/obj/structure/bed/chair/sofa/right/teal + sofa_material = "teal" -/obj/structure/bed/chair/sofa/teal/corner - icon_state = "sofacorner" +/obj/structure/bed/chair/sofa/corner/teal + sofa_material = "teal" -/obj/structure/bed/chair/sofa/black/left - icon_state = "sofaend_left" +/obj/structure/bed/chair/sofa/left/black + sofa_material = "black" -/obj/structure/bed/chair/sofa/black/right - icon_state = "sofaend_right" +/obj/structure/bed/chair/sofa/right/black + sofa_material = "black" -/obj/structure/bed/chair/sofa/black/corner - icon_state = "sofacorner" +/obj/structure/bed/chair/sofa/corner/black + sofa_material = "black" -/obj/structure/bed/chair/sofa/green/left - icon_state = "sofaend_left" +/obj/structure/bed/chair/sofa/left/green + sofa_material = "green" -/obj/structure/bed/chair/sofa/green/right - icon_state = "sofaend_right" +/obj/structure/bed/chair/sofa/right/green + sofa_material = "green" -/obj/structure/bed/chair/sofa/green/corner - icon_state = "sofacorner" +/obj/structure/bed/chair/sofa/corner/green + sofa_material = "green" -/obj/structure/bed/chair/sofa/purp/left - icon_state = "sofaend_left" +/obj/structure/bed/chair/sofa/left/purp + sofa_material = "purple" -/obj/structure/bed/chair/sofa/purp/right - icon_state = "sofaend_right" +/obj/structure/bed/chair/sofa/right/purp + sofa_material = "purple" -/obj/structure/bed/chair/sofa/purp/corner - icon_state = "sofacorner" +/obj/structure/bed/chair/sofa/corner/purp + sofa_material = "purple" -/obj/structure/bed/chair/sofa/blue/left - icon_state = "sofaend_left" +/obj/structure/bed/chair/sofa/left/blue + sofa_material = "blue" -/obj/structure/bed/chair/sofa/blue/right - icon_state = "sofaend_right" +/obj/structure/bed/chair/sofa/right/blue + sofa_material = "blue" -/obj/structure/bed/chair/sofa/blue/corner - icon_state = "sofacorner" +/obj/structure/bed/chair/sofa/corner/blue + sofa_material = "blue" -/obj/structure/bed/chair/sofa/beige/left - icon_state = "sofaend_left" +/obj/structure/bed/chair/sofa/left/beige + sofa_material = "beige" -/obj/structure/bed/chair/sofa/beige/right - icon_state = "sofaend_right" +/obj/structure/bed/chair/sofa/right/beige + sofa_material = "beige" -/obj/structure/bed/chair/sofa/beige/corner - icon_state = "sofacorner" +/obj/structure/bed/chair/sofa/corner/beige + sofa_material = "beige" -/obj/structure/bed/chair/sofa/lime/left - icon_state = "sofaend_left" +/obj/structure/bed/chair/sofa/left/lime + sofa_material = "lime" -/obj/structure/bed/chair/sofa/lime/right - icon_state = "sofaend_right" +/obj/structure/bed/chair/sofa/right/lime + sofa_material = "lime" -/obj/structure/bed/chair/sofa/lime/corner - icon_state = "sofacorner" +/obj/structure/bed/chair/sofa/corner/lime + sofa_material = "lime" -/obj/structure/bed/chair/sofa/yellow/left - icon_state = "sofaend_left" +/obj/structure/bed/chair/sofa/left/yellow + sofa_material = "yellow" -/obj/structure/bed/chair/sofa/yellow/right - icon_state = "sofaend_right" +/obj/structure/bed/chair/sofa/right/yellow + sofa_material = "yellow" -/obj/structure/bed/chair/sofa/yellow/corner - icon_state = "sofacorner" +/obj/structure/bed/chair/sofa/corner/yellow + sofa_material = "yellow" -/obj/structure/bed/chair/sofa/orange/left - icon_state = "sofaend_left" +/obj/structure/bed/chair/sofa/left/orange + sofa_material = "orange" -/obj/structure/bed/chair/sofa/orange/right - icon_state = "sofaend_right" +/obj/structure/bed/chair/sofa/right/orange + sofa_material = "orange" -/obj/structure/bed/chair/sofa/orange/corner - icon_state = "sofacorner" +/obj/structure/bed/chair/sofa/corner/orange + sofa_material = "orange" diff --git a/code/game/objects/structures/trash_pile_vr.dm b/code/game/objects/structures/trash_pile_vr.dm index 85eab74a09..6202baa585 100644 --- a/code/game/objects/structures/trash_pile_vr.dm +++ b/code/game/objects/structures/trash_pile_vr.dm @@ -69,13 +69,13 @@ var/mob/living/L = user //They're in it, and want to get out. if(L.loc == src) - var/choice = tgui_alert(usr, "Do you want to exit \the [src]?","Un-Hide?",list("Exit","Stay")) + var/choice = tgui_alert(user, "Do you want to exit \the [src]?","Un-Hide?",list("Exit","Stay")) if(choice == "Exit") if(L == hider) hider = null L.forceMove(get_turf(src)) else if(!hider) - var/choice = tgui_alert(usr, "Do you want to hide in \the [src]?","Un-Hide?",list("Hide","Stay")) + var/choice = tgui_alert(user, "Do you want to hide in \the [src]?","Un-Hide?",list("Hide","Stay")) if(choice == "Hide" && !hider) //Check again because PROMPT L.forceMove(src) hider = L @@ -200,6 +200,7 @@ prob(2);/obj/item/toy/tennis/blue, prob(2);/obj/item/toy/tennis/purple, prob(1);/obj/item/clothing/glasses/sunglasses, + prob(1);/obj/item/clothing/glasses/sunglasses/bigshot, prob(1);/obj/item/clothing/glasses/welding, prob(1);/obj/item/clothing/gloves/yellow, prob(1);/obj/item/clothing/head/bio_hood/general, @@ -231,10 +232,11 @@ prob(4);/obj/item/weapon/storage/pill_bottle/happy, prob(4);/obj/item/weapon/storage/pill_bottle/zoom, prob(4);/obj/item/seeds/ambrosiavulgarisseed, - prob(4);/obj/item/weapon/gun/energy/sizegun, + prob(4);/obj/item/weapon/gun/energy/sizegun/old, prob(3);/obj/item/weapon/material/butterfly, prob(3);/obj/item/weapon/material/butterfly/switchblade, prob(3);/obj/item/clothing/gloves/knuckledusters, + prob(3);/obj/item/clothing/gloves/heavy_engineer, prob(3);/obj/item/weapon/reagent_containers/syringe/drugs, prob(2);/obj/item/weapon/implanter/sizecontrol, prob(2);/obj/item/weapon/handcuffs/fuzzy, @@ -255,7 +257,8 @@ prob(1);/obj/item/weapon/storage/box/survival/space, prob(1);/obj/item/weapon/storage/secure/briefcase/trashmoney, prob(1);/obj/item/device/survivalcapsule/popcabin, - prob(1);/obj/item/weapon/reagent_containers/syringe/steroid) + prob(1);/obj/item/weapon/reagent_containers/syringe/steroid, + prob(1);/obj/item/capture_crystal) var/obj/item/I = new path() return I diff --git a/code/game/objects/structures/window.dm b/code/game/objects/structures/window.dm index ab52208b25..098861595b 100644 --- a/code/game/objects/structures/window.dm +++ b/code/game/objects/structures/window.dm @@ -297,7 +297,7 @@ visible_message("[user] dismantles \the [src].") var/obj/item/stack/material/mats = new glasstype(loc) if(is_fulltile()) - mats.amount = 4 + mats.set_amount(4) qdel(src) else if(istype(W, /obj/item/stack/cable_coil) && reinf && state == 0 && !istype(src, /obj/structure/window/reinforced/polarized)) var/obj/item/stack/cable_coil/C = W diff --git a/code/game/sound.dm b/code/game/sound.dm index e05021920f..18dd9e718a 100644 --- a/code/game/sound.dm +++ b/code/game/sound.dm @@ -1,7 +1,7 @@ /proc/playsound(atom/source, soundin, vol as num, vary, extrarange as num, falloff, is_global, frequency = null, channel = 0, pressure_affected = TRUE, ignore_walls = TRUE, preference = null, volume_channel = null) if(Master.current_runlevel < RUNLEVEL_LOBBY) return - + var/turf/turf_source = get_turf(source) if(!turf_source) return @@ -262,6 +262,11 @@ 'sound/vore/sunesound/prey/death_04.ogg','sound/vore/sunesound/prey/death_05.ogg','sound/vore/sunesound/prey/death_06.ogg', 'sound/vore/sunesound/prey/death_07.ogg','sound/vore/sunesound/prey/death_08.ogg','sound/vore/sunesound/prey/death_09.ogg', 'sound/vore/sunesound/prey/death_10.ogg') + if ("belches") soundin = pick( + 'sound/vore/belches/belch1.ogg','sound/vore/belches/belch2.ogg','sound/vore/belches/belch3.ogg','sound/vore/belches/belch4.ogg', + 'sound/vore/belches/belch5.ogg','sound/vore/belches/belch6.ogg','sound/vore/belches/belch7.ogg','sound/vore/belches/belch8.ogg', + 'sound/vore/belches/belch9.ogg','sound/vore/belches/belch10.ogg','sound/vore/belches/belch11.ogg','sound/vore/belches/belch12.ogg', + 'sound/vore/belches/belch13.ogg','sound/vore/belches/belch14.ogg','sound/vore/belches/belch15.ogg') //END VORESTATION EDIT if ("terminal_type") soundin = pick('sound/machines/terminal_button01.ogg', 'sound/machines/terminal_button02.ogg', 'sound/machines/terminal_button03.ogg', \ diff --git a/code/game/turfs/flooring/flooring_decals_vr.dm b/code/game/turfs/flooring/flooring_decals_vr.dm index ada7aba806..80b26db2e5 100644 --- a/code/game/turfs/flooring/flooring_decals_vr.dm +++ b/code/game/turfs/flooring/flooring_decals_vr.dm @@ -134,6 +134,14 @@ /obj/effect/floor_decal/emblem/itgdauntless icon_state = "itgdauntless" +/obj/effect/floor_decal/emblem/stellardelight + icon_state = "stellar_delight" +/obj/effect/floor_decal/emblem/stellardelight/center + icon_state = "stellar_delight_center" + +/obj/effect/floor_decal/emblem/orangeline + icon_state = "orange_line" + /obj/effect/floor_decal/emblem/aronai icon_state = "aronai" diff --git a/code/game/turfs/simulated/angled_walls_and_doors_department_colors.dm b/code/game/turfs/simulated/angled_walls_and_doors_department_colors.dm new file mode 100644 index 0000000000..84f762944a --- /dev/null +++ b/code/game/turfs/simulated/angled_walls_and_doors_department_colors.dm @@ -0,0 +1,329 @@ +/turf/simulated/wall/bay/steel + desc = "It has a steel stripe! A huge chunk of metal used to seperate rooms." + stripe_color = "#3d5e80" +/turf/simulated/wall/bay/red + desc = "It has a red stripe! A huge chunk of metal used to seperate rooms." + stripe_color = "#8c1d11" +/turf/simulated/wall/bay/brown + desc = "It has a brown stripe! A huge chunk of metal used to seperate rooms." + stripe_color = "#785134" +/turf/simulated/wall/bay/purple + desc = "It has a purple stripe! A huge chunk of metal used to seperate rooms." + stripe_color = "#5a19a8" +/turf/simulated/wall/bay/blue + desc = "It has a blue stripe! A huge chunk of metal used to seperate rooms." + stripe_color = "#2e2aa1" +/turf/simulated/wall/bay/orange + desc = "It has a orange stripe! A huge chunk of metal used to seperate rooms." + stripe_color = "#e6ab22" +/turf/simulated/wall/bay/white + desc = "It has a white stripe! A huge chunk of metal used to seperate rooms." + stripe_color = "#ffffff" +/turf/simulated/wall/bay/black + desc = "It has a black stripe! A huge chunk of metal used to seperate rooms." + stripe_color = "#2e2e2e" +/turf/simulated/wall/bay/green + desc = "It has a green stripe! A huge chunk of metal used to seperate rooms." + stripe_color = "#00ab03" +/////R-Wall +/turf/simulated/wall/bay/r_wall/steel + desc = "It has a steel stripe! A huge chunk of metal used to seperate rooms." + stripe_color = "#3d5e80" +/turf/simulated/wall/bay/r_wall/red + desc = "It has a red stripe! A huge chunk of metal used to seperate rooms." + stripe_color = "#8c1d11" +/turf/simulated/wall/bay/r_wall/brown + desc = "It has a brown stripe! A huge chunk of metal used to seperate rooms." + stripe_color = "#785134" +/turf/simulated/wall/bay/r_wall/purple + desc = "It has a purple stripe! A huge chunk of metal used to seperate rooms." + stripe_color = "#5a19a8" +/turf/simulated/wall/bay/r_wall/blue + desc = "It has a blue stripe! A huge chunk of metal used to seperate rooms." + stripe_color = "#2e2aa1" +/turf/simulated/wall/bay/r_wall/orange + desc = "It has a orange stripe! A huge chunk of metal used to seperate rooms." + stripe_color = "#e6ab22" +/turf/simulated/wall/bay/r_wall/white + desc = "It has a white stripe! A huge chunk of metal used to seperate rooms." + stripe_color = "#ffffff" +/turf/simulated/wall/bay/r_wall/black + desc = "It has a black stripe! A huge chunk of metal used to seperate rooms." + stripe_color = "#2e2e2e" +/turf/simulated/wall/bay/r_wall/green + desc = "It has a green stripe! A huge chunk of metal used to seperate rooms." + stripe_color = "#00ab03" +/////Low wall +/obj/structure/low_wall/bay/steel + desc = "It has a steel stripe! A low wall section which serves as the base of windows, amongst other things." + stripe_color = "#3d5e80" +/obj/structure/low_wall/bay/red + desc = "It has a red stripe! A low wall section which serves as the base of windows, amongst other things." + stripe_color = "#8c1d11" +/obj/structure/low_wall/bay/brown + desc = "It has a brown stripe! A low wall section which serves as the base of windows, amongst other things." + stripe_color = "#785134" +/obj/structure/low_wall/bay/purple + desc = "It has a purple stripe! A low wall section which serves as the base of windows, amongst other things." + stripe_color = "#5a19a8" +/obj/structure/low_wall/bay/blue + desc = "It has a blue stripe! A low wall section which serves as the base of windows, amongst other things." + stripe_color = "#2e2aa1" +/obj/structure/low_wall/bay/orange + desc = "It has a orange stripe! A low wall section which serves as the base of windows, amongst other things." + stripe_color = "#e6ab22" +/obj/structure/low_wall/bay/white + desc = "It has a white stripe! A low wall section which serves as the base of windows, amongst other things." + stripe_color = "#ffffff" +/obj/structure/low_wall/bay/black + desc = "It has a black stripe! A low wall section which serves as the base of windows, amongst other things." + stripe_color = "#2e2e2e" +/obj/structure/low_wall/bay/green + desc = "It has a green stripe! A low wall section which serves as the base of windows, amongst other things." + stripe_color = "#00ab03" +/////R-Low wall +/obj/structure/low_wall/bay/reinforced/steel + desc = "It has a steel stripe! A low wall section which serves as the base of windows, amongst other things." + stripe_color = "#3d5e80" +/obj/structure/low_wall/bay/reinforced/red + desc = "It has a red stripe! A low wall section which serves as the base of windows, amongst other things." + stripe_color = "#8c1d11" +/obj/structure/low_wall/bay/reinforced/brown + desc = "It has a brown stripe! A low wall section which serves as the base of windows, amongst other things." + stripe_color = "#785134" +/obj/structure/low_wall/bay/reinforced/purple + desc = "It has a purple stripe! A low wall section which serves as the base of windows, amongst other things." + stripe_color = "#5a19a8" +/obj/structure/low_wall/bay/reinforced/blue + desc = "It has a blue stripe! A low wall section which serves as the base of windows, amongst other things." + stripe_color = "#2e2aa1" +/obj/structure/low_wall/bay/reinforced/orange + desc = "It has a orange stripe! A low wall section which serves as the base of windows, amongst other things." + stripe_color = "#e6ab22" +/obj/structure/low_wall/bay/reinforced/white + desc = "It has a white stripe! A low wall section which serves as the base of windows, amongst other things." + stripe_color = "#ffffff" +/obj/structure/low_wall/bay/reinforced/black + desc = "It has a black stripe! A low wall section which serves as the base of windows, amongst other things." + stripe_color = "#2e2e2e" +/obj/structure/low_wall/bay/reinforced/green + desc = "It has a green stripe! A low wall section which serves as the base of windows, amongst other things." + stripe_color = "#00ab03" +/////BAY DOORS +/obj/machinery/door/airlock/angled_bay/standard/color/common + name = "Airlock" + door_color = "#9c9c9c" + fill_color = "#5c5c5c" + stripe_color = "#89bd66" +/obj/machinery/door/airlock/angled_bay/standard/glass/common + name = "Glass Airlock" + door_color = "#9c9c9c" + stripe_color = "#89bd66" +/obj/machinery/door/airlock/angled_bay/hatch/common + name = "maintenance access" + stripe_color = "#89bd66" +/obj/machinery/door/airlock/angled_bay/double/glass/common + name = "Glass Airlock" + door_color = "#9c9c9c" + stripe_color = "#89bd66" + +/obj/machinery/door/airlock/angled_bay/standard/color/silver + name = "Airlock" + door_color = "#9fccc7" + fill_color = "#333333" + stripe_color = "#ffffff" + +/obj/machinery/door/airlock/angled_bay/standard/color/research + name = "Research Airlock" + req_access = list(47) + door_color = "#ffffff" + fill_color = "#ead9ff" + stripe_color = "#5a19a8" +/obj/machinery/door/airlock/angled_bay/standard/glass/research + name = "Glass Research Airlock" + req_access = list(47) + door_color = "#ffffff" + stripe_color = "#5a19a8" +/obj/machinery/door/airlock/angled_bay/hatch/research + name = "maintenance access" + req_access = list(47) + stripe_color = "#5a19a8" +/obj/machinery/door/airlock/angled_bay/double/glass/research + name = "Glass Research Airlock" + req_access = list(47) + door_color = "#ffffff" + stripe_color = "#5a19a8" + +/obj/machinery/door/airlock/angled_bay/standard/color/medical + name = "Medical Airlock" + req_access = list(5) + door_color = "#ffffff" + fill_color = "#ead9ff" + stripe_color = "#5a96bb" +/obj/machinery/door/airlock/angled_bay/standard/glass/medical + name = "Glass Medical Airlock" + req_access = list(5) + door_color = "#ffffff" + stripe_color = "#5a96bb" +/obj/machinery/door/airlock/angled_bay/hatch/medical + name = "maintenance access" + req_access = list(5) + stripe_color = "#5a96bb" +/obj/machinery/door/airlock/angled_bay/double/glass/medical + name = "Glass Medical Airlock" + req_access = list(5) + door_color = "#ffffff" + stripe_color = "#5a96bb" + +/obj/machinery/door/airlock/angled_bay/standard/color/explo + name = "Exploration Airlock" + req_one_access = list(19,43,67) + door_color = "#333333" + stripe_color = "#5a19a8" +/obj/machinery/door/airlock/angled_bay/standard/glass/explo + name = "Glass Exploration Airlock" + req_one_access = list(19,43,67) + door_color = "#333333" + stripe_color = "#5a19a8" +/obj/machinery/door/airlock/angled_bay/hatch/explo + name = "maintenance access" + req_one_access = list(19,43,67) + stripe_color = "#5a19a8" +/obj/machinery/door/airlock/angled_bay/double/glass/explo + name = "Glass Exploration Airlock" + req_one_access = list(19,43,67) + door_color = "#333333" + stripe_color = "#5a19a8" + +/obj/machinery/door/airlock/angled_bay/standard/color/security + name = "Security Airlock" + req_access = list(1) + door_color = "#8c1d11" + fill_color = "#854a44" + stripe_color = "#d27428" +/obj/machinery/door/airlock/angled_bay/standard/glass/security + name = "Glass Security Airlock" + req_access = list(1) + door_color = "#8c1d11" + stripe_color = "#d27428" +/obj/machinery/door/airlock/angled_bay/hatch/security + name = "maintenance access" + req_access = list(1) + stripe_color = "#8c1d11" +/obj/machinery/door/airlock/angled_bay/double/glass/security + name = "Glass Security Airlock" + req_access = list(1) + door_color = "#8c1d11" + stripe_color = "#d27428" + +/obj/machinery/door/airlock/angled_bay/standard/color/engineering + name = "Engineering Airlock" + req_access = list(10) + door_color = "#e6ab22" + fill_color = "#877242" + stripe_color = "#913013" +/obj/machinery/door/airlock/angled_bay/standard/glass/engineering + name = "Glass Engineering Airlock" + req_access = list(10) + door_color = "#e6ab22" + stripe_color = "#913013" +/obj/machinery/door/airlock/angled_bay/hatch/engineering + name = "maintenance access" + req_access = list(10) + stripe_color = "#e6ab22" +/obj/machinery/door/airlock/angled_bay/double/glass/engineering + name = "Glass Engineering Airlock" + req_access = list(10) + door_color = "#e6ab22" + stripe_color = "#913013" + +/obj/machinery/door/airlock/angled_bay/standard/color/atmos + name = "Atmospherics Airlock" + req_access = list(24) + door_color = "#e6ab22" + fill_color = "#877242" + stripe_color = "#2ebfbd" +/obj/machinery/door/airlock/angled_bay/standard/glass/atmos + name = "Glass Atmospherics Airlock" + req_access = list(24) + door_color = "#e6ab22" + stripe_color = "#2ebfbd" +/obj/machinery/door/airlock/angled_bay/hatch/atmos + name = "maintenance access" + req_access = list(24) + stripe_color = "#e6ab22" +/obj/machinery/door/airlock/angled_bay/double/glass/atmos + name = "Glass Atmospherics Airlock" + req_access = list(24) + door_color = "#e6ab22" + stripe_color = "#2ebfbd" + +/obj/machinery/door/airlock/angled_bay/standard/color/cargo + name = "Cargo Airlock" + req_access = list(31) + door_color = "#a6753d" + fill_color = "#75736f" + stripe_color = "#3b2b1a" +/obj/machinery/door/airlock/angled_bay/standard/glass/atmos + name = "Glass Cargo Airlock" + req_access = list(31) + door_color = "#a6753d" + stripe_color = "#3b2b1a" +/obj/machinery/door/airlock/angled_bay/hatch/atmos + name = "maintenance access" + req_access = list(31) + stripe_color = "#3b2b1a" +/obj/machinery/door/airlock/angled_bay/double/glass/atmos + name = "Glass Cargo Airlock" + req_access = list(31) + door_color = "#a6753d" + stripe_color = "#3b2b1a" + +/obj/machinery/door/airlock/angled_bay/standard/color/command + name = "Command Airlock" + req_access = list(19) + door_color = "#323d80" + stripe_color = "#f7d35c" +/obj/machinery/door/airlock/angled_bay/standard/glass/command + name = "Glass Command Airlock" + req_access = list(19) + door_color = "#323d80" + stripe_color = "#f7d35c" +/obj/machinery/door/airlock/angled_bay/hatch/command + name = "maintenance access" + req_access = list(19) + stripe_color = "#323d80" +/obj/machinery/door/airlock/angled_bay/double/glass/command + name = "Glass Command Airlock" + req_access = list(19) + door_color = "#323d80" + stripe_color = "#f7d35c" + +/obj/machinery/door/airlock/angled_bay/standard/color/chaplain + name = "Chaplain Airlock" + req_access = list(26) + door_color = "#2e2e2e" + fill_color = "#2e2e2e" + stripe_color = "#deaf43" +/obj/machinery/door/airlock/angled_bay/standard/glass/chaplain + name = "Glass Chaplain Airlock" + req_access = list(26) + door_color = "#2e2e2e" + stripe_color = "#deaf43" +/obj/machinery/door/airlock/angled_bay/double/glass/chaplain + name = "Glass Chaplain Airlock" + req_access = list(26) + door_color = "#2e2e2e" + stripe_color = "#deaf43" + +/obj/machinery/door/airlock/angled_bay/external/red + name = "External Airlock" + door_color = "#822a1e" +/obj/machinery/door/airlock/angled_bay/external/glass/red + name = "External Airlock" + door_color = "#822a1e" + +/obj/machinery/door/airlock/angled_bay/standard/freezer + name = "Freezer" + req_access = list(28) + door_color = "#ffffff" diff --git a/code/game/turfs/simulated/fancy_shuttles.dm b/code/game/turfs/simulated/fancy_shuttles.dm index 31f4681da9..010dced63f 100644 --- a/code/game/turfs/simulated/fancy_shuttles.dm +++ b/code/game/turfs/simulated/fancy_shuttles.dm @@ -58,13 +58,10 @@ GLOBAL_LIST_EMPTY(fancy_shuttles) /turf/simulated/wall/fancy_shuttle/Initialize(mapload, materialtype, rmaterialtype, girdertype) . = ..(mapload, MAT_STEELHULL, MAT_STEELHULL, MAT_STEELHULL) -/turf/simulated/wall/fancy_shuttle/window +/turf/simulated/wall/fancy_shuttle/low //you can see over it and it doesn't block air but you still cant walk over it + blocks_air = FALSE opacity = FALSE - icon_state = "hull_transparent" - -/turf/simulated/wall/fancy_shuttle/window/attack_generic(mob/user, damage, attack_message) - take_damage(damage) - return damage + icon_state = "hull_low" /turf/simulated/wall/fancy_shuttle/nondense density = FALSE @@ -180,6 +177,41 @@ GLOBAL_LIST_EMPTY(fancy_shuttles) /obj/effect/floor_decal/fancy_shuttle/get_cache_key(var/turf/T) return "[alpha]-[color]-[dir]-[icon_state]-[T.layer]-[icon_file]" +/** + * Shuttle Glass + */ + //OLD GLASS - USE NEW GLASS +/turf/simulated/wall/fancy_shuttle/window + opacity = FALSE + icon_state = "hull_transparent" + +/turf/simulated/wall/fancy_shuttle/window/attack_generic(mob/user, damage, attack_message) + take_damage(damage) + return damage + +//NEW GLASS +/obj/structure/window/fancy_shuttle + name = "shuttle window" + desc = "It looks rather strong. Might take a few good hits to shatter it." + icon = 'icons/turf/fancy_shuttles/_fancy_helpers.dmi' + icon_state = "hull_window" + density = TRUE + fulltile = TRUE + maxhealth = 60 + reinf = 1 + force_threshold = 7 + var/fancy_shuttle_tag + +// Trust me, this is WAY faster than the normal wall overlays shenanigans, don't worry about performance +/obj/structure/window/fancy_shuttle/update_icon() + if(fancy_shuttle_tag) // after a shuttle jump it won't be set anymore, but the shuttle jump proc will set our icon and state + var/obj/effect/fancy_shuttle/F = GLOB.fancy_shuttles[fancy_shuttle_tag] + if(!F) + warning("Fancy shuttle wall at [x],[y],[z] couldn't locate a helper with tag [fancy_shuttle_tag]") + return + icon = F.split_icon + icon_state = "walls [x - F.x],[y - F.y]" + /** * Invisible ship equipment (otherwise the same as normal) */ @@ -252,24 +284,24 @@ GLOBAL_LIST_EMPTY(fancy_shuttles) icon = 'icons/turf/fancy_shuttles/exploration_preview.dmi' /** - * Sec shuttle - * North facing: W:13, H:18 + * Secbus shuttle + * North facing: W:11, H:16 */ -/obj/effect/fancy_shuttle/security - icon = 'icons/turf/fancy_shuttles/security_preview.dmi' - split_file = 'icons/turf/fancy_shuttles/security.dmi' -/obj/effect/fancy_shuttle_floor_preview/security - icon = 'icons/turf/fancy_shuttles/security_preview.dmi' +/obj/effect/fancy_shuttle/secbus + icon = 'icons/turf/fancy_shuttles/secbus_preview.dmi' + split_file = 'icons/turf/fancy_shuttles/secbus.dmi' +/obj/effect/fancy_shuttle_floor_preview/secbus + icon = 'icons/turf/fancy_shuttles/secbus_preview.dmi' /** - * Med shuttle - * North facing: W:13, H:18 + * Medbus shuttle + * North facing: W:11, H:16 */ -/obj/effect/fancy_shuttle/medical - icon = 'icons/turf/fancy_shuttles/medical_preview.dmi' - split_file = 'icons/turf/fancy_shuttles/medical.dmi' -/obj/effect/fancy_shuttle_floor_preview/medical - icon = 'icons/turf/fancy_shuttles/medical_preview.dmi' +/obj/effect/fancy_shuttle/medbus + icon = 'icons/turf/fancy_shuttles/medbus_preview.dmi' + split_file = 'icons/turf/fancy_shuttles/medbus.dmi' +/obj/effect/fancy_shuttle_floor_preview/medbus + icon = 'icons/turf/fancy_shuttles/medbus_preview.dmi' /** * Orange line tram @@ -283,7 +315,7 @@ GLOBAL_LIST_EMPTY(fancy_shuttles) /** * Tour bus - * North facing: W:7, H:13 + * North facing: W:7, H:12 */ /obj/effect/fancy_shuttle/tourbus icon = 'icons/turf/fancy_shuttles/tourbus_preview.dmi' @@ -291,6 +323,16 @@ GLOBAL_LIST_EMPTY(fancy_shuttles) /obj/effect/fancy_shuttle_floor_preview/tourbus icon = 'icons/turf/fancy_shuttles/tourbus_preview.dmi' +/** + * Stellar Delight Shuttle + * North facing: W:9, H:14 + */ +/obj/effect/fancy_shuttle/sd_shuttle + icon = 'icons/turf/fancy_shuttles/sd_shuttle_preview.dmi' + split_file = 'icons/turf/fancy_shuttles/sd_shuttle.dmi' +/obj/effect/fancy_shuttle_floor_preview/sd_shuttle + icon = 'icons/turf/fancy_shuttles/sd_shuttle_preview.dmi' + /** * Delivery shuttle * North facing: W:8, H:10 @@ -301,6 +343,16 @@ GLOBAL_LIST_EMPTY(fancy_shuttles) /obj/effect/fancy_shuttle_floor_preview/delivery icon = 'icons/turf/fancy_shuttles/delivery_preview.dmi' +/** + * Tether Cargo shuttle + * North facing: W:8, H:12 + */ +/obj/effect/fancy_shuttle/tether_cargo + icon = 'icons/turf/fancy_shuttles/tether_cargo_preview.dmi' + split_file = 'icons/turf/fancy_shuttles/tether_cargo.dmi' +/obj/effect/fancy_shuttle_floor_preview/tether_cargo + icon = 'icons/turf/fancy_shuttles/tether_cargo_preview.dmi' + /** * Wagon * North facing: W:5, H:13 diff --git a/code/game/turfs/simulated/floor.dm b/code/game/turfs/simulated/floor.dm index 1d37f4b47a..a0caed0b98 100644 --- a/code/game/turfs/simulated/floor.dm +++ b/code/game/turfs/simulated/floor.dm @@ -175,3 +175,10 @@ to_chat(user, span("notice", "You deconstruct \the [src].")) ChangeTurf(get_base_turf_by_area(src), preserve_outdoors = TRUE) return TRUE + +/turf/simulated/floor/AltClick(mob/user) + if(isliving(user)) + var/mob/living/livingUser = user + if(try_graffiti(livingUser, livingUser.get_active_hand())) + return + . = ..() \ No newline at end of file diff --git a/code/game/turfs/simulated/floor_attackby.dm b/code/game/turfs/simulated/floor_attackby.dm index 4f70fc5918..279cf8a5b1 100644 --- a/code/game/turfs/simulated/floor_attackby.dm +++ b/code/game/turfs/simulated/floor_attackby.dm @@ -9,8 +9,12 @@ attack_tile(C, L) // Be on help intent if you want to decon something. return - if(!(C.is_screwdriver() && flooring && (flooring.flags & TURF_REMOVE_SCREWDRIVER)) && try_graffiti(user, C)) - return + if(!(C.has_tool_quality(TOOL_SCREWDRIVER) && flooring && (flooring.flags & TURF_REMOVE_SCREWDRIVER))) + if(isliving(user)) + var/mob/living/L = user + if(L.a_intent == I_HELP) + if(try_graffiti(L, C)) // back by unpopular demand + return // Multi-z roof building if(istype(C, /obj/item/stack/tile/roofing)) @@ -96,7 +100,7 @@ if(!use_flooring) return // Do we have enough? - if(use_flooring.build_cost && S.amount < use_flooring.build_cost) + if(use_flooring.build_cost && S.get_amount() < use_flooring.build_cost) to_chat(user, "You require at least [use_flooring.build_cost] [S.name] to complete the [use_flooring.descriptor].") return // Stay still and focus... diff --git a/code/game/turfs/simulated/outdoors/snow.dm b/code/game/turfs/simulated/outdoors/snow.dm index fc4832d845..d9d65510ee 100644 --- a/code/game/turfs/simulated/outdoors/snow.dm +++ b/code/game/turfs/simulated/outdoors/snow.dm @@ -31,8 +31,7 @@ to_chat(user, "You begin to remove \the [src] with your [W].") if(do_after(user, 4 SECONDS * W.toolspeed)) to_chat(user, "\The [src] has been dug up, and now lies in a pile nearby.") - var/obj/item/stack/material/snow/S = new(src) - S.amount = 10 + new /obj/item/stack/material/snow(src, 10) demote() else to_chat(user, "You decide to not finish removing \the [src].") diff --git a/code/game/turfs/simulated/outdoors/survival_action_vr.dm b/code/game/turfs/simulated/outdoors/survival_action_vr.dm index dbe89b0a87..c7f90171c7 100644 --- a/code/game/turfs/simulated/outdoors/survival_action_vr.dm +++ b/code/game/turfs/simulated/outdoors/survival_action_vr.dm @@ -7,8 +7,7 @@ if(icon_state in has_rocks) user.visible_message("[user] loosens rocks from \the [src]...", "You loosen rocks from \the [src]...") if(do_after(user, 5 SECONDS, exclusive = TASK_USER_EXCLUSIVE)) - var/obj/item/stack/material/flint/R = new(get_turf(src)) - R.amount = rand(1,4) + var/obj/item/stack/material/flint/R = new(get_turf(src), rand(1,4)) R.pixel_x = rand(-6,6) R.pixel_y = rand(-6,6) icon_state = "dirt0" @@ -34,9 +33,8 @@ user.visible_message("[user] starts digging around in \the [src]...", "You start digging around in \the [src]...") if(do_after(user, 5 SECONDS, exclusive = TASK_USER_EXCLUSIVE)) if(prob(rock_chance)) - var/obj/item/stack/material/flint/R = new(get_turf(src)) + var/obj/item/stack/material/flint/R = new(get_turf(src), rand(1,4)) to_chat(user, "You found some [R]") - R.amount = rand(1,4) R.pixel_x = rand(-6,6) R.pixel_y = rand(-6,6) else @@ -73,8 +71,7 @@ if(sticks) user.visible_message("[user] searches \the [src] for loose sticks...", "You search \the [src] for loose sticks...") if(do_after(user, 5 SECONDS, exclusive = TASK_USER_EXCLUSIVE)) - var/obj/item/stack/material/stick/S = new(get_turf(user)) - S.amount = rand(1,3) + var/obj/item/stack/material/stick/S = new(get_turf(user), rand(1,3)) S.pixel_x = rand(-6,6) S.pixel_y = rand(-6,6) sticks = FALSE diff --git a/code/game/turfs/simulated/wall_attacks.dm b/code/game/turfs/simulated/wall_attacks.dm index 036cfd5728..fb07754d1e 100644 --- a/code/game/turfs/simulated/wall_attacks.dm +++ b/code/game/turfs/simulated/wall_attacks.dm @@ -130,9 +130,10 @@ /turf/simulated/wall/attackby(var/obj/item/weapon/W, var/mob/user) user.setClickCooldown(user.get_attack_speed(W)) - - if(!construction_stage && try_graffiti(user, W)) - return + + if(!construction_stage && user.a_intent == I_HELP) + if(try_graffiti(user,W)) + return if (!user.IsAdvancedToolUser()) to_chat(user, "You don't have the dexterity to do this!") @@ -239,6 +240,7 @@ return // Basic dismantling. + var/dismantle_toolspeed = 0 if(isnull(construction_stage) || !reinf_material) var/cut_delay = 60 - material.cut_delay @@ -258,6 +260,7 @@ else if(istype(W,/obj/item/weapon/melee/energy/blade)) dismantle_sound = "sparks" dismantle_verb = "slicing" + dismantle_toolspeed = 1 cut_delay *= 0.5 else if(istype(W,/obj/item/weapon/pickaxe)) var/obj/item/weapon/pickaxe/P = W @@ -271,7 +274,7 @@ if(dismantle_sound) playsound(src, dismantle_sound, 100, 1) - if(cut_delay<0) + if(cut_delay < 0) cut_delay = 0 if(!do_after(user,cut_delay * W.toolspeed)) @@ -385,7 +388,7 @@ construction_stage = 0 user.update_examine_panel(src) update_icon() - to_chat(user, "The slice through the support rods.") + to_chat(user, "You slice through the support rods.") return if(0) if(W.is_crowbar()) diff --git a/code/game/turfs/simulated/wall_types.dm b/code/game/turfs/simulated/wall_types.dm index e880998fa7..2a82f7dbec 100644 --- a/code/game/turfs/simulated/wall_types.dm +++ b/code/game/turfs/simulated/wall_types.dm @@ -92,6 +92,9 @@ /turf/simulated/wall/wood/Initialize(mapload) . = ..(mapload, MAT_WOOD) +/turf/simulated/wall/hardwood/Initialize(mapload) + . = ..(mapload, MAT_HARDWOOD) + /turf/simulated/wall/sifwood/Initialize(mapload) . = ..(mapload, MAT_SIFWOOD) diff --git a/code/game/turfs/simulated/walls.dm b/code/game/turfs/simulated/walls.dm index d0bb6d5640..f664e73b40 100644 --- a/code/game/turfs/simulated/walls.dm +++ b/code/game/turfs/simulated/walls.dm @@ -333,3 +333,10 @@ ChangeTurf(/turf/simulated/floor/airless, preserve_outdoors = TRUE) return TRUE return FALSE + +/turf/simulated/wall/AltClick(mob/user) + if(isliving(user)) + var/mob/living/livingUser = user + if(try_graffiti(livingUser, livingUser.get_active_hand())) + return + . = ..() \ No newline at end of file diff --git a/code/game/turfs/turf.dm b/code/game/turfs/turf.dm index bcd53322b8..9a4039cb1c 100644 --- a/code/game/turfs/turf.dm +++ b/code/game/turfs/turf.dm @@ -310,7 +310,7 @@ /turf/proc/try_graffiti(var/mob/vandal, var/obj/item/tool) - if(!tool.sharp || !can_engrave()) + if(!tool || !tool.sharp || !can_engrave()) return FALSE if(jobban_isbanned(vandal, "Graffiti")) @@ -407,4 +407,4 @@ return // We were the the B-side in a turf translation /turf/proc/post_translate_B(var/turf/A) - return \ No newline at end of file + return diff --git a/code/game/turfs/turf_changing.dm b/code/game/turfs/turf_changing.dm index 492f3ef65b..5c51101c52 100644 --- a/code/game/turfs/turf_changing.dm +++ b/code/game/turfs/turf_changing.dm @@ -28,7 +28,7 @@ if(N == /turf/space) var/turf/below = GetBelow(src) - if(istype(below) && (air_master.has_valid_zone(below) || air_master.has_valid_zone(src)) && (!istype(below, /turf/unsimulated/wall) && !istype(below, /turf/simulated/sky))) // VOREStation Edit: Weird open space + if(istype(below) && (air_master.has_valid_zone(below) || air_master.has_valid_zone(src)) && !(src.z in using_map.below_blocked_levels) && (!istype(below, /turf/unsimulated/wall) && !istype(below, /turf/simulated/sky))) // VOREStation Edit: Weird open space N = /turf/simulated/open var/obj/fire/old_fire = fire diff --git a/code/game/turfs/unsimulated/floor.dm b/code/game/turfs/unsimulated/floor.dm index bd4fdca814..22af37dd53 100644 --- a/code/game/turfs/unsimulated/floor.dm +++ b/code/game/turfs/unsimulated/floor.dm @@ -9,4 +9,9 @@ icon_state = "rockvault" /turf/unsimulated/floor/shuttle_ceiling - icon_state = "reinforced" \ No newline at end of file + icon_state = "reinforced" + +/turf/unsimulated/elevator_shaft + name = "floor" + icon = 'icons/turf/floors.dmi' + icon_state = "elevatorshaft" \ No newline at end of file diff --git a/code/game/turfs/unsimulated/planetary_vr.dm b/code/game/turfs/unsimulated/planetary_vr.dm index 17c33b7525..b82342ea0a 100644 --- a/code/game/turfs/unsimulated/planetary_vr.dm +++ b/code/game/turfs/unsimulated/planetary_vr.dm @@ -52,8 +52,16 @@ alpha = 0xFF VIRGO3B_SET_ATMOS +//other set - for map building +/turf/unsimulated/wall2/planetary/virgo3b_better + icon_state = "riveted2" + /turf/unsimulated/wall/planetary/virgo3b_better name = "facility wall" desc = "An eight-meter tall carbyne wall. For when the wildlife on your planet is mostly militant megacorps." alpha = 0xFF VIRGO3BB_SET_ATMOS + +//other set - for map building +/turf/unsimulated/wall2/planetary/virgo3b_better + icon_state = "riveted2" \ No newline at end of file diff --git a/code/game/turfs/unsimulated/walls.dm b/code/game/turfs/unsimulated/walls.dm index 878a12404a..dce3c345bb 100644 --- a/code/game/turfs/unsimulated/walls.dm +++ b/code/game/turfs/unsimulated/walls.dm @@ -6,10 +6,22 @@ density = TRUE blocks_air = TRUE +//other set - for map building +/turf/unsimulated/wall/wall1 + icon_state = "riveted1" + +/turf/unsimulated/wall/wall2 + icon_state = "riveted2" + /turf/unsimulated/wall/fakeglass name = "window" icon_state = "fakewindows" opacity = 0 +//other set - for map building +/turf/unsimulated/wall/fakeglass2 + icon_state = "fakewindows2" + opacity = 0 + /turf/unsimulated/wall/other icon_state = "r_wall" \ No newline at end of file diff --git a/code/game/turfs/weird_turfs_vr.dm b/code/game/turfs/weird_turfs_vr.dm new file mode 100644 index 0000000000..b1ef1fa4fb --- /dev/null +++ b/code/game/turfs/weird_turfs_vr.dm @@ -0,0 +1,131 @@ +/turf/simulated/floor/weird_things + icon = 'icons/turf/flooring/weird_vr.dmi' + +/turf/simulated/floor/weird_things/dark + name = "dark" + desc = "It's a strange, impenetrable darkness." + icon_state = "dark" + can_dirty = FALSE + +/turf/simulated/floor/weird_things/dark/Initialize(mapload) + . = ..() + if(prob(5)) + add_glow() + +/turf/simulated/floor/weird_things/dark/Crossed(O) + . = ..() + if(!isliving(O)) + return + cut_overlays() + if(prob(5)) + add_glow() + if(istype(O, /mob/living/carbon/human)) + var/mob/living/carbon/human/L = O + if(istype(L.species, /datum/species/crew_shadekin)) + L.halloss += 5 + if(prob(50)) + to_chat(L, "The more you move through this darkness, the more you can feel a throbbing, shooting ache in your bones.") + if(prob(5)) + L.visible_message("[L]'s body gives off a faint, sparking, haze...", "Your body gives off a faint, sparking, haze...", runemessage = "gives off a faint, sparking haze") + else if(istype(L.species, /datum/species/shadekin)) + var/obj/item/organ/internal/brain/shadekin/B = L.internal_organs_by_name["brain"] + B.dark_energy += 10 + if(prob(10)) + to_chat(L, "You can feel the energy flowing into you!") + else + if(prob(0.25)) + to_chat(L, "The darkness seethes under your feet...") + L.hallucination += 50 + +/turf/simulated/floor/weird_things/dark/proc/add_glow() + var/choice = "overlay-[rand(1,6)]" + var/image/i = image('icons/turf/flooring/weird_vr.dmi', choice) + i.plane = PLANE_LIGHTING_ABOVE + add_overlay(i) + +/turf/simulated/floor/weird_things/dark/ChangeTurf() + . = ..() + cut_overlays() + +/turf/unsimulated/wall/dark + name = "dark" + desc = "It's a strange, impenetrable darkness." + icon = 'icons/turf/flooring/weird_vr.dmi' + icon_state = "dark" + +/turf/unsimulated/wall/dark/Initialize(mapload) + . = ..() + if(prob(5)) + add_glow() + +/turf/unsimulated/wall/dark/proc/add_glow() + var/choice = "overlay-[rand(1,6)]" + var/image/i = image('icons/turf/flooring/weird_vr.dmi', choice) + i.plane = PLANE_LIGHTING_ABOVE + add_overlay(i) + +/turf/unsimulated/wall/dark/ChangeTurf() + . = ..() + cut_overlays() + + +/turf/unsimulated/floor/dark + name = "dark" + desc = "It's a strange, impenetrable darkness." + icon = 'icons/turf/flooring/weird_vr.dmi' + icon_state = "dark" + +/turf/unsimulated/floor/dark/Initialize(mapload) + . = ..() + if(prob(5)) + add_glow() + +/turf/unsimulated/floor/dark/Crossed(O) + . = ..() + if(!isliving(O)) + return + cut_overlays() + if(prob(5)) + add_glow() + if(istype(O, /mob/living/carbon/human)) + var/mob/living/carbon/human/L = O + if(istype(L.species, /datum/species/crew_shadekin)) + L.halloss += 5 + if(prob(50)) + to_chat(L, "The more you move through this darkness, the more you can feel a throbbing, shooting ache in your bones.") + if(prob(5)) + L.visible_message("[L]'s body gives off a faint, sparking, haze...", "Your body gives off a faint, sparking, haze...", runemessage = "gives off a faint, sparking haze") + else if(istype(L.species, /datum/species/shadekin)) + var/obj/item/organ/internal/brain/shadekin/B = L.internal_organs_by_name["brain"] + B.dark_energy += 10 + if(prob(10)) + to_chat(L, "You can feel the energy flowing into you!") + else + if(prob(0.25)) + to_chat(L, "The darkness seethes under your feet...") + L.hallucination += 50 + +/turf/unsimulated/floor/dark/proc/add_glow() + var/flip = rand(1,2) + var/choice + var/choiceb + if(flip == 1) + choice = "overlay-[rand(1,6)]" + if(flip == 2) + choice = "overlay-[rand(7,12)]" + var/image/i = image('icons/turf/flooring/weird_vr.dmi', choice) + i.plane = PLANE_LIGHTING_ABOVE + add_overlay(i) + if(prob(10)) + if(flip == 1) + choiceb = "overlay-[rand(7,12)]" + if(flip == 2) + choiceb = "overlay-[rand(1,6)]" + var/image/ii = image('icons/turf/flooring/weird_vr.dmi', choiceb) + add_overlay(ii) + + + +/turf/unsimulated/floor/dark/ChangeTurf() + . = ..() + cut_overlays() \ No newline at end of file diff --git a/code/game/verbs/suicide.dm b/code/game/verbs/suicide.dm new file mode 100644 index 0000000000..23181a9fdb --- /dev/null +++ b/code/game/verbs/suicide.dm @@ -0,0 +1,7 @@ +/mob/living/var/suiciding = 0 + +/mob/living/verb/suicide() + set hidden = 1 + + to_chat(src, "No. Adminhelp if there is a legitimate reason, and please review our server rules.") + message_admins("[ckey] has tried to trigger the suicide verb, but it is disabled.") diff --git a/code/game/world.dm b/code/game/world.dm index 150a94de3e..b962eb028f 100644 --- a/code/game/world.dm +++ b/code/game/world.dm @@ -1,4 +1,4 @@ -#define RECOMMENDED_VERSION 501 +#define RECOMMENDED_VERSION 513 /world/New() world_startup_time = world.timeofday rollover_safety_date = world.realtime - world.timeofday // 00:00 today (ish, since floating point error with world.realtime) of today diff --git a/code/global.dm b/code/global.dm index 674c81f8ee..bba7c9df2f 100644 --- a/code/global.dm +++ b/code/global.dm @@ -134,11 +134,24 @@ var/DBConnection/dbcon_old = new() // /tg/station database (Old database) -- see var/global/list/alphabet_uppercase = list("A","B","C","D","E","F","G","H","I","J","K","L","M","N","O","P","Q","R","S","T","U","V","W","X","Y","Z") -// Used by robots and robot preferences. +// Used by robots and robot preferences for regular modules. var/list/robot_module_types = list( "Standard", "Engineering", "Surgeon", "Crisis", "Miner", "Janitor", "Service", "Clerical", "Security", - "Research" + "Research", "Medihound", "K9", "Janihound", "Sci-borg", "Pupdozer", + "Service-Hound", "BoozeHound", "KMine" +) +// List of modules added during code red +var/list/emergency_module_types = list( + "Combat", "ERT" +) +// List of modules available to AI shells +var/list/shell_module_types = list( + "Standard", "Service", "Clerical", "Service-Hound", "BoozeHound" +) +// List of whitelisted modules +var/list/whitelisted_module_types = list( + "Lost", "Stray" ) // Some scary sounds. diff --git a/code/global_vr.dm b/code/global_vr.dm index f7ab6951cf..6ed3403aaf 100644 --- a/code/global_vr.dm +++ b/code/global_vr.dm @@ -1,17 +1,5 @@ -/hook/startup/proc/modules_vr() - robot_module_types += "Medihound" - robot_module_types += "K9" - robot_module_types += "Janihound" - robot_module_types += "Sci-borg" - robot_module_types += "Pupdozer" - robot_module_types += "Service-Hound" - robot_module_types += "BoozeHound" - robot_module_types += "KMine" - return 1 - -var/list/shell_module_types = list( - "Standard", "Service", "Clerical", "Service-Hound" -) +var/list/vinestart = list() +var/list/verminstart = list() var/list/awayabductors = list() // List of scatter landmarks for Abductors in Gateways var/list/eventdestinations = list() // List of scatter landmarks for VOREStation event portals diff --git a/code/modules/admin/newbanjob.dm b/code/modules/admin/newbanjob.dm index 49d9e464b9..c7180d0a49 100644 --- a/code/modules/admin/newbanjob.dm +++ b/code/modules/admin/newbanjob.dm @@ -77,7 +77,7 @@ var/savefile/Banlistjob AddBanjob(ckey, computerid, reason, bannedby, temp, minutes, "Cyborg") return 1 if(rank == "Engineering") - AddBanjob(ckey, computerid, reason, bannedby, temp, minutes, "Station Engineer") + AddBanjob(ckey, computerid, reason, bannedby, temp, minutes, "Engineer") AddBanjob(ckey, computerid, reason, bannedby, temp, minutes, "Atmospheric Technician") AddBanjob(ckey, computerid, reason, bannedby, temp, minutes, "Chief Engineer") AddBanjob(ckey, computerid, reason, bannedby, temp, minutes, "Cyborg") @@ -96,7 +96,7 @@ var/savefile/Banlistjob AddBanjob(ckey, computerid, reason, bannedby, temp, minutes, "Cyborg") return 1 if(rank == "CE_Station_Engineer") - AddBanjob(ckey, computerid, reason, bannedby, temp, minutes, "Station Engineer") + AddBanjob(ckey, computerid, reason, bannedby, temp, minutes, "Engineer") AddBanjob(ckey, computerid, reason, bannedby, temp, minutes, "Chief Engineer") return 1 if(rank == "CE_Atmospheric_Tech") diff --git a/code/modules/admin/topic.dm b/code/modules/admin/topic.dm index 4649296b14..41f14ec5c7 100644 --- a/code/modules/admin/topic.dm +++ b/code/modules/admin/topic.dm @@ -402,14 +402,13 @@ if(jobban_isbanned(M, job.title)) jobs += "[replacetext(job.title, " ", " ")]" - counter++ else jobs += "[replacetext(job.title, " ", " ")]" - counter++ - if(counter >= 6) //So things dont get squiiiiished! + if(++counter >= 6) //So things dont get squiiiiished! jobs += "" counter = 0 + jobs += "" //Security (Red) @@ -423,14 +422,13 @@ if(jobban_isbanned(M, job.title)) jobs += "[replacetext(job.title, " ", " ")]" - counter++ else jobs += "[replacetext(job.title, " ", " ")]" - counter++ - if(counter >= 5) //So things dont get squiiiiished! + if(++counter >= 5) //So things dont get squiiiiished! jobs += "" counter = 0 + jobs += "" //Engineering (Yellow) @@ -444,14 +442,13 @@ if(jobban_isbanned(M, job.title)) jobs += "[replacetext(job.title, " ", " ")]" - counter++ else jobs += "[replacetext(job.title, " ", " ")]" - counter++ - if(counter >= 5) //So things dont get squiiiiished! + if(++counter >= 5) //So things dont get squiiiiished! jobs += "" counter = 0 + jobs += "" //Cargo (Yellow) @@ -465,14 +462,13 @@ if(jobban_isbanned(M, job.title)) jobs += "[replacetext(job.title, " ", " ")]" - counter++ else jobs += "[replacetext(job.title, " ", " ")]" - counter++ - if(counter >= 5) //So things dont get squiiiiished! + if(++counter >= 5) //So things dont get squiiiiished! jobs += "" counter = 0 + jobs += "" //Medical (White) @@ -486,14 +482,13 @@ if(jobban_isbanned(M, job.title)) jobs += "[replacetext(job.title, " ", " ")]" - counter++ else jobs += "[replacetext(job.title, " ", " ")]" - counter++ - if(counter >= 5) //So things dont get squiiiiished! + if(++counter >= 5) //So things dont get squiiiiished! jobs += "" counter = 0 + jobs += "" //Science (Purple) @@ -507,20 +502,20 @@ if(jobban_isbanned(M, job.title)) jobs += "[replacetext(job.title, " ", " ")]" - counter++ else jobs += "[replacetext(job.title, " ", " ")]" - counter++ - if(counter >= 5) //So things dont get squiiiiished! + if(++counter >= 5) //So things dont get squiiiiished! jobs += "" counter = 0 + jobs += "" + //VOREStation Edit Start //Exploration (Purple) counter = 0 jobs += "" - jobs += "" + jobs += "" for(var/jobPos in SSjob.get_job_titles_in_department(DEPARTMENT_PLANET)) if(!jobPos) continue var/datum/job/job = job_master.GetJob(jobPos) @@ -528,15 +523,39 @@ if(jobban_isbanned(M, job.title)) jobs += "" - counter++ else jobs += "" - counter++ - if(counter >= 5) //So things dont get squiiiiished! + if(++counter >= 5) //So things dont get squiiiiished! jobs += "" counter = 0 + jobs += "
Science Positions
Exploration Positions
[replacetext(job.title, " ", " ")][replacetext(job.title, " ", " ")]
" + + //Offmap (Kinda lightish bluey) + counter = 0 + // Needs to be done early because it uses the length of the list for sizing + var/list/offmap_jobs = list() + for(var/dept in offmap_departments) + offmap_jobs += SSjob.get_job_titles_in_department(dept) + jobs += "" + jobs += "" + for(var/jobPos in offmap_jobs) + if(!jobPos) continue + var/datum/job/job = job_master.GetJob(jobPos) + if(!job) continue + + if(jobban_isbanned(M, job.title)) + jobs += "" + else + jobs += "" + + if(++counter >= 5) //So things dont get squiiiiished! + jobs += "" + counter = 0 + + jobs += "
Offmap Positions
[replacetext(job.title, " ", " ")][replacetext(job.title, " ", " ")]
" + //VOREstation Edit End //Civilian (Grey) counter = 0 @@ -549,12 +568,10 @@ if(jobban_isbanned(M, job.title)) jobs += "[replacetext(job.title, " ", " ")]" - counter++ else jobs += "[replacetext(job.title, " ", " ")]" - counter++ - if(counter >= 5) //So things dont get squiiiiished! + if(++counter >= 5) //So things dont get squiiiiished! jobs += "" counter = 0 @@ -565,10 +582,10 @@ jobs += "" - //Non-Human (Green) + //Synthetic (Green) counter = 0 jobs += "" - jobs += "" + jobs += "" for(var/jobPos in SSjob.get_job_titles_in_department(DEPARTMENT_SYNTHETIC)) if(!jobPos) continue var/datum/job/job = job_master.GetJob(jobPos) @@ -576,53 +593,56 @@ if(jobban_isbanned(M, job.title)) jobs += "" - counter++ else jobs += "" - counter++ - if(counter >= 5) //So things dont get squiiiiished! + if(++counter >= 5) //So things dont get squiiiiished! jobs += "" counter = 0 - //pAI isn't technically a job, but it goes in here. - - if(jobban_isbanned(M, "pAI")) - jobs += "" - else - jobs += "" - if(jobban_isbanned(M, "AntagHUD")) - jobs += "" - else - jobs += "" jobs += "
Non-human Positions
Synthetic Positions
[replacetext(job.title, " ", " ")][replacetext(job.title, " ", " ")]
pAIpAIAntagHUDAntagHUD
" //Antagonist (Orange) + counter = 0 var/isbanned_dept = jobban_isbanned(M, "Syndicate") jobs += "" - jobs += "" + jobs += "" // Antagonists. for(var/antag_type in all_antag_types) var/datum/antagonist/antag = all_antag_types[antag_type] if(!antag || !antag.bantype) continue + if(jobban_isbanned(M, "[antag.bantype]") || isbanned_dept) jobs += "" else jobs += "" + if(++counter >= 5) //So things dont get squiiiiished! + jobs += "" + counter = 0 + jobs += "
Antagonist Positions
Antagonist Positions
[replacetext("[antag.role_text]", " ", " ")][replacetext("[antag.role_text]", " ", " ")]
" - //Other races (Blue) ... And also graffiti. - var/list/misc_roles = list("Dionaea", "Graffiti", "Custom loadout") - jobs += "Other Roles" + //Misc 'roles' + counter = 0 + var/list/misc_roles = list("Dionaea", "Graffiti", "Custom loadout", "pAI", "GhostRoles", "AntagHUD") + jobs += "" + jobs += "" for(var/entry in misc_roles) if(jobban_isbanned(M, entry)) jobs += "" else jobs += "" - jobs += "
Other Roles
[entry][entry]
" + + if(++counter >= 5) //So things dont get squiiiiished! + jobs += "" + counter = 0 + + jobs += "" + + // Finished body = "[jobs]" dat = "[header][body]" usr << browse(dat, "window=jobban2;size=800x490") @@ -698,6 +718,13 @@ var/datum/job/temp = job_master.GetJob(jobPos) if(!temp) continue joblist += temp.title + if("offmapdept") + for(var/dept in offmap_departments) + for(var/jobPos in SSjob.get_job_titles_in_department(dept)) + if(!jobPos) continue + var/datum/job/temp = job_master.GetJob(jobPos) + if(!temp) continue + joblist += temp.title //VOREStation Edit End if("civiliandept") for(var/jobPos in SSjob.get_job_titles_in_department(DEPARTMENT_CIVILIAN)) diff --git a/code/modules/admin/verbs/resize.dm b/code/modules/admin/verbs/resize.dm index 140ce75393..058955799e 100644 --- a/code/modules/admin/verbs/resize.dm +++ b/code/modules/admin/verbs/resize.dm @@ -9,7 +9,7 @@ if(!size_multiplier) return //cancelled - size_multiplier = clamp(size_multiplier, 0.01, 1000) + size_multiplier = clamp(size_multiplier, -50, 50) //VOREStation Edit - being able to make people upside down is fun. Also 1000 is way, WAY too big. Honestly 50 is too big but at least you can see 50 and it doesn't break the rendering. var/can_be_big = L.has_large_resize_bounds() var/very_big = is_extreme_size(size_multiplier) diff --git a/code/modules/admin/verbs/smite_vr.dm b/code/modules/admin/verbs/smite_vr.dm index 51e4411906..750a8c0bea 100644 --- a/code/modules/admin/verbs/smite_vr.dm +++ b/code/modules/admin/verbs/smite_vr.dm @@ -34,7 +34,7 @@ if(!Ts) return //Didn't find shadekin spawn turf - var/mob/living/simple_mob/shadekin/red/ai/shadekin = new(Ts) + var/mob/living/simple_mob/shadekin/red/shadekin = new(Ts) //Abuse of shadekin shadekin.real_name = shadekin.name shadekin.init_vore() diff --git a/code/modules/ai/ai_holder.dm b/code/modules/ai/ai_holder.dm index 86ab848733..8a101decd7 100644 --- a/code/modules/ai/ai_holder.dm +++ b/code/modules/ai/ai_holder.dm @@ -131,7 +131,7 @@ IF_VV_OPTION("mass_edit_finish") if(!check_rights(R_ADMIN)) return - + var/list/before = snapshot //This PROBABLY works, right? snapshot = null var/list/after = vars.Copy() //'vars' appears to be special in that vars.Copy produces a flat list of keys with no values. It seems that 'vars[key]' is handled somewhere in the byond engine differently than normal lists. @@ -183,7 +183,7 @@ found += M choices["[typechoice] ([found.len])"] = found // Prettified name for the user input below) searching = found // Now we only search the list we just made, because of the order of our types list, each subsequent list will be a subset of the one we just finished - + var/choice = tgui_input_list(usr,"Based on your AI holder's mob location, we'll edit mobs on Z [levels_working.Join(",")]. What types do you want to alter?", "Types", choices) if(!choice) href_list["datumrefresh"] = "\ref[src]" @@ -201,7 +201,7 @@ L.ai_holder.vars[newvar] = after[newvar] else to_chat(usr,"Skipping unavailable var '[newvar]' on: [L] [ADMIN_COORDJMP(L)]") - + to_chat(usr,"Mass AI edit done.") href_list["datumrefresh"] = "\ref[src]" @@ -291,6 +291,9 @@ // 'Tactical' processes such as moving a step, meleeing an enemy, firing a projectile, and other fairly cheap actions that need to happen quickly. /datum/ai_holder/proc/handle_tactics() + if(!istype(holder) || QDELETED(holder)) + qdel(src) + return if(holder.key && !autopilot) return handle_special_tactic() @@ -298,6 +301,9 @@ // 'Strategical' processes that are more expensive on the CPU and so don't get run as often as the above proc, such as A* pathfinding or robust targeting. /datum/ai_holder/proc/handle_strategicals() + if(!istype(holder) || QDELETED(holder)) + qdel(src) + return if(holder.key && !autopilot) return handle_special_strategical() diff --git a/code/modules/ai/ai_holder_combat.dm b/code/modules/ai/ai_holder_combat.dm index 29c58e5670..e21d8de5b2 100644 --- a/code/modules/ai/ai_holder_combat.dm +++ b/code/modules/ai/ai_holder_combat.dm @@ -310,15 +310,20 @@ // Kill common obstacle in the way like tables. var/obj/structure/obstacle = locate(/obj/structure, problem_turf) - if(istype(obstacle, /obj/structure/window) || istype(obstacle, /obj/structure/closet) || istype(obstacle, /obj/structure/table) || istype(obstacle, /obj/structure/grille) || istype(obstacle, /obj/effect/weaversilk/wall)) //VOREStation Edit: spdr + if(istype(obstacle, /obj/structure/window) || istype(obstacle, /obj/structure/closet) || istype(obstacle, /obj/structure/table) || istype(obstacle, /obj/structure/grille)) ai_log("destroy_surroundings() : Attacking generic structure.", AI_LOG_INFO) return melee_attack(obstacle) + var/obj/effect/weaversilk/web = locate(/obj/effect/weaversilk, problem_turf) + if(istype(web, /obj/effect/weaversilk/wall)) //VOREStation Edit: spdr + ai_log("destroy_surroundings() : Attacking weaversilk effect.", AI_LOG_INFO) + return melee_attack(web) + for(var/obj/machinery/door/D in problem_turf) // Required since firelocks take up the same turf. if(D.density) ai_log("destroy_surroundings() : Attacking closed door.", AI_LOG_INFO) return melee_attack(D) - + // Should always be last thing attempted if(!problem_turf.opacity) ai_log("destroy_surroundings() : Attacking a transparent (window?) turf.", AI_LOG_INFO) diff --git a/code/modules/ai/ai_holder_targeting.dm b/code/modules/ai/ai_holder_targeting.dm index 560ad61a06..e3d98f1620 100644 --- a/code/modules/ai/ai_holder_targeting.dm +++ b/code/modules/ai/ai_holder_targeting.dm @@ -4,7 +4,8 @@ var/hostile = FALSE // Do we try to hurt others? var/retaliate = FALSE // Attacks whatever struck it first. Mobs will still attack back if this is false but hostile is true. var/mauling = FALSE // Attacks unconscious mobs - var/handle_corpse = FALSE // Allows AI to acknowledge corpses (e.g. nurse spiders) + var/unconscious_vore = FALSE //VOREStation Add - allows a mob to go for unconcious targets IF their vore prefs align + var/handle_corpse = FALSE // Allows AI to acknowledge corpses (e.g. nurse spiders) var/atom/movable/target = null // The thing (mob or object) we're trying to kill. var/atom/movable/preferred_target = null// If set, and if given the chance, we will always prefer to target this over other options. @@ -129,6 +130,14 @@ if(L.stat == UNCONSCIOUS) // Do we have mauling? Yes? Then maul people who are sleeping but not SSD if(mauling) return TRUE + //VOREStation Add Start + else if(unconscious_vore && L.allowmobvore) + var/mob/living/simple_mob/vore/eater = holder + if(eater.will_eat(L)) + return TRUE + else + return FALSE + //VOREStation Add End else return FALSE if(holder.IIsAlly(L)) diff --git a/code/modules/asset_cache/asset_list_items.dm b/code/modules/asset_cache/asset_list_items.dm index f0422f4116..ffd7033c4d 100644 --- a/code/modules/asset_cache/asset_list_items.dm +++ b/code/modules/asset_cache/asset_list_items.dm @@ -532,5 +532,9 @@ "tether_nanomap_z10.png" = 'icons/_nanomaps/tether_nanomap_z10.png', "tether_nanomap_z13.png" = 'icons/_nanomaps/tether_nanomap_z13.png', "tether_nanomap_z14.png" = 'icons/_nanomaps/tether_nanomap_z14.png', + "stellardelight_nanomap_z1.png" = 'icons/_nanomaps/sd_deck1.png', + "stellardelight_nanomap_z2.png" = 'icons/_nanomaps/sd_deck2.png', + "stellardelight_nanomap_z3.png" = 'icons/_nanomaps/sd_deck3.png', + // VOREStation Edit End ) \ No newline at end of file diff --git a/code/modules/awaymissions/corpse.dm b/code/modules/awaymissions/corpse.dm index 6aa06ef4ec..cf55eacec4 100644 --- a/code/modules/awaymissions/corpse.dm +++ b/code/modules/awaymissions/corpse.dm @@ -49,8 +49,6 @@ //TODO: insert cause of death handling/wound simulation here if(src.corpseuniform) M.equip_to_slot_or_del(new src.corpseuniform(M), slot_w_uniform) - if(src.corpsesuit) - M.equip_voidsuit_to_slot_or_del_with_refit(new src.corpsesuit(M), slot_wear_suit, src.species) if(src.corpseshoes) M.equip_to_slot_or_del(new src.corpseshoes(M), slot_shoes) if(src.corpsegloves) @@ -61,8 +59,6 @@ M.equip_to_slot_or_del(new src.corpseglasses(M), slot_glasses) if(src.corpsemask) M.equip_to_slot_or_del(new src.corpsemask(M), slot_wear_mask) - if(src.corpsehelmet) - M.equip_voidhelm_to_slot_or_del_with_refit(new src.corpsehelmet(M), slot_head, src.species) if(src.corpsebelt) M.equip_to_slot_or_del(new src.corpsebelt(M), slot_belt) if(src.corpsepocket1) @@ -90,6 +86,11 @@ W.assignment = corpseidjob M.set_id_info(W) M.equip_to_slot_or_del(W, slot_wear_id) + // Do suit last to avoid equipping issues + if(src.corpsehelmet) + M.equip_voidhelm_to_slot_or_del_with_refit(new src.corpsehelmet(M), slot_head, src.species) + if(src.corpsesuit) + M.equip_voidsuit_to_slot_or_del_with_refit(new src.corpsesuit(M), slot_wear_suit, src.species) @@ -132,6 +133,8 @@ corpseshoes = /obj/item/clothing/shoes/black random_species = TRUE + + /obj/effect/landmark/corpse/chef name = "Chef" corpseuniform = /obj/item/clothing/under/rank/chef @@ -167,8 +170,8 @@ corpsegloves = /obj/item/clothing/gloves/yellow corpsehelmet = /obj/item/clothing/head/hardhat corpseid = 1 - corpseidjob = "Station Engineer" - corpseidaccess = "Station Engineer" + corpseidjob = "Engineer" + corpseidaccess = "Engineer" /obj/effect/landmark/corpse/engineer/rig corpsesuit = /obj/item/clothing/suit/space/void/engineering @@ -198,7 +201,7 @@ corpseid = 1 corpseidjob = "Scientist" corpseidaccess = "Scientist" - + /obj/effect/landmark/corpse/security name = "Security Officer" corpseradio = /obj/item/device/radio/headset/headset_sec @@ -212,18 +215,18 @@ corpseid = 1 corpseidjob = "Security Officer" corpseidaccess = "Security Officer" - + /obj/effect/landmark/corpse/security/rig corpsesuit = /obj/item/clothing/suit/space/void/security corpsemask = /obj/item/clothing/mask/breath corpsehelmet = /obj/item/clothing/head/helmet/space/void/security corpseback = /obj/item/weapon/tank/jetpack/oxygen - + /obj/effect/landmark/corpse/security/rig/eva corpsesuit = /obj/item/clothing/suit/space/void/security/alt corpsehelmet = /obj/item/clothing/head/helmet/space/void/security/alt corpseidjob = "Starship Security Officer" - + /obj/effect/landmark/corpse/prisoner name = "Unknown Prisoner" corpseuniform = /obj/item/clothing/under/color/prison @@ -247,7 +250,7 @@ corpsemask = /obj/item/clothing/mask/breath corpsehelmet = /obj/item/clothing/head/helmet/space/void/mining corpseback = /obj/item/weapon/tank/oxygen - + /////////////////Vintage////////////////////// //define the basic props at this level and only change specifics for variants, e.z. @@ -337,3 +340,41 @@ corpseid = 1 corpseidjob = "Commander" corpseidaccess = "Captain" + +/////////////////Lore Factions////////////////////// + +/obj/effect/landmark/corpse/sifguard + name = "Patrolman" + corpseuniform = /obj/item/clothing/under/solgov/utility/sifguard + corpsesuit = /obj/item/clothing/suit/storage/hooded/wintercoat/solgov + corpsebelt = /obj/item/weapon/storage/belt/security/tactical + corpseglasses = /obj/item/clothing/glasses/sunglasses/sechud + corpsemask = /obj/item/clothing/mask/balaclava + corpsehelmet = /obj/item/clothing/head/beret/solgov/sifguard + corpsegloves = /obj/item/clothing/gloves/duty + corpseshoes = /obj/item/clothing/shoes/boots/tactical + corpsepocket1 = /obj/item/clothing/accessory/armor/tag/sifguard + corpseid = 1 + corpseidjob = "Sif Defense Force Patrolman" + +/obj/effect/landmark/corpse/hedberg + name = "Hedberg-Hammarstrom Mercenary" + corpseuniform = /obj/item/clothing/under/solgov/utility/sifguard + corpsesuit = /obj/item/clothing/suit/storage/vest/solgov/hedberg + corpsebelt = /obj/item/weapon/storage/belt/security + corpseglasses = /obj/item/clothing/glasses/sunglasses/sechud + corpsehelmet = /obj/item/clothing/head/beret/corp/hedberg + corpseshoes = /obj/item/clothing/shoes/boots/jackboots + corpseid = 1 + corpseidjob = "Hedberg-Hammarstrom Officer" + +/obj/effect/landmark/corpse/hedberg/merc + name = "Hedberg-Hammarstrom Mercenary" + corpsebelt = /obj/item/weapon/storage/belt/security/tactical + corpseglasses = /obj/item/clothing/glasses/sunglasses/sechud + corpsehelmet = /obj/item/clothing/head/helmet/flexitac + corpsegloves = /obj/item/clothing/gloves/combat + corpseshoes = /obj/item/clothing/shoes/boots/tactical + corpseid = 1 + corpseidjob = "Hedberg-Hammarstrom Enforcer" + diff --git a/code/modules/awaymissions/loot_vr.dm b/code/modules/awaymissions/loot_vr.dm index 7f4eeaf3a1..d6364d3bd4 100644 --- a/code/modules/awaymissions/loot_vr.dm +++ b/code/modules/awaymissions/loot_vr.dm @@ -57,8 +57,7 @@ var/bar_type = pick(possible_spawns) for(var/i=0,i
\ NT's most well known products are its phoron based creations, especially those used in Cryotherapy. \ - It also boasts an prosthetic line, which is provided to its employees as needed, and is used as an incentive \ + It also boasts a prosthetic line, which is provided to its employees as needed, and is used as an incentive \ for newly tested posibrains to remain with the company. \

\ NT's ships are named for famous scientists." @@ -222,6 +322,12 @@ headquarters = "Luna, Sol" motto = "" + org_type = "corporate" + slogans = list( + "NanoTrasen - Phoron Makes The Galaxy Go 'Round.", + "NanoTrasen - Join for the Medical, stay for the Company.", + "NanoTrasen - Advancing Humanity." + ) ship_prefixes = list("NTV" = "a general operations", "NEV" = "an exploration", "NGV" = "a hauling", "NDV" = "a patrol", "NRV" = "an emergency response", "NDV" = "an asset protection") //Scientist naming scheme ship_names = list( @@ -247,13 +353,11 @@ "Nye", "Hawking", "Aristotle", - "Von Braun", "Kaku", "Oppenheimer", "Renwick", "Hubble", "Alcubierre", - "Robineau", "Glass" ) // Note that the current station being used will be pruned from this list upon being instantiated @@ -297,6 +401,12 @@ headquarters = "Luna, Sol" motto = "" + org_type = "corporate" + slogans = list( + "Hephaestus Arms - When it comes to personal protection, nobody does it better.", + "Hephaestus Arms - Peace through Superior Firepower.", + "Hephaestus Arms - Don't be caught firing blanks." + ) ship_prefixes = list("HCV" = "a general operations", "HTV" = "a freight", "HLV" = "a munitions resupply", "HDV" = "an asset protection", "HDV" = "a preemptive deployment") //War God Theme, updated ship_names = list( @@ -401,6 +511,12 @@ headquarters = "Toledo, New Ohio" motto = "" + org_type = "corporate" + slogans = list( + "Vey-Medical. Medical care you can trust.", + "Vey-Medical. Only the finest in surgical equipment.", + "Vey-Medical. Because your patients deserve the best." + ) ship_prefixes = list("VMV" = "a general operations", "VTV" = "a transportation", "VHV" = "a medical resupply", "VSV" = "a research", "VRV" = "an emergency medical support") // Diona names, mostly ship_names = list( @@ -415,6 +531,9 @@ "Fire Blown Out By Wind", "Star That Fades From View", "Eyes Which Turn Inwards", + "Still Water Upon An Endless Shore", + "Sunlight Glitters Upon Tranquil Sands", + "Growth Within The Darkest Abyss", "Joy Without Which The World Would Come Undone", "A Thousand Thousand Planets Dangling From Branches", "Light Streaming Through Interminable Branches", @@ -447,6 +566,13 @@ headquarters = "Earth, Sol" motto = "" + org_type = "corporate" + slogans = list( + "Zeng-Hu! WE make the medicines that YOU need!", + "Zeng-Hu! Having acid reflux problems? Consult your local physician to see if Dylovene is right for YOU!", + "Zeng-Hu! Tired of getting left in the dust? Try Hyperzine! You'll never fall behind again!", + "Zeng-Hu! Life's aches and pains getting to you? Try Tramadol - available at any good pharmacy!" + ) ship_prefixes = list("ZHV" = "a general operations", "ZTV" = "a transportation", "ZMV" = "a medical resupply", "ZRV" = "a medical research") //ship names: a selection of famous physicians who advanced the cause of medicine ship_names = list( @@ -527,6 +653,12 @@ headquarters = "" motto = "" + org_type = "corporate" + slogans = list( + "Takahashi Appliances - keeping your home running smoothly.", + "W-T Automotive - keeping you on time, all the time.", + "Ward-Takahashi Electronics - keeping you in touch with the galaxy." + ) ship_prefixes = list("WTV" = "a general operations", "WTFV" = "a freight", "WTGV" = "a transport", "WTDV" = "an asset protection") ship_names = list( "Comet", @@ -560,6 +692,8 @@ "Curtain", "Planetar", "Quasar", + "Blazar", + "Corona", "Binary" ) destination_names = list() @@ -581,6 +715,12 @@ headquarters = "" motto = "" + org_type = "corporate" + slogans = list( + "Bishop Cybernetics - only the best in personal augmentation.", + "Bishop Cybernetics - why settle for flesh when you can have metal?", + "Bishop Cybernetics - make a statement." + ) ship_prefixes = list("BCV" = "a general operations", "BCTV" = "a transportation", "BCSV" = "a research exchange") //famous mechanical engineers ship_names = list( @@ -660,6 +800,10 @@ headquarters = "Shelf flotilla" motto = "" + org_type = "neutral" //disables slogans for morpheus as they don't advertise, per the description above + /* + slogans = list() + */ ship_prefixes = list("MCV" = "a general operations", "MTV" = "a freight", "MDV" = "a market protection", "MSV" = "an outreach") //periodic elements; something 'unusual' for the posibrain TSC without being full on 'quirky' culture ship names (much as I love them, they're done to death) ship_names = list( @@ -749,6 +893,12 @@ headquarters = "" motto = "" + org_type = "corporate" + slogans = list( + "Xion Manufacturing - We have what you need.", + "Xion Manufacturing - The #1 choice of the SolCom Engineer's Union for 150 years.", + "Xion Manufacturing - Our products are as bulletproof as our contracts." + ) ship_prefixes = list("XMV" = "a general operations", "XTV" = "a hauling", "XFV" = "a bulk transport", "XIV" = "a resupply") //martian mountains ship_names = list( @@ -803,6 +953,12 @@ headquarters = "" motto = "" + org_type = "corporate" + slogans = list( + "The FTU. We look out for the little guy.", + "There's no Trade like Free Trade.", + "Join the Free Trade Union. Because anything worth doing, is worth doing for money." //rule of acquisition #13 + ) ship_prefixes = list("FTV" = "a general operations", "FTRP" = "a trade protection", "FTRR" = "a piracy suppression", "FTLV" = "a logistical support", "FTTV" = "a mercantile", "FTDV" = "a market establishment") //famous merchants and traders, taken from Civ6's Great Merchants, plus the TSC's founder ship_names = list( @@ -846,6 +1002,12 @@ headquarters = "Mars, Sol" motto = "With Major Bill's, you won't pay major bills!" + org_type = "corporate" + slogans = list( + "With Major Bill's, you won't pay major bills!", + "Major Bill's - Private Couriers - General Shipping!", + "Major Bill's got you covered, now get out there!" + ) ship_prefixes = list("TTV" = "a general operations", "TTV" = "a transport", "TTV" = "a luxury transit", "TTV" = "a priority transit", "TTV" = "a secure data courier") //ship names: big rivers ship_names = list ( @@ -916,6 +1078,12 @@ headquarters = "Mars, Sol" motto = "" + org_type = "corporate" + slogans = list( + "Grayson Mining - It's An Ore Effort, For The War Effort!", + "Grayson Mining - Winning The War On Ore!", + "Grayson Mining - Come On Down To Our Ore Chasm!" + ) ship_prefixes = list("GMV" = "a general operations", "GMT" = "a transport", "GMR" = "a resourcing", "GMS" = "a surveying", "GMH" = "a bulk transit") //rocks ship_names = list( @@ -976,6 +1144,12 @@ headquarters = "" motto = "Dum spiro spero" + org_type = "corporate" + slogans = list( + "Aether A&R - We're Absolutely Breathtaking.", + "Aether A&R - You Can Breathe Easy With Us!", + "Aether A&R - The SolCom's #1 Environmental Systems Provider." + ) ship_prefixes = list("AARV" = "a general operations", "AARE" = "a resource extraction", "AARG" = "a gas transport", "AART" = "a transport") //weather systems/patterns ship_names = list ( @@ -1025,6 +1199,12 @@ headquarters = "" motto = "" + org_type = "corporate" + slogans = list( + "Focal Point Energistics - Sustainable Power for a Sustainable Future.", + "Focal Point Energistics - Powering The Future Before It Even Happens.", + "Focal Point Energistics - Let There Be Light." + ) ship_prefixes = list("FPV" = "a general operations", "FPH" = "a transport", "FPC" = "an energy relay", "FPT" = "a fuel transport") //famous electrical engineers ship_names = list ( @@ -1085,6 +1265,12 @@ headquarters = "Spin Aerostat, Jupiter" motto = "Sic itur ad astra" + org_type = "corporate" + slogans = list( + "StarFlight - travel the stars.", + "StarFlight - bringing you to new horizons.", + "StarFlight - getting you where you need to be since 2137." + ) ship_prefixes = list("SFI-X" = "a VIP liner", "SFI-L" = "a luxury liner", "SFI-B" = "a business liner", "SFI-E" = "an economy liner", "SFI-M" = "a mixed class liner", "SFI-S" = "a sightseeing", "SFI-M" = "a wedding", "SFI-O" = "a marketing", "SFI-S" = "a safari", "SFI-A" = "an aquatic adventure") flight_types = list( //no military-sounding ones here "flight", @@ -1143,6 +1329,12 @@ headquarters = "" motto = "News from all across the spectrum" + org_type = "corporate" + slogans = list( + "Oculum - All News, All The Time.", + "Oculum - We Keep An Eye Out.", + "Oculum - Your Eye On The Galaxy." + ) ship_prefixes = list("OBV" = "an investigation", "OBV" = "a distribution", "OBV" = "a journalism", "OBV" = "a general operations") destination_names = list( "Oculus HQ" @@ -1158,6 +1350,12 @@ headquarters = "Alpha Centauri" motto = "The largest brands of food and drink - most of them are Centauri." + org_type = "corporate" + slogans = list( + "Centauri Provisions Bread Tubes - They're Not Just Edible, They're |Breadible!|", + "Centauri Provisions SkrellSnax - Not |Just| For Skrell!", + "Centauri Provisions Space Mountain Wind - It'll Take Your |Breath| Away!" + ) ship_prefixes = list("CPTV" = "a transport", "CPCV" = "a catering", "CPRV" = "a resupply", "CPV" = "a general operations") destination_names = list( "Centauri Provisions HQ", @@ -1175,6 +1373,12 @@ headquarters = "" motto = "Engine designs, emergency generators, and old memories" + org_type = "corporate" + slogans = list( + "Einstein Engines - you don't have to be Einstein to use |our| engines!", + "Einstein Engines - bringing power to the people.", + "Einstein Engines - because it's the smart thing to do." + ) ship_prefixes = list("EETV" = "a transport", "EERV" = "a research", "EEV" = "a general operations") destination_names = list( "Einstein HQ" @@ -1190,6 +1394,12 @@ headquarters = "" motto = "We build it - you fly it" + org_type = "corporate" + slogans = list( + "Wulf Aeronautics. We build it - you fly it.", + "Wulf Aeronautics, the Commonwealth's favorite shipwrights.", + "Wulf Aeronautics, building tomorrow's ships today." + ) ship_prefixes = list("WATV" = "a transport", "WARV" = "a repair", "WAV" = "a general operations") destination_names = list( "Wulf Aeronautics HQ", @@ -1207,6 +1417,12 @@ headquarters = "" motto = "" + org_type = "corporate" + slogans = list( + "Why choose |luxury| when you can choose |Gilthari|?", + "|Gilthari|. Because |you're| worth it.", + "|Gilthari|. Why settle for |anything| less?" + ) ship_prefixes = list("GETV" = "a transport", "GECV" = "a luxury catering", "GEV" = "a general operations") //precious stones ship_names = list( @@ -1283,6 +1499,12 @@ headquarters = "N/A" motto = "one man's trash is another man's treasure" + org_type = "corporate" + slogans = list( + "Coyote Salvage Corp. 'cause your trash ain't gonna clean itself.", + "Coyote Salvage Corp. 'cause one man's trash is another man's treasure.", + "Coyote Salvage Corp. We'll take your scrap - but not your crap." + ) ship_prefixes = list("CSV" = "a salvage", "CRV" = "a recovery", "CTV" = "a transport", "CSV" = "a shipbreaking", "CHV" = "a towing") //mostly-original, maybe some references, and more than a few puns ship_names = list( @@ -1351,6 +1573,12 @@ headquarters = "Titan, Sol" motto = "the whole is greater than the sum of its parts" + org_type = "corporate" + slogans = list( + "Chimera Genetics. Find your true self today!", + "Chimera Genetics. Bring us your genes and we'll clean them right up.", + "Chimera Genetics. Better bodies for a better tomorrow." + ) ship_prefixes = list("CGV" = "a general operations", "CGT" = "a transport", "CGT" = "a delivery", "CGH" = "a medical") //edgy mythological critters! ship_names = list( @@ -1506,6 +1734,7 @@ sysdef = TRUE //we're the space law, we don't impersonate people and stuff autogenerate_destination_names = FALSE //don't add extra destinations to our pool, or else we leave the system which makes no sense + org_type = "system defense" ship_prefixes = list ("SDB" = "a patrol", "SDF" = "a patrol", "SDV" = "a patrol", "SDB" = "an escort", "SDF" = "an escort", "SDV" = "an escort", "SAR" = "a search and rescue", "SDT" = "a logistics", "SDT" = "a resupply", "SDJ" = "a prisoner transport") //b = boat, f = fleet (generic), v = vessel, t = tender //ship names: weapons ship_names = list( @@ -1605,6 +1834,7 @@ sysdef = FALSE autogenerate_destination_names = TRUE //the events we get called for don't fire a destination, but we need entries to avoid runtimes. + org_type = "smuggler" ship_prefixes = list ("suspected smuggler" = "an illegal smuggling", "possible smuggler" = "an illegal smuggling") //as assigned by control, second part shouldn't even come up //blank out our shipnames for redesignation ship_names = list( @@ -1781,6 +2011,7 @@ hostile = TRUE autogenerate_destination_names = TRUE //the events we get called for don't fire a destination, but we need entries to avoid runtimes. + org_type = "pirate" ship_prefixes = list ("known pirate" = "a piracy", "suspected pirate" = "a piracy", "rogue privateer" = "a piracy", "Cartel enforcer" = "a piracy", "known outlaw" = "a piracy", "bandit" = "a piracy", "roving corsair" = "a piracy", "illegal salvager" = "an illegal salvage", "rogue mercenary" = "a mercenary") //as assigned by control, second part shouldn't even come up, but it exists to avoid hiccups/weirdness just in case ship_names = list( "Morally Bankrupt", @@ -1953,6 +2184,7 @@ hostile = TRUE autogenerate_destination_names = TRUE + org_type = "pirate" ship_prefixes = list("Ue-Katish pirate" = "a raiding", "Ue-Katish bandit" = "a raiding", "Ue-Katish raider" = "a raiding", "Ue-Katish enforcer" = "an enforcement") ship_names = list( "Keqxuer'xeu's Prize", @@ -1987,6 +2219,7 @@ hostile = TRUE autogenerate_destination_names = TRUE //the events we get called for don't fire a destination, but we need *some* entries to avoid runtimes. + org_type = "pirate" ship_prefixes = list("vox marauder" = "a marauding", "vox raider" = "a raiding", "vox ravager" = "a raiding", "vox corsair" = "a raiding") //as assigned by control, second part shouldn't even come up //blank out our shipnames for redesignation ship_names = list( @@ -2063,6 +2296,7 @@ motto = "Nil Mortalibus Ardui Est" // Latin, because latin. Says 'Nothing is too steep for mortals' autogenerate_destination_names = TRUE + org_type = "government" ship_prefixes = list("CWS-A" = "an administrative", "CWS-T" = "a transportation", "CWS-D" = "a diplomatic", "CWS-F" = "a freight", "CWS-J" = "a prisoner transfer") //earth's biggest impact craters ship_names = list( @@ -2158,6 +2392,7 @@ headquarters = "Paraiso a Àstrea" motto = "Liberty to the Stars!" + org_type = "government" ship_prefixes = list("UFHV" = "military", "FFHV" = "classified") ship_names = list( "Bulwark of the Free", @@ -2236,6 +2471,7 @@ headquarters = "" motto = "" + org_type = "government" ship_prefixes = list("ECS-M" = "a military", "ECS-T" = "a transport", "ECS-T" = "a special transport", "ECS-D" = "a diplomatic") //The Special Transport is SLAAAAVES. but let's not advertise that openly. ship_names = list( "Bring Me Wine!", @@ -2291,6 +2527,7 @@ headquarters = "The Pact, Myria" motto = "" + org_type = "government" ship_prefixes = list("SFM-M" = "a military", "SFM-M" = "a patrol") // The Salthans don't do anything else. flight_types = list( "mission", @@ -2394,6 +2631,7 @@ motto = "" autogenerate_destination_names = TRUE //big list of own holdings to come + org_type = "government" //the tesh expeditionary fleet's closest analogue in modern terms would be the US Army Corps of Engineers, just with added combat personnel as well ship_prefixes = list("TEF" = "a diplomatic", "TEF" = "a peacekeeping", "TEF" = "an escort", "TEF" = "an exploration", "TEF" = "a survey", "TEF" = "an expeditionary", "TEF" = "a pioneering") //TODO: better ship names? I just took a bunch of random teshnames from the Random Name button and added a word. @@ -2427,6 +2665,62 @@ "Expeditionary Fleet HQ" ) +/datum/lore/organization/gov/altevian_hegemony + name = "The Altevian Hegemony" + short_name = "Altevian Hegemony " + acronym = "AH" + desc = "The Altevians are a space-faring race of rodents that resemble Earth-like rats. \ + They do not have a place they call home in terms of a planet, and instead have massive multiple-kilometer-long colony-ships \ + that are constantly on the move and typically keep operations outside of known populated systems to not eat the resources from others. \ + Their primary focus is trade and slavage operations and can be expected to be seen around both densely populated and empty systems for their work." + history = "" + work = "salvage and trade operators" + headquarters = "AH-CV Migrant" + motto = "" + org_type = "spacer" + + ship_prefixes = list("AH-DV" = "a diplomatic", "AH-EV" = "an exploration", "AH-FV" = "a fueling", "AH-FV" = "a cargo", "AH-SV" = "a research", "AH-TV" = "a colony-transporter", "AH-RV" = "an emergency response", "AH-RV" = "a response", "AH-MV" = "a medical") + ship_names = list( + "Platinum", + "Warson", + "Mane", + "Holland", + "Arauz", + "Diamond", + "Gold", + "Steam", + "Boiler", + "Slip", + "Lavender", + "Wheel", + "Stuntson", + "Desto", + "Palos", + "Matterson", + "Mill", + "Smoke", + "Squeson", + "Rabion", + "Strikedown", + "Cluster", + "Raling", + "Archaeologist", + "Beaker" + ) + destination_names = list( + "the AH-CV Migrant flagship", + "one of our research colony-ships", + "the AH-CV Lotus", + "the AH-CV Anvil", + "the AH-CV Generations", + "the AH-CV Galley", + "the AH-CV Prosperity", + "the AH-CV Kitsap", + "the AH-CV Diamondback", + "one of our colony-ships", + "one of our production fleets" + ) + ////////////////////////////////////////////////////////////////////////////////// // Military @@ -2441,6 +2735,7 @@ motto = "Si Vis Pacem Para Bellum" //if you wish for peace, prepare for war autogenerate_destination_names = TRUE + org_type = "military" ship_prefixes = list ("USDF" = "a logistical", "USDF" = "a training", "USDF" = "a patrol", "USDF" = "a piracy suppression", "USDF" = "a peacekeeping", "USDF" = "a relief", "USDF" = "an escort", "USDF" = "a search and rescue", "USDF" = "a classified") flight_types = list( "mission", @@ -2539,6 +2834,7 @@ motto = "" autogenerate_destination_names = TRUE + org_type = "military" ship_prefixes = list("PCRC" = "a risk control", "PCRC" = "a private security") flight_types = list( "flight", @@ -2602,6 +2898,7 @@ motto = "Strength in Numbers" autogenerate_destination_names = TRUE + org_type = "military" ship_prefixes = list("HPF" = "a secure freight", "HPT" = "a training", "HPS" = "a logistics", "HPV" = "a patrol", "HPH" = "a bounty hunting", "HPX" = "an experimental", "HPC" = "a command", "HPI" = "a mercy") flight_types = list( "flight", @@ -2686,6 +2983,7 @@ motto = "Aut Neca Aut Necare" autogenerate_destination_names = TRUE + org_type = "military" ship_prefixes = list("SAARE" = "a secure freight", "SAARE" = "a training", "SAARE" = "a logistics", "SAARE" = "a patrol", "SAARE" = "a security", "SAARE" = "an experimental", "SAARE" = "a command", "SAARE" = "a classified") flight_types = list( "flight", @@ -2780,4 +3078,4 @@ i-- //ex: "Phalanx One-Niner", "Sledgehammer Actual" (CO/VIP), "Kodiak Seven-Four", "Tomahawk Two-Zero" - //probably a more elegant (read: fancier) way to do the second part but fuck it, this works just fine + //probably a more elegant (read: fancier) way to do the second part but fuck it, this works just fine \ No newline at end of file diff --git a/code/modules/casino/casino_prize_vendor.dm b/code/modules/casino/casino_prize_vendor.dm index 0672170d8f..0355a73bb4 100644 --- a/code/modules/casino/casino_prize_vendor.dm +++ b/code/modules/casino/casino_prize_vendor.dm @@ -88,8 +88,8 @@ CASINO_PRIZE("Dolphin mask", /obj/item/clothing/mask/dolphin, 1, 50, "clothing"), CASINO_PRIZE("Demon mask", /obj/item/clothing/mask/demon, 1, 50, "clothing"), CASINO_PRIZE("Chameleon mask", /obj/item/clothing/under/chameleon, 1, 250, "clothing"), - CASINO_PRIZE("Ian costume", /obj/item/clothing/suit/storage/hooded/ian_costume, 1, 50, "clothing"), - CASINO_PRIZE("Carp costume", /obj/item/clothing/suit/storage/hooded/carp_costume, 1, 50, "clothing"), + CASINO_PRIZE("Ian costume", /obj/item/clothing/suit/storage/hooded/costume/ian, 1, 50, "clothing"), + CASINO_PRIZE("Carp costume", /obj/item/clothing/suit/storage/hooded/costume/carp, 1, 50, "clothing"), ) item_list["Miscellaneous"] = list( CASINO_PRIZE("Toy sword", /obj/item/toy/sword, 1, 50, "misc"), @@ -270,8 +270,7 @@ SStgui.update_uis(src) if(ispath(bi.equipment_path, /obj/item/stack)) - var/obj/item/stack/S = new bi.equipment_path(loc) - S.amount = bi.equipment_amt + new bi.equipment_path(loc, bi.equipment_amt) playsound(src, 'sound/machines/vending/vending_drop.ogg', 100, 1) return TRUE diff --git a/code/modules/catalogue/catalogue_data_vr.dm b/code/modules/catalogue/catalogue_data_vr.dm index 06c3f9c51a..52d00f4a74 100644 --- a/code/modules/catalogue/catalogue_data_vr.dm +++ b/code/modules/catalogue/catalogue_data_vr.dm @@ -60,8 +60,8 @@ desc = "The Vulpkanin are the remnants of an ancient precursor which resided in the Coreward Periphery \ 3000 to 4000 years ago, residing on a planet called “Altam”. Vulpkanin diverged from the precursors due \ to heavy isolation after the fall, presumably due to being a freshly found colony. A lack of material support \ - regressed their technology to pre-industrial standards until being found again by Humanity. At this point \ - they have formed an early spacefaring society and accession into the Diaspora went over relatively smoothly. \ + regressed their technology to pre-industrial standards, from which they had to recover from in long and hard years. At the point \ + of discovery by human explorers, they have formed an early interplanetary society and accession into the Diaspora went over relatively smoothly. \ Vulpkanin are the closest successor to the precursors, genetically, although genelocked devices still do not \ recognize them due to genetic drift." value = CATALOGUER_REWARD_TRIVIAL diff --git a/code/modules/client/preference_setup/antagonism/02_candidacy.dm b/code/modules/client/preference_setup/antagonism/02_candidacy.dm index fae7e35118..d922f10669 100644 --- a/code/modules/client/preference_setup/antagonism/02_candidacy.dm +++ b/code/modules/client/preference_setup/antagonism/02_candidacy.dm @@ -21,6 +21,8 @@ var/global/list/special_roles = list( //keep synced with the defines BE_* in set "lost drone" = 1, // 16 "maint pred" = 1, // 17 "morph" = 1, // 18 + "corgi" = 1, // 19 + "cursed sword" = 1, // 20 //VOREStation Add End ) diff --git a/code/modules/client/preference_setup/general/02_language.dm b/code/modules/client/preference_setup/general/02_language.dm index 6128eb2c64..2121489535 100644 --- a/code/modules/client/preference_setup/general/02_language.dm +++ b/code/modules/client/preference_setup/general/02_language.dm @@ -30,7 +30,7 @@ // Sanitize illegal languages for(var/language in pref.alternate_languages) var/datum/language/L = GLOB.all_languages[language] - if(!istype(L) || (L.flags & RESTRICTED) || (!(language in S.secondary_langs) && !is_lang_whitelisted(pref.client, L))) + if(!istype(L) || (L.flags & RESTRICTED) || (!(language in S.secondary_langs) && pref.client && !is_lang_whitelisted(pref.client, L))) testing("LANGSANI: Removed [L?.name || "lang not found"] from [pref.client]'s character [pref.real_name || "-name not yet loaded-"] because it failed allowed checks") pref.alternate_languages -= language diff --git a/code/modules/client/preference_setup/general/03_body.dm b/code/modules/client/preference_setup/general/03_body.dm index 13128f55c7..6cdfa38f13 100644 --- a/code/modules/client/preference_setup/general/03_body.dm +++ b/code/modules/client/preference_setup/general/03_body.dm @@ -687,9 +687,9 @@ var/global/list/valid_bloodtypes = list("A+", "A-", "B+", "B-", "AB+", "AB-", "O reset_limbs() // Safety for species with incompatible manufacturers; easier than trying to do it case by case. pref.body_markings.Cut() // Basically same as above. - + pref.sanitize_body_styles() - + var/min_age = get_min_age() var/max_age = get_max_age() pref.age = max(min(pref.age, max_age), min_age) @@ -796,7 +796,7 @@ var/global/list/valid_bloodtypes = list("A+", "A-", "B+", "B-", "AB+", "AB-", "O var/list/valid_facialhairstyles = pref.get_valid_facialhairstyles() var/new_f_style = tgui_input_list(user, "Choose your character's facial-hair style:", "Character Preference", valid_facialhairstyles, pref.f_style) - if(new_f_style && has_flag(mob_species, HAS_HAIR_COLOR) && CanUseTopic(user)) + if(new_f_style && CanUseTopic(user)) pref.f_style = new_f_style return TOPIC_REFRESH_UPDATE_PREVIEW diff --git a/code/modules/client/preference_setup/general/06_flavor.dm b/code/modules/client/preference_setup/general/06_flavor.dm index f03281d0d6..ac1c42d5d0 100644 --- a/code/modules/client/preference_setup/general/06_flavor.dm +++ b/code/modules/client/preference_setup/general/06_flavor.dm @@ -88,7 +88,8 @@ /datum/category_item/player_setup_item/general/flavor/proc/SetFlavorText(mob/user) var/HTML = "" HTML += "
" - HTML += "Set Flavour Text
" + HTML += "Set Flavor Text
" + HTML += "Note: This is not *literal* flavor of your character. This is visual description of what they look like.
" HTML += "
" HTML += "General: " HTML += TextPreview(pref.flavor_texts["general"]) diff --git a/code/modules/client/preference_setup/global/02_settings.dm b/code/modules/client/preference_setup/global/02_settings.dm index 8f047985c7..b3da6ef214 100644 --- a/code/modules/client/preference_setup/global/02_settings.dm +++ b/code/modules/client/preference_setup/global/02_settings.dm @@ -9,6 +9,7 @@ /datum/category_item/player_setup_item/player_global/settings/load_preferences(var/savefile/S) S["lastchangelog"] >> pref.lastchangelog S["lastnews"] >> pref.lastnews + S["lastlorenews"] >> pref.lastlorenews S["default_slot"] >> pref.default_slot S["preferences"] >> pref.preferences_enabled S["preferences_disabled"] >> pref.preferences_disabled @@ -16,6 +17,7 @@ /datum/category_item/player_setup_item/player_global/settings/save_preferences(var/savefile/S) S["lastchangelog"] << pref.lastchangelog S["lastnews"] << pref.lastnews + S["lastlorenews"] << pref.lastlorenews S["default_slot"] << pref.default_slot S["preferences"] << pref.preferences_enabled S["preferences_disabled"] << pref.preferences_disabled @@ -81,9 +83,17 @@ return ..() +/** + * This can take either a single preference datum or a list of preferences, and will return true if *all* preferences in the arguments are enabled. + */ /client/proc/is_preference_enabled(var/preference) - var/datum/client_preference/cp = get_client_preference(preference) - return cp && (cp.key in prefs.preferences_enabled) + if(!islist(preference)) + preference = list(preference) + for(var/p in preference) + var/datum/client_preference/cp = get_client_preference(p) + if(!cp || !(cp.key in prefs.preferences_enabled)) + return FALSE + return TRUE /client/proc/set_preference(var/preference, var/set_preference) var/datum/client_preference/cp = get_client_preference(preference) diff --git a/code/modules/client/preference_setup/global/setting_datums.dm b/code/modules/client/preference_setup/global/setting_datums.dm index 718f030746..06e44c3fd8 100644 --- a/code/modules/client/preference_setup/global/setting_datums.dm +++ b/code/modules/client/preference_setup/global/setting_datums.dm @@ -95,6 +95,12 @@ var/list/_client_preferences_by_type key = "DIGEST_NOISES" enabled_description = "Noisy" disabled_description = "Silent" + +/datum/client_preference/belch_noises // Belching noises - pref toggle for 'em + description = "Burping" + key = "BELCH_NOISES" + enabled_description = "Noisy" + disabled_description = "Silent" /datum/client_preference/emote_noises description = "Emote Noises" //MERP @@ -287,6 +293,12 @@ var/list/_client_preferences_by_type enabled_description = "Show" disabled_description = "Hide" +/datum/client_preference/radio_sounds + description = "Radio Sounds" + key = "RADIO_SOUNDS" + enabled_description = "On" + disabled_description = "Off" + /datum/client_preference/runechat_mob description = "Runechat (Mobs)" key = "RUNECHAT_MOB" @@ -319,6 +331,13 @@ var/list/_client_preferences_by_type var/datum/plane_holder/PH = preference_mob.plane_holder PH.set_vis(VIS_STATUS, enabled) +/datum/client_preference/show_lore_news + description = "Lore News Popup" + key = "NEWS_POPUP" + enabled_by_default = TRUE + enabled_description = "Popup New On Login" + disabled_description = "Do Nothing" + /******************** * Staff Preferences * ********************/ diff --git a/code/modules/client/preference_setup/loadout/gear_tweaks.dm b/code/modules/client/preference_setup/loadout/gear_tweaks.dm index 90e378fbb0..11e0f1f777 100644 --- a/code/modules/client/preference_setup/loadout/gear_tweaks.dm +++ b/code/modules/client/preference_setup/loadout/gear_tweaks.dm @@ -172,7 +172,8 @@ var/datum/gear_tweak/custom_name/gear_tweak_free_name = new() return if(valid_custom_names) return tgui_input_list(user, "Choose an item name.", "Character Preference", valid_custom_names, metadata) - return sanitize(input(user, "Choose the item's name. Leave it blank to use the default name.", "Item Name", metadata) as text|null, MAX_LNAME_LEN, extra = 0) + var/san_input = sanitize(input(user, "Choose the item's name. Leave it blank to use the default name.", "Item Name", metadata) as text|null, MAX_LNAME_LEN, extra = 0) + return san_input ? san_input : get_default() /datum/gear_tweak/custom_name/tweak_item(var/obj/item/I, var/metadata) if(!metadata) @@ -203,7 +204,8 @@ var/datum/gear_tweak/custom_desc/gear_tweak_free_desc = new() return if(valid_custom_desc) return tgui_input_list(user, "Choose an item description.", "Character Preference",valid_custom_desc, metadata) - return sanitize(input(user, "Choose the item's description. Leave it blank to use the default description.", "Item Description", metadata) as message|null, extra = 0) + var/san_input = sanitize(input(user, "Choose the item's description. Leave it blank to use the default description.", "Item Description", metadata) as message|null, extra = 0) + return san_input ? san_input : get_default() /datum/gear_tweak/custom_desc/tweak_item(var/obj/item/I, var/metadata) if(!metadata) @@ -551,4 +553,4 @@ var/datum/gear_tweak/custom_desc/gear_tweak_free_desc = new() /datum/gear_tweak/implant_location/get_metadata(var/user, var/metadata) return (tgui_input_list(user, "Select a bodypart for the implant to be implanted inside.", "Implant Location", bodypart_names_to_tokens || bodypart_tokens_to_names[BP_TORSO])) -#undef LOADOUT_BAN_STRING \ No newline at end of file +#undef LOADOUT_BAN_STRING diff --git a/code/modules/client/preference_setup/loadout/loadout.dm b/code/modules/client/preference_setup/loadout/loadout.dm index 299e742cfd..61603361f5 100644 --- a/code/modules/client/preference_setup/loadout/loadout.dm +++ b/code/modules/client/preference_setup/loadout/loadout.dm @@ -65,10 +65,10 @@ var/list/gear_datums = list() for(var/gear_name in gear_datums) var/datum/gear/G = gear_datums[gear_name] - if(G.whitelisted && config.loadout_whitelist != LOADOUT_WHITELIST_OFF) + if(G.whitelisted && config.loadout_whitelist != LOADOUT_WHITELIST_OFF && pref.client) //VOREStation Edit. if(config.loadout_whitelist == LOADOUT_WHITELIST_STRICT && G.whitelisted != pref.species) continue - if(config.loadout_whitelist == LOADOUT_WHITELIST_LAX && !is_alien_whitelisted(preference_mob(), GLOB.all_species[G.whitelisted])) + if(config.loadout_whitelist == LOADOUT_WHITELIST_LAX && !is_alien_whitelisted(preference_mob(), GLOB.all_species[G.whitelisted])) continue if(max_cost && G.cost > max_cost) continue @@ -169,7 +169,7 @@ var/list/gear_datums = list() if(ticked) . += "" for(var/datum/gear_tweak/tweak in G.gear_tweaks) - . += " [tweak.get_contents(get_tweak_metadata(G, tweak))]" + . += " [tweak.get_contents(get_tweak_metadata(G, tweak))]" . += "" . += "" . = jointext(., null) @@ -205,7 +205,7 @@ var/list/gear_datums = list() pref.gear += TG.display_name return TOPIC_REFRESH_UPDATE_PREVIEW if(href_list["gear"] && href_list["tweak"]) - var/datum/gear/gear = gear_datums[href_list["gear"]] + var/datum/gear/gear = gear_datums[url_decode(href_list["gear"])] var/datum/gear_tweak/tweak = locate(href_list["tweak"]) if(!tweak || !istype(gear) || !(tweak in gear.gear_tweaks)) return TOPIC_NOACTION diff --git a/code/modules/client/preference_setup/loadout/loadout_accessories.dm b/code/modules/client/preference_setup/loadout/loadout_accessories.dm index 8df33da728..c99eb25d22 100644 --- a/code/modules/client/preference_setup/loadout/loadout_accessories.dm +++ b/code/modules/client/preference_setup/loadout/loadout_accessories.dm @@ -138,32 +138,32 @@ /datum/gear/accessory/brown_vest display_name = "webbing, brown" path = /obj/item/clothing/accessory/storage/brown_vest - allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor", "Search and Rescue") + allowed_roles = list("Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor", "Search and Rescue") /datum/gear/accessory/black_vest display_name = "webbing, black" path = /obj/item/clothing/accessory/storage/black_vest - allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor", "Search and Rescue") + allowed_roles = list("Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor", "Search and Rescue") /datum/gear/accessory/white_vest display_name = "webbing, white" path = /obj/item/clothing/accessory/storage/white_vest - allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor", "Search and Rescue") + allowed_roles = list("Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor", "Search and Rescue") /datum/gear/accessory/brown_drop_pouches display_name = "drop pouches, brown" path = /obj/item/clothing/accessory/storage/brown_drop_pouches - allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor", "Search and Rescue") + allowed_roles = list("Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor", "Search and Rescue") /datum/gear/accessory/black_drop_pouches display_name = "drop pouches, black" path = /obj/item/clothing/accessory/storage/black_drop_pouches - allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor", "Search and Rescue") + allowed_roles = list("Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor", "Search and Rescue") /datum/gear/accessory/white_drop_pouches display_name = "drop pouches, white" path = /obj/item/clothing/accessory/storage/white_drop_pouches - allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor", "Search and Rescue") + allowed_roles = list("Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor", "Search and Rescue") /datum/gear/accessory/fannypack display_name = "fannypack selection" @@ -190,19 +190,6 @@ display_name = "chaps, black" path = /obj/item/clothing/accessory/chaps/black -/datum/gear/accessory/hawaii - display_name = "hawaii shirt" - path = /obj/item/clothing/accessory/hawaii - -/datum/gear/accessory/hawaii/New() - ..() - var/list/shirts = list() - shirts["blue hawaii shirt"] = /obj/item/clothing/accessory/hawaii - shirts["red hawaii shirt"] = /obj/item/clothing/accessory/hawaii/red - shirts["random colored hawaii shirt"] = /obj/item/clothing/accessory/hawaii/random - gear_tweaks += new/datum/gear_tweak/path(shirts) - - /datum/gear/accessory/sweater display_name = "sweater selection" path = /obj/item/clothing/accessory/sweater @@ -217,6 +204,14 @@ sweaters[initial(sweater_type.name)] = sweater_type gear_tweaks += new/datum/gear_tweak/path(sortAssoc(sweaters)) +/datum/gear/accessory/virginkiller + display_name = "virgin killer sweater (colorable)" + path = /obj/item/clothing/accessory/sweater/virgin + +/datum/gear/accessory/virginkiller/New() + ..() + gear_tweaks += gear_tweak_free_color_choice + /datum/gear/accessory/bracelet/material display_name = "bracelet selection" description = "Choose from a number of bracelets." @@ -284,3 +279,31 @@ /datum/gear/accessory/asymovercoat display_name = "orange asymmetrical overcoat" path = /obj/item/clothing/accessory/asymovercoat + +/datum/gear/accessory/hawaiian_shirt + display_name = "hawaiian shirt selection" + path = /obj/item/clothing/accessory/hawaiian + +/datum/gear/accessory/hawaiian_shirt/New() + ..() + var/list/hawaiian_shirts = list( + "Cyan Hawaiian shirt" = /obj/item/clothing/accessory/hawaiian, + "Blue Hawaiian shirt" = /obj/item/clothing/accessory/hawaiian/blue, + "Pink Hawaiian shirt" = /obj/item/clothing/accessory/hawaiian/pink, + "Red Hawaiian shirt" = /obj/item/clothing/accessory/hawaiian/red, + "Yellow Hawaiian shirt" = /obj/item/clothing/accessory/hawaiian/yellow + ) + gear_tweaks += new/datum/gear_tweak/path(hawaiian_shirts) + +/datum/gear/accessory/cowboy_vest + display_name = "cowboy selection" + path = /obj/item/clothing/accessory/cowboy_vest + +/datum/gear/accessory/cowboy_vest/New() + ..() + var/list/cowboy_vests = list( + "Ranger Vest" = /obj/item/clothing/accessory/cowboy_vest, + "Brown Vest" = /obj/item/clothing/accessory/cowboy_vest/brown, + "Grey Vest" = /obj/item/clothing/accessory/cowboy_vest/grey + ) + gear_tweaks += new/datum/gear_tweak/path(cowboy_vests) \ No newline at end of file diff --git a/code/modules/client/preference_setup/loadout/loadout_accessories_vr.dm b/code/modules/client/preference_setup/loadout/loadout_accessories_vr.dm index 2a67109ca5..7013f969df 100644 --- a/code/modules/client/preference_setup/loadout/loadout_accessories_vr.dm +++ b/code/modules/client/preference_setup/loadout/loadout_accessories_vr.dm @@ -58,11 +58,11 @@ /datum/gear/accessory/brown_vest display_name = "webbing, brown (Eng, Sec, Med, Exploration, Miner)" - allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor","Chemist","Field Medic","Explorer","Pathfinder","Shaft Miner","Talon Captain","Talon Doctor","Talon Engineer","Talon Guard") + allowed_roles = list("Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor","Chemist","Field Medic","Explorer","Pathfinder","Shaft Miner","Talon Captain","Talon Doctor","Talon Engineer","Talon Guard", "Talon Miner") /datum/gear/accessory/black_vest display_name = "webbing, black (Eng, Sec, Med, Exploration, Miner)" - allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor","Chemist","Field Medic","Explorer","Pathfinder","Shaft Miner","Talon Captain","Talon Doctor","Talon Engineer","Talon Guard") + allowed_roles = list("Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor","Chemist","Field Medic","Explorer","Pathfinder","Shaft Miner","Talon Captain","Talon Doctor","Talon Engineer","Talon Guard", "Talon Miner") /datum/gear/accessory/white_vest display_name = "webbing, white (Medical)" @@ -70,11 +70,11 @@ /datum/gear/accessory/brown_drop_pouches display_name = "drop pouches, brown (Eng, Sec, Med, Exploration, Miner)" - allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor","Chemist","Field Medic","Explorer","Pathfinder","Shaft Miner","Talon Captain","Talon Doctor","Talon Engineer","Talon Guard") + allowed_roles = list("Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor","Chemist","Field Medic","Explorer","Pathfinder","Shaft Miner","Talon Captain","Talon Doctor","Talon Engineer","Talon Guard", "Talon Miner") /datum/gear/accessory/black_drop_pouches display_name = "drop pouches, black (Eng, Sec, Med, Exploration, Miner)" - allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor","Chemist","Field Medic","Explorer","Pathfinder","Shaft Miner","Talon Captain","Talon Doctor","Talon Engineer","Talon Guard") + allowed_roles = list("Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor","Chemist","Field Medic","Explorer","Pathfinder","Shaft Miner","Talon Captain","Talon Doctor","Talon Engineer","Talon Guard", "Talon Miner") /datum/gear/accessory/white_drop_pouches display_name = "drop pouches, white (Medical)" @@ -83,7 +83,7 @@ /datum/gear/accessory/bluespace display_name = "bluespace badge (Eng, Sec, Med, Exploration, Miner)" path = /obj/item/clothing/accessory/storage/bluespace - allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor","Chemist","Field Medic","Explorer","Pathfinder","Shaft Miner","Talon Captain","Talon Doctor","Talon Engineer","Talon Guard") + allowed_roles = list("Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor","Chemist","Field Medic","Explorer","Pathfinder","Shaft Miner","Talon Captain","Talon Doctor","Talon Engineer","Talon Guard", "Talon Miner") cost = 2 /datum/gear/accessory/webbing diff --git a/code/modules/client/preference_setup/loadout/loadout_cyberware.dm b/code/modules/client/preference_setup/loadout/loadout_cyberware.dm index 2540e86fc8..1fac24c862 100644 --- a/code/modules/client/preference_setup/loadout/loadout_cyberware.dm +++ b/code/modules/client/preference_setup/loadout/loadout_cyberware.dm @@ -12,19 +12,6 @@ path = /obj/item/weapon/implant/tracking/weak cost = 0 //VOREStation Edit. Changed cost to 0 -// Remove these after generic implant has been in for awhile and everyone has had a reasonable period to copy their old descs. -/datum/gear/utility/implant/dud1 - display_name = "implant, head" - description = "An implant with no obvious purpose (DEPRECATED, USE GENERIC IMPLANT)." - path = /obj/item/weapon/implant/dud - cost = 1 -/datum/gear/utility/implant/dud2 - display_name = "implant, torso" - description = "An implant with no obvious purpose (DEPRECATED, USE GENERIC IMPLANT)." - path = /obj/item/weapon/implant/dud/torso - cost = 1 -// End removal marker. - /datum/gear/utility/implant/generic display_name = "implant, generic, primary" description = "An implant with no obvious purpose." diff --git a/code/modules/client/preference_setup/loadout/loadout_eyes.dm b/code/modules/client/preference_setup/loadout/loadout_eyes.dm index c8c6355ea2..4a70c788c7 100644 --- a/code/modules/client/preference_setup/loadout/loadout_eyes.dm +++ b/code/modules/client/preference_setup/loadout/loadout_eyes.dm @@ -104,7 +104,7 @@ /datum/gear/eyes/meson display_name = "Optical Meson Scanners (Engineering, Science, Mining)" path = /obj/item/clothing/glasses/meson - allowed_roles = list("Station Engineer","Chief Engineer","Atmospheric Technician", "Scientist", "Research Director", "Shaft Miner") + allowed_roles = list("Engineer","Chief Engineer","Atmospheric Technician", "Scientist", "Research Director", "Shaft Miner") /datum/gear/eyes/meson/prescription display_name = "Optical Meson Scanners, prescription (Engineering, Science, Mining)" diff --git a/code/modules/client/preference_setup/loadout/loadout_eyes_vr.dm b/code/modules/client/preference_setup/loadout/loadout_eyes_vr.dm index 9504678e06..9aae4969ef 100644 --- a/code/modules/client/preference_setup/loadout/loadout_eyes_vr.dm +++ b/code/modules/client/preference_setup/loadout/loadout_eyes_vr.dm @@ -3,7 +3,7 @@ /datum/gear/eyes/meson display_name = "Optical Meson Scanners (Eng, Sci, Explo)" - allowed_roles = list("Station Engineer","Chief Engineer","Atmospheric Technician", "Scientist", "Research Director", "Explorer", "Pathfinder") + allowed_roles = list("Engineer","Chief Engineer","Atmospheric Technician", "Scientist", "Research Director", "Explorer", "Pathfinder") /datum/gear/eyes/arglasses display_name = "AR glasses" @@ -33,7 +33,7 @@ /datum/gear/eyes/arglasses/eng display_name = "AR-E glasses (Eng)" path = /obj/item/clothing/glasses/omnihud/eng - allowed_roles = list("Station Engineer","Chief Engineer","Atmospheric Technician") + allowed_roles = list("Engineer","Chief Engineer","Atmospheric Technician") /datum/gear/eyes/arglasses/med display_name = "AR-M glasses (Medical)" @@ -65,3 +65,7 @@ /datum/gear/eyes/medical/medpatch display_name = "Health HUDpatch" path = /obj/item/clothing/glasses/hud/health/eyepatch + +/datum/gear/eyes/bigshot + display_name = "Big Shot's Glasses" + path = /obj/item/clothing/glasses/sunglasses/bigshot diff --git a/code/modules/client/preference_setup/loadout/loadout_fluffitems_vr.dm b/code/modules/client/preference_setup/loadout/loadout_fluffitems_vr.dm index a6e57957ee..5953edb77b 100644 --- a/code/modules/client/preference_setup/loadout/loadout_fluffitems_vr.dm +++ b/code/modules/client/preference_setup/loadout/loadout_fluffitems_vr.dm @@ -16,7 +16,7 @@ display_name = "Airhorn - Example Item" description = "An example item that you probably shouldn't see!" ckeywhitelist = list("mewchild") - allowed_roles = list("Station Engineer") + allowed_roles = list("Engineer") */ @@ -296,6 +296,12 @@ ckeywhitelist = list("chaleur") character_name = list("Hisako Arato") +/datum/gear/fluff/jade_stamp + path = /obj/item/weapon/stamp/fluff/jade_horror + display_name = "Official Council of Mid Horror rubber stamp" + ckeywhitelist = list("coolcrow420") + character_name = list("Jade Davis") + // D CKEYS /datum/gear/fluff/dhaeleena_medal path = /obj/item/clothing/accessory/medal/silver/security/fluff/dhael @@ -394,6 +400,7 @@ // G CKEYS // H CKEYS + /datum/gear/fluff/lauren_medal path = /obj/item/clothing/accessory/medal/conduct display_name = "Lauren's Medal" @@ -412,6 +419,12 @@ ckeywhitelist = list("hottokeeki") character_name = list("Belle Day") +/datum/gear/fluff/amaryll_claws + path = /obj/item/weapon/surgical/scalpel/amaryll_claws + display_name = "Amaryll's Claws" + ckeywhitelist = list("hunterbirk") + character_name = list("Amaryll") + // I CKEYS /datum/gear/fluff/ruda_badge path = /obj/item/clothing/accessory/badge/holo/detective/ruda @@ -651,12 +664,6 @@ ckeywhitelist = list("luminescentring") character_name = list("Briana Moore") -/datum/gear/fluff/entchtut_medal - path = /obj/item/clothing/accessory/medal/conduct - display_name = "Entchtut's Conduct Medal" - ckeywhitelist = list("littlebigkid2000") - character_name = list("Entchtut Cenein") - // M CKEYS /datum/gear/fluff/phi_box path = /obj/item/weapon/storage/box/fluff/phi @@ -826,6 +833,24 @@ ckeywhitelist = list("pastelprincedan") character_name = list("Kiyoshi Maki", "Masumi Maki") +/datum/gear/fluff/entchtut_medal + path = /obj/item/clothing/accessory/medal/conduct + display_name = "Entchtut's Conduct Medal" + ckeywhitelist = list("positronicjune") + character_name = list("Entchtut Cenein") + +/datum/gear/fluff/mechanic_overalls + path = /obj/item/clothing/under/fluff/mechanic_overalls + display_name = "mechanic overalls" + ckeywhitelist = list("pastelprincedan", "hatterhat") + character_name = list("Masumi Maki", "Harold Robinson") + +/datum/gear/fluff/mechanic_coat + path = /obj/item/clothing/suit/storage/hooded/wintercoat/fluff/mechanic + display_name = "mechanic winter coat" + ckeywhitelist = list("pastelprincedan", "hatterhat") + character_name = list("Masumi Maki", "Harold Robinson") + // Q CKEYS // R CKEYS @@ -861,6 +886,12 @@ ckeywhitelist = list("residentcody") character_name = list("Pathfinder") +/datum/gear/fluff/revolver_claymore + path = /obj/item/weapon/sword/fluff/revolver + display_name = "Catnip" + ckeywhitelist = list("revolvereloise") + character_name = list("Revolver Eloise") + /datum/gear/fluff/nikki_dorky_outfit path = /obj/item/weapon/storage/box/fluff display_name = "Nikki's Witchy Outfit" @@ -897,14 +928,14 @@ display_name = "Kateryna's Voidsuit" ckeywhitelist = list("samanthafyre") character_name = list("Kateryna Petrovitch") - allowed_roles = list("Station Engineer", "Chief Engineer", "Atmospheric Technician") + allowed_roles = list("Engineer", "Chief Engineer", "Atmospheric Technician") /datum/gear/fluff/katerina_spacesuit path = /obj/item/clothing/head/helmet/space/fluff/kate display_name = "Kateryna's Helmet" ckeywhitelist = list("samanthafyre") character_name = list("Kateryna Petrovitch") - allowed_roles = list("Station Engineer", "Chief Engineer", "Atmospheric Technician") + allowed_roles = list("Engineer", "Chief Engineer", "Atmospheric Technician") /datum/gear/fluff/kateryna_armorvest path = /obj/item/clothing/suit/armor/vest/wolftaur/kate @@ -933,6 +964,20 @@ ckeywhitelist = list("scree") character_name = list("Scree") +/datum/gear/fluff/avida_dress + path = /obj/item/clothing/under/skirt/outfit/fluff/avida + display_name = "Avida's Dress" + slot = slot_w_uniform + ckeywhitelist = list("scree") + character_name = list("Avida") + +/datum/gear/fluff/avida_hat + path = /obj/item/clothing/head/fluff/avida + display_name = "Avida's Hat" + slot = slot_head + ckeywhitelist = list("scree") + character_name = list("Avida") + /datum/gear/fluff/alfonso_sunglasses path = /obj/item/clothing/glasses/sunglasses/fluff/alfonso display_name = "Alfonso's Sunglasses" @@ -1084,6 +1129,11 @@ character_name = list("Konor Foxe") // U CKEYS +/datum/gear/fluff/brad_jordans + path = /obj/item/clothing/shoes/fluff/airjordans + display_name = "Bradley's Air Jordans" + ckeywhitelist = list("unclefruitvevo") + character_name = list("Bradley Khatibi") // V CKEYS /datum/gear/fluff/verie_suit @@ -1307,3 +1357,9 @@ display_name = "Nehi's Radio" ckeywhitelist = list("zodiacshadow") character_name = list("Nehi Maximus") + +/datum/gear/fluff/lucky_amour + path = /obj/item/device/modkit_conversion/crusader_luck + display_name = "Lucky's amour" + ckeywhitelist = list ("thedavestdave") + character_name = list("Lucky") \ No newline at end of file diff --git a/code/modules/client/preference_setup/loadout/loadout_gloves.dm b/code/modules/client/preference_setup/loadout/loadout_gloves.dm index 2564b8d98e..fe56eea868 100644 --- a/code/modules/client/preference_setup/loadout/loadout_gloves.dm +++ b/code/modules/client/preference_setup/loadout/loadout_gloves.dm @@ -92,14 +92,17 @@ ringtype["engagement ring"] = /obj/item/clothing/gloves/ring/engagement ringtype["signet ring"] = /obj/item/clothing/gloves/ring/seal/signet ringtype["masonic ring"] = /obj/item/clothing/gloves/ring/seal/mason - ringtype["ring, steel"] = /obj/item/clothing/gloves/ring/material/steel - ringtype["ring, iron"] = /obj/item/clothing/gloves/ring/material/iron - ringtype["ring, silver"] = /obj/item/clothing/gloves/ring/material/silver - ringtype["ring, gold"] = /obj/item/clothing/gloves/ring/material/gold - ringtype["ring, platinum"] = /obj/item/clothing/gloves/ring/material/platinum ringtype["ring, glass"] = /obj/item/clothing/gloves/ring/material/glass ringtype["ring, wood"] = /obj/item/clothing/gloves/ring/material/wood ringtype["ring, plastic"] = /obj/item/clothing/gloves/ring/material/plastic + ringtype["ring, iron"] = /obj/item/clothing/gloves/ring/material/iron + ringtype["ring, bronze"] = /obj/item/clothing/gloves/ring/material/bronze + ringtype["ring, steel"] = /obj/item/clothing/gloves/ring/material/steel + ringtype["ring, copper"] = /obj/item/clothing/gloves/ring/material/copper + ringtype["ring, silver"] = /obj/item/clothing/gloves/ring/material/silver + ringtype["ring, gold"] = /obj/item/clothing/gloves/ring/material/gold + ringtype["ring, platinum"] = /obj/item/clothing/gloves/ring/material/platinum + gear_tweaks += new/datum/gear_tweak/path(ringtype) /datum/gear/gloves/circuitry diff --git a/code/modules/client/preference_setup/loadout/loadout_head.dm b/code/modules/client/preference_setup/loadout/loadout_head.dm index 0c06774d9b..65939198a0 100644 --- a/code/modules/client/preference_setup/loadout/loadout_head.dm +++ b/code/modules/client/preference_setup/loadout/loadout_head.dm @@ -127,7 +127,7 @@ gear_tweaks += gear_tweak_free_color_choice /datum/gear/head/cap/mbill - display_name = "cap, bill" + display_name = "cap, major bill's" path = /obj/item/clothing/head/soft/mbill /datum/gear/head/cap/sol @@ -135,24 +135,60 @@ path = /obj/item/clothing/head/soft/solgov /datum/gear/head/cowboy - display_name = "cowboy, rodeo" - path = /obj/item/clothing/head/cowboy_hat + display_name = "cowboy" + path = /obj/item/clothing/head/cowboy + +/datum/gear/head/cowboy/rattan + display_name = "cowboy, rattan" + path = /obj/item/clothing/head/cowboy/rattan + +/datum/gear/head/cowboy/dark + display_name = "cowboy, dark" + path = /obj/item/clothing/head/cowboy/dark + +/datum/gear/head/cowboy/ranger + display_name = "cowboy, ranger" + path = /obj/item/clothing/head/cowboy/ranger /datum/gear/head/cowboy/black display_name = "cowboy, black" - path = /obj/item/clothing/head/cowboy_hat/black + path = /obj/item/clothing/head/cowboy/black + +/datum/gear/head/cowboy/fancy + display_name = "cowboy, fancy" + path = /obj/item/clothing/head/cowboy/fancy + +/datum/gear/head/cowboy/rustler + display_name = "cowboy, rustler" + path = /obj/item/clothing/head/cowboy/rustler + +/datum/gear/head/cowboy/black + display_name = "cowboy, bandit" + path = /obj/item/clothing/head/cowboy/bandit /datum/gear/head/cowboy/wide display_name = "cowboy, wide" - path = /obj/item/clothing/head/cowboy_hat/wide - -/datum/gear/head/fedora - display_name = "fedora, brown" - path = /obj/item/clothing/head/fedora/brown + path = /obj/item/clothing/head/cowboy/wide /datum/gear/head/fedora/grey display_name = "fedora, grey" - path = /obj/item/clothing/head/fedora/grey + path = /obj/item/clothing/head/fedora + +/datum/gear/head/fedora/brown + display_name = "fedora, brown" + path = /obj/item/clothing/head/fedora/brown + +/datum/gear/head/fedora/white + display_name = "fedora, white" + path = /obj/item/clothing/head/fedora/white + +/datum/gear/head/fedora/beige + display_name = "fedora, beige" + path = /obj/item/clothing/head/fedora/beige + +/datum/gear/head/fedora/panama + display_name = "fedora, panama" + path = /obj/item/clothing/head/fedora/panama /datum/gear/head/hairflower display_name = "hair flower pin (colorable)" @@ -313,7 +349,7 @@ display_name = "welding, normal (engineering/robotics)" path = /obj/item/clothing/head/welding cost = 2 - allowed_roles = list("Chief Engineer","Station Engineer","Atmospheric Technician","Research Director","Roboticist") + allowed_roles = list("Chief Engineer","Engineer","Atmospheric Technician","Research Director","Roboticist") /datum/gear/head/welding/demon display_name = "welding, demon (engineering/robotics)" @@ -390,6 +426,14 @@ display_name = "black and gold headdress" path = /obj/item/clothing/head/blackngoldheaddress +/datum/gear/head/plaguedoctor + display_name = "plague doctor's hat" + path = /obj/item/clothing/head/plaguedoctorhat + /datum/gear/head/plaguedoctor2 display_name = "golden plague doctor's hat" - path = /obj/item/clothing/head/plaguedoctorhat/gold \ No newline at end of file + path = /obj/item/clothing/head/plaguedoctorhat/gold + +/datum/gear/head/wheat + display_name = "straw hat" + path = /obj/item/clothing/head/wheat \ No newline at end of file diff --git a/code/modules/client/preference_setup/loadout/loadout_mask.dm b/code/modules/client/preference_setup/loadout/loadout_mask.dm index 5de81409f3..a313f3023d 100644 --- a/code/modules/client/preference_setup/loadout/loadout_mask.dm +++ b/code/modules/client/preference_setup/loadout/loadout_mask.dm @@ -22,11 +22,37 @@ path = /obj/item/clothing/mask/surgical cost = 2 -/datum/gear/mask/veil - display_name = "black veil" - path = /obj/item/clothing/mask/veil +/datum/gear/mask/plaguedoctor + display_name = "plague doctor's mask" + path = /obj/item/clothing/mask/gas/plaguedoctor + cost = 3 ///Because it functions as a gas mask, and therefore has a mechanical advantage. /datum/gear/mask/plaguedoctor2 display_name = "golden plague doctor's mask" path = /obj/item/clothing/mask/gas/plaguedoctor/gold - cost = 3 ///Because it functions as a gas mask, and therefore has a mechanical advantage. \ No newline at end of file + cost = 3 ///Because it functions as a gas mask, and therefore has a mechanical advantage. + +/datum/gear/mask/mouthwheat + display_name = "mouth wheat" + path = /obj/item/clothing/mask/mouthwheat + +/datum/gear/mask/papermask + display_name = "paper mask" + path = /obj/item/clothing/mask/paper + +/datum/gear/mask/emotionalmask + display_name = "emotional mask" + path = /obj/item/clothing/mask/emotions + +/datum/gear/mask/gaiter + display_name = "neck gaiter selection" + path = /obj/item/clothing/accessory/gaiter + cost = 1 + +/datum/gear/mask/gaiter/New() + ..() + var/list/gaiters = list() + for(var/gaiter in typesof(/obj/item/clothing/accessory/gaiter)) + var/obj/item/clothing/accessory/gaiter_type = gaiter + gaiters[initial(gaiter_type.name)] = gaiter_type + gear_tweaks += new/datum/gear_tweak/path(sortTim(gaiters, /proc/cmp_text_asc)) \ No newline at end of file diff --git a/code/modules/client/preference_setup/loadout/loadout_shoes.dm b/code/modules/client/preference_setup/loadout/loadout_shoes.dm index b6795dfebe..c01d4c6f99 100644 --- a/code/modules/client/preference_setup/loadout/loadout_shoes.dm +++ b/code/modules/client/preference_setup/loadout/loadout_shoes.dm @@ -5,6 +5,14 @@ slot = slot_shoes sort_category = "Shoes and Footwear" +/datum/gear/shoes/tourist_1 + display_name = "tourist, black" + path = /obj/item/clothing/shoes/tourist_1 + +/datum/gear/shoes/tourist_2 + display_name = "tourist, green" + path = /obj/item/clothing/shoes/tourist_2 + /datum/gear/shoes/jackboots display_name = "jackboots" path = /obj/item/clothing/shoes/boots/jackboots @@ -126,13 +134,37 @@ path = /obj/item/clothing/shoes/boots/cowboy /datum/gear/shoes/cowboy/classic - display_name = "classic cowboy boots" + display_name = "cowboy boots, classic" path = /obj/item/clothing/shoes/boots/cowboy/classic +/datum/gear/shoes/cowboy/brown + display_name = "cowboy boots, brown" + path = /obj/item/clothing/shoes/boots/cowboy/brown + +/datum/gear/shoes/cowboy/black + display_name = "cowboy boots, black" + path = /obj/item/clothing/shoes/boots/cowboy/black + +/datum/gear/shoes/cowboy/white + display_name = "cowboy boots, white" + path = /obj/item/clothing/shoes/boots/cowboy/white + +/datum/gear/shoes/cowboy/fancy + display_name = "cowboy boots, fancy" + path = /obj/item/clothing/shoes/boots/cowboy/fancy + /datum/gear/shoes/cowboy/snakeskin - display_name = "snakeskin cowboy boots" + display_name = "cowboy boots, snake skin" path = /obj/item/clothing/shoes/boots/cowboy/snakeskin +/datum/gear/shoes/cowboy/lizard + display_name = "cowboy boots, lizard skin" + path = /obj/item/clothing/shoes/boots/cowboy/lizard + +/datum/gear/shoes/cowboy/lizard/masterwork + display_name = "cowboy boots, lizard skin (masterwork)" + path = /obj/item/clothing/shoes/boots/cowboy/lizard/masterwork + /datum/gear/shoes/jungle display_name = "jungle boots" path = /obj/item/clothing/shoes/boots/jungle diff --git a/code/modules/client/preference_setup/loadout/loadout_suit.dm b/code/modules/client/preference_setup/loadout/loadout_suit.dm index fa54c32008..8c9efbd119 100644 --- a/code/modules/client/preference_setup/loadout/loadout_suit.dm +++ b/code/modules/client/preference_setup/loadout/loadout_suit.dm @@ -35,9 +35,13 @@ path = /obj/item/clothing/suit/storage/toggle/bomber /datum/gear/suit/bomber_alt - display_name = "bomber jacket 2" + display_name = "bomber jacket, alt" path = /obj/item/clothing/suit/storage/bomber/alt +/datum/gear/suit/bomber_retro + display_name = "bomber jacket, retro" + path = /obj/item/clothing/suit/storage/toggle/bomber/retro + /datum/gear/suit/leather_jacket display_name = "leather jacket, black" path = /obj/item/clothing/suit/storage/toggle/leather_jacket @@ -99,7 +103,7 @@ path = /obj/item/clothing/suit/storage/trench/grey /datum/gear/suit/duster - display_name = "cowboy duster" + display_name = "cowboy duster, colorable" path = /obj/item/clothing/suit/storage/duster /datum/gear/suit/duster/New() @@ -418,7 +422,7 @@ /datum/gear/suit/wintercoat/engineering display_name = "winter coat, engineering" path = /obj/item/clothing/suit/storage/hooded/wintercoat/engineering - allowed_roles = list("Chief Engineer","Atmospheric Technician", "Station Engineer") + allowed_roles = list("Chief Engineer","Atmospheric Technician", "Engineer") /datum/gear/suit/wintercoat/engineering/atmos display_name = "winter coat, atmospherics" @@ -531,14 +535,6 @@ display_name = "denim vest, corporate" path = /obj/item/clothing/suit/storage/toggle/denim_jacket/nanotrasen/sleeveless -/datum/gear/suit/miscellaneous/kimono - display_name = "kimono" - path = /obj/item/clothing/suit/kimono - -/datum/gear/suit/miscellaneous/kimono/New() - ..() - gear_tweaks += gear_tweak_free_color_choice - /datum/gear/suit/miscellaneous/dep_jacket display_name = "department jacket selection" path = /obj/item/clothing/suit/storage/toggle/sec_dep_jacket @@ -567,17 +563,13 @@ gear_tweaks += new/datum/gear_tweak/path(jacket) /datum/gear/suit/miscellaneous/peacoat - display_name = "peacoat" + display_name = "peacoat, colorable" path = /obj/item/clothing/suit/storage/toggle/peacoat /datum/gear/suit/miscellaneous/peacoat/New() ..() gear_tweaks += gear_tweak_free_color_choice -/datum/gear/suit/miscellaneous/kamishimo - display_name = "kamishimo" - path = /obj/item/clothing/suit/kamishimo - /datum/gear/suit/snowsuit display_name = "snowsuit" path = /obj/item/clothing/suit/storage/snowsuit @@ -605,7 +597,7 @@ /datum/gear/suit/snowsuit/engineering display_name = "snowsuit, engineering" path = /obj/item/clothing/suit/storage/snowsuit/engineering - allowed_roles = list("Chief Engineer","Atmospheric Technician", "Station Engineer") + allowed_roles = list("Chief Engineer","Atmospheric Technician", "Engineer") /datum/gear/suit/snowsuit/cargo display_name = "snowsuit, supply" @@ -613,7 +605,7 @@ allowed_roles = list("Quartermaster","Shaft Miner","Cargo Technician","Head of Personnel") /datum/gear/suit/miscellaneous/cardigan - display_name = "cardigan" + display_name = "cardigan, colorable" path = /obj/item/clothing/suit/storage/toggle/cardigan /datum/gear/suit/miscellaneous/cardigan/New() @@ -623,4 +615,39 @@ /datum/gear/suit/cmddressjacket display_name = "command dress jacket" path = /obj/item/clothing/suit/storage/cmddressjacket - allowed_roles = list("Facility Director", "Head of Personnel", "Command Secretary") + allowed_roles = list("Site Manager", "Head of Personnel", "Command Secretary") + +/datum/gear/suit/miscellaneous/kimono + display_name = "traditional kimono, colorable" + path = /obj/item/clothing/suit/kimono + +/datum/gear/suit/miscellaneous/kimono/New() + ..() + gear_tweaks += gear_tweak_free_color_choice + +/datum/gear/suit/miscellaneous/kamishimo + display_name = "traditional kamishimo, colorable" + path = /obj/item/clothing/suit/kamishimo + +/datum/gear/suit/miscellaneous/kamishimo/New() + ..() + gear_tweaks += gear_tweak_free_color_choice + +/datum/gear/suit/miscellaneous/kimono + display_name = "kimono selection" + path = /obj/item/clothing/suit/kimono/red + +/datum/gear/suit/miscellaneous/kimono/New() + ..() + var/list/kimonos = list( + "Red kimono" = /obj/item/clothing/suit/kimono/red, + "Orange kimono" = /obj/item/clothing/suit/kimono/orange, + "Yellow kimono" = /obj/item/clothing/suit/kimono/yellow, + "Green kimono" = /obj/item/clothing/suit/kimono/green, + "Blue kimono" = /obj/item/clothing/suit/kimono/blue, + "Purple kimono" = /obj/item/clothing/suit/kimono/purple, + "Violet kimono" = /obj/item/clothing/suit/kimono/violet, + "Pink kimono" = /obj/item/clothing/suit/kimono/pink, + "Earth kimono" = /obj/item/clothing/suit/kimono/earth + ) + gear_tweaks += new/datum/gear_tweak/path(kimonos) \ No newline at end of file diff --git a/code/modules/client/preference_setup/loadout/loadout_suit_vr.dm b/code/modules/client/preference_setup/loadout/loadout_suit_vr.dm index 0383f58f0a..b11905385a 100644 --- a/code/modules/client/preference_setup/loadout/loadout_suit_vr.dm +++ b/code/modules/client/preference_setup/loadout/loadout_suit_vr.dm @@ -9,6 +9,30 @@ ..() gear_tweaks += gear_tweak_free_color_choice +/datum/gear/suit/labcoat_old + display_name = "labcoat, old-school" + path = /obj/item/clothing/suit/storage/toggle/labcoat/old + +/datum/gear/suit/labcoat_cmo_old + display_name = "labcoat, CMO, oldschool" + path = /obj/item/clothing/suit/storage/toggle/labcoat/old/cmo + allowed_roles = list("Chief Medical Officer") + +/datum/gear/suit/roles/labcoat_old + display_name = "labcoat selection, department, oldschool" + path = /obj/item/clothing/suit/storage/toggle/labcoat/old/tox + cost = 2 + + +/datum/gear/suit/roles/labcoat_old/New() + ..() + var/list/labcoats = list( + "Oldschool Scientist's Labcoat" = /obj/item/clothing/suit/storage/toggle/labcoat/old/tox, + "Oldschool Virologist's Labcoat" = /obj/item/clothing/suit/storage/toggle/labcoat/old/vir, + "Oldschool Chemist's Labcoat" = /obj/item/clothing/suit/storage/toggle/labcoat/old/chem + ) + gear_tweaks += new/datum/gear_tweak/path(labcoats) + /datum/gear/suit/jacket_modular display_name = "jacket, modular" path = /obj/item/clothing/suit/storage/fluff/jacket @@ -83,4 +107,15 @@ Talon winter coat */ /datum/gear/suit/wintercoat/talon display_name = "winter coat, Talon" - path = /obj/item/clothing/suit/storage/hooded/wintercoat/talon \ No newline at end of file + path = /obj/item/clothing/suit/storage/hooded/wintercoat/talon + + +/datum/gear/suit/armor/combat/crusader_explo + display_name = "knight, explo" + path = /obj/item/clothing/suit/armor/combat/crusader_explo + allowed_roles = list("Explorer","Field Medic","Pathfinder") + +/datum/gear/suit/armor/combat/crusader_explo/FM + display_name = "knight, Field Medic" + path = /obj/item/clothing/suit/armor/combat/crusader_explo/FM + allowed_roles = list ("Field Medic") diff --git a/code/modules/client/preference_setup/loadout/loadout_uniform.dm b/code/modules/client/preference_setup/loadout/loadout_uniform.dm index 9116e0f7e1..874501d108 100644 --- a/code/modules/client/preference_setup/loadout/loadout_uniform.dm +++ b/code/modules/client/preference_setup/loadout/loadout_uniform.dm @@ -54,6 +54,22 @@ jumpclothes[initial(jumps.name)] = jumps gear_tweaks += new/datum/gear_tweak/path(sortAssoc(jumpclothes)) +/datum/gear/uniform/qipao_colorable + display_name = "qipao, colorable" + path = /obj/item/clothing/under/qipao_colorable + +/datum/gear/uniform/qipao_colorable/New() + ..() + gear_tweaks += gear_tweak_free_color_choice + +/datum/gear/uniform/qipao2_colorable + display_name = "qipao, colorable, slim" + path = /obj/item/clothing/under/qipao2_colorable + +/datum/gear/uniform/qipao2_colorable/New() + ..() + gear_tweaks += gear_tweak_free_color_choice + /datum/gear/uniform/skirt display_name = "skirt selection" path = /obj/item/clothing/under/skirt @@ -103,7 +119,7 @@ /datum/gear/uniform/job_skirt/eng display_name = "skirt, engineer" path = /obj/item/clothing/under/rank/engineer/skirt - allowed_roles = list("Chief Engineer","Station Engineer") + allowed_roles = list("Chief Engineer","Engineer") /datum/gear/uniform/job_skirt/roboticist display_name = "skirt, roboticist" @@ -173,7 +189,7 @@ /datum/gear/uniform/job_turtle/engineering display_name = "turtleneck, engineering" path = /obj/item/clothing/under/rank/engineer/turtleneck - allowed_roles = list("Chief Engineer", "Atmospheric Technician", "Station Engineer") + allowed_roles = list("Chief Engineer", "Atmospheric Technician", "Engineer") /datum/gear/uniform/job_turtle/medical display_name = "turtleneck, medical" @@ -409,39 +425,10 @@ display_name = "sweater, grey" path = /obj/item/clothing/under/rank/psych/turtleneck/sweater -/datum/gear/uniform/brandsuit/aether - display_name = "jumpsuit, aether" - path = /obj/item/clothing/under/aether - -/datum/gear/uniform/brandsuit/focal - display_name = "jumpsuit, focal" - path = /obj/item/clothing/under/focal - -/datum/gear/uniform/mbill - display_name = "outfit, major bill's" - path = /obj/item/clothing/under/mbill - -/datum/gear/uniform/pcrc - display_name = "uniform, PCRC (Security)" - path = /obj/item/clothing/under/pcrc - allowed_roles = list("Security Officer","Head of Security","Warden") - -/datum/gear/uniform/brandsuit/grayson - display_name = "outfit, grayson" - path = /obj/item/clothing/under/grayson - -/datum/gear/uniform/brandsuit/wardt - display_name = "jumpsuit, ward-takahashi" - path = /obj/item/clothing/under/wardt - /datum/gear/uniform/frontier display_name = "outfit, frontier" path = /obj/item/clothing/under/frontier -/datum/gear/uniform/brandsuit/hephaestus - display_name = "jumpsuit, hephaestus" - path = /obj/item/clothing/under/hephaestus - /datum/gear/uniform/yogapants display_name = "yoga pants" path = /obj/item/clothing/under/pants/yogapants @@ -652,7 +639,7 @@ /datum/gear/uniform/verglasdress display_name = "verglas dress" - path = /obj/item/clothing/under/verglasdress + path = /obj/item/clothing/under/dress/verglasdress /datum/gear/uniform/fashionminiskirt display_name = "fashionable miniskirt" @@ -663,21 +650,123 @@ gear_tweaks += gear_tweak_free_color_choice /datum/gear/uniform/paramedunidark - display_name = "paramedic uniform - dark" + display_name = "paramedic uniform, dark" path = /obj/item/clothing/under/rank/paramedunidark allowed_roles = list("Medical Doctor","Chief Medical Officer","Paramedic") /datum/gear/uniform/parameduniskirtdark - display_name = "paramedic skirt - dark" + display_name = "paramedic skirt, dark" path = /obj/item/clothing/under/rank/parameduniskirtdark allowed_roles = list("Medical Doctor","Chief Medical Officer","Paramedic") /datum/gear/uniform/paramedunilight - display_name = "paramedic uniform - light" + display_name = "paramedic uniform, light" path = /obj/item/clothing/under/rank/paramedunilight allowed_roles = list("Medical Doctor","Chief Medical Officer","Paramedic") /datum/gear/uniform/parameduniskirtlight - display_name = "paramedic skirt - light" + display_name = "paramedic skirt, light" path = /obj/item/clothing/under/rank/parameduniskirtlight - allowed_roles = list("Medical Doctor","Chief Medical Officer","Paramedic") \ No newline at end of file + allowed_roles = list("Medical Doctor","Chief Medical Officer","Paramedic") + +/datum/gear/uniform/tourist_1 + display_name = "tourist outfit, white" + path = /obj/item/clothing/under/tourist_1 + +/datum/gear/uniform/tourist_2 + display_name = "tourist outfit, blue" + path = /obj/item/clothing/under/tourist_2 + +/datum/gear/uniform/cowboy_outfits + display_name = "cowboy outfit selection" + path = /obj/item/clothing/under/cowboy + +/datum/gear/uniform/cowboy_outfits/New() + ..() + var/list/cowboy_outfits = list( + "Patterned Cowboy Outfit" = /obj/item/clothing/under/cowboy, + "Tan Cowboy Outfit" = /obj/item/clothing/under/cowboy/tan, + "Brown Cowboy Outfit" = /obj/item/clothing/under/cowboy/brown, + "Grey Cowboy Outfit" = /obj/item/clothing/under/cowboy/grey + ) + gear_tweaks += new/datum/gear_tweak/path(cowboy_outfits) + +/datum/gear/uniform/utility/gsa + display_name = "utility, galactic survey" + path = /obj/item/clothing/under/gsa + +/datum/gear/uniform/utility/gsa_work + display_name = "heavy utility, galactic survey" + path = /obj/item/clothing/under/gsa_work + +/* + * Branded Uniforms + */ + +/datum/gear/uniform/brandsuit/mbill + display_name = "uniform, major bill's" + path = /obj/item/clothing/under/mbill + +/datum/gear/uniform/brandsuit/mbill_flight + display_name = "uniform, major bill's flightsuit (Pilot)" + path = /obj/item/clothing/under/mbill_flight + allowed_roles = list("Pilot") + +/datum/gear/uniform/brandsuit/aether + display_name = "jumpsuit, aether" + path = /obj/item/clothing/under/corp/aether + +/datum/gear/uniform/brandsuit/focal + display_name = "jumpsuit, focal" + path = /obj/item/clothing/under/corp/focal + +/datum/gear/uniform/brandsuit/pcrc + display_name = "uniform, PCRC (Security)" + path = /obj/item/clothing/under/corp/pcrc + allowed_roles = list("Security Officer","Head of Security","Warden") + +/datum/gear/uniform/brandsuit/grayson + display_name = "outfit, grayson" + path = /obj/item/clothing/under/corp/grayson + +/datum/gear/uniform/brandsuit/grayson_jump + display_name = "jumpsuit, grayson" + path = /obj/item/clothing/under/corp/grayson_jump + +/datum/gear/uniform/brandsuit/wardt + display_name = "jumpsuit, ward-takahashi" + path = /obj/item/clothing/under/corp/wardt + +/datum/gear/uniform/brandsuit/hephaestus + display_name = "jumpsuit, hephaestus" + path = /obj/item/clothing/under/corp/hephaestus + +/datum/gear/uniform/brandsuit/centauri + display_name = "jumpsuit, centauri provisions" + path = /obj/item/clothing/under/corp/centauri + +/datum/gear/uniform/brandsuit/morpheus + display_name = "jumpsuit, morpheus" + path = /obj/item/clothing/under/corp/morpheus + +/datum/gear/uniform/brandsuit/wulf + display_name = "jumpsuit, wulf" + path = /obj/item/clothing/under/corp/wulf + +/datum/gear/uniform/brandsuit/zenghu + display_name = "jumpsuit, zeng-hu" + path = /obj/item/clothing/under/corp/zenghu + +/datum/gear/uniform/brandsuit/xion + display_name = "jumpsuit, xion" + path = /obj/item/clothing/under/corp/xion + +/datum/gear/uniform/brandsuit/vedmed + display_name = "jumpsuit, vey-med (Medical)" + path = /obj/item/clothing/under/corp/veymed + allowed_roles = list("Chief Medical Officer","Medical Doctor","Chemist","Psychiatrist","Paramedic") + +/datum/gear/uniform/brandsuit/kaleidoscope + display_name = "outfit, kaleidoscope (Science)" + path = /obj/item/clothing/under/corp/kaleidoscope + allowed_roles = list("Research Director","Scientist","Xenobiologist") \ No newline at end of file diff --git a/code/modules/client/preference_setup/loadout/loadout_uniform_vr.dm b/code/modules/client/preference_setup/loadout/loadout_uniform_vr.dm index 18e9f2b83a..26caf70b2b 100644 --- a/code/modules/client/preference_setup/loadout/loadout_uniform_vr.dm +++ b/code/modules/client/preference_setup/loadout/loadout_uniform_vr.dm @@ -37,7 +37,7 @@ /datum/gear/uniform/job_khi/eng display_name = "khi uniform, eng" path = /obj/item/clothing/under/rank/khi/eng - allowed_roles = list("Chief Engineer","Atmospheric Technician","Station Engineer") + allowed_roles = list("Chief Engineer","Atmospheric Technician","Engineer") /datum/gear/uniform/job_khi/sci display_name = "khi uniform, sci" @@ -67,7 +67,7 @@ /datum/gear/suit/job_fed/eng display_name = "fed uniform, eng" path = /obj/item/clothing/suit/storage/fluff/fedcoat/fedeng - allowed_roles = list("Chief Engineer","Atmospheric Technician","Station Engineer") + allowed_roles = list("Chief Engineer","Atmospheric Technician","Engineer") // Trekie things //TOS @@ -84,7 +84,7 @@ /datum/gear/uniform/job_trek/eng/tos display_name = "TOS uniform, eng/sec" path = /obj/item/clothing/under/rank/trek/engsec - allowed_roles = list("Chief Engineer","Atmospheric Technician","Station Engineer","Warden","Detective","Security Officer","Head of Security") + allowed_roles = list("Chief Engineer","Atmospheric Technician","Engineer","Warden","Detective","Security Officer","Head of Security") //TNG /datum/gear/uniform/job_trek/cmd/tng @@ -100,7 +100,7 @@ /datum/gear/uniform/job_trek/eng/tng display_name = "TNG uniform, eng/sec" path = /obj/item/clothing/under/rank/trek/engsec/next - allowed_roles = list("Chief Engineer","Atmospheric Technician","Station Engineer","Warden","Detective","Security Officer","Head of Security") + allowed_roles = list("Chief Engineer","Atmospheric Technician","Engineer","Warden","Detective","Security Officer","Head of Security") //VOY /datum/gear/uniform/job_trek/cmd/voy @@ -116,7 +116,7 @@ /datum/gear/uniform/job_trek/eng/voy display_name = "VOY uniform, eng/sec" path = /obj/item/clothing/under/rank/trek/engsec/voy - allowed_roles = list("Chief Engineer","Atmospheric Technician","Station Engineer","Warden","Detective","Security Officer","Head of Security") + allowed_roles = list("Chief Engineer","Atmospheric Technician","Engineer","Warden","Detective","Security Officer","Head of Security") //DS9 @@ -126,7 +126,7 @@ allowed_roles = list("Head of Security","Site Manager","Head of Personnel","Chief Engineer","Research Director", "Chief Medical Officer","Medical Doctor","Chemist","Paramedic","Geneticist", "Scientist","Roboticist","Xenobiologist","Xenobotanist","Atmospheric Technician", - "Station Engineer","Warden","Detective","Security Officer", "Pathfinder", "Explorer", "Field Medic") + "Engineer","Warden","Detective","Security Officer", "Pathfinder", "Explorer", "Field Medic") /datum/gear/uniform/job_trek/cmd/ds9 @@ -142,7 +142,7 @@ /datum/gear/uniform/job_trek/eng/ds9 display_name = "DS9 uniform, eng/sec" path = /obj/item/clothing/under/rank/trek/engsec/ds9 - allowed_roles = list("Chief Engineer","Atmospheric Technician","Station Engineer","Warden","Detective","Security Officer","Head of Security") + allowed_roles = list("Chief Engineer","Atmospheric Technician","Engineer","Warden","Detective","Security Officer","Head of Security") //ENT @@ -159,7 +159,7 @@ /datum/gear/uniform/job_trek/eng/ent display_name = "ENT uniform, eng/sec" path = /obj/item/clothing/under/rank/trek/engsec/ent - allowed_roles = list("Chief Engineer","Atmospheric Technician","Station Engineer","Warden","Detective","Security Officer","Head of Security") + allowed_roles = list("Chief Engineer","Atmospheric Technician","Engineer","Warden","Detective","Security Officer","Head of Security") /* Swimsuits */ @@ -196,17 +196,17 @@ Swimsuits /* Qipao */ -/datum/gear/uniform/qipao +/datum/gear/uniform/qipao_black display_name = "qipao, black" - path = /obj/item/clothing/under/dress/qipao + path = /obj/item/clothing/under/qipao /datum/gear/uniform/qipao_red display_name = "qipao, red" - path = /obj/item/clothing/under/dress/qipao/red + path = /obj/item/clothing/under/qipao/red /datum/gear/uniform/qipao_white display_name = "qipao, white" - path = /obj/item/clothing/under/dress/qipao/white + path = /obj/item/clothing/under/qipao/white /* Bluespace jumpsuit diff --git a/code/modules/client/preference_setup/loadout/loadout_utility.dm b/code/modules/client/preference_setup/loadout/loadout_utility.dm index fb396762f5..4a945f442c 100644 --- a/code/modules/client/preference_setup/loadout/loadout_utility.dm +++ b/code/modules/client/preference_setup/loadout/loadout_utility.dm @@ -89,37 +89,37 @@ display_name = "flashlight" path = /obj/item/device/flashlight -/datum/gear/utility/flashlight_blue - display_name = "flashlight, blue" - path = /obj/item/device/flashlight/color - -/datum/gear/utility/flashlight_orange - display_name = "flashlight, orange" - path = /obj/item/device/flashlight/color/orange - -/datum/gear/utility/flashlight_red - display_name = "flashlight, red" - path = /obj/item/device/flashlight/color/red - -/datum/gear/utility/flashlight_yellow - display_name = "flashlight, yellow" - path = /obj/item/device/flashlight/color/yellow - /datum/gear/utility/maglight display_name = "flashlight, maglight" path = /obj/item/device/flashlight/maglight cost = 2 +/datum/gear/utility/flashlight/color + display_name = "flashlight, small (selection)" + path = /obj/item/device/flashlight/color + +/datum/gear/utility/flashlight/color/New() + ..() + var/list/flashlights = list( + "Blue Flashlight" = /obj/item/device/flashlight/color, + "Red Flashlight" = /obj/item/device/flashlight/color/red, + "Green Flashlight" = /obj/item/device/flashlight/color/green, + "Yellow Flashlight" = /obj/item/device/flashlight/color/yellow, + "Purple Flashlight" = /obj/item/device/flashlight/color/purple, + "Orange Flashlight" = /obj/item/device/flashlight/color/orange + ) + gear_tweaks += new/datum/gear_tweak/path(flashlights) + /datum/gear/utility/battery display_name = "cell, device" path = /obj/item/weapon/cell/device /datum/gear/utility/pen - display_name = "Fountain Pen" + display_name = "fountain pen" path = /obj/item/weapon/pen/fountain /datum/gear/utility/umbrella - display_name = "Umbrella" + display_name = "umbrella" path = /obj/item/weapon/melee/umbrella cost = 3 @@ -131,7 +131,7 @@ display_name = "wheelchair selection" path = /obj/item/wheelchair cost = 4 - + /datum/gear/utility/wheelchair/New() ..() gear_tweaks += gear_tweak_free_color_choice diff --git a/code/modules/client/preference_setup/loadout/loadout_utility_vr.dm b/code/modules/client/preference_setup/loadout/loadout_utility_vr.dm index 909ae31b87..61e204546f 100644 --- a/code/modules/client/preference_setup/loadout/loadout_utility_vr.dm +++ b/code/modules/client/preference_setup/loadout/loadout_utility_vr.dm @@ -49,7 +49,7 @@ /datum/gear/utility/dufflebag/eng display_name = "engineering dufflebag" path = /obj/item/weapon/storage/backpack/dufflebag/eng - allowed_roles = list("Chief Engineer","Atmospheric Technician","Station Engineer") + allowed_roles = list("Chief Engineer","Atmospheric Technician","Engineer") /datum/gear/utility/dufflebag/sci display_name = "science dufflebag" @@ -69,3 +69,15 @@ display_name = "contractor identification card" path = /obj/item/weapon/card/id/event/polymorphic/altcard cost = 1 + +/datum/gear/utility/bs_bracelet + display_name = "bluespace bracelet" + path = /obj/item/clothing/gloves/bluespace + cost = 5 + + +/datum/gear/utility/satchel_strapless + display_name = "satchel strapless" + path = /obj/item/weapon/storage/backpack/satchel/strapless + slot = slot_back + cost = 1 \ No newline at end of file diff --git a/code/modules/client/preference_setup/loadout/loadout_xeno.dm b/code/modules/client/preference_setup/loadout/loadout_xeno.dm index c4dd57d681..59d2ab0002 100644 --- a/code/modules/client/preference_setup/loadout/loadout_xeno.dm +++ b/code/modules/client/preference_setup/loadout/loadout_xeno.dm @@ -224,7 +224,7 @@ /datum/gear/uniform/dept/undercoat/engineer display_name = "engineering undercoat (Teshari)" path = /obj/item/clothing/under/teshari/undercoat/jobs/engineer - allowed_roles = list("Chief Engineer","Station Engineer") + allowed_roles = list("Chief Engineer","Engineer") /datum/gear/uniform/dept/undercoat/atmos display_name = "atmospherics undercoat (Teshari)" @@ -397,7 +397,7 @@ /datum/gear/suit/dept/cloak/engineer display_name = "engineering cloak (Teshari)" path = /obj/item/clothing/suit/storage/teshari/cloak/jobs/engineer - allowed_roles = list("Chief Engineer","Station Engineer") + allowed_roles = list("Chief Engineer","Engineer") /datum/gear/suit/dept/cloak/engineer/New() ..() diff --git a/code/modules/client/preference_setup/occupation/occupation.dm b/code/modules/client/preference_setup/occupation/occupation.dm index 116bd1a9ad..9ce7f08026 100644 --- a/code/modules/client/preference_setup/occupation/occupation.dm +++ b/code/modules/client/preference_setup/occupation/occupation.dm @@ -148,8 +148,11 @@ . += "[rank] \[WHITELIST ONLY]" continue //VOREStation Add End - if(job.minimum_character_age && user.client && (user.client.prefs.age < job.minimum_character_age)) - . += "[rank] \[MINIMUM CHARACTER AGE: [job.minimum_character_age]]" + if(job.is_species_banned(user.client.prefs.species, user.client.prefs.organ_data["brain"]) == TRUE) + . += "[rank] \[THIS RACE/BRAIN TYPE CANNOT TAKE THIS ROLE.\]" + continue + if((job.minimum_character_age || job.min_age_by_species) && user.client && (user.client.prefs.age < job.get_min_age(user.client.prefs.species, user.client.prefs.organ_data["brain"]))) + . += "[rank] \[MINIMUM CHARACTER AGE FOR SELECTED RACE/BRAIN TYPE: [job.get_min_age(user.client.prefs.species, user.client.prefs.organ_data["brain"])]\]" continue if((pref.job_civilian_low & ASSISTANT) && job.type != /datum/job/assistant) . += "[rank]" diff --git a/code/modules/client/preference_setup/vore/07_traits.dm b/code/modules/client/preference_setup/vore/07_traits.dm index d953221b20..c342fb9b3e 100644 --- a/code/modules/client/preference_setup/vore/07_traits.dm +++ b/code/modules/client/preference_setup/vore/07_traits.dm @@ -75,6 +75,13 @@ pref.starting_trait_points = STARTING_SPECIES_POINTS pref.max_traits = MAX_SPECIES_TRAITS + if(pref.organ_data[O_BRAIN]) //Checking if we have a synth on our hands, boys. + pref.dirty_synth = 1 + pref.gross_meatbag = 0 + else + pref.gross_meatbag = 1 + pref.dirty_synth = 0 + if(pref.species != SPECIES_CUSTOM) pref.pos_traits.Cut() pref.neg_traits.Cut() @@ -105,19 +112,24 @@ var/take_flags = initial(path.can_take) if((pref.dirty_synth && !(take_flags & SYNTHETICS)) || (pref.gross_meatbag && !(take_flags & ORGANICS))) pref.neg_traits -= path - + var/datum/species/selected_species = GLOB.all_species[pref.species] if(selected_species.selects_bodytype) // Allowed! else if(!pref.custom_base || !(pref.custom_base in GLOB.custom_species_bases)) pref.custom_base = SPECIES_HUMAN + pref.custom_say = lowertext(trim(pref.custom_say)) + pref.custom_whisper = lowertext(trim(pref.custom_whisper)) + pref.custom_ask = lowertext(trim(pref.custom_ask)) + pref.custom_exclaim = lowertext(trim(pref.custom_exclaim)) + /datum/category_item/player_setup_item/vore/traits/copy_to_mob(var/mob/living/carbon/human/character) character.custom_species = pref.custom_species - character.custom_say = pref.custom_say - character.custom_ask = pref.custom_ask - character.custom_whisper = pref.custom_whisper - character.custom_exclaim = pref.custom_exclaim + character.custom_say = lowertext(trim(pref.custom_say)) + character.custom_ask = lowertext(trim(pref.custom_ask)) + character.custom_whisper = lowertext(trim(pref.custom_whisper)) + character.custom_exclaim = lowertext(trim(pref.custom_exclaim)) if(character.isSynthetic()) //Checking if we have a synth on our hands, boys. pref.dirty_synth = 1 diff --git a/code/modules/client/preference_setup/vore/08_nif.dm b/code/modules/client/preference_setup/vore/08_nif.dm index 62ebbdbeac..c618341344 100644 --- a/code/modules/client/preference_setup/vore/08_nif.dm +++ b/code/modules/client/preference_setup/vore/08_nif.dm @@ -38,11 +38,16 @@ if((character.type == /mob/living/carbon/human) && ispath(pref.nif_path) && pref.nif_durability) new pref.nif_path(character,pref.nif_durability,pref.nif_savedata) + /* //And now here's the trick. We wipe these so that if they die, they lose the NIF. //Backup implants will start saving this again periodically, and so will cryo'ing out. pref.nif_path = null pref.nif_durability = null pref.nif_savedata = null + */ + //No we do not, that's lame and admins have to re-NIF them later. + //If they leave round after they get their NIF extracted, it will save as 'gone' anyway + //The NIF will save automatically every time durability changes too now. var/savefile/S = new /savefile(pref.path) if(!S) WARNING ("Couldn't load NIF save savefile? [pref.real_name]") S.cd = "/character[pref.default_slot]" diff --git a/code/modules/client/preference_setup/vore/09_misc.dm b/code/modules/client/preference_setup/vore/09_misc.dm index 60a207bcc8..fff3bb6af4 100644 --- a/code/modules/client/preference_setup/vore/09_misc.dm +++ b/code/modules/client/preference_setup/vore/09_misc.dm @@ -8,6 +8,7 @@ S["directory_erptag"] >> pref.directory_erptag S["directory_ad"] >> pref.directory_ad S["sensorpref"] >> pref.sensorpref + S["capture_crystal"] >> pref.capture_crystal /datum/category_item/player_setup_item/vore/misc/save_character(var/savefile/S) S["show_in_directory"] << pref.show_in_directory @@ -15,17 +16,21 @@ S["directory_erptag"] << pref.directory_erptag S["directory_ad"] << pref.directory_ad S["sensorpref"] << pref.sensorpref + S["capture_crystal"] << pref.capture_crystal + /datum/category_item/player_setup_item/vore/misc/copy_to_mob(var/mob/living/carbon/human/character) if(pref.sensorpref > 5 || pref.sensorpref < 1) pref.sensorpref = 5 character.sensorpref = pref.sensorpref + character.capture_crystal = pref.capture_crystal /datum/category_item/player_setup_item/vore/misc/sanitize_character() pref.show_in_directory = sanitize_integer(pref.show_in_directory, 0, 1, initial(pref.show_in_directory)) pref.directory_tag = sanitize_inlist(pref.directory_tag, GLOB.char_directory_tags, initial(pref.directory_tag)) pref.directory_erptag = sanitize_inlist(pref.directory_erptag, GLOB.char_directory_erptags, initial(pref.directory_erptag)) pref.sensorpref = sanitize_integer(pref.sensorpref, 1, sensorpreflist.len, initial(pref.sensorpref)) + pref.capture_crystal = sanitize_integer(pref.capture_crystal, 0, 1, initial(pref.capture_crystal)) /datum/category_item/player_setup_item/vore/misc/content(var/mob/user) . += "
" @@ -34,6 +39,7 @@ . += "Character Directory ERP Tag: [pref.directory_erptag]
" . += "Character Directory Advertisement: Set Directory Ad
" . += "Suit Sensors Preference: [sensorpreflist[pref.sensorpref]]
" + . += "Capture Crystal Preference [pref.capture_crystal ? "Yes" : "No"]
" /datum/category_item/player_setup_item/vore/misc/OnTopic(var/href, var/list/href_list, var/mob/user) if(href_list["toggle_show_in_directory"]) @@ -60,4 +66,8 @@ if (!isnull(new_sensorpref) && CanUseTopic(user)) pref.sensorpref = sensorpreflist.Find(new_sensorpref) return TOPIC_REFRESH + else if(href_list["toggle_capture_crystal"]) + pref.capture_crystal = pref.capture_crystal ? 0 : 1; + return TOPIC_REFRESH + return ..(); diff --git a/code/modules/client/preferences.dm b/code/modules/client/preferences.dm index 3a4adff1c4..81347394ba 100644 --- a/code/modules/client/preferences.dm +++ b/code/modules/client/preferences.dm @@ -147,6 +147,7 @@ var/list/preferences_datums = list() var/datum/browser/panel var/lastnews // Hash of last seen lobby news content. + var/lastlorenews //ID of last seen lore news article. var/examine_text_mode = 0 // Just examine text, include usage (description_info), switch to examine panel. var/multilingual_mode = 0 // Default behaviour, delimiter-key-space, delimiter-key-delimiter, off diff --git a/code/modules/client/preferences_spawnpoints.dm b/code/modules/client/preferences_spawnpoints.dm index 455be8a8b8..6078808c30 100644 --- a/code/modules/client/preferences_spawnpoints.dm +++ b/code/modules/client/preferences_spawnpoints.dm @@ -31,7 +31,7 @@ var/list/spawntypes = list() if(!(J.mob_type & allowed_mob_types)) return 0 - + return 1 /datum/spawnpoint/proc/get_spawn_position() @@ -77,4 +77,30 @@ var/list/spawntypes = list() /datum/spawnpoint/cyborg/New() ..() - turfs = latejoin_cyborg \ No newline at end of file + turfs = latejoin_cyborg + +/obj/effect/landmark/arrivals + name = "JoinLateShuttle" + delete_me = 1 + +/obj/effect/landmark/arrivals/New() + latejoin += loc + ..() + +var/global/list/latejoin_tram = list() + +/obj/effect/landmark/tram + name = "JoinLateTram" + delete_me = 1 + +/obj/effect/landmark/tram/New() + latejoin_tram += loc // There's no tram but you know whatever man! + ..() + +/datum/spawnpoint/tram + display_name = "Tram Station" + msg = "will arrive to the station shortly by shuttle" + +/datum/spawnpoint/tram/New() + ..() + turfs = latejoin_tram \ No newline at end of file diff --git a/code/modules/client/preferences_toggle_procs.dm b/code/modules/client/preferences_toggle_procs.dm index bf3d7a3ca7..d928b39c2e 100644 --- a/code/modules/client/preferences_toggle_procs.dm +++ b/code/modules/client/preferences_toggle_procs.dm @@ -1,8 +1,8 @@ //Toggles for preferences, normal clients /client/verb/toggle_ghost_ears() - set name = "Show/Hide Ghost Ears" + set name = "Toggle Ghost Ears" set category = "Preferences" - set desc = "Toggles between seeing all mob speech and nearby mob speech." + set desc = "Toggles between seeing all mob speech and only nearby mob speech as an observer." var/pref_path = /datum/client_preference/ghost_ears @@ -15,9 +15,9 @@ feedback_add_details("admin_verb","TGEars") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc! /client/verb/toggle_ghost_vision() - set name = "Show/Hide Ghost Vision" + set name = "Toggle Ghost Sight" set category = "Preferences" - set desc = "Toggles between seeing all mob emotes and nearby mob emotes." + set desc = "Toggles between seeing all mob emotes and only nearby mob emotes as an observer." var/pref_path = /datum/client_preference/ghost_sight @@ -30,9 +30,9 @@ feedback_add_details("admin_verb","TGVision") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc! /client/verb/toggle_ghost_radio() - set name = "Show/Hide Radio Chatter" + set name = "Toggle Ghost Radio" set category = "Preferences" - set desc = "Toggles between seeing all radio chat and nearby radio chatter." + set desc = "Toggles between seeing all radio chat and only nearby radio chatter as an observer." var/pref_path = /datum/client_preference/ghost_radio @@ -45,9 +45,9 @@ feedback_add_details("admin_verb","TGRadio") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc! /client/verb/toggle_deadchat() - set name = "Show/Hide Deadchat" + set name = "Toggle Deadchat" set category = "Preferences" - set desc = "Toggles the dead chat channel." + set desc = "Toggles visibility of dead chat." var/pref_path = /datum/client_preference/show_dsay @@ -60,9 +60,9 @@ feedback_add_details("admin_verb","TDeadChat") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc! /client/verb/toggle_ooc() - set name = "Show/Hide OOC" + set name = "Toggle OOC" set category = "Preferences" - set desc = "Toggles global out of character chat." + set desc = "Toggles visibility of global out of character chat." var/pref_path = /datum/client_preference/show_ooc @@ -75,9 +75,9 @@ feedback_add_details("admin_verb","TOOC") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc! /client/verb/toggle_looc() - set name = "Show/Hide LOOC" + set name = "Toggle LOOC" set category = "Preferences" - set desc = "Toggles local out of character chat." + set desc = "Toggles visibility of local out of character chat." var/pref_path = /datum/client_preference/show_looc @@ -90,9 +90,9 @@ feedback_add_details("admin_verb","TLOOC") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc! /client/verb/toggle_precision_placement() - set name = "Enable/Disable Precision Placement" + set name = "Toggle Precision Placement" set category = "Preferences" - set desc = "Toggles precise placement of objects on tables." + set desc = "Toggles whether objects placed on table will be on cursor position or centered." var/pref_path = /datum/client_preference/precision_placement @@ -105,9 +105,9 @@ feedback_add_details("admin_verb","TPIP") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc! /client/verb/toggle_typing() - set name = "Show/Hide Typing Indicator" + set name = "Toggle Typing Indicator" set category = "Preferences" - set desc = "Toggles the speech bubble typing indicator." + set desc = "Toggles you having the speech bubble typing indicator." var/pref_path = /datum/client_preference/show_typing_indicator @@ -137,7 +137,7 @@ /client/verb/toggle_lobby_music() set name = "Toggle Lobby Music" set category = "Preferences" - set desc = "Toggles the music in the lobby." + set desc = "Toggles the ability to hear the music in the lobby." var/pref_path = /datum/client_preference/play_lobby_music @@ -150,15 +150,15 @@ feedback_add_details("admin_verb","TLobMusic") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc! /client/verb/toggle_admin_midis() - set name = "Toggle Admin MIDIs" + set name = "Toggle Admin Music" set category = "Preferences" - set desc = "Toggles the music in the lobby." + set desc = "Toggles the ability to hear music played by admins." var/pref_path = /datum/client_preference/play_admin_midis toggle_preference(pref_path) - to_chat(src,"You will [ (is_preference_enabled(pref_path)) ? "now" : "no longer"] hear MIDIs from admins.") + to_chat(src,"You will [ (is_preference_enabled(pref_path)) ? "now" : "no longer"] hear music from admins.") SScharacter_setup.queue_preferences_save(prefs) @@ -167,7 +167,7 @@ /client/verb/toggle_ambience() set name = "Toggle Ambience" set category = "Preferences" - set desc = "Toggles the playing of ambience." + set desc = "Toggles the ability to hear local ambience." var/pref_path = /datum/client_preference/play_ambiance @@ -212,7 +212,7 @@ /client/verb/toggle_jukebox() set name = "Toggle Jukebox" set category = "Preferences" - set desc = "Toggles the playing of jukebox music." + set desc = "Toggles the ability to hear jukebox music." var/pref_path = /datum/client_preference/play_jukebox @@ -225,7 +225,7 @@ feedback_add_details("admin_verb","TJukebox") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc! /client/verb/toggle_be_special(role in be_special_flags) - set name = "Toggle SpecialRole Candidacy" + set name = "Toggle Special Role Candidacy" set category = "Preferences" set desc = "Toggles which special roles you would like to be a candidate for, during events." @@ -240,24 +240,24 @@ feedback_add_details("admin_verb","TBeSpecial") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc! /client/verb/toggle_air_pump_hum() - set name = "Toggle Air Pump Noise" + set name = "Toggle Air Vent Noise" set category = "Preferences" - set desc = "Toggles Air Pumps humming" + set desc = "Toggles the ability to hear air vent humming." var/pref_path = /datum/client_preference/air_pump_noise toggle_preference(pref_path) - to_chat(src, "You will [ (is_preference_enabled(pref_path)) ? "now" : "no longer"] hear air pumps hum, start, and stop.") + to_chat(src, "You will [ (is_preference_enabled(pref_path)) ? "now" : "no longer"] hear air vents hum, start, and stop.") SScharacter_setup.queue_preferences_save(prefs) feedback_add_details("admin_verb","TAirPumpNoise") - + /client/verb/toggle_old_door_sounds() set name = "Toggle Old Door Sounds" set category = "Preferences" - set desc = "Toggles New/Old Door Sounds" + set desc = "Toggles door sounds between old and new." var/pref_path = /datum/client_preference/old_door_sounds @@ -268,11 +268,11 @@ SScharacter_setup.queue_preferences_save(prefs) feedback_add_details("admin_verb","TOldDoorSounds") - + /client/verb/toggle_department_door_sounds() set name = "Toggle Department Door Sounds" set category = "Preferences" - set desc = "Toggles Department-Specific Door Sounds" + set desc = "Toggles hearing of department-specific door sounds." var/pref_path = /datum/client_preference/department_door_sounds @@ -287,13 +287,13 @@ /client/verb/toggle_pickup_sounds() set name = "Toggle Picked Up Item Sounds" set category = "Preferences" - set desc = "Toggles sounds when items are picked up or thrown." + set desc = "Toggles the ability to hear sounds when items are picked up." var/pref_path = /datum/client_preference/pickup_sounds toggle_preference(pref_path) - to_chat(src, "You will [ (is_preference_enabled(pref_path)) ? "now" : "no longer"] hear sounds when items are picked up or thrown.") + to_chat(src, "You will [ (is_preference_enabled(pref_path)) ? "now" : "no longer"] hear sounds when items are picked up.") SScharacter_setup.queue_preferences_save(prefs) @@ -302,7 +302,7 @@ /client/verb/toggle_drop_sounds() set name = "Toggle Dropped Item Sounds" set category = "Preferences" - set desc = "Toggles sounds when items are dropped or thrown." + set desc = "Toggles the ability to hear sounds when items are dropped or thrown." var/pref_path = /datum/client_preference/drop_sounds @@ -330,7 +330,7 @@ /client/verb/toggle_mob_tooltips() set name = "Toggle Mob Tooltips" set category = "Preferences" - set desc = "Toggles displaying name/species over mobs when moused over." + set desc = "Toggles displaying name/species over mobs when they are moused over." var/pref_path = /datum/client_preference/mob_tooltips toggle_preference(pref_path) @@ -343,7 +343,7 @@ /client/verb/toggle_inv_tooltips() set name = "Toggle Item Tooltips" set category = "Preferences" - set desc = "Toggles displaying name/desc over items when moused over (only applies in inventory)." + set desc = "Toggles displaying name/desc over items when they are moused over (only applies in inventory)." var/pref_path = /datum/client_preference/inv_tooltips toggle_preference(pref_path) @@ -356,7 +356,7 @@ /client/verb/toggle_hear_instruments() set name = "Toggle Hear/Ignore Instruments" set category = "Preferences" - set desc = "Hear In-game Instruments" + set desc = "Toggles the ability to hear instruments playing." var/pref_path = /datum/client_preference/instrument_toggle toggle_preference(pref_path) @@ -369,7 +369,7 @@ /client/verb/toggle_vchat() set name = "Toggle VChat" set category = "Preferences" - set desc = "Enable/Disable VChat. Reloading VChat and/or reconnecting required to affect changes." + set desc = "Toggles VChat. Reloading VChat and/or reconnecting required to affect changes." var/pref_path = /datum/client_preference/vchat_enable toggle_preference(pref_path) @@ -382,7 +382,7 @@ /client/verb/toggle_status_indicators() set name = "Toggle Status Indicators" set category = "Preferences" - set desc = "Enable/Disable seeing status indicators over peoples' heads." + set desc = "Toggles seeing status indicators over peoples' heads." var/pref_path = /datum/client_preference/status_indicators toggle_preference(pref_path) @@ -393,11 +393,24 @@ feedback_add_details("admin_verb","TStatusIndicators") +/client/verb/toggle_radio_sounds() + set name = "Toggle Radio Sounds" + set category = "Preferences" + set desc = "Toggle hearing a sound when somebody speaks over your headset." + + var/pref_path = /datum/client_preference/radio_sounds + toggle_preference(pref_path) + SScharacter_setup.queue_preferences_save(prefs) + + to_chat(src, "You will now [(is_preference_enabled(/datum/client_preference/radio_sounds)) ? "hear" : "not hear"] radio sounds.") + + feedback_add_details("admin_verb","TRadioSounds") + // Not attached to a pref datum because those are strict binary toggles /client/verb/toggle_examine_mode() set name = "Toggle Examine Mode" set category = "Preferences" - set desc = "Control the additional behaviour of examining things" + set desc = "Toggle the additional behaviour of examining things." prefs.examine_text_mode++ prefs.examine_text_mode %= EXAMINE_MODE_MAX // This cycles through them because if you're already specifically being routed to the examine panel, you probably don't need to have the extra text printed to chat @@ -414,7 +427,7 @@ /client/verb/toggle_multilingual_mode() set name = "Toggle Multilingual Mode" set category = "Preferences" - set desc = "Control the behaviour of multilingual speech parsing" + set desc = "Toggle the behaviour of multilingual speech parsing." prefs.multilingual_mode++ prefs.multilingual_mode %= MULTILINGUAL_MODE_MAX // Cycles through the various options @@ -435,7 +448,7 @@ /client/proc/toggle_debug_logs() set name = "Toggle Debug Logs" set category = "Preferences" - set desc = "Toggles debug logs." + set desc = "Toggles seeing debug logs." var/pref_path = /datum/client_preference/debug/show_debug_logs @@ -450,7 +463,7 @@ /client/proc/toggle_attack_logs() set name = "Toggle Attack Logs" set category = "Preferences" - set desc = "Toggles attack logs." + set desc = "Toggles seeing attack logs." var/pref_path = /datum/client_preference/mod/show_attack_logs diff --git a/code/modules/client/preferences_vr.dm b/code/modules/client/preferences_vr.dm index b85ca6a01a..db77b0ba6e 100644 --- a/code/modules/client/preferences_vr.dm +++ b/code/modules/client/preferences_vr.dm @@ -4,6 +4,7 @@ var/directory_erptag = "Unset" //ditto, but for non-vore scenes var/directory_ad = "" //Advertisement stuff to show in character directory. var/sensorpref = 5 //Set character's suit sensor level + var/capture_crystal = 1 //Whether or not someone is able to be caught with capture crystals var/job_talon_high = 0 var/job_talon_med = 0 @@ -11,9 +12,9 @@ //Why weren't these in game toggles already? /client/verb/toggle_eating_noises() - set name = "Eating Noises" + set name = "Toggle Eating Noises" set category = "Preferences" - set desc = "Toggles Vore Eating noises." + set desc = "Toggles hearing Vore Eating noises." var/pref_path = /datum/client_preference/eating_noises @@ -27,9 +28,9 @@ /client/verb/toggle_digestion_noises() - set name = "Digestion Noises" + set name = "Toggle Digestion Noises" set category = "Preferences" - set desc = "Toggles Vore Digestion noises." + set desc = "Toggles hearing Vore Digestion noises." var/pref_path = /datum/client_preference/digestion_noises @@ -41,11 +42,25 @@ feedback_add_details("admin_verb","TDigestNoise") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc! +/client/verb/toggle_belch_noises() + set name = "Toggle Audible Belching" + set category = "Preferences" + set desc = "Toggles hearing audible belches." + + var/pref_path = /datum/client_preference/belch_noises + + toggle_preference(pref_path) + + to_chat(src, "You will [ (is_preference_enabled(pref_path)) ? "now" : "no longer"] hear belching.") + + SScharacter_setup.queue_preferences_save(prefs) + + feedback_add_details("admin_verb","TBelchNoise") /client/verb/toggle_emote_noises() - set name = "Emote Noises" + set name = "Toggle Emote Noises" set category = "Preferences" - set desc = "Toggles emote noises." + set desc = "Toggles hearing emote noises." var/pref_path = /datum/client_preference/emote_noises @@ -58,9 +73,9 @@ feedback_add_details("admin_verb","TEmoteNoise") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc! /client/verb/toggle_ghost_quiets() - set name = "Toggle Whisper/Subtle Vis" + set name = "Toggle Ghost Privacy" set category = "Preferences" - set desc = "Toggle ghosts viewing your subtles/whispers." + set desc = "Toggles ghosts being able to see your subtles/whispers." var/pref_path = /datum/client_preference/whisubtle_vis @@ -71,3 +86,22 @@ SScharacter_setup.queue_preferences_save(prefs) feedback_add_details("admin_verb","TWhisubtleVis") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc! + +/client/verb/toggle_capture_crystal() + set name = "Toggle Catchable" + set category = "Preferences" + set desc = "Toggles being catchable with capture crystals." + + var/mob/living/L = mob + + if(prefs.capture_crystal) + to_chat(src, "You are no longer catchable.") + prefs.capture_crystal = 0 + else + to_chat(src, "You are now catchable.") + prefs.capture_crystal = 1 + if(L) + L.capture_crystal = prefs.capture_crystal + SScharacter_setup.queue_preferences_save(prefs) + + feedback_add_details("admin_verb","TCaptureCrystal") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc! \ No newline at end of file diff --git a/code/modules/client/stored_item.dm b/code/modules/client/stored_item.dm new file mode 100644 index 0000000000..d2210b2245 --- /dev/null +++ b/code/modules/client/stored_item.dm @@ -0,0 +1,252 @@ +/obj/machinery/item_bank + name = "electronic lockbox" + desc = "A place to store things you might want later!" + icon = 'icons/obj/stationobjs_vr.dmi' + icon_state = "item_bank" + idle_power_usage = 1 + active_power_usage = 5 + anchored = TRUE + density = FALSE + var/busy_bank = FALSE + var/static/list/item_takers = list() + +/obj/machinery/item_bank/proc/persist_item_savefile_path(mob/user) + return "data/player_saves/[copytext(user.ckey, 1, 2)]/[user.ckey]/persist_item.sav" + +/obj/machinery/item_bank/proc/persist_item_savefile_save(mob/user, obj/item/O) + if(IsGuestKey(user.key)) + return 0 + + var/savefile/F = new /savefile(src.persist_item_savefile_path(user)) + + F["persist item"] << O.type + F["persist name"] << initial(O.name) + + return 1 + +/obj/machinery/item_bank/proc/persist_item_savefile_load(mob/user, thing) + if (IsGuestKey(user.key)) + return 0 + + var/path = src.persist_item_savefile_path(user) + + if (!fexists(path)) + return 0 + + var/savefile/F = new /savefile(path) + + if(!F) return 0 + + var/persist_item + F["persist item"] >> persist_item + + if (isnull(persist_item) || !ispath(persist_item)) + fdel(path) + tgui_alert_async(user, "An item could not be retrieved.") + return 0 + if(thing == "type") + return persist_item + if(thing == "name") + var/persist_name + F["persist name"] >> persist_name + return persist_name + + +/obj/machinery/item_bank/Initialize() + . = ..() + +/obj/machinery/item_bank/attack_hand(mob/living/user) + . = ..() + if(!ishuman(user)) + return + if(istype(user) && Adjacent(user)) + if(inoperable() || panel_open) + to_chat(user, "\The [src] seems to be nonfunctional...") + else + start_using(user) + +/obj/machinery/item_bank/proc/start_using(mob/living/user) + if(!ishuman(user)) + return + if(busy_bank) + to_chat(user, "\The [src] is already in use.") + return + busy_bank = TRUE + var/I = persist_item_savefile_load(user, "type") + var/Iname = persist_item_savefile_load(user, "name") + var/choice = tgui_alert(user, "What would you like to do [src]?", "[src]", list("Check contents", "Retrieve item", "Info", "Cancel"), timeout = 10 SECONDS) + if(!choice || choice == "Cancel" || !Adjacent(user) || inoperable() || panel_open) + busy_bank = FALSE + return + else if(choice == "Check contents" && I) + to_chat(user, "\The [src] has \the [Iname] for you!") + busy_bank = FALSE + else if(choice == "Retrieve item" && I) + if(user.hands_are_full()) + to_chat(user,"Your hands are full!") + busy_bank = FALSE + return + if(user.ckey in item_takers) + to_chat(user, "You have already taken something out of \the [src] this shift.") + busy_bank = FALSE + return + choice = tgui_alert(user, "If you remove this item from the bank, it will be unable to be stored again. Do you still want to remove it?", "[src]", list("No", "Yes"), timeout = 10 SECONDS) + icon_state = "item_bank_o" + if(!choice || choice == "No" || !Adjacent(user) || inoperable() || panel_open) + busy_bank = FALSE + icon_state = "item_bank" + return + else if(!do_after(user, 10 SECONDS, src, exclusive = TASK_ALL_EXCLUSIVE) || inoperable()) + busy_bank = FALSE + icon_state = "item_bank" + return + var/obj/N = new I(get_turf(src)) + log_admin("[key_name_admin(user)] retrieved [N] from the item bank.") + visible_message("\The [src] dispenses the [N] to \the [user].") + user.put_in_hands(N) + N.persist_storable = FALSE + var/path = src.persist_item_savefile_path(user) + var/savefile/F = new /savefile(src.persist_item_savefile_path(user)) + F["persist item"] << null + F["persist name"] << null + fdel(path) + item_takers += user.ckey + busy_bank = FALSE + icon_state = "item_bank" + else if(choice == "Info") + to_chat(user, "\The [src] can store a single item for you between shifts! Anything that has been retrieved from the bank cannot be stored again in the same shift. Anyone can withdraw from the bank one time per shift. Some items are not able to be accepted by the bank.") + busy_bank = FALSE + return + else if(!I) + to_chat(user, "\The [src] doesn't seem to have anything for you...") + busy_bank = FALSE + +/obj/machinery/item_bank/attackby(obj/item/O, mob/living/user) + if(!ishuman(user)) + return + if(busy_bank) + to_chat(user, "\The [src] is already in use.") + return + busy_bank = TRUE + var/I = persist_item_savefile_load(user, "type") + if(!istool(O) && O.persist_storable) + if(ispath(I)) + to_chat(user, "You cannot store \the [O]. You already have something stored.") + busy_bank = FALSE + return + var/choice = tgui_alert(user, "If you store \the [O], anything it contains may be lost to \the [src]. Are you sure?", "[src]", list("Store", "Cancel"), timeout = 10 SECONDS) + if(!choice || choice == "Cancel" || !Adjacent(user) || inoperable() || panel_open) + busy_bank = FALSE + return + for(var/obj/check in O.contents) + if(!check.persist_storable) + to_chat(user, "\The [src] buzzes. \The [O] contains [check], which cannot be stored. Please remove this item before attempting to store \the [O]. As a reminder, any contents of \the [O] will be lost if you store it with contents.") + busy_bank = FALSE + return + user.visible_message("\The [user] begins storing \the [O] in \the [src].","You begin storing \the [O] in \the [src].") + icon_state = "item_bank_o" + if(!do_after(user, 10 SECONDS, src, exclusive = TASK_ALL_EXCLUSIVE) || inoperable()) + busy_bank = FALSE + icon_state = "item_bank" + return + src.persist_item_savefile_save(user, O) + user.visible_message("\The [user] stores \the [O] in \the [src].","You stored \the [O] in \the [src].") + log_admin("[key_name_admin(user)] stored [O] in the item bank.") + qdel(O) + busy_bank = FALSE + icon_state = "item_bank" + else + to_chat(user, "You cannot store \the [O]. \The [src] either does not accept that, or it has already been retrieved from storage this shift.") + busy_bank = FALSE + +/////STORABLE ITEMS AND ALL THAT JAZZ///// +//I am only really intending this to be used for single items. Mostly stuff you got right now, but can't/don't want to use right now. +//It is not at all intended to be a thing that just lets you hold on to stuff forever, but just until it's the right time to use it. + +/obj + + var/persist_storable = TRUE //If this is true, this item can be stored in the item bank. + //This is automatically set to false when an item is removed from storage + +/////LIST OF STUFF WE DON'T WANT PEOPLE STORING///// + +/obj/item/device/pda + persist_storable = FALSE +/obj/item/device/communicator + persist_storable = FALSE +/obj/item/weapon/card + persist_storable = FALSE +/obj/item/weapon/holder + persist_storable = FALSE +/obj/item/device/radio + persist_storable = FALSE +/obj/item/device/encryptionkey + persist_storable = FALSE +/obj/item/weapon/storage //There are lots of things that have stuff that we may not want people to just have. And this is mostly intended for a single thing. + persist_storable = FALSE //And it would be annoying to go through and consider all of them, so default to disabled. +/obj/item/weapon/storage/backpack //But we can enable some where it makes sense. Backpacks and their variants basically never start with anything in them, as an example. + persist_storable = TRUE +/obj/item/weapon/reagent_containers/hypospray/vial + persist_storable = FALSE +/obj/item/weapon/cmo_disk_holder + persist_storable = FALSE +/obj/item/device/defib_kit/compact/combat + persist_storable = FALSE +/obj/item/clothing/glasses/welding/superior + persist_storable = FALSE +/obj/item/clothing/shoes/magboots/adv + persist_storable = FALSE +/obj/item/weapon/rig + persist_storable = FALSE +/obj/item/clothing/head/helmet/space/void + persist_storable = FALSE +/obj/item/clothing/suit/space/void + persist_storable = FALSE +/obj/item/weapon/grab + persist_storable = FALSE +/obj/item/weapon/grenade + persist_storable = FALSE +/obj/item/weapon/hand_tele + persist_storable = FALSE +/obj/item/weapon/paper + persist_storable = FALSE +/obj/item/weapon/backup_implanter + persist_storable = FALSE +/obj/item/weapon/disk/nuclear + persist_storable = FALSE +/obj/item/weapon/gun/energy/locked //These are guns with security measures on them, so let's say the box won't let you put them in there. + persist_storable = FALSE //(otherwise explo will just put their locker/vendor guns into it every round) +/obj/item/device/retail_scanner + persist_storable = FALSE +/obj/item/weapon/telecube + persist_storable = FALSE +/obj/item/weapon/reagent_containers/glass/bottle/adminordrazine + persist_storable = FALSE +/obj/item/weapon/gun/energy/sizegun/admin + persist_storable = FALSE +/obj/item/weapon/gun/energy/sizegun/abductor + persist_storable = FALSE +/obj/item/stack + persist_storable = FALSE +/obj/item/weapon/book + persist_storable = FALSE +/obj/item/weapon/melee/cursedblade + persist_storable = FALSE +/obj/item/device/paicard + persist_storable = FALSE +/obj/item/organ + persist_storable = FALSE +/obj/item/device/soulstone + persist_storable = FALSE +/obj/item/device/aicard + persist_storable = FALSE +/obj/item/device/mmi + persist_storable = FALSE +/obj/item/seeds + persist_storable = FALSE +/obj/item/weapon/reagent_containers/food/snacks/grown + persist_storable = FALSE +/obj/item/weapon/stock_parts + persist_storable = FALSE +/obj/item/weapon/rcd + persist_storable = FALSE \ No newline at end of file diff --git a/code/modules/client/verbs/suicide.dm b/code/modules/client/verbs/suicide.dm index 7c96267faf..52841c8464 100644 --- a/code/modules/client/verbs/suicide.dm +++ b/code/modules/client/verbs/suicide.dm @@ -1,6 +1,6 @@ /mob/var/suiciding = 0 -/mob/living/carbon/human/verb/suicide() +/mob/living/carbon/human/verb/suicide() /// At best, useful for admins to see if it's being called. set hidden = 1 if (stat == DEAD) @@ -10,83 +10,9 @@ if (!ticker) to_chat(src, "You can't commit suicide before the game starts!") return - - if(!player_is_antag(mind)) - message_admins("[ckey] has tried to suicide, but they were not permitted due to not being antagonist as human.", 1) - to_chat(src, "No. Adminhelp if there is a legitimate reason.") - return - - if (suiciding) - to_chat(src, "You're already committing suicide! Be patient!") - return - - var/confirm = tgui_alert(usr, "Are you sure you want to commit suicide?", "Confirm Suicide", list("Yes", "No")) - - if(confirm == "Yes") - if(!canmove || restrained()) //just while I finish up the new 'fun' suiciding verb. This is to prevent metagaming via suicide - to_chat(src, "You can't commit suicide whilst restrained! ((You can type Ghost instead however.))") - return - suiciding = 15 - does_not_breathe = 0 //Prevents ling-suicide zombies, or something - var/obj/item/held_item = get_active_hand() - if(held_item) - var/damagetype = held_item.suicide_act(src) - if(damagetype) - log_and_message_admins("[key_name(src)] commited suicide using \a [held_item]") - var/damage_mod = 1 - switch(damagetype) //Sorry about the magic numbers. - //brute = 1, burn = 2, tox = 4, oxy = 8 - if(15) //4 damage types - damage_mod = 4 - - if(6, 11, 13, 14) //3 damage types - damage_mod = 3 - - if(3, 5, 7, 9, 10, 12) //2 damage types - damage_mod = 2 - - if(1, 2, 4, 8) //1 damage type - damage_mod = 1 - - else //This should not happen, but if it does, everything should still work - damage_mod = 1 - - //Do 175 damage divided by the number of damage types applied. - if(damagetype & BRUTELOSS) - adjustBruteLoss(30/damage_mod) //hack to prevent gibbing - adjustOxyLoss(145/damage_mod) - - if(damagetype & FIRELOSS) - adjustFireLoss(175/damage_mod) - - if(damagetype & TOXLOSS) - adjustToxLoss(175/damage_mod) - - if(damagetype & OXYLOSS) - adjustOxyLoss(175/damage_mod) - - //If something went wrong, just do normal oxyloss - if(!(damagetype | BRUTELOSS) && !(damagetype | FIRELOSS) && !(damagetype | TOXLOSS) && !(damagetype | OXYLOSS)) - adjustOxyLoss(max(175 - getToxLoss() - getFireLoss() - getBruteLoss() - getOxyLoss(), 0)) - - updatehealth() - return - - log_and_message_admins("[key_name(src)] commited suicide") - - var/datum/gender/T = gender_datums[get_visible_gender()] - - var/suicidemsg - suicidemsg = pick("[src] is attempting to bite [T.his] tongue off! It looks like [T.he] [T.is] trying to commit suicide.", \ - "[src] is jamming [T.his] thumbs into [T.his] eye sockets! It looks like [T.he] [T.is] trying to commit suicide.", \ - "[src] is twisting [T.his] own neck! It looks like [T.he] [T.is] trying to commit suicide.", \ - "[src] is holding [T.his] breath! It looks like [T.he] [T.is] trying to commit suicide.") - if(isSynthetic()) - suicidemsg = "[src] is attempting to switch [T.his] power off! It looks like [T.he] [T.is] trying to commit suicide." - visible_message(suicidemsg) - - adjustOxyLoss(max(175 - getToxLoss() - getFireLoss() - getBruteLoss() - getOxyLoss(), 0)) - updatehealth() + + to_chat(src, "No. Adminhelp if there is a legitimate reason, and please review our server rules.") + message_admins("[ckey] has tried to trigger the suicide verb as human, but it is currently disabled.") /mob/living/carbon/brain/verb/suicide() set hidden = 1 @@ -165,4 +91,4 @@ M.show_message("[src] flashes a message across its screen, \"Wiping core files. Please acquire a new personality to continue using pAI device functions.\"", 3, "[src] bleeps electronically.", 2) death(0) else - to_chat(src, "Aborting suicide attempt.") + to_chat(src, "Aborting suicide attempt.") \ No newline at end of file diff --git a/code/modules/clothing/clothing.dm b/code/modules/clothing/clothing.dm index f9c9e1aebc..cb595bd948 100644 --- a/code/modules/clothing/clothing.dm +++ b/code/modules/clothing/clothing.dm @@ -473,7 +473,7 @@ /obj/item/clothing/head/proc/update_flashlight(var/mob/user = null) set_light_on(!light_on) - + if(light_system == STATIC_LIGHT) update_light() @@ -766,7 +766,7 @@ // means that if a taur puts on an already taurized suit without a taur sprite // for their taur type, but the previous taur type had a sprite, it stays // taurized and they end up with that taur style which is funny - else + else taurized = FALSE if(!taurized) @@ -818,7 +818,9 @@ */ var/displays_id = 1 var/rolled_down = -1 //0 = unrolled, 1 = rolled, -1 = cannot be toggled + var/rolled_down_icon_override = TRUE var/rolled_sleeves = -1 //0 = unrolled, 1 = rolled, -1 = cannot be toggled + var/rolled_sleeves_icon_override = TRUE sprite_sheets = list( SPECIES_TESHARI = 'icons/inventory/uniform/mob_teshari.dmi', SPECIES_VOX = 'icons/inventory/uniform/mob_vox.dmi' @@ -880,7 +882,7 @@ H = src.loc var/icon/under_icon - if(icon_override) + if(icon_override && rolled_down_icon_override) under_icon = icon_override else if(H && LAZYACCESS(sprite_sheets, H.species.get_bodytype(H))) under_icon = sprite_sheets[H.species.get_bodytype(H)] @@ -903,7 +905,7 @@ H = src.loc var/icon/under_icon - if(icon_override) + if(icon_override && rolled_sleeves_icon_override) under_icon = icon_override else if(H && LAZYACCESS(sprite_sheets, H.species.get_bodytype(H))) under_icon = sprite_sheets[H.species.get_bodytype(H)] @@ -1048,3 +1050,10 @@ /obj/item/clothing/under/rank/New() sensor_mode = pick(0,1,2,3) ..() + +//Vorestation edit - eject mobs from clothing before deletion +/obj/item/clothing/Destroy() + for(var/mob/living/M in contents) + M.forceMove(get_turf(src)) + return ..() +//Vorestation edit end \ No newline at end of file diff --git a/code/modules/clothing/clothing_vr.dm b/code/modules/clothing/clothing_vr.dm index 5f662ca628..084e1b577d 100644 --- a/code/modules/clothing/clothing_vr.dm +++ b/code/modules/clothing/clothing_vr.dm @@ -41,9 +41,11 @@ else var/obj/item/weapon/holder/micro/holder = I if(holder.held_mob && (holder.held_mob in holder)) - to_chat(holder.held_mob, "[user] stuffs you into \the [src]!") - holder.held_mob.forceMove(src) - to_chat(user, "You stuff \the [holder.held_mob] into \the [src]!") + var/mob/living/M = holder.held_mob + holder.dump_mob() + to_chat(M, "[user] stuffs you into \the [src]!") + M.forceMove(src) + to_chat(user, "You stuff \the [M] into \the [src]!") else ..() diff --git a/code/modules/clothing/glasses/glasses.dm b/code/modules/clothing/glasses/glasses.dm index 3db7ad58cf..fa84a8c8ec 100644 --- a/code/modules/clothing/glasses/glasses.dm +++ b/code/modules/clothing/glasses/glasses.dm @@ -292,6 +292,12 @@ BLIND // can't see anything item_state_slots = list(slot_r_hand_str = "glasses", slot_l_hand_str = "glasses") body_parts_covered = 0 +/obj/item/clothing/glasses/artist + name = "4-D Glasses" + desc = "You can see in every dimension, and get four times the amount of headache!" + icon_state = "artist" + item_state = "artist_glasses" + /obj/item/clothing/glasses/gglasses name = "green glasses" desc = "Forest green glasses, like the kind you'd wear when hatching a nasty scheme." @@ -336,6 +342,11 @@ BLIND // can't see anything desc = "A pair of designer sunglasses." icon_state = "aviator" +/obj/item/clothing/glasses/sunglasses/bigshot + name = "big shot's glasses" + desc = "A pair of glasses to help you feel more like a \[BIG SHOT]." + icon_state = "bigshot" + /obj/item/clothing/glasses/welding name = "welding goggles" desc = "Protects the eyes from welders, approved by the mad scientist association." @@ -590,3 +601,4 @@ BLIND // can't see anything to_chat(usr, "You push \the [src] up from in front of your eyes.") update_clothing_icon() usr.update_action_buttons() + diff --git a/code/modules/clothing/glasses/hud_vr.dm b/code/modules/clothing/glasses/hud_vr.dm index e280f985c6..b233b87a20 100644 --- a/code/modules/clothing/glasses/hud_vr.dm +++ b/code/modules/clothing/glasses/hud_vr.dm @@ -90,10 +90,12 @@ if(icon_state == "glasses") to_chat(usr, "You darken the electrochromic lenses of \the [src] to one-way transparency.") name = "[initial(name)] (shaded, pr)" + flags_inv |= HIDEEYES icon_state = "sun" else if(icon_state == "sun") to_chat(usr, "You restore the electrochromic lenses of \the [src] to standard two-way transparency.") name = "[initial(name)] (pr)" + flags_inv &= ~HIDEEYES icon_state = "glasses" else to_chat(usr, "The [src] don't seem to support this functionality.") @@ -101,10 +103,12 @@ if(icon_state == "glasses") to_chat(usr, "You darken the electrochromic lenses of \the [src] to one-way transparency.") name = "[initial(name)] (shaded)" + flags_inv |= HIDEEYES icon_state = "sun" else if(icon_state == "sun") to_chat(usr, "You restore the electrochromic lenses of \the [src] to standard two-way transparency.") name = "[initial(name)]" + flags_inv &= ~HIDEEYES icon_state = "glasses" else to_chat(usr, "The [src] don't seem to support this functionality.") @@ -222,7 +226,7 @@
Offers full protection against bright flashes/welders and full access to system alarm monitoring." mode = "best" flash_protection = FLASH_PROTECTION_MAJOR - enables_planes = list(VIS_CH_ID,VIS_CH_HEALTH_VR,VIS_CH_STATUS_R,VIS_CH_BACKUP,VIS_CH_WANTED) + enables_planes = list(VIS_CH_ID,VIS_CH_HEALTH_VR,VIS_CH_STATUS_R,VIS_CH_BACKUP,VIS_CH_WANTED,VIS_AUGMENTED) action_button_name = "AR Console (All Alerts)" tgarscreen_path = /datum/tgui_module/alarm_monitor/all/glasses diff --git a/code/modules/clothing/gloves/miscellaneous.dm b/code/modules/clothing/gloves/miscellaneous.dm index 3abb4c223f..8d7ec44f54 100644 --- a/code/modules/clothing/gloves/miscellaneous.dm +++ b/code/modules/clothing/gloves/miscellaneous.dm @@ -166,4 +166,11 @@ glovecolor = "orange" /obj/item/clothing/gloves/ranger/yellow - glovecolor = "yellow" \ No newline at end of file + glovecolor = "yellow" + +/obj/item/clothing/gloves/waterwings + name = "water wings" + desc = "Swim aids designed to help a wearer float in water and learn to swim." + icon_state = "waterwings" + + diff --git a/code/modules/clothing/gloves/miscellaneous_vr.dm b/code/modules/clothing/gloves/miscellaneous_vr.dm index 69de1b5414..4d83bbae5a 100644 --- a/code/modules/clothing/gloves/miscellaneous_vr.dm +++ b/code/modules/clothing/gloves/miscellaneous_vr.dm @@ -41,4 +41,25 @@ desc = "ye olde armored gauntlets" name = "knight gauntlets" icon_state = "brown" - item_state = "brown" \ No newline at end of file + item_state = "brown" + +/obj/item/clothing/gloves/heavy_engineer + desc = "Elbow-length insulated gloves, with added reinforcement. They'll keep your fingers and forearms just that little bit safer from things that might try to melt, mangle, or burn them. A tag on the inside of each glove reads \'PROPERTY OF ENGINEERING, RETURN IF FOUND\'." + name = "heavy-duty engineering gloves" + icon_state = "heavy_engi" + item_state = "heavy_engi" + siemens_coefficient = 0 + permeability_coefficient = 0.05 + flags = THICKMATERIAL + armor = list(melee = 10, bullet = 10, laser = 10, energy = 5, bomb = 0, bio = 30, rad = 30) + icon = 'icons/inventory/hands/item_vr.dmi' + default_worn_icon = 'icons/inventory/hands/mob_vr.dmi' + sprite_sheets = list( + SPECIES_TESHARI = 'icons/inventory/hands/mob_vr_teshari.dmi', + SPECIES_VOX = 'icons/inventory/hands/mob_vr_vox.dmi', + SPECIES_WEREBEAST = 'icons/inventory/hands/mob_vr_werebeast.dmi') + + cold_protection = HANDS + min_cold_protection_temperature = GLOVES_MIN_COLD_PROTECTION_TEMPERATURE + heat_protection = HANDS + max_heat_protection_temperature = GLOVES_MAX_HEAT_PROTECTION_TEMPERATURE \ No newline at end of file diff --git a/code/modules/clothing/head/hardhat.dm b/code/modules/clothing/head/hardhat.dm index 47a5b89f1a..d8bfea2b1d 100644 --- a/code/modules/clothing/head/hardhat.dm +++ b/code/modules/clothing/head/hardhat.dm @@ -1,3 +1,14 @@ +/* + * Contains: + * Hard Hats + * Firefighter Hats + * Ranger Hats + */ + +/* + * Hard Hats + */ + /obj/item/clothing/head/hardhat name = "hard hat" desc = "A piece of headgear used in dangerous working conditions to protect the head. Comes with a built-in flashlight." @@ -18,27 +29,64 @@ icon_state = "hardhat0_orange" name = "orange hard hat" -/obj/item/clothing/head/hardhat/red - icon_state = "hardhat0_red" - name = "firefighter helmet" - heat_protection = HEAD - max_heat_protection_temperature = FIRE_HELMET_MAX_HEAT_PROTECTION_TEMPERATURE - min_pressure_protection = 0.2* ONE_ATMOSPHERE - max_pressure_protection = 20 * ONE_ATMOSPHERE - - /obj/item/clothing/head/hardhat/white icon_state = "hardhat0_white" name = "sleek hard hat" - heat_protection = HEAD - max_heat_protection_temperature = FIRE_HELMET_MAX_HEAT_PROTECTION_TEMPERATURE - min_pressure_protection = 0.2* ONE_ATMOSPHERE - max_pressure_protection = 20 * ONE_ATMOSPHERE /obj/item/clothing/head/hardhat/dblue name = "blue hard hat" icon_state = "hardhat0_dblue" +/* + * Firefighter Hats + */ + +/obj/item/clothing/head/hardhat/red + icon_state = "hardhat0_red" + name = "emergency fire helmet" + heat_protection = HEAD + max_heat_protection_temperature = FIRE_HELMET_MAX_HEAT_PROTECTION_TEMPERATURE + min_pressure_protection = 0.2* ONE_ATMOSPHERE + max_pressure_protection = 20 * ONE_ATMOSPHERE + +/obj/item/clothing/head/hardhat/firefighter + name = "firefighter helmet" + desc = "A helmet with face mask specially designed for firefighting. It's airtight and has a port for internals." + icon_state = "helmet_firefighter" + item_flags = THICKMATERIAL | AIRTIGHT + permeability_coefficient = 0 + flags_inv = HIDEMASK|HIDEEARS|HIDEEYES|HIDEFACE|BLOCKHAIR + max_heat_protection_temperature = FIRE_HELMET_MAX_HEAT_PROTECTION_TEMPERATURE+5000 + min_pressure_protection = 0.5 * ONE_ATMOSPHERE + max_pressure_protection = 20 * ONE_ATMOSPHERE + body_parts_covered = HEAD|FACE|EYES + cold_protection = HEAD + min_cold_protection_temperature = SPACE_HELMET_MIN_COLD_PROTECTION_TEMPERATURE + flash_protection = FLASH_PROTECTION_MODERATE + sprite_sheets = list( + SPECIES_TAJARAN = 'icons/inventory/head/mob_tajaran.dmi', + SPECIES_UNATHI = 'icons/inventory/head/mob_unathi.dmi' + ) + +/obj/item/clothing/head/hardhat/firefighter/atmos + name = "atmospheric firefighter helmet" + desc = "An atmospheric firefighter's helmet, includes a face mask specially designed for firefighting. It's airtight and has a port for internals." + icon_state = "atmos_fire" + max_heat_protection_temperature = FIRE_HELMET_MAX_HEAT_PROTECTION_TEMPERATURE + 10000 + +/obj/item/clothing/head/hardhat/firefighter/chief + name = "chief firefighter helmet" + desc = "A helmet with face mask specially designed for firefighting. This one is in the colors of the Chief Engineer. It's airtight and has a port for internals." + icon_state = "helmet_firefighter_ce" + max_heat_protection_temperature = FIRE_HELMET_MAX_HEAT_PROTECTION_TEMPERATURE + 10000 + +/* + * Ranger Hats + */ + + //Missing onmob sprites. + +/* /obj/item/clothing/head/hardhat/ranger var/hatcolor = "white" name = "ranger helmet" @@ -71,4 +119,5 @@ hatcolor = "orange" /obj/item/clothing/head/hardhat/ranger/yellow - hatcolor = "yellow" \ No newline at end of file + hatcolor = "yellow" +*/ \ No newline at end of file diff --git a/code/modules/clothing/head/hood.dm b/code/modules/clothing/head/hood.dm index db51bcb8f9..8f7f752ee0 100644 --- a/code/modules/clothing/head/hood.dm +++ b/code/modules/clothing/head/hood.dm @@ -164,6 +164,16 @@ desc = "A starry winter hood." icon_state = "winterhood_cosmic" +/obj/item/clothing/head/hood/winter/christmasred + name = "red christmas winter hood" + desc = "A red festive winter hood." + icon_state = "winterhood_christmasr" + +/obj/item/clothing/head/hood/winter/christmasgreen + name = "green christmas winter hood" + desc = "A green festive winter hood." + icon_state = "winterhood_christmasg" + // Explorer gear /obj/item/clothing/head/hood/explorer name = "explorer hood" @@ -192,4 +202,10 @@ /obj/item/clothing/head/hood/techpriest name = "techpriest hood" desc = "A techpriest hood." - icon_state = "techpriesthood" \ No newline at end of file + icon_state = "techpriesthood" + +/obj/item/clothing/head/hood/siffet_hood + name = "siffet hood" + desc = "A hood that looks vaguely like a siffet's head. Guaranteed to traumatize your Promethean coworkers." + icon_state = "siffet" + item_state_slots = list(slot_r_hand_str = "siffet", slot_l_hand_str = "siffet") diff --git a/code/modules/clothing/head/jobs.dm b/code/modules/clothing/head/jobs.dm index da22b29f1f..44715c2576 100644 --- a/code/modules/clothing/head/jobs.dm +++ b/code/modules/clothing/head/jobs.dm @@ -22,12 +22,27 @@ desc = "No one in a commanding position should be without a perfect, white hat of ultimate authority." icon_state = "officercap" +/obj/item/clothing/head/caphat/beret + name = "captain's beret" + desc = "A beret fit for a leader." + icon_state = "beretcap" + //HOP /obj/item/clothing/head/caphat/hop name = "crew resource's hat" desc = "A stylish hat that both protects you from enraged former-crewmembers and gives you a false sense of authority." icon_state = "hopcap" +/obj/item/clothing/head/caphat/hop/beret + name = "head of personnel's beret" + desc = "The symbol of true bureaucratic micromanagement, although in a fancy form." + icon_state = "berethop" + +/obj/item/clothing/head/caphat/hop/beret/white + name = "head of personnel's white beret" + desc = "The symbol of true bureaucratic micromanagement, although in a fancy form." + icon_state = "berethopwhite" + //Chaplain /obj/item/clothing/head/chaplain_hood name = "chaplain's hood" @@ -133,9 +148,10 @@ flags_inv = null /obj/item/clothing/head/det - name = "fedora" - desc = "A brown fedora - either the cornerstone of a detective's style or a poor attempt at looking cool, depending on the person wearing it." - icon_state = "detective" + name = "detective fedora" + desc = "A specially designed fedora that is woven with protective fibers. It also makes you look cool." + icon_state = "fedora_brown" + item_state_slots = list(slot_r_hand_str = "detective", slot_l_hand_str = "detective") allowed = list(/obj/item/weapon/reagent_containers/food/snacks/candy_corn, /obj/item/weapon/pen) armor = list(melee = 10, bullet = 10, laser = 15, energy = 10, bomb = 0, bio = 0, rad = 0) siemens_coefficient = 0.9 @@ -143,9 +159,7 @@ show_examine = FALSE /obj/item/clothing/head/det/grey - icon_state = "detective2" - item_state_slots = list(slot_r_hand_str = "detective", slot_l_hand_str = "detective") - desc = "A grey fedora - either the cornerstone of a detective's style or a poor attempt at looking cool, depending on the person wearing it." + icon_state = "fedora_grey" /obj/item/clothing/head/beret/engineering name = "engineering beret" @@ -208,3 +222,62 @@ desc = "A cap surgeons wear during operations. Keeps their hair from tickling your internal organs. This one is navy blue." icon_state = "surgcap_navyblue" item_state_slots = list(slot_r_hand_str = "beret_navy", slot_l_hand_str = "beret_navy") + +/obj/item/clothing/head/beret/medical + name = "medical officer's beret" + desc = "A fancy beret with a blue cross, smells sterile." + icon_state = "beretmed" + +/obj/item/clothing/head/beret/medical/chem + name = "chemist's beret" + desc = "A fancy beret with an orange beaker. You're not sure if you should smell it." + icon_state = "beretchem" + +/obj/item/clothing/head/beret/medical/viro + name = "virologist's beret" + desc = "A fancy beret with a green cross. Hopefully it's virus free!" + icon_state = "beretviro" + +/obj/item/clothing/head/beret/medical/cmo + name = "chief medical officer's beret" + desc = "A fancy beret with a green cross, signifying your status in the station's medbay." + icon_state = "beretcmo" + +/obj/item/clothing/head/beret/medical/cmo/blue + name = "chief medical officer's beret" + desc = "A fancy beret with a blue and white cross. Try not to be the chief malpractice officer in it!" + icon_state = "beretcmoblue" + +//Science + +/obj/item/clothing/head/beret/science + name = "scientist's beret" + desc = "A scientist's beret. Looks like it's covered in slime." + icon_state = "beretsci" + +/obj/item/clothing/head/beret/science/robotics + name = "roboticist's beret" + desc = "A roboticist's beret. It strongly smells of oil." + icon_state = "beretrobo" + +/obj/item/clothing/head/beret/science/rd + name = "research director's beret" + desc = "A beret worn only by highly intelligent people. Or so its wearers say." + icon_state = "beretrd" + +//Chief Engineer +/obj/item/clothing/head/beret/engineering/ce + name = "chief engineer's beret" + desc = "A beret that will surely make you look way cooler than a hard hat, although lack of protection is the price." + icon_state = "beretce" + +/obj/item/clothing/head/beret/engineering/ce/white + name = "chief engineer's white beret" + desc = "A beret that will surely make you look way cooler than a hard hat, although lack of protection is the price." + icon_state = "beretcewhite" + +//Quartermaster +/obj/item/clothing/head/beret/qm + name = "quartermaster's beret" + desc = "This headwear shows off your Cargonian leadership." + icon_state = "beretqm" \ No newline at end of file diff --git a/code/modules/clothing/head/misc.dm b/code/modules/clothing/head/misc.dm index 8636b5b606..d299396f79 100644 --- a/code/modules/clothing/head/misc.dm +++ b/code/modules/clothing/head/misc.dm @@ -96,13 +96,6 @@ desc = "A powdered wig." icon_state = "pwig" -/obj/item/clothing/head/that - name = "top-hat" - desc = "It's an amish looking hat." - icon_state = "tophat" - siemens_coefficient = 0.9 - body_parts_covered = 0 - /obj/item/clothing/head/redcoat name = "redcoat's hat" icon_state = "redcoat" @@ -119,7 +112,7 @@ /obj/item/clothing/head/plaguedoctorhat name = "plague doctor's hat" - desc = "These were once used by Plague doctors. They're pretty much useless." + desc = "These were once used by Plague doctors, allegedly. They're pretty much useless." icon_state = "plaguedoctor" item_state_slots = list(slot_r_hand_str = "tophat", slot_l_hand_str = "tophat") permeability_coefficient = 0.01 @@ -234,84 +227,6 @@ icon_state = "bandana" item_state_slots = list(slot_r_hand_str = "redbandana", slot_l_hand_str = "redbandana") -/obj/item/clothing/head/bowler - name = "bowler-hat" - desc = "Gentleman, elite aboard!" - icon_state = "bowler" - item_state_slots = list(slot_r_hand_str = "tophat", slot_l_hand_str = "tophat") - body_parts_covered = 0 - -//stylish bs12 hats - -/obj/item/clothing/head/bowlerhat - name = "bowler hat" - icon_state = "bowler_hat" - item_state_slots = list(slot_r_hand_str = "tophat", slot_l_hand_str = "tophat") - desc = "For the gentleman of distinction." - body_parts_covered = 0 - -/obj/item/clothing/head/beaverhat - name = "beaver hat" - icon_state = "beaver_hat" - item_state_slots = list(slot_r_hand_str = "tophat", slot_l_hand_str = "tophat") - desc = "Soft felt makes this hat both comfortable and elegant." - -/obj/item/clothing/head/boaterhat - name = "boater hat" - icon_state = "boater_hat" - item_state_slots = list(slot_r_hand_str = "tophat", slot_l_hand_str = "tophat") - desc = "The ultimate in summer fashion." - -/obj/item/clothing/head/fedora - name = "fedora" - icon_state = "fedora" - item_state_slots = list(slot_r_hand_str = "detective", slot_l_hand_str = "detective") - desc = "A sharp, stylish hat." - -/obj/item/clothing/head/fedora/brown - name = "fedora" - desc = "A brown fedora - either the cornerstone of a reporter's style or a poor attempt at looking cool, depending on the person wearing it." - icon_state = "detective" - allowed = list(/obj/item/weapon/reagent_containers/food/snacks/candy_corn, /obj/item/weapon/pen) - -/obj/item/clothing/head/fedora/grey - icon_state = "detective2" - item_state_slots = list(slot_r_hand_str = "detective", slot_l_hand_str = "detective") - desc = "A grey fedora - either the cornerstone of a reporter's style or a poor attempt at looking cool, depending on the person wearing it." - - -/obj/item/clothing/head/feathertrilby - name = "feather trilby" - icon_state = "feather_trilby" - item_state_slots = list(slot_r_hand_str = "detective", slot_l_hand_str = "detective") - desc = "A sharp, stylish hat with a feather." - -/obj/item/clothing/head/fez - name = "fez" - icon_state = "fez" - desc = "You should wear a fez. Fezzes are cool." - -/obj/item/clothing/head/cowboy_hat - name = "cowboy hat" - desc = "For those that have spurs that go jingle jangle jingle." - icon_state = "cowboyhat" - body_parts_covered = 0 - -/obj/item/clothing/head/cowboy_hat/black - name = "black cowboy hat" - desc = "You can almost hear the old western music." - icon_state = "cowboy_black" - -/obj/item/clothing/head/cowboy_hat/wide - name = "wide-brimmed cowboy hat" - desc = "Because justice isn't going to dispense itself." - icon_state = "cowboy_wide" - -/obj/item/clothing/head/cowboy_hat/small - name = "small cowboy hat" - desc = "For the tiniest of cowboys." - icon_state = "cowboy_small" - /obj/item/clothing/head/witchwig name = "witch costume wig" desc = "Eeeee~heheheheheheh!" @@ -484,4 +399,157 @@ /obj/item/clothing/head/beret/corp/xion name = "\improper Xion beret" desc = "An orange beret denoting employment with Xion Manufacturing. For personnel that are more inclined towards style than safety." - icon_state = "beret_orange" \ No newline at end of file + icon_state = "beret_orange" + +//Stylish Hats + +/obj/item/clothing/head/bowler + name = "bowler hat" + desc = "Gentleman, elite aboard!" + icon_state = "bowler" + item_state_slots = list(slot_r_hand_str = "tophat", slot_l_hand_str = "tophat") + body_parts_covered = 0 + +/obj/item/clothing/head/that + name = "top-hat" + desc = "It's an amish looking hat." + icon_state = "tophat" + siemens_coefficient = 0.9 + body_parts_covered = 0 + +/obj/item/clothing/head/beaverhat + name = "beaver hat" + desc = "Soft felt makes this hat both comfortable and elegant." + icon_state = "beaver_hat" + item_state_slots = list(slot_r_hand_str = "tophat", slot_l_hand_str = "tophat") + siemens_coefficient = 0.9 + body_parts_covered = 0 + +/obj/item/clothing/head/boaterhat + name = "boater hat" + desc = "The ultimate in summer fashion." + icon_state = "boater_hat" + item_state_slots = list(slot_r_hand_str = "tophat", slot_l_hand_str = "tophat") + body_parts_covered = 0 + +/obj/item/clothing/head/fedora + name = "fedora" + icon_state = "fedora_grey" + desc = "A sharp, stylish hat that's grey in color." + item_state_slots = list(slot_r_hand_str = "detective", slot_l_hand_str = "detective") + body_parts_covered = 0 + +/obj/item/clothing/head/fedora/brown + desc = "A brown fedora. Perfect for detectives or those trying to pilfer artifacts." + icon_state = "fedora_brown" + allowed = list(/obj/item/weapon/reagent_containers/food/snacks/candy_corn, /obj/item/weapon/pen) + +/obj/item/clothing/head/fedora/white + desc = "A white fedora, really cool hat if you're a mobster. A really lame hat if you're not." + icon_state = "fedora_white" + +/obj/item/clothing/head/fedora/beige + desc = "A beige fedora. Either the cornerstone of a reporter's style or a poor attempt at looking cool. Depends on the person wearing it." + icon_state = "fedora_beige" + +/obj/item/clothing/head/fedora/panama + desc = "A fancy, cream colored fedora. Columbian pure." + icon_state = "fedora_panama" + +/obj/item/clothing/head/trilby + name = "trilby" + icon_state = "trilby" + item_state_slots = list(slot_r_hand_str = "detective", slot_l_hand_str = "detective") + desc = "M'lady" + +/obj/item/clothing/head/trilby/feather + name = "feather trilby" + icon_state = "feather_trilby" + item_state_slots = list(slot_r_hand_str = "detective", slot_l_hand_str = "detective") + desc = "A sharp, stylish hat with a feather." + +/obj/item/clothing/head/fez + name = "fez" + icon_state = "fez" + desc = "You should wear a fez. Fezzes are cool." + +//Cowboy Hats + +/obj/item/clothing/head/cowboy + name = "cowboy hat" + desc = "For those that have spurs that go jingle jangle jingle." + icon_state = "cowboy_1" + body_parts_covered = 0 + +/obj/item/clothing/head/cowboy/rattan + name = "rattan cowboy hat" + desc = "Made from the same straw harvested from the fields." + icon_state = "cowboy_2" + +/obj/item/clothing/head/cowboy/dark + name = "dark cowboy hat" + desc = "Protect yer head in this new frontier." + icon_state = "cowboy_3" + +/obj/item/clothing/head/cowboy/ranger + name = "ranger cowboy hat" + desc = "Feel the western vibe from this good ol' classic." + icon_state = "cowboy_4" + +/obj/item/clothing/head/cowboy/rustler + name = "rustler cowboy hat" + desc = "Rustle up some of that there cattle bucko." + icon_state = "cowboy_5" + +/obj/item/clothing/head/cowboy/black + name = "black cowboy hat" + desc = "Perfect for the budding tram robber." + icon_state = "cowboy_7" + +/obj/item/clothing/head/cowboy/fancy + name = "fancy cowboy hat" + desc = "Premium black leather had with a rattlesnake hatband to top the ensemble." + icon_state = "cowboy_8" + +/obj/item/clothing/head/cowboy/wide + name = "wide-brimmed cowboy hat" + desc = "Because justice isn't going to dispense itself." + icon_state = "cowboy_6" + +/obj/item/clothing/head/cowboy/bandit + name = "bandit cowboy hat" + desc = "You can almost hear the old western music." + icon_state = "cowboy_9" + +/obj/item/clothing/head/cowboy/small + name = "small cowboy hat" + desc = "For the tiniest of cowboys." + icon_state = "cowboy_small" + +/obj/item/clothing/head/wheat + name = "straw hat" + desc = "It's a hat made from synthetic straw. Brought to you by \"Country Girls LLC.\" the choice brand for the galaxy's working class." + icon_state = "wheat" + +//Ruin Marine (Doom Marine) +/obj/item/clothing/head/marine + name = "marine helmet" + desc = "A marine helmet prop from the popular game 'Ruin'." + icon_state = "marine" + flags_inv = HIDEMASK|HIDEEARS|HIDEEYES|HIDEFACE|BLOCKHAIR + body_parts_covered = HEAD|FACE|EYES + +//Laser Tag Helmets +/obj/item/clothing/head/bluetag + name = "blue laser tag helmet" + desc = "Blue Pride, Station Wide." + icon_state = "bluetag" + flags_inv = HIDEEARS|BLOCKHEADHAIR + body_parts_covered = HEAD|EYES + +/obj/item/clothing/head/redtag + name = "red laser tag helmet" + desc = "Reputed to go faster." + icon_state = "redtag" + flags_inv = HIDEEARS|BLOCKHEADHAIR + body_parts_covered = HEAD|EYES \ No newline at end of file diff --git a/code/modules/clothing/head/misc_special.dm b/code/modules/clothing/head/misc_special.dm index 1d3759fae9..724b77a9af 100644 --- a/code/modules/clothing/head/misc_special.dm +++ b/code/modules/clothing/head/misc_special.dm @@ -6,8 +6,8 @@ * Pumpkin head * Kitty ears * Holiday hats - Crown of Wrath - Warning cone + * Crown of Wrath + * Warning cone */ /* @@ -146,7 +146,7 @@ */ /obj/item/clothing/head/ushanka name = "ushanka" - desc = "Perfect for winter in Siberia, da?" + desc = "Perfect for those cold winter nights." icon_state = "ushankadown" flags_inv = HIDEEARS @@ -158,6 +158,19 @@ src.icon_state = initial(icon_state) to_chat(user, "You lower the ear flaps on the ushanka.") +/obj/item/clothing/head/ushanka/black + icon_state = "blkushankadown" + +/obj/item/clothing/head/ushanka/soviet + name = "soviet ushanka" + desc = "Perfect for winter in Siberia, da?" + icon_state = "sovushankadown" + +/obj/item/clothing/head/ushanka/hedberg + name = "\improper Hedberg-Hammarstrom fur hat" + desc = "An Hedberg-Hammarstrom private security ushanka." + icon_state = "hedbergushankadown" + /* * Pumpkin head */ diff --git a/code/modules/clothing/head/pilot_helmet_vr.dm b/code/modules/clothing/head/pilot_helmet_vr.dm index de4d52b622..ab4b2335c8 100644 --- a/code/modules/clothing/head/pilot_helmet_vr.dm +++ b/code/modules/clothing/head/pilot_helmet_vr.dm @@ -57,7 +57,7 @@ ) action_button_name = "Toggle Visor" -/obj/item/clothing/head/pilot_vr/alt/attack_self(mob/user as mob) +/obj/item/clothing/head/pilot_vr/talon/attack_self(mob/user as mob) if(src.icon_state == initial(icon_state)) src.icon_state = "[icon_state]up" to_chat(user, "You raise the visor on the pilot helmet.") @@ -65,3 +65,25 @@ src.icon_state = initial(icon_state) to_chat(user, "You lower the visor on the pilot helmet.") update_clothing_icon() //so our mob-overlays update + +//////////Major Bill's Pilot Headgear////////// + +/obj/item/clothing/head/pilot_vr/mbill + name = "\improper Major Bill's pilot helmet" + desc = "An Major Bill's Transportation version of the standard pilot helmet. Protects the head from impacts. This one has a retractable visor" + icon_state = "pilot3" + item_icons = list(slot_head_str = 'icons/inventory/head/mob_vr.dmi') + catalogue_data = list(/datum/category_item/catalogue/information/organization/major_bills) + sprite_sheets = list( + SPECIES_TESHARI = 'icons/inventory/head/mob_vr_teshari.dmi' + ) + action_button_name = "Toggle Visor" + +/obj/item/clothing/head/pilot_vr/mbill/attack_self(mob/user as mob) + if(src.icon_state == initial(icon_state)) + src.icon_state = "[icon_state]up" + to_chat(user, "You raise the visor on the pilot helmet.") + else + src.icon_state = initial(icon_state) + to_chat(user, "You lower the visor on the pilot helmet.") + update_clothing_icon() //so our mob-overlays update \ No newline at end of file diff --git a/code/modules/clothing/head/solgov.dm b/code/modules/clothing/head/solgov.dm index 6b2623ff52..3befe1fbf1 100644 --- a/code/modules/clothing/head/solgov.dm +++ b/code/modules/clothing/head/solgov.dm @@ -1,6 +1,20 @@ -//SolGov uniform hats +/* + * SolGov Uniform Hats + * Contents: + * Utility + * Service + * Dress + * Government Departments (Berets) + * SifGuard (Berets) + * Fleet (Berets) + * Ushanka + * Almachi + * Unused Baylore Stuff + */ -//Utility +/* + * Utility + */ /obj/item/clothing/head/soft/solgov name = "\improper SolGov cap" desc = "It's a blue ballcap in Solar Confederate Government colors." @@ -72,8 +86,9 @@ desc = "A grey utility cover bearing the crest of the SCG Marines." icon_state = "greyutility" -//Service - +/* + * Service + */ /obj/item/clothing/head/service name = "service cover" desc = "A service uniform cover." @@ -130,8 +145,9 @@ desc = "A green campaign cover with an SCG Marine crest. Typically found on the heads of Drill Sergeants." icon_state = "greendrill" -//Dress - +/* + * Dress + */ /obj/item/clothing/head/dress name = "dress cover" desc = "A dress uniform cover." @@ -168,10 +184,9 @@ desc = "A white dress uniform cover with an SCG Marine crest and gold stripe." icon_state = "whitewheelcap_com" -//Berets - -//Government Departments - +/* + * Government Departments (Berets) + */ /obj/item/clothing/head/beret/solgov name = "\improper SCG beret" desc = "A beret in basic Solar Confederate Government colors. For peacekeepers that are more inclined towards style than safety." @@ -207,9 +222,9 @@ desc = "A white beret denoting service in the Interstellar Health Service. For medics that are more inclined towards style than safety." icon_state = "beret_white" - -//SifGuard - +/* + * SifGuard (Berets) + */ /obj/item/clothing/head/beret/solgov/sifguard name = "\improper SifGuard beret" desc = "A black beret belonging to the Sif Defense Force. For personnel that are more inclined towards style than safety." @@ -250,7 +265,9 @@ desc = "An Sif Defense Force beret carrying insignia of the Anti-Piracy taskforce. For personnel that are more inclined towards style than safety." icon_state = "beret_black_patrol" -//Fleet +/* + * Fleet (Berets) + */ /obj/item/clothing/head/beret/solgov/fleet name = "fleet beret" @@ -303,7 +320,50 @@ icon_state = "beret_whiterim_com" /* -Unused Baylore Stuff + * Ushanka + */ +/obj/item/clothing/head/ushanka/solgov + name = "\improper SifGuard fur hat" + desc = "An Sif Defense Force synthfur-lined hat for operating in cold environments." + icon_state = "sifguardushankadown" + +/obj/item/clothing/head/ushanka/solgov/fleet + name = "fleet fur hat" + desc = "An SCG Fleet synthfur-lined hat for operating in cold environments." + icon_state = "flushankadown" + +/obj/item/clothing/head/ushanka/solgov/marine + name = "marine fur hat" + desc = "An SCG Marine synthfur-lined hat for operating in cold environments." + icon_state = "mar1ushankadown" + +/obj/item/clothing/head/ushanka/solgov/marine/green + name = "green marine fur hat" + desc = "An SCG Marine synthfur-lined hat for operating in cold environments." + icon_state = "mar2ushankadown" + +/* + * Almachi + */ +/obj/item/clothing/head/almach + name = "\improper Almach Militia service cover" + desc = "A service uniform cover, occasionally worn by crew within the defunct Almach Militia." + icon_state = "almachhat" + item_state = "almachhat" + item_state_slots = list( + slot_l_hand_str = "helmet", + slot_r_hand_str = "helmet") + body_parts_covered = 0 + +/obj/item/clothing/head/terran/navy/service/command + name = "\improper Almach Militia command service cover" + desc = "A service uniform cover, occasionally worn by command crew within the defunct Almach Militia." + icon_state = "almachhat_comm" + item_state = "almachhat_comm" + +/* + * Unused Baylore Stuff + * /obj/item/clothing/head/beret/solgov/fleet/branch name = "first fleet beret" desc = "An SCG Fleet beret carrying insignia of First Fleet, the Sol Guard, stationed in Sol. For personnel that are more inclined towards style than safety." @@ -328,45 +388,5 @@ Unused Baylore Stuff name = "fifth fleet beret" desc = "An SCG Fleet beret carrying insignia of Fifth Fleet, the Quick Reaction Force, recently formed and outfited with last tech. For personnel that are more inclined towards style than safety." icon_state = "beret_navy_fifth" - -*/ - -//ushanka - -/obj/item/clothing/head/ushanka/solgov - name = "\improper SifGuard fur hat" - desc = "An Sif Defense Force synthfur-lined hat for operating in cold environments." - icon_state = "sifguardushankadown" - -/obj/item/clothing/head/ushanka/solgov/fleet - name = "fleet fur hat" - desc = "An SCG Fleet synthfur-lined hat for operating in cold environments." - icon_state = "flushankadown" - -/obj/item/clothing/head/ushanka/solgov/marine - name = "marine fur hat" - desc = "An SCG Marine synthfur-lined hat for operating in cold environments." - icon_state = "barushankadown" - -/obj/item/clothing/head/ushanka/solgov/marine/green - name = "\improper Hedberg-Hammarstrom fur hat" - desc = "An Hedberg-Hammarstrom private security synthfur-lined hat for operating in cold environments." - icon_state = "arushankadown" - -//Almachi - -/obj/item/clothing/head/almach - name = "\improper Almach Militia service cover" - desc = "A service uniform cover, occasionally worn by crew within the defunct Almach Militia." - icon_state = "almachhat" - item_state = "almachhat" - item_state_slots = list( - slot_l_hand_str = "helmet", - slot_r_hand_str = "helmet") - body_parts_covered = 0 - -/obj/item/clothing/head/terran/navy/service/command - name = "\improper Almach Militia command service cover" - desc = "A service uniform cover, occasionally worn by command crew within the defunct Almach Militia." - icon_state = "almachhat_comm" - item_state = "almachhat_comm" + * + */ \ No newline at end of file diff --git a/code/modules/clothing/head/solgov_vr.dm b/code/modules/clothing/head/solgov_vr.dm index d1b7b50bdb..f1288d506e 100644 --- a/code/modules/clothing/head/solgov_vr.dm +++ b/code/modules/clothing/head/solgov_vr.dm @@ -1,6 +1,17 @@ -//SolGov uniform hats +/* + * SolGov Uniform Hats + * Contents: + * Utility + * Service + * Dress + * Berets + * Ushanka + * Terran + */ -//Utility +/* + * Utility + */ /obj/item/clothing/head/soft/solgov name = "\improper SolCom cap" desc = "It's a blue ballcap in Terran Commonwealth Government colors." @@ -37,7 +48,9 @@ name = "urban utility cover" desc = "A grey utility cover bearing the crest of the TCG Marines." -//Service +/* + * Service + */ /obj/item/clothing/head/service/sifguard name = "\improper NDF peaked cap" desc = "A peaked black uniform cap belonging to the Nanotrasen Defense Force Corps." @@ -74,7 +87,9 @@ name = "campaign cover" desc = "A green campaign cover with an TCG Marine crest. Only found on the heads of Drill Sergeants." -//Dress +/* + * Dress + */ /obj/item/clothing/head/dress/fleet/garrison name = "fleet garrison cap" desc = "A white dress uniform cap. The classic sailor's choice." @@ -95,8 +110,9 @@ name = "marine officer's dress wheel cover" desc = "A white dress uniform cover with an TCG Marine crest and gold stripe." -//Berets - +/* + * Berets + */ /obj/item/clothing/head/beret/solgov name = "peacekeeper beret" desc = "A beret in Terran Commonwealth Government colors. For peacekeepers that are more inclined towards style than safety." @@ -238,26 +254,29 @@ name = "fifth fleet beret" desc = "An TCG Fleet beret carrying insignia of Fifth Fleet, the Quick Reaction Force, recently formed and outfited with last tech. For personnel that are more inclined towards style than safety." -//ushanka - +/* + * Ushanka + */ /obj/item/clothing/head/ushanka/solgov name = "\improper NDF fur hat" desc = "An Nanotrasen Defense Force synthfur-lined hat for operating in cold environments." + icon_state = "ntguardushankadown" /obj/item/clothing/head/ushanka/solgov/fleet name = "fleet fur hat" desc = "An TCG Fleet synthfur-lined hat for operating in cold environments." -/obj/item/clothing/head/ushanka/solgov/army +/obj/item/clothing/head/ushanka/solgov/marine name = "marine fur hat" desc = "An TCG Marine synthfur-lined hat for operating in cold environments." -/obj/item/clothing/head/ushanka/solgov/army/green +/obj/item/clothing/head/ushanka/solgov/marine/green name = "green marine fur hat" desc = "An TCG Marine synthfur-lined hat for operating in cold environments." -//Terran - +/* + * Terran + */ /obj/item/clothing/head/terran/navy/service name = "Ares service cover" desc = "A service uniform cover, worn by low-ranking crew within the Ares Confederation Navy." diff --git a/code/modules/clothing/masks/gasmask.dm b/code/modules/clothing/masks/gasmask.dm index a73e6d7a73..e164234cee 100644 --- a/code/modules/clothing/masks/gasmask.dm +++ b/code/modules/clothing/masks/gasmask.dm @@ -71,7 +71,7 @@ /obj/item/clothing/mask/gas/plaguedoctor/gold name = "gold plague doctor mask" - desc = "A modern version of the age old classic, this mask is both capable of filtering air, and connecting to an air supply. This one is gold." + desc = "A modernised version of the classic design, this mask will not only filter out phoron but it can also be connected to an air supply. This one is gold." icon_state = "plaguedoctor2" /obj/item/clothing/mask/gas/swat diff --git a/code/modules/clothing/masks/miscellaneous.dm b/code/modules/clothing/masks/miscellaneous.dm index d972cf82cc..5971e072e8 100644 --- a/code/modules/clothing/masks/miscellaneous.dm +++ b/code/modules/clothing/masks/miscellaneous.dm @@ -294,4 +294,97 @@ desc = "A black veil, typically worn at funerals or by goths." w_class = ITEMSIZE_TINY body_parts_covered = FACE - icon_state = "veil" \ No newline at end of file + icon_state = "veil" + +/obj/item/clothing/mask/paper + name = "paper mask" + desc = "A neat, circular mask made out of paper. Perhaps you could try drawing on it with a pen!" + w_class = ITEMSIZE_SMALL + body_parts_covered = FACE + icon_state = "papermask" + action_button_name = "Redraw Design" + action_button_is_hands_free = TRUE + var/list/papermask_designs = list() + +/obj/item/clothing/mask/paper/Initialize(mapload) + . = ..() + papermask_designs = list( + "Blank" = image(icon = src.icon, icon_state = "papermask"), + "Neutral" = image(icon = src.icon, icon_state = "neutralmask"), + "Eyes" = image(icon = src.icon, icon_state = "eyemask"), + "Sleeping" = image(icon = src.icon, icon_state = "sleepingmask"), + "Heart" = image(icon = src.icon, icon_state = "heartmask"), + "Core" = image(icon = src.icon, icon_state = "coremask"), + "Plus" = image(icon = src.icon, icon_state = "plusmask"), + "Square" = image(icon = src.icon, icon_state = "squaremask"), + "Bullseye" = image(icon = src.icon, icon_state = "bullseyemask"), + "Vertical" = image(icon = src.icon, icon_state = "verticalmask"), + "Horizontal" = image(icon = src.icon, icon_state = "horizontalmask"), + "X" = image(icon = src.icon, icon_state = "xmask"), + "Bugeyes" = image(icon = src.icon, icon_state = "bugmask"), + "Double" = image(icon = src.icon, icon_state = "doublemask"), + "Mark" = image(icon = src.icon, icon_state = "markmask") + ) + +/obj/item/clothing/mask/paper/attack_self(mob/user) + . = ..() + if(!istype(user) || user.incapacitated()) + return + + var/static/list/options = list("Blank" = "papermask", "Neutral" = "neutralmask", "Eyes" = "eyemask", + "Sleeping" ="sleepingmask", "Heart" = "heartmask", "Core" = "coremask", + "Plus" = "plusmask", "Square" ="squaremask", "Bullseye" = "bullseyemask", + "Vertical" = "verticalmask", "Horizontal" = "horizontalmask", "X" ="xmask", + "Bugeyes" = "bugmask", "Double" = "doublemask", "Mark" = "markmask") + + var/choice = show_radial_menu(user, src, papermask_designs, custom_check = FALSE, radius = 36, require_near = TRUE) + + if(src && choice && !user.incapacitated() && in_range(user,src)) + icon_state = options[choice] + user.update_inv_wear_mask() + user.update_action_buttons() + to_chat(user, "Your paper mask now is now [choice].") + return 1 + +/obj/item/clothing/mask/emotions + name = "emotional mask" + desc = "Express your happiness or hide your sorrows with this modular cutout. Draw your current emotions onto it with a pen!" + w_class = ITEMSIZE_SMALL + body_parts_covered = FACE + icon_state = "joy" + action_button_name = "Redraw Design" + action_button_is_hands_free = TRUE + var/static/list/joymask_designs = list() + + +/obj/item/clothing/mask/emotions/Initialize(mapload) + . = ..() + joymask_designs = list( + "Joy" = image(icon = src.icon, icon_state = "joy"), + "Flushed" = image(icon = src.icon, icon_state = "flushed"), + "Pensive" = image(icon = src.icon, icon_state = "pensive"), + "Angry" = image(icon = src.icon, icon_state = "angry"), + ) + +/obj/item/clothing/mask/emotions/attack_self(mob/user) + . = ..() + if(!istype(user) || user.incapacitated()) + return + + var/static/list/options = list("Joy" = "joy", "Flushed" = "flushed", "Pensive" = "pensive","Angry" ="angry") + + var/choice = show_radial_menu(user, src, joymask_designs, custom_check = FALSE, radius = 36, require_near = TRUE) + + if(src && choice && !user.incapacitated() && in_range(user,src)) + icon_state = options[choice] + user.update_inv_wear_mask() + user.update_action_buttons() + to_chat(user, "Your [src] now displays a [choice] emotion.") + return 1 + +/obj/item/clothing/mask/mouthwheat + name = "mouth wheat" + desc = "100% synthetic \"Country Girls LLC.\" brand mouth wheat. Warning: not for actual consumption." + icon_state = "mouthwheat" + w_class = ITEMSIZE_SMALL + body_parts_covered = 0 \ No newline at end of file diff --git a/code/modules/clothing/rings/material.dm b/code/modules/clothing/rings/material.dm index 218065b253..8fdbda704e 100644 --- a/code/modules/clothing/rings/material.dm +++ b/code/modules/clothing/rings/material.dm @@ -20,28 +20,52 @@ return material /obj/item/clothing/gloves/ring/material/wood/New(var/newloc) - ..(newloc, "wood") + ..(newloc, MAT_WOOD) /obj/item/clothing/gloves/ring/material/plastic/New(var/newloc) - ..(newloc, "plastic") + ..(newloc, MAT_PLASTIC) /obj/item/clothing/gloves/ring/material/iron/New(var/newloc) - ..(newloc, "iron") - -/obj/item/clothing/gloves/ring/material/steel/New(var/newloc) - ..(newloc, "steel") - -/obj/item/clothing/gloves/ring/material/silver/New(var/newloc) - ..(newloc, "silver") - -/obj/item/clothing/gloves/ring/material/gold/New(var/newloc) - ..(newloc, "gold") - -/obj/item/clothing/gloves/ring/material/platinum/New(var/newloc) - ..(newloc, "platinum") - -/obj/item/clothing/gloves/ring/material/phoron/New(var/newloc) - ..(newloc, "phoron") + ..(newloc, MAT_IRON) /obj/item/clothing/gloves/ring/material/glass/New(var/newloc) - ..(newloc, "glass") + ..(newloc, MAT_GLASS) + +/obj/item/clothing/gloves/ring/material/steel/New(var/newloc) + ..(newloc, MAT_STEEL) + +/obj/item/clothing/gloves/ring/material/silver/New(var/newloc) + ..(newloc, MAT_SILVER) + +/obj/item/clothing/gloves/ring/material/gold/New(var/newloc) + ..(newloc, MAT_GOLD) + +/obj/item/clothing/gloves/ring/material/platinum/New(var/newloc) + ..(newloc, MAT_PLATINUM) + +/obj/item/clothing/gloves/ring/material/phoron/New(var/newloc) + ..(newloc, MAT_PHORON) + +/obj/item/clothing/gloves/ring/material/titanium/New(var/newloc) + ..(newloc, MAT_TITANIUM) + +/obj/item/clothing/gloves/ring/material/copper/New(var/newloc) + ..(newloc, MAT_COPPER) + +/obj/item/clothing/gloves/ring/material/bronze/New(var/newloc) + ..(newloc, MAT_BRONZE) + +/obj/item/clothing/gloves/ring/material/uranium/New(var/newloc) + ..(newloc, MAT_URANIUM) + +/obj/item/clothing/gloves/ring/material/osmium/New(var/newloc) + ..(newloc, MAT_OSMIUM) + +/obj/item/clothing/gloves/ring/material/lead/New(var/newloc) + ..(newloc, MAT_LEAD) + +/obj/item/clothing/gloves/ring/material/diamond/New(var/newloc) + ..(newloc, MAT_DIAMOND) + +/obj/item/clothing/gloves/ring/material/tin/New(var/newloc) + ..(newloc, MAT_TIN) diff --git a/code/modules/clothing/rings/rings.dm b/code/modules/clothing/rings/rings.dm index b8313c5f97..f07d0ae674 100644 --- a/code/modules/clothing/rings/rings.dm +++ b/code/modules/clothing/rings/rings.dm @@ -63,6 +63,9 @@ ///////////////////////////////////////// //Seals and Signet Rings + +/obj/item/clothing/gloves/ring/seal + var/stamptext = null /obj/item/clothing/gloves/ring/seal/secgen name = "Secretary-General's official seal" desc = "The official seal of the Secretary-General of the Sol Central Government, featured prominently on a silver ring." diff --git a/code/modules/clothing/shoes/boots.dm b/code/modules/clothing/shoes/boots.dm index c85298cba9..4ee4395109 100644 --- a/code/modules/clothing/shoes/boots.dm +++ b/code/modules/clothing/shoes/boots.dm @@ -19,10 +19,40 @@ icon_state = "cowboy_classic" /obj/item/clothing/shoes/boots/cowboy/snakeskin - name = "snakeskin cowboy boots" + name = "snake skin boots" desc = "A pair of cowboy boots made from python skin." icon_state = "cowboy_snakeskin" +/obj/item/clothing/shoes/boots/cowboy/lizard + name = "lizard skin boots" + desc = "You can hear a faint hissing from inside the boots; you hope it is just a mournful ghost." + icon_state = "lizardboots_green" + +/obj/item/clothing/shoes/boots/cowboy/lizard/masterwork + name = "\improper Hugs-The-Feet lizard skin boots" + desc = "A pair of masterfully crafted lizard skin boots. Finally a good application for the station's most bothersome inhabitants." + icon_state = "lizardboots_blue" + +/obj/item/clothing/shoes/boots/cowboy/brown + name = "brown cowboy boots" + desc = "A small sticker lets you know they've been inspected for snakes, It is unclear how long ago the inspection took place..." + icon_state = "cowboy_brown" + +/obj/item/clothing/shoes/boots/cowboy/black + name = "black cowboy boots" + desc = "You get the feeling that these were red at one point." + icon_state = "cowboy_black" + +/obj/item/clothing/shoes/boots/cowboy/white + name = "white cowboy boots" + desc = "Perfect for those that like style while remaining rugged as ever." + icon_state = "cowboy_white" + +/obj/item/clothing/shoes/boots/cowboy/fancy + name = "fancy cowboy boots" + desc = "A gambler was 100% wearing these when he died." + icon_state = "cowboy_fancy" + /obj/item/clothing/shoes/boots/jackboots name = "jackboots" desc = "Standard-issue Security combat boots for combat scenarios or combat situations. All combat, all the time." @@ -144,6 +174,16 @@ icon_state = "explorer" armor = list(melee = 30, bullet = 10, laser = 10, energy = 15, bomb = 20, bio = 0, rad = 0) +/obj/item/clothing/shoes/boots/winter/christmasred + name = "red christmas boots" + desc = "A pair of fluffy red christmas boots!" + icon_state = "winterboots_christmasr" + +/obj/item/clothing/shoes/boots/winter/christmasgreen + name = "green christmas boots" + desc = "A pair of fluffy green christmas boots!" + icon_state = "winterboots_christmasg" + // Allows the wearer to climb cliffs, which could allow for shortcuts or sequence-breaking. /obj/item/clothing/shoes/boots/winter/climbing name = "climbing winter boots" diff --git a/code/modules/clothing/shoes/miscellaneous.dm b/code/modules/clothing/shoes/miscellaneous.dm index bcb3ba80c5..52aabe2bb4 100644 --- a/code/modules/clothing/shoes/miscellaneous.dm +++ b/code/modules/clothing/shoes/miscellaneous.dm @@ -48,6 +48,33 @@ wizard_garb = 1 +/obj/item/clothing/shoes/flipflop + name = "flip flops" + desc = "A pair of foam flip flops. For those not afraid to show a little ankle." + icon_state = "thongsandal" + addblends = "thongsandal_a" + +/obj/item/clothing/shoes/cookflop + name = "grilling sandals" + desc = "All this talk of antags, greytiding, and griefing... I just wanna grill for god's sake!" + icon_state = "cookflops" + species_restricted = null + body_parts_covered = 0 + +/obj/item/clothing/shoes/tourist_1 + name = "tourist sandals" + desc = "Black sandals usually worn by tourists. Need I say more?" + icon_state = "tourist_1" + species_restricted = null + body_parts_covered = 0 + +/obj/item/clothing/shoes/tourist_2 + name = "tourist sandals" + desc = "Green sandals usually worn by tourists. Need I say more?" + icon_state = "tourist_2" + species_restricted = null + body_parts_covered = 0 + /obj/item/clothing/shoes/sandal/clogs name = "plastic clogs" desc = "A pair of plastic clog shoes." @@ -137,15 +164,9 @@ slowdown = SHOES_SLOWDOWN+0.5 species_restricted = null -/obj/item/clothing/shoes/flipflop - name = "flip flops" - desc = "A pair of foam flip flops. For those not afraid to show a little ankle." - icon_state = "thongsandal" - addblends = "thongsandal_a" - /obj/item/clothing/shoes/athletic name = "athletic shoes" - desc = "A pair of sleek atheletic shoes. Made by and for the sporty types." + desc = "A pair of sleek athletic shoes. Made by and for the sporty types." icon_state = "sportshoe" addblends = "sportshoe_a" item_state_slots = list(slot_r_hand_str = "sportheld", slot_l_hand_str = "sportheld") @@ -204,4 +225,12 @@ bootcolor = "orange" /obj/item/clothing/shoes/boots/ranger/yellow - bootcolor = "yellow" \ No newline at end of file + bootcolor = "yellow" + +/obj/item/clothing/shoes/primitive + name = "primitive shoes" + desc = "Some patched together rags. Better than being barefoot." + icon_state = "rag" + force = 0 + drop_sound = 'sound/items/drop/clothing.ogg' + pickup_sound = 'sound/items/pickup/clothing.ogg' \ No newline at end of file diff --git a/code/modules/clothing/spacesuits/miscellaneous.dm b/code/modules/clothing/spacesuits/miscellaneous.dm index 391fb2ab67..631c46bdf5 100644 --- a/code/modules/clothing/spacesuits/miscellaneous.dm +++ b/code/modules/clothing/spacesuits/miscellaneous.dm @@ -22,6 +22,8 @@ slowdown = 1.5 armor = list(melee = 65, bullet = 50, laser = 50, energy = 25, bomb = 50, bio = 100, rad = 50) flags_inv = HIDEGLOVES|HIDESHOES|HIDEJUMPSUIT|HIDETAIL + min_pressure_protection = 0 + max_pressure_protection = 2 * ONE_ATMOSPHERE cold_protection = UPPER_TORSO | LOWER_TORSO | LEGS | FEET | ARMS | HANDS min_cold_protection_temperature = SPACE_SUIT_MIN_COLD_PROTECTION_TEMPERATURE siemens_coefficient = 0.7 diff --git a/code/modules/clothing/spacesuits/rig/modules/modules.dm b/code/modules/clothing/spacesuits/rig/modules/modules.dm index 0762fedeae..f8821c89d0 100644 --- a/code/modules/clothing/spacesuits/rig/modules/modules.dm +++ b/code/modules/clothing/spacesuits/rig/modules/modules.dm @@ -95,7 +95,7 @@ return var/obj/item/stack/cable_coil/cable = W - if(!cable.amount >= 5) + if(!cable.get_amount() >= 5) to_chat(user, "You need five units of cable to repair \the [src].") return diff --git a/code/modules/clothing/spacesuits/rig/modules/specific/crusher_gauntlets.dm b/code/modules/clothing/spacesuits/rig/modules/specific/crusher_gauntlets.dm index 3dff20284f..9d156a1361 100644 --- a/code/modules/clothing/spacesuits/rig/modules/specific/crusher_gauntlets.dm +++ b/code/modules/clothing/spacesuits/rig/modules/specific/crusher_gauntlets.dm @@ -13,7 +13,7 @@ usable = 0 toggleable = 1 use_power_cost = 0 - active_power_cost = 2.5 + active_power_cost = 0 passive_power_cost = 0 var/obj/item/weapon/kinetic_crusher/machete/gauntlets/rig/stored_gauntlets diff --git a/code/modules/clothing/spacesuits/rig/modules/specific/passive_protection.dm b/code/modules/clothing/spacesuits/rig/modules/specific/passive_protection.dm new file mode 100644 index 0000000000..c27e0d9ce3 --- /dev/null +++ b/code/modules/clothing/spacesuits/rig/modules/specific/passive_protection.dm @@ -0,0 +1,166 @@ +// contains the Radiation Absorption Device (RAD) and Atmospheric Protective Equipment (APE) modules +// you shits ready for some COPY AND PASTE? +/obj/item/rig_module/rad_shield + name = "radiation absorption device" + desc = "The acronym of this device - R.A.D. - and its full name both convey the application of the module." + description_info = "Through the usage of powered radiation collectors optimized for absorption rather than power generation, it protects the suit's wearer \ + from incoming ionizing radiation and converts it into a significantly less harmful form. This comes at the cost of concerningly high power consumption, \ + and thus should only be used in short bursts." + icon_state = "radsoak" + toggleable = 1 + disruptable = 1 + disruptive = 0 + + use_power_cost = 25 + active_power_cost = 25 + passive_power_cost = 0 + module_cooldown = 30 + + activate_string = "Enable Supplemental Radiation Shielding" + deactivate_string = "Disable Supplemental Radiation Shielding" + + interface_name = "radiation absorption system" + interface_desc = "Provides passive protection against radiation, at the cost of power." + var/stored_rad_armor = 0 + +/obj/item/rig_module/rad_shield/activate() + + if(!..()) + return 0 + + var/mob/living/carbon/human/H = holder.wearer + var/obj/item/clothing/shoes/boots = holder.boots + var/obj/item/clothing/suit/space/rig/chest = holder.chest + var/obj/item/clothing/head/helmet/space/rig/helmet = holder.helmet + var/obj/item/clothing/gloves/gauntlets/rig/gloves = holder.gloves + + to_chat(H, "You activate your suit's powered radiation shielding.") + stored_rad_armor = holder.armor["rad"] + if(boots) + boots.armor["rad"] = 100 + if(chest) + chest.armor["rad"] = 100 + if(helmet) + helmet.armor["rad"] = 100 + if(gloves) + gloves.armor["rad"] = 100 + holder.armor["rad"] = 100 + +/obj/item/rig_module/rad_shield/deactivate() + + if(!..()) + return 0 + + var/mob/living/carbon/human/H = holder.wearer + var/obj/item/clothing/shoes/boots = holder.boots + var/obj/item/clothing/suit/space/rig/chest = holder.chest + var/obj/item/clothing/head/helmet/space/rig/helmet = holder.helmet + var/obj/item/clothing/gloves/gauntlets/rig/gloves = holder.gloves + + to_chat(H, "You deactivate your suit's powered radiation shielding.") + + if(boots) + boots.armor["rad"] = stored_rad_armor + if(chest) + chest.armor["rad"] = stored_rad_armor + if(helmet) + helmet.armor["rad"] = stored_rad_armor + if(gloves) + gloves.armor["rad"] = stored_rad_armor + holder.armor["rad"] = stored_rad_armor + + stored_rad_armor = 0 + +/obj/item/rig_module/rad_shield/advanced + name = "advanced radiation absorption device" + desc = "The acronym of this device - R.A.D. - and its full name both convey the application of the module. It has a changelog inscribed \ + on the underside of the casing." + use_power_cost = 5 + active_power_cost = 5 + +/obj/item/rig_module/atmos_shield + name = "atmospheric protection enhancement suite" + desc = "The acronym of this suite - A.P.E. - unlike its loosely related cousin, the R.A.D., is remarkably unintuitive." + description_info = "Through the usage of powered shielding optimized for protection against the elements rather than from external physical issues, \ + it protects the suit's wearer from atmospheric pressure and temperatures. This comes at the cost of concerningly high power consumption, \ + and thus should only be used in short bursts." + icon_state = "atmosoak" + + toggleable = 1 + disruptable = 1 + disruptive = 0 + + use_power_cost = 25 + active_power_cost = 25 + passive_power_cost = 0 + module_cooldown = 30 + + activate_string = "Enable Powered Atmospheric Shielding" + deactivate_string = "Disable Powered Atmospheric Shielding" + + interface_name = "atmospheric protection enhancements" + interface_desc = "Provides passive protection against the atmosphere, at the cost of power." + var/stored_max_pressure = 0 + var/stored_max_temp = 0 + +/obj/item/rig_module/atmos_shield/activate() + + if(!..()) + return 0 + + var/mob/living/carbon/human/H = holder.wearer + var/obj/item/clothing/shoes/boots = holder.boots + var/obj/item/clothing/suit/space/rig/chest = holder.chest + var/obj/item/clothing/head/helmet/space/rig/helmet = holder.helmet + var/obj/item/clothing/gloves/gauntlets/rig/gloves = holder.gloves + + stored_max_pressure = holder.max_pressure_protection + stored_max_temp = holder.max_heat_protection_temperature + + to_chat(H, "You activate your suit's powered atmospheric shielding.") + + if(boots) + boots.max_pressure_protection = INFINITY + boots.max_heat_protection_temperature = INFINITY + if(chest) + chest.max_pressure_protection = INFINITY + chest.max_heat_protection_temperature = INFINITY + if(helmet) + helmet.max_pressure_protection = INFINITY + helmet.max_heat_protection_temperature = INFINITY + if(gloves) + gloves.max_pressure_protection = INFINITY + gloves.max_heat_protection_temperature = INFINITY + holder.max_pressure_protection = INFINITY + holder.max_heat_protection_temperature = INFINITY + +/obj/item/rig_module/atmos_shield/deactivate() + + if(!..()) + return 0 + + var/mob/living/carbon/human/H = holder.wearer + var/obj/item/clothing/shoes/boots = holder.boots + var/obj/item/clothing/suit/space/rig/chest = holder.chest + var/obj/item/clothing/head/helmet/space/rig/helmet = holder.helmet + var/obj/item/clothing/gloves/gauntlets/rig/gloves = holder.gloves + + to_chat(H, "You deactivate your suit's powered atmospheric shielding.") + + if(boots) + boots.max_pressure_protection = stored_max_pressure + boots.max_heat_protection_temperature = stored_max_temp + if(chest) + chest.max_pressure_protection = stored_max_pressure + chest.max_heat_protection_temperature = stored_max_temp + if(helmet) + helmet.max_pressure_protection = stored_max_pressure + helmet.max_heat_protection_temperature = stored_max_temp + if(gloves) + gloves.max_pressure_protection = stored_max_pressure + gloves.max_heat_protection_temperature = stored_max_temp + holder.max_pressure_protection = stored_max_pressure + holder.max_heat_protection_temperature = stored_max_temp + + stored_max_pressure = 0 + stored_max_temp = 0 \ No newline at end of file diff --git a/code/modules/clothing/spacesuits/rig/rig.dm b/code/modules/clothing/spacesuits/rig/rig.dm index a749d6824d..5292209807 100644 --- a/code/modules/clothing/spacesuits/rig/rig.dm +++ b/code/modules/clothing/spacesuits/rig/rig.dm @@ -183,7 +183,7 @@ . += "The access panel is [locked? "locked" : "unlocked"]." . += "The maintenance panel is [open ? "open" : "closed"]." . += "Hardsuit systems are [offline ? "offline" : "online"]." - . += "The cooling stystem is [cooling_on ? "active" : "inactive"]." + . += "The cooling system is [cooling_on ? "active" : "inactive"]." if(open) . += "It's equipped with [english_list(installed_modules)]." @@ -414,10 +414,10 @@ if(!cell) return if(cell.charge <= 0) - to_chat(user, "\The [src] has no power!.") + to_chat(user, "\The [src] has no power!") return if(!suit_is_deployed()) - to_chat(user, "The hardsuit needs to be deployed first!.") + to_chat(user, "The hardsuit needs to be deployed first!") return cooling_on = 1 diff --git a/code/modules/clothing/spacesuits/rig/rig_tgui.dm b/code/modules/clothing/spacesuits/rig/rig_tgui.dm index 0a493264e5..66c7266d3d 100644 --- a/code/modules/clothing/spacesuits/rig/rig_tgui.dm +++ b/code/modules/clothing/spacesuits/rig/rig_tgui.dm @@ -51,6 +51,7 @@ else data["ai"] = FALSE + data["cooling"] = cooling_on data["sealed"] = !canremove data["sealing"] = sealing data["helmet"] = (helmet ? "[helmet.name]" : "None.") @@ -130,6 +131,9 @@ if("toggle_seals") toggle_seals(usr) . = TRUE + if("toggle_cooling") + toggle_cooling(usr) // cooling toggles have its own to_chats, tbf + . = TRUE if("toggle_ai_control") ai_override_enabled = !ai_override_enabled notify_ai("Synthetic suit control has been [ai_override_enabled ? "enabled" : "disabled"].") diff --git a/code/modules/clothing/spacesuits/void/event.dm b/code/modules/clothing/spacesuits/void/event.dm index a80b3eb972..0fff3afcad 100644 --- a/code/modules/clothing/spacesuits/void/event.dm +++ b/code/modules/clothing/spacesuits/void/event.dm @@ -260,6 +260,32 @@ /obj/item/weapon/cell ) +//Miner's Crewsuit (BROWN) +//Basically just the basic suit, but with brown markings. If anyone wants to tweak this, go wild. +/obj/item/clothing/head/helmet/space/void/refurb/mining + name = "vintage miner's's voidsuit helmet" + desc = "A refurbished early contact era voidsuit helmet of human design. These things aren't especially good against modern weapons but they're sturdy, incredibly easy to come by, and there are lots of spare parts for repairs. The visor has a bad habit of fogging up and collecting condensation, but it beats sucking hard vacuum. This one has brown markings, denoting it as a miner's helmet." + icon_state = "rig0-vintageminer" + item_state_slots = list(slot_r_hand_str = "syndicate-helm-black", slot_l_hand_str = "syndicate-helm-black") + armor = list(melee = 30, bullet = 15, laser = 15,energy = 5, bomb = 20, bio = 100, rad = 50) + light_overlay = "helmet_light" + +/obj/item/clothing/suit/space/void/refurb/mining + name = "vintage miner's voidsuit" + desc = "A refurbished early contact era voidsuit of human design. These things aren't especially good against modern weapons but they're sturdy, incredibly easy to come by, and there are lots of spare parts for repairs. Many old-timer spacers swear by these old things, even if new powered hardsuits have more features and better armor. This one has brown markings, denoting it as a miner's suit." + icon_state = "rig-vintageminer" + item_state_slots = list(slot_r_hand_str = "sec_voidsuitTG", slot_l_hand_str = "sec_voidsuitTG") + armor = list(melee = 30, bullet = 15, laser = 15,energy = 5, bomb = 20, bio = 100, rad = 50) + allowed = list(/obj/item/device/flashlight, + /obj/item/weapon/tank, + /obj/item/device/suit_cooling_unit, + /obj/item/weapon/storage/briefcase/inflatable, + /obj/item/device/gps, + /obj/item/device/radio/beacon, + /obj/item/weapon/pickaxe, + /obj/item/weapon/shovel + ) + //Mercenary Crewsuit (RED, CROSS) //The best of the best, this should be ultra-rare /obj/item/clothing/head/helmet/space/void/refurb/mercenary diff --git a/code/modules/clothing/spacesuits/void/event_vr.dm b/code/modules/clothing/spacesuits/void/event_vr.dm index a786acfd51..dd8e8fce2c 100644 --- a/code/modules/clothing/spacesuits/void/event_vr.dm +++ b/code/modules/clothing/spacesuits/void/event_vr.dm @@ -55,6 +55,15 @@ /obj/item/clothing/suit/space/void/refurb/pilot/talon name = "talon pilot voidsuit" +/obj/item/clothing/head/helmet/space/void/refurb/mining/talon + name = "talon miner voidsuit helmet" + desc = "A refurbished early contact era voidsuit helmet of human design. These things aren't especially good against modern weapons but they're sturdy, incredibly easy to come by, and there are lots of spare parts for repairs. The visor has a bad habit of fogging up and collecting condensation, but it beats sucking hard vacuum. \"ITV TALON\" has been stamped onto the sides of the helmet." + camera_networks = list(NETWORK_TALON_HELMETS) + +/obj/item/clothing/suit/space/void/refurb/mining/talon + name = "talon miner voidsuit" + desc = "A refurbished early contact era voidsuit of human design. These things aren't especially good against modern weapons but they're sturdy, incredibly easy to come by, and there are lots of spare parts for repairs. Many old-timer spacers swear by these old things, even if new powered hardsuits have more features and better armor. \"ITV TALON\" is stamped across the left side of the breastplate in faded faux-gold." + /obj/item/clothing/head/helmet/space/void/refurb/research/talon name = "talon scientific voidsuit helmet" camera_networks = list(NETWORK_TALON_HELMETS) diff --git a/code/modules/clothing/spacesuits/void/station.dm b/code/modules/clothing/spacesuits/void/station.dm index 444f563127..33728557df 100644 --- a/code/modules/clothing/spacesuits/void/station.dm +++ b/code/modules/clothing/spacesuits/void/station.dm @@ -329,7 +329,7 @@ icon_state = "rig0-atmos" item_state_slots = list(slot_r_hand_str = "atmos_helm", slot_l_hand_str = "atmos_helm") armor = list(melee = 40, bullet = 5, laser = 20, energy = 5, bomb = 35, bio = 100, rad = 50) - max_heat_protection_temperature = FIRE_HELMET_MAX_HEAT_PROTECTION_TEMPERATURE + max_heat_protection_temperature = FIRE_HELMET_MAX_HEAT_PROTECTION_TEMPERATURE+15000 light_overlay = "helmet_light_dual" min_pressure_protection = 0 * ONE_ATMOSPHERE max_pressure_protection = 20* ONE_ATMOSPHERE @@ -340,7 +340,7 @@ icon_state = "rig-atmos" item_state_slots = list(slot_r_hand_str = "atmos_voidsuit", slot_l_hand_str = "atmos_voidsuit") armor = list(melee = 40, bullet = 5, laser = 20, energy = 5, bomb = 35, bio = 100, rad = 50) - max_heat_protection_temperature = FIRESUIT_MAX_HEAT_PROTECTION_TEMPERATURE + max_heat_protection_temperature = FIRESUIT_MAX_HEAT_PROTECTION_TEMPERATURE+15000 min_pressure_protection = 0 * ONE_ATMOSPHERE max_pressure_protection = 20* ONE_ATMOSPHERE breach_threshold = 16 //Extra Thicc diff --git a/code/modules/clothing/suits/armor_vr.dm b/code/modules/clothing/suits/armor_vr.dm index c4a515d4f6..a55d6ff93d 100644 --- a/code/modules/clothing/suits/armor_vr.dm +++ b/code/modules/clothing/suits/armor_vr.dm @@ -114,6 +114,8 @@ icon_state = "bedevere" body_parts_covered = UPPER_TORSO|LOWER_TORSO + + //Deluxe explorer suit /obj/item/clothing/suit/armor/pcarrier/explorer/deluxe name = "modular explorer suit" @@ -123,7 +125,7 @@ /obj/item/clothing/suit/armor/crusader name = "crusader armor" desc = "God will protect those who defend his faith." - + armor = list("melee" = 50, "bullet" = 50, "laser" = 50, "energy" = 25, "bomb" = 30, "bio" = 0, "rad" = 0) icon = 'icons/inventory/suit/item_vr.dmi' @@ -133,9 +135,37 @@ /obj/item/clothing/head/helmet/crusader name = "crusader helmet" desc = "God will protect those who defend his faith." - + armor = list("melee" = 50, "bullet" = 50, "laser" = 50, "energy" = 25, "bomb" = 30, "bio" = 0, "rad" = 0) icon = 'icons/inventory/head/item_vr.dmi' default_worn_icon = 'icons/inventory/head/mob_vr.dmi' icon_state = "crusader_head" + +/obj/item/clothing/suit/armor/combat/crusader_explo + name = "explorer low tech suit" + desc = "A low tech armoured suit for exploring harsh environments." + icon_state = "crusader_explo" + icon = 'icons/obj/clothing/knights_vr.dmi' + icon_override = 'icons/obj/clothing/knights_vr.dmi' + flags = THICKMATERIAL + body_parts_covered = UPPER_TORSO|LOWER_TORSO|LEGS|ARMS + min_cold_protection_temperature = SPACE_SUIT_MIN_COLD_PROTECTION_TEMPERATURE + cold_protection = UPPER_TORSO|LOWER_TORSO|LEGS|ARMS + slowdown=0 + siemens_coefficient = 0.9 + armor = list(melee = 30, bullet = 20, laser = 20, energy = 20, bomb = 35, bio = 75, rad = 35) // Inferior to sec vests in bullet/laser but better for environmental protection. + allowed = list( + /obj/item/device/flashlight, + /obj/item/weapon/gun, + /obj/item/ammo_magazine, + /obj/item/weapon/melee, + /obj/item/weapon/material/knife, + /obj/item/weapon/tank, + /obj/item/device/radio, + /obj/item/weapon/pickaxe + ) + +/obj/item/clothing/suit/armor/combat/crusader_explo/FM + name = "field medic low tech suit" + icon_state = "crusader_explo/FM" diff --git a/code/modules/clothing/suits/hooded.dm b/code/modules/clothing/suits/hooded.dm index 1a250bc683..f1eb67dc03 100644 --- a/code/modules/clothing/suits/hooded.dm +++ b/code/modules/clothing/suits/hooded.dm @@ -63,26 +63,32 @@ else RemoveHood() -/obj/item/clothing/suit/storage/hooded/carp_costume +/obj/item/clothing/suit/storage/hooded/costume + body_parts_covered = UPPER_TORSO|LOWER_TORSO|ARMS + flags_inv = HIDEJUMPSUIT|HIDETIE|HIDEHOLSTER + cold_protection = UPPER_TORSO|LOWER_TORSO|ARMS + action_button_name = "Toggle Hood" + +/obj/item/clothing/suit/storage/hooded/costume/siffet + name = "siffet costume" + desc = "A costume made from 'synthetic' siffet fur, it smells like a weasel nest." + icon_state = "siffet" + item_state_slots = list(slot_r_hand_str = "siffet", slot_l_hand_str = "siffet") + hoodtype = /obj/item/clothing/head/hood/siffet_hood + +/obj/item/clothing/suit/storage/hooded/costume/carp name = "carp costume" desc = "A costume made from 'synthetic' carp scales, it smells." icon_state = "carp_casual" item_state_slots = list(slot_r_hand_str = "carp_casual", slot_l_hand_str = "carp_casual") //Does not exist -S2- - body_parts_covered = UPPER_TORSO|LOWER_TORSO|ARMS - flags_inv = HIDEJUMPSUIT|HIDETIE|HIDEHOLSTER - cold_protection = UPPER_TORSO|LOWER_TORSO|ARMS - min_cold_protection_temperature = SPACE_SUIT_MIN_COLD_PROTECTION_TEMPERATURE //Space carp like space, so you should too - action_button_name = "Toggle Carp Hood" hoodtype = /obj/item/clothing/head/hood/carp_hood + min_cold_protection_temperature = SPACE_SUIT_MIN_COLD_PROTECTION_TEMPERATURE //Space carp like space, so you should too -/obj/item/clothing/suit/storage/hooded/ian_costume //It's Ian, rub his bell- oh god what happened to his inside parts? +/obj/item/clothing/suit/storage/hooded/costume/ian //It's Ian, rub his bell- oh god what happened to his inside parts? name = "corgi costume" desc = "A costume that looks like someone made a human-like corgi, it won't guarantee belly rubs." icon_state = "ian" item_state_slots = list(slot_r_hand_str = "ian", slot_l_hand_str = "ian") //Does not exist -S2- - body_parts_covered = UPPER_TORSO|LOWER_TORSO|ARMS - flags_inv = HIDEJUMPSUIT|HIDETIE|HIDEHOLSTER - action_button_name = "Toggle Ian Hood" hoodtype = /obj/item/clothing/head/hood/ian_hood // winter coats go here @@ -339,6 +345,18 @@ light_range = 1.2 light_on = TRUE +/obj/item/clothing/suit/storage/hooded/wintercoat/christmasred + name = "red christmas winter coat" + desc = "A festive red Christmas coat! Smells like Candy Cane!" + icon_state = "coatchristmasr" + hoodtype = /obj/item/clothing/head/hood/winter/christmasred + +/obj/item/clothing/suit/storage/hooded/wintercoat/christmasgreen + name = "green christmas winter coat" + desc = "A festive green Christmas coat! Smells like Candy Cane!" + icon_state = "coatchristmasg" + hoodtype = /obj/item/clothing/head/hood/winter/christmasgreen + // winter coats end here /obj/item/clothing/suit/storage/hooded/explorer diff --git a/code/modules/clothing/suits/jobs.dm b/code/modules/clothing/suits/jobs.dm index 73d253415d..bce11495c7 100644 --- a/code/modules/clothing/suits/jobs.dm +++ b/code/modules/clothing/suits/jobs.dm @@ -183,12 +183,12 @@ /obj/item/clothing/suit/storage/hazardvest/green name = "green hazard vest" - desc = "A high-visibility vest used by emergency responders. This one is green!" + desc = "A high-visibility vest used by emergency responders." icon_state = "hazard_g" /obj/item/clothing/suit/storage/hazardvest/white name = "white hazard vest" - desc = "A high-visibility vest used in work zones. This one has a red cross!" + desc = "A high-visibility vest used in work zones. This one bears the symbol of a disaster relief team!" icon_state = "hazard_w" //Lawyer @@ -246,9 +246,17 @@ //Mime /obj/item/clothing/suit/suspenders - name = "suspenders" + name = "red suspenders" desc = "They suspend the illusion of the mime's play." icon = 'icons/inventory/belt/item.dmi' icon_state = "suspenders" blood_overlay_type = "armor" //it's the less thing that I can put here body_parts_covered = 0 + +/obj/item/clothing/suit/suspenders/blue + name = "blue suspenders" + icon_state = "suspenders_blue" + +/obj/item/clothing/suit/suspenders/grey + name = "grey suspenders" + icon_state = "suspenders_grey" \ No newline at end of file diff --git a/code/modules/clothing/suits/labcoat_vr.dm b/code/modules/clothing/suits/labcoat_vr.dm index 4f82afd2e3..1e3f13a411 100644 --- a/code/modules/clothing/suits/labcoat_vr.dm +++ b/code/modules/clothing/suits/labcoat_vr.dm @@ -1,7 +1,7 @@ // 'Modern' labcoats /obj/item/clothing/suit/storage/toggle/labcoat/modern name = "modern labcoat" - + icon = 'icons/inventory/suit/item_vr.dmi' default_worn_icon = 'icons/inventory/suit/mob_vr.dmi' icon_state = "labcoat_mod" @@ -25,3 +25,41 @@ icon = 'icons/inventory/head/item_vr.dmi' default_worn_icon = 'icons/inventory/head/mob_vr.dmi' icon_state = "bio_mod" + +// Labcoat icons from before the fulpstation labcoats became default +// denoted "old" to avoid conflict + +/obj/item/clothing/suit/storage/toggle/labcoat/old + name = "old-school labcoat" + + icon = 'icons/inventory/suit/item_vr.dmi' + default_worn_icon = 'icons/inventory/suit/mob_vr.dmi' + icon_state = "labcoat_old" + +/obj/item/clothing/suit/storage/toggle/labcoat/old/tox + name = "old-school scientist's labcoat" + + icon = 'icons/inventory/suit/item_vr.dmi' + default_worn_icon = 'icons/inventory/suit/mob_vr.dmi' + icon_state = "labcoat_old_tox" + +/obj/item/clothing/suit/storage/toggle/labcoat/old/chem + name = "old-school chemist's labcoat" + + icon = 'icons/inventory/suit/item_vr.dmi' + default_worn_icon = 'icons/inventory/suit/mob_vr.dmi' + icon_state = "labcoat_old_chem" + +/obj/item/clothing/suit/storage/toggle/labcoat/old/vir + name = "old-school virologist's labcoat" + + icon = 'icons/inventory/suit/item_vr.dmi' + default_worn_icon = 'icons/inventory/suit/mob_vr.dmi' + icon_state = "labcoat_old_vir" + +/obj/item/clothing/suit/storage/toggle/labcoat/old/cmo + name = "old-school CMO's labcoat" + + icon = 'icons/inventory/suit/item_vr.dmi' + default_worn_icon = 'icons/inventory/suit/mob_vr.dmi' + icon_state = "labcoat_old_cmo" \ No newline at end of file diff --git a/code/modules/clothing/suits/miscellaneous.dm b/code/modules/clothing/suits/miscellaneous.dm index bd320bbfa6..61825a6e5d 100644 --- a/code/modules/clothing/suits/miscellaneous.dm +++ b/code/modules/clothing/suits/miscellaneous.dm @@ -3,6 +3,7 @@ * Lasertag * Costume * Misc + * Department Jackets */ // -S2-note- Needs categorizing and sorting. @@ -10,8 +11,9 @@ /* * Lasertag */ + /obj/item/clothing/suit/bluetag - name = "blue laser tag armour" + name = "blue laser tag armor" desc = "Blue Pride, Station Wide." icon_state = "bluetag" item_state_slots = list(slot_r_hand_str = "tdblue", slot_l_hand_str = "tdblue") @@ -20,8 +22,13 @@ allowed = list (/obj/item/weapon/gun/energy/lasertag/blue) siemens_coefficient = 3.0 +/obj/item/clothing/suit/bluetag/sub + name = "Brigader Armor" + desc = "Repilca rmor commonly worn by Spacer Union Brigade members from the hit series Spacer Trail. Modified for Laser Tag (Blue Team)." + icon_state = "bluetag2" + /obj/item/clothing/suit/redtag - name = "red laser tag armour" + name = "red laser tag armor" desc = "Reputed to go faster." icon_state = "redtag" item_state_slots = list(slot_r_hand_str = "tdred", slot_l_hand_str = "tdred") @@ -30,9 +37,15 @@ allowed = list (/obj/item/weapon/gun/energy/lasertag/red) siemens_coefficient = 3.0 +/obj/item/clothing/suit/redtag/dom + name = "Mu'tu'bi Armor" + desc = "Repilca rmor commonly worn by Dominion Of Mu'tu'bi soldiers from the hit series Spacer Trail. Modified for Laser Tag (Red Team)." + icon_state = "redtag2" + /* * Costume */ + /obj/item/clothing/suit/pirate name = "pirate coat" desc = "Yarr." @@ -227,6 +240,7 @@ /* * Misc */ + /obj/item/clothing/suit/straight_jacket name = "straight jacket" desc = "A suit that completely restrains the wearer." @@ -261,20 +275,62 @@ body_parts_covered = UPPER_TORSO|ARMS flags_inv = HIDETIE|HIDEHOLSTER +/* + * Kimonos + */ + /obj/item/clothing/suit/kimono - name = "kimono" + name = "traditional kimono" desc = "A traditional Japanese kimono." icon_state = "kimono" addblends = "kimono_a" /obj/item/clothing/suit/kamishimo - name = "kamishimo" + name = "traditional kamishimo" desc = "Traditional Japanese menswear." icon_state = "kamishimo" + addblends = "kamishimo_a" + +/obj/item/clothing/suit/kimono/red + name = "red kimono" + icon_state = "kimono_red" + +/obj/item/clothing/suit/kimono/orange + name = "orange kimono" + icon_state = "kimono_orange" + +/obj/item/clothing/suit/kimono/yellow + name = "yellow kimono" + icon_state = "kimono_yellow" + +/obj/item/clothing/suit/kimono/green + name = "green kimono" + icon_state = "kimono_green" + +/obj/item/clothing/suit/kimono/blue + name = "blue kimono" + icon_state = "kimono_blue" + +/obj/item/clothing/suit/kimono/purple + name = "purple kimono" + icon_state = "kimono_purple" + +/obj/item/clothing/suit/kimono/violet + name = "violet kimono" + icon_state = "kimono_violet" + +/obj/item/clothing/suit/kimono/pink + name = "pink kimono" + icon_state = "kimono_pink" + +/obj/item/clothing/suit/kimono/earth + name = "earth kimono" + icon_state = "kimono_earth" /* - * coats + * Coats */ + /obj/item/clothing/suit/leathercoat name = "leather coat" desc = "A long, thick black leather coat." @@ -469,6 +525,11 @@ min_cold_protection_temperature = T0C - 20 siemens_coefficient = 0.7 +/obj/item/clothing/suit/storage/toggle/bomber/retro + name = "retro bomber jacket" + desc = "A retro style, fur-lined leather bomber jacket that invokes the early days of space exploration when spacemen were spacemen, and laser guns had funny little antennae on them." + icon_state = "retrojacket" + /obj/item/clothing/suit/storage/bomber/alt name = "bomber jacket" desc = "A thick, well-worn WW2 leather bomber jacket." @@ -933,4 +994,13 @@ src.icon_state = "caution" src.item_state = "caution" usr.show_message("You turn the wet floor sign off.") - update_clothing_icon() \ No newline at end of file + update_clothing_icon() + +//Ruin Marine (Doom Marine) +/obj/item/clothing/suit/marine + name = "marine armor" + desc = "A set of marine prop armor from the popular game 'Ruin'." + icon_state = "marine" + body_parts_covered = FEET|LOWER_TORSO|UPPER_TORSO|LEGS + flags_inv = HIDESHOES|HIDEJUMPSUIT|HIDETIE|HIDEHOLSTER + item_state_slots = list(slot_r_hand_str = "green_labcoat", slot_l_hand_str = "green_labcoat") \ No newline at end of file diff --git a/code/modules/clothing/suits/utility.dm b/code/modules/clothing/suits/utility.dm index fb1494f4bc..31f550da77 100644 --- a/code/modules/clothing/suits/utility.dm +++ b/code/modules/clothing/suits/utility.dm @@ -10,9 +10,10 @@ */ /obj/item/clothing/suit/fire - name = "firesuit" + name = "emergency firesuit" desc = "A suit that protects against fire and heat." - icon_state = "fire" + icon_state = "firesuit" + item_state_slots = list(slot_r_hand_str = "black_suit", slot_l_hand_str = "black_suit") w_class = ITEMSIZE_LARGE//bulky item gas_transfer_coefficient = 0.90 permeability_coefficient = 0.50 @@ -27,16 +28,16 @@ min_pressure_protection = 0.2 * ONE_ATMOSPHERE max_pressure_protection = 20 * ONE_ATMOSPHERE - /obj/item/clothing/suit/fire/firefighter - icon_state = "firesuit" - -/obj/item/clothing/suit/fire/heavy //Is this even used?? -S2- name = "firesuit" + icon_state = "firesuit2" + max_heat_protection_temperature = FIRESUIT_MAX_HEAT_PROTECTION_TEMPERATURE+5000 + +/obj/item/clothing/suit/fire/heavy + name = "atmospheric firesuit" desc = "A suit that protects against extreme fire and heat." - //icon_state = "thermal" - item_state_slots = list(slot_r_hand_str = "black_suit", slot_l_hand_str = "black_suit") - w_class = ITEMSIZE_LARGE//bulky item + icon_state = "atmos_firesuit" + max_heat_protection_temperature = FIRESUIT_MAX_HEAT_PROTECTION_TEMPERATURE+10000 slowdown = 1.5 /* diff --git a/code/modules/clothing/suits/utility_vr.dm b/code/modules/clothing/suits/utility_vr.dm index 19475fbe8c..9302fcf11b 100644 --- a/code/modules/clothing/suits/utility_vr.dm +++ b/code/modules/clothing/suits/utility_vr.dm @@ -29,3 +29,5 @@ SPECIES_VOX = 'icons/inventory/suit/mob_vox.dmi', SPECIES_WEREBEAST = 'icons/inventory/suit/mob_vr_werebeast.dmi' ) + + diff --git a/code/modules/clothing/under/accessories/accessory.dm b/code/modules/clothing/under/accessories/accessory.dm index 2157f9ceec..a815ff3e4a 100644 --- a/code/modules/clothing/under/accessories/accessory.dm +++ b/code/modules/clothing/under/accessories/accessory.dm @@ -435,4 +435,73 @@ name = "sash" desc = "A plain, unadorned sash." icon_state = "sash" - slot = ACCESSORY_SLOT_OVER \ No newline at end of file + slot = ACCESSORY_SLOT_OVER + +//Gaiter scarves +/obj/item/clothing/accessory/gaiter + name = "red neck gaiter" + desc = "A slightly worn neck gaiter, it's loose enough to be worn comfortably like a scarf. Commonly used by outdoorsmen and mercenaries, both to keep warm and keep debris away from the face." + icon_state = "gaiter_red" + slot_flags = SLOT_MASK | SLOT_TIE + body_parts_covered = FACE + w_class = ITEMSIZE_SMALL + slot = ACCESSORY_SLOT_INSIGNIA // snowflakey, i know, shut up + item_flags = FLEXIBLEMATERIAL + var/breath_masked = FALSE + var/obj/item/clothing/mask/breath/breathmask + action_button_name = "Pull On Gaiter" + +/obj/item/clothing/accessory/gaiter/update_clothing_icon() + . = ..() + if(ismob(src.loc)) + var/mob/M = src.loc + M.update_inv_wear_mask() + +/obj/item/clothing/accessory/gaiter/attackby(obj/item/I, mob/user) + if(istype(I, /obj/item/clothing/mask/breath)) + to_chat(user, SPAN_NOTICE("You tuck [I] behind [src].")) + breathmask = I + breath_masked = TRUE + user.drop_from_inventory(I, drop_location()) + I.forceMove(src) + item_flags &= ~FLEXIBLEMATERIAL + . = ..() + +/obj/item/clothing/accessory/gaiter/AltClick(mob/user) + . = ..() + if(breath_masked && breathmask) + to_chat(user, SPAN_NOTICE("You pull [breathmask] out from behind [src], and it drops to your feet.")) + breathmask.forceMove(drop_location()) + breathmask = null + breath_masked = FALSE + item_flags &= ~AIRTIGHT + item_flags |= FLEXIBLEMATERIAL + +/obj/item/clothing/accessory/gaiter/attack_self(mob/user) + var/gaiterstring = "You pull [src] " + if(src.icon_state == initial(icon_state)) + src.icon_state = "[icon_state]_up" + gaiterstring += "up over your nose[breath_masked ? " and secure the mask tucked underneath." : "."]" + if(breath_masked) + item_flags |= AIRTIGHT + else + src.icon_state = initial(icon_state) + gaiterstring += "down around your neck[breath_masked ? " and dislodge the mask tucked underneath." : "."]" + body_parts_covered &= ~FACE + if(breath_masked) + item_flags &= ~AIRTIGHT + to_chat(user, SPAN_NOTICE(gaiterstring)) + qdel(mob_overlay) // we're gonna need to refresh these + update_clothing_icon() //so our mob-overlays update + +/obj/item/clothing/accessory/gaiter/tan + name = "tan neck gaiter" + icon_state = "gaiter_tan" + +/obj/item/clothing/accessory/gaiter/gray + name = "gray neck gaiter" + icon_state = "gaiter_gray" + +/obj/item/clothing/accessory/gaiter/green + name = "green neck gaiter" + icon_state = "gaiter_green" diff --git a/code/modules/clothing/under/accessories/clothing.dm b/code/modules/clothing/under/accessories/clothing.dm index 3582d8a070..2729696eb6 100644 --- a/code/modules/clothing/under/accessories/clothing.dm +++ b/code/modules/clothing/under/accessories/clothing.dm @@ -1,3 +1,7 @@ +/* + * Formal + */ + /obj/item/clothing/accessory/vest name = "black vest" desc = "Slick black suit vest." @@ -10,6 +14,21 @@ icon_state = "tan_jacket" slot = ACCESSORY_SLOT_OVER +/obj/item/clothing/accessory/jacket/red + name = "red suit jacket" + desc = "Relaxing suit jacket." + icon_state = "red_jacket" + +/obj/item/clothing/accessory/jacket/teal + name = "teal suit jacket" + desc = "Relaxing suit jacket." + icon_state = "teal_jacket" + +/obj/item/clothing/accessory/jacket/green + name = "green suit jacket" + desc = "Relaxing suit jacket." + icon_state = "green_jacket" + /obj/item/clothing/accessory/jacket/charcoal name = "charcoal suit jacket" desc = "Strict suit jacket." @@ -30,6 +49,64 @@ desc = "Lucky suit jacket." icon_state = "checkered_jacket" +/obj/item/clothing/accessory/jacket/gambler + name = "gambler suit jacket" + desc = "Chairman suit jacket." + icon_state = "gambler_jacket" + +/obj/item/clothing/accessory/jacket/extravagant + name = "extravagant suit jacket" + desc = "Luxury suit jacket." + icon_state = "extravagant_jacket" + +/* + * Hawaiian + */ + +/obj/item/clothing/accessory/hawaiian + name = "hawaiian shirt" + desc = "You probably need some welder googles to look at this." + icon_state = "hawaiian_cyan" + armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 0, rad = 0) + slot_flags = SLOT_OCLOTHING | SLOT_TIE + body_parts_covered = UPPER_TORSO|LOWER_TORSO + siemens_coefficient = 0.9 + w_class = ITEMSIZE_NORMAL + slot = ACCESSORY_SLOT_OVER + +/obj/item/clothing/accessory/hawaiian/blue + name = "blue hawaiian shirt" + icon_state = "hawaiian_blue" + +/obj/item/clothing/accessory/hawaiian/pink + name = "pink hawaiian shirt" + icon_state = "hawaiian_pink" + +/obj/item/clothing/accessory/hawaiian/red + name = "red hawaiian shirt" + icon_state = "hawaiian_red" + +/obj/item/clothing/accessory/hawaiian/yellow + name = "yellow hawaiian shirt" + icon_state = "hawaiian_yellow" + +/obj/item/clothing/accessory/hawaiian_random + name = "random hawaiian shirt" + desc = "A random set of hawaiian shirts for style." + +/obj/item/clothing/accessory/hawaiian_random/New() + return pick( + prob(2);/obj/item/clothing/accessory/hawaiian, + prob(2);/obj/item/clothing/accessory/hawaiian/blue, + prob(2);/obj/item/clothing/accessory/hawaiian/pink, + prob(2);/obj/item/clothing/accessory/hawaiian/red, + prob(2);/obj/item/clothing/accessory/hawaiian/yellow + ) + +/* + * Chaps + */ + /obj/item/clothing/accessory/chaps name = "brown chaps" desc = "A pair of loose, brown leather chaps." @@ -43,6 +120,7 @@ /* * Poncho */ + /obj/item/clothing/accessory/poncho name = "poncho" desc = "A simple, comfortable poncho." @@ -131,6 +209,7 @@ /* * Cloak */ + /obj/item/clothing/accessory/poncho/roles/cloak name = "quartermaster's cloak" desc = "An elaborate brown and gold cloak." @@ -235,28 +314,6 @@ icon_state = "colorcloak" item_state = "colorcloak" -/obj/item/clothing/accessory/hawaii - name = "flower-pattern shirt" - desc = "You probably need some welder googles to look at this." - icon_state = "hawaii" - armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 0, rad = 0) - slot_flags = SLOT_OCLOTHING | SLOT_TIE - body_parts_covered = UPPER_TORSO|LOWER_TORSO - siemens_coefficient = 0.9 - w_class = ITEMSIZE_NORMAL - slot = ACCESSORY_SLOT_OVER - -/obj/item/clothing/accessory/hawaii/red - icon_state = "hawaii2" - -/obj/item/clothing/accessory/hawaii/random - name = "flower-pattern shirt" - -/obj/item/clothing/accessory/hawaii/random/New() - if(prob(50)) - icon_state = "hawaii2" - color = color_rotation(rand(-11,12)*15) - /obj/item/clothing/accessory/wcoat name = "waistcoat" desc = "For some classy, murderous fun." @@ -292,23 +349,34 @@ icon_state = "elegant_waistcoat" item_state = "elegant_waistcoat" +/* + * Sweatervests + */ + /obj/item/clothing/accessory/wcoat/swvest - name = "black sweatervest" + name = "black sweater vest" desc = "A sleeveless sweater. Wear this if you don't want your arms to be warm, or if you're a nerd." icon_state = "sweatervest" item_state = "sweatervest" /obj/item/clothing/accessory/wcoat/swvest/blue - name = "blue sweatervest" + name = "blue sweater vest" icon_state = "sweatervest_blue" item_state = "sweatervest_blue" /obj/item/clothing/accessory/wcoat/swvest/red - name = "red sweatervest" + name = "red sweater vest" icon_state = "sweatervest_red" item_state = "sweatervest_red" -//Sweaters. +/obj/item/clothing/accessory/wcoat/swvest/green + name = "green sweater vest" + icon_state = "sweatervest_green" + item_state = "sweatervest_green" + +/* + * Sweaters + */ /obj/item/clothing/accessory/sweater name = "sweater" @@ -376,9 +444,15 @@ desc = "A comfortable turtleneck in a dark red." icon_state = "turtleneck_red" -//*** -// End of sweaters -//*** +/obj/item/clothing/accessory/sweater/virgin + name = "virgin killer" + desc = "A knit sweater that leaves little to the imagination." + icon_state = "virginkiller" + body_parts_covered = UPPER_TORSO|LOWER_TORSO + +/* + * Misc + */ /obj/item/clothing/accessory/cowledvest name = "cowled vest" @@ -404,3 +478,20 @@ name = "orange asymmetrical overcoat" desc = "An asymmetrical orange overcoat in a 2560's fashion." icon_state = "asymovercoat" + +/* + * Cowboy Vests + */ + +/obj/item/clothing/accessory/cowboy_vest + name = "ranger cowboy vest" + desc = "A rugged looking vest made from leather. For those that tame the wilds." + icon_state = "cowboyvest_ranger" + +/obj/item/clothing/accessory/cowboy_vest/brown + name = "brown cowboy vest" + icon_state = "cowboyvest_brown" + +/obj/item/clothing/accessory/cowboy_vest/grey + name = "grey cowboy vest" + icon_state = "cowboyvest_grey" \ No newline at end of file diff --git a/code/modules/clothing/under/accessories/holster_vr.dm b/code/modules/clothing/under/accessories/holster_vr.dm index 8cd7681dd9..2506251a4f 100644 --- a/code/modules/clothing/under/accessories/holster_vr.dm +++ b/code/modules/clothing/under/accessories/holster_vr.dm @@ -1,6 +1,6 @@ /obj/item/clothing/accessory/holster/waist/kinetic_accelerator name = "KA holster" - desc = "A specialized holster, made specifically for Kinetic Accelerator." + desc = "A specialized holster, made specifically for Kinetic Accelerators." can_hold = list(/obj/item/weapon/gun/energy/kinetic_accelerator) /obj/item/clothing/accessory/holster/machete/rapier diff --git a/code/modules/clothing/under/jobs/civilian.dm b/code/modules/clothing/under/jobs/civilian.dm index c675c1b68c..da5d5627be 100644 --- a/code/modules/clothing/under/jobs/civilian.dm +++ b/code/modules/clothing/under/jobs/civilian.dm @@ -68,6 +68,11 @@ icon_state = "chef" rolled_sleeves = 0 +/obj/item/clothing/under/rank/chef/alt + desc = "It's an apron which is given only to the chefs that swear the most." + name = "souschef's uniform" + icon_state = "souschef" + /obj/item/clothing/under/rank/clown name = "clown suit" desc = "Honk!" @@ -95,6 +100,9 @@ permeability_coefficient = 0.50 rolled_sleeves = 0 +/obj/item/clothing/under/rank/hydroponics/alt + icon_state = "hydro" + /obj/item/clothing/under/rank/internalaffairs desc = "The plain, professional attire of an Internal Affairs Agent. The collar is immaculately starched." name = "Internal Affairs uniform" @@ -115,6 +123,10 @@ armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 10, rad = 0) rolled_sleeves = 0 +/obj/item/clothing/under/rank/janitor/alt + name = "janitor's overalls" + icon_state = "janitor_alt" + /obj/item/clothing/under/lawyer desc = "Slick threads." name = "lawyer suit" diff --git a/code/modules/clothing/under/jobs/security.dm b/code/modules/clothing/under/jobs/security.dm index 40d8e12afd..57ec7e9267 100644 --- a/code/modules/clothing/under/jobs/security.dm +++ b/code/modules/clothing/under/jobs/security.dm @@ -93,6 +93,7 @@ H.update_inv_w_uniform(1) to_chat(H, "You roll the sleeves of your shirt [unrolled ? "up" : "down"]") */ + /obj/item/clothing/under/det/grey icon_state = "detective2" desc = "A serious-looking tan dress shirt paired with freshly-pressed black slacks." @@ -120,6 +121,11 @@ desc = "A serious-looking tan dress shirt paired with freshly-pressed black slacks, complete with a red striped tie and waistcoat." starting_accessories = list(/obj/item/clothing/accessory/tie/red_long, /obj/item/clothing/accessory/wcoat) +/obj/item/clothing/under/det/black/waistcoat + icon_state = "detective3" + desc = "A serious-looking tan dress shirt paired with freshly-pressed black slacks, a red tie, and a charcoal vest." + starting_accessories = list(/obj/item/clothing/accessory/tie/red_long, /obj/item/clothing/accessory/wcoat) + /obj/item/clothing/under/det/skirt name = "detective's skirt" icon_state = "detective_skirt" diff --git a/code/modules/clothing/under/miscellaneous.dm b/code/modules/clothing/under/miscellaneous.dm index 562950f89a..8367a6e045 100644 --- a/code/modules/clothing/under/miscellaneous.dm +++ b/code/modules/clothing/under/miscellaneous.dm @@ -1,3 +1,9 @@ +/obj/item/clothing/under/gimmick //used to fix an error + name = "gimmick jumpsuit" + desc = "Something about this jumpsuit feels... off..." + icon_state = "grey" + item_state_slots = list(slot_r_hand_str = "grey", slot_l_hand_str = "grey") + /obj/item/clothing/under/pj/red name = "red pj's" desc = "Sleepwear." @@ -61,6 +67,36 @@ body_parts_covered = UPPER_TORSO|LOWER_TORSO rolled_sleeves = -1 //Please never +/obj/item/clothing/under/clown //i'm only putting it here to make subtypes of it, since the original suit is under/rank/clown + name = "clown suit" + desc = "Honk!" + icon_state = "clown" + rolled_sleeves = -1 + +/obj/item/clothing/under/clown/green + name = "green clown suit" + icon_state = "greenclown" + +/obj/item/clothing/under/clown/purple + name = "purple clown suit" + icon_state = "purpleclown" + +/obj/item/clothing/under/clown/yellow + name = "yellow clown suit" + icon_state = "yellowclown" + +/obj/item/clothing/under/clown/orange + name = "orange clown suit" + icon_state = "orangeclown" + +/obj/item/clothing/under/clown/blue + name = "blue clown suit" + icon_state = "blueclown" + +/obj/item/clothing/under/clown/rainbow + name = "rainbow clown suit" + icon_state = "rainbowclown" + /obj/item/clothing/under/rank/vice name = "vice officer's jumpsuit" desc = "It's the standard issue pretty-boy outfit, as seen on Holo-Vision." @@ -95,19 +131,6 @@ icon_state = "ert_uniform" item_state_slots = list(slot_r_hand_str = "black", slot_l_hand_str = "black") -/obj/item/clothing/under/gov - desc = "A neat proper uniform of someone on offical business. The collar is immaculately starched." - name = "Green formal uniform" - icon_state = "greensuit" - item_state_slots = list(slot_r_hand_str = "centcom", slot_l_hand_str = "centcom") - rolled_sleeves = 0 - starting_accessories = list(/obj/item/clothing/accessory/tie/darkgreen) - -/obj/item/clothing/under/gov/skirt - name = "Green formal skirt uniform" - desc = "A neat proper uniform of someone on offical business. The top button is sewn shut." - icon_state = "greensuit_skirt" - /obj/item/clothing/under/space name = "\improper NASA jumpsuit" desc = "It has a NASA logo on it and is made of space-proofed materials." @@ -168,25 +191,6 @@ desc = "A silk black blouse with a matching gray skirt. Feels proper." icon_state = "gentlesuit_skirt" -/obj/item/clothing/under/gimmick/rank/captain/suit - name = "site manager's suit" - desc = "A green suit and yellow necktie. Exemplifies authority." - icon_state = "green_suit" - item_state_slots = list(slot_r_hand_str = "centcom", slot_l_hand_str = "centcom") - -/obj/item/clothing/under/gimmick/rank/captain/suit/skirt - name = "site manager's skirt suit" - icon_state = "green_suit_skirt" - -/obj/item/clothing/under/gimmick/rank/head_of_personnel/suit - name = "head of personnel's suit" - desc = "A teal suit and yellow necktie. An authoritative yet tacky ensemble." - icon_state = "teal_suit" - item_state_slots = list(slot_r_hand_str = "green", slot_l_hand_str = "green") - -/obj/item/clothing/under/gimmick/rank/head_of_personnel/suit/skirt - name = "head of personnel's skirt suit" - icon_state = "teal_suit_skirt" /obj/item/clothing/under/suit_jacket name = "black suit" @@ -218,17 +222,6 @@ icon_state = "black_suit_fem" item_state = "black_formal_skirt" -/obj/item/clothing/under/suit_jacket/red - name = "red suit" - desc = "A red suit and blue tie. Somewhat formal." - icon_state = "red_suit" - item_state_slots = list(slot_r_hand_str = "lawyer_red", slot_l_hand_str = "lawyer_red") - -/obj/item/clothing/under/suit_jacket/red/skirt - name = "red skirt suit" - desc = "A red suit and blue necktie. Somewhat formal." - icon_state = "red_suit_skirt" - /obj/item/clothing/under/schoolgirl name = "schoolgirl uniform" desc = "It's just like one of my Japanese animes!" @@ -281,6 +274,11 @@ body_parts_covered = UPPER_TORSO|LOWER_TORSO rolled_sleeves = -1 //Please never +/obj/item/clothing/under/sexymime/dress //another style of dress closer to the jumpsuit than the sexy outfit + name = "mime's jumpskirt" + desc = "It's not very colourful." + icon_state = "mimedress" + /obj/item/clothing/under/gladiator name = "gladiator uniform" desc = "Are you not entertained? Is that not why you are here?" @@ -288,13 +286,6 @@ item_state_slots = list(slot_r_hand_str = "yellow", slot_l_hand_str = "yellow") body_parts_covered = LOWER_TORSO -/obj/item/clothing/under/moderncoat - name = "modern wrapped coat" - desc = "The cutting edge of fashion." - icon_state = "moderncoat" - item_state_slots = list(slot_r_hand_str = "red", slot_l_hand_str = "red") - body_parts_covered = UPPER_TORSO|LOWER_TORSO|LEGS - /obj/item/clothing/under/ascetic name = "plain ascetic garb" desc = "Popular with freshly grown vatborn and new age cultists alike." @@ -322,8 +313,9 @@ icon_state = "whitegoldrobe" /* - * dress + * Dress Stuff */ + /obj/item/clothing/under/dress body_parts_covered = UPPER_TORSO|LOWER_TORSO @@ -565,14 +557,40 @@ desc = "A red and black dress fit for a countess." icon_state = "countess" -/obj/item/clothing/under/verglasdress +/obj/item/clothing/under/dress/verglasdress name = "verglas dress" desc = "The modern twist on a forgotten pattern, the Verglas style utilizes comfortable velvet and silver white satin to create an otherworldly effect evocative of winter, or the void." icon_state = "verglas_dress" +/obj/item/clothing/under/dress/goddess + name = "goddess dress" + desc = "A blue and orange dress fit for a goddess." + icon_state = "goddess" + +/obj/item/clothing/under/dress/alpine + name = "alpine dress" + desc = "A green and white dress that makes you want to yodel." + icon_state = "corsetdress" + +/obj/item/clothing/under/dress/goldwrap + name = "golden dress" + desc = "A dress so ostentatious that you feel poorer just looking at it." + icon_state = "golddress" + +/obj/item/clothing/under/dress/golddress + name = "golden wrap" + desc = "An outfit so ostentatious that you feel poorer just looking at it." + icon_state = "goldwrap" + +/obj/item/clothing/under/dress/hightrousers + name = "high-waisted trousers" + desc = "A waistline this high is just made for ripping bodices, swashing buckles, or - just occasionally - sucking blood." + icon_state = "gayvampire" + /* - * wedding stuff + * Wedding Stuff */ + /obj/item/clothing/under/wedding body_parts_covered = UPPER_TORSO|LOWER_TORSO|LEGS @@ -619,8 +637,8 @@ icon_state = "whitegown" /* -Uniforms and such -*/ + * Uniforms and such + */ /obj/item/clothing/under/sundress name = "sundress" @@ -732,6 +750,52 @@ Uniforms and such name = "burgundy skirt" icon_state = "burgundy_suit_skirt" +/obj/item/clothing/under/suit_jacket/red + name = "red suit" + desc = "A red suit and blue tie. Somewhat formal." + icon_state = "red_suit" + item_state_slots = list(slot_r_hand_str = "lawyer_red", slot_l_hand_str = "lawyer_red") + starting_accessories = list(/obj/item/clothing/accessory/tie/navy, /obj/item/clothing/accessory/jacket/red) + +/obj/item/clothing/under/suit_jacket/red/skirt + name = "red skirt" + icon_state = "red_suit_skirt" + +/obj/item/clothing/under/suit_jacket/teal + name = "teal suit" + desc = "A teal suit and yellow necktie. An authoritative yet tacky ensemble." + icon_state = "teal_suit" + item_state_slots = list(slot_r_hand_str = "green", slot_l_hand_str = "green") + starting_accessories = list(/obj/item/clothing/accessory/tie/yellow, /obj/item/clothing/accessory/jacket/teal) + +/obj/item/clothing/under/suit_jacket/teal/skirt + name = "teal skirt suit" + icon_state = "teal_suit_skirt" + +/obj/item/clothing/under/suit_jacket/green + name = "green suit" + desc = "A green suit and yellow necktie. Exemplifies authority." + icon_state = "green_suit" + item_state_slots = list(slot_r_hand_str = "centcom", slot_l_hand_str = "centcom") + starting_accessories = list(/obj/item/clothing/accessory/tie/yellow, /obj/item/clothing/accessory/jacket/green) + +/obj/item/clothing/under/gov + name = "green formal uniform" + desc = "A neat proper uniform of someone on offical business. The collar is immaculately starched." + icon_state = "greensuit" + item_state_slots = list(slot_r_hand_str = "centcom", slot_l_hand_str = "centcom") + starting_accessories = list(/obj/item/clothing/accessory/tie/darkgreen) + rolled_sleeves = 0 + +/obj/item/clothing/under/gov/skirt + name = "green formal skirt" + desc = "A neat proper uniform of someone on offical business. The top button is sewn shut." + icon_state = "greensuit_skirt" + +/obj/item/clothing/under/suit_jacket/green/skirt + name = "green skirt suit" + icon_state = "green_suit_skirt" + /obj/item/clothing/under/suit_jacket/checkered name = "checkered suit" desc = "That's a very nice suit you have there. Shame if something were to happen to it, eh?" @@ -743,6 +807,20 @@ Uniforms and such name = "checkered skirt" icon_state = "checkered_suit_skirt" +/obj/item/clothing/under/suit_jacket/gambler + name = "gambling suit" + desc = "The suit of a gambler. Lady luck be with you." + icon_state = "gambler_suit" + item_state_slots = list(slot_r_hand_str = "lawyer_black", slot_l_hand_str = "lawyer_black") + starting_accessories = list(/obj/item/clothing/accessory/tie/black, /obj/item/clothing/accessory/jacket/gambler) + +/obj/item/clothing/under/suit_jacket/extravagant + name = "extravagant suit" + desc = "An extravagant suit. Perfect for being over dramatic." + icon_state = "extravagant_suit" + item_state_slots = list(slot_r_hand_str = "lawyer_black", slot_l_hand_str = "lawyer_black") + starting_accessories = list(/obj/item/clothing/accessory/jacket/extravagant) + /obj/item/clothing/under/suit_jacket/tan name = "tan suit" desc = "A tan suit. Smart, but casual." @@ -754,13 +832,6 @@ Uniforms and such name = "tan skirt" icon_state = "tan_suit_skirt" -/obj/item/clothing/under/serviceoveralls - name = "workman outfit" - desc = "The very image of a working man. Not that you're probably doing work." - icon_state = "mechanic" - item_state_slots = list(slot_r_hand_str = "cargo", slot_l_hand_str = "cargo") - rolled_sleeves = 0 - /obj/item/clothing/under/cheongsam name = "white cheongsam" desc = "It is a white cheongsam dress." @@ -802,6 +873,18 @@ Uniforms and such desc = "It is a dark blue cheongsam dress." icon_state = "cheongsam-darkblue" +/obj/item/clothing/under/qipao_colorable + name = "qipao" + desc = "A traditional Chinese women's garment, typically made from silk." + icon_state = "qipao" + body_parts_covered = UPPER_TORSO|LOWER_TORSO + +/obj/item/clothing/under/qipao2_colorable + name = "slim qipao" + desc = "A traditional Chinese women's garment, typically made from silk. This one is fairly slim." + icon_state = "qipao2" + body_parts_covered = UPPER_TORSO|LOWER_TORSO + /obj/item/clothing/under/blazer name = "blue blazer" desc = "A bold but yet conservative outfit, red corduroys, navy blazer and a tie." @@ -890,12 +973,24 @@ Uniforms and such icon_state = "flowerskirt" /obj/item/clothing/under/fashionminiskirt - name = "fashionable miniskirt" - desc = "An impractically short miniskirt allegedly making waves through the local fashion scene." - icon_state = "miniskirt_fashion" + name = "fashionable miniskirt" + desc = "An impractically short miniskirt allegedly making waves through the local fashion scene." + icon_state = "miniskirt_fashion" + +/obj/item/clothing/under/retrosweater + name = "retro sweater" + desc = "A rugged cableknit sweater and leather pants, fit for a dashing space adventurer." + icon_state = "retro_sweater" + +/obj/item/clothing/under/wednesday + name = "cropped sweater skirt" + desc = "A cropped green sweater and matching miniskirt." + icon_state = "wednesday" + /* - * swimsuit + * Swimsuit */ + /obj/item/clothing/under/swimsuit/ siemens_coefficient = 1 body_parts_covered = 0 @@ -960,10 +1055,30 @@ Uniforms and such desc = "A rather skimpy cow patterned swimsuit." icon_state = "swim_cow" +/obj/item/clothing/under/wetsuit + name = "wetsuit" + desc = "For when you need to scuba dive your way into an enemy base." + icon_state = "wetsuit" + body_parts_covered = UPPER_TORSO|LOWER_TORSO|LEGS|ARMS + cold_protection = UPPER_TORSO|LOWER_TORSO|ARMS|LEGS + +/obj/item/clothing/under/wetsuit_skimpy + name = "tactical wetsuit" + desc = "For when you need to scuba dive your way into an enemy base but still want to show off a little skin." + icon_state = "wetsuit_skimpy" + body_parts_covered = UPPER_TORSO|LOWER_TORSO + +/obj/item/clothing/under/wetsuit_rec + name = "recreational wetsuit" + desc = "For when you need to kayak your way into an enemy base." + icon_state = "wetsuit_rec" + body_parts_covered = UPPER_TORSO|LOWER_TORSO + cold_protection = UPPER_TORSO|LOWER_TORSO /* - * pyjamas + * Pyjamas */ + /obj/item/clothing/under/bluepyjamas name = "blue pyjamas" desc = "Slightly old-fashioned sleepwear." @@ -978,80 +1093,12 @@ Uniforms and such item_state_slots = list(slot_r_hand_str = "red", slot_l_hand_str = "red") body_parts_covered = UPPER_TORSO|LOWER_TORSO|ARMS|LEGS -/* - *Misc Uniforms - */ - -/obj/item/clothing/under/aether - name = "\improper Aether jumpsuit" - desc = "A jumpsuit belonging to Aether Atmospherics and Recycling, a Trans-Stellar that supplies recycling and atmospheric systems to colonies." - icon_state = "aether" - worn_state = "aether" - -/obj/item/clothing/under/pcrc - name = "\improper PCRC uniform" - desc = "A uniform belonging to Proxima Centauri Risk Control, a private security firm." - icon_state = "pcrc" - item_state = "jensensuit" - worn_state = "pcrc" - -/obj/item/clothing/under/grayson - name = "\improper Grayson overalls" - desc = "A set of overalls belonging to Grayson Manufactories, a mining Trans-Stellar." - icon_state = "mechanic" - worn_state = "mechanic" - -/obj/item/clothing/under/wardt - name = "\improper Ward-Takahashi jumpsuit" - desc = "A jumpsuit belonging to Ward-Takahashi, a Trans-Stellar in the consumer goods market." - icon_state = "robotics2" - worn_state = "robotics2" - -/obj/item/clothing/under/mbill - name = "\improper Major Bill's uniform" - desc = "A uniform belonging to Major Bill's Transportation, a shipping megacorporation." - icon_state = "mbill" - worn_state = "mbill" - catalogue_data = list(/datum/category_item/catalogue/information/organization/major_bills) - -/obj/item/clothing/under/confederacy - name = "\improper Confederacy uniform" - desc = "A military uniform belonging to the Confederacy of Man, an independent human government." - icon_state = "confed" - worn_state = "confed" - -/obj/item/clothing/under/saare - name = "\improper SAARE uniform" - desc = "A dress uniform belonging to Stealth Assault Enterprises, a minor private military corporation." - icon_state = "saare" - worn_state = "saare" - -/obj/item/clothing/under/frontier - name = "frontier clothes" - desc = "A rugged flannel shirt and denim overalls. A popular style among frontier colonists." - icon_state = "frontier" - worn_state = "frontier" - -/obj/item/clothing/under/focal - name = "\improper Focal Point jumpsuit" - desc = "A jumpsuit belonging to Focal Point Energistics, an engineering megacorporation." - icon_state = "focal" - worn_state = "focal" - -/obj/item/clothing/under/hephaestus - name = "\improper Hephaestus jumpsuit" - desc = "A jumpsuit belonging to Hephaestus Industries, a Trans-Stellar best known for its arms production." - icon_state = "heph" - worn_state = "heph" - /obj/item/clothing/under/rank/psych/turtleneck/sweater desc = "A warm looking sweater and a pair of dark blue slacks." name = "sweater" icon_state = "turtleneck" worn_state = "turtleneck" -//Uniforms end above here. - /obj/item/clothing/under/medigown name = "medical gown" desc = "A flimsy examination gown, the back ties never close." @@ -1136,4 +1183,297 @@ Uniforms and such unicolor = "orange" /obj/item/clothing/under/color/ranger/yellow - unicolor = "yellow" \ No newline at end of file + unicolor = "yellow" + +/obj/item/clothing/under/boater + name = "boater outfit" + desc = "A classic outfit for those with a nautical inclination." + icon_state = "boater" + worn_state = "boater" + +/obj/item/clothing/under/tourist_1 + name = "summer outfit" + desc = "The perfect outfit to wear out of town." + icon_state = "tourist_1" + worn_state = "tourist_1" + +/obj/item/clothing/under/tourist_2 + name = "summer outfit" + desc = "The perfect outfit to wear out of town." + icon_state = "tourist_2" + worn_state = "tourist_2" + +/obj/item/clothing/under/relaxwear_1 + name = "casual outfit" + desc = "Something casual to wear out on the town. Pairs well with the holiday season." + icon_state = "relaxwear_1" + worn_state = "relaxwear_1" + starting_accessories = list(/obj/item/clothing/accessory/wcoat/swvest/red) + +/obj/item/clothing/under/relaxwear_2 + name = "relaxing outfit" + desc = "A comfy looking set of clothes to relax in, even if the style is a bit dated." + icon_state = "relaxwear_2" + worn_state = "relaxwear_2" + starting_accessories = list(/obj/item/clothing/accessory/wcoat/swvest/green) + +/obj/item/clothing/under/serviceoveralls + name = "workman outfit" + desc = "The very image of a working man. Not that you're probably doing work." + icon_state = "mechanic" + item_state_slots = list(slot_r_hand_str = "cargo", slot_l_hand_str = "cargo") + rolled_sleeves = 0 + +/obj/item/clothing/under/frontier + name = "frontier clothes" + desc = "A rugged flannel shirt and denim overalls. A popular style among frontier colonists." + icon_state = "frontier" + worn_state = "frontier" + +/obj/item/clothing/under/rustler + name = "rustler outfit" + desc = "A rugged outfit for rustling cattle out on the frontier." + icon_state = "rustler" + worn_state = "rustler" + +/obj/item/clothing/under/cowboy + name = "cowboy clothes" + desc = "Some rugged clothes for hard labor out on the farm." + icon_state = "cowboy" + worn_state = "cowboy" + +/obj/item/clothing/under/cowboy/tan + name = "tan cowboy clothes" + icon_state = "cowboy_tan" + worn_state = "cowboy_tan" + +/obj/item/clothing/under/cowboy/brown + name = "brown cowboy clothes" + icon_state = "cowboy_brown" + worn_state = "cowboy_brown" + +/obj/item/clothing/under/cowboy/grey + name = "grey cowboy clothes" + icon_state = "cowboy_grey" + worn_state = "cowboy_grey" + +/obj/item/clothing/under/primitive + name = "primitive clothes" + desc = "Some patched together rags. Better than being naked." + force = 0 + icon_state = "rag" + worn_state = "rag" + +/obj/item/clothing/under/curator + name = "curator uniform" + desc = "A rugged uniform suitable for treasure hunting." + icon_state = "curator" + worn_state = "curator" + +/* + * Modern + */ + +/obj/item/clothing/under/moderncoat + name = "modern wrapped coat" + desc = "The cutting edge of fashion." + icon_state = "mod_coat" + worn_state = "mod_coat" + item_state_slots = list(slot_r_hand_str = "red", slot_l_hand_str = "red") + body_parts_covered = UPPER_TORSO|LOWER_TORSO|LEGS + +/obj/item/clothing/under/modjump + name = "modern jumpsuit" + desc = "A stylish jumpsuit of modern culture." + icon_state = "mod_jump" + worn_state = "mod_jump" + item_state_slots = list(slot_r_hand_str = "orange", slot_l_hand_str = "orange") + +/obj/item/clothing/under/modjump2 + name = "modern outfit" + desc = "A stylish outfit of modern culture." + icon_state = "mod_jump2" + worn_state = "mod_jump2" + item_state_slots = list(slot_r_hand_str = "black", slot_l_hand_str = "black") + +/obj/item/clothing/under/modjump3 + name = "cyber jumpsuit" + desc = "A cool cyberpunk styled jumpsuit. The lights on the back glitched out and don't work." + icon_state = "cyber" + worn_state = "cyber" + item_state_slots = list(slot_r_hand_str = "grey", slot_l_hand_str = "grey") + +/* + * Corporate Uniforms + */ + +/obj/item/clothing/under/mbill + name = "\improper Major Bill's uniform" + desc = "A uniform belonging to Major Bill's Transportation, a shipping megacorporation." + icon_state = "mbill" + worn_state = "mbill" + catalogue_data = list(/datum/category_item/catalogue/information/organization/major_bills) + +/obj/item/clothing/under/mbill_flight + name = "\improper Major Bill's flightsuit" + desc = "A flightsuit belonging to Major Bill's Transportation, a shipping megacorporation." + icon_state = "mbill_flight" + worn_state = "mbill_flight" + catalogue_data = list(/datum/category_item/catalogue/information/organization/major_bills) + starting_accessories = list(/obj/item/clothing/accessory/storage/webbing/pilot1) + rolled_sleeves = 0 + +/obj/item/clothing/under/corp/aether + name = "\improper Aether jumpsuit" + desc = "A jumpsuit belonging to Aether Atmospherics and Recycling, a Trans-Stellar that supplies recycling and atmospheric systems to colonies." + icon_state = "aether" + worn_state = "aether" + +/obj/item/clothing/under/corp/pcrc + name = "\improper PCRC uniform" + desc = "A uniform belonging to Proxima Centauri Risk Control, a private security firm." + icon_state = "pcrc" + item_state = "jensensuit" + worn_state = "pcrc" + +/obj/item/clothing/under/corp/centauri + name = "\improper Centauri Provisions jumpsuit" + desc = "A jumpsuit belonging to Centauri Provisions, a Trans-Stellar best known for its food and drink products." + icon_state = "centauri" + worn_state = "centauri" + +/obj/item/clothing/under/corp/grayson + name = "\improper Grayson overalls" + desc = "A set of overalls belonging to Grayson Manufactories, a mining Trans-Stellar." + icon_state = "grayson_mech" + worn_state = "grayson_mech" + +/obj/item/clothing/under/corp/grayson_jump + name = "\improper Grayson jumpsuit" + desc = "A jumpsuit belonging to Grayson Manufactories, a mining Trans-Stellar." + icon_state = "grayson" + worn_state = "grayson" + rolled_sleeves = 0 + +/obj/item/clothing/under/corp/wardt + name = "\improper Ward-Takahashi jumpsuit" + desc = "A jumpsuit belonging to Ward-Takahashi, a Trans-Stellar in the consumer goods market." + icon_state = "robotics2" + worn_state = "robotics2" + +/obj/item/clothing/under/corp/confederacy + name = "\improper Confederacy uniform" + desc = "A military uniform belonging to the Confederacy of Man, an independent human government." + icon_state = "confed" + worn_state = "confed" + +/obj/item/clothing/under/corp/saare + name = "\improper SAARE uniform" + desc = "A dress uniform belonging to Stealth Assault Enterprises, a minor private military corporation." + icon_state = "saare" + worn_state = "saare" + +/obj/item/clothing/under/corp/focal + name = "\improper Focal Point jumpsuit" + desc = "A jumpsuit belonging to Focal Point Energistics, an engineering megacorporation." + icon_state = "focal" + worn_state = "focal" + +/obj/item/clothing/under/corp/wulf + name = "\improper Wulf jumpsuit" + desc = "A jumpsuit belonging to Wulf Aeronautics, a ship-building and propulsion systems Trans-Stellar." + icon_state = "wulf" + worn_state = "wulf" + rolled_sleeves = 0 + +/obj/item/clothing/under/corp/hephaestus + name = "\improper Hephaestus jumpsuit" + desc = "A jumpsuit belonging to Hephaestus, a Trans-Stellar best known for high-grade arms manufacturing." + icon_state = "heph" + worn_state = "heph" + rolled_sleeves = 0 + +/obj/item/clothing/under/corp/kaleidoscope + name = "\improper Kaleidoscope uniform" + desc = "A science uniform belonging to Kaleidoscope Cosmetics, a cosmetic and gene-modification trans-stellar." + icon_state = "kaleido" + worn_state = "kaleido" + rolled_sleeves = 0 + +/obj/item/clothing/under/corp/veymed + name = "\improper Vey-Med uniform" + desc = "A uniform belonging to Vey-Medical, a Skrellian biomedical Trans-Stellar." + icon_state = "veymed" + worn_state = "veymed" + rolled_sleeves = 0 + +/obj/item/clothing/under/corp/wardt + name = "\improper Ward-Takahashi jumpsuit" + desc = "A jumpsuit belonging to Ward-Takahashi, a Trans-Stellar in the consumer goods market." + icon_state = "robotics2" + worn_state = "robotics2" + +/obj/item/clothing/under/corp/xion + name = "\improper Xion jumpsuit" + desc = "A jumpsuit belonging to Xion Manufacturing, an industrial equipment Trans-Stellar." + icon_state = "xion" + worn_state = "xion" + rolled_sleeves = 0 + +/obj/item/clothing/under/corp/zenghu + name = "\improper Zeng-Hu jumpsuit" + desc = "A jumpsuit belonging to Zeng-Hu Pharmaceuticals, a Trans-Stellar in the business of exactly what you'd expect.." + icon_state = "zenghu" + worn_state = "zenghu" + starting_accessories = list(/obj/item/clothing/accessory/tie/red) + rolled_sleeves = 0 + +/obj/item/clothing/under/corp/morpheus + name = "\improper Morpheus jumpsuit" + desc = "A uniform belonging to Morpheus Cyberkinetics, a positronic-run cybernetics Trans-Stellar." + icon_state = "morpheus" + worn_state = "morpheus" + +/obj/item/clothing/under/corp/xion + name = "\improper Xion jumpsuit" + desc = "A jumpsuit belonging to Xion Manufacturing, an industrial equipment Trans-Stellar." + icon_state = "xion" + worn_state = "xion" + rolled_sleeves = 0 + +/obj/item/clothing/under/corp/hedberg + name = "\improper Hedberg law enforcement uniform" + desc = "A sturdy civilian law enforcement uniform belonging to the Hedberg-Hammarstrom private security corporation." + icon_state = "hedberg" + worn_state = "hedberg" + armor = list(melee = 10, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 0, rad = 0) //Equivalent to security officer's jumpsuit + rolled_sleeves = 0 + +/obj/item/clothing/under/corp/hedbergtech + name = "\improper Hedberg technician uniform" + desc = "A technician's uniform belonging to the Hedberg-Hammarstrom private security corporation. It is lightly shielded against radiation." + icon_state = "hedberg_tech" + worn_state = "hedberg_tech" + armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 0, rad = 10) // Equivalent to engineer's jumpsuit. + rolled_sleeves = 0 + +//christmas stuff +/obj/item/clothing/under/christmas/red + name = "red christmas suit" + desc = "A simple red christmas suit that looks close to Santa's!" + icon_state = "christmasred" + +/obj/item/clothing/under/christmas/green + name = "green christmas suit" + desc = "A simple green christmas suit. Smells minty!" + icon_state = "christmasgreen" + +/obj/item/clothing/under/christmas/croptop/red + name = "red crop-top christmas suit" + desc = "A simple red christmas suit that doesn't quite looks like Mrs Claus'." + icon_state = "christmascroppedred" + +/obj/item/clothing/under/christmas/croptop/green + name = "green crop-top christmas suit" + desc = "A simple green christmas suit that doesn't quite looks like Mrs Claus'. Smells minty!" + icon_state = "christmascroppedgreen" \ No newline at end of file diff --git a/code/modules/clothing/under/miscellaneous_vr.dm b/code/modules/clothing/under/miscellaneous_vr.dm index d8d55aed12..eb53f9e138 100644 --- a/code/modules/clothing/under/miscellaneous_vr.dm +++ b/code/modules/clothing/under/miscellaneous_vr.dm @@ -102,7 +102,7 @@ if(new_size != H.size_multiplier) if(!original_size) original_size = H.size_multiplier - H.resize(new_size/100, ignore_prefs = TRUE) // Ignores prefs because you can only resize yourself + H.resize(new_size/100, uncapped = H.has_large_resize_bounds(), ignore_prefs = TRUE) // Ignores prefs because you can only resize yourself H.visible_message("The space around [H] distorts as they change size!","The space around you distorts as you change size!") else //They chose their current size. return @@ -115,24 +115,85 @@ original_size = null H.visible_message("The space around [H] distorts as they return to their original size!","The space around you distorts as you return to your original size!") +/obj/item/clothing/gloves/bluespace + name = "size standardization bracelet" + desc = "A somewhat bulky metal bracelet featuring a crystal, glowing blue. The outer side of the bracelet has an elongated case that one might imagine contains electronic components. This bracelet is used to standardize the size of crewmembers who may need a non-permanent size assist." + icon = 'icons/inventory/accessory/item_vr.dmi' + icon_state = "bs_bracelet" + w_class = ITEMSIZE_TINY + glove_level = 1 + var/original_size + var/last_activated + var/emagged = FALSE + var/target_size = 1 + +/obj/item/clothing/gloves/bluespace/mob_can_equip(mob/M, gloves, disable_warning = 0) + . = ..() + if(. && ishuman(M)) + var/mob/living/carbon/human/H = M + if(!H.resizable) + return + if(H.size_multiplier != target_size) + if(!(world.time - last_activated > 10 SECONDS)) + to_chat(M, "\The [src] flickers. It seems to be recharging.") + return + last_activated = world.time + original_size = H.size_multiplier + H.resize(target_size, uncapped = emagged, ignore_prefs = FALSE) //In case someone else tries to put it on you. + H.visible_message("The space around [H] distorts as they change size!","The space around you distorts as you change size!") + log_admin("Admin [key_name(M)]'s size was altered by a bluespace bracelet.") + +/obj/item/clothing/gloves/bluespace/mob_can_unequip(mob/M, gloves, disable_warning = 0) + . = ..() + if(. && ishuman(M) && original_size) + var/mob/living/carbon/human/H = M + if(!H.resizable) + return + last_activated = world.time + H.resize(original_size, uncapped = emagged, ignore_prefs = FALSE) + original_size = null + H.visible_message("The space around [H] distorts as they return to their original size!","The space around you distorts as you return to your original size!") + log_admin("Admin [key_name(M)]'s size was altered by a bluespace bracelet.") + to_chat(M, "\The [src] flickers. It is now recharging and will be ready again in thirty seconds.") + +/obj/item/clothing/gloves/bluespace/examine(var/mob/user) + . = ..() + var/cooldowntime = round((10 SECONDS - (world.time - last_activated)) * 0.1) + if(Adjacent(user)) + if(cooldowntime >= 0) + . += "It appears to be recharging." + if(emagged) + . += "The crystal is flickering." + +/obj/item/clothing/gloves/bluespace/emag_act(R_charges, var/mob/user, emag_source) + . = ..() + if(!emagged) + emagged = TRUE + target_size = (rand(1,300)) /100 + if(target_size < 0.1) + target_size = 0.1 + user.visible_message("\The [user] swipes the [emag_source] over the \the [src].","You swipes the [emag_source] over the \the [src].") + return 1 + //Same as Nanotrasen Security Uniforms /obj/item/clothing/under/ert armor = list(melee = 5, bullet = 10, laser = 10, energy = 5, bomb = 5, bio = 0, rad = 0) -/obj/item/clothing/under/dress/qipao - name = "qipao" +/obj/item/clothing/under/qipao + name = "black qipao" desc = "A type of feminine body-hugging dress with distinctive Chinese features of Manchu origin." icon = 'icons/inventory/uniform/item_vr.dmi' icon_override = 'icons/inventory/uniform/mob_vr.dmi' icon_state = "qipao" item_state = "qipao" + body_parts_covered = UPPER_TORSO|LOWER_TORSO -/obj/item/clothing/under/dress/qipao/white +/obj/item/clothing/under/qipao/white name = "white qipao" icon_state = "qipao_white" item_state = "qipao_white" -/obj/item/clothing/under/dress/qipao/red +/obj/item/clothing/under/qipao/red name = "red qipao" icon_state = "qipao_red" item_state = "qipao_red" @@ -141,7 +202,9 @@ name = "pizza delivery uniform" desc = "A dedicated outfit for pizza delivery people, one of most dangerous occupations around these parts. Can be rolled up for extra show of skin." icon = 'icons/inventory/uniform/item_vr.dmi' + icon_override = 'icons/inventory/uniform/mob_vr.dmi' rolled_down_icon = 'icons/inventory/uniform/mob_vr_rolled_down.dmi' + rolled_down_icon_override = FALSE icon_state = "pizzadelivery" item_state = "pizzadelivery" rolled_down = 0 @@ -157,6 +220,8 @@ icon_state = "talon_basic" item_state = "talon_basic" rolled_sleeves = 0 + rolled_down_icon_override = FALSE + rolled_sleeves_icon_override = FALSE /obj/item/clothing/under/rank/talon/proper name = "Talon proper jumpsuit" @@ -167,6 +232,8 @@ icon_state = "talon_jumpsuit" item_state = "talon_jumpsuit" rolled_sleeves = 0 + rolled_down_icon_override = FALSE + rolled_sleeves_icon_override = FALSE /obj/item/clothing/under/rank/talon/security name = "Talon security jumpsuit" @@ -177,6 +244,8 @@ icon_state = "talon_security" item_state = "talon_security" rolled_sleeves = 0 + rolled_down_icon_override = FALSE + rolled_sleeves_icon_override = FALSE /obj/item/clothing/under/rank/talon/pilot name = "Talon pilot jumpsuit" @@ -187,6 +256,8 @@ icon_state = "talon_pilot" item_state = "talon_pilot" rolled_sleeves = 0 + rolled_down_icon_override = FALSE + rolled_sleeves_icon_override = FALSE /obj/item/clothing/under/rank/talon/command name = "Talon command jumpsuit" @@ -197,6 +268,8 @@ icon_state = "talon_captain" item_state = "talon_captain" rolled_sleeves = 0 + rolled_down_icon_override = FALSE + rolled_sleeves_icon_override = FALSE // Excelsior uniforms /obj/item/clothing/under/excelsior @@ -225,3 +298,14 @@ icon_state = "summerdress3" /obj/item/clothing/under/summerdress/blue icon_state = "summerdress2" + +/obj/item/clothing/under/dress/dress_cap/femformal // formal in the loosest sense. because it's going to be taken off. or something. funnier in my head i swear + name = "site manager's feminine formalwear" + desc = "Essentially a skimpy...dress? Leotard? Whatever it is, it has the coloration and markings suitable for a site manager or rough equivalent." + icon = 'icons/inventory/uniform/item_vr.dmi' + default_worn_icon = 'icons/inventory/uniform/mob_vr.dmi' + icon_state = "lewdcap" + item_state = "lewdcap" + rolled_sleeves = -1 + rolled_down = -1 + body_parts_covered = UPPER_TORSO // frankly this thing's a fucking embarassment \ No newline at end of file diff --git a/code/modules/clothing/under/solgov.dm b/code/modules/clothing/under/solgov.dm index 5854c006e2..82386c9769 100644 --- a/code/modules/clothing/under/solgov.dm +++ b/code/modules/clothing/under/solgov.dm @@ -71,6 +71,14 @@ worn_state = "blackutility_crew" armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 10, rad = 10) +/obj/item/clothing/under/sifcop + name = "\improper SifGuard law enforcement uniform" + desc = "A sturdy law enforcement uniform typical of Vir's civilian law enforcement officers." + icon_state = "sifcop" + worn_state = "sifcop" + armor = list(melee = 10, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 0, rad = 0) //Equivalent to security officer's jumpsuit + rolled_sleeves = 0 + /obj/item/clothing/under/solgov/utility/sifguard_skirt name = "\improper SifGuard skirt" desc = "A black turtleneck and skirt, the elusive ladies' uniform of the Sif Defense Force." @@ -469,7 +477,7 @@ permeability_coefficient = 0.50 armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 30, rad = 0) -//Terrans +//SAARE /obj/item/clothing/under/saare name = "master SAARE uniform" @@ -497,4 +505,21 @@ name = "SAARE command service uniform" desc = "The service uniform of Stealth Assault Enterprises, for high-ranking mercenaries." icon_state = "terranservice_comm" - worn_state = "terranservice_comm" \ No newline at end of file + worn_state = "terranservice_comm" + +//Galactic Survey + +/obj/item/clothing/under/gsa + name = "\improper Galactic Survey utility uniform" + desc = "A jumpsuit belonging to the Galactic Survey Administration, SolGov's scientific exploration division." + icon_state = "gsa" + worn_state = "gsa" + rolled_sleeves = 0 + +/obj/item/clothing/under/gsa_work + name = "\improper Galactic Survey worksuit" + desc = "A padded work suit belonging to the Galactic Survey Administration, SolGov's scientific exploration division. It has minor radiation shielding." + icon_state = "gsa_work" + worn_state = "gsa_work" + armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 0, rad = 10) + rolled_sleeves = 0 \ No newline at end of file diff --git a/code/modules/detectivework/tools/rag.dm b/code/modules/detectivework/tools/rag.dm index 301c99b704..4d9c009e10 100644 --- a/code/modules/detectivework/tools/rag.dm +++ b/code/modules/detectivework/tools/rag.dm @@ -98,16 +98,11 @@ if(!reagents.total_volume) to_chat(user, "The [initial(name)] is dry!") else - user.visible_message("\The [user] starts to wipe down [A] with [src]!") - //reagents.splash(A, 1) //get a small amount of liquid on the thing we're wiping. + user.visible_message("[user] starts to wipe [A] with [src].") update_name() if(do_after(user,30)) - user.visible_message("\The [user] finishes wiping off the [A]!") - A.clean_blood() - if(istype(A, /turf) || istype(A, /obj/effect/decal/cleanable) || istype(A, /obj/effect/overlay) || istype(A, /obj/effect/rune)) //VOREStation Edit - "Allows rags to clean dirt from turfs" - var/turf/T = get_turf(A) - if(T) - T.clean(src, user) //VOREStation Edit End + user.visible_message("[user] finishes wiping [A]!") + A.on_rag_wipe(src) /obj/item/weapon/reagent_containers/glass/rag/attack(atom/target as obj|turf|area, mob/user as mob , flag) if(isliving(target)) //Leaving this as isliving. @@ -121,7 +116,7 @@ var/mob/living/carbon/human/H = target if(H.head && (H.head.body_parts_covered & FACE)) //Check human head coverage. to_chat(user, "Remove their [H.head] first.") - return + return else if(reagents.total_volume) //Final check. If the rag is not on fire and their face is uncovered, smother target. user.do_attack_animation(src) user.visible_message( diff --git a/code/modules/economy/coins.dm b/code/modules/economy/coins.dm index 8f95a424b7..f64d027d57 100644 --- a/code/modules/economy/coins.dm +++ b/code/modules/economy/coins.dm @@ -21,42 +21,52 @@ /obj/item/weapon/coin/gold name = "gold coin" icon_state = "coin_gold" + matter = list(MAT_GOLD = 250) /obj/item/weapon/coin/silver name = "silver coin" icon_state = "coin_silver" + matter = list(MAT_SILVER = 250) /obj/item/weapon/coin/diamond name = "diamond coin" icon_state = "coin_diamond" + matter = list(MAT_DIAMOND = 250) /obj/item/weapon/coin/iron name = "iron coin" icon_state = "coin_iron" + matter = list(MAT_IRON = 250) /obj/item/weapon/coin/phoron name = "solid phoron coin" icon_state = "coin_phoron" + matter = list(MAT_PHORON = 250) /obj/item/weapon/coin/uranium name = "uranium coin" icon_state = "coin_uranium" + matter = list(MAT_URANIUM = 250) /obj/item/weapon/coin/platinum name = "platinum coin" icon_state = "coin_adamantine" + matter = list(MAT_GOLD = 250) /obj/item/weapon/coin/morphium name = "morphium coin" icon_state = "coin_morphium" + matter = list(MAT_MORPHIUM = 250) /obj/item/weapon/coin/aluminium name = "aluminium coin" icon_state = "coin_aluminium" + matter = list(MAT_ALUMINIUM = 250) /obj/item/weapon/coin/verdantium name = "verdantium coin" icon_state = "coin_verdantium" + matter = list(MAT_VERDANTIUM = 250) /obj/item/weapon/coin/attackby(obj/item/weapon/W as obj, mob/user as mob) if(istype(W,/obj/item/stack/cable_coil)) @@ -76,8 +86,7 @@ ..() return - var/obj/item/stack/cable_coil/CC = new/obj/item/stack/cable_coil(user.loc) - CC.amount = 1 + var/obj/item/stack/cable_coil/CC = new (user.loc) CC.update_icon() cut_overlays() string_attached = null diff --git a/code/modules/economy/price_list.dm b/code/modules/economy/price_list.dm index 23ce932f06..10199e9e46 100644 --- a/code/modules/economy/price_list.dm +++ b/code/modules/economy/price_list.dm @@ -216,6 +216,9 @@ /datum/reagent/ethanol/cuba_libre price_tag = 4 +/datum/reagent/ethanol/rum_and_cola + price_tag = 4 + /datum/reagent/ethanol/demonsblood price_tag = 4 diff --git a/code/modules/economy/vending.dm b/code/modules/economy/vending.dm index ddd4520bdf..f073f3f396 100644 --- a/code/modules/economy/vending.dm +++ b/code/modules/economy/vending.dm @@ -42,6 +42,10 @@ var/list/prices = list() // Prices for each item, list(/type/path = price), items not in the list don't have a price. /// Set automatically, enables pricing var/has_prices = FALSE + // This one is used for refill cartridge use. + var/list/refill = list() // For each, use the following pattern: + // Enables refilling with appropriate cartridges + var/refillable = TRUE // List of vending_product items available. var/list/product_records = list() @@ -65,6 +69,7 @@ emagged = 0 //Ignores if somebody doesn't have card access to that machine. var/seconds_electrified = 0 //Shock customers like an airlock. var/shoot_inventory = 0 //Fire items at customers! We're broken! + var/shoot_inventory_chance = 1 var/scan_id = 1 var/obj/item/weapon/coin/coin @@ -125,12 +130,31 @@ GLOBAL_LIST_EMPTY(vending_products) if(LAZYLEN(premium)) has_premium = TRUE + + if(!LAZYLEN(refill) && refillable) // Manually setting refill list prevents the automatic population. By default filled with all entries from normal product. + refill += products + LAZYCLEARLIST(products) LAZYCLEARLIST(contraband) LAZYCLEARLIST(premium) LAZYCLEARLIST(prices) all_products.Cut() +/obj/machinery/vending/proc/refill_inventory() + if(!(LAZYLEN(refill))) //This shouldn't happen, but just in case... + return + + for(var/entry in refill) + var/datum/stored_item/vending_product/current_product + for(var/datum/stored_item/vending_product/product in product_records) + if(product.item_path == entry) + current_product = product + break + if(!current_product) + continue + else + current_product.refill_products(refill[entry]) + /obj/machinery/vending/Destroy() qdel(wires) wires = null @@ -169,6 +193,29 @@ GLOBAL_LIST_EMPTY(vending_products) if(I || istype(W, /obj/item/weapon/spacecash)) attack_hand(user) return + else if(istype(W, /obj/item/weapon/refill_cartridge)) + if(stat & (BROKEN|NOPOWER)) + to_chat(user, "You cannot refill [src] while it is not functioning.") + return + if(!anchored) + to_chat(user, "You cannot refill [src] while it is not secured.") + return + if(panel_open) + to_chat(user, "You cannot refill [src] while it's panel is open.") + return + if(!refillable) + to_chat(user, "\the [src] does not have a refill port.") + return + var/obj/item/weapon/refill_cartridge/RC = W + if(RC.can_refill(src)) + to_chat(user, "You refill [src] using [RC].") + user.drop_from_inventory(RC) + qdel(RC) + refill_inventory() + return + else + to_chat(user, "You cannot refill [src] with [RC].") + return else if(W.is_screwdriver()) panel_open = !panel_open to_chat(user, "You [panel_open ? "open" : "close"] the maintenance panel.") @@ -677,7 +724,7 @@ GLOBAL_LIST_EMPTY(vending_products) speak(slogan) last_slogan = world.time - if(shoot_inventory && prob(2)) + if(shoot_inventory && prob(shoot_inventory_chance)) throw_item() return @@ -717,20 +764,20 @@ GLOBAL_LIST_EMPTY(vending_products) //Somebody cut an important wire and now we're following a new definition of "pitch." /obj/machinery/vending/proc/throw_item() - var/obj/throw_item = null + var/obj/item/throw_item = null var/mob/living/target = locate() in view(7,src) if(!target) return 0 - for(var/datum/stored_item/vending_product/R in product_records) + for(var/datum/stored_item/vending_product/R in shuffle(product_records)) throw_item = R.get_product(loc) if(!throw_item) continue break if(!throw_item) - return 0 - spawn(0) - throw_item.throw_at(target, 16, 3, src) + return FALSE + throw_item.vendor_action(src) + INVOKE_ASYNC(throw_item, /atom/movable.proc/throw_at, target, rand(3, 10), rand(1, 3), src) visible_message("\The [src] launches \a [throw_item] at \the [target]!") return 1 diff --git a/code/modules/economy/vending_machines.dm b/code/modules/economy/vending_machines.dm index 9ff3f72c2d..dc0939fdf6 100644 --- a/code/modules/economy/vending_machines.dm +++ b/code/modules/economy/vending_machines.dm @@ -57,7 +57,7 @@ /obj/item/weapon/reagent_containers/food/drinks/bottle/bluecuracao = 5, /obj/item/weapon/reagent_containers/food/drinks/bottle/cognac = 5, /obj/item/weapon/reagent_containers/food/drinks/bottle/grenadine = 5, - /obj/item/weapon/reagent_containers/food/condiment/cornoil = 5, + /obj/item/weapon/reagent_containers/food/condiment/cookingoil = 5, /obj/item/weapon/reagent_containers/food/drinks/bottle/kahlua = 5, /obj/item/weapon/reagent_containers/food/drinks/bottle/melonliquor = 5, /obj/item/weapon/reagent_containers/food/drinks/bottle/peppermintschnapps = 5, @@ -91,6 +91,7 @@ /obj/item/weapon/reagent_containers/food/drinks/bottle/milk = 5, /obj/item/weapon/reagent_containers/food/drinks/bottle/cream = 5, /obj/item/weapon/reagent_containers/food/drinks/bottle/cola = 5, + /obj/item/weapon/reagent_containers/food/drinks/bottle/decaf_cola = 5, /obj/item/weapon/reagent_containers/food/drinks/bottle/space_up = 5, /obj/item/weapon/reagent_containers/food/drinks/bottle/space_mountain_wind = 5, /obj/item/weapon/reagent_containers/food/drinks/bottle/dr_gibb = 5, @@ -139,6 +140,7 @@ products = list(/obj/item/weapon/reagent_containers/food/drinks/coffee = 25, /obj/item/weapon/reagent_containers/food/drinks/decaf = 15, /obj/item/weapon/reagent_containers/food/drinks/tea = 25, + /obj/item/weapon/reagent_containers/food/drinks/decaf_tea = 25, /obj/item/weapon/reagent_containers/food/drinks/h_chocolate = 25, /obj/item/weapon/reagent_containers/food/drinks/greentea = 15, /obj/item/weapon/reagent_containers/food/drinks/chaitea = 15) @@ -146,6 +148,7 @@ prices = list(/obj/item/weapon/reagent_containers/food/drinks/coffee = 2, /obj/item/weapon/reagent_containers/food/drinks/decaf = 3, /obj/item/weapon/reagent_containers/food/drinks/tea = 2, + /obj/item/weapon/reagent_containers/food/drinks/decaf_tea = 2, /obj/item/weapon/reagent_containers/food/drinks/h_chocolate = 2, /obj/item/weapon/reagent_containers/food/drinks/greentea = 10, /obj/item/weapon/reagent_containers/food/drinks/chaitea = 5) // VOREStation Edit - Lowers Coffee/Hot Chocolate/Tea Prices from 3 -> 2. @@ -233,10 +236,12 @@ product_slogans = "Robust Softdrinks: More robust than a toolbox to the head!" product_ads = "Refreshing!;Hope you're thirsty!;Over 1 million drinks sold!;Thirsty? Why not cola?;Please, have a drink!;Drink up!;The best drinks in the galaxy." products = list(/obj/item/weapon/reagent_containers/food/drinks/cans/cola = 10, + /obj/item/weapon/reagent_containers/food/drinks/cans/decaf_cola = 10, /obj/item/weapon/reagent_containers/food/drinks/cans/space_mountain_wind = 10, /obj/item/weapon/reagent_containers/food/drinks/cans/dr_gibb = 10, /obj/item/weapon/reagent_containers/food/drinks/cans/dr_gibb_diet = 10, /obj/item/weapon/reagent_containers/food/drinks/cans/starkist = 10, + /obj/item/weapon/reagent_containers/food/drinks/cans/starkistdecaf = 10, /obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle = 10, /obj/item/weapon/reagent_containers/food/drinks/cans/space_up = 10, /obj/item/weapon/reagent_containers/food/drinks/cans/iced_tea = 10, @@ -247,10 +252,12 @@ contraband = list(/obj/item/weapon/reagent_containers/food/drinks/cans/thirteenloko = 5, /obj/item/weapon/reagent_containers/food/snacks/liquidfood = 6) prices = list(/obj/item/weapon/reagent_containers/food/drinks/cans/cola = 1, + /obj/item/weapon/reagent_containers/food/drinks/cans/decaf_cola = 2, /obj/item/weapon/reagent_containers/food/drinks/cans/space_mountain_wind = 1, /obj/item/weapon/reagent_containers/food/drinks/cans/dr_gibb = 1, /obj/item/weapon/reagent_containers/food/drinks/cans/dr_gibb_diet = 1, /obj/item/weapon/reagent_containers/food/drinks/cans/starkist = 1, + /obj/item/weapon/reagent_containers/food/drinks/cans/starkistdecaf = 1, /obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle = 2, /obj/item/weapon/reagent_containers/food/drinks/cans/space_up = 1, /obj/item/weapon/reagent_containers/food/drinks/cans/iced_tea = 1, @@ -388,7 +395,8 @@ /obj/item/stack/medical/advanced/bruise_pack = 6, /obj/item/stack/medical/advanced/ointment = 6, /obj/item/stack/medical/splint = 4, - /obj/item/weapon/storage/pill_bottle/carbon = 2) + /obj/item/weapon/storage/pill_bottle/carbon = 2, + /obj/item/clothing/mask/chewable/candy/lolli = 15) contraband = list(/obj/item/weapon/reagent_containers/pill/tox = 3, /obj/item/weapon/reagent_containers/pill/stox = 4, /obj/item/weapon/reagent_containers/pill/antitox = 6) @@ -446,6 +454,9 @@ has_logs = 1 can_rotate = 0 +/obj/machinery/vending/wallmed1/public + products = list(/obj/item/stack/medical/bruise_pack = 8,/obj/item/stack/medical/ointment = 8,/obj/item/weapon/reagent_containers/hypospray/autoinjector = 16,/obj/item/device/healthanalyzer = 4) + /obj/machinery/vending/security name = "SecTech" desc = "A security equipment vendor." @@ -577,7 +588,7 @@ icon_state = "dinnerware" products = list( /obj/item/weapon/reagent_containers/food/condiment/yeast = 5, - /obj/item/weapon/reagent_containers/food/condiment/cornoil = 5, + /obj/item/weapon/reagent_containers/food/condiment/cookingoil = 5, /obj/item/weapon/tray = 8, /obj/item/weapon/material/kitchen/utensil/fork = 6, /obj/item/weapon/material/knife/plastic = 6, @@ -623,7 +634,7 @@ /obj/item/device/flashlight/glowstick/yellow = 3) contraband = list(/obj/item/weapon/weldingtool/hugetank = 2, /obj/item/clothing/gloves/fyellow = 2) - premium = list(/obj/item/clothing/gloves/yellow = 1) + premium = list(/obj/item/clothing/gloves/heavy_engineer = 1) //VOREStation Edit - yellow gloves are common in engineering, let's make "premium" actually mean something req_log_access = access_ce has_logs = 1 @@ -693,7 +704,8 @@ /obj/item/weapon/weldingtool = 8, /obj/item/clothing/head/welding = 8, /obj/item/weapon/light/tube = 10, - /obj/item/clothing/suit/fire = 4, + /obj/item/clothing/head/hardhat/firefighter = 4, + /obj/item/clothing/suit/fire/firefighter = 4, /obj/item/weapon/stock_parts/scanning_module = 5, /obj/item/weapon/stock_parts/micro_laser = 5, /obj/item/weapon/stock_parts/matter_bin = 5, @@ -1120,6 +1132,46 @@ idle_power_usage = 211 //refrigerator - believe it or not, this is actually the average power consumption of a refrigerated vending machine according to NRCan. vending_sound = "machines/vending/vending_cans.ogg" +///////////////////////Donk-Soft!/////////////////////////////////////// + +/obj/machinery/vending/donksoft + name = "Donk-Soft!" + desc = "A toy vendor owned by Donk-Soft, a NanoTrasen sub-company." + description_fluff = "Donk-Soft is a sub-company owned by NanoTrasen that distribute replica weapons that shoot squishy foam darts. \ + They've been a staple of personal entertainment for decades but their buisness has only just moved to the fringes of the galaxy." + icon_state = "donksoft" + product_slogans = "Get your cool toys today!;Quality toy weapons for cheap prices!" + product_ads = "Express your inner child today!;Who needs responsibilities when you have toy weapons?;Make your next murder FUN!" + products = list(/obj/item/ammo_magazine/ammo_box/foam = 20, + /obj/item/weapon/storage/belt/dbandolier = 5, + /obj/item/ammo_magazine/mfoam_dart/pistol = 10, + /obj/item/ammo_magazine/mfoam_dart/smg = 10, + /obj/item/weapon/gun/projectile/shotgun/pump/toy = 5, + /obj/item/weapon/gun/projectile/revolver/toy/sawnoff = 5, + /obj/item/weapon/gun/projectile/pistol/toy = 5, + /obj/item/weapon/gun/projectile/pistol/toy/n99 = 5, + /obj/item/weapon/gun/projectile/shotgun/pump/toy/levergun = 5, + /obj/item/weapon/gun/projectile/revolver/toy = 5, + /obj/item/weapon/gun/projectile/revolver/toy/big_iron = 5, + /obj/item/weapon/gun/projectile/revolver/toy/crossbow = 5, + /obj/item/weapon/gun/projectile/automatic/toy = 5 + ) + contraband = list() + prices = list(/obj/item/ammo_magazine/ammo_box/foam = 50, + /obj/item/weapon/storage/belt/dbandolier = 100, + /obj/item/ammo_magazine/mfoam_dart/pistol = 25, + /obj/item/ammo_magazine/mfoam_dart/smg = 25, + /obj/item/weapon/gun/projectile/shotgun/pump/toy = 250, + /obj/item/weapon/gun/projectile/revolver/toy/sawnoff = 150, + /obj/item/weapon/gun/projectile/pistol/toy = 100, + /obj/item/weapon/gun/projectile/pistol/toy/n99 = 175, + /obj/item/weapon/gun/projectile/shotgun/pump/toy/levergun = 250, + /obj/item/weapon/gun/projectile/revolver/toy = 100, + /obj/item/weapon/gun/projectile/revolver/toy/big_iron = 175, + /obj/item/weapon/gun/projectile/revolver/toy/crossbow = 75, + /obj/item/weapon/gun/projectile/automatic/toy = 300) + vending_sound = "machines/vending/vending_cans.ogg" + /* * Department/job vendors to sit in place of lockers taking up space */ @@ -1179,6 +1231,7 @@ products = list( /obj/item/clothing/under/rank/chef = 5, /obj/item/clothing/shoes/black = 5, + /obj/item/clothing/shoes/cookflop = 2, /obj/item/clothing/suit/storage/apron/white = 5, /obj/item/clothing/suit/chef = 5, /obj/item/clothing/suit/chef/classic = 5, @@ -1212,10 +1265,12 @@ /obj/item/clothing/shoes/white = 5, /obj/item/clothing/suit/storage/toggle/labcoat = 5, /obj/item/clothing/suit/storage/toggle/labcoat/modern = 5, + /obj/item/clothing/suit/storage/toggle/labcoat/old = 5, //VoreStation edit, pre-fulp labcoat. /obj/item/clothing/mask/surgical = 5, /obj/item/clothing/suit/storage/hooded/wintercoat/medical = 5, /obj/item/clothing/suit/storage/hooded/wintercoat/medical/alt = 5, - /obj/item/clothing/shoes/boots/winter/medical = 5 + /obj/item/clothing/shoes/boots/winter/medical = 5, + /obj/item/clothing/head/beret/medical = 5 ) req_log_access = access_hop has_logs = 1 @@ -1231,7 +1286,9 @@ /obj/item/clothing/under/rank/chemist/skirt = 5, /obj/item/clothing/shoes/white = 5, /obj/item/clothing/suit/storage/toggle/labcoat/chemist = 5, + /obj/item/clothing/suit/storage/toggle/labcoat/old/chem = 5, //VoreStation edit, pre-fulp labcoat. /obj/item/clothing/suit/storage/hooded/wintercoat/medical/chemist = 5, + /obj/item/clothing/head/beret/medical/chem = 5, /obj/item/weapon/storage/backpack/chemistry = 5, /obj/item/weapon/storage/backpack/satchel/chem = 5, /obj/item/weapon/storage/bag/chemistry = 5 @@ -1267,7 +1324,9 @@ /obj/item/clothing/under/rank/virologist/skirt = 5, /obj/item/clothing/shoes/white = 5, /obj/item/clothing/suit/storage/toggle/labcoat/virologist = 5, - /obj/item/clothing/suit/storage/hooded/wintercoat/medical/viro = 5, + /obj/item/clothing/suit/storage/toggle/labcoat/old/vir = 5, + /obj/item/clothing/suit/storage/hooded/wintercoat/medical/viro = 5, //VoreStation edit, pre-fulp labcoat. + /obj/item/clothing/head/beret/medical/viro = 5, /obj/item/clothing/mask/surgical = 5, /obj/item/weapon/storage/backpack/virology = 5, /obj/item/weapon/storage/backpack/satchel/vir = 5 @@ -1286,11 +1345,13 @@ /obj/item/clothing/under/rank/scientist/skirt = 5, /obj/item/clothing/under/rank/scientist/turtleneck = 5, /obj/item/clothing/suit/storage/toggle/labcoat = 5, + /obj/item/clothing/suit/storage/toggle/labcoat/old = 5, //VoreStation edit, pre-fulp labcoat. /obj/item/clothing/suit/storage/toggle/labcoat/modern = 5, /obj/item/clothing/shoes/white = 5, /obj/item/clothing/shoes/slippers = 5, /obj/item/clothing/suit/storage/hooded/wintercoat/science = 5, /obj/item/clothing/shoes/boots/winter/science = 5, + /obj/item/clothing/head/beret/science = 5, /obj/item/weapon/storage/backpack/toxins = 5, /obj/item/weapon/storage/backpack/satchel/tox = 5 ) @@ -1307,6 +1368,7 @@ /obj/item/clothing/under/rank/roboticist = 5, /obj/item/clothing/suit/storage/toggle/labcoat/roboticist = 5, /obj/item/clothing/suit/storage/hooded/wintercoat/science/robotics = 5, + /obj/item/clothing/head/beret/science/robotics = 5, /obj/item/clothing/shoes/black = 5, /obj/item/clothing/gloves/black = 5, /obj/item/weapon/storage/backpack/toxins = 5, @@ -1513,4 +1575,51 @@ /obj/item/clothing/suit/storage/forensics/red = 5 ) req_log_access = access_hop + has_logs = 1 + +/obj/machinery/vending/wardrobe/mimedrobe + name = "mime wardrobe vendor" + desc = "All the things you need to perform your job! Why didn't you already have them?" + product_slogans = "..." + icon_state = "mimedrobe" + req_access = list(access_mime) + products = list( + /obj/item/clothing/under/mime = 1, + /obj/item/clothing/under/sexymime = 1, + /obj/item/clothing/under/sexymime/dress = 1, + /obj/item/clothing/mask/gas/mime = 1, + /obj/item/clothing/mask/gas/sexymime = 1, + /obj/item/clothing/head/soft/mime = 1, + /obj/item/clothing/head/collectable/beret = 1, + /obj/item/clothing/suit/suspenders = 1, + /obj/item/clothing/shoes/mime = 1 + ) + req_log_access = access_hop + has_logs = 1 + +/obj/machinery/vending/wardrobe/clowndrobe + name = "clown wardrobe vendor" + desc = "All the things you need to perform your job! Why didn't you already have them?" + product_slogans = "Honk!" + icon_state = "clowndrobe" + req_access = list(access_clown) + products = list( + /obj/item/clothing/under/rank/clown = 1, + /obj/item/clothing/under/sexyclown = 1, + /obj/item/clothing/under/clown/green = 1, + /obj/item/clothing/under/clown/purple = 1, + /obj/item/clothing/under/clown/yellow = 1, + /obj/item/clothing/under/clown/orange = 1, + /obj/item/clothing/under/clown/blue = 1, + /obj/item/clothing/mask/gas/clown_hat = 1, + /obj/item/clothing/mask/gas/sexyclown = 1, + /obj/item/clothing/mask/emotions = 1, + /obj/item/clothing/shoes/clown_shoes = 1, + /obj/item/weapon/reagent_containers/food/snacks/pie = 5, + /obj/item/weapon/bananapeel = 5 + ) + contraband = list( + /obj/item/clothing/under/clown/rainbow = 1 + ) + req_log_access = access_hop has_logs = 1 \ No newline at end of file diff --git a/code/modules/economy/vending_machines_vr.dm b/code/modules/economy/vending_machines_vr.dm index 593f087065..756a17645f 100644 --- a/code/modules/economy/vending_machines_vr.dm +++ b/code/modules/economy/vending_machines_vr.dm @@ -23,6 +23,8 @@ /obj/item/clothing/glasses/omnihud/med = 4, /obj/item/device/glasses_kit = 1, /obj/item/weapon/storage/quickdraw/syringe_case = 4) ..() +// Food Machines (for event/away maps) + //I want this not just as part of the zoo. ;v /obj/machinery/vending/food name = "Food-O-Mat" @@ -234,20 +236,7 @@ contraband = list(/obj/item/weapon/reagent_containers/food/snacks/tofurkey = 10) vend_delay = 10 -//End of food event machines - -/* For later, then -/obj/machinery/vending/weapon_machine - name = "Frozen Star Guns&Ammo" - desc = "A self-defense equipment vending machine. When you need to take care of that clown." - product_slogans = "The best defense is good offense!;Buy for your whole family today!;Nobody can outsmart bullet!;God created man - Frozen Star made them EQUAL!;Nobody can outsmart bullet!;Stupidity can be cured! By LEAD.;Dead kids can't bully your children!" - product_ads = "Stunning!;Take justice in your own hands!;LEADearship!" - icon = 'icons/obj/vending_vr.dmi' - icon_state = "weapon" - products = list(/obj/item/device/flash = 6,/obj/item/weapon/reagent_containers/spray/pepper = 6, /obj/item/weapon/gun/projectile/olivaw = 5, /obj/item/weapon/gun/projectile/giskard = 5, /obj/item/ammo_magazine/mg/cl32/rubber = 20) - contraband = list(/obj/item/weapon/reagent_containers/food/snacks/syndicake = 6) - prices = list(/obj/item/device/flash = 600,/obj/item/weapon/reagent_containers/spray/pepper = 800, /obj/item/weapon/gun/projectile/olivaw = 1600, /obj/item/weapon/gun/projectile/giskard = 1200, /obj/item/ammo_magazine/mg/cl32/rubber = 200) -*/ +// Food Machines (for event/away maps) /obj/machinery/vending/fitness/New() products += list(/obj/item/weapon/reagent_containers/food/snacks/liquidprotein = 8) @@ -271,1191 +260,16 @@ req_log_access = access_cmo has_logs = 1 -/obj/machinery/vending/loadout - name = "Fingers and Toes" - desc = "A special vendor for gloves and shoes!" - product_ads = "Do you have fingers and toes? COVER THEM UP!;Show me your toes! Wait. NO DON'T! BUY NEW SHOES!;Don't leave prints, BUY SOME GLOVES!;Remember to check your shoes for micros! You don't have to let them out, but just check for them!;Fingers and Toes is not liable for micro entrapment or abuse under the feet of our patrons.!;This little piggy went WE WE WE all the way down to FINGERS AND TOES to pick up some sweet new gloves and shoes." - icon = 'icons/obj/vending_vr.dmi' - icon_state = "glovesnshoes" - products = list(/obj/item/clothing/gloves/evening = 5, - /obj/item/clothing/gloves/fingerless = 5, - /obj/item/clothing/gloves/black = 5, - /obj/item/clothing/gloves/blue = 5, - /obj/item/clothing/gloves/brown = 5, - /obj/item/clothing/gloves/color = 5, - /obj/item/clothing/gloves/green = 5, - /obj/item/clothing/gloves/grey = 5, - /obj/item/clothing/gloves/sterile/latex = 5, - /obj/item/clothing/gloves/light_brown = 5, - /obj/item/clothing/gloves/sterile/nitrile = 5, - /obj/item/clothing/gloves/orange = 5, - /obj/item/clothing/gloves/purple = 5, - /obj/item/clothing/gloves/red = 5, - /obj/item/clothing/gloves/fluff/siren = 5, - /obj/item/clothing/gloves/white = 5, - /obj/item/clothing/gloves/duty = 5, - /obj/item/clothing/shoes/athletic = 5, - /obj/item/clothing/shoes/boots/fluff/siren = 5, - /obj/item/clothing/shoes/slippers = 5, - /obj/item/clothing/shoes/boots/cowboy/classic = 5, - /obj/item/clothing/shoes/boots/cowboy = 5, - /obj/item/clothing/shoes/boots/duty = 5, - /obj/item/clothing/shoes/flats/white/color = 5, - /obj/item/clothing/shoes/flipflop = 5, - /obj/item/clothing/shoes/heels = 5, - /obj/item/clothing/shoes/hitops/black = 5, - /obj/item/clothing/shoes/hitops/blue = 5, - /obj/item/clothing/shoes/hitops/green = 5, - /obj/item/clothing/shoes/hitops/orange = 5, - /obj/item/clothing/shoes/hitops/purple = 5, - /obj/item/clothing/shoes/hitops/red = 5, - /obj/item/clothing/shoes/flats/white/color = 5, - /obj/item/clothing/shoes/hitops/yellow = 5, - /obj/item/clothing/shoes/boots/jackboots = 5, - /obj/item/clothing/shoes/boots/jungle = 5, - /obj/item/clothing/shoes/black/cuffs = 5, - /obj/item/clothing/shoes/black/cuffs/blue = 5, - /obj/item/clothing/shoes/black/cuffs/red = 5, - /obj/item/clothing/shoes/sandal = 5, - /obj/item/clothing/shoes/black = 5, - /obj/item/clothing/shoes/blue = 5, - /obj/item/clothing/shoes/brown = 5, - /obj/item/clothing/shoes/laceup = 5, - /obj/item/clothing/shoes/green = 5, - /obj/item/clothing/shoes/laceup/brown = 5, - /obj/item/clothing/shoes/orange = 5, - /obj/item/clothing/shoes/purple = 5, - /obj/item/clothing/shoes/red = 5, - /obj/item/clothing/shoes/white = 5, - /obj/item/clothing/shoes/yellow = 5, - /obj/item/clothing/shoes/skater = 5, - /obj/item/clothing/shoes/boots/cowboy/snakeskin = 5, - /obj/item/clothing/shoes/boots/jackboots/toeless = 5, - /obj/item/clothing/shoes/boots/workboots/toeless = 5, - /obj/item/clothing/shoes/boots/winter = 5, - /obj/item/clothing/shoes/boots/workboots = 5, - /obj/item/clothing/shoes/footwraps = 5) - prices = list(/obj/item/clothing/gloves/evening = 50, - /obj/item/clothing/gloves/fingerless = 50, - /obj/item/clothing/gloves/black = 50, - /obj/item/clothing/gloves/blue = 50, - /obj/item/clothing/gloves/brown = 50, - /obj/item/clothing/gloves/color = 50, - /obj/item/clothing/gloves/green = 50, - /obj/item/clothing/gloves/grey = 50, - /obj/item/clothing/gloves/sterile/latex = 100, - /obj/item/clothing/gloves/light_brown = 50, - /obj/item/clothing/gloves/sterile/nitrile = 100, - /obj/item/clothing/gloves/orange = 50, - /obj/item/clothing/gloves/purple = 50, - /obj/item/clothing/gloves/red = 50, - /obj/item/clothing/gloves/fluff/siren = 50, - /obj/item/clothing/gloves/white = 50, - /obj/item/clothing/gloves/duty = 150, - /obj/item/clothing/shoes/athletic = 50, - /obj/item/clothing/shoes/boots/fluff/siren = 50, - /obj/item/clothing/shoes/slippers = 50, - /obj/item/clothing/shoes/boots/cowboy/classic = 50, - /obj/item/clothing/shoes/boots/cowboy = 50, - /obj/item/clothing/shoes/boots/duty = 100, - /obj/item/clothing/shoes/flats/white/color = 50, - /obj/item/clothing/shoes/flipflop = 50, - /obj/item/clothing/shoes/heels = 50, - /obj/item/clothing/shoes/hitops/black = 50, - /obj/item/clothing/shoes/hitops/blue = 50, - /obj/item/clothing/shoes/hitops/green = 50, - /obj/item/clothing/shoes/hitops/orange = 50, - /obj/item/clothing/shoes/hitops/purple = 50, - /obj/item/clothing/shoes/hitops/red = 50, - /obj/item/clothing/shoes/flats/white/color = 50, - /obj/item/clothing/shoes/hitops/yellow = 50, - /obj/item/clothing/shoes/boots/jackboots = 50, - /obj/item/clothing/shoes/boots/jungle = 100, - /obj/item/clothing/shoes/black/cuffs = 50, - /obj/item/clothing/shoes/black/cuffs/blue = 50, - /obj/item/clothing/shoes/black/cuffs/red = 50, - /obj/item/clothing/shoes/sandal = 50, - /obj/item/clothing/shoes/black = 50, - /obj/item/clothing/shoes/blue = 50, - /obj/item/clothing/shoes/brown = 50, - /obj/item/clothing/shoes/laceup = 50, - /obj/item/clothing/shoes/green = 50, - /obj/item/clothing/shoes/laceup/brown = 50, - /obj/item/clothing/shoes/orange = 50, - /obj/item/clothing/shoes/purple = 50, - /obj/item/clothing/shoes/red = 50, - /obj/item/clothing/shoes/white = 50, - /obj/item/clothing/shoes/yellow = 50, - /obj/item/clothing/shoes/skater = 50, - /obj/item/clothing/shoes/boots/cowboy/snakeskin = 50, - /obj/item/clothing/shoes/boots/jackboots/toeless = 50, - /obj/item/clothing/shoes/boots/workboots/toeless = 50, - /obj/item/clothing/shoes/boots/winter = 50, - /obj/item/clothing/shoes/boots/workboots = 50, - /obj/item/clothing/shoes/footwraps = 50) - premium = list(/obj/item/clothing/gloves/rainbow = 1, - /obj/item/clothing/shoes/rainbow = 1,) - contraband = list(/obj/item/clothing/shoes/syndigaloshes = 1, - /obj/item/clothing/shoes/clown_shoes = 1) - -/obj/machinery/vending/loadout/uniform - name = "The Basics" - desc = "A vendor using compressed matter cartridges to store large amounts of basic station uniforms." - product_ads = "Don't get caught naked!;Pick up your uniform!;Using compressed matter cartridges and VERY ETHICAL labor practices, we bring you the uniforms you need!;No uniform? No problem!;We've got your covered!;The Basics is not responsible for being crushed under the amount of things inside our machines. DO NOT VEND IN EXCESS!!" - icon_state = "loadout" - vend_delay = 16 - products = list(/obj/item/device/pda = 50, - /obj/item/device/radio/headset = 50, - /obj/item/weapon/storage/backpack/ = 10, - /obj/item/weapon/storage/backpack/messenger = 10, - /obj/item/weapon/storage/backpack/satchel = 10, - /obj/item/clothing/under/color = 5, - /obj/item/clothing/under/color/aqua = 5, - /obj/item/clothing/under/color/black = 5, - /obj/item/clothing/under/color/blackjumpskirt = 5, - /obj/item/clothing/under/color/blue = 5, - /obj/item/clothing/under/color/brown = 5, - /obj/item/clothing/under/color/green = 5, - /obj/item/clothing/under/color/grey = 5, - /obj/item/clothing/under/color/orange = 5, - /obj/item/clothing/under/color/pink = 5, - /obj/item/clothing/under/color/red = 5, - /obj/item/clothing/under/color/white = 5, - /obj/item/clothing/under/color/yellow = 5, - /obj/item/clothing/shoes/black = 20, - /obj/item/clothing/shoes/white = 20) - prices = list() - -/obj/machinery/vending/loadout/accessory - name = "Looty Inc." - desc = "A special vendor for accessories." - product_ads = "Want shinies? We have the shinies.;Need that special something to complete your outfit? We have what you need!;Ditch that old dull dangly something you've got and pick up one of our shinies!;Bracelets, collars, scarfs rings and more! We have the fancy things you need!;Does your pet need a collar? We don't judge! Keep them in line with one of one of ours!;Top of the line materials! 'Hand crafted' goods!" - icon_state = "accessory" - vend_delay = 6 - products = list(/obj/item/clothing/accessory = 5, - /obj/item/clothing/accessory/armband/med/color = 10, - /obj/item/clothing/accessory/asymmetric = 5, - /obj/item/clothing/accessory/asymmetric/purple = 5, - /obj/item/clothing/accessory/asymmetric/green = 5, - /obj/item/clothing/accessory/bracelet = 5, - /obj/item/clothing/accessory/bracelet/material = 5, - /obj/item/clothing/accessory/bracelet/friendship = 5, - /obj/item/clothing/accessory/chaps = 5, - /obj/item/clothing/accessory/chaps/black = 5, - /obj/item/weapon/storage/briefcase/clutch = 1, - /obj/item/clothing/accessory/collar = 5, - /obj/item/clothing/accessory/collar/bell = 5, - /obj/item/clothing/accessory/collar/spike = 5, - /obj/item/clothing/accessory/collar/pink = 5, - /obj/item/clothing/accessory/collar/holo = 5, - /obj/item/clothing/accessory/collar/shock = 5, - /obj/item/weapon/storage/belt/fannypack = 1, - /obj/item/weapon/storage/belt/fannypack/white = 5, - /obj/item/clothing/accessory/fullcape = 5, - /obj/item/clothing/accessory/halfcape = 5, - /obj/item/clothing/accessory/hawaii = 5, - /obj/item/clothing/accessory/hawaii/random = 5, - /obj/item/clothing/accessory/locket = 5, - /obj/item/weapon/storage/backpack/purse = 1, - /obj/item/clothing/accessory/sash = 5, - /obj/item/clothing/accessory/scarf = 5, - /obj/item/clothing/accessory/scarf/red = 5, - /obj/item/clothing/accessory/scarf/darkblue = 5, - /obj/item/clothing/accessory/scarf/purple = 5, - /obj/item/clothing/accessory/scarf/yellow = 5, - /obj/item/clothing/accessory/scarf/orange = 5, - /obj/item/clothing/accessory/scarf/lightblue = 5, - /obj/item/clothing/accessory/scarf/white = 5, - /obj/item/clothing/accessory/scarf/black = 5, - /obj/item/clothing/accessory/scarf/zebra = 5, - /obj/item/clothing/accessory/scarf/christmas = 5, - /obj/item/clothing/accessory/scarf/stripedred = 5, - /obj/item/clothing/accessory/scarf/stripedgreen = 5, - /obj/item/clothing/accessory/scarf/stripedblue = 5, - /obj/item/clothing/accessory/jacket = 5, - /obj/item/clothing/accessory/jacket/checkered = 5, - /obj/item/clothing/accessory/jacket/burgundy = 5, - /obj/item/clothing/accessory/jacket/navy = 5, - /obj/item/clothing/accessory/jacket/charcoal = 5, - /obj/item/clothing/accessory/vest = 5, - /obj/item/clothing/accessory/sweater = 5, - /obj/item/clothing/accessory/sweater/pink = 5, - /obj/item/clothing/accessory/sweater/mint = 5, - /obj/item/clothing/accessory/sweater/blue = 5, - /obj/item/clothing/accessory/sweater/heart = 5, - /obj/item/clothing/accessory/sweater/nt = 5, - /obj/item/clothing/accessory/sweater/keyhole = 5, - /obj/item/clothing/accessory/sweater/winterneck = 5, - /obj/item/clothing/accessory/sweater/uglyxmas = 5, - /obj/item/clothing/accessory/sweater/flowersweater = 5, - /obj/item/clothing/accessory/sweater/redneck = 5, - /obj/item/clothing/accessory/tie = 5, - /obj/item/clothing/accessory/tie/horrible = 5, - /obj/item/clothing/accessory/tie/white = 5, - /obj/item/clothing/accessory/tie/navy = 5, - /obj/item/clothing/accessory/tie/yellow = 5, - /obj/item/clothing/accessory/tie/darkgreen = 5, - /obj/item/clothing/accessory/tie/black = 5, - /obj/item/clothing/accessory/tie/red_long = 5, - /obj/item/clothing/accessory/tie/red_clip = 5, - /obj/item/clothing/accessory/tie/blue_long = 5, - /obj/item/clothing/accessory/tie/blue_clip = 5, - /obj/item/clothing/accessory/tie/red = 5, - /obj/item/clothing/accessory/wcoat = 5, - /obj/item/clothing/accessory/wcoat/red = 5, - /obj/item/clothing/accessory/wcoat/grey = 5, - /obj/item/clothing/accessory/wcoat/brown = 5, - /obj/item/clothing/accessory/wcoat/gentleman = 5, - /obj/item/clothing/accessory/wcoat/swvest = 5, - /obj/item/clothing/accessory/wcoat/swvest/blue = 5, - /obj/item/clothing/accessory/wcoat/swvest/red = 5, - /obj/item/weapon/storage/wallet = 5, - /obj/item/weapon/storage/wallet/poly = 5, - /obj/item/weapon/storage/wallet/womens = 5, - /obj/item/weapon/lipstick = 5, - /obj/item/weapon/lipstick/purple = 5, - /obj/item/weapon/lipstick/jade = 5, - /obj/item/weapon/lipstick/black = 5, - /obj/item/clothing/ears/earmuffs = 5, - /obj/item/clothing/ears/earmuffs/headphones = 5, - /obj/item/clothing/ears/earring/stud = 5, - /obj/item/clothing/ears/earring/dangle = 5, - /obj/item/clothing/gloves/ring/mariner = 5, - /obj/item/clothing/gloves/ring/engagement = 5, - /obj/item/clothing/gloves/ring/seal/signet = 5, - /obj/item/clothing/gloves/ring/seal/mason = 5, - /obj/item/clothing/gloves/ring/material/plastic = 5, - /obj/item/clothing/gloves/ring/material/steel = 5, - /obj/item/clothing/gloves/ring/material/gold = 5, - /obj/item/clothing/glasses/eyepatch = 5, - /obj/item/clothing/glasses/gglasses = 5, - /obj/item/clothing/glasses/regular/hipster = 5, - /obj/item/clothing/glasses/rimless = 5, - /obj/item/clothing/glasses/thin = 5, - /obj/item/clothing/glasses/monocle = 5, - /obj/item/clothing/glasses/goggles = 5, - /obj/item/clothing/glasses/fluff/spiffygogs = 5, - /obj/item/clothing/glasses/fakesunglasses = 5, - /obj/item/clothing/glasses/fakesunglasses/aviator = 5, - /obj/item/clothing/mask/bandana/blue = 5, - /obj/item/clothing/mask/bandana/gold = 5, - /obj/item/clothing/mask/bandana/green = 5, - /obj/item/clothing/mask/bandana/red = 5, - /obj/item/clothing/mask/surgical = 5) - prices = list(/obj/item/clothing/accessory = 50, - /obj/item/clothing/accessory/armband/med/color = 50, - /obj/item/clothing/accessory/asymmetric = 50, - /obj/item/clothing/accessory/asymmetric/purple = 50, - /obj/item/clothing/accessory/asymmetric/green = 50, - /obj/item/clothing/accessory/bracelet = 50, - /obj/item/clothing/accessory/bracelet/material = 50, - /obj/item/clothing/accessory/bracelet/friendship = 50, - /obj/item/clothing/accessory/chaps = 50, - /obj/item/clothing/accessory/chaps/black = 50, - /obj/item/weapon/storage/briefcase/clutch = 50, - /obj/item/clothing/accessory/collar = 50, - /obj/item/clothing/accessory/collar/bell = 50, - /obj/item/clothing/accessory/collar/spike = 50, - /obj/item/clothing/accessory/collar/pink = 50, - /obj/item/clothing/accessory/collar/holo = 50, - /obj/item/clothing/accessory/collar/shock = 50, - /obj/item/weapon/storage/belt/fannypack = 50, - /obj/item/weapon/storage/belt/fannypack/white = 50, - /obj/item/clothing/accessory/fullcape = 50, - /obj/item/clothing/accessory/halfcape = 50, - /obj/item/clothing/accessory/hawaii = 50, - /obj/item/clothing/accessory/hawaii/random = 50, - /obj/item/clothing/accessory/locket = 50, - /obj/item/weapon/storage/backpack/purse = 50, - /obj/item/clothing/accessory/sash = 50, - /obj/item/clothing/accessory/scarf = 5, - /obj/item/clothing/accessory/scarf/red = 50, - /obj/item/clothing/accessory/scarf/darkblue = 50, - /obj/item/clothing/accessory/scarf/purple = 50, - /obj/item/clothing/accessory/scarf/yellow = 100, - /obj/item/clothing/accessory/scarf/orange = 50, - /obj/item/clothing/accessory/scarf/lightblue = 50, - /obj/item/clothing/accessory/scarf/white = 50, - /obj/item/clothing/accessory/scarf/black = 50, - /obj/item/clothing/accessory/scarf/zebra = 50, - /obj/item/clothing/accessory/scarf/christmas = 50, - /obj/item/clothing/accessory/scarf/stripedred = 50, - /obj/item/clothing/accessory/scarf/stripedgreen = 50, - /obj/item/clothing/accessory/scarf/stripedblue = 50, - /obj/item/clothing/accessory/jacket = 50, - /obj/item/clothing/accessory/jacket/checkered = 50, - /obj/item/clothing/accessory/jacket/burgundy = 50, - /obj/item/clothing/accessory/jacket/navy = 50, - /obj/item/clothing/accessory/jacket/charcoal = 50, - /obj/item/clothing/accessory/vest = 50, - /obj/item/clothing/accessory/sweater = 50, - /obj/item/clothing/accessory/sweater/pink = 50, - /obj/item/clothing/accessory/sweater/mint = 50, - /obj/item/clothing/accessory/sweater/blue = 50, - /obj/item/clothing/accessory/sweater/heart = 50, - /obj/item/clothing/accessory/sweater/nt = 5, - /obj/item/clothing/accessory/sweater/keyhole = 50, - /obj/item/clothing/accessory/sweater/winterneck = 50, - /obj/item/clothing/accessory/sweater/uglyxmas = 5, - /obj/item/clothing/accessory/sweater/flowersweater = 50, - /obj/item/clothing/accessory/sweater/redneck = 50, - /obj/item/clothing/accessory/tie = 50, - /obj/item/clothing/accessory/tie/horrible = 50, - /obj/item/clothing/accessory/tie/white = 50, - /obj/item/clothing/accessory/tie/navy = 50, - /obj/item/clothing/accessory/tie/yellow = 50, - /obj/item/clothing/accessory/tie/darkgreen = 50, - /obj/item/clothing/accessory/tie/black = 50, - /obj/item/clothing/accessory/tie/red_long = 50, - /obj/item/clothing/accessory/tie/red_clip = 50, - /obj/item/clothing/accessory/tie/blue_long = 50, - /obj/item/clothing/accessory/tie/blue_clip = 50, - /obj/item/clothing/accessory/tie/red = 50, - /obj/item/clothing/accessory/wcoat = 50, - /obj/item/clothing/accessory/wcoat/red = 50, - /obj/item/clothing/accessory/wcoat/grey = 50, - /obj/item/clothing/accessory/wcoat/brown = 50, - /obj/item/clothing/accessory/wcoat/gentleman = 50, - /obj/item/clothing/accessory/wcoat/swvest = 50, - /obj/item/clothing/accessory/wcoat/swvest/blue = 50, - /obj/item/clothing/accessory/wcoat/swvest/red = 50, - /obj/item/weapon/storage/wallet = 50, - /obj/item/weapon/storage/wallet/poly = 50, - /obj/item/weapon/storage/wallet/womens = 50, - /obj/item/weapon/lipstick = 50, - /obj/item/weapon/lipstick/purple = 50, - /obj/item/weapon/lipstick/jade = 50, - /obj/item/weapon/lipstick/black = 50, - /obj/item/clothing/ears/earmuffs = 50, - /obj/item/clothing/ears/earmuffs/headphones = 50, - /obj/item/clothing/ears/earring/stud = 50, - /obj/item/clothing/ears/earring/dangle = 50, - /obj/item/clothing/gloves/ring/mariner = 50, - /obj/item/clothing/gloves/ring/engagement = 50, - /obj/item/clothing/gloves/ring/seal/signet = 50, - /obj/item/clothing/gloves/ring/seal/mason = 50, - /obj/item/clothing/gloves/ring/material/plastic = 50, - /obj/item/clothing/gloves/ring/material/steel = 50, - /obj/item/clothing/gloves/ring/material/gold = 100, - /obj/item/clothing/glasses/eyepatch = 50, - /obj/item/clothing/glasses/gglasses = 50, - /obj/item/clothing/glasses/regular/hipster = 50, - /obj/item/clothing/glasses/rimless = 50, - /obj/item/clothing/glasses/thin = 50, - /obj/item/clothing/glasses/monocle = 50, - /obj/item/clothing/glasses/goggles = 50, - /obj/item/clothing/glasses/fluff/spiffygogs = 50, - /obj/item/clothing/glasses/fakesunglasses = 50, - /obj/item/clothing/glasses/fakesunglasses/aviator = 50, - /obj/item/clothing/mask/bandana/blue = 50, - /obj/item/clothing/mask/bandana/gold = 50, - /obj/item/clothing/mask/bandana/green = 50, - /obj/item/clothing/mask/bandana/red = 50, - /obj/item/clothing/mask/surgical = 50) - premium = list(/obj/item/weapon/bedsheet/rainbow = 1) - contraband = list(/obj/item/clothing/mask/gas/clown_hat = 1) - -/obj/machinery/vending/loadout/clothing - name = "General Jump" - desc = "A special vendor using compressed matter cartridges to store large amounts of clothing." - product_ads = "Tired of your grey jumpsuit? Spruce yourself up!;We have the outfit for you!;Don't let that grey jumpsuit get you down, get a ROBUST outfit right now!;Using compressed matter catridges and VERY ETHICAL labor practices to bring YOU the clothing you crave!;Are you sure you want to go to work in THAT?;All of our wares have a whole TWO pockets!" - icon_state = "clothing" - vend_delay = 16 - products = list(/obj/item/clothing/under/bathrobe = 5, - /obj/item/clothing/under/dress/black_corset = 5, - /obj/item/clothing/under/blazer = 5, - /obj/item/clothing/under/blazer/skirt = 5, - /obj/item/clothing/under/cheongsam = 5, - /obj/item/clothing/under/cheongsam/red = 5, - /obj/item/clothing/under/cheongsam/blue = 5, - /obj/item/clothing/under/cheongsam/black = 5, - /obj/item/clothing/under/cheongsam/darkred = 5, - /obj/item/clothing/under/cheongsam/green = 5, - /obj/item/clothing/under/cheongsam/purple = 5, - /obj/item/clothing/under/cheongsam/darkblue = 5, - /obj/item/clothing/under/croptop = 5, - /obj/item/clothing/under/croptop/red = 5, - /obj/item/clothing/under/croptop/grey = 5, - /obj/item/clothing/under/cuttop = 5, - /obj/item/clothing/under/cuttop/red = 5, - /obj/item/clothing/under/suit_jacket/female/skirt = 5, - /obj/item/clothing/under/dress/dress_fire = 5, - /obj/item/clothing/under/dress/flamenco = 5, - /obj/item/clothing/under/dress/flower_dress = 5, - /obj/item/clothing/under/fluff/gnshorts = 5, - /obj/item/clothing/under/color = 5, - /obj/item/clothing/under/color/aqua = 5, - /obj/item/clothing/under/color/black = 5, - /obj/item/clothing/under/color/blackf = 5, - /obj/item/clothing/under/color/blackjumpskirt = 5, - /obj/item/clothing/under/color/blue = 5, - /obj/item/clothing/under/color/brown = 5, - /obj/item/clothing/under/color/darkblue = 5, - /obj/item/clothing/under/color/darkred = 5, - /obj/item/clothing/under/color/green = 5, - /obj/item/clothing/under/color/grey = 5, - /obj/item/clothing/under/color/lightblue = 5, - /obj/item/clothing/under/color/lightbrown = 5, - /obj/item/clothing/under/color/lightgreen = 5, - /obj/item/clothing/under/color/lightpurple = 5, - /obj/item/clothing/under/color/lightred = 5, - /obj/item/clothing/under/color/orange = 5, - /obj/item/clothing/under/color/pink = 5, - /obj/item/clothing/under/color/prison = 5, - /obj/item/clothing/under/color/ranger = 5, - /obj/item/clothing/under/color/red = 5, - /obj/item/clothing/under/color/white = 5, - /obj/item/clothing/under/color/yellow = 5, - /obj/item/clothing/under/color/yellowgreen = 5, - /obj/item/clothing/under/aether = 5, - /obj/item/clothing/under/focal = 5, - /obj/item/clothing/under/hephaestus = 5, - /obj/item/clothing/under/wardt = 5, - /obj/item/clothing/under/kilt = 5, - /obj/item/clothing/under/fluff/latexmaid = 5, - /obj/item/clothing/under/dress/lilacdress = 5, - /obj/item/clothing/under/dress/white2 = 5, - /obj/item/clothing/under/dress/white4 = 5, - /obj/item/clothing/under/dress/maid = 5, - /obj/item/clothing/under/dress/maid/sexy = 5, - /obj/item/clothing/under/dress/maid/janitor = 5, - /obj/item/clothing/under/moderncoat = 5, - /obj/item/clothing/under/permit = 5, - /obj/item/clothing/under/oldwoman = 5, - /obj/item/clothing/under/frontier = 5, - /obj/item/clothing/under/mbill = 5, - /obj/item/clothing/under/pants/baggy/ = 5, - /obj/item/clothing/under/pants/baggy/classicjeans = 5, - /obj/item/clothing/under/pants/baggy/mustangjeans = 5, - /obj/item/clothing/under/pants/baggy/blackjeans = 5, - /obj/item/clothing/under/pants/baggy/greyjeans = 5, - /obj/item/clothing/under/pants/baggy/youngfolksjeans = 5, - /obj/item/clothing/under/pants/baggy/white = 5, - /obj/item/clothing/under/pants/baggy/red = 5, - /obj/item/clothing/under/pants/baggy/black = 5, - /obj/item/clothing/under/pants/baggy/tan = 5, - /obj/item/clothing/under/pants/baggy/track = 5, - /obj/item/clothing/under/pants/baggy/khaki = 5, - /obj/item/clothing/under/pants/baggy/camo = 5, - /obj/item/clothing/under/pants/utility/ = 5, - /obj/item/clothing/under/pants/utility/orange = 5, - /obj/item/clothing/under/pants/utility/blue = 5, - /obj/item/clothing/under/pants/utility/white = 5, - /obj/item/clothing/under/pants/utility/red = 5, - /obj/item/clothing/under/pants/chaps = 5, - /obj/item/clothing/under/pants/chaps/black = 5, - /obj/item/clothing/under/pants/track = 5, - /obj/item/clothing/under/pants/track/red = 5, - /obj/item/clothing/under/pants/track/white = 5, - /obj/item/clothing/under/pants/track/green = 5, - /obj/item/clothing/under/pants/track/blue = 5, - /obj/item/clothing/under/pants/yogapants = 5, - /obj/item/clothing/under/ascetic = 5, - /obj/item/clothing/under/dress/white3 = 5, - /obj/item/clothing/under/skirt/pleated = 5, - /obj/item/clothing/under/dress/darkred = 5, - /obj/item/clothing/under/dress/redeveninggown = 5, - /obj/item/clothing/under/dress/red_swept_dress = 5, - /obj/item/clothing/under/dress/sailordress = 5, - /obj/item/clothing/under/dress/sari = 5, - /obj/item/clothing/under/dress/sari/green = 5, - /obj/item/clothing/under/dress/qipao = 5, - /obj/item/clothing/under/dress/qipao/red = 5, - /obj/item/clothing/under/dress/qipao/white = 5, - /obj/item/clothing/under/shorts/red = 5, - /obj/item/clothing/under/shorts/green = 5, - /obj/item/clothing/under/shorts/blue = 5, - /obj/item/clothing/under/shorts/black = 5, - /obj/item/clothing/under/shorts/grey = 5, - /obj/item/clothing/under/shorts/white = 5, - /obj/item/clothing/under/shorts/jeans = 5, - /obj/item/clothing/under/shorts/jeans/ = 5, - /obj/item/clothing/under/shorts/jeans/classic = 5, - /obj/item/clothing/under/shorts/jeans/mustang = 5, - /obj/item/clothing/under/shorts/jeans/youngfolks = 5, - /obj/item/clothing/under/shorts/jeans/black = 5, - /obj/item/clothing/under/shorts/jeans/grey = 5, - /obj/item/clothing/under/shorts/khaki/ = 5, - /obj/item/clothing/under/skirt/loincloth = 5, - /obj/item/clothing/under/skirt/khaki = 5, - /obj/item/clothing/under/skirt/blue = 5, - /obj/item/clothing/under/skirt/red = 5, - /obj/item/clothing/under/skirt/denim = 5, - /obj/item/clothing/under/skirt/pleated = 5, - /obj/item/clothing/under/skirt/outfit/plaid_blue = 5, - /obj/item/clothing/under/skirt/outfit/plaid_red = 5, - /obj/item/clothing/under/skirt/outfit/plaid_purple = 5, - /obj/item/clothing/under/overalls/sleek = 5, - /obj/item/clothing/under/sl_suit = 5, - /obj/item/clothing/under/gentlesuit = 5, - /obj/item/clothing/under/gentlesuit/skirt = 5, - /obj/item/clothing/under/suit_jacket = 5, - /obj/item/clothing/under/suit_jacket/really_black/skirt = 5, - /obj/item/clothing/under/suit_jacket/really_black = 5, - /obj/item/clothing/under/suit_jacket/female/skirt = 5, - /obj/item/clothing/under/suit_jacket/female/ = 5, - /obj/item/clothing/under/suit_jacket/red = 5, - /obj/item/clothing/under/suit_jacket/red/skirt = 5, - /obj/item/clothing/under/suit_jacket/charcoal = 5, - /obj/item/clothing/under/suit_jacket/charcoal/skirt = 5, - /obj/item/clothing/under/suit_jacket/navy = 5, - /obj/item/clothing/under/suit_jacket/navy/skirt = 5, - /obj/item/clothing/under/suit_jacket/burgundy = 5, - /obj/item/clothing/under/suit_jacket/burgundy/skirt = 5, - /obj/item/clothing/under/suit_jacket/checkered = 5, - /obj/item/clothing/under/suit_jacket/checkered/skirt = 5, - /obj/item/clothing/under/suit_jacket/tan = 5, - /obj/item/clothing/under/suit_jacket/tan/skirt = 5, - /obj/item/clothing/under/scratch = 5, - /obj/item/clothing/under/scratch/skirt = 5, - /obj/item/clothing/under/sundress = 5, - /obj/item/clothing/under/sundress_white = 5, - /obj/item/clothing/under/rank/psych/turtleneck/sweater = 5, - /obj/item/weapon/storage/box/fluff/swimsuit = 5, - /obj/item/weapon/storage/box/fluff/swimsuit/blue = 5, - /obj/item/weapon/storage/box/fluff/swimsuit/purple = 5, - /obj/item/weapon/storage/box/fluff/swimsuit/green = 5, - /obj/item/weapon/storage/box/fluff/swimsuit/red = 5, - /obj/item/weapon/storage/box/fluff/swimsuit/white = 5, - /obj/item/weapon/storage/box/fluff/swimsuit/earth = 5, - /obj/item/weapon/storage/box/fluff/swimsuit/engineering = 5, - /obj/item/weapon/storage/box/fluff/swimsuit/science = 5, - /obj/item/weapon/storage/box/fluff/swimsuit/security = 5, - /obj/item/weapon/storage/box/fluff/swimsuit/medical = 5, - /obj/item/weapon/storage/box/fluff/swimsuit/cowbikini = 5, - /obj/item/clothing/under/utility = 5, - /obj/item/clothing/under/utility/grey = 5, - /obj/item/clothing/under/utility/blue = 5, - /obj/item/clothing/under/fluff/v_nanovest = 5, - /obj/item/clothing/under/dress/westernbustle = 5, - /obj/item/clothing/under/wedding/bride_white = 5, - /obj/item/weapon/storage/backpack/ = 5, - /obj/item/weapon/storage/backpack/messenger = 5, - /obj/item/weapon/storage/backpack/satchel = 5) - prices = list(/obj/item/clothing/under/bathrobe = 50, - /obj/item/clothing/under/dress/black_corset = 50, - /obj/item/clothing/under/blazer = 50, - /obj/item/clothing/under/blazer/skirt = 50, - /obj/item/clothing/under/cheongsam = 50, - /obj/item/clothing/under/cheongsam/red = 50, - /obj/item/clothing/under/cheongsam/blue = 50, - /obj/item/clothing/under/cheongsam/black = 50, - /obj/item/clothing/under/cheongsam/darkred = 50, - /obj/item/clothing/under/cheongsam/green = 50, - /obj/item/clothing/under/cheongsam/purple = 50, - /obj/item/clothing/under/cheongsam/darkblue = 50, - /obj/item/clothing/under/croptop = 50, - /obj/item/clothing/under/croptop/red = 50, - /obj/item/clothing/under/croptop/grey = 50, - /obj/item/clothing/under/cuttop = 50, - /obj/item/clothing/under/cuttop/red = 50, - /obj/item/clothing/under/suit_jacket/female/skirt = 50, - /obj/item/clothing/under/dress/dress_fire = 50, - /obj/item/clothing/under/dress/flamenco = 50, - /obj/item/clothing/under/dress/flower_dress = 50, - /obj/item/clothing/under/fluff/gnshorts = 50, - /obj/item/clothing/under/color = 50, - /obj/item/clothing/under/color/aqua = 50, - /obj/item/clothing/under/color/black = 50, - /obj/item/clothing/under/color/blackf = 50, - /obj/item/clothing/under/color/blackjumpskirt = 50, - /obj/item/clothing/under/color/blue = 50, - /obj/item/clothing/under/color/brown = 50, - /obj/item/clothing/under/color/darkblue = 50, - /obj/item/clothing/under/color/darkred = 50, - /obj/item/clothing/under/color/green = 50, - /obj/item/clothing/under/color/grey = 50, - /obj/item/clothing/under/color/lightblue = 50, - /obj/item/clothing/under/color/lightbrown = 50, - /obj/item/clothing/under/color/lightgreen = 50, - /obj/item/clothing/under/color/lightpurple = 50, - /obj/item/clothing/under/color/lightred = 50, - /obj/item/clothing/under/color/orange = 50, - /obj/item/clothing/under/color/pink = 50, - /obj/item/clothing/under/color/prison = 50, - /obj/item/clothing/under/color/ranger = 50, - /obj/item/clothing/under/color/red = 50, - /obj/item/clothing/under/color/white = 50, - /obj/item/clothing/under/color/yellow = 50, - /obj/item/clothing/under/color/yellowgreen = 50, - /obj/item/clothing/under/aether = 50, - /obj/item/clothing/under/focal = 50, - /obj/item/clothing/under/hephaestus = 50, - /obj/item/clothing/under/wardt = 50, - /obj/item/clothing/under/kilt = 50, - /obj/item/clothing/under/fluff/latexmaid = 50, - /obj/item/clothing/under/dress/lilacdress = 50, - /obj/item/clothing/under/dress/white2 = 50, - /obj/item/clothing/under/dress/white4 = 50, - /obj/item/clothing/under/dress/maid = 50, - /obj/item/clothing/under/dress/maid/sexy = 50, - /obj/item/clothing/under/dress/maid/janitor = 50, - /obj/item/clothing/under/moderncoat = 50, - /obj/item/clothing/under/permit = 50, - /obj/item/clothing/under/oldwoman = 50, - /obj/item/clothing/under/frontier = 50, - /obj/item/clothing/under/mbill = 50, - /obj/item/clothing/under/pants/baggy/ = 50, - /obj/item/clothing/under/pants/baggy/classicjeans = 50, - /obj/item/clothing/under/pants/baggy/mustangjeans = 50, - /obj/item/clothing/under/pants/baggy/blackjeans = 50, - /obj/item/clothing/under/pants/baggy/greyjeans = 50, - /obj/item/clothing/under/pants/baggy/youngfolksjeans = 50, - /obj/item/clothing/under/pants/baggy/white = 50, - /obj/item/clothing/under/pants/baggy/red = 50, - /obj/item/clothing/under/pants/baggy/black = 50, - /obj/item/clothing/under/pants/baggy/tan = 50, - /obj/item/clothing/under/pants/baggy/track = 50, - /obj/item/clothing/under/pants/baggy/khaki = 50, - /obj/item/clothing/under/pants/baggy/camo = 50, - /obj/item/clothing/under/pants/utility/ = 50, - /obj/item/clothing/under/pants/utility/orange = 50, - /obj/item/clothing/under/pants/utility/blue = 50, - /obj/item/clothing/under/pants/utility/white = 50, - /obj/item/clothing/under/pants/utility/red = 50, - /obj/item/clothing/under/pants/chaps = 50, - /obj/item/clothing/under/pants/chaps/black = 50, - /obj/item/clothing/under/pants/track = 50, - /obj/item/clothing/under/pants/track/red = 50, - /obj/item/clothing/under/pants/track/white = 50, - /obj/item/clothing/under/pants/track/green = 50, - /obj/item/clothing/under/pants/track/blue = 50, - /obj/item/clothing/under/pants/yogapants = 50, - /obj/item/clothing/under/ascetic = 50, - /obj/item/clothing/under/dress/white3 = 50, - /obj/item/clothing/under/skirt/pleated = 50, - /obj/item/clothing/under/dress/darkred = 50, - /obj/item/clothing/under/dress/redeveninggown = 50, - /obj/item/clothing/under/dress/red_swept_dress = 50, - /obj/item/clothing/under/dress/sailordress = 50, - /obj/item/clothing/under/dress/sari = 50, - /obj/item/clothing/under/dress/sari/green = 50, - /obj/item/clothing/under/dress/qipao = 50, - /obj/item/clothing/under/dress/qipao/red = 50, - /obj/item/clothing/under/dress/qipao/white = 50, - /obj/item/clothing/under/shorts/red = 50, - /obj/item/clothing/under/shorts/green = 50, - /obj/item/clothing/under/shorts/blue = 50, - /obj/item/clothing/under/shorts/black = 50, - /obj/item/clothing/under/shorts/grey = 50, - /obj/item/clothing/under/shorts/white = 50, - /obj/item/clothing/under/shorts/jeans = 50, - /obj/item/clothing/under/shorts/jeans/ = 50, - /obj/item/clothing/under/shorts/jeans/classic = 50, - /obj/item/clothing/under/shorts/jeans/mustang = 50, - /obj/item/clothing/under/shorts/jeans/youngfolks = 50, - /obj/item/clothing/under/shorts/jeans/black = 50, - /obj/item/clothing/under/shorts/jeans/grey = 50, - /obj/item/clothing/under/shorts/khaki/ = 50, - /obj/item/clothing/under/skirt/loincloth = 50, - /obj/item/clothing/under/skirt/khaki = 50, - /obj/item/clothing/under/skirt/blue = 50, - /obj/item/clothing/under/skirt/red = 50, - /obj/item/clothing/under/skirt/denim = 50, - /obj/item/clothing/under/skirt/pleated = 50, - /obj/item/clothing/under/skirt/outfit/plaid_blue = 50, - /obj/item/clothing/under/skirt/outfit/plaid_red = 50, - /obj/item/clothing/under/skirt/outfit/plaid_purple = 50, - /obj/item/clothing/under/overalls/sleek = 50, - /obj/item/clothing/under/sl_suit = 50, - /obj/item/clothing/under/gentlesuit = 50, - /obj/item/clothing/under/gentlesuit/skirt = 50, - /obj/item/clothing/under/suit_jacket = 50, - /obj/item/clothing/under/suit_jacket/really_black/skirt = 50, - /obj/item/clothing/under/suit_jacket/really_black = 50, - /obj/item/clothing/under/suit_jacket/female/skirt = 50, - /obj/item/clothing/under/suit_jacket/female/ = 50, - /obj/item/clothing/under/suit_jacket/red = 50, - /obj/item/clothing/under/suit_jacket/red/skirt = 50, - /obj/item/clothing/under/suit_jacket/charcoal = 50, - /obj/item/clothing/under/suit_jacket/charcoal/skirt = 50, - /obj/item/clothing/under/suit_jacket/navy = 50, - /obj/item/clothing/under/suit_jacket/navy/skirt = 50, - /obj/item/clothing/under/suit_jacket/burgundy = 50, - /obj/item/clothing/under/suit_jacket/burgundy/skirt = 50, - /obj/item/clothing/under/suit_jacket/checkered = 50, - /obj/item/clothing/under/suit_jacket/checkered/skirt = 50, - /obj/item/clothing/under/suit_jacket/tan = 50, - /obj/item/clothing/under/suit_jacket/tan/skirt = 50, - /obj/item/clothing/under/scratch = 50, - /obj/item/clothing/under/scratch/skirt = 50, - /obj/item/clothing/under/sundress = 50, - /obj/item/clothing/under/sundress_white = 50, - /obj/item/clothing/under/rank/psych/turtleneck/sweater = 50, - /obj/item/weapon/storage/box/fluff/swimsuit = 50, - /obj/item/weapon/storage/box/fluff/swimsuit/blue = 50, - /obj/item/weapon/storage/box/fluff/swimsuit/purple = 50, - /obj/item/weapon/storage/box/fluff/swimsuit/green = 50, - /obj/item/weapon/storage/box/fluff/swimsuit/red = 50, - /obj/item/weapon/storage/box/fluff/swimsuit/white = 50, - /obj/item/weapon/storage/box/fluff/swimsuit/earth = 50, - /obj/item/weapon/storage/box/fluff/swimsuit/engineering = 50, - /obj/item/weapon/storage/box/fluff/swimsuit/science = 50, - /obj/item/weapon/storage/box/fluff/swimsuit/security = 50, - /obj/item/weapon/storage/box/fluff/swimsuit/medical = 50, - /obj/item/weapon/storage/box/fluff/swimsuit/cowbikini = 50, - /obj/item/clothing/under/utility = 50, - /obj/item/clothing/under/utility/grey = 50, - /obj/item/clothing/under/utility/blue = 50, - /obj/item/clothing/under/fluff/v_nanovest = 50, - /obj/item/clothing/under/dress/westernbustle = 50, - /obj/item/clothing/under/wedding/bride_white = 50, - /obj/item/weapon/storage/backpack/ = 50, - /obj/item/weapon/storage/backpack/messenger = 50, - /obj/item/weapon/storage/backpack/satchel = 50) - premium = list(/obj/item/clothing/under/color/rainbow = 1) - contraband = list(/obj/item/clothing/under/rank/clown = 1) - -//////////////////START OF CHIPS CO. VENDORS////////////////// - -/obj/machinery/vending/loadout/gadget - name = "Chips Co." - desc = "A special vendor for devices and gadgets." - product_ads = "You can't RESIST our great deals!;Feeling disconnected? We have a gadget for you!;You know you have the capacity to buy our capacitors!;FILL THAT HOLE IN YOUR HEART WITH OUR PLASTIC DISTRACTIONS!!!;Devices for everyone! Chips Co.!;ROBUST INVENTORY, GREAT PRICES! ;DON'T FORGET THE oyPAD 13s PRO! ON SALE NOW, ONLY ONE THOUSAND THALERS!" - icon_state = "gadgets" - vend_delay = 11 - products = list(/obj/item/clothing/suit/circuitry = 1, - /obj/item/clothing/head/circuitry = 1, - /obj/item/clothing/shoes/circuitry = 1, - /obj/item/clothing/gloves/circuitry = 1, - /obj/item/clothing/under/circuitry = 1, - /obj/item/clothing/glasses/circuitry = 1, - /obj/item/clothing/ears/circuitry = 1, - /obj/item/device/text_to_speech = 5, - /obj/item/device/paicard = 5, - /obj/item/device/communicator = 10, - /obj/item/device/communicator/watch = 10, - /obj/item/device/radio = 10, - /obj/item/device/camera = 5, - /obj/item/device/taperecorder = 5, - /obj/item/modular_computer/tablet/preset/custom_loadout/cheap = 5, - /obj/item/device/pda = 10, - /obj/item/device/radio/headset = 10, - /obj/item/device/flashlight = 5, - /obj/item/device/laser_pointer = 3, - /obj/item/clothing/glasses/omnihud = 10, - /obj/item/device/walkpod = 5, - /obj/item/device/juke_remote = 1, - /obj/item/instrument/piano_synth/headphones = 2, // You're making a subsystem do work, I don't want it TOO busy - /obj/item/instrument/piano_synth/headphones/spacepods = 2) - prices = list(/obj/item/clothing/suit/circuitry = 100, - /obj/item/clothing/head/circuitry = 100, - /obj/item/clothing/shoes/circuitry = 100, - /obj/item/clothing/gloves/circuitry = 100, - /obj/item/clothing/under/circuitry = 100, - /obj/item/clothing/glasses/circuitry = 100, - /obj/item/clothing/ears/circuitry = 100, - /obj/item/device/text_to_speech = 300, - /obj/item/device/paicard = 100, - /obj/item/device/communicator = 100, - /obj/item/device/communicator/watch = 100, - /obj/item/device/radio = 100, - /obj/item/device/camera = 100, - /obj/item/device/taperecorder = 100, - /obj/item/modular_computer/tablet/preset/custom_loadout/cheap = 1000, - /obj/item/device/pda = 50, - /obj/item/device/radio/headset = 50, - /obj/item/device/flashlight = 100, - /obj/item/device/laser_pointer = 200, - /obj/item/clothing/glasses/omnihud = 100, - /obj/item/device/walkpod = 300, - /obj/item/device/juke_remote = 1000, - /obj/item/instrument/piano_synth/headphones = 200, - /obj/item/instrument/piano_synth/headphones/spacepods = 600) - premium = list(/obj/item/device/perfect_tele/one_beacon = 1) - contraband = list(/obj/item/weapon/disk/nifsoft/compliance = 1) - -/obj/machinery/vending/event/gadget //FOR FACILITATING AND EQUIPPING EVENTS, DO NOT PLACE ON THE NORMAL MAP// - name = "Chips Co." - desc = "A special vendor for devices and gadgets." - product_ads = "You can't RESIST our great deals!;Feeling disconnected? We have a gadget for you!;You know you have the capacity to buy our capacitors!;FILL THAT HOLE IN YOUR HEART WITH OUR PLASTIC DISTRACTIONS!!!;Devices for everyone! Chips Co.!;ROBUST INVENTORY, GREAT PRICES! ;DON'T FORGET THE oyPAD 13s PRO! ON SALE NOW, ONLY ONE THOUSAND THALERS!" - icon_state = "gadgets" - vend_delay = 11 - products = list(/obj/item/clothing/suit/circuitry = 1, - /obj/item/clothing/head/circuitry = 1, - /obj/item/clothing/shoes/circuitry = 1, - /obj/item/clothing/gloves/circuitry = 1, - /obj/item/clothing/under/circuitry = 1, - /obj/item/clothing/glasses/circuitry = 1, - /obj/item/clothing/ears/circuitry = 1, - /obj/item/device/text_to_speech = 5, - /obj/item/device/paicard = 5, - /obj/item/device/communicator = 10, - /obj/item/device/communicator/watch = 10, - /obj/item/device/radio = 10, - /obj/item/device/camera = 5, - /obj/item/device/taperecorder = 5, - /obj/item/modular_computer/tablet/preset/custom_loadout/cheap = 5, - /obj/item/device/pda = 10, - /obj/item/device/radio/headset = 10, - /obj/item/device/flashlight = 5, - /obj/item/device/laser_pointer = 3, - /obj/item/clothing/glasses/omnihud = 10, - /obj/item/device/perfect_tele/one_beacon = 1, - /obj/item/weapon/disk/nifsoft/compliance = 1, - /obj/item/device/perfect_tele/alien = 10) - -//////////////////END OF CHIPS CO. VENDORS////////////////// - -/obj/machinery/vending/loadout/loadout_misc - name = "Bits and Bobs" - desc = "A special vendor for things and also stuff!" - product_ads = "You never know when you might need an umbrella.;Hey kid... want some cardemon cards?;Miscellaneous for your miscellaneous heart.;Who's bob? Wouldn't you like to know.;I'm sorry there's no grappling hooks in our umbrellas.;We sell things AND stuff." - icon_state = "loadout_misc" - products = list(/obj/item/weapon/cane = 5, - /obj/item/weapon/pack/cardemon = 25, - /obj/item/weapon/deck/holder = 5, - /obj/item/weapon/deck/cah = 5, - /obj/item/weapon/deck/cah/black = 5, - /obj/item/weapon/deck/tarot = 5, - /obj/item/weapon/deck/cards = 5, - /obj/item/weapon/pack/spaceball = 10, - /obj/item/weapon/storage/pill_bottle/dice = 5, - /obj/item/weapon/storage/pill_bottle/dice_nerd = 5, - /obj/item/weapon/melee/umbrella/random = 10) - prices = list(/obj/item/weapon/cane = 100, - /obj/item/weapon/pack/cardemon = 100, - /obj/item/weapon/deck/holder = 100, - /obj/item/weapon/deck/cah = 100, - /obj/item/weapon/deck/cah/black = 100, - /obj/item/weapon/deck/tarot = 100, - /obj/item/weapon/deck/cards = 100, - /obj/item/weapon/pack/spaceball = 100, - /obj/item/weapon/storage/pill_bottle/dice = 100, - /obj/item/weapon/storage/pill_bottle/dice_nerd = 100, - /obj/item/weapon/melee/umbrella/random = 100) - premium = list(/obj/item/toy/bosunwhistle = 1) - contraband = list(/obj/item/toy/katana = 1) - -/obj/machinery/vending/loadout/overwear - name = "Big D's Best" - desc = "A special vendor using compressed matter cartridges to store large amounts of overwear!" - product_ads = "Dress your best! It's what big D would want.;Overwear for all occasions!;Big D has what you need if what you need is some form of jacket!;Need a new hoodie? Bid D has you covered.;Big D says you need a new suit!;Big D smiles when he sees you in one of his coats!" - icon_state = "suit" - vend_delay = 16 - products = list(/obj/item/clothing/suit/storage/apron = 5, - /obj/item/clothing/suit/storage/flannel/aqua = 5, - /obj/item/clothing/suit/storage/toggle/bomber = 5, - /obj/item/clothing/suit/storage/bomber/alt = 5, - /obj/item/clothing/suit/storage/flannel/brown = 5, - /obj/item/clothing/suit/storage/toggle/cardigan = 5, - /obj/item/clothing/accessory/poncho/roles/cloak/custom = 5, - /obj/item/clothing/suit/storage/duster = 5, - /obj/item/clothing/suit/storage/toggle/denim_jacket = 5, - /obj/item/clothing/suit/storage/toggle/denim_jacket/nanotrasen = 5, - /obj/item/clothing/suit/storage/toggle/denim_jacket/sleeveless = 5, - /obj/item/clothing/suit/storage/toggle/denim_jacket/nanotrasen/sleeveless = 5, - /obj/item/clothing/suit/storage/fluff/gntop = 5, - /obj/item/clothing/suit/greatcoat = 5, - /obj/item/clothing/suit/storage/flannel = 5, - /obj/item/clothing/suit/storage/greyjacket = 5, - /obj/item/clothing/suit/storage/hazardvest = 5, - /obj/item/clothing/suit/storage/toggle/hoodie/black = 5, - /obj/item/clothing/suit/storage/toggle/hoodie/red = 5, - /obj/item/clothing/suit/storage/toggle/hoodie/blue = 5, - /obj/item/clothing/suit/storage/toggle/hoodie/green = 5, - /obj/item/clothing/suit/storage/toggle/hoodie/orange = 5, - /obj/item/clothing/suit/storage/toggle/hoodie/yellow = 5, - /obj/item/clothing/suit/storage/toggle/hoodie/cti = 5, - /obj/item/clothing/suit/storage/toggle/hoodie/mu = 5, - /obj/item/clothing/suit/storage/toggle/hoodie/nt = 5, - /obj/item/clothing/suit/storage/toggle/hoodie/smw = 5, - /obj/item/clothing/suit/storage/toggle/hoodie/nrti = 5, - /obj/item/clothing/suit/storage/fluff/jacket/field = 5, - /obj/item/clothing/suit/storage/fluff/jacket/air_cavalry = 5, - /obj/item/clothing/suit/storage/fluff/jacket/air_force = 5, - /obj/item/clothing/suit/storage/fluff/jacket/navy = 5, - /obj/item/clothing/suit/storage/fluff/jacket/special_forces = 5, - /obj/item/clothing/suit/kamishimo = 5, - /obj/item/clothing/suit/kimono = 5, - /obj/item/clothing/suit/storage/toggle/labcoat = 5, - /obj/item/clothing/suit/storage/toggle/labcoat/blue = 5, - /obj/item/clothing/suit/storage/toggle/labcoat/blue_edge = 5, - /obj/item/clothing/suit/storage/toggle/labcoat/green = 5, - /obj/item/clothing/suit/storage/toggle/labcoat/orange = 5, - /obj/item/clothing/suit/storage/toggle/labcoat/pink = 5, - /obj/item/clothing/suit/storage/toggle/labcoat/red = 5, - /obj/item/clothing/suit/storage/toggle/labcoat/yellow = 5, - /obj/item/clothing/suit/leathercoat = 5, - /obj/item/clothing/suit/storage/toggle/leather_jacket = 5, - /obj/item/clothing/suit/storage/leather_jacket_alt = 5, - /obj/item/clothing/suit/storage/toggle/brown_jacket = 5, - /obj/item/clothing/suit/storage/toggle/leather_jacket/nanotrasen = 5, - /obj/item/clothing/suit/storage/toggle/brown_jacket/nanotrasen = 5, - /obj/item/clothing/suit/storage/toggle/leather_jacket/sleeveless = 5, - /obj/item/clothing/suit/storage/toggle/brown_jacket/sleeveless = 5, - /obj/item/clothing/suit/storage/toggle/leather_jacket/nanotrasen/sleeveless = 5, - /obj/item/clothing/suit/storage/toggle/brown_jacket/nanotrasen/sleeveless = 5, - /obj/item/clothing/suit/storage/miljacket = 5, - /obj/item/clothing/suit/storage/miljacket/alt = 5, - /obj/item/clothing/suit/storage/miljacket/green = 5, - /obj/item/clothing/suit/storage/apron/overalls = 5, - /obj/item/clothing/suit/storage/toggle/peacoat = 5, - /obj/item/clothing/accessory/poncho = 5, - /obj/item/clothing/accessory/poncho/green = 5, - /obj/item/clothing/accessory/poncho/red = 5, - /obj/item/clothing/accessory/poncho/purple = 5, - /obj/item/clothing/accessory/poncho/blue = 5, - /obj/item/clothing/suit/jacket/puffer = 5, - /obj/item/clothing/suit/jacket/puffer/vest = 5, - /obj/item/clothing/suit/storage/flannel/red = 5, - /obj/item/clothing/suit/unathi/robe = 5, - /obj/item/clothing/suit/storage/snowsuit = 5, - /obj/item/clothing/suit/storage/toggle/internalaffairs = 5, - /obj/item/clothing/suit/storage/toggle/lawyer/bluejacket = 5, - /obj/item/clothing/suit/storage/toggle/lawyer/purpjacket = 5, - /obj/item/clothing/suit/suspenders = 5, - /obj/item/clothing/suit/storage/toggle/track = 5, - /obj/item/clothing/suit/storage/toggle/track/blue = 5, - /obj/item/clothing/suit/storage/toggle/track/green = 5, - /obj/item/clothing/suit/storage/toggle/track/red = 5, - /obj/item/clothing/suit/storage/toggle/track/white = 5, - /obj/item/clothing/suit/storage/trench = 5, - /obj/item/clothing/suit/storage/trench/grey = 5, - /obj/item/clothing/suit/varsity = 5, - /obj/item/clothing/suit/varsity/red = 5, - /obj/item/clothing/suit/varsity/purple = 5, - /obj/item/clothing/suit/varsity/green = 5, - /obj/item/clothing/suit/varsity/blue = 5, - /obj/item/clothing/suit/varsity/brown = 5, - /obj/item/clothing/suit/storage/hooded/wintercoat = 5, - /obj/item/clothing/suit/storage/hooded/wintercoat/aformal = 5, - /obj/item/clothing/suit/storage/teshari/cloak/standard/white_grey = 5) - prices = list(/obj/item/clothing/suit/storage/apron = 100, - /obj/item/clothing/suit/storage/flannel/aqua = 100, - /obj/item/clothing/suit/storage/toggle/bomber = 100, - /obj/item/clothing/suit/storage/bomber/alt = 100, - /obj/item/clothing/suit/storage/flannel/brown = 100, - /obj/item/clothing/suit/storage/toggle/cardigan = 100, - /obj/item/clothing/accessory/poncho/roles/cloak/custom = 100, - /obj/item/clothing/suit/storage/duster = 100, - /obj/item/clothing/suit/storage/toggle/denim_jacket = 100, - /obj/item/clothing/suit/storage/toggle/denim_jacket/nanotrasen = 100, - /obj/item/clothing/suit/storage/toggle/denim_jacket/sleeveless = 100, - /obj/item/clothing/suit/storage/toggle/denim_jacket/nanotrasen/sleeveless = 100, - /obj/item/clothing/suit/storage/fluff/gntop = 100, - /obj/item/clothing/suit/greatcoat = 100, - /obj/item/clothing/suit/storage/flannel = 100, - /obj/item/clothing/suit/storage/greyjacket = 100, - /obj/item/clothing/suit/storage/hazardvest = 100, - /obj/item/clothing/suit/storage/toggle/hoodie/black = 100, - /obj/item/clothing/suit/storage/toggle/hoodie/red = 100, - /obj/item/clothing/suit/storage/toggle/hoodie/blue = 100, - /obj/item/clothing/suit/storage/toggle/hoodie/green = 100, - /obj/item/clothing/suit/storage/toggle/hoodie/orange = 100, - /obj/item/clothing/suit/storage/toggle/hoodie/yellow = 100, - /obj/item/clothing/suit/storage/toggle/hoodie/cti = 100, - /obj/item/clothing/suit/storage/toggle/hoodie/mu = 100, - /obj/item/clothing/suit/storage/toggle/hoodie/nt = 100, - /obj/item/clothing/suit/storage/toggle/hoodie/smw = 100, - /obj/item/clothing/suit/storage/toggle/hoodie/nrti = 100, - /obj/item/clothing/suit/storage/fluff/jacket/field = 100, - /obj/item/clothing/suit/storage/fluff/jacket/air_cavalry = 100, - /obj/item/clothing/suit/storage/fluff/jacket/air_force = 100, - /obj/item/clothing/suit/storage/fluff/jacket/navy = 100, - /obj/item/clothing/suit/storage/fluff/jacket/special_forces = 100, - /obj/item/clothing/suit/kamishimo = 100, - /obj/item/clothing/suit/kimono = 100, - /obj/item/clothing/suit/storage/toggle/labcoat = 100, - /obj/item/clothing/suit/storage/toggle/labcoat/blue = 100, - /obj/item/clothing/suit/storage/toggle/labcoat/blue_edge = 100, - /obj/item/clothing/suit/storage/toggle/labcoat/green = 100, - /obj/item/clothing/suit/storage/toggle/labcoat/orange = 100, - /obj/item/clothing/suit/storage/toggle/labcoat/pink = 100, - /obj/item/clothing/suit/storage/toggle/labcoat/red = 100, - /obj/item/clothing/suit/storage/toggle/labcoat/yellow = 100, - /obj/item/clothing/suit/leathercoat = 100, - /obj/item/clothing/suit/storage/toggle/leather_jacket = 100, - /obj/item/clothing/suit/storage/leather_jacket_alt = 100, - /obj/item/clothing/suit/storage/toggle/brown_jacket = 100, - /obj/item/clothing/suit/storage/toggle/leather_jacket/nanotrasen = 100, - /obj/item/clothing/suit/storage/toggle/brown_jacket/nanotrasen = 100, - /obj/item/clothing/suit/storage/toggle/leather_jacket/sleeveless = 100, - /obj/item/clothing/suit/storage/toggle/brown_jacket/sleeveless = 100, - /obj/item/clothing/suit/storage/toggle/leather_jacket/nanotrasen/sleeveless = 100, - /obj/item/clothing/suit/storage/toggle/brown_jacket/nanotrasen/sleeveless = 100, - /obj/item/clothing/suit/storage/miljacket = 100, - /obj/item/clothing/suit/storage/miljacket/alt = 100, - /obj/item/clothing/suit/storage/miljacket/green = 100, - /obj/item/clothing/suit/storage/apron/overalls = 100, - /obj/item/clothing/suit/storage/toggle/peacoat = 100, - /obj/item/clothing/accessory/poncho = 100, - /obj/item/clothing/accessory/poncho/green = 100, - /obj/item/clothing/accessory/poncho/red = 100, - /obj/item/clothing/accessory/poncho/purple = 100, - /obj/item/clothing/accessory/poncho/blue = 100, - /obj/item/clothing/suit/jacket/puffer = 100, - /obj/item/clothing/suit/jacket/puffer/vest = 100, - /obj/item/clothing/suit/storage/flannel/red = 100, - /obj/item/clothing/suit/unathi/robe = 100, - /obj/item/clothing/suit/storage/snowsuit = 100, - /obj/item/clothing/suit/storage/toggle/internalaffairs = 100, - /obj/item/clothing/suit/storage/toggle/lawyer/bluejacket = 100, - /obj/item/clothing/suit/storage/toggle/lawyer/purpjacket = 100, - /obj/item/clothing/suit/suspenders = 100, - /obj/item/clothing/suit/storage/toggle/track = 100, - /obj/item/clothing/suit/storage/toggle/track/blue = 100, - /obj/item/clothing/suit/storage/toggle/track/green = 100, - /obj/item/clothing/suit/storage/toggle/track/red = 100, - /obj/item/clothing/suit/storage/toggle/track/white = 100, - /obj/item/clothing/suit/storage/trench = 100, - /obj/item/clothing/suit/storage/trench/grey = 100, - /obj/item/clothing/suit/varsity = 100, - /obj/item/clothing/suit/varsity/red = 100, - /obj/item/clothing/suit/varsity/purple = 100, - /obj/item/clothing/suit/varsity/green = 100, - /obj/item/clothing/suit/varsity/blue = 100, - /obj/item/clothing/suit/varsity/brown = 100, - /obj/item/clothing/suit/storage/hooded/wintercoat = 100, - /obj/item/clothing/suit/storage/hooded/wintercoat/aformal = 100, - /obj/item/clothing/suit/storage/teshari/cloak/standard/white_grey = 100) - premium = list(/obj/item/clothing/suit/imperium_monk = 3, - /obj/item/clothing/suit/storage/hooded/wintercoat/cosmic = 1) - contraband = list(/obj/item/toy/katana = 1) - -/obj/machinery/vending/loadout/costume - name = "Thespian's Delight" - desc = "Sometimes nerds need costumes!" - product_ads = "Don't let your art be stifled!;Remember, practice makes perfect!;Break a leg!;Don't make me get the cane!;Thespian's Delight entering stage right!;Costumes for your acting needs!" - icon = 'icons/obj/vending.dmi' - icon_state = "theater" - products = list(/obj/item/clothing/suit/storage/hooded/carp_costume = 3, - /obj/item/clothing/suit/storage/hooded/carp_costume = 3, - /obj/item/clothing/suit/chickensuit = 3, - /obj/item/clothing/head/chicken = 3, - /obj/item/clothing/head/helmet/gladiator = 3, - /obj/item/clothing/under/gladiator = 3, - /obj/item/clothing/suit/storage/toggle/labcoat/mad = 3, - /obj/item/clothing/under/gimmick/rank/captain/suit = 3, - /obj/item/clothing/glasses/gglasses = 3, - /obj/item/clothing/head/flatcap = 3, - /obj/item/clothing/shoes/boots/jackboots = 3, - /obj/item/clothing/under/schoolgirl = 3, - /obj/item/clothing/head/kitty = 3, - /obj/item/clothing/glasses/sunglasses/blindfold = 3, - /obj/item/clothing/head/beret = 3, - /obj/item/clothing/under/skirt = 3, - /obj/item/clothing/under/suit_jacket = 3, - /obj/item/clothing/head/that = 3, - /obj/item/clothing/accessory/wcoat = 3, - /obj/item/clothing/under/scratch = 3, - /obj/item/clothing/shoes/white = 3, - /obj/item/clothing/gloves/white = 3, - /obj/item/clothing/under/kilt = 3, - /obj/item/clothing/glasses/monocle = 3, - /obj/item/clothing/under/sl_suit = 3, - /obj/item/clothing/mask/fakemoustache = 3, - /obj/item/weapon/cane = 3, - /obj/item/clothing/head/bowler = 3, - /obj/item/clothing/head/plaguedoctorhat = 3, - /obj/item/clothing/suit/bio_suit/plaguedoctorsuit = 3, - /obj/item/clothing/mask/gas/plaguedoctor/fluff = 3, - /obj/item/clothing/under/owl = 3, - /obj/item/clothing/mask/gas/owl_mask = 3, - /obj/item/clothing/under/waiter = 3, - /obj/item/clothing/suit/storage/apron = 3, - /obj/item/clothing/under/pirate = 3, - /obj/item/clothing/head/pirate = 3, - /obj/item/clothing/suit/pirate = 3, - /obj/item/clothing/glasses/eyepatch = 3, - /obj/item/clothing/head/ushanka = 3, - /obj/item/clothing/under/soviet = 3, - /obj/item/clothing/suit/imperium_monk = 1, - /obj/item/clothing/suit/holidaypriest = 3, - /obj/item/clothing/head/witchwig = 3, - /obj/item/clothing/under/sundress = 3, - /obj/item/weapon/staff/broom = 3, - /obj/item/clothing/suit/wizrobe/fake = 3, - /obj/item/clothing/head/wizard/fake = 3, - /obj/item/weapon/staff = 3, - /obj/item/clothing/mask/gas/sexyclown = 3, - /obj/item/clothing/under/sexyclown = 3, - /obj/item/clothing/mask/gas/sexymime = 3, - /obj/item/clothing/under/sexymime = 3, - /obj/item/clothing/suit/storage/hooded/knight_costume = 3, - /obj/item/clothing/suit/storage/hooded/knight_costume/galahad = 3, - /obj/item/clothing/suit/storage/hooded/knight_costume/lancelot = 3, - /obj/item/clothing/suit/storage/hooded/knight_costume/robin = 3, - /obj/item/clothing/suit/armor/combat/crusader_costume = 3, - /obj/item/clothing/suit/armor/combat/crusader_costume/bedevere = 3, - /obj/item/clothing/head/helmet/combat/crusader_costume = 3, - /obj/item/clothing/head/helmet/combat/bedevere_costume = 3, - /obj/item/clothing/gloves/combat/knight_costume = 3, - /obj/item/clothing/gloves/combat/knight_costume/brown = 3, - /obj/item/clothing/shoes/knight_costume = 3, - /obj/item/clothing/shoes/knight_costume/black = 3) - prices = list(/obj/item/clothing/suit/storage/hooded/carp_costume = 200, - /obj/item/clothing/suit/storage/hooded/carp_costume = 200, - /obj/item/clothing/suit/chickensuit = 200, - /obj/item/clothing/head/chicken = 200, - /obj/item/clothing/head/helmet/gladiator = 300, - /obj/item/clothing/under/gladiator = 500, - /obj/item/clothing/suit/storage/toggle/labcoat/mad = 200, - /obj/item/clothing/under/gimmick/rank/captain/suit = 200, - /obj/item/clothing/glasses/gglasses = 200, - /obj/item/clothing/head/flatcap = 200, - /obj/item/clothing/shoes/boots/jackboots = 200, - /obj/item/clothing/under/schoolgirl = 200, - /obj/item/clothing/head/kitty = 200, - /obj/item/clothing/glasses/sunglasses/blindfold = 200, - /obj/item/clothing/head/beret = 200, - /obj/item/clothing/under/skirt = 200, - /obj/item/clothing/under/suit_jacket = 200, - /obj/item/clothing/head/that = 200, - /obj/item/clothing/accessory/wcoat = 200, - /obj/item/clothing/under/scratch = 200, - /obj/item/clothing/shoes/white = 200, - /obj/item/clothing/gloves/white = 200, - /obj/item/clothing/under/kilt = 200, - /obj/item/clothing/glasses/monocle = 400, - /obj/item/clothing/under/sl_suit = 200, - /obj/item/clothing/mask/fakemoustache = 200, - /obj/item/weapon/cane = 300, - /obj/item/clothing/head/bowler = 200, - /obj/item/clothing/head/plaguedoctorhat = 300, - /obj/item/clothing/suit/bio_suit/plaguedoctorsuit = 300, - /obj/item/clothing/mask/gas/plaguedoctor/fluff = 600, - /obj/item/clothing/under/owl = 400, - /obj/item/clothing/mask/gas/owl_mask = 400, - /obj/item/clothing/under/waiter = 100, - /obj/item/clothing/suit/storage/apron = 200, - /obj/item/clothing/under/pirate = 300, - /obj/item/clothing/head/pirate = 400, - /obj/item/clothing/suit/pirate = 600, - /obj/item/clothing/glasses/eyepatch = 200, - /obj/item/clothing/head/ushanka = 200, - /obj/item/clothing/under/soviet = 200, - /obj/item/clothing/suit/imperium_monk = 2000, - /obj/item/clothing/suit/holidaypriest = 200, - /obj/item/clothing/head/witchwig = 200, - /obj/item/clothing/under/sundress = 50, - /obj/item/weapon/staff/broom = 400, - /obj/item/clothing/suit/wizrobe/fake = 200, - /obj/item/clothing/head/wizard/fake = 200, - /obj/item/weapon/staff = 400, - /obj/item/clothing/mask/gas/sexyclown = 600, - /obj/item/clothing/under/sexyclown = 200, - /obj/item/clothing/mask/gas/sexymime = 600, - /obj/item/clothing/under/sexymime = 200, - /obj/item/clothing/suit/storage/hooded/knight_costume = 200, - /obj/item/clothing/suit/storage/hooded/knight_costume/galahad = 200, - /obj/item/clothing/suit/storage/hooded/knight_costume/lancelot = 200, - /obj/item/clothing/suit/storage/hooded/knight_costume/robin = 200, - /obj/item/clothing/suit/armor/combat/crusader_costume = 200, - /obj/item/clothing/suit/armor/combat/crusader_costume/bedevere = 200, - /obj/item/clothing/head/helmet/combat/crusader_costume = 200, - /obj/item/clothing/head/helmet/combat/bedevere_costume = 200, - /obj/item/clothing/gloves/combat/knight_costume = 200, - /obj/item/clothing/gloves/combat/knight_costume/brown = 200, - /obj/item/clothing/shoes/knight_costume = 200, - /obj/item/clothing/shoes/knight_costume/black = 200) - premium = list(/obj/item/clothing/suit/imperium_monk = 3, - /obj/item/clothing/suit/barding/agatha = 2, - /obj/item/clothing/suit/barding/alt_agatha = 2, - /obj/item/clothing/suit/barding/mason = 2, - /obj/item/clothing/suit/drake_cloak = 2) - contraband = list(/obj/item/clothing/head/syndicatefake = 1, - /obj/item/clothing/suit/syndicatefake = 1) +//Airlock antitox vendor +/obj/machinery/vending/wallmed_airlock + name = "Airlock NanoMed" + desc = "Wall-mounted Medical Equipment dispenser. This limited-use version dispenses antitoxins with mild painkillers for surface EVAs." + icon_state = "wallmed" + density = 0 //It is wall-mounted, and thus, not dense. --Superxpdude + products = list(/obj/item/weapon/reagent_containers/pill/airlock = 20) + contraband = list(/obj/item/weapon/reagent_containers/pill/tox = 2) + req_log_access = access_cmo + has_logs = 1 /obj/machinery/seed_storage/brig name = "Prisoners' food seed storage" @@ -1536,6 +350,8 @@ ) vend_delay = 15 +// Loadout Vending Machines Start + /obj/machinery/vending/loadout name = "Fingers and Toes" desc = "A special vendor for gloves and shoes!" @@ -1718,8 +534,11 @@ /obj/item/weapon/storage/belt/fannypack/white = 5, /obj/item/clothing/accessory/fullcape = 5, /obj/item/clothing/accessory/halfcape = 5, - /obj/item/clothing/accessory/hawaii = 5, - /obj/item/clothing/accessory/hawaii/random = 5, + /obj/item/clothing/accessory/hawaiian = 5, + /obj/item/clothing/accessory/hawaiian/blue = 5, + /obj/item/clothing/accessory/hawaiian/pink = 5, + /obj/item/clothing/accessory/hawaiian/red = 5, + /obj/item/clothing/accessory/hawaiian/yellow = 5, /obj/item/clothing/accessory/locket = 5, /obj/item/weapon/storage/backpack/purse = 1, /obj/item/clothing/accessory/sash = 5, @@ -1828,8 +647,11 @@ /obj/item/weapon/storage/belt/fannypack/white = 50, /obj/item/clothing/accessory/fullcape = 50, /obj/item/clothing/accessory/halfcape = 50, - /obj/item/clothing/accessory/hawaii = 50, - /obj/item/clothing/accessory/hawaii/random = 50, + /obj/item/clothing/accessory/hawaiian = 50, + /obj/item/clothing/accessory/hawaiian/blue = 50, + /obj/item/clothing/accessory/hawaiian/pink = 50, + /obj/item/clothing/accessory/hawaiian/red = 50, + /obj/item/clothing/accessory/hawaiian/yellow = 50, /obj/item/clothing/accessory/locket = 50, /obj/item/weapon/storage/backpack/purse = 50, /obj/item/clothing/accessory/sash = 50, @@ -1972,10 +794,10 @@ /obj/item/clothing/under/color/white = 5, /obj/item/clothing/under/color/yellow = 5, /obj/item/clothing/under/color/yellowgreen = 5, - /obj/item/clothing/under/aether = 5, - /obj/item/clothing/under/focal = 5, - /obj/item/clothing/under/hephaestus = 5, - /obj/item/clothing/under/wardt = 5, + /obj/item/clothing/under/corp/aether = 5, + /obj/item/clothing/under/corp/focal = 5, + /obj/item/clothing/under/corp/hephaestus = 5, + /obj/item/clothing/under/corp/wardt = 5, /obj/item/clothing/under/kilt = 5, /obj/item/clothing/under/fluff/latexmaid = 5, /obj/item/clothing/under/dress/lilacdress = 5, @@ -2024,9 +846,9 @@ /obj/item/clothing/under/dress/sailordress = 5, /obj/item/clothing/under/dress/sari = 5, /obj/item/clothing/under/dress/sari/green = 5, - /obj/item/clothing/under/dress/qipao = 5, - /obj/item/clothing/under/dress/qipao/red = 5, - /obj/item/clothing/under/dress/qipao/white = 5, + /obj/item/clothing/under/qipao = 5, + /obj/item/clothing/under/qipao/red = 5, + /obj/item/clothing/under/qipao/white = 5, /obj/item/clothing/under/shorts/red = 5, /obj/item/clothing/under/shorts/green = 5, /obj/item/clothing/under/shorts/blue = 5, @@ -2143,10 +965,10 @@ /obj/item/clothing/under/color/white = 50, /obj/item/clothing/under/color/yellow = 50, /obj/item/clothing/under/color/yellowgreen = 50, - /obj/item/clothing/under/aether = 50, - /obj/item/clothing/under/focal = 50, - /obj/item/clothing/under/hephaestus = 50, - /obj/item/clothing/under/wardt = 50, + /obj/item/clothing/under/corp/aether = 50, + /obj/item/clothing/under/corp/focal = 50, + /obj/item/clothing/under/corp/hephaestus = 50, + /obj/item/clothing/under/corp/wardt = 50, /obj/item/clothing/under/kilt = 50, /obj/item/clothing/under/fluff/latexmaid = 50, /obj/item/clothing/under/dress/lilacdress = 50, @@ -2195,9 +1017,9 @@ /obj/item/clothing/under/dress/sailordress = 50, /obj/item/clothing/under/dress/sari = 50, /obj/item/clothing/under/dress/sari/green = 50, - /obj/item/clothing/under/dress/qipao = 50, - /obj/item/clothing/under/dress/qipao/red = 50, - /obj/item/clothing/under/dress/qipao/white = 50, + /obj/item/clothing/under/qipao = 50, + /obj/item/clothing/under/qipao/red = 50, + /obj/item/clothing/under/qipao/white = 50, /obj/item/clothing/under/shorts/red = 50, /obj/item/clothing/under/shorts/green = 50, /obj/item/clothing/under/shorts/blue = 50, @@ -2350,6 +1172,7 @@ /obj/item/clothing/suit/storage/toggle/labcoat/pink = 5, /obj/item/clothing/suit/storage/toggle/labcoat/red = 5, /obj/item/clothing/suit/storage/toggle/labcoat/yellow = 5, + /obj/item/clothing/suit/storage/toggle/labcoat/old = 5, /obj/item/clothing/suit/leathercoat = 5, /obj/item/clothing/suit/storage/toggle/leather_jacket = 5, /obj/item/clothing/suit/storage/leather_jacket_alt = 5, @@ -2438,6 +1261,7 @@ /obj/item/clothing/suit/storage/toggle/labcoat/pink = 100, /obj/item/clothing/suit/storage/toggle/labcoat/red = 100, /obj/item/clothing/suit/storage/toggle/labcoat/yellow = 100, + /obj/item/clothing/suit/storage/toggle/labcoat/old = 100, /obj/item/clothing/suit/leathercoat = 100, /obj/item/clothing/suit/storage/toggle/leather_jacket = 100, /obj/item/clothing/suit/storage/leather_jacket_alt = 100, @@ -2493,14 +1317,14 @@ product_ads = "Don't let your art be stifled!;Remember, practice makes perfect!;Break a leg!;Don't make me get the cane!;Thespian's Delight entering stage right!;Costumes for your acting needs!" icon = 'icons/obj/vending.dmi' icon_state = "theater" - products = list(/obj/item/clothing/suit/storage/hooded/carp_costume = 3, - /obj/item/clothing/suit/storage/hooded/carp_costume = 3, + products = list(/obj/item/clothing/suit/storage/hooded/costume/carp = 3, + /obj/item/clothing/suit/storage/hooded/costume/carp = 3, /obj/item/clothing/suit/chickensuit = 3, /obj/item/clothing/head/chicken = 3, /obj/item/clothing/head/helmet/gladiator = 3, /obj/item/clothing/under/gladiator = 3, /obj/item/clothing/suit/storage/toggle/labcoat/mad = 3, - /obj/item/clothing/under/gimmick/rank/captain/suit = 3, + /obj/item/clothing/under/suit_jacket/green = 3, /obj/item/clothing/glasses/gglasses = 3, /obj/item/clothing/head/flatcap = 3, /obj/item/clothing/shoes/boots/jackboots = 3, @@ -2558,14 +1382,14 @@ /obj/item/clothing/gloves/combat/knight_costume/brown = 3, /obj/item/clothing/shoes/knight_costume = 3, /obj/item/clothing/shoes/knight_costume/black = 3) - prices = list(/obj/item/clothing/suit/storage/hooded/carp_costume = 200, - /obj/item/clothing/suit/storage/hooded/carp_costume = 200, + prices = list(/obj/item/clothing/suit/storage/hooded/costume/carp = 200, + /obj/item/clothing/suit/storage/hooded/costume/carp = 200, /obj/item/clothing/suit/chickensuit = 200, /obj/item/clothing/head/chicken = 200, /obj/item/clothing/head/helmet/gladiator = 300, /obj/item/clothing/under/gladiator = 500, /obj/item/clothing/suit/storage/toggle/labcoat/mad = 200, - /obj/item/clothing/under/gimmick/rank/captain/suit = 200, + /obj/item/clothing/under/suit_jacket/green = 200, /obj/item/clothing/glasses/gglasses = 200, /obj/item/clothing/head/flatcap = 200, /obj/item/clothing/shoes/boots/jackboots = 200, @@ -2631,6 +1455,67 @@ contraband = list(/obj/item/clothing/head/syndicatefake = 1, /obj/item/clothing/suit/syndicatefake = 1) +/obj/machinery/vending/loadout/gadget + name = "Chips Co." + desc = "A special vendor for devices and gadgets." + product_ads = "You can't RESIST our great deals!;Feeling disconnected? We have a gadget for you!;You know you have the capacity to buy our capacitors!;FILL THAT HOLE IN YOUR HEART WITH OUR PLASTIC DISTRACTIONS!!!;Devices for everyone! Chips Co.!;ROBUST INVENTORY, GREAT PRICES! ;DON'T FORGET THE oyPAD 13s PRO! ON SALE NOW, ONLY ONE THOUSAND THALERS!" + icon_state = "gadgets" + vend_delay = 11 + products = list(/obj/item/clothing/suit/circuitry = 1, + /obj/item/clothing/head/circuitry = 1, + /obj/item/clothing/shoes/circuitry = 1, + /obj/item/clothing/gloves/circuitry = 1, + /obj/item/clothing/under/circuitry = 1, + /obj/item/clothing/glasses/circuitry = 1, + /obj/item/clothing/ears/circuitry = 1, + /obj/item/device/text_to_speech = 5, + /obj/item/device/paicard = 5, + /obj/item/device/communicator = 10, + /obj/item/device/communicator/watch = 10, + /obj/item/device/radio = 10, + /obj/item/device/camera = 5, + /obj/item/device/taperecorder = 5, + /obj/item/modular_computer/tablet/preset/custom_loadout/cheap = 5, + /obj/item/device/pda = 10, + /obj/item/device/radio/headset = 10, + /obj/item/device/flashlight = 5, + /obj/item/device/laser_pointer = 3, + /obj/item/clothing/glasses/omnihud = 10, + /obj/item/device/walkpod = 5, + /obj/item/device/juke_remote = 1, + /obj/item/instrument/piano_synth/headphones = 2, // You're making a subsystem do work, I don't want it TOO busy + /obj/item/instrument/piano_synth/headphones/spacepods = 2, + /obj/item/clothing/gloves/bluespace = 5) + prices = list(/obj/item/clothing/suit/circuitry = 100, + /obj/item/clothing/head/circuitry = 100, + /obj/item/clothing/shoes/circuitry = 100, + /obj/item/clothing/gloves/circuitry = 100, + /obj/item/clothing/under/circuitry = 100, + /obj/item/clothing/glasses/circuitry = 100, + /obj/item/clothing/ears/circuitry = 100, + /obj/item/device/text_to_speech = 300, + /obj/item/device/paicard = 100, + /obj/item/device/communicator = 100, + /obj/item/device/communicator/watch = 100, + /obj/item/device/radio = 100, + /obj/item/device/camera = 100, + /obj/item/device/taperecorder = 100, + /obj/item/modular_computer/tablet/preset/custom_loadout/cheap = 1000, + /obj/item/device/pda = 50, + /obj/item/device/radio/headset = 50, + /obj/item/device/flashlight = 100, + /obj/item/device/laser_pointer = 200, + /obj/item/clothing/glasses/omnihud = 100, + /obj/item/device/walkpod = 300, + /obj/item/device/juke_remote = 1000, + /obj/item/instrument/piano_synth/headphones = 200, + /obj/item/instrument/piano_synth/headphones/spacepods = 600, + /obj/item/clothing/gloves/bluespace = 500) + premium = list(/obj/item/device/perfect_tele/one_beacon = 1) + contraband = list(/obj/item/weapon/disk/nifsoft/compliance = 1) + +// Loadout Vending Machines End + /obj/machinery/vending/entertainer name = "Thespian's Delight" desc = "Sometimes nerds need costumes!" @@ -2656,14 +1541,14 @@ /obj/item/clothing/under/color/yellow = 5, /obj/item/clothing/shoes/black = 5, /obj/item/clothing/shoes/white = 5, - /obj/item/clothing/suit/storage/hooded/carp_costume = 3, - /obj/item/clothing/suit/storage/hooded/carp_costume = 3, + /obj/item/clothing/suit/storage/hooded/costume/carp = 3, + /obj/item/clothing/suit/storage/hooded/costume/carp = 3, /obj/item/clothing/suit/chickensuit = 3, /obj/item/clothing/head/chicken = 3, /obj/item/clothing/head/helmet/gladiator = 3, /obj/item/clothing/under/gladiator = 3, /obj/item/clothing/suit/storage/toggle/labcoat/mad = 3, - /obj/item/clothing/under/gimmick/rank/captain/suit = 3, + /obj/item/clothing/under/suit_jacket/green = 3, /obj/item/clothing/glasses/gglasses = 3, /obj/item/clothing/head/flatcap = 3, /obj/item/clothing/shoes/boots/jackboots = 3, @@ -2722,6 +1607,7 @@ /obj/item/clothing/shoes/knight_costume = 3, /obj/item/clothing/shoes/knight_costume/black = 3) +// Event Loadout Vending Machines Start /obj/machinery/vending/event //FOR FACILITATING AND EQUIPPING EVENTS, DO NOT PLACE ON THE NORMAL MAP// name = "Fingers and Toes" @@ -2848,8 +1734,11 @@ /obj/item/weapon/storage/belt/fannypack/white = 5, /obj/item/clothing/accessory/fullcape = 5, /obj/item/clothing/accessory/halfcape = 5, - /obj/item/clothing/accessory/hawaii = 5, - /obj/item/clothing/accessory/hawaii/random = 5, + /obj/item/clothing/accessory/hawaiian = 5, + /obj/item/clothing/accessory/hawaiian/blue = 5, + /obj/item/clothing/accessory/hawaiian/pink = 5, + /obj/item/clothing/accessory/hawaiian/red = 5, + /obj/item/clothing/accessory/hawaiian/yellow = 5, /obj/item/clothing/accessory/locket = 5, /obj/item/weapon/storage/backpack/purse = 1, /obj/item/clothing/accessory/sash = 5, @@ -2992,10 +1881,10 @@ /obj/item/clothing/under/color/white = 5, /obj/item/clothing/under/color/yellow = 5, /obj/item/clothing/under/color/yellowgreen = 5, - /obj/item/clothing/under/aether = 5, - /obj/item/clothing/under/focal = 5, - /obj/item/clothing/under/hephaestus = 5, - /obj/item/clothing/under/wardt = 5, + /obj/item/clothing/under/corp/aether = 5, + /obj/item/clothing/under/corp/focal = 5, + /obj/item/clothing/under/corp/hephaestus = 5, + /obj/item/clothing/under/corp/wardt = 5, /obj/item/clothing/under/kilt = 5, /obj/item/clothing/under/fluff/latexmaid = 5, /obj/item/clothing/under/dress/lilacdress = 5, @@ -3044,9 +1933,9 @@ /obj/item/clothing/under/dress/sailordress = 5, /obj/item/clothing/under/dress/sari = 5, /obj/item/clothing/under/dress/sari/green = 5, - /obj/item/clothing/under/dress/qipao = 5, - /obj/item/clothing/under/dress/qipao/red = 5, - /obj/item/clothing/under/dress/qipao/white = 5, + /obj/item/clothing/under/qipao = 5, + /obj/item/clothing/under/qipao/red = 5, + /obj/item/clothing/under/qipao/white = 5, /obj/item/clothing/under/shorts/red = 5, /obj/item/clothing/under/shorts/green = 5, /obj/item/clothing/under/shorts/blue = 5, @@ -3390,20 +2279,50 @@ /obj/item/clothing/suit/space/rig/military = 5 ) +/obj/machinery/vending/event/gadget //FOR FACILITATING AND EQUIPPING EVENTS, DO NOT PLACE ON THE NORMAL MAP// + name = "Chips Co." + desc = "A special vendor for devices and gadgets." + product_ads = "You can't RESIST our great deals!;Feeling disconnected? We have a gadget for you!;You know you have the capacity to buy our capacitors!;FILL THAT HOLE IN YOUR HEART WITH OUR PLASTIC DISTRACTIONS!!!;Devices for everyone! Chips Co.!;ROBUST INVENTORY, GREAT PRICES! ;DON'T FORGET THE oyPAD 13s PRO! ON SALE NOW, ONLY ONE THOUSAND THALERS!" + icon_state = "gadgets" + vend_delay = 11 + products = list(/obj/item/clothing/suit/circuitry = 1, + /obj/item/clothing/head/circuitry = 1, + /obj/item/clothing/shoes/circuitry = 1, + /obj/item/clothing/gloves/circuitry = 1, + /obj/item/clothing/under/circuitry = 1, + /obj/item/clothing/glasses/circuitry = 1, + /obj/item/clothing/ears/circuitry = 1, + /obj/item/device/text_to_speech = 5, + /obj/item/device/paicard = 5, + /obj/item/device/communicator = 10, + /obj/item/device/communicator/watch = 10, + /obj/item/device/radio = 10, + /obj/item/device/camera = 5, + /obj/item/device/taperecorder = 5, + /obj/item/modular_computer/tablet/preset/custom_loadout/cheap = 5, + /obj/item/device/pda = 10, + /obj/item/device/radio/headset = 10, + /obj/item/device/flashlight = 5, + /obj/item/device/laser_pointer = 3, + /obj/item/clothing/glasses/omnihud = 10, + /obj/item/device/perfect_tele/one_beacon = 1, + /obj/item/weapon/disk/nifsoft/compliance = 1, + /obj/item/device/perfect_tele/alien = 10) + /obj/machinery/vending/event/costume //FOR FACILITATING AND EQUIPPING EVENTS, DO NOT PLACE ON THE NORMAL MAP// name = "Thespian's Delight" desc = "Sometimes nerds need costumes!" product_ads = "Don't let your art be stifled!;Remember, practice makes perfect!;Break a leg!;Don't make me get the cane!;Thespian's Delight entering stage right!;Costumes for your acting needs!" icon = 'icons/obj/vending.dmi' icon_state = "theater" - products = list(/obj/item/clothing/suit/storage/hooded/carp_costume = 3, - /obj/item/clothing/suit/storage/hooded/carp_costume = 3, + products = list(/obj/item/clothing/suit/storage/hooded/costume/carp = 3, + /obj/item/clothing/suit/storage/hooded/costume/carp = 3, /obj/item/clothing/suit/chickensuit = 3, /obj/item/clothing/head/chicken = 3, /obj/item/clothing/head/helmet/gladiator = 3, /obj/item/clothing/under/gladiator = 3, /obj/item/clothing/suit/storage/toggle/labcoat/mad = 3, - /obj/item/clothing/under/gimmick/rank/captain/suit = 3, + /obj/item/clothing/under/suit_jacket/green = 3, /obj/item/clothing/glasses/gglasses = 3, /obj/item/clothing/head/flatcap = 3, /obj/item/clothing/shoes/boots/jackboots = 3, @@ -3470,6 +2389,9 @@ /obj/item/clothing/suit/syndicatefake = 1 ) +// Event Loadout Vending Machines End + +// Event Food Vending Machines Start /obj/machinery/vending/event/food //FOR FACILITATING/OUTFITTING EVENTS, DO NOT PUT THESE ON THE MAP// name = "Dog Food" @@ -3923,7 +2845,7 @@ /obj/item/weapon/reagent_containers/food/snacks/meat/grubmeat = 10, /obj/item/weapon/reagent_containers/food/snacks/meat/chicken = 10, /obj/item/weapon/reagent_containers/food/snacks/meat/corgi = 10, - /obj/item/weapon/reagent_containers/food/snacks/meat/crab = 10, + /obj/item/weapon/reagent_containers/food/snacks/crabmeat = 10, /obj/item/weapon/reagent_containers/food/snacks/meat/fox = 10, /obj/item/weapon/reagent_containers/food/snacks/meat/grubmeat = 10, /obj/item/weapon/reagent_containers/food/snacks/meat/human = 10, @@ -4379,7 +3301,7 @@ /obj/item/weapon/reagent_containers/food/snacks/meat/grubmeat = 10, /obj/item/weapon/reagent_containers/food/snacks/meat/chicken = 10, /obj/item/weapon/reagent_containers/food/snacks/meat/corgi = 10, - /obj/item/weapon/reagent_containers/food/snacks/meat/crab = 10, + /obj/item/weapon/reagent_containers/food/snacks/crabmeat = 10, /obj/item/weapon/reagent_containers/food/snacks/meat/fox = 10, /obj/item/weapon/reagent_containers/food/snacks/meat/grubmeat = 10, /obj/item/weapon/reagent_containers/food/snacks/meat/human = 10, @@ -4411,6 +3333,8 @@ /obj/item/weapon/reagent_containers/food/snacks/xenomeat/spidermeat = 10) vend_delay = 15 +// Event Food Vending Machines End + /obj/machinery/vending/emergencyfood name = "Food Cube Dispenser" desc = "An ominous machine dispensing food cubes. It will keep you fed, but at what cost?" @@ -4426,6 +3350,8 @@ contraband = list(/obj/item/weapon/storage/box/wings/tray = 20) /obj/machinery/vending/cola/soft + name = "Soft Robustdrinks" + desc = "A different vendor brand for soft drinks, taking off very successfully with its unique imagery and equal stock." icon = 'icons/obj/vending_vr.dmi' icon_state = "Cola_Machine" diff --git a/code/modules/economy/vending_refills.dm b/code/modules/economy/vending_refills.dm new file mode 100644 index 0000000000..b2c0188ef9 --- /dev/null +++ b/code/modules/economy/vending_refills.dm @@ -0,0 +1,161 @@ +/obj/item/weapon/refill_cartridge + name = "vending refill cartridge" + desc = "A specialized cartridge used to refill vending machines with fresh product. Tamper proof." + icon = 'icons/obj/refill_cartridges.dmi' + icon_state = "rc_generic" + item_state = "syringe_kit" + var/refill_type + +/obj/item/weapon/refill_cartridge/proc/can_refill(obj/machinery/vending/V as obj) + if(V.type == refill_type) + return TRUE + return FALSE + +/obj/item/weapon/refill_cartridge/multitype + refill_type = list() + var/refill_exceptions = list() + +/obj/item/weapon/refill_cartridge/multitype/can_refill(obj/machinery/vending/V as obj) + for(var/entry in refill_type) + if(istype(V, entry) && !(V.type in refill_exceptions)) + return TRUE + return FALSE + +/obj/item/weapon/refill_cartridge/autoname/Initialize() + ..() + if(refill_type && ispath(refill_type)) + var/atom/tmp = refill_type + src.name = "[initial(tmp.name)] refill cartridge" + +/obj/item/weapon/refill_cartridge/universal // For admin/event use. Can refill any refillable vendor. + name = "ultimate vending refill cartridge" + desc = "A universal cartridge used to refill vending machines with fresh product." + icon_state = "rc_mystery" + +/obj/item/weapon/refill_cartridge/universal/can_refill(obj/machinery/vending/V as obj) + return TRUE + +// Multi-vendor subtypes + +/obj/item/weapon/refill_cartridge/multitype/technical + name = "technical vendor refill cartridge" + icon_state = "rc_mechanical" + refill_type = list(/obj/machinery/vending/assist, + /obj/machinery/vending/tool, + /obj/machinery/vending/loadout/gadget) + +/obj/item/weapon/refill_cartridge/multitype/food + name = "food vendor refill cartridge" + icon_state = "rc_food" + refill_type = list(/obj/machinery/vending/snack, + /obj/machinery/vending/fitness, + /obj/machinery/vending/hotfood, + /obj/machinery/vending/weeb, + /obj/machinery/vending/sol, + /obj/machinery/vending/snix, + /obj/machinery/vending/snlvend, + /obj/machinery/vending/sovietvend) + +/obj/item/weapon/refill_cartridge/multitype/drink + name = "drinks vendor refill cartridge" + icon_state = "rc_drink" + refill_type = list(/obj/machinery/vending/coffee, + /obj/machinery/vending/cola, + /obj/machinery/vending/sovietsoda, + /obj/machinery/vending/bepis) + +/obj/item/weapon/refill_cartridge/multitype/smokes //Multitype version in case multiple smoke machine vendors exist in future. + name = "smoking vendor refill cartridge" + icon_state = "rc_generic" + refill_type = list(/obj/machinery/vending/cigarette) + +/obj/item/weapon/refill_cartridge/multitype/clothing + name = "clothing vendor refill cartridge" + icon_state = "rc_clothes" + refill_type = list(/obj/machinery/vending/wardrobe, + /obj/machinery/vending/loadout) + refill_exceptions = list(/obj/machinery/vending/loadout/gadget) + +/obj/item/weapon/refill_cartridge/multitype/specialty + name = "specialty vendor refill cartridge" + icon_state = "rc_generic" + refill_type = list(/obj/machinery/vending/cart, + /obj/machinery/vending/medical, + /obj/machinery/vending/phoronresearch, + /obj/machinery/vending/wallmed1, + /obj/machinery/vending/wallmed2, + /obj/machinery/vending/wallmed_airlock, + /obj/machinery/vending/security, + /obj/machinery/vending/hydronutrients, + /obj/machinery/vending/dinnerware, + /obj/machinery/vending/engivend, + /obj/machinery/vending/robotics, + /obj/machinery/vending/fishing, + /obj/machinery/vending/blood, + /obj/machinery/vending/entertainer) + +/obj/item/weapon/refill_cartridge/autoname/food + icon_state = "rc_food" + +/obj/item/weapon/refill_cartridge/autoname/food/snack + refill_type = /obj/machinery/vending/snack + +/obj/item/weapon/refill_cartridge/autoname/food/fitness + refill_type = /obj/machinery/vending/fitness + +/obj/item/weapon/refill_cartridge/autoname/food/hotfood + refill_type = /obj/machinery/vending/hotfood + +/obj/item/weapon/refill_cartridge/autoname/food/weeb + refill_type = /obj/machinery/vending/weeb + +/obj/item/weapon/refill_cartridge/autoname/food/sol + refill_type = /obj/machinery/vending/sol + +/obj/item/weapon/refill_cartridge/autoname/food/snix + refill_type = /obj/machinery/vending/snix + +/obj/item/weapon/refill_cartridge/autoname/food/snlvend + refill_type = /obj/machinery/vending/snlvend + +/obj/item/weapon/refill_cartridge/autoname/food/sovietvend + refill_type = /obj/machinery/vending/sovietvend + +/obj/item/weapon/refill_cartridge/autoname/drink + icon_state = "rc_drink" + +/obj/item/weapon/refill_cartridge/autoname/drink/coffee + refill_type = /obj/machinery/vending/coffee + +/obj/item/weapon/refill_cartridge/autoname/drink/cola + refill_type = /obj/machinery/vending/cola + +/obj/item/weapon/refill_cartridge/autoname/drink/cola_soft + refill_type = /obj/machinery/vending/cola/soft + +/obj/item/weapon/refill_cartridge/autoname/drink/sovietsoda + refill_type = /obj/machinery/vending/sovietsoda + +/obj/item/weapon/refill_cartridge/autoname/drink/bepis + refill_type = /obj/machinery/vending/bepis + +/obj/item/weapon/refill_cartridge/autoname/cigarette + icon_state = "rc_generic" + refill_type = /obj/machinery/vending/cigarette + +/obj/item/weapon/refill_cartridge/multitype/wardrobe + name = "specialized wardrobe refill cartridge" + icon_state = "rc_clothes" + refill_type = list(/obj/machinery/vending/wardrobe) + +/obj/item/weapon/refill_cartridge/autoname/technical + icon_state = "rc_mechanical" + +/obj/item/weapon/refill_cartridge/autoname/technical/assist + refill_type = /obj/machinery/vending/assist + +/obj/item/weapon/refill_cartridge/autoname/technical/tool + refill_type = /obj/machinery/vending/tool + +/obj/item/weapon/refill_cartridge/autoname/giftvendor + refill_type = /obj/machinery/vending/giftvendor \ No newline at end of file diff --git a/code/modules/emotes/definitions/audible.dm b/code/modules/emotes/definitions/audible.dm index c233cc1ccc..1a5a4e3084 100644 --- a/code/modules/emotes/definitions/audible.dm +++ b/code/modules/emotes/definitions/audible.dm @@ -227,3 +227,11 @@ emote_message_1p_target = "You trill at TARGET." emote_message_3p_target = "trills at TARGET." emote_sound = 'sound/voice/teshtrill.ogg' // Copyright CC BY-NC 3.0 Arnaud Coutancier (freesound.org) for the source audio. + +/decl/emote/audible/prbt + key = "prbt" + emote_message_1p = "You prbt." + emote_message_3p = "prbts." + emote_message_1p_target = "You prbt at TARGET." + emote_message_3p_target = "prbts at TARGET." + emote_sound = 'sound/voice/prbt.ogg' \ No newline at end of file diff --git a/code/modules/emotes/definitions/audible_belch.dm b/code/modules/emotes/definitions/audible_belch.dm new file mode 100644 index 0000000000..3bb3b6a17c --- /dev/null +++ b/code/modules/emotes/definitions/audible_belch.dm @@ -0,0 +1,11 @@ +/decl/emote/audible/belch + key = "belch" + emote_message_3p = "belches." + message_type = AUDIBLE_MESSAGE + sound_preferences = list(/datum/client_preference/emote_noises,/datum/client_preference/belch_noises) + +/decl/emote/audible/belch/get_emote_sound(var/atom/user) + return list( + "sound" = sound(get_sfx("belches")), + "vol" = emote_volume / 2 + ) diff --git a/code/modules/emotes/emote_define.dm b/code/modules/emotes/emote_define.dm index 9a1debb429..daff23f85d 100644 --- a/code/modules/emotes/emote_define.dm +++ b/code/modules/emotes/emote_define.dm @@ -42,6 +42,8 @@ var/global/list/emotes_by_key var/check_range // falsy, or a range outside which the emote will not work var/conscious = TRUE // Do we need to be awake to emote this? var/emote_range = 0 // If >0, restricts emote visibility to viewers within range. + + var/sound_preferences = list(/datum/client_preference/emote_noises) // Default emote sound_preferences is just emote_noises. Belch emote overrides this list for pref-checks. /decl/emote/Initialize() . = ..() @@ -87,15 +89,23 @@ var/global/list/emotes_by_key var/atom/target if(can_target() && extra_params) - extra_params = lowertext(extra_params) - for(var/atom/thing in view(user)) - if(extra_params == lowertext(thing.name)) - target = thing - break + var/target_dist + extra_params = trim(lowertext(extra_params)) + for(var/atom/thing in view((isnull(check_range) ? world.view : check_range), user)) - if(target && target != user && check_range) - if (get_dist(user, target) > check_range) - to_chat(user, SPAN_WARNING("\The [target] is too far away.")) + if(!isturf(thing.loc)) + continue + + var/new_target_dist = get_dist(thing, user) + if(!isnull(target_dist) && target_dist > new_target_dist) + continue + + if(findtext(lowertext(thing.name), extra_params)) + target_dist = new_target_dist + target = thing + + if(!target) + to_chat(user, SPAN_WARNING("You cannot see a '[extra_params]' within range.")) return var/use_1p = get_emote_message_1p(user, target, extra_params) @@ -176,7 +186,7 @@ var/global/list/emotes_by_key if(islist(sound_to_play) && length(sound_to_play)) sound_to_play = pick(sound_to_play) if(sound_to_play) - playsound(user.loc, sound_to_play, use_sound["vol"], 0, preference = /datum/client_preference/emote_noises) //VOREStation Add - Preference + playsound(user.loc, sound_to_play, use_sound["vol"], 0, preference = sound_preferences) //VOREStation Add - Preference /decl/emote/proc/mob_can_use(var/mob/user) return istype(user) && user.stat != DEAD && (type in user.get_available_emotes()) diff --git a/code/modules/events/aurora_caelus.dm b/code/modules/events/aurora_caelus.dm index d1672e51cd..0af166fe23 100644 --- a/code/modules/events/aurora_caelus.dm +++ b/code/modules/events/aurora_caelus.dm @@ -5,18 +5,18 @@ endWhen = 126 /datum/event/aurora_caelus/announce() - command_announcement.Announce("[station_name()]: A harmless cloud of ions is approaching your station, and will exhaust their energy battering the hull. \ + command_announcement.Announce("[station_name()]: A harmless cloud of ions is approaching your [using_map.facility_type], and will exhaust their energy battering the hull. \ Nanotrasen has approved a short break for all employees to relax and observe this very rare event. \ During this time, starlight will be bright but gentle, shifting between quiet green and blue colors. \ Any staff who would like to view these lights for themselves may proceed to the area nearest to them with viewing ports to open space. \ You will have approximately two minutes before the ions begin to reach the hull. \ We hope you enjoy the lights.", "Nanotrasen Meteorology Division", new_sound = 'sound/AI/aurora.ogg') //VOREStation Edit - + /datum/event/aurora_caelus/start() affecting_z -= global.using_map.sealed_levels // Space levels only please! for(var/mob/M in player_list) if(M.z in affecting_z) - M.playsound_local(null, 'sound/ambience/space/aurora_caelus.ogg', 40, FALSE, pressure_affected = FALSE) + M.playsound_local(null, 'sound/ambience/space/aurora_caelus.ogg', 100, FALSE, pressure_affected = FALSE) ..() /datum/event/aurora_caelus/get_skybox_image() @@ -31,6 +31,6 @@ Please return to your workplace and continue work as normal. \ Have a pleasant shift, [station_name()], and thank you for watching with us.", "Nanotrasen Meteorology Division", new_sound = 'sound/AI/aurora_end.ogg') //VOREStation Edit ..() - + /datum/event/aurora_caelus/overmap/announce() return diff --git a/code/modules/events/carp_migration.dm b/code/modules/events/carp_migration.dm index d4fb6faa97..7f991b44fc 100644 --- a/code/modules/events/carp_migration.dm +++ b/code/modules/events/carp_migration.dm @@ -26,7 +26,7 @@ if(activeFor % 5 != 0) return // Only process every 10 seconds. if(count_spawned_carps() < carp_cap) - spawn_fish(rand(1, severity * 2) - 1, severity, severity * 2) + spawn_fish(rand(3, 3 + severity * 2) - 1, 1, severity + 2) /datum/event/carp_migration/proc/spawn_fish(var/num_groups, var/group_size_min, var/group_size_max, var/dir) if(isnull(dir)) diff --git a/code/modules/events/drone_pod_vr.dm b/code/modules/events/drone_pod_vr.dm index 54ddd7bdba..c93911e777 100644 --- a/code/modules/events/drone_pod_vr.dm +++ b/code/modules/events/drone_pod_vr.dm @@ -22,7 +22,7 @@ qdel(target_spot) /datum/event/drone_pod_drop/announce() - command_announcement.Announce("An unidentified drone pod has been detected landing near the surface facilty. Open and examine at your own risk.", "NanoTrasen Orbital Monitoring") + command_announcement.Announce("An unidentified drone pod has been detected on a collision course towards the [location_name()]. Open and examine at your own risk.", "[location_name()] Sensor Network") /datum/event/drone_pod_drop/start() if(!land_target) diff --git a/code/modules/events/event_container_vr.dm b/code/modules/events/event_container_vr.dm index e82fa420d4..6c82590344 100644 --- a/code/modules/events/event_container_vr.dm +++ b/code/modules/events/event_container_vr.dm @@ -31,7 +31,7 @@ new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Nothing", /datum/event/nothing, 400), // Bluescreens APCs, but they still work new /datum/event_meta(EVENT_LEVEL_MUNDANE, "APC Damage", /datum/event/apc_damage, 20, list(ASSIGNMENT_ENGINEER = 20)), - new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Brand Intelligence",/datum/event/brand_intelligence,20, list(ASSIGNMENT_JANITOR = 25), 1), + new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Brand Intelligence",/datum/event/brand_intelligence, 0, list(ASSIGNMENT_ENGINEER = 10), 1), new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Camera Damage", /datum/event/camera_damage, 20, list(ASSIGNMENT_ENGINEER = 20)), new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Canister Leak", /datum/event/canister_leak, 10, list(ASSIGNMENT_ENGINEER = 20)), new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Space Dust", /datum/event/dust, 0, list(ASSIGNMENT_ENGINEER = 20), 0, 0, 50), @@ -39,15 +39,15 @@ new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Lost Carp", /datum/event/carp_migration, 0, list(ASSIGNMENT_SECURITY = 10), 1), new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Money Hacker", /datum/event/money_hacker, 0, list(ASSIGNMENT_ANY = 4), 1, 10, 25), new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Money Lotto", /datum/event/money_lotto, 0, list(ASSIGNMENT_ANY = 1), 1, 5, 15), - //new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Mundane News", /datum/event/mundane_news, 300), + //new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Mundane News", /datum/event/mundane_news, 300), new /datum/event_meta(EVENT_LEVEL_MUNDANE, "PDA Spam", /datum/event/pda_spam, 0, list(ASSIGNMENT_ANY = 4), 1, 25, 50), new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Shipping Error", /datum/event/shipping_error , 30, list(ASSIGNMENT_ANY = 2), 0), new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Trivial News", /datum/event/trivial_news, 400), new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Lore News", /datum/event/lore_news, 400), // Spawns mice, lizards, or dud spiderlings - new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Vermin Infestation",/datum/event/infestation, 100, list(ASSIGNMENT_JANITOR = 100), 1), + new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Vermin Infestation",/datum/event/infestation, 50, list(ASSIGNMENT_JANITOR = 25), 1), // Rot only weakens walls, not destroy them - new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Wallrot", /datum/event/wallrot, 0, list(ASSIGNMENT_ENGINEER = 30, ASSIGNMENT_GARDENER = 50), 1), + new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Wallrot", /datum/event/wallrot, 0, list(ASSIGNMENT_ENGINEER = 30), 1), new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Aurora Caelus", /datum/event/aurora_caelus, 2, list(), 1), ) add_disabled_events(list( @@ -64,11 +64,11 @@ // Just disables comms for a short while. new /datum/event_meta(EVENT_LEVEL_MODERATE, "Communication Blackout", /datum/event/communications_blackout, 500, list(ASSIGNMENT_AI = 150, ASSIGNMENT_SECURITY = 120), 1), // Just blows out a few lights - new /datum/event_meta(EVENT_LEVEL_MODERATE, "Electrical Storm", /datum/event/electrical_storm, 250, list(ASSIGNMENT_ENGINEER = 20, ASSIGNMENT_JANITOR = 150), 1), + new /datum/event_meta(EVENT_LEVEL_MODERATE, "Electrical Storm", /datum/event/electrical_storm, 70, list(ASSIGNMENT_ENGINEER = 20, ASSIGNMENT_JANITOR = 150), 1), // This one is just too fun. new /datum/event_meta(EVENT_LEVEL_MODERATE, "Gravity Failure", /datum/event/gravity, 75, list(ASSIGNMENT_ENGINEER = 60), 1), // Temporary power failure, but mitigatead by subgrids - new /datum/event_meta(EVENT_LEVEL_MODERATE, "Grid Check", /datum/event/grid_check, 0, list(ASSIGNMENT_SCIENTIST = 10, ASSIGNMENT_ENGINEER = 25), 1), + new /datum/event_meta(EVENT_LEVEL_MODERATE, "Grid Check", /datum/event/grid_check, 0, list(ASSIGNMENT_ENGINEER = 25), 1), // Pure RP fun, no mechanical effects. new /datum/event_meta(EVENT_LEVEL_MODERATE, "Ion Storm", /datum/event/ionstorm, 0, list(ASSIGNMENT_AI = 80, ASSIGNMENT_CYBORG = 50, ASSIGNMENT_ENGINEER = 15, ASSIGNMENT_SCIENTIST = 5)), // Opens doors in brig. So just RP fun @@ -77,14 +77,15 @@ new /datum/event_meta(EVENT_LEVEL_MODERATE, "Rogue Drones", /datum/event/rogue_drone, 0, list(ASSIGNMENT_SECURITY = 20), 1), new /datum/event_meta(EVENT_LEVEL_MODERATE, "Solar Storm", /datum/event/solar_storm, 30, list(ASSIGNMENT_ENGINEER = 40, ASSIGNMENT_SECURITY = 30), 1), new /datum/event_meta(EVENT_LEVEL_MODERATE, "Space Dust", /datum/event/dust, 0, list(ASSIGNMENT_ENGINEER = 20), 1, 0, 50), - new /datum/event_meta(EVENT_LEVEL_MODERATE, "Virology Breach", /datum/event/prison_break/virology, 0, list(ASSIGNMENT_MEDICAL = 100), 1), - new /datum/event_meta(EVENT_LEVEL_MODERATE, "Xenobiology Breach", /datum/event/prison_break/xenobiology, 0, list(ASSIGNMENT_SCIENCE = 100), 1), - new /datum/event_meta(EVENT_LEVEL_MODERATE, "Spider Infestation", /datum/event/spider_infestation, 30, list(ASSIGNMENT_SECURITY = 30), 1), + new /datum/event_meta(EVENT_LEVEL_MODERATE, "Virology Breach", /datum/event/prison_break/virology, 0, list(ASSIGNMENT_ENGINEER = 30), 1), + new /datum/event_meta(EVENT_LEVEL_MODERATE, "Xenobiology Breach", /datum/event/prison_break/xenobiology, 0, list(ASSIGNMENT_ENGINEER = 30), 1), + new /datum/event_meta(EVENT_LEVEL_MODERATE, "Spider Infestation", /datum/event/spider_infestation, 0, list(ASSIGNMENT_SECURITY = 30), 1), //Evil grubs that drain station power slightly new /datum/event_meta(EVENT_LEVEL_MODERATE, "Grub Infestation", /datum/event/grub_infestation, 0, list(ASSIGNMENT_SECURITY = 10, ASSIGNMENT_ENGINEER = 30), 1), new /datum/event_meta(EVENT_LEVEL_MODERATE, "Drone Pod Drop", /datum/event/drone_pod_drop, 10, list(ASSIGNMENT_SCIENTIST = 40), 1), - new /datum/event_meta(EVENT_LEVEL_MODERATE, "Morph Spawn", /datum/event/morph_spawn, 75, list(ASSIGNMENT_SECURITY = 30, ASSIGNMENT_SCIENTIST = 10), 1), - new /datum/event_meta(EVENT_LEVEL_MODERATE, "Maintenance Predator", /datum/event/maintenance_predator, 75, list(ASSIGNMENT_SECURITY = 40), 0) + new /datum/event_meta(EVENT_LEVEL_MODERATE, "Morph Spawn", /datum/event/morph_spawn, 75, list(ASSIGNMENT_ANY = 5), 1), + new /datum/event_meta(EVENT_LEVEL_MODERATE, "Maintenance Predator", /datum/event/maintenance_predator, 100, list(ASSIGNMENT_ANY = 5), 0), + new /datum/event_meta(EVENT_LEVEL_MODERATE, "Jellyfish School", /datum/event/jellyfish_migration, 0, list(ASSIGNMENT_ANY = 1, ASSIGNMENT_SECURITY = 15, ASSIGNMENT_MEDICAL = 3), 1), ) add_disabled_events(list( new /datum/event_meta(EVENT_LEVEL_MODERATE, "Appendicitis", /datum/event/spontaneous_appendicitis, 0, list(ASSIGNMENT_MEDICAL = 30), 1), @@ -97,17 +98,18 @@ /datum/event_container/major/New() available_events = list( - new /datum/event_meta(EVENT_LEVEL_MAJOR, "Nothing", /datum/event/nothing, 3600), - new /datum/event_meta(EVENT_LEVEL_MAJOR, "Atmos Leak", /datum/event/atmos_leak, 30, list(ASSIGNMENT_ENGINEER = 25), 1), - new /datum/event_meta(EVENT_LEVEL_MAJOR, "Meteor Strike", /datum/event/meteor_strike, 10, list(ASSIGNMENT_ENGINEER = 15), 1), - new /datum/event_meta(EVENT_LEVEL_MAJOR, "Space Vines", /datum/event/spacevine, 20, list(ASSIGNMENT_ENGINEER = 7), 1), - new /datum/event_meta(EVENT_LEVEL_MAJOR, "Carp Migration", /datum/event/carp_migration, 10, list(ASSIGNMENT_SECURITY = 5), 1), - new /datum/event_meta(EVENT_LEVEL_MAJOR, "Containment Breach", /datum/event/prison_break/station,0, list(ASSIGNMENT_ANY = 5), 1), + new /datum/event_meta(EVENT_LEVEL_MAJOR, "Nothing", /datum/event/nothing, 3600), + new /datum/event_meta(EVENT_LEVEL_MAJOR, "Atmos Leak", /datum/event/atmos_leak, 20, list(ASSIGNMENT_ENGINEER = 25), 1), + new /datum/event_meta(EVENT_LEVEL_MAJOR, "Space Vines", /datum/event/spacevine, 10, list(ASSIGNMENT_ENGINEER = 7, ASSIGNMENT_GARDENER = 2), 1), + new /datum/event_meta(EVENT_LEVEL_MAJOR, "Carp Migration", /datum/event/carp_migration, 10, list(ASSIGNMENT_SECURITY = 5), 1), + new /datum/event_meta(EVENT_LEVEL_MAJOR, "Containment Breach", /datum/event/prison_break/station, 0, list(ASSIGNMENT_ANY = 5), 1), + new /datum/event_meta(EVENT_LEVEL_MAJOR, "Jellyfish Migration", /datum/event/jellyfish_migration, 5, list(ASSIGNMENT_ANY = 1, ASSIGNMENT_SECURITY = 5, ASSIGNMENT_MEDICAL = 3), 1), ) add_disabled_events(list( - new /datum/event_meta(EVENT_LEVEL_MAJOR, "Blob", /datum/event/blob, 10, list(ASSIGNMENT_ENGINEER = 60), 1), - new /datum/event_meta(EVENT_LEVEL_MAJOR, "Meteor Wave", /datum/event/meteor_wave, 30, list(ASSIGNMENT_ENGINEER = 15), 1), - new /datum/event_meta(EVENT_LEVEL_MAJOR, "Supply Demand", /datum/event/supply_demand, 0, list(ASSIGNMENT_ANY = 5, ASSIGNMENT_SCIENCE = 15, ASSIGNMENT_GARDENER = 10, ASSIGNMENT_ENGINEER = 10, ASSIGNMENT_MEDICAL = 15), 1), + new /datum/event_meta(EVENT_LEVEL_MAJOR, "Meteor Strike", /datum/event/meteor_strike, 10, list(ASSIGNMENT_ENGINEER = 15), 1), + new /datum/event_meta(EVENT_LEVEL_MAJOR, "Blob", /datum/event/blob, 10, list(ASSIGNMENT_ENGINEER = 60), 1), + new /datum/event_meta(EVENT_LEVEL_MAJOR, "Meteor Wave", /datum/event/meteor_wave, 30, list(ASSIGNMENT_ENGINEER = 15), 1), + new /datum/event_meta(EVENT_LEVEL_MAJOR, "Supply Demand", /datum/event/supply_demand, 0, list(ASSIGNMENT_ANY = 5, ASSIGNMENT_SCIENCE = 15, ASSIGNMENT_GARDENER = 10, ASSIGNMENT_ENGINEER = 10, ASSIGNMENT_MEDICAL = 15), 1), )) #undef ASSIGNMENT_ANY diff --git a/code/modules/events/ian_storm_vr.dm b/code/modules/events/ian_storm_vr.dm index 8e654cff43..dc9aee617d 100644 --- a/code/modules/events/ian_storm_vr.dm +++ b/code/modules/events/ian_storm_vr.dm @@ -4,7 +4,7 @@ endWhen = 3 /datum/event/ianstorm/announce() - command_announcement.Announce("It has come to our attention that the station passed through an ion storm. Please monitor all electronic equipment for malfunctions.", "Anomaly Alert", 'sound/AI/ian_storm.ogg') + command_announcement.Announce("It has come to our attention that the [using_map.facility_type] passed through an ion storm. Please monitor all electronic equipment for malfunctions.", "Anomaly Alert", 'sound/AI/ian_storm.ogg') spawn(7 SECONDS) command_announcement.Announce("Wait. No, thats wrong. The station passed through an IAN storm!.", "Ian Alert") diff --git a/code/modules/events/infestation.dm b/code/modules/events/infestation.dm index 985518067b..d0d221d5fd 100644 --- a/code/modules/events/infestation.dm +++ b/code/modules/events/infestation.dm @@ -1,120 +1,78 @@ -#define LOC_KITCHEN 0 -#define LOC_ATMOS 1 -#define LOC_CHAPEL 2 -#define LOC_LIBRARY 3 -#define LOC_HYDRO 4 -#define LOC_CONSTR 5 -#define LOC_TECH 6 -#define LOC_GARDEN 7 -#define LOC_STEMNGR 8 -#define LOC_RESEARCH 9 - #define VERM_MICE 0 #define VERM_LIZARDS 1 -#define VERM_SPIDERS 2 /datum/event/infestation announceWhen = 10 endWhen = 11 - var/location var/locstring var/vermin var/vermstring + var/list/spawned_vermin = list() + var/spawn_types + var/num_groups + var/prep_size_min + var/prep_size_max + var/vermin_cap = 40 + var/list/spawn_locations = list() /datum/event/infestation/start() - - location = rand(0,9) - var/list/turf/simulated/floor/turfs = list() - var/spawn_area_type - switch(location) - if(LOC_KITCHEN) - spawn_area_type = /area/crew_quarters/kitchen - locstring = "the kitchen" - if(LOC_ATMOS) - spawn_area_type = /area/engineering/atmos - locstring = "atmospherics" - if(LOC_CHAPEL) - spawn_area_type = /area/chapel/main - locstring = "the chapel" - if(LOC_LIBRARY) - spawn_area_type = /area/library - locstring = "the library" - if(LOC_HYDRO) - spawn_area_type = /area/hydroponics - locstring = "hydroponics" - if(LOC_CONSTR) - spawn_area_type = /area/construction - locstring = "the construction area" - if(LOC_TECH) - spawn_area_type = /area/storage/tech - locstring = "technical storage" - if(LOC_GARDEN) - spawn_area_type = /area/hydroponics/garden - locstring = "the public garden" - if(LOC_STEMNGR) - spawn_area_type = /area/crew_quarters/captain - locstring = "the site manager's office" - if(LOC_RESEARCH) - spawn_area_type = /area/rnd/research - locstring = "the research division" - - for(var/areapath in typesof(spawn_area_type)) - var/area/A = locate(areapath) - for(var/turf/simulated/floor/F in A.contents) - //VOREStation Edit - Fixes event - var/blocked = FALSE - for(var/atom/movable/AM in F) - if(AM.density) - blocked = TRUE - if(!blocked) - turfs += F - //VOREStation Edit - Fixes event - - var/list/spawn_types = list() - var/max_number - vermin = rand(0,2) + vermin = rand(0,1) switch(vermin) if(VERM_MICE) - spawn_types = list(/mob/living/simple_mob/animal/passive/mouse/gray, /mob/living/simple_mob/animal/passive/mouse/brown, /mob/living/simple_mob/animal/passive/mouse/white) - max_number = 12 + spawn_types = /mob/living/simple_mob/animal/passive/mouse/gray + prep_size_min = 1 + prep_size_max = 4 vermstring = "mice" if(VERM_LIZARDS) - spawn_types = list(/mob/living/simple_mob/animal/passive/lizard) - max_number = 6 + spawn_types = /mob/living/simple_mob/animal/passive/lizard + prep_size_min = 1 + prep_size_max = 3 vermstring = "lizards" - if(VERM_SPIDERS) - spawn_types = list(/obj/effect/spider/spiderling) - max_number = 3 - vermstring = "spiders" + // Check if any landmarks exist! + for(var/obj/effect/landmark/C in landmarks_list) + if(C.name == "verminstart") + spawn_locations.Add(C.loc) - spawn(0) - var/num = rand(2,max_number) - while(turfs.len > 0 && num > 0) - var/turf/simulated/floor/T = pick(turfs) - turfs.Remove(T) - num-- - if(vermin == VERM_SPIDERS) - var/obj/effect/spider/spiderling/S = new(T) - S.amount_grown = -1 - else - var/spawn_type = pick(spawn_types) - new spawn_type(T) +/datum/event/infestation/tick() + if(activeFor % 5 != 0) + return // Only process every 10 seconds. + if(count_spawned_vermin() < vermin_cap) + spawn_vermin(rand(4,10), prep_size_min, prep_size_max) + +/datum/event/infestation/proc/spawn_vermin(var/num_groups, var/group_size_min, var/group_size_max) + if(spawn_locations.len) // Okay we've got landmarks, lets use those! + shuffle_inplace(spawn_locations) + num_groups = min(num_groups, spawn_locations.len) + for (var/i = 1, i <= num_groups, i++) + var/group_size = rand(group_size_min, group_size_max) + for (var/j = 0, j < group_size, j++) + spawn_one_vermin(spawn_locations[i]) + return + +// Spawn a single vermin at given location. +/datum/event/infestation/proc/spawn_one_vermin(var/loc) + var/mob/living/simple_mob/animal/M = new spawn_types(loc) + GLOB.destroyed_event.register(M, src, .proc/on_vermin_destruction) + spawned_vermin.Add(M) + return M + +// Counts living vermin spawned by this event. +/datum/event/infestation/proc/count_spawned_vermin() + . = 0 + for(var/mob/living/simple_mob/animal/M as anything in spawned_vermin) + if(!QDELETED(M) && M.stat != DEAD) + . += 1 + +// If vermin is kill, remove it from the list. +/datum/event/infestation/proc/on_vermin_destruction(var/mob/M) + spawned_vermin -= M + GLOB.destroyed_event.unregister(M, src, .proc/on_vermin_destruction) + /datum/event/infestation/announce() - command_announcement.Announce("Bioscans indicate that [vermstring] have been breeding in [locstring]. Clear them out, before this starts to affect productivity.", "Vermin infestation") - -#undef LOC_KITCHEN -#undef LOC_ATMOS -#undef LOC_CHAPEL -#undef LOC_LIBRARY -#undef LOC_HYDRO -#undef LOC_TECH -#undef LOC_GARDEN -#undef LOC_STEMNGR -#undef LOC_RESEARCH + command_announcement.Announce("Bioscans indicate that [vermstring] have been breeding all over the facility. Clear them out, before this starts to affect productivity.", "Vermin infestation") #undef VERM_MICE -#undef VERM_LIZARDS -#undef VERM_SPIDERS +#undef VERM_LIZARDS \ No newline at end of file diff --git a/code/modules/events/jellyfish_migration.dm b/code/modules/events/jellyfish_migration.dm new file mode 100644 index 0000000000..7498539ae1 --- /dev/null +++ b/code/modules/events/jellyfish_migration.dm @@ -0,0 +1,102 @@ +/datum/event/jellyfish_migration + startWhen = 0 // Start immediately + announceWhen = 45 // Adjusted by setup + endWhen = 75 // Adjusted by setup + var/jellyfish_cap = 20 + var/list/spawned_jellyfish = list() + +/datum/event/jellyfish_migration/setup() + announceWhen = rand(30, 60) // 1 to 2 minutes + endWhen += severity * 25 + jellyfish_cap = 2 + 3 ** severity // No more than this many at once regardless of waves. (5, 11, 29) + +/datum/event/jellyfish_migration/start() + affecting_z -= global.using_map.sealed_levels // Space levels only please! + ..() + +/datum/event/jellyfish_migration/announce() + var/announcement = "" + if(severity == EVENT_LEVEL_MAJOR) + announcement = "Massive migration of unknown biological entities has been detected near [location_name()], please stand-by." + else + announcement = "Unknown biological [spawned_jellyfish.len == 1 ? "entity has" : "entities have"] been detected near [location_name()], please stand-by." + command_announcement.Announce(announcement, "Lifesign Alert") + +/datum/event/jellyfish_migration/tick() + if(activeFor % 5 != 0) + return // Only process every 10 seconds. + if(count_spawned_jellyfish() < jellyfish_cap) + spawn_fish(rand(3, 3 + severity * 2) - 1, 1, severity + 2) + +/datum/event/jellyfish_migration/proc/spawn_fish(var/num_groups, var/group_size_min, var/group_size_max, var/dir) + if(isnull(dir)) + dir = (victim && prob(80)) ? victim.fore_dir : pick(GLOB.cardinal) + + // Check if any landmarks exist! These will use the carp spawn since they already would spawn in these similar spots. + var/list/spawn_locations = list() + for(var/obj/effect/landmark/C in landmarks_list) + if(C.name == "carpspawn" && (C.z in affecting_z)) + spawn_locations.Add(C.loc) + if(spawn_locations.len) // Okay we've got landmarks, lets use those! + shuffle_inplace(spawn_locations) + num_groups = min(num_groups, spawn_locations.len) + for (var/i = 1, i <= num_groups, i++) + var/group_size = rand(group_size_min, group_size_max) + for (var/j = 0, j < group_size, j++) + spawn_one_jellyfish(spawn_locations[i]) + return + + // Okay we did *not* have any landmarks, so lets do our best! + var/i = 1 + while (i <= num_groups) + var/Z = pick(affecting_z) + var/group_size = rand(group_size_min, group_size_max) + var/turf/map_center = locate(round(world.maxx/2), round(world.maxy/2), Z) + var/turf/group_center = pick_random_edge_turf(dir, Z, TRANSITIONEDGE + 2) + var/list/turfs = getcircle(group_center, 2) + for (var/j = 0, j < group_size, j++) + var/mob/living/simple_mob/animal/M = spawn_one_jellyfish(turfs[(i % turfs.len) + 1]) + // Ray trace towards middle of the map to find where they can stop just outside of structure/ship. + var/turf/target + for(var/turf/T in getline(get_turf(M), map_center)) + if(!T.is_space()) + break; + target = T + if(target) + M.ai_holder?.give_destination(target) // Ask jellyfish to swim towards the middle of the map + i++ + +// Spawn a single jellyfish at given location. +/datum/event/jellyfish_migration/proc/spawn_one_jellyfish(var/loc) + var/mob/living/simple_mob/animal/M = new /mob/living/simple_mob/vore/alienanimals/space_jellyfish(loc) + GLOB.destroyed_event.register(M, src, .proc/on_jellyfish_destruction) + spawned_jellyfish.Add(M) + return M + +// Counts living jellyfish spawned by this event. +/datum/event/jellyfish_migration/proc/count_spawned_jellyfish() + . = 0 + for(var/mob/living/simple_mob/animal/M as anything in spawned_jellyfish) + if(!QDELETED(M) && M.stat != DEAD) + . += 1 + +// If jellyfish is bomphed, remove it from the list. +/datum/event/jellyfish_migration/proc/on_jellyfish_destruction(var/mob/M) + spawned_jellyfish -= M + GLOB.destroyed_event.unregister(M, src, .proc/on_jellyfish_destruction) + +/datum/event/jellyfish_migration/end() + . = ..() + // Clean up jellyfish that died in space for some reason. + spawn(0) + for(var/mob/living/simple_mob/SM in spawned_jellyfish) + if(SM.stat == DEAD) + var/turf/T = get_turf(SM) + if(istype(T, /turf/space)) + if(prob(75)) + qdel(SM) + CHECK_TICK + +// Overmap version +/datum/event/jellyfish_migration/overmap/announce() + return diff --git a/code/modules/events/prison_break.dm b/code/modules/events/prison_break.dm index f2675a0ede..2575873aae 100644 --- a/code/modules/events/prison_break.dm +++ b/code/modules/events/prison_break.dm @@ -37,7 +37,7 @@ /datum/event/prison_break/announce() if(areas && areas.len > 0) - command_announcement.Announce("[pick("Gr3y.T1d3 virus","Malignant trojan")] detected in [station_name()] [(eventDept == "Security")? "imprisonment":"containment"] subroutines. Secure any compromised areas immediately. Station AI involvement is recommended.", "[eventDept] Alert") + command_announcement.Announce("[pick("Gr3y.T1d3 virus","Malignant trojan")] detected in [station_name()] [(eventDept == "Security")? "imprisonment":"containment"] subroutines. Secure any compromised areas immediately. Involvement of [using_map.facility_type] AI is recommended.", "[eventDept] Alert") /datum/event/prison_break/start() diff --git a/code/modules/events/radiation_storm.dm b/code/modules/events/radiation_storm.dm index 13f853dd3c..a8668e561a 100644 --- a/code/modules/events/radiation_storm.dm +++ b/code/modules/events/radiation_storm.dm @@ -16,7 +16,7 @@ /datum/event/radiation_storm/tick() if(activeFor == enterBelt) - command_announcement.Announce("The station has entered the radiation belt. Please remain in a sheltered area until we have passed the radiation belt.", "Anomaly Alert") + command_announcement.Announce("The [using_map.facility_type] has entered the radiation belt. Please remain in a sheltered area until we have passed the radiation belt.", "Anomaly Alert") radiate() if(activeFor >= enterBelt && activeFor <= leaveBelt) @@ -27,7 +27,7 @@ radiate() else if(activeFor == leaveBelt) - command_announcement.Announce("The station has passed the radiation belt. Please allow for up to one minute while radiation levels dissipate, and report to medbay if you experience any unusual symptoms. Maintenance will lose all access again shortly.", "Anomaly Alert") + command_announcement.Announce("The [using_map.facility_type] has passed the radiation belt. Please allow for up to one minute while radiation levels dissipate, and report to medbay if you experience any unusual symptoms. Maintenance will lose all access again shortly.", "Anomaly Alert") /datum/event/radiation_storm/proc/radiate() var/radiation_level = rand(15, 35) for(var/z in using_map.station_levels) diff --git a/code/modules/events/rogue_drones.dm b/code/modules/events/rogue_drones.dm index f6ac58b1e4..b7e9f37552 100644 --- a/code/modules/events/rogue_drones.dm +++ b/code/modules/events/rogue_drones.dm @@ -35,7 +35,7 @@ if(4) msg = "A passing derelict ship's drone defense systems have just activated. If any are sighted in the area, use caution." if(5) - msg = "We're detecting a swarm of small objects approaching your station. Most likely a bunch of drones. Please exercise caution if you see any." + msg = "We're detecting a swarm of small objects approaching your [using_map.facility_type]. Most likely a bunch of drones. Please exercise caution if you see any." //VOREStation Edit End command_announcement.Announce(msg, "Rogue drone alert") diff --git a/code/modules/events/solar_storm.dm b/code/modules/events/solar_storm.dm index a8d4b92a3c..33c2c477ed 100644 --- a/code/modules/events/solar_storm.dm +++ b/code/modules/events/solar_storm.dm @@ -9,7 +9,7 @@ endWhen = startWhen + rand(30,90) + rand(30,90) //2-6 minute duration /datum/event/solar_storm/announce() - command_announcement.Announce("A solar storm has been detected approaching \the [station_name()]. Please halt all EVA activites immediately and return to the interior of the station.", "Anomaly Alert", new_sound = 'sound/AI/radiation.ogg') + command_announcement.Announce("A solar storm has been detected approaching \the [station_name()]. Please halt all EVA activites immediately and return to the interior of the [using_map.facility_type].", "Anomaly Alert", new_sound = 'sound/AI/radiation.ogg') adjust_solar_output(1.5) /datum/event/solar_storm/proc/adjust_solar_output(var/mult = 1) @@ -18,7 +18,7 @@ /datum/event/solar_storm/start() - command_announcement.Announce("The solar storm has reached the station. Please refrain from EVA and remain inside the station until it has passed.", "Anomaly Alert") + command_announcement.Announce("The solar storm has reached the [using_map.facility_type]. Please refrain from EVA and remain inside the station until it has passed.", "Anomaly Alert") adjust_solar_output(5) @@ -40,7 +40,7 @@ L.rad_act(rand(15, 30)) /datum/event/solar_storm/end() - command_announcement.Announce("The solar storm has passed the station. It is now safe to resume EVA activities. Please report to medbay if you experience any unusual symptoms. ", "Anomaly Alert") + command_announcement.Announce("The solar storm has passed the [using_map.facility_type]. It is now safe to resume EVA activities. Please report to medbay if you experience any unusual symptoms. ", "Anomaly Alert") adjust_solar_output() diff --git a/code/modules/events/supply_demand_vr.dm b/code/modules/events/supply_demand_vr.dm index 6e229e1b48..f61d4744c4 100644 --- a/code/modules/events/supply_demand_vr.dm +++ b/code/modules/events/supply_demand_vr.dm @@ -63,7 +63,7 @@ send_console_message(message, dpt); // Also announce over main comms so people know to look - command_announcement.Announce("An order for the station to deliver supplies to [command_name()] has been delivered to all supply Request Consoles", my_department) + command_announcement.Announce("An order for the [using_map.facility_type] to deliver supplies to [command_name()] has been delivered to all supply Request Consoles", my_department) /datum/event/supply_demand/tick() if(required_items.len == 0) diff --git a/code/modules/events/wallrot.dm b/code/modules/events/wallrot.dm index e09cc50d2f..6c87fb8572 100644 --- a/code/modules/events/wallrot.dm +++ b/code/modules/events/wallrot.dm @@ -7,15 +7,18 @@ // 100 attempts for(var/i=0, i<100, i++) - var/turf/candidate = locate(rand(1, world.maxx), rand(1, world.maxy), 1) + var/z_level = pick(using_map.station_levels) + var/turf/candidate = locate(rand(1, world.maxx), rand(1, world.maxy), z_level) if(istype(candidate, /turf/simulated/wall)) center = candidate - return 1 + var/area/A = get_area(candidate) + if(!A.forbid_events) + return 1 return 0 /datum/event/wallrot/announce() if(center) - command_announcement.Announce("Harmful fungi detected on \the [station_name()] nearby [center.loc.name]. Station structures may be contaminated.", "Biohazard Alert") + command_announcement.Announce("Harmful fungi detected on \the [station_name()] and [using_map.facility_type] structures nearby [center.loc.name] may be contaminated.", "Biohazard Alert") /datum/event/wallrot/start() spawn() diff --git a/code/modules/events/wormholes.dm b/code/modules/events/wormholes.dm index a9581341c5..3ff2cf6b7b 100644 --- a/code/modules/events/wormholes.dm +++ b/code/modules/events/wormholes.dm @@ -6,4 +6,4 @@ wormhole_event() /datum/event/wormholes/end() - command_announcement.Announce("There are no more space-time anomalies detected on the station.", "Anomaly Alert") + command_announcement.Announce("There are no more space-time anomalies detected on the [using_map.facility_type].", "Anomaly Alert") diff --git a/code/modules/examine/descriptions/engineering.dm b/code/modules/examine/descriptions/engineering.dm index 52d24ff577..04c20a8bdb 100644 --- a/code/modules/examine/descriptions/engineering.dm +++ b/code/modules/examine/descriptions/engineering.dm @@ -46,6 +46,8 @@ return results /obj/machinery/door/airlock/get_description_interaction() + description_info = "To ring an airlock's doorbell, hold Alt and click on the airlock with the Left Mouse Button on Green/Help intent. Doing the same on Harm intent will instead hammer on the airlock." //vorestation edit + var/list/results = list() if(can_remove_electronics()) diff --git a/code/modules/fishing/fishing_rod.dm b/code/modules/fishing/fishing_rod.dm index ae089d26a2..9a949ad5d9 100644 --- a/code/modules/fishing/fishing_rod.dm +++ b/code/modules/fishing/fishing_rod.dm @@ -58,7 +58,7 @@ return else if(istype(I, /obj/item/stack/cable_coil) && !strung) var/obj/item/stack/cable_coil/C = I - if(C.amount < 5) + if(C.get_amount() < 5) to_chat(user, "You do not have enough length in \the [C] to string this!") return if(do_after(user, rand(10 SECONDS, 20 SECONDS))) diff --git a/code/modules/flufftext/Dreaming.dm b/code/modules/flufftext/Dreaming.dm index f03580dde0..49b1cc4bf2 100644 --- a/code/modules/flufftext/Dreaming.dm +++ b/code/modules/flufftext/Dreaming.dm @@ -7,7 +7,7 @@ var/list/dreams = list( "a blue light","an abandoned laboratory","NanoTrasen","mercenaries","blood","healing","power","respect", "riches","space","a crash","happiness","pride","a fall","water","flames","ice","melons","flying","the eggs","money", "the Head of Personnel","the Head of Security","the Chief Engineer","the Research Director","the Chief Medical Officer", - "the Detective","the Warden","an Internal Affairs Agent","a Station Engineer","the Janitor","the Atmospheric Technician", + "the Detective","the Warden","an Internal Affairs Agent","an Engineer","the Janitor","the Atmospheric Technician", "the Quartermaster","a Cargo Technician","the Botanist","a Shaft Miner","the Psychologist","the Chemist","a Geneticist", "the Virologist","the Roboticist","the Chef","the Bartender","the Chaplain","the Librarian","a mouse","an ERT member", "a beach","the holodeck","a smoky room","a voice","the cold","a mouse","an operating table","the bar","the rain","a Skrell", diff --git a/code/modules/food/drinkingglass/glass_boxes.dm b/code/modules/food/drinkingglass/glass_boxes.dm index 4573a5520f..acd69382c6 100644 --- a/code/modules/food/drinkingglass/glass_boxes.dm +++ b/code/modules/food/drinkingglass/glass_boxes.dm @@ -1,6 +1,7 @@ /obj/item/weapon/storage/box/mixedglasses name = "glassware box" desc = "A box of assorted glassware" + icon_state = "glass" can_hold = list(/obj/item/weapon/reagent_containers/food/drinks/glass2) starts_with = list( /obj/item/weapon/reagent_containers/food/drinks/glass2/square, diff --git a/code/modules/food/drinkingglass/metaglass.dm b/code/modules/food/drinkingglass/metaglass.dm index bca61427f5..0842b878b0 100644 --- a/code/modules/food/drinkingglass/metaglass.dm +++ b/code/modules/food/drinkingglass/metaglass.dm @@ -23,7 +23,7 @@ icon = R.glass_icon_file else icon = initial(icon) - + if(R.glass_icon_state) icon_state = R.glass_icon_state else @@ -373,6 +373,10 @@ Drinks Data glass_icon_state = "martiniglass" glass_center_of_mass = list("x"=17, "y"=8) +/datum/reagent/ethanol/rum_and_cola + glass_icon_state = "rumcolaglass" + glass_center_of_mass = list("x"=16, "y"=8) + /datum/reagent/ethanol/cuba_libre glass_icon_state = "cubalibreglass" glass_center_of_mass = list("x"=16, "y"=8) diff --git a/code/modules/food/food/cans.dm b/code/modules/food/food/cans.dm index 75018e8683..31384df17b 100644 --- a/code/modules/food/food/cans.dm +++ b/code/modules/food/food/cans.dm @@ -9,7 +9,7 @@ /obj/item/weapon/reagent_containers/food/drinks/cans/cola name = "\improper Space Cola" - desc = "Reassuringly artificial." + desc = "Reassuringly artificial. Contains caffeine." description_fluff = "The 'Space' branding was originally added to the 'Alpha Cola' product line in order to justify selling cans for 50% higher prices to 'off-world' retailers. Despite being chemically identical, Space Cola proved so popular that Centauri Provisions eventually applied the name to the entire product line - price hike and all." icon_state = "cola" center_of_mass = list("x"=16, "y"=10) @@ -18,6 +18,17 @@ . = ..() reagents.add_reagent("cola", 30) +/obj/item/weapon/reagent_containers/food/drinks/cans/decaf_cola + name = "\improper Space Cola Free" + desc = "More reassuringly artificial than ever before." + description_fluff = "The 'Space' branding was originally added to the 'Alpha Cola' product line in order to justify selling cans for 50% higher prices to 'off-world' retailers. Despite being chemically identical, Space Cola proved so popular that Centauri Provisions eventually applied the name to the entire product line - price hike and all." + icon_state = "decafcola" + center_of_mass = list("x"=16, "y"=10) + +/obj/item/weapon/reagent_containers/food/drinks/cans/decaf_cola/Initialize() + . = ..() + reagents.add_reagent("decafcola", 30) + /obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle name = "bottled water" desc = "Ice cold and utterly tasteless, this 'all-natural' mineral water comes 'fresh' from one of NanoTrasen's heavy-duty bottling plants in the Sivian poles." @@ -32,7 +43,7 @@ /obj/item/weapon/reagent_containers/food/drinks/cans/space_mountain_wind name = "\improper Space Mountain Wind" - desc = "Blows right through you like a space wind." + desc = "Blows right through you like a space wind. Contains caffeine." description_fluff = "The 'Space' branding was originally added to the 'Alpha Cola' product line in order to justify selling cans for 50% higher prices to 'off-world' retailers. Despite being chemically identical, Space Cola proved so popular that Centauri Provisions eventually applied the name to the entire product line - price hike and all." icon_state = "space_mountain_wind" center_of_mass = list("x"=16, "y"=8) @@ -53,7 +64,7 @@ /obj/item/weapon/reagent_containers/food/drinks/cans/dr_gibb name = "\improper Dr. Gibb" - desc = "A delicious mixture of 42 different flavors." + desc = "A delicious mixture of 42 different flavors. Contains caffine." description_fluff = "Following a 2490 lawsuit and a spate of deaths, Gilthari Exports reminds customers that the 'Dr.' legally stands for 'Drink'." icon_state = "dr_gibb" center_of_mass = list("x"=16, "y"=8) @@ -64,7 +75,7 @@ /obj/item/weapon/reagent_containers/food/drinks/cans/dr_gibb_diet name = "\improper Diet Dr. Gibb" - desc = "A delicious mixture of 42 different flavors, one of which is water." + desc = "A delicious mixture of 42 different flavors, one of which is water. Contains caffeine." description_fluff = "Following a 2490 lawsuit and a spate of deaths, Gilthari Exports reminds customers that the 'Dr.' legally stands for 'Drink'." icon_state = "dr_gibb_diet" center_of_mass = list("x"=16, "y"=8) @@ -75,7 +86,7 @@ /obj/item/weapon/reagent_containers/food/drinks/cans/starkist name = "\improper Star-kist" - desc = "The taste of a star in liquid form. And, a bit of tuna...?" + desc = "The taste of a star in liquid form. And, a bit of tuna...? Contains caffeine." description_fluff = "Brought back by popular demand in 2515 after a limited-run release in 2510, the cult success of this bizarre tasting soda has never truly been accounted for by economists." icon_state = "starkist" center_of_mass = list("x"=16, "y"=8) @@ -84,6 +95,17 @@ . = ..() reagents.add_reagent("brownstar", 30) +/obj/item/weapon/reagent_containers/food/drinks/cans/starkistdecaf + name = "\improper Star-kist Classic" + desc = "The taste of a star in liquid form, in a special decaffineated blend. Still tastes faintly of tuna?" + description_fluff = "A special variant of the Starkist brand soda introduced after popular outcry following a reformulation of the basic drink decades ago. This decaffineated variant outsells 'New' Starkist in many markets." + icon_state = "decafstarkist" + center_of_mass = list("x"=16, "y"=8) + +/obj/item/weapon/reagent_containers/food/drinks/cans/starkistdecaf/Initialize() + . = ..() + reagents.add_reagent("brownstar_decaf", 30) + /obj/item/weapon/reagent_containers/food/drinks/cans/space_up name = "\improper Space-Up" desc = "Tastes like a hull breach in your mouth." @@ -108,7 +130,7 @@ /obj/item/weapon/reagent_containers/food/drinks/cans/iced_tea name = "\improper Vrisk Serket Iced Tea" - desc = "That sweet, refreshing southern earthy flavor. That's where it's from, right? South Earth?" + desc = "That sweet, refreshing southern earthy flavor. That's where it's from, right? South Earth? Contains caffeine." description_fluff = "Produced exclusively on the planet Oasis, Vrisk Serket Iced Tea is not sold outside of the Golden Crescent, let alone Earth." icon_state = "ice_tea_can" center_of_mass = list("x"=16, "y"=8) diff --git a/code/modules/food/food/condiment.dm b/code/modules/food/food/condiment.dm index abf4f89b37..5b137957db 100644 --- a/code/modules/food/food/condiment.dm +++ b/code/modules/food/food/condiment.dm @@ -101,9 +101,9 @@ desc = "Often used to flavor food or make people sneeze." icon_state = "peppermillsmall" center_of_mass = list("x"=17, "y"=11) - if("cornoil") - name = "Corn Oil" - desc = "A delicious oil used in cooking. Made from corn." + if("cookingoil") + name = "Cooking Oil" + desc = "A delicious oil used in cooking. General purpose." icon_state = "oliveoil" center_of_mass = list("x"=16, "y"=6) if("sugar") @@ -175,6 +175,13 @@ . = ..() reagents.add_reagent("capsaicin", 50) +/obj/item/weapon/reagent_containers/food/condiment/cookingoil + name = "Cooking Oil" + +/obj/item/weapon/reagent_containers/food/condiment/cookingoil/Initialize() + . = ..() + reagents.add_reagent("cookingoil", 50) + /obj/item/weapon/reagent_containers/food/condiment/cornoil name = "Corn Oil" diff --git a/code/modules/food/food/drinks.dm b/code/modules/food/food/drinks.dm index 41217df94b..ca9dc49115 100644 --- a/code/modules/food/food/drinks.dm +++ b/code/modules/food/food/drinks.dm @@ -38,6 +38,9 @@ qdel(src) return +/obj/item/weapon/reagent_containers/food/drinks/on_rag_wipe(var/obj/item/weapon/reagent_containers/glass/rag/R) + clean_blood() + /obj/item/weapon/reagent_containers/food/drinks/attack_self(mob/user as mob) if(!is_open_container()) open(user) @@ -218,6 +221,21 @@ . = ..() reagents.add_reagent("tea", 30) +/obj/item/weapon/reagent_containers/food/drinks/decaf_tea + name = "cup of Count Mauve decaffeinated tea" + desc = "Why should bedtime stop you from enjoying a nice cuppa?" + description_fluff = "Count Mauve is a milder strain of NanoPasture's proprietary black tea, noted for its strong but otherwise completely non-distinctive flavour and total lack of caffeination." + icon_state = "chai_vended" + item_state = "coffee" + trash = /obj/item/trash/coffee + center_of_mass = list("x"=16, "y"=14) + drop_sound = 'sound/items/drop/papercup.ogg' + pickup_sound = 'sound/items/pickup/papercup.ogg' + +/obj/item/weapon/reagent_containers/food/drinks/decaf_tea/Initialize() + . = ..() + reagents.add_reagent("teadecaf", 30) + /obj/item/weapon/reagent_containers/food/drinks/ice name = "cup of ice" desc = "Careful, cold ice, do not chew." diff --git a/code/modules/food/food/drinks/bottle.dm b/code/modules/food/food/drinks/bottle.dm index 26775c90db..df16e4960b 100644 --- a/code/modules/food/food/drinks/bottle.dm +++ b/code/modules/food/food/drinks/bottle.dm @@ -466,9 +466,9 @@ //////////////////////////JUICES AND STUFF/////////////////////// -/obj/item/weapon/reagent_containers/food/drinks/bottle/cola //MODIFIED ON 04/21/2021 +/obj/item/weapon/reagent_containers/food/drinks/bottle/cola name = "\improper two-liter Space Cola" - desc = "Cola. In space." + desc = "Cola. In space. Contains caffeine." icon_state = "colabottle" center_of_mass = list("x"=16, "y"=6) @@ -476,7 +476,17 @@ . = ..() reagents.add_reagent("cola", 100) -/obj/item/weapon/reagent_containers/food/drinks/bottle/space_up //MODIFIED ON 04/21/2021 +/obj/item/weapon/reagent_containers/food/drinks/bottle/decaf_cola + name = "\improper two-liter Space Cola Free" + desc = "Cola. In space. Caffeine free." + icon_state = "decafcolabottle" + center_of_mass = list("x"=16, "y"=6) + +/obj/item/weapon/reagent_containers/food/drinks/bottle/decaf_cola/Initialize() + . = ..() + reagents.add_reagent("decafcola", 100) + +/obj/item/weapon/reagent_containers/food/drinks/bottle/space_up name = "\improper two-liter Space-Up" desc = "Tastes like a hull breach in your mouth." icon_state = "space-up_bottle" @@ -486,9 +496,9 @@ . = ..() reagents.add_reagent("space_up", 100) -/obj/item/weapon/reagent_containers/food/drinks/bottle/space_mountain_wind //MODIFIED ON 04/21/2021 +/obj/item/weapon/reagent_containers/food/drinks/bottle/space_mountain_wind name = "\improper two-liter Space Mountain Wind" - desc = "Blows right through you like a space wind." + desc = "Blows right through you like a space wind. Contains caffeine." icon_state = "space_mountain_wind_bottle" center_of_mass = list("x"=16, "y"=6) @@ -496,9 +506,9 @@ . = ..() reagents.add_reagent("spacemountainwind", 100) -/obj/item/weapon/reagent_containers/food/drinks/bottle/dr_gibb //ADDED ON 04/21/2021 +/obj/item/weapon/reagent_containers/food/drinks/bottle/dr_gibb name = "\improper two-liter Dr. Gibb" - desc = "A delicious mixture of 42 different flavors." + desc = "A delicious mixture of 42 different flavors. Contains caffeine." icon_state = "dr_gibb_bottle" center_of_mass = list("x"=16, "y"=6) diff --git a/code/modules/food/food/snacks.dm b/code/modules/food/food/snacks.dm index d92499f29b..a5cf92e706 100644 --- a/code/modules/food/food/snacks.dm +++ b/code/modules/food/food/snacks.dm @@ -7,6 +7,7 @@ center_of_mass = list("x"=16, "y"=16) w_class = ITEMSIZE_SMALL force = 0 + volume = 80 var/bitesize = 1 var/bitecount = 0 @@ -34,6 +35,11 @@ /// Packaged meals switch to this state when opened, if set var/package_open_state + /// If this is canned. If true, it will print a message and ask you to open it + var/canned = FALSE + /// Canned food switch to this state when opened, if set + var/canned_open_state + /obj/item/weapon/reagent_containers/food/snacks/Initialize() . = ..() if(nutriment_amt) @@ -63,6 +69,9 @@ if(package && !user.incapacitated()) unpackage(user) + if(canned && !user.incapacitated()) + uncan(user) + /obj/item/weapon/reagent_containers/food/snacks/attack(mob/living/M as mob, mob/user as mob, def_zone) if(reagents && !reagents.total_volume) to_chat(user, "None of [src] left!") @@ -74,6 +83,10 @@ to_chat(M, "How do you expect to eat this with the package still on?") return FALSE + if(canned) + to_chat(M, "How do you expect to eat this without opening it?") + return FALSE + if(istype(M, /mob/living/carbon)) //TODO: replace with standard_feed_mob() call. @@ -251,6 +264,13 @@ if(package_open_state) icon_state = package_open_state +/obj/item/weapon/reagent_containers/food/snacks/proc/uncan(mob/user) + canned = FALSE + to_chat(user, "You unseal \the [src] with a crack of metal.") + playsound(loc,'sound/effects/tincanopen.ogg', rand(10,50), 1) + if(canned_open_state) + icon_state = canned_open_state + //////////////////////////////////////////////////////////////////////////////// /// FOOD END //////////////////////////////////////////////////////////////////////////////// @@ -855,6 +875,20 @@ filling_color = "#2c2cff" color = "#2c2cff" +/obj/item/weapon/reagent_containers/food/snacks/crab_legs + name = "steamed crab legs" + desc = "Crab legs steamed and buttered to perfection. One day when the boss gets hungry..." + icon_state = "crablegs" + nutriment_amt = 2 + nutriment_desc = list("savory butter" = 2) + bitesize = 2 + trash = /obj/item/trash/plate + +/obj/item/weapon/reagent_containers/food/snacks/crab_legs/Initialize() + . = ..() + reagents.add_reagent("seafood", 6) + reagents.add_reagent("sodiumchloride", 1) + /obj/item/weapon/reagent_containers/food/snacks/fishfingers name = "Fish Fingers" desc = "A finger of fish." @@ -3313,7 +3347,7 @@ . = ..() reagents.add_reagent("blackpepper", 1) reagents.add_reagent("sodiumchloride", 1) - reagents.add_reagent("cornoil", 1) + reagents.add_reagent("cookingoil", 1) /obj/item/weapon/reagent_containers/food/snacks/turkeyslice name = "turkey drumstick" @@ -4192,10 +4226,12 @@ desc = "Musical fruit in a slightly less musical container." filling_color = "#FC6F28" icon_state = "bakedbeans" - nutriment_amt = 4 - nutriment_desc = list("beans" = 4) bitesize = 2 +/obj/item/weapon/reagent_containers/food/snacks/berrymuffin/berry/Initialize() + . = ..() + reagents.add_reagent("bean_protein", 6) + /obj/item/weapon/reagent_containers/food/snacks/sugarcookie name = "sugar cookie" desc = "Just like your little sister used to make." @@ -4912,7 +4948,7 @@ reagents.add_reagent("protein",5) /obj/item/weapon/reagent_containers/food/snacks/pineapple_ring - name = "pineapple ring" + name = "pineapple rings" desc = "So retro." icon_state = "pineapple_ring" nutriment_desc = list("sweetness" = 2) @@ -6102,6 +6138,7 @@ /obj/item/weapon/reagent_containers/food/snacks/cb06/Initialize() . = ..() reagents.add_reagent("sugar", 1) + reagents.add_reagent("coffee", 1) /obj/item/weapon/reagent_containers/food/snacks/cb07 name = "\improper TaroMilk Bar" @@ -6151,6 +6188,7 @@ . = ..() reagents.add_reagent("sugar", 1) reagents.add_reagent("milk", 1) + reagents.add_reagent("peanutoil", 1) /obj/item/weapon/reagent_containers/food/snacks/cb10 name = "\improper Shantak Bar" @@ -6168,6 +6206,7 @@ . = ..() reagents.add_reagent("sugar", 1) reagents.add_reagent("protein", 1) + reagents.add_reagent("peanutoil", 1) ////////////////////Misc Vend Items//////////////////////////////////////////////////////////////// @@ -6311,7 +6350,7 @@ desc = "Space squid tentacles, Carefully removed (from the squid) then dried into strips of delicious rubbery goodness!" trash = /obj/item/trash/squid filling_color = "#c0a9d7" - center_of_mass = list("x"=15, "y"=9) + center_of_mass = list ("x"=15, "y"=9) nutriment_desc = list("fish" = 1, "salt" = 1) nutriment_amt = 2 bitesize = 1 @@ -6327,7 +6366,7 @@ desc = "Fried bread cubes. Popular in Terran territories." trash = /obj/item/trash/croutons filling_color = "#c6b17f" - center_of_mass = list("x"=15, "y"=9) + center_of_mass = list ("x"=15, "y"=9) nutriment_desc = list("bread" = 1, "salt" = 1) nutriment_amt = 3 bitesize = 1 @@ -6339,7 +6378,7 @@ desc = "Pig fat. Salted. Just as good as it sounds." trash = /obj/item/trash/salo filling_color = "#e0bcbc" - center_of_mass = list("x"=15, "y"=9) + center_of_mass = list ("x"=15, "y"=9) nutriment_desc = list("fat" = 1, "salt" = 1) nutriment_amt = 2 bitesize = 2 @@ -6355,7 +6394,7 @@ desc = "Dried salted beer snack fish." trash = /obj/item/trash/driedfish filling_color = "#c8a5bb" - center_of_mass = list("x"=15, "y"=9) + center_of_mass = list ("x"=15, "y"=9) nutriment_desc = list("fish" = 1, "salt" = 1) nutriment_amt = 2 bitesize = 1 @@ -6662,7 +6701,7 @@ /obj/item/weapon/reagent_containers/food/snacks/old name = "master old-food" desc = "they're all inedible and potentially dangerous items" - center_of_mass = list("x"=15,"y"=12) + center_of_mass = list ("x"=15, "y"=9) nutriment_desc = list("rot" = 5, "mold" = 5) nutriment_amt = 10 bitesize = 3 @@ -6710,34 +6749,8 @@ //////////////////////Canned Foods - crack open and eat (ADDED 04/11/2021)////////////////////// /obj/item/weapon/reagent_containers/food/snacks/canned - name = "void can" icon = 'icons/obj/food_canned.dmi' - flags = 0 - var/sealed = TRUE - -/obj/item/weapon/reagent_containers/food/snacks/canned/Initialize() - . = ..() - if(!sealed) - unseal() - -/obj/item/weapon/reagent_containers/food/snacks/canned/examine(mob/user) - . = ..() - to_chat(user, "It is [sealed ? "" : "un"]sealed.") - -/obj/item/weapon/reagent_containers/food/snacks/canned/proc/unseal() - flags |= OPENCONTAINER - sealed = FALSE - update_icon() - -/obj/item/weapon/reagent_containers/food/snacks/canned/attack_self(var/mob/user) - if(sealed) - playsound(loc,'sound/effects/tincanopen.ogg', rand(10,50), 1) - to_chat(user, "You unseal \the [src] with a crack of metal.") - unseal() - -/obj/item/weapon/reagent_containers/food/snacks/canned/update_icon() - if(!sealed) - icon_state = "[initial(icon_state)]-open" + canned = TRUE //////////Just a short line of Canned Consumables, great for treasure in faraway abandoned outposts////////// @@ -6746,6 +6759,7 @@ icon_state = "beef" desc = "A can of premium preserved vat-grown holstein beef. Now 99.9% bone free!" trash = /obj/item/trash/beef + canned_open_state = "beef-open" filling_color = "#663300" center_of_mass = list("x"=15, "y"=9) nutriment_desc = list("beef" = 1) @@ -6754,54 +6768,54 @@ /obj/item/weapon/reagent_containers/food/snacks/canned/beef/Initialize() .=..() reagents.add_reagent("protein", 4) - reagents.add_reagent("sodiumchloride", 1) + reagents.add_reagent("sodiumchloride", 2) /obj/item/weapon/reagent_containers/food/snacks/canned/beans name = "baked beans" icon_state = "beans" desc = "Luna Colony beans. Carefully synthethized from soy." trash = /obj/item/trash/beans + canned_open_state = "beans-open" filling_color = "#ff6633" center_of_mass = list("x"=15, "y"=9) nutriment_desc = list("beans" = 1, "tomato sauce" = 1) - nutriment_amt = 15 bitesize = 2 -///obj/item/weapon/reagent_containers/food/snacks/canned/tomato (NEED TO SEE HOW TO CHANGE EATING SOUND) -// name = "tomato soup" -// icon_state = "tomato" -// desc = "Plain old unseasoned tomato soup. This can has no use-by date." -// trash = "/obj/item/trash/tomato" -// filling_color = "#ae0000" -// center_of_mass = list("x"=15, "y"=9) -// nutriment_desc = list("tomato" = 1) -// bitesize = 3 -// eat_sound = 'sound/items/drink.ogg' -// -///obj/item/weapon/reagent_containers/food/snacks/canned/tomato/Initialize() -// .=..() -// reagents.add_reagent(/datum/reagent/drink/juice/tomato, 12) -// -// -///obj/item/weapon/reagent_containers/food/snacks/canned/tomato/feed_sound(var/mob/user) -// playsound(user.loc, 'sound/items/drink.ogg', rand(10, 50), 1) +/obj/item/weapon/reagent_containers/food/snacks/canned/beans/Initialize() + .=..() + reagents.add_reagent("bean_protein", 5) + reagents.add_reagent("tomatojuice", 5) + +/obj/item/weapon/reagent_containers/food/snacks/canned/tomato + name = "tomato soup" + icon_state = "tomato" + desc = "Plain old unseasoned tomato soup. This can has no use-by date." + trash = /obj/item/trash/tomato + package_open_state = "tomato-open" + filling_color = "#ae0000" + center_of_mass = list("x"=15, "y"=9) + bitesize = 3 + +/obj/item/weapon/reagent_containers/food/snacks/canned/tomato/Initialize() + .=..() + reagents.add_reagent("tomatojuice", 12) /obj/item/weapon/reagent_containers/food/snacks/canned/spinach name = "spinach" icon_state = "spinach" desc = "Wup-Az! Brand canned spinach. Notably has less iron in it than a watermelon." trash = /obj/item/trash/spinach + canned_open_state = "spinach-open" filling_color = "#003300" center_of_mass = list("x"=15, "y"=9) - nutriment_amt = 5 nutriment_desc = list("soggy" = 1, "vegetable" = 1) - bitesize = 5 + bitesize = 3 /obj/item/weapon/reagent_containers/food/snacks/canned/spinach/Initialize() .=..() - reagents.add_reagent("adrenaline", 5) - reagents.add_reagent("hyperzine", 5) - reagents.add_reagent("iron", 5) + reagents.add_reagent("adrenaline", 4) + reagents.add_reagent("hyperzine", 4) + reagents.add_reagent("iron", 4) //////////////////////////////Advanced Canned Food////////////////////////////// @@ -6810,30 +6824,30 @@ icon_state = "fisheggs" desc = "Terran caviar, or space carp eggs. Carefully faked using alginate, artificial flavoring and salt. Skrell approved!" trash = /obj/item/trash/fishegg + canned_open_state = "fisheggs-open" filling_color = "#000000" center_of_mass = list("x"=15, "y"=9) - nutriment_desc = list("fish" = 1, "salt" = 1) - nutriment_amt = 6 + nutriment_desc = list("salt" = 1) bitesize = 1 -/obj/item/weapon/reagent_containers/food/snacks/caviar/Initialize() +/obj/item/weapon/reagent_containers/food/snacks/canned/caviar/Initialize() . = ..() - reagents.add_reagent("protein", 5) + reagents.add_reagent("seafood", 5) /obj/item/weapon/reagent_containers/food/snacks/canned/caviar/true name = "\improper Classic Terran Caviar" icon_state = "carpeggs" desc = "Terran caviar, or space carp eggs. Banned by the Vir Food Health Administration for exceeding the legally set amount of carpotoxins in food stuffs." trash = /obj/item/trash/carpegg + canned_open_state = "carpeggs-open" filling_color = "#330066" center_of_mass = list("x"=15, "y"=9) - nutriment_desc = list("fish" = 1, "salt" = 1, "a numbing sensation" = 1) - nutriment_amt = 6 + nutriment_desc = list("salt" = 1, "a numbing sensation" = 1) bitesize = 1 -/obj/item/weapon/reagent_containers/food/snacks/caviar/true/Initialize() +/obj/item/weapon/reagent_containers/food/snacks/canned/caviar/true/Initialize() . = ..() - reagents.add_reagent("protein", 4) + reagents.add_reagent("seafood", 4) reagents.add_reagent("carpotoxin", 1) /obj/item/weapon/reagent_containers/food/snacks/canned/maps @@ -6841,13 +6855,12 @@ icon_state = "maps" desc = "A re-branding of a classic Terran snack! Contains mostly edible ingredients." trash = /obj/item/trash/maps + canned_open_state = "maps-open" filling_color = "#330066" center_of_mass = list("x"=15, "y"=9) - nutriment_desc = list("meat" = 1, "salt" = 1) - nutriment_amt = 8 bitesize = 2 -/obj/item/weapon/reagent_containers/food/snacks/maps/Initialize() +/obj/item/weapon/reagent_containers/food/snacks/canned/maps/Initialize() . = ..() reagents.add_reagent("protein", 6) reagents.add_reagent("sodiumchloride", 2) @@ -6857,10 +6870,10 @@ icon_state = "appleberry" desc = "A classic snack favored by Sol astronauts. Made from dried apple-hybidized berries grown on the lunar colonies." trash = /obj/item/trash/appleberry + canned_open_state = "appleberry-open" filling_color = "#FFFFFF" center_of_mass = list("x"=15, "y"=9) nutriment_desc = list("apple" = 1, "sweetness" = 1) - nutriment_amt = 8 bitesize = 2 /obj/item/weapon/reagent_containers/food/snacks/appleberry/Initialize() @@ -6872,16 +6885,50 @@ icon_state = "ntbeans" desc = "Musical fruit in a slightly less musical container. Now with bacon!" trash = /obj/item/trash/ntbeans + canned_open_state = "ntbeans-open" filling_color = "#FC6F28" center_of_mass = list("x"=15, "y"=9) - nutriment_desc = list("beans" = 4) - nutriment_amt = 6 bitesize = 2 /obj/item/weapon/reagent_containers/food/snacks/canned/ntbeans/Initialize() . = ..() + reagents.add_reagent("bean_protein", 6) reagents.add_reagent("protein", 2) +/obj/item/weapon/reagent_containers/food/snacks/canned/brainzsnax + name = "\improper BrainzSnax" + icon_state = "brainzsnax" + desc = "A can of grey matter marketed for xenochimeras." + description_fluff = "As the cartoon brain with limbs proudly proclaims, \"It's meat. Eat it!\" On the can is printed \"Rich in limbic system\" and \ + under that in infinitely small letters, \"Warning, product must be eaten within two hours of opening. May contain prion disease. \ + GrubCo LTD is not liable for any brain damage occuring after consumption of product.\"" + trash = /obj/item/trash/brainzsnax + canned_open_state = "brainzsnax-open" + filling_color = "#caa3c9" + center_of_mass = list("x"=15, "y"=9) + bitesize = 2 + +/obj/item/weapon/reagent_containers/food/snacks/canned/brainzsnax/Initialize() + . = ..() + reagents.add_reagent("brain_protein", 10) + +/obj/item/weapon/reagent_containers/food/snacks/canned/brainzsnax/red + name = "\improper BrainzSnax RED" + icon_state = "brainzsnaxred" + desc = "A can of grey matter marketed for xenochimeras. This one has added tomato sauce." + description_fluff = "As the cartoonish brain with limbs proudly proclaims, \"It's meat. Eat it!\" On the can is printed \"Yummy red stuff!\" and \ + under that in infinitely small letters, \"Warning, product must be eaten within two hours of opening. May contain prion disease. \ + GrubCo LTD is not liable for any brain damage occuring after consumption of product.\"" + trash = /obj/item/trash/brainzsnaxred + canned_open_state = "brainzsnaxred-open" + filling_color = "#a6898d" + center_of_mass = list("x"=15, "y"=9) + bitesize = 2 + +/obj/item/weapon/reagent_containers/food/snacks/canned/brainzsnax/red/Initialize() + . = ..() + reagents.add_reagent("red_brain_protein", 10) + //////////////Packaged Food - break open and eat////////////// /obj/item/weapon/reagent_containers/food/snacks/packaged @@ -6973,7 +7020,7 @@ /obj/item/weapon/reagent_containers/food/snacks/packaged/meatration/Initialize() . = ..() - reagents.add_reagent("protein", 3) + reagents.add_reagent("protein", 4) /obj/item/weapon/reagent_containers/food/snacks/packaged/vegration name = "veggie ration" diff --git a/code/modules/food/food/snacks/meat.dm b/code/modules/food/food/snacks/meat.dm index c95ddd3d1d..e7a16f5364 100644 --- a/code/modules/food/food/snacks/meat.dm +++ b/code/modules/food/food/snacks/meat.dm @@ -44,16 +44,178 @@ //same as plain meat /obj/item/weapon/reagent_containers/food/snacks/meat/corgi - name = "Corgi meat" + name = "dogmeat" desc = "Tastes like... well, you know." /obj/item/weapon/reagent_containers/food/snacks/meat/chicken - name = "chicken" + name = "poultry" icon_state = "chickenbreast" cooked_icon = "chickensteak" filling_color = "#BBBBAA" /obj/item/weapon/reagent_containers/food/snacks/meat/chicken/Initialize() - . = ..() - reagents.remove_reagent("triglyceride", INFINITY) - //Chicken is low fat. Less total calories than other meats \ No newline at end of file + . = ..() + reagents.remove_reagent("triglyceride", INFINITY) + //Chicken is low fat. Less total calories than other meats + +/obj/item/weapon/reagent_containers/food/snacks/carpmeat + name = "fillet" + desc = "A fillet of carp meat" + icon_state = "fishfillet" + filling_color = "#FFDEFE" + center_of_mass = list("x"=17, "y"=13) + bitesize = 6 + + var/toxin_type = "carpotoxin" + var/toxin_amount = 3 + +/obj/item/weapon/reagent_containers/food/snacks/carpmeat/Initialize() + . = ..() + reagents.add_reagent("protein", 3) + reagents.add_reagent(toxin_type, toxin_amount) + +/obj/item/weapon/reagent_containers/food/snacks/carpmeat/sif + desc = "A fillet of sivian fish meat." + filling_color = "#2c2cff" + color = "#2c2cff" + toxin_type = "neurotoxic_protein" + toxin_amount = 2 + +/obj/item/weapon/reagent_containers/food/snacks/carpmeat/sif/murkfish + toxin_type = "murk_protein" + +/obj/item/weapon/reagent_containers/food/snacks/carpmeat/fish + desc = "A fillet of fish meat." + toxin_type = "neurotoxic_protein" + toxin_amount = 1 + +/obj/item/weapon/reagent_containers/food/snacks/crabmeat + name = "crustacean legs" + desc = "... Coffee? Is that you?" + icon_state = "crabmeat" + bitesize = 1 + +/obj/item/weapon/reagent_containers/food/snacks/crabmeat/Initialize() + . = ..() + reagents.add_reagent("seafood", 2) + +/obj/item/weapon/reagent_containers/food/snacks/hugemushroomslice + name = "fungus slice" + desc = "A slice from a huge mushroom." + icon_state = "hugemushroomslice" + filling_color = "#E0D7C5" + center_of_mass = list("x"=17, "y"=16) + nutriment_amt = 3 + nutriment_desc = list("raw" = 2, "mushroom" = 2) + bitesize = 6 + +/obj/item/weapon/reagent_containers/food/snacks/hugemushroomslice/Initialize() + . = ..() + reagents.add_reagent("psilocybin", 3) + +/obj/item/weapon/reagent_containers/food/snacks/tomatomeat + name = "tomato slice" + desc = "A slice from a huge tomato" + icon_state = "tomatomeat" + filling_color = "#DB0000" + center_of_mass = list("x"=17, "y"=16) + nutriment_amt = 3 + nutriment_desc = list("raw" = 2, "tomato" = 3) + bitesize = 6 + +/obj/item/weapon/reagent_containers/food/snacks/bearmeat + name = "bearmeat" + desc = "A very manly slab of meat." + icon_state = "bearmeat" + filling_color = "#DB0000" + center_of_mass = list("x"=16, "y"=10) + bitesize = 3 + +/obj/item/weapon/reagent_containers/food/snacks/bearmeat/Initialize() + . = ..() + reagents.add_reagent("protein", 12) + reagents.add_reagent("hyperzine", 5) + +/obj/item/weapon/reagent_containers/food/snacks/xenomeat + name = "xenomeat" + desc = "A slab of green meat. Smells like acid." + icon_state = "xenomeat" + filling_color = "#43DE18" + center_of_mass = list("x"=16, "y"=10) + bitesize = 6 + +/obj/item/weapon/reagent_containers/food/snacks/xenomeat/Initialize() + . = ..() + reagents.add_reagent("protein", 6) + reagents.add_reagent("pacid",6) + +/obj/item/weapon/reagent_containers/food/snacks/xenomeat/spidermeat // Substitute for recipes requiring xeno meat. + name = "insect meat" + desc = "A slab of green meat." + icon_state = "xenomeat" + filling_color = "#43DE18" + center_of_mass = list("x"=16, "y"=10) + bitesize = 6 + +/obj/item/weapon/reagent_containers/food/snacks/xenomeat/spidermeat/Initialize() + . = ..() + reagents.add_reagent("spidertoxin",6) + reagents.remove_reagent("pacid",6) + +/obj/item/weapon/reagent_containers/food/snacks/meat/fox + name = "foxmeat" + desc = "The fox doesn't say a goddamn thing, now." + +/obj/item/weapon/reagent_containers/food/snacks/meat/grubmeat + name = "grubmeat" + desc = "A slab of grub meat, it gives a gentle shock if you touch it" + icon = 'icons/obj/food.dmi' + icon_state = "grubmeat" + center_of_mass = list("x"=16, "y"=10) + +/obj/item/weapon/reagent_containers/food/snacks/meat/grubmeat/Initialize() + . = ..() + reagents.add_reagent("protein", 1) + reagents.add_reagent("shockchem", 6) + bitesize = 6 + +/obj/item/weapon/reagent_containers/food/snacks/meat/worm + name = "weird meat" + desc = "A chunk of pulsating meat." + icon_state = "wormmeat" + health = 180 + filling_color = "#551A8B" + center_of_mass = list("x"=16, "y"=14) + +/obj/item/weapon/reagent_containers/food/snacks/meat/worm/Initialize() + . = ..() + reagents.add_reagent("protein", 6) + reagents.add_reagent("phoron", 3) + reagents.add_reagent("myelamine", 3) + src.bitesize = 3 + +/obj/item/weapon/reagent_containers/food/snacks/meat/worm/attackby(obj/item/weapon/W as obj, mob/user as mob) + if(istype(W,/obj/item/weapon/material/knife)) + var/to_spawn = pickweight(/obj/random/junk = 30, + /obj/random/trash = 30, + /obj/random/maintenance/clean = 15, + /obj/random/tool = 15, + /obj/random/medical = 3, + /obj/random/bomb_supply = 7, + /obj/random/contraband = 3, + /obj/random/unidentified_medicine/old_medicine = 7, + /obj/item/weapon/strangerock = 3, + /obj/item/weapon/ore/phoron = 7, + /obj/random/handgun = 1, + /obj/random/toolbox = 4, + /obj/random/drinkbottle = 5 + ) + + new to_spawn(get_turf(src)) + + if(prob(20)) + user.visible_message("Something oozes out of \the [src] as it is cut.") + + to_chat(user, "You cut the tissue holding the chunks together.") + + ..() diff --git a/code/modules/food/food/snacks_vr.dm b/code/modules/food/food/snacks_vr.dm index 132bba78ec..dce6f234cf 100644 --- a/code/modules/food/food/snacks_vr.dm +++ b/code/modules/food/food/snacks_vr.dm @@ -161,19 +161,6 @@ reagents.add_reagent("protein", 4) bitesize = 2 -/obj/item/weapon/reagent_containers/food/snacks/meat/grubmeat - name = "grub meat" - desc = "A slab of grub meat, it gives a gentle shock if you touch it" - icon = 'icons/obj/food.dmi' - icon_state = "grubmeat" - center_of_mass = list("x"=16, "y"=10) - -/obj/item/weapon/reagent_containers/food/snacks/meat/grubmeat/Initialize() - . = ..() - reagents.add_reagent("protein", 1) - reagents.add_reagent("shockchem", 6) - bitesize = 6 - /obj/item/weapon/reagent_containers/food/snacks/bugball name = "bugball" desc = "A hard piece of chitin, don't chip a tooth!" @@ -773,3 +760,17 @@ . = ..() reagents.add_reagent("protein", 3) bitesize = 2 + +/obj/item/weapon/reagent_containers/food/snacks/donkpocket/ascended + name = "Donk-pocket EX" + desc = "This donk-pocket has seen things beyond comprehension of mortals. It survived because the fire inside it burned brighter than fire around it." + icon = 'icons/obj/food_vr.dmi' + icon_state = "donkpocket_ascended" + nutriment_amt = 5 + nutriment_desc = list("burning fires of radioactive hell" = 20) + heated_reagents = list("supermatter" = 1) + +/obj/item/weapon/reagent_containers/food/snacks/donkpocket/ascended/Initialize() + . = ..() + reagents.add_reagent("uranium", 3) + reagents.add_reagent("pyrotoxin", 3) \ No newline at end of file diff --git a/code/modules/food/kitchen/cooking_machines/container.dm b/code/modules/food/kitchen/cooking_machines/container.dm index 408835a4da..981a809fd4 100644 --- a/code/modules/food/kitchen/cooking_machines/container.dm +++ b/code/modules/food/kitchen/cooking_machines/container.dm @@ -11,7 +11,11 @@ var/list/insertable = list( /obj/item/weapon/reagent_containers/food/snacks, /obj/item/weapon/holder, - /obj/item/weapon/paper + /obj/item/weapon/paper, + /obj/item/clothing/head/wizard, + /obj/item/clothing/head/cakehat, + /obj/item/clothing/mask/gas/clown_hat, + /obj/item/clothing/head/beret ) /obj/item/weapon/reagent_containers/cooking_container/Initialize() diff --git a/code/modules/food/kitchen/cooking_machines/fryer.dm b/code/modules/food/kitchen/cooking_machines/fryer.dm index 6c2e0d9b71..bcaad4e693 100644 --- a/code/modules/food/kitchen/cooking_machines/fryer.dm +++ b/code/modules/food/kitchen/cooking_machines/fryer.dm @@ -13,13 +13,13 @@ appliancetype = FRYER active_power_usage = 12 KILOWATTS heating_power = 12 KILOWATTS - + light_y = 15 - + min_temp = 140 + T0C // Same as above, increasing this to just under 2x to make the % increase on efficiency not quite so painful as it would be at 80. optimal_temp = 400 + T0C // Increasing this to be 2x Oven to allow for a much higher/realistic frying temperatures. Doesn't really do anything but make heating the fryer take a bit longer. optimal_power = 0.95 // .35 higher than the default to give fryers faster cooking speed. - + idle_power_usage = 3.6 KILOWATTS // Power used to maintain temperature once it's heated. // Going with 25% of the active power. This is a somewhat arbitrary value. @@ -33,11 +33,11 @@ var/datum/reagents/oil var/optimal_oil = 9000 //90 litres of cooking oil - + /obj/machinery/appliance/cooker/fryer/Initialize() . = ..() fry_loop = new(list(src), FALSE) - + oil = new/datum/reagents(optimal_oil * 1.25, src) var/variance = rand()*0.15 // Fryer is always a little below full, but its usually negligible @@ -45,18 +45,18 @@ if(prob(20)) // Sometimes the fryer will start with much less than full oil, significantly impacting efficiency until filled variance = rand()*0.5 - oil.add_reagent("cornoil", optimal_oil*(1 - variance)) + oil.add_reagent("cookingoil", optimal_oil*(1 - variance)) /obj/machinery/appliance/cooker/fryer/Destroy() QDEL_NULL(fry_loop) QDEL_NULL(oil) return ..() - + /obj/machinery/appliance/cooker/fryer/examine(var/mob/user) . = ..() if(Adjacent(user)) to_chat(user, "Oil Level: [oil.total_volume]/[optimal_oil]") - + /obj/machinery/appliance/cooker/fryer/update_icon() // We add our own version of the proc to use the special fryer double-lights. cut_overlays() var/image/light @@ -69,7 +69,7 @@ light.pixel_x = light_x light.pixel_y = light_y add_overlay(light) - + /obj/machinery/appliance/cooker/fryer/heat_up() if (..()) //Set temperature of oil reagent @@ -102,7 +102,7 @@ cooking_power *= oil_efficiency - + /obj/machinery/appliance/cooker/fryer/update_icon() if(!stat) ..() @@ -119,7 +119,7 @@ if(fry_loop) fry_loop.stop(src) ..() - + //Fryer gradually infuses any cooked food with oil. Moar calories //This causes a slow drop in oil levels, encouraging refill after extended use /obj/machinery/appliance/cooker/fryer/do_cooking_tick(var/datum/cooking_item/CI) @@ -177,13 +177,13 @@ return // user.visible_message("\The [user] starts pushing \the [victim] into \the [src]!") - + //Removed delay on this action in favour of a cooldown after it //If you can lure someone close to the fryer and grab them then you deserve success. //And a delay on this kind of niche action just ensures it never happens //Cooldown ensures it can't be spammed to instakill someone user.setClickCooldown(DEFAULT_ATTACK_COOLDOWN*3) - + fry_loop.start(src) if(!do_mob(user, victim, 20)) @@ -239,9 +239,9 @@ //Coat the victim in some oil oil.trans_to(victim, 40) - + fry_loop.stop() - + /obj/machinery/appliance/cooker/fryer/attackby(var/obj/item/I, var/mob/user) if(istype(I, /obj/item/weapon/reagent_containers/glass) && I.reagents) if (I.reagents.total_volume <= 0 && oil) diff --git a/code/modules/food/kitchen/microwave.dm b/code/modules/food/kitchen/microwave.dm index e53749b22b..bab265f004 100644 --- a/code/modules/food/kitchen/microwave.dm +++ b/code/modules/food/kitchen/microwave.dm @@ -510,7 +510,7 @@ src.visible_message("The microwave gets covered in muck!") src.dirty = 100 // Make it dirty so it can't be used util cleaned src.flags = null //So you can't add condiments - src.icon_state = "mwbloody" // Make it look dirty too + src.icon_state = "mwbloody0" // Make it look dirty too src.operating = 0 // Turn it off again aferwards SStgui.update_uis(src) soundloop.stop() diff --git a/code/modules/food/kitchen/smartfridge/drying_rack.dm b/code/modules/food/kitchen/smartfridge/drying_rack.dm index c0ceea5289..346b59f2e4 100644 --- a/code/modules/food/kitchen/smartfridge/drying_rack.dm +++ b/code/modules/food/kitchen/smartfridge/drying_rack.dm @@ -60,7 +60,7 @@ for(var/obj/item/stack/wetleather/WL in I.instances) if(!WL.wetness) - if(WL.amount) + if(WL.get_amount()) WL.forceMove(get_turf(src)) WL.dry() I.instances -= WL diff --git a/code/modules/food/kitchen/smartfridge/engineering.dm b/code/modules/food/kitchen/smartfridge/engineering.dm index 94a40b9dc3..035af9aebb 100644 --- a/code/modules/food/kitchen/smartfridge/engineering.dm +++ b/code/modules/food/kitchen/smartfridge/engineering.dm @@ -18,9 +18,11 @@ if(amount < 1) return + count = min(count, amount) + while(count > 0) - var/obj/item/stack/S = I.get_product(get_turf(src), min(count, amount)) - count -= S.amount + var/obj/item/stack/S = I.get_product(get_turf(src), count) + count -= S.get_amount() SStgui.update_uis(src) /obj/machinery/smartfridge/sheets/find_record(var/obj/item/O) diff --git a/code/modules/food/kitchen/smartfridge/smartfridge.dm b/code/modules/food/kitchen/smartfridge/smartfridge.dm index 5e0f2e4284..f98da20f8c 100644 --- a/code/modules/food/kitchen/smartfridge/smartfridge.dm +++ b/code/modules/food/kitchen/smartfridge/smartfridge.dm @@ -112,6 +112,7 @@ user.remove_from_mob(O) stock(O) user.visible_message("[user] has added \the [O] to \the [src].", "You add \the [O] to \the [src].") + sortTim(item_records, /proc/cmp_stored_item_name) else if(istype(O, /obj/item/weapon/storage/bag)) var/obj/item/weapon/storage/bag/P = O diff --git a/code/modules/food/kitchen/smartfridge/smartfridge_vr.dm b/code/modules/food/kitchen/smartfridge/smartfridge_vr.dm index 1559e81f4f..8863448ca5 100644 --- a/code/modules/food/kitchen/smartfridge/smartfridge_vr.dm +++ b/code/modules/food/kitchen/smartfridge/smartfridge_vr.dm @@ -22,11 +22,34 @@ if(ismob(A.thrower)) var/mob/T = A.thrower thrower_id = T.GetIdCard() - + //98% chance the expert makes it if(expert_job && thrower_id && thrower_id.rank == expert_job && prob(98)) stock(A) - + //20% chance a non-expert makes it else if(prob(20)) stock(A) + +//Chemistry 'chemavator' +/obj/machinery/smartfridge/chemistry/chemvator + name = "\improper Smart Chemavator - Upper" + desc = "A refrigerated storage unit for medicine and chemical storage. Now sporting a fancy system of pulleys to lift bottles up and down." + var/obj/machinery/smartfridge/chemistry/chemvator/attached + +/obj/machinery/smartfridge/chemistry/chemvator/down/Destroy() + attached = null + return ..() + +/obj/machinery/smartfridge/chemistry/chemvator/down + name = "\improper Smart Chemavator - Lower" + +/obj/machinery/smartfridge/chemistry/chemvator/down/Initialize() + . = ..() + var/obj/machinery/smartfridge/chemistry/chemvator/above = locate(/obj/machinery/smartfridge/chemistry/chemvator,get_zstep(src,UP)) + if(istype(above)) + above.attached = src + attached = above + item_records = attached.item_records + else + to_chat(world,"[src] at [x],[y],[z] cannot find the unit above it!") diff --git a/code/modules/food/recipes_microwave.dm b/code/modules/food/recipes_microwave.dm index 95260876f4..34f4146159 100644 --- a/code/modules/food/recipes_microwave.dm +++ b/code/modules/food/recipes_microwave.dm @@ -339,7 +339,7 @@ I said no! result = /obj/item/weapon/reagent_containers/food/snacks/caramelapple /datum/recipe/twobread - reagents = list("wine" = 5) + reagents = list("redwine" = 5) items = list( /obj/item/weapon/reagent_containers/food/snacks/slice/bread, /obj/item/weapon/reagent_containers/food/snacks/slice/bread, @@ -522,13 +522,20 @@ I said no! ) result = /obj/item/weapon/reagent_containers/food/snacks/cutlet -/datum/recipe/roastedsunflowerseeds +/datum/recipe/roastedcornsunflowerseeds reagents = list("sodiumchloride" = 1, "cornoil" = 1) items = list( /obj/item/weapon/reagent_containers/food/snacks/rawsunflower ) result = /obj/item/weapon/reagent_containers/food/snacks/roastedsunflower +/datum/recipe/roastedsunflowerseeds + reagents = list("sodiumchloride" = 1, "cookingoil" = 1) + items = list( + /obj/item/weapon/reagent_containers/food/snacks/rawsunflower + ) + result = /obj/item/weapon/reagent_containers/food/snacks/roastedsunflower + /datum/recipe/roastedpeanutsunflowerseeds reagents = list("sodiumchloride" = 1, "peanutoil" = 1) items = list( @@ -537,10 +544,20 @@ I said no! result = /obj/item/weapon/reagent_containers/food/snacks/roastedsunflower /datum/recipe/roastedpeanuts + fruit = list("peanut" = 2) + reagents = list("sodiumchloride" = 2, "cookingoil" = 1) + result = /obj/item/weapon/reagent_containers/food/snacks/roastedpeanuts + +/datum/recipe/roastedpeanutscorn fruit = list("peanut" = 2) reagents = list("sodiumchloride" = 2, "cornoil" = 1) result = /obj/item/weapon/reagent_containers/food/snacks/roastedpeanuts +/datum/recipe/roastedpeanutspeanut + fruit = list("peanut" = 2) + reagents = list("sodiumchloride" = 2, "peanutoil" = 1) + result = /obj/item/weapon/reagent_containers/food/snacks/roastedpeanuts + /datum/recipe/mint reagents = list("sugar" = 5, "frostoil" = 5) result = /obj/item/weapon/reagent_containers/food/snacks/mint @@ -796,7 +813,7 @@ I said no! result = /obj/item/weapon/reagent_containers/food/snacks/chilicheesefries /datum/recipe/risotto - reagents = list("wine" = 5, "rice" = 10, "spacespice" = 1) + reagents = list("redwine" = 5, "rice" = 10, "spacespice" = 1) fruit = list("mushroom" = 1) reagent_mix = RECIPE_REAGENT_REPLACE //Get that rice and wine outta here result = /obj/item/weapon/reagent_containers/food/snacks/risotto diff --git a/code/modules/gamemaster/event2/events/everyone/infestation.dm b/code/modules/gamemaster/event2/events/everyone/infestation.dm index f51456f362..512679d2fc 100644 --- a/code/modules/gamemaster/event2/events/everyone/infestation.dm +++ b/code/modules/gamemaster/event2/events/everyone/infestation.dm @@ -31,6 +31,7 @@ things_to_spawn = list( /mob/living/simple_mob/animal/passive/mouse/gray, /mob/living/simple_mob/animal/passive/mouse/brown, + /mob/living/simple_mob/animal/passive/mouse/black, /mob/living/simple_mob/animal/passive/mouse/white, /mob/living/simple_mob/animal/passive/mouse/rat ) diff --git a/code/modules/games/cah_black_cards.dm b/code/modules/games/cah_black_cards.dm index 0bc5cc6d0f..c2c32b9948 100644 --- a/code/modules/games/cah_black_cards.dm +++ b/code/modules/games/cah_black_cards.dm @@ -1,4 +1,6 @@ -// Black cards. +/* + * Black CAH cards + */ /obj/item/weapon/deck/cah/black/card_text_list = list( "Why am I itchy?", "Today, Security shot ____.", diff --git a/code/modules/games/cah_white_cards.dm b/code/modules/games/cah_white_cards.dm index 5c8e592b7e..3ab0df883a 100644 --- a/code/modules/games/cah_white_cards.dm +++ b/code/modules/games/cah_white_cards.dm @@ -1,4 +1,6 @@ -// White cards. +/* + * White CAH cards + */ /obj/item/weapon/deck/cah/var/list/card_text_list = list( "Those motherfucking carp", "Having sex in the maintenance tunnels", diff --git a/code/modules/games/cardemon.dm b/code/modules/games/cardemon.dm index a99e656add..0345cf0d18 100644 --- a/code/modules/games/cardemon.dm +++ b/code/modules/games/cardemon.dm @@ -1,3 +1,6 @@ +/* + * Cardmon trading card game + */ /obj/item/weapon/pack/cardemon name = "cardemon booster pack" desc = "Finally! A children's card game in space!" diff --git a/code/modules/games/spaceball_cards.dm b/code/modules/games/spaceball_cards.dm index d9c932908c..48c5407759 100644 --- a/code/modules/games/spaceball_cards.dm +++ b/code/modules/games/spaceball_cards.dm @@ -1,3 +1,6 @@ +/* + * Spaceball collectable cards + */ /obj/item/weapon/pack/spaceball name = "spaceball booster pack" desc = "Officially licensed to take your money." diff --git a/code/modules/games/tarot.dm b/code/modules/games/tarot.dm index 7c49f7ec43..df5fb73b23 100644 --- a/code/modules/games/tarot.dm +++ b/code/modules/games/tarot.dm @@ -1,6 +1,6 @@ -/* this is a playing card deck based off of the Rider-Waite Tarot Deck. -*/ - +/* + * This is a playing card deck based off of the Rider-Waite Tarot Deck. + */ /obj/item/weapon/deck/tarot name = "deck of tarot cards" desc = "For all your occult needs!" diff --git a/code/modules/games/wizoff.dm b/code/modules/games/wizoff.dm new file mode 100644 index 0000000000..11cf179735 --- /dev/null +++ b/code/modules/games/wizoff.dm @@ -0,0 +1,57 @@ +/* It's Wiz-Off, the wizard themed card game! + * Each player draws 5 cards. There are five rounds. Each round, + * a player selects a card to play, and the winner is selected + * based on the following rules: + * -Defensive (D) beats Offensive (O)! + * -Offensive (O) beats Utility (U)! + * -Utility (U) beats Defensive (D)! + * -If both players play the same type of spell, the higher number wins! + * The player who wins the most of the 5 rounds wins the game! + * Now get ready to battle for the fate of the universe: Wiz-Off! + */ + +/obj/item/weapon/deck/wizoff + name = "\improper Wiz-Off deck" + desc = "A Wiz-Off deck. Fight an arcane battle for the fate of the universe: Draw 5! Play 5! Best of 5!" + icon_state = "wizoff" + +/obj/item/weapon/deck/wizoff/New() + ..() + var/datum/playingcard/P + for(var/cardtext in card_wiz_list) + P = new() + P.name = "[cardtext]" + P.card_icon = "[icon_state]_card" + P.back_icon = "[icon_state]_card_back" + cards += P + +/obj/item/weapon/deck/wizoff/var/list/card_wiz_list = list( + "O1: Spell Cards", + "O2: Summon Bees", + "O3: Polymorph", + "O4: Tesla Blast", + "O5: Rod Form", + "O6: Mutate", + "O7: Fireball", + "O8: Mjolnir", + "O9: Smite", + "D1: Smoke", + "D2: Battlemage Armor", + "D3: Repulse", + "D4: Magic Missile", + "D5: Disable Technology", + "D6: Spell Trap", + "D7: Forcewall", + "D8: Arcane Heal", + "D9: Stop Time", + "U1: Shapechange", + "U2: Spacetime Distortion", + "U3: Scrying Orb", + "U4: Blink", + "U5: Knock", + "U6: Teleport", + "U7: Bind Soul", + "U8: Warp Whistle", + "U9: Jaunt" + ) + diff --git a/code/modules/holodeck/HolodeckControl.dm b/code/modules/holodeck/HolodeckControl.dm index 8a9e0c2dda..309971d5e2 100644 --- a/code/modules/holodeck/HolodeckControl.dm +++ b/code/modules/holodeck/HolodeckControl.dm @@ -64,6 +64,9 @@ "Courtroom" = new/datum/holodeck_program(/area/holodeck/source_courtroom, list('sound/music/traitor.ogg')), "Chessboard" = new/datum/holodeck_program(/area/holodeck/source_chess), "Micro Building Area" = new/datum/holodeck_program(/area/holodeck/source_smoleworld), //VOREStation add + "Gym" = new/datum/holodeck_program(/area/holodeck/source_gym), //VOREStation add + "Game Room" = new/datum/holodeck_program(/area/holodeck/source_game_room), //VOREStation add + "Patient Ward" = new/datum/holodeck_program(/area/holodeck/source_patient_ward), //VOREStation add "Turn Off" = new/datum/holodeck_program(/area/holodeck/source_plating, list()) ) @@ -329,6 +332,12 @@ linkedholodeck.sound_env = A.sound_env + if(prog == powerdown_program) + linkedholodeck.requires_power = TRUE + else + linkedholodeck.requires_power = FALSE + linkedholodeck.power_change() + spawn(30) for(var/obj/effect/landmark/L in linkedholodeck) if(L.name=="Atmospheric Test Start") diff --git a/code/modules/holodeck/HolodeckObjects.dm b/code/modules/holodeck/HolodeckObjects.dm index 99cca32d4c..ee7060dfd8 100644 --- a/code/modules/holodeck/HolodeckObjects.dm +++ b/code/modules/holodeck/HolodeckObjects.dm @@ -358,7 +358,7 @@ //BASKETBALL OBJECTS /obj/item/weapon/beach_ball/holoball - icon = 'icons/obj/basketball.dmi' + icon = 'icons/obj/balls_vr.dmi' icon_state = "basketball" name = "basketball" desc = "Here's your chance, do your dance at the Space Jam." @@ -370,7 +370,7 @@ /obj/structure/holohoop name = "basketball hoop" desc = "Boom, Shakalaka!" - icon = 'icons/obj/basketball.dmi' + icon = 'icons/obj/32x64.dmi' icon_state = "hoop" anchored = TRUE density = TRUE @@ -406,7 +406,6 @@ return FALSE return ..() - /obj/machinery/readybutton name = "Ready Declaration Device" desc = "This device is used to declare ready. If all devices in an area are ready, the event will begin!" diff --git a/code/modules/hydroponics/grown.dm b/code/modules/hydroponics/grown.dm index 24c5ca9b46..bc2bfaffb8 100644 --- a/code/modules/hydroponics/grown.dm +++ b/code/modules/hydroponics/grown.dm @@ -88,11 +88,11 @@ descriptors |= "radioactive" if(reagents.has_reagent("amatoxin") || reagents.has_reagent("toxin")) descriptors |= "poisonous" - if(reagents.has_reagent("psilocybin") || reagents.has_reagent("space_drugs")) + if(reagents.has_reagent("psilocybin") || reagents.has_reagent("space_drugs") || reagents.has_reagent("earthsblood")) descriptors |= "hallucinogenic" - if(reagents.has_reagent("bicaridine")) + if(reagents.has_reagent("bicaridine") || reagents.has_reagent("earthsblood")) descriptors |= "medicinal" - if(reagents.has_reagent("gold")) + if(reagents.has_reagent("gold") || reagents.has_reagent("earthsblood")) descriptors |= "shiny" if(reagents.has_reagent("lube")) descriptors |= "slippery" @@ -181,7 +181,7 @@ var/obj/item/weapon/cell/potato/pocell = new /obj/item/weapon/cell/potato(get_turf(user)) if(src.loc == user && istype(user,/mob/living/carbon/human)) user.put_in_hands(pocell) - pocell.maxcharge = src.potency * 10 + pocell.maxcharge = src.potency * 200 pocell.charge = pocell.maxcharge qdel(src) return @@ -205,12 +205,12 @@ var/obj/item/stack/material/wood/NG = new (user.loc) if(flesh_colour) NG.color = flesh_colour for (var/obj/item/stack/material/wood/G in user.loc) - if(G==NG) + if(G == NG) continue - if(G.amount>=G.max_amount) + if(G.get_amount() >= G.max_amount) continue G.attackby(NG, user) - to_chat(user, "You add the newly-formed wood to the stack. It now contains [NG.amount] planks.") + to_chat(user, "You add the newly-formed wood to the stack. It now contains [NG.get_amount()] planks.") qdel(src) return @@ -297,12 +297,26 @@ var/obj/item/stack/tile/grass/G = new (user.loc) if(flesh_colour) G.color = flesh_colour for (var/obj/item/stack/tile/grass/NG in user.loc) - if(G==NG) + if(G == NG) continue - if(NG.amount>=NG.max_amount) + if(NG.get_amount() >= NG.max_amount) continue NG.attackby(G, user) - to_chat(user, "You add the newly-formed grass to the stack. It now contains [G.amount] tiles.") + to_chat(user, "You add the newly-formed grass to the stack. It now contains [G.get_amount()] tiles.") + qdel(src) + return + + if(seed.kitchen_tag == "carpet") + user.show_message("You shape some carpet squares out of \the [src] fibers!", 1) + for(var/i=0,i<2,i++) + var/obj/item/stack/tile/carpet/G = new (user.loc) + for (var/obj/item/stack/tile/carpet/NG in user.loc) + if(G == NG) + continue + if(NG.get_amount() >= NG.max_amount) + continue + NG.attackby(G, user) + to_chat(user, "You add the newly-formed carpet to the stack. It now contains [G.get_amount()] tiles.") qdel(src) return diff --git a/code/modules/hydroponics/seed.dm b/code/modules/hydroponics/seed.dm index 0446895fc4..655aa012a0 100644 --- a/code/modules/hydroponics/seed.dm +++ b/code/modules/hydroponics/seed.dm @@ -190,7 +190,12 @@ var/clr if(get_trait(TRAIT_BIOLUM_COLOUR)) clr = get_trait(TRAIT_BIOLUM_COLOUR) - splat.set_light(get_trait(TRAIT_BIOLUM), l_color = clr) + //VOREStation Edit Start - Tons of super bright super long range lights everywhere is annoying and laggy, so let's limit it a bit. + var/blight = get_trait(TRAIT_BIOLUM) + if(blight >= 5) + blight = 5 + splat.set_light(blight, 0.5, l_color = clr) + //VOREStation Edit End var/flesh_colour = get_trait(TRAIT_FLESH_COLOUR) if(!flesh_colour) flesh_colour = get_trait(TRAIT_PRODUCT_COLOUR) if(flesh_colour) splat.color = get_trait(TRAIT_PRODUCT_COLOUR) @@ -737,9 +742,9 @@ if(GENE_BIOCHEMISTRY) P.values["[TRAIT_CHEMS]"] = chems P.values["[TRAIT_EXUDE_GASSES]"] = exude_gasses - traits_to_copy = list(TRAIT_POTENCY, TRAIT_SPORING, TRAIT_BENEFICIAL_REAG, TRAIT_MUTAGENIC_REAG, TRAIT_TOXIC_REAG) + traits_to_copy = list(TRAIT_POTENCY, TRAIT_BENEFICIAL_REAG, TRAIT_MUTAGENIC_REAG, TRAIT_TOXIC_REAG) if(GENE_OUTPUT) - traits_to_copy = list(TRAIT_PRODUCES_POWER,TRAIT_BIOLUM) + traits_to_copy = list(TRAIT_PRODUCES_POWER,TRAIT_BIOLUM,TRAIT_SPORING) if(GENE_ATMOSPHERE) traits_to_copy = list(TRAIT_HEAT_TOLERANCE,TRAIT_LOWKPA_TOLERANCE,TRAIT_HIGHKPA_TOLERANCE) if(GENE_HARDINESS) @@ -836,8 +841,12 @@ var/clr if(get_trait(TRAIT_BIOLUM_COLOUR)) clr = get_trait(TRAIT_BIOLUM_COLOUR) - product.set_light(get_trait(TRAIT_BIOLUM), l_color = clr) - + //VOREStation Edit Start - Tons of super bright super long range lights everywhere is annoying and laggy, so let's limit it a bit. + var/blight = get_trait(TRAIT_BIOLUM) + if(blight >= 5) + blight = 5 + product.set_light(blight, 0.5, l_color = clr) + //VOREStation Edit End if(get_trait(TRAIT_STINGS)) product.force = 1 diff --git a/code/modules/hydroponics/seed_packets.dm b/code/modules/hydroponics/seed_packets.dm index c228617712..4a08f897da 100644 --- a/code/modules/hydroponics/seed_packets.dm +++ b/code/modules/hydroponics/seed_packets.dm @@ -88,6 +88,9 @@ GLOBAL_LIST_BOILERPLATE(all_seed_packs, /obj/item/seeds) /obj/item/seeds/chiliseed seed_type = "chili" +/obj/item/seeds/ghostchiliseed + seed_type = "ghostchili" + /obj/item/seeds/plastiseed seed_type = "plastic" @@ -229,6 +232,9 @@ GLOBAL_LIST_BOILERPLATE(all_seed_packs, /obj/item/seeds) /obj/item/seeds/ambrosiadeusseed seed_type = "ambrosiadeus" +/obj/item/seeds/ambrosiagaiaseed + seed_type = "ambrosiagaia" + /obj/item/seeds/ambrosiainfernusseed seed_type = "ambrosiainfernus" @@ -265,6 +271,9 @@ GLOBAL_LIST_BOILERPLATE(all_seed_packs, /obj/item/seeds) /obj/item/seeds/grassseed seed_type = "grass" +/obj/item/seeds/carpetseed + seed_type = "carpet" + /obj/item/seeds/cocoapodseed seed_type = "cocoa" diff --git a/code/modules/hydroponics/seed_storage.dm b/code/modules/hydroponics/seed_storage.dm index 3ff2e48174..e1d1fafd11 100644 --- a/code/modules/hydroponics/seed_storage.dm +++ b/code/modules/hydroponics/seed_storage.dm @@ -43,41 +43,46 @@ ..() wires = new(src) if(!contraband_seeds.len) - contraband_seeds = pick(list( - list( - /obj/item/seeds/ambrosiavulgarisseed = 3, - /obj/item/seeds/greengrapeseed = 3, - /obj/item/seeds/reishimycelium = 2, - /obj/item/seeds/bloodtomatoseed = 1 - ), - list( - /obj/item/seeds/ambrosiavulgarisseed = 3, - /obj/item/seeds/plastiseed = 3, - /obj/item/seeds/kudzuseed = 2, - /obj/item/seeds/rose/blood = 1 - ), - list( - /obj/item/seeds/ambrosiavulgarisseed = 3, - /obj/item/seeds/amanitamycelium = 3, - /obj/item/seeds/libertymycelium = 2, - /obj/item/seeds/glowshroom = 1 - ), - list( - /obj/item/seeds/ambrosiavulgarisseed = 3, - /obj/item/seeds/glowberryseed = 3, - /obj/item/seeds/icepepperseed = 2, - /obj/item/seeds/bluetomatoseed = 1 - ), - list( - /obj/item/seeds/durian = 2, - /obj/item/seeds/ambrosiadeusseed = 1, - /obj/item/seeds/killertomatoseed = 1 - ), - list( - /obj/item/seeds/ambrosiavulgarisseed = 3, - /obj/item/seeds/random = 6 - ) - )) + contraband_seeds = pick( /// Some form of ambrosia in all lists. + prob(30);list( /// General produce + /obj/item/seeds/ambrosiavulgarisseed = 3, + /obj/item/seeds/greengrapeseed = 3, + /obj/item/seeds/icepepperseed = 2, + /obj/item/seeds/kudzuseed = 1 + ), + prob(30);list( ///Mushroom batch + /obj/item/seeds/ambrosiavulgarisseed = 1, + /obj/item/seeds/glowberryseed = 2, + /obj/item/seeds/libertymycelium = 1, + /obj/item/seeds/reishimycelium = 2, + /obj/item/seeds/sporemycelium = 1 + ), + prob(15);list( /// Survivalist + /obj/item/seeds/ambrosiadeusseed = 2, + /obj/item/seeds/redtowermycelium = 2, + /obj/item/seeds/vale = 2, + /obj/item/seeds/siflettuce = 2 + ), + prob(20);list( /// Cold plants + /obj/item/seeds/ambrosiavulgarisseed = 2, + /obj/item/seeds/thaadra = 2, + /obj/item/seeds/icepepperseed = 2, + /obj/item/seeds/siflettuce = 1 + ), + prob(10);list( ///Poison party + /obj/item/seeds/ambrosiavulgarisseed = 3, + /obj/item/seeds/surik = 1, + /obj/item/seeds/telriis = 1, + /obj/item/seeds/nettleseed = 2, + /obj/item/seeds/poisonberryseed = 1 + ), + prob(5);list( /// Extra poison party! + /obj/item/seeds/ambrosiainfernusseed = 1, + /obj/item/seeds/amauri = 1, + /obj/item/seeds/surik = 1, + /obj/item/seeds/deathberryseed = 1 /// Very ow. + ) + ) return /obj/machinery/seed_storage/process() diff --git a/code/modules/hydroponics/seedtypes/ambrosia.dm b/code/modules/hydroponics/seedtypes/ambrosia.dm index 535d5129a3..6a6dda8a14 100644 --- a/code/modules/hydroponics/seedtypes/ambrosia.dm +++ b/code/modules/hydroponics/seedtypes/ambrosia.dm @@ -24,7 +24,7 @@ seed_name = "ambrosia deus" display_name = "ambrosia deus" kitchen_tag = "ambrosiadeus" - mutants = list("ambrosiainfernus") + mutants = list("ambrosiainfernus", "ambrosiagaia") chems = list("nutriment" = list(1), "bicaridine" = list(1,8), "synaptizine" = list(1,8,1), "hyperzine" = list(1,10,1), "space_drugs" = list(1,10)) /datum/seed/ambrosia/deus/New() @@ -43,4 +43,26 @@ /datum/seed/ambrosia/infernus/New() ..() set_trait(TRAIT_PRODUCT_COLOUR,"#dc143c") - set_trait(TRAIT_PLANT_COLOUR,"#b22222") \ No newline at end of file + set_trait(TRAIT_PLANT_COLOUR,"#b22222") + +/datum/seed/ambrosia/gaia + name = "ambrosiagaia" + seed_name = "ambrosia gaia" + display_name = "ambrosia gaia" + kitchen_tag = "ambrosiagaia" + mutants = null + chems = list ("earthsblood" = list(3,5), "nutriment" = list(1,3)) + +/datum/seed/ambrosia/gaia/New() + ..() + set_trait(TRAIT_HARVEST_REPEAT,0) + set_trait(TRAIT_MATURATION,10) + set_trait(TRAIT_WATER_CONSUMPTION,6) + set_trait(TRAIT_NUTRIENT_CONSUMPTION,6) + set_trait(TRAIT_WEED_TOLERANCE,1) + set_trait(TRAIT_TOXINS_TOLERANCE,1) + set_trait(TRAIT_PEST_TOLERANCE,1) + set_trait(TRAIT_BIOLUM,1) + set_trait(TRAIT_BIOLUM_COLOUR,"#ffb500") + set_trait(TRAIT_PRODUCT_COLOUR, "#ffee00") + set_trait(TRAIT_PLANT_COLOUR,"#f3ba2b") \ No newline at end of file diff --git a/code/modules/hydroponics/seedtypes/chili.dm b/code/modules/hydroponics/seedtypes/chili.dm index bee50a48bc..8a93d5b786 100644 --- a/code/modules/hydroponics/seedtypes/chili.dm +++ b/code/modules/hydroponics/seedtypes/chili.dm @@ -5,7 +5,7 @@ display_name = "chili plants" kitchen_tag = "chili" chems = list("capsaicin" = list(3,5), "nutriment" = list(1,25)) - mutants = list("icechili") + mutants = list("icechili", "ghostchili") /datum/seed/chili/New() ..() @@ -32,4 +32,18 @@ ..() set_trait(TRAIT_MATURATION,4) set_trait(TRAIT_PRODUCTION,4) - set_trait(TRAIT_PRODUCT_COLOUR,"#00EDC6") \ No newline at end of file + set_trait(TRAIT_PRODUCT_COLOUR,"#00EDC6") + +/datum/seed/chili/ghost + name = "ghostchili" + seed_name = "ghost chili" + display_name = "ghost chili plants" + kitchen_tag = "ghostchili" + mutants = null + chems = list("condensedcapsaicin" = list (3,10), "nutriment" = list (1,25)) + +/datum/seed/chili/ghost/New() + ..() + set_trait(TRAIT_MATURATION,6) + set_trait(TRAIT_PRODUCTION,3) + set_trait(TRAIT_PRODUCT_COLOUR,"#eaecec") \ No newline at end of file diff --git a/code/modules/hydroponics/seedtypes/grass.dm b/code/modules/hydroponics/seedtypes/grass.dm index 0a94f9707f..d8629a00ae 100644 --- a/code/modules/hydroponics/seedtypes/grass.dm +++ b/code/modules/hydroponics/seedtypes/grass.dm @@ -3,6 +3,7 @@ seed_name = "grass" display_name = "grass" kitchen_tag = "grass" + mutants = list("carpet") chems = list("nutriment" = list(1,20)) /datum/seed/grass/New() @@ -16,4 +17,20 @@ set_trait(TRAIT_PLANT_COLOUR,"#07D900") set_trait(TRAIT_PLANT_ICON,"grass") set_trait(TRAIT_WATER_CONSUMPTION, 0.5) - set_trait(TRAIT_NUTRIENT_CONSUMPTION, 0.15) \ No newline at end of file + set_trait(TRAIT_NUTRIENT_CONSUMPTION, 0.15) + +/datum/seed/grass/carpet + name = "carpet" + seed_name = "carpet" + display_name = "carpet" + kitchen_tag = "carpet" + mutants = null + chems = list("nutiment" = list(1,10)) + +/datum/seed/grass/carpet/New() + ..() + set_trait(TRAIT_YIELD,7) + set_trait(TRAIT_PRODUCT_ICON,"grass") + set_trait(TRAIT_PRODUCT_COLOUR,"#9e2500") + set_trait(TRAIT_PLANT_COLOUR,"#ee4401") + set_trait(TRAIT_PLANT_ICON,"grass") \ No newline at end of file diff --git a/code/modules/hydroponics/spreading/spreading.dm b/code/modules/hydroponics/spreading/spreading.dm index e55bb448bd..e820af130e 100644 --- a/code/modules/hydroponics/spreading/spreading.dm +++ b/code/modules/hydroponics/spreading/spreading.dm @@ -3,15 +3,8 @@ /proc/spacevine_infestation(var/potency_min=70, var/potency_max=100, var/maturation_min=5, var/maturation_max=15) spawn() //to stop the secrets panel hanging - var/list/turf/simulated/floor/turfs = list() //list of all the empty floor turfs in the hallway areas - for(var/areapath in typesof(/area/hallway)) - var/area/A = locate(areapath) - for(var/turf/simulated/floor/F in A.contents) - if(!F.check_density()) - turfs += F - - if(turfs.len) //Pick a turf to spawn at if we can - var/turf/simulated/floor/T = pick(turfs) + if(vinestart.len) //Pick a turf to spawn at if we can + var/turf/simulated/floor/T = pick(vinestart) var/datum/seed/seed = SSplants.create_random_seed(1) seed.set_trait(TRAIT_SPREAD,2) // So it will function properly as vines. seed.set_trait(TRAIT_POTENCY,rand(potency_min, potency_max)) // 70-100 potency will help guarantee a wide spread and powerful effects. @@ -84,6 +77,10 @@ spread_chance = 0 /obj/effect/plant/New(var/newloc, var/datum/seed/newseed, var/obj/effect/plant/newparent) + //VOREStation Edit Start + if(istype(loc, /turf/simulated/open)) + qdel(src) + //VOREStation Edit End ..() if(!newparent) @@ -166,7 +163,12 @@ var/clr if(seed.get_trait(TRAIT_BIOLUM_COLOUR)) clr = seed.get_trait(TRAIT_BIOLUM_COLOUR) - set_light(1+round(seed.get_trait(TRAIT_POTENCY)/20), l_color = clr) + //VOREStation Edit Start - Tons of super bright super long range lights everywhere is annoying and laggy, so let's limit it a bit. + var/blight = 1+round(seed.get_trait(TRAIT_POTENCY)/20) + if(blight >= 5) + blight = 5 + set_light(blight, 0.5, l_color = clr) + //VOREStation Edit End return else set_light(0) diff --git a/code/modules/hydroponics/spreading/spreading_growth.dm b/code/modules/hydroponics/spreading/spreading_growth.dm index eebcbc9389..f85209884b 100644 --- a/code/modules/hydroponics/spreading/spreading_growth.dm +++ b/code/modules/hydroponics/spreading/spreading_growth.dm @@ -4,8 +4,10 @@ var/list/cardinal_neighbors = list() for(var/check_dir in cardinal) var/turf/simulated/T = get_step(get_turf(src), check_dir) - if(istype(T)) + //VOREStation Edit Start - Vines can go up/down stairs, but don't register that they have done this, so do so infinitely, which is annoying and laggy. + if(istype(T) && !istype(check_dir, /turf/simulated/open)) //Let's not have them go on open space where you can't really get to them. cardinal_neighbors |= T + //VOREStation Edit End return cardinal_neighbors /obj/effect/plant/proc/update_neighbors() @@ -114,6 +116,10 @@ //spreading vines aren't created on their final turf. //Instead, they are created at their parent and then move to their destination. /obj/effect/plant/proc/spread_to(turf/target_turf) + //VOREStation Edit Start - Vines can go up/down stairs, but don't register that they have done this, so do so infinitely, which is annoying and laggy. + if(istype(target_turf, /turf/simulated/open)) + return + //VOREStation Edit End var/obj/effect/plant/child = new(get_turf(src),seed,parent) spawn(1) // This should do a little bit of animation. diff --git a/code/modules/hydroponics/trays/tray.dm b/code/modules/hydroponics/trays/tray.dm index cdc4314c6c..09e1ccbe9e 100644 --- a/code/modules/hydroponics/trays/tray.dm +++ b/code/modules/hydroponics/trays/tray.dm @@ -216,18 +216,26 @@ if(seed && seed.get_trait(TRAIT_IMMUTABLE) > 0) return - //Override for somatoray projectiles. - if(istype(Proj ,/obj/item/projectile/energy/floramut)&& prob(20)) - if(istype(Proj, /obj/item/projectile/energy/floramut/gene)) - var/obj/item/projectile/energy/floramut/gene/G = Proj - if(seed) - seed = seed.diverge_mutate_gene(G.gene, get_turf(loc)) //get_turf just in case it's not in a turf. - else - mutate(1) + // Override for somatoray projectiles. + // Change the mutchance var to buff or nerf somatorays, it will be multiplied by the tier of the laser. + var/mutchance = 15 + if(istype(Proj ,/obj/item/projectile/energy/floramut)) + var/obj/item/projectile/energy/floramut/GM = Proj + mutchance *= GM.lasermod + if(prob(mutchance)) + if(istype(Proj, /obj/item/projectile/energy/floramut/gene)) + var/obj/item/projectile/energy/floramut/gene/G = Proj + if(seed) + seed = seed.diverge_mutate_gene(G.gene, get_turf(loc)) //get_turf just in case it's not in a turf. + else + mutate(1) + return + else if(istype(Proj ,/obj/item/projectile/energy/florayield)) + var/obj/item/projectile/energy/floramut/GY = Proj + mutchance *= GY.lasermod + if(prob(mutchance)) + yield_mod = min(10,yield_mod+rand(1,2)) return - else if(istype(Proj ,/obj/item/projectile/energy/florayield) && prob(20)) - yield_mod = min(10,yield_mod+rand(1,2)) - return ..() diff --git a/code/modules/hydroponics/trays/tray_soil.dm b/code/modules/hydroponics/trays/tray_soil.dm index 43c918507b..7c05176cb9 100644 --- a/code/modules/hydroponics/trays/tray_soil.dm +++ b/code/modules/hydroponics/trays/tray_soil.dm @@ -51,6 +51,10 @@ icon_state = "blank" /obj/machinery/portable_atmospherics/hydroponics/soil/invisible/New(var/newloc,var/datum/seed/newseed) + //VOREStation Addition Start + if(istype(loc, /turf/simulated/open) || istype(loc, /turf/space)) + qdel(src) + //VOREStation Addition End ..() seed = newseed dead = 0 diff --git a/code/modules/hydroponics/trays/tray_tools.dm b/code/modules/hydroponics/trays/tray_tools.dm index cedcc3f8b9..3e5bd91b6a 100644 --- a/code/modules/hydroponics/trays/tray_tools.dm +++ b/code/modules/hydroponics/trays/tray_tools.dm @@ -275,6 +275,9 @@ if(get_trait(TRAIT_TELEPORTING)) data["trait_info"] += "The fruit is temporal/spatially unstable." + if(get_trait(TRAIT_SPORING)) + data["trait_info"] += "It occasionally releases reagent carrying spores into the atmosphere." + if(exude_gasses && exude_gasses.len) for(var/gas in exude_gasses) var/amount = "" diff --git a/code/modules/hydroponics/trays/tray_update_icons.dm b/code/modules/hydroponics/trays/tray_update_icons.dm index fc00e97ee8..0b3cf11231 100644 --- a/code/modules/hydroponics/trays/tray_update_icons.dm +++ b/code/modules/hydroponics/trays/tray_update_icons.dm @@ -5,11 +5,11 @@ ov_lowwater.plane = PLANE_LIGHTING_ABOVE ov_lownutri = image(icon = icon, icon_state = "over_lownutri3") ov_lownutri.plane = PLANE_LIGHTING_ABOVE - ov_harvest = image(icon = icon, icon_state = "over_alert3") + ov_harvest = image(icon = icon, icon_state = "over_harvest3") ov_harvest.plane = PLANE_LIGHTING_ABOVE - ov_frozen = image(icon = icon, icon_state = "over_harvest3") + ov_frozen = image(icon = icon, icon_state = "over_frozen3") ov_frozen.plane = PLANE_LIGHTING_ABOVE - ov_alert3 = image(icon = icon, icon_state = "over_frozen3") + ov_alert3 = image(icon = icon, icon_state = "over_alert3") ov_alert3.plane = PLANE_LIGHTING_ABOVE //Refreshes the icon and sets the luminosity diff --git a/code/modules/instruments/items.dm b/code/modules/instruments/items.dm index 31d4c396cc..41a921cd33 100644 --- a/code/modules/instruments/items.dm +++ b/code/modules/instruments/items.dm @@ -29,11 +29,6 @@ /obj/item/instrument/proc/should_stop_playing(mob/user) return user.incapacitated() || !((loc == user) || (isturf(loc) && Adjacent(user))) // sorry, no more TK playing. -/obj/item/instrument/suicide_act(mob/user) - var/datum/gender/T = gender_datums[user.get_visible_gender()] - user.visible_message("[user] begins to play 'Gloomy Sunday'! It looks like [T.hes] trying to commit suicide!") - return (BRUTELOSS) - /obj/item/instrument/attack_self(mob/user) if(!user.IsAdvancedToolUser()) to_chat(user, "You don't have the dexterity to do this!") diff --git a/code/modules/integrated_electronics/core/printer.dm b/code/modules/integrated_electronics/core/printer.dm index 9970f1dd5f..2089e87afb 100644 --- a/code/modules/integrated_electronics/core/printer.dm +++ b/code/modules/integrated_electronics/core/printer.dm @@ -40,7 +40,7 @@ if(debug) to_chat(user, span("warning", "\The [src] does not need any material.")) return - var/num = min((max_metal - metal) / metal_per_sheet, stack.amount) + var/num = min((max_metal - metal) / metal_per_sheet, stack.get_amount()) if(num < 1) to_chat(user, span("warning", "\The [src] is too full to add more metal.")) return diff --git a/code/modules/lore_codex/news_data/main.dm b/code/modules/lore_codex/news_data/main.dm index 3a89f5cf6e..16270733cf 100644 --- a/code/modules/lore_codex/news_data/main.dm +++ b/code/modules/lore_codex/news_data/main.dm @@ -112,6 +112,12 @@ /datum/lore/codex/page/about_news, ) + var/newsindex + +/datum/lore/codex/category/main_news/New() + ..() + newsindex = LAZYLEN(children) + /datum/lore/codex/page/about_news name = "About the Publisher" data = "The Daedalus Pocket Newscaster is produced and maintained by Occulum Broadcast, the foremost authority on media distribution \ diff --git a/code/modules/materials/fifty_spawner.dm b/code/modules/materials/fifty_spawner.dm index e3ba667703..9a7786ae21 100644 --- a/code/modules/materials/fifty_spawner.dm +++ b/code/modules/materials/fifty_spawner.dm @@ -10,8 +10,7 @@ ..() var/turf/T = get_turf(src) var/obj/structure/closet/C = locate() in T - var/obj/item/stack/M = new type_to_spawn(C || T) - M.amount = M.max_amount //some stuff spawns with 60, we're still calling it fifty + var/obj/item/stack/M = new type_to_spawn(C || T, -1) M.update_icon() // Some stacks have different sprites depending on how full they are. return INITIALIZE_HINT_QDEL //Bye! diff --git a/code/modules/materials/fifty_spawner_mats.dm b/code/modules/materials/fifty_spawner_mats.dm index 24f3985c4a..6ba191522f 100644 --- a/code/modules/materials/fifty_spawner_mats.dm +++ b/code/modules/materials/fifty_spawner_mats.dm @@ -92,6 +92,10 @@ name = "stack of alien wood" type_to_spawn = /obj/item/stack/material/wood/sif +/obj/fiftyspawner/hardwood + name = "stack of hardwood" + type_to_spawn = /obj/item/stack/material/wood/hard + /obj/fiftyspawner/log name = "stack of logs" type_to_spawn = /obj/item/stack/material/log @@ -100,6 +104,10 @@ name = "stack of alien logs" type_to_spawn = /obj/item/stack/material/log/sif +/obj/fiftyspawner/log/hard + name = "stack of hardwood logs" + type_to_spawn = /obj/item/stack/material/log/hard + /obj/fiftyspawner/cloth name = "stack of cloth" type_to_spawn = /obj/item/stack/material/cloth diff --git a/code/modules/materials/materials/_materials.dm b/code/modules/materials/materials/_materials.dm index 07b1af73ff..f059aa28c6 100644 --- a/code/modules/materials/materials/_materials.dm +++ b/code/modules/materials/materials/_materials.dm @@ -312,9 +312,9 @@ var/list/name_to_material place_sheet(target) // Debris product. Used ALL THE TIME. -/datum/material/proc/place_sheet(var/turf/target) +/datum/material/proc/place_sheet(var/turf/target, amount) if(stack_type) - return new stack_type(target) + return new stack_type(target, amount) // As above. /datum/material/proc/place_shard(var/turf/target) diff --git a/code/modules/materials/materials/metals/steel_vr.dm b/code/modules/materials/materials/metals/steel_vr.dm index b112f36217..818b41beaa 100644 --- a/code/modules/materials/materials/metals/steel_vr.dm +++ b/code/modules/materials/materials/metals/steel_vr.dm @@ -39,44 +39,44 @@ new /datum/stack_recipe("red sofa right", /obj/structure/bed/chair/sofa/right, 1, one_per_turf = 1, on_floor = 1), \ new /datum/stack_recipe("red sofa corner", /obj/structure/bed/chair/sofa/corner, 1, one_per_turf = 1, on_floor = 1), \ new /datum/stack_recipe("brown sofa middle", /obj/structure/bed/chair/sofa/brown, 1, one_per_turf = 1, on_floor = 1), \ - new /datum/stack_recipe("brown sofa left", /obj/structure/bed/chair/sofa/brown/left, 1, one_per_turf = 1, on_floor = 1), \ - new /datum/stack_recipe("brown sofa right", /obj/structure/bed/chair/sofa/brown/right, 1, one_per_turf = 1, on_floor = 1), \ - new /datum/stack_recipe("brown sofa corner", /obj/structure/bed/chair/sofa/brown/corner, 1, one_per_turf = 1, on_floor = 1), \ + new /datum/stack_recipe("brown sofa left", /obj/structure/bed/chair/sofa/left/brown, 1, one_per_turf = 1, on_floor = 1), \ + new /datum/stack_recipe("brown sofa right", /obj/structure/bed/chair/sofa/right/brown, 1, one_per_turf = 1, on_floor = 1), \ + new /datum/stack_recipe("brown sofa corner", /obj/structure/bed/chair/sofa/corner/brown, 1, one_per_turf = 1, on_floor = 1), \ new /datum/stack_recipe("teal sofa middle", /obj/structure/bed/chair/sofa/teal, 1, one_per_turf = 1, on_floor = 1), \ - new /datum/stack_recipe("teal sofa left", /obj/structure/bed/chair/sofa/teal/left, 1, one_per_turf = 1, on_floor = 1), \ - new /datum/stack_recipe("teal sofa right", /obj/structure/bed/chair/sofa/teal/right, 1, one_per_turf = 1, on_floor = 1), \ - new /datum/stack_recipe("teal sofa corner", /obj/structure/bed/chair/sofa/teal/corner, 1, one_per_turf = 1, on_floor = 1), \ + new /datum/stack_recipe("teal sofa left", /obj/structure/bed/chair/sofa/left/teal, 1, one_per_turf = 1, on_floor = 1), \ + new /datum/stack_recipe("teal sofa right", /obj/structure/bed/chair/sofa/right/teal, 1, one_per_turf = 1, on_floor = 1), \ + new /datum/stack_recipe("teal sofa corner", /obj/structure/bed/chair/sofa/corner/teal, 1, one_per_turf = 1, on_floor = 1), \ new /datum/stack_recipe("black sofa middle", /obj/structure/bed/chair/sofa/black, 1, one_per_turf = 1, on_floor = 1), \ - new /datum/stack_recipe("black sofa left", /obj/structure/bed/chair/sofa/black/left, 1, one_per_turf = 1, on_floor = 1), \ - new /datum/stack_recipe("black sofa right", /obj/structure/bed/chair/sofa/black/right, 1, one_per_turf = 1, on_floor = 1), \ - new /datum/stack_recipe("black sofa corner", /obj/structure/bed/chair/sofa/black/corner, 1, one_per_turf = 1, on_floor = 1), \ + new /datum/stack_recipe("black sofa left", /obj/structure/bed/chair/sofa/left/black, 1, one_per_turf = 1, on_floor = 1), \ + new /datum/stack_recipe("black sofa right", /obj/structure/bed/chair/sofa/right/black, 1, one_per_turf = 1, on_floor = 1), \ + new /datum/stack_recipe("black sofa corner", /obj/structure/bed/chair/sofa/corner/black, 1, one_per_turf = 1, on_floor = 1), \ new /datum/stack_recipe("green sofa middle", /obj/structure/bed/chair/sofa/green, 1, one_per_turf = 1, on_floor = 1), \ - new /datum/stack_recipe("green sofa left", /obj/structure/bed/chair/sofa/green/left, 1, one_per_turf = 1, on_floor = 1), \ - new /datum/stack_recipe("green sofa right", /obj/structure/bed/chair/sofa/green/right, 1, one_per_turf = 1, on_floor = 1), \ - new /datum/stack_recipe("green sofa corner", /obj/structure/bed/chair/sofa/green/corner, 1, one_per_turf = 1, on_floor = 1), \ + new /datum/stack_recipe("green sofa left", /obj/structure/bed/chair/sofa/left/green, 1, one_per_turf = 1, on_floor = 1), \ + new /datum/stack_recipe("green sofa right", /obj/structure/bed/chair/sofa/right/green, 1, one_per_turf = 1, on_floor = 1), \ + new /datum/stack_recipe("green sofa corner", /obj/structure/bed/chair/sofa/corner/green, 1, one_per_turf = 1, on_floor = 1), \ new /datum/stack_recipe("purple sofa middle", /obj/structure/bed/chair/sofa/purp, 1, one_per_turf = 1, on_floor = 1), \ - new /datum/stack_recipe("purple sofa left", /obj/structure/bed/chair/sofa/purp/left, 1, one_per_turf = 1, on_floor = 1), \ - new /datum/stack_recipe("purple sofa right", /obj/structure/bed/chair/sofa/purp/right, 1, one_per_turf = 1, on_floor = 1), \ - new /datum/stack_recipe("purple sofa corner", /obj/structure/bed/chair/sofa/purp/corner, 1, one_per_turf = 1, on_floor = 1), \ + new /datum/stack_recipe("purple sofa left", /obj/structure/bed/chair/sofa/left/purp, 1, one_per_turf = 1, on_floor = 1), \ + new /datum/stack_recipe("purple sofa right", /obj/structure/bed/chair/sofa/right/purp, 1, one_per_turf = 1, on_floor = 1), \ + new /datum/stack_recipe("purple sofa corner", /obj/structure/bed/chair/sofa/corner/purp, 1, one_per_turf = 1, on_floor = 1), \ new /datum/stack_recipe("blue sofa middle", /obj/structure/bed/chair/sofa/blue, 1, one_per_turf = 1, on_floor = 1), \ - new /datum/stack_recipe("blue sofa left", /obj/structure/bed/chair/sofa/blue/left, 1, one_per_turf = 1, on_floor = 1), \ - new /datum/stack_recipe("blue sofa right", /obj/structure/bed/chair/sofa/blue/right, 1, one_per_turf = 1, on_floor = 1), \ - new /datum/stack_recipe("blue sofa corner", /obj/structure/bed/chair/sofa/blue/corner, 1, one_per_turf = 1, on_floor = 1), \ + new /datum/stack_recipe("blue sofa left", /obj/structure/bed/chair/sofa/left/blue, 1, one_per_turf = 1, on_floor = 1), \ + new /datum/stack_recipe("blue sofa right", /obj/structure/bed/chair/sofa/right/blue, 1, one_per_turf = 1, on_floor = 1), \ + new /datum/stack_recipe("blue sofa corner", /obj/structure/bed/chair/sofa/corner/blue, 1, one_per_turf = 1, on_floor = 1), \ new /datum/stack_recipe("beige sofa middle", /obj/structure/bed/chair/sofa/beige, 1, one_per_turf = 1, on_floor = 1), \ - new /datum/stack_recipe("beige sofa left", /obj/structure/bed/chair/sofa/beige/left, 1, one_per_turf = 1, on_floor = 1), \ - new /datum/stack_recipe("beige sofa right", /obj/structure/bed/chair/sofa/beige/right, 1, one_per_turf = 1, on_floor = 1), \ - new /datum/stack_recipe("beige sofa corner", /obj/structure/bed/chair/sofa/beige/corner, 1, one_per_turf = 1, on_floor = 1), \ + new /datum/stack_recipe("beige sofa left", /obj/structure/bed/chair/sofa/left/beige, 1, one_per_turf = 1, on_floor = 1), \ + new /datum/stack_recipe("beige sofa right", /obj/structure/bed/chair/sofa/right/beige, 1, one_per_turf = 1, on_floor = 1), \ + new /datum/stack_recipe("beige sofa corner", /obj/structure/bed/chair/sofa/corner/beige, 1, one_per_turf = 1, on_floor = 1), \ new /datum/stack_recipe("lime sofa middle", /obj/structure/bed/chair/sofa/lime, 1, one_per_turf = 1, on_floor = 1), \ - new /datum/stack_recipe("lime sofa left", /obj/structure/bed/chair/sofa/lime/left, 1, one_per_turf = 1, on_floor = 1), \ - new /datum/stack_recipe("lime sofa right", /obj/structure/bed/chair/sofa/lime/right, 1, one_per_turf = 1, on_floor = 1), \ - new /datum/stack_recipe("lime sofa corner", /obj/structure/bed/chair/sofa/lime/corner, 1, one_per_turf = 1, on_floor = 1), \ + new /datum/stack_recipe("lime sofa left", /obj/structure/bed/chair/sofa/left/lime, 1, one_per_turf = 1, on_floor = 1), \ + new /datum/stack_recipe("lime sofa right", /obj/structure/bed/chair/sofa/right/lime, 1, one_per_turf = 1, on_floor = 1), \ + new /datum/stack_recipe("lime sofa corner", /obj/structure/bed/chair/sofa/corner/lime, 1, one_per_turf = 1, on_floor = 1), \ new /datum/stack_recipe("yellow sofa middle", /obj/structure/bed/chair/sofa/yellow, 1, one_per_turf = 1, on_floor = 1), \ - new /datum/stack_recipe("yellow sofa left", /obj/structure/bed/chair/sofa/yellow/left, 1, one_per_turf = 1, on_floor = 1), \ - new /datum/stack_recipe("yellow sofa right", /obj/structure/bed/chair/sofa/yellow/right, 1, one_per_turf = 1, on_floor = 1), \ - new /datum/stack_recipe("yellow sofa corner", /obj/structure/bed/chair/sofa/yellow/corner, 1, one_per_turf = 1, on_floor = 1), \ + new /datum/stack_recipe("yellow sofa left", /obj/structure/bed/chair/sofa/left/yellow, 1, one_per_turf = 1, on_floor = 1), \ + new /datum/stack_recipe("yellow sofa right", /obj/structure/bed/chair/sofa/right/yellow, 1, one_per_turf = 1, on_floor = 1), \ + new /datum/stack_recipe("yellow sofa corner", /obj/structure/bed/chair/sofa/corner/yellow, 1, one_per_turf = 1, on_floor = 1), \ new /datum/stack_recipe("orange sofa middle", /obj/structure/bed/chair/sofa/orange, 1, one_per_turf = 1, on_floor = 1), \ - new /datum/stack_recipe("orange sofa left", /obj/structure/bed/chair/sofa/orange/left, 1, one_per_turf = 1, on_floor = 1), \ - new /datum/stack_recipe("orange sofa right", /obj/structure/bed/chair/sofa/orange/right, 1, one_per_turf = 1, on_floor = 1), \ - new /datum/stack_recipe("orange sofa corner", /obj/structure/bed/chair/sofa/orange/corner, 1, one_per_turf = 1, on_floor = 1), \ + new /datum/stack_recipe("orange sofa left", /obj/structure/bed/chair/sofa/left/orange, 1, one_per_turf = 1, on_floor = 1), \ + new /datum/stack_recipe("orange sofa right", /obj/structure/bed/chair/sofa/right/orange, 1, one_per_turf = 1, on_floor = 1), \ + new /datum/stack_recipe("orange sofa corner", /obj/structure/bed/chair/sofa/corner/orange, 1, one_per_turf = 1, on_floor = 1), \ )), ) diff --git a/code/modules/materials/materials/organic/resin.dm b/code/modules/materials/materials/organic/resin.dm index a42735627a..a1d66e4eb0 100644 --- a/code/modules/materials/materials/organic/resin.dm +++ b/code/modules/materials/materials/organic/resin.dm @@ -35,11 +35,11 @@ /datum/material/resin/generate_recipes() recipes = list( new /datum/stack_recipe("[display_name] door", /obj/structure/simple_door/resin, 10, one_per_turf = 1, on_floor = 1, supplied_material = "[name]", pass_stack_color = TRUE), - new /datum/stack_recipe("[display_name] barricade", /obj/effect/alien/resin/wall, 5, time = 5 SECONDS, one_per_turf = 1, on_floor = 1, pass_stack_color = TRUE, recycle_material = "[name]"), + new /datum/stack_recipe("[display_name] barricade", /obj/structure/alien/wall, 5, time = 5 SECONDS, one_per_turf = 1, on_floor = 1, pass_stack_color = TRUE, recycle_material = "[name]"), new /datum/stack_recipe("[display_name] nest", /obj/structure/bed/nest, 2, one_per_turf = 1, on_floor = 1, supplied_material = "[name]", pass_stack_color = TRUE), new /datum/stack_recipe("[display_name] wall girders", /obj/structure/girder/resin, 2, time = 5 SECONDS, one_per_turf = 1, on_floor = 1, supplied_material = "[name]", pass_stack_color = TRUE), new /datum/stack_recipe("crude [display_name] bandage", /obj/item/stack/medical/crude_pack, 1, time = 2 SECONDS, pass_stack_color = TRUE, recycle_material = "[name]"), new /datum/stack_recipe("[display_name] net", /obj/item/weapon/material/fishing_net, 10, time = 5 SECONDS, supplied_material = "[name]", pass_stack_color = TRUE), - new /datum/stack_recipe("[display_name] membrane", /obj/effect/alien/resin/membrane, 1, time = 2 SECONDS, pass_stack_color = TRUE, recycle_material = "[name]"), + new /datum/stack_recipe("[display_name] membrane", /obj/structure/alien/membrane, 1, time = 2 SECONDS, pass_stack_color = TRUE, recycle_material = "[name]"), new /datum/stack_recipe("[display_name] node", /obj/effect/alien/weeds/node, 1, time = 4 SECONDS, recycle_material = "[name]") ) \ No newline at end of file diff --git a/code/modules/materials/materials/organic/wood.dm b/code/modules/materials/materials/organic/wood.dm index 93b642af74..467b42ac8d 100644 --- a/code/modules/materials/materials/organic/wood.dm +++ b/code/modules/materials/materials/organic/wood.dm @@ -67,6 +67,29 @@ recipes -= r_recipe continue +/datum/material/wood/hardwood + name = MAT_HARDWOOD + stack_type = /obj/item/stack/material/wood/hard + icon_colour = "#42291a" + icon_base = "stone" + icon_reinf = "reinf_stone" + integrity = 65 //a bit stronger than regular wood + hardness = 20 + weight = 20 //likewise, heavier + +/datum/material/wood/hardwood/generate_recipes() + ..() + for(var/datum/stack_recipe/r_recipe in recipes) + if(r_recipe.title == "wood floor tile") + recipes -= r_recipe + continue + if(r_recipe.title == "wooden chair") + recipes -= r_recipe + continue + if(r_recipe.title == "wooden standup figure") + recipes -= r_recipe + continue + /datum/material/wood/log name = MAT_LOG display_name = "wood" // will lead to "wood log" @@ -90,6 +113,11 @@ stack_origin_tech = list(TECH_MATERIAL = 2, TECH_BIO = 2) stack_type = /obj/item/stack/material/log/sif +/datum/material/wood/log/hard + name = MAT_HARDLOG + icon_colour = "#6f432a" + stack_type = /obj/item/stack/material/log/hard + //VOREStation Addition Start /datum/material/wood/stick name = "wooden stick" diff --git a/code/modules/materials/sheets/organic/tanning/hide.dm b/code/modules/materials/sheets/organic/tanning/hide.dm index 26894dcaf6..e8dadfce73 100644 --- a/code/modules/materials/sheets/organic/tanning/hide.dm +++ b/code/modules/materials/sheets/organic/tanning/hide.dm @@ -24,14 +24,14 @@ //Try locating an exisitng stack on the tile and add to there if possible var/obj/item/stack/hairlesshide/H = null for(var/obj/item/stack/hairlesshide/HS in user.loc) // Could be scraping something inside a locker, hence the .loc, not get_turf - if(HS.amount < HS.max_amount) + if(HS.get_amount() < HS.max_amount) H = HS break // Either we found a valid stack, in which case increment amount, // Or we need to make a new stack if(istype(H)) - H.amount++ + H.add(1) else H = new /obj/item/stack/hairlesshide(user.loc) diff --git a/code/modules/materials/sheets/organic/tanning/hide_hairless.dm b/code/modules/materials/sheets/organic/tanning/hide_hairless.dm index 72b235e415..f504e24a9f 100644 --- a/code/modules/materials/sheets/organic/tanning/hide_hairless.dm +++ b/code/modules/materials/sheets/organic/tanning/hide_hairless.dm @@ -21,14 +21,14 @@ for(var/i in 1 to wateramount) var/obj/item/stack/wetleather/H = null for(var/obj/item/stack/wetleather/HS in get_turf(src)) // Doesn't have a user, can't just use their loc - if(HS.amount < HS.max_amount) + if(HS.get_amount() < HS.max_amount) H = HS break // Either we found a valid stack, in which case increment amount, // Or we need to make a new stack if(istype(H)) - H.amount++ + H.add(1) else H = new /obj/item/stack/wetleather(get_turf(src)) diff --git a/code/modules/materials/sheets/organic/tanning/leather_wet.dm b/code/modules/materials/sheets/organic/tanning/leather_wet.dm index 64f672512c..6d1df6fd75 100644 --- a/code/modules/materials/sheets/organic/tanning/leather_wet.dm +++ b/code/modules/materials/sheets/organic/tanning/leather_wet.dm @@ -38,9 +38,8 @@ dry() /obj/item/stack/wetleather/proc/dry() - var/obj/item/stack/material/leather/L = new(src.loc) - L.amount = amount - use(amount) + var/obj/item/stack/material/leather/L = new(src.loc, get_amount()) + use(get_amount()) return L /obj/item/stack/wetleather/transfer_to(obj/item/stack/S, var/tamount=null, var/type_verified) diff --git a/code/modules/materials/sheets/organic/tanning/tanning_rack.dm b/code/modules/materials/sheets/organic/tanning/tanning_rack.dm index 885b65dd8f..fdd0fce35e 100644 --- a/code/modules/materials/sheets/organic/tanning/tanning_rack.dm +++ b/code/modules/materials/sheets/organic/tanning/tanning_rack.dm @@ -41,7 +41,7 @@ drying = A else // Drying something, add if possible var/obj/item/stack/wetleather/W = A - W.transfer_to(drying, W.amount, TRUE) + W.transfer_to(drying, W.get_amount(), TRUE) update_icon() return TRUE return ..() @@ -50,9 +50,8 @@ if(drying) var/obj/item/stack/S = drying if(!drying.wetness) // If it's dry, make a stack of dry leather and prepare to put that in their hands - var/obj/item/stack/material/leather/L = new(src) - L.amount = drying.amount - drying.use(drying.amount) + var/obj/item/stack/material/leather/L = new(src, drying.get_amount()) + drying.set_amount(0) S = L if(ishuman(user)) diff --git a/code/modules/materials/sheets/organic/wood.dm b/code/modules/materials/sheets/organic/wood.dm index 6699136606..f41fa64439 100644 --- a/code/modules/materials/sheets/organic/wood.dm +++ b/code/modules/materials/sheets/organic/wood.dm @@ -13,6 +13,12 @@ color = "#0099cc" default_type = MAT_SIFWOOD +/obj/item/stack/material/wood/hard + name = "hardwood plank" + color = "#42291a" + default_type = MAT_HARDWOOD + description_info = "Rich, lustrous hardwood, imported from offworld at moderate expense. Mostly used for luxurious furniture, and not very good for weapons or other structures." + /obj/item/stack/material/log name = "log" icon_state = "sheet-log" @@ -32,6 +38,12 @@ color = "#0099cc" plank_type = /obj/item/stack/material/wood/sif +/obj/item/stack/material/log/hard + name = "hardwood log" + default_type = MAT_HARDLOG + color = "#6f432a" + plank_type = /obj/item/stack/material/wood/hard + /obj/item/stack/material/log/attackby(var/obj/item/W, var/mob/user) if(!istype(W) || W.force <= 0) return ..() @@ -47,10 +59,9 @@ existing_wood = M break - var/obj/item/stack/material/wood/new_wood = new plank_type(user.loc) - new_wood.amount = 2 + var/obj/item/stack/material/wood/new_wood = new plank_type(user.loc, 2) if(existing_wood && new_wood.transfer_to(existing_wood)) - to_chat(user, "You add the newly-formed wood to the stack. It now contains [existing_wood.amount] planks.") + to_chat(user, "You add the newly-formed wood to the stack. It now contains [existing_wood.get_amount()] planks.") else return ..() diff --git a/code/modules/mining/drilling/drill.dm b/code/modules/mining/drilling/drill.dm index b8618ccf86..868056afd8 100644 --- a/code/modules/mining/drilling/drill.dm +++ b/code/modules/mining/drilling/drill.dm @@ -11,11 +11,14 @@ icon_state = "mining_drill" circuit = /obj/item/weapon/circuitboard/miningdrill var/braces_needed = 2 - var/list/supports = list() + var/total_brace_tier = 0 + var/list/obj/machinery/mining/brace/supports = list() var/supported = 0 var/active = 0 var/list/resource_field = list() var/obj/item/device/radio/intercom/faultreporter + var/drill_range = 5 + var/offset = 2 var/list/ore_types = list( "hematite" = /obj/item/weapon/ore/iron, @@ -174,6 +177,9 @@ if(newtag) name = "[initial(name)] #[newtag]" to_chat(user, "You changed the drill ID to: [newtag]") + else + name = "[initial(name)]" + to_chat(user, SPAN_NOTICE("You removed the drill's ID and any extraneous labels.")) return if(default_deconstruction_screwdriver(user, O)) return @@ -197,6 +203,7 @@ /obj/machinery/mining/drill/attack_hand(mob/user as mob) check_supports() + RefreshParts() if (panel_open && cell && user.Adjacent(src)) to_chat(user, "You take out \the [cell].") @@ -217,6 +224,8 @@ if(active) visible_message("\The [src] lurches downwards, grinding noisily.") need_update_field = 1 + harvest_speed *= total_brace_tier + charge_use *= total_brace_tier else visible_message("\The [src] shudders to a grinding halt.") else @@ -242,10 +251,12 @@ harvest_speed = 0 capacity = 0 charge_use = 50 + drill_range = 5 + offset = 2 for(var/obj/item/weapon/stock_parts/P in component_parts) if(istype(P, /obj/item/weapon/stock_parts/micro_laser)) - harvest_speed = P.rating + harvest_speed = P.rating ** 2 // 1, 4, 9, 16, 25 exotic_drilling = P.rating - 1 if(exotic_drilling >= 1) ore_types |= ore_types_uncommon @@ -254,6 +265,14 @@ else ore_types -= ore_types_uncommon ore_types -= ore_types_rare + if(P.rating > 3) // are we t4+? + // default drill range 5, offset 2 + if(P.rating >= 5) // t5 + drill_range = 9 + offset = 4 + else if(P.rating >= 4) // t4 + drill_range = 7 + offset = 3 if(istype(P, /obj/item/weapon/stock_parts/matter_bin)) capacity = 200 * P.rating if(istype(P, /obj/item/weapon/stock_parts/capacitor)) @@ -263,6 +282,7 @@ /obj/machinery/mining/drill/proc/check_supports() supported = 0 + total_brace_tier = 0 if((!supports || !supports.len) && initial(anchored) == 0) icon_state = "mining_drill" @@ -271,8 +291,14 @@ else anchored = TRUE - if(supports && supports.len >= braces_needed) - supported = 1 + if(supports) + if(supports.len >= braces_needed) + supported = 1 + else for(var/obj/machinery/mining/brace/check in supports) + if(check.brace_tier >= 3) + supported = 1 + for(var/obj/machinery/mining/brace/check in supports) + total_brace_tier += check.brace_tier update_icon() @@ -293,11 +319,11 @@ var/turf/T = get_turf(src) if(!istype(T)) return - var/tx = T.x - 2 - var/ty = T.y - 2 + var/tx = T.x - offset + var/ty = T.y - offset var/turf/simulated/mine_turf - for(var/iy = 0,iy < 5, iy++) - for(var/ix = 0, ix < 5, ix++) + for(var/iy = 0,iy < drill_range, iy++) + for(var/ix = 0, ix < drill_range, ix++) mine_turf = locate(tx + ix, ty + iy, T.z) if(!istype(mine_turf, /turf/space/)) if(mine_turf && mine_turf.has_resources) @@ -334,12 +360,23 @@ desc = "A machinery brace for an industrial drill. It looks easily two feet thick." icon_state = "mining_brace" circuit = /obj/item/weapon/circuitboard/miningdrillbrace + var/brace_tier = 1 var/obj/machinery/mining/drill/connected -/obj/machinery/mining/brace/New() - ..() +/obj/machinery/mining/brace/examine(mob/user) + . = ..() + if(brace_tier > 2) + . += SPAN_NOTICE("The internals of the brace look resilient enough to support a drill by itself.") - component_parts = list() +/obj/machinery/mining/brace/Initialize() + . = ..() + default_apply_parts() + +/obj/machinery/mining/brace/RefreshParts() + ..() + brace_tier = 0 + for(var/obj/item/weapon/stock_parts/manipulator/M in component_parts) + brace_tier += M.rating /obj/machinery/mining/brace/attackby(obj/item/weapon/W as obj, mob/user as mob) if(connected && connected.active) @@ -350,6 +387,8 @@ return if(default_deconstruction_crowbar(user, W)) return + if(default_part_replacement(user,W)) + return if(W.is_wrench()) diff --git a/code/modules/mining/kinetic_crusher.dm b/code/modules/mining/kinetic_crusher.dm index 498f0b16bb..7effaf60d9 100644 --- a/code/modules/mining/kinetic_crusher.dm +++ b/code/modules/mining/kinetic_crusher.dm @@ -237,6 +237,7 @@ /obj/item/weapon/kinetic_crusher/machete + // general purpose. cleaves though name = "proto-kinetic machete" desc = "A scaled down version of a proto-kinetic crusher, used by people who don't want to lug around an axe-hammer." icon_state = "glaive-machete" @@ -245,16 +246,15 @@ slot_r_hand_str = 'icons/mob/items/righthand_melee_vr.dmi', ) item_state = "c-machete" - w_class = ITEMSIZE_SMALL + w_class = ITEMSIZE_NORMAL attack_verb = list("cleaved", "chopped", "pulped", "stabbed", "skewered") - force = 24 can_cleave = TRUE requires_wield = FALSE // yeah yeah buff but polaris mobs are meatwalls. - backstab_bonus = 40 - detonation_damage = 26 - // meme option - thrown_bonus = 20 + force = 24 + detonation_damage = 36 // 60 + backstab_bonus = 40 // 100 + thrown_bonus = 20 // 120 update_item_state = FALSE @@ -269,11 +269,11 @@ attack_verb = list("bashed", "kicked", "punched", "struck", "axe kicked", "uppercut", "cross-punched", "jabbed", "hammerfisted", "roundhouse kicked") integ_light_icon = FALSE w_class = ITEMSIZE_HUGE - force = 30 can_cleave = FALSE requires_wield = TRUE - backstab_bonus = 55 - detonation_damage = 35 + force = 28 + detonation_damage = 37 // 75 + backstab_bonus = 55 // 130 var/obj/item/offhand/crushergauntlets/offhand /obj/item/weapon/kinetic_crusher/machete/gauntlets/equipped() @@ -302,21 +302,29 @@ var/mob/living/M = loc if(istype(M) && forced == 0) if(M.can_wield_item(src) && src.is_held_twohanded(M)) - name = initial(name) - wielded = TRUE - to_chat(M, "You ready [src].") - var/obj/item/offhand/crushergauntlets/O = new(M) - O.name = "[name] - readied" - O.desc = "As much as you'd like to punch things with one hand, [src] is far too unwieldy for that." - O.linked = src - M.put_in_inactive_hand(O) - offhand = O + wield(M) + else + unwield(M) else - name = "[initial(name)] (unreadied)" - wielded = FALSE - to_chat(M, "You unready [src].") - if(offhand) - QDEL_NULL(offhand) + unwield(M) + +/obj/item/weapon/kinetic_crusher/machete/gauntlets/proc/wield(var/mob/living/M) + name = initial(name) + wielded = TRUE + to_chat(M, "You ready [src].") + var/obj/item/offhand/crushergauntlets/O = new(M) + O.name = "[name] - readied" + O.desc = "As much as you'd like to punch things with one hand, [src] is far too unwieldy for that." + O.linked = src + M.put_in_inactive_hand(O) + offhand = O + +/obj/item/weapon/kinetic_crusher/machete/gauntlets/proc/unwield(var/mob/living/M) + to_chat(M, "You unready [src].") + name = "[initial(name)] (unreadied)" + wielded = FALSE + if(offhand) + QDEL_NULL(offhand) /obj/item/offhand icon = 'icons/obj/weapons.dmi' @@ -324,6 +332,7 @@ name = "offhand that shouldn't exist doo dee doo" w_class = ITEMSIZE_NO_CONTAINER // var/linked - redefine this wherever + // man i really should try porting the twohand component this is hacky and Sucks /obj/item/offhand/crushergauntlets var/obj/item/weapon/kinetic_crusher/machete/gauntlets/linked @@ -333,7 +342,7 @@ linked.ready_toggle(TRUE) /obj/item/weapon/kinetic_crusher/machete/gauntlets/rig - name = "mounted proto-kinetic gear" + name = "\improper mounted proto-kinetic gear" var/obj/item/rig_module/gauntlets/storing_module /obj/item/weapon/kinetic_crusher/machete/gauntlets/rig/dropped(mob/user) @@ -351,6 +360,7 @@ else QDEL_NULL(src) +// gimmicky backup for throwing /obj/item/weapon/kinetic_crusher/machete/dagger name = "proto-kinetic dagger" desc = "A scaled down version of a proto-kinetic machete, usually used in a last ditch scenario." @@ -361,13 +371,14 @@ ) item_state = "c-knife" w_class = ITEMSIZE_SMALL - force = 15 requires_wield = FALSE charge_overlay = FALSE - backstab_bonus = 35 - detonation_damage = 25 - // woohoo - thrown_bonus = 35 + charge_time = 10 // lowered charge in return for lowered damage + force = 18 + detonation_damage = 27 // 45 + backstab_bonus = 40 // 85 + // gimmick mode + thrown_bonus = 50 // 135 but you drop your knife because you threw it //destablizing force @@ -387,15 +398,18 @@ hammer_synced = null return ..() +/obj/item/projectile/destabilizer/on_impact(var/atom/A) + if(ismineralturf(A)) + var/turf/simulated/mineral/M = A + new /obj/effect/temp_visual/kinetic_blast(M) + M.GetDrilled(firer) + . = ..() + /obj/item/projectile/destabilizer/on_hit(atom/target, blocked = FALSE) if(isliving(target)) var/mob/living/L = target - L.add_modifier(/datum/modifier/crusher_mark, 30 SECONDS, firer, TRUE) - var/target_turf = get_turf(target) - if(ismineralturf(target_turf)) - var/turf/simulated/mineral/M = target_turf - new /obj/effect/temp_visual/kinetic_blast(M) - M.GetDrilled(firer) + if(hammer_synced.can_mark(L)) + L.add_modifier(/datum/modifier/crusher_mark, 30 SECONDS, firer, TRUE) ..() /* @@ -404,5 +418,6 @@ there would be any if we had some but alas - hatterhat + */ diff --git a/code/modules/mining/machinery/machine_stacking.dm b/code/modules/mining/machinery/machine_stacking.dm index b0b2a7890e..6567625b54 100644 --- a/code/modules/mining/machinery/machine_stacking.dm +++ b/code/modules/mining/machinery/machine_stacking.dm @@ -62,10 +62,8 @@ var/stack = params["stack"] if(machine.stack_storage[stack] > 0) var/stacktype = machine.stack_paths[stack] - var/obj/item/stack/material/S = new stacktype(get_turf(machine.output)) - S.amount = machine.stack_storage[stack] + new stacktype(get_turf(machine.output), machine.stack_storage[stack]) machine.stack_storage[stack] = 0 - S.update_icon() . = TRUE add_fingerprint(usr) @@ -125,7 +123,7 @@ var/obj/item/stack/material/S = O var/matname = S.material.name if(!isnull(stack_storage[matname])) - stack_storage[matname] += S.amount + stack_storage[matname] += S.get_amount() qdel(S) else O.loc = output.loc @@ -136,10 +134,8 @@ for(var/sheet in stack_storage) if(stack_storage[sheet] >= stack_amt) var/stacktype = stack_paths[sheet] - var/obj/item/stack/material/S = new stacktype (get_turf(output)) - S.amount = stack_amt + new stacktype (get_turf(output), stack_amt) stack_storage[sheet] -= stack_amt - S.update_icon() if(console) console.updateUsrDialog() diff --git a/code/modules/mining/mine_turfs.dm b/code/modules/mining/mine_turfs.dm index 0c6c8b44ad..c24194b090 100644 --- a/code/modules/mining/mine_turfs.dm +++ b/code/modules/mining/mine_turfs.dm @@ -625,8 +625,8 @@ var/list/mining_overlay_cache = list() if(prob(50)) M.Stun(5) SSradiation.flat_radiate(src, 25, 100) - if(prob(25)) - excavate_find(prob(5), finds[1]) + if(prob(25)) + excavate_find(prob(5), finds[1]) else if(rand(1,500) == 1) visible_message("An old dusty crate was buried within!") new /obj/structure/closet/crate/secure/loot(src) diff --git a/code/modules/mining/mine_turfs_vr.dm b/code/modules/mining/mine_turfs_vr.dm index 6e8797bf70..2db25d26fb 100644 --- a/code/modules/mining/mine_turfs_vr.dm +++ b/code/modules/mining/mine_turfs_vr.dm @@ -14,6 +14,16 @@ /turf/simulated/mineral/floor/ignore_cavegen ignore_cavegen = TRUE +/turf/simulated/mineral/ignore_cavegen/cave + oxygen = MOLES_O2STANDARD + nitrogen = MOLES_N2STANDARD + temperature = T20C + +/turf/simulated/mineral/floor/ignore_cavegen/cave + oxygen = MOLES_O2STANDARD + nitrogen = MOLES_N2STANDARD + temperature = T20C + /turf/simulated/mineral/vacuum oxygen = 0 nitrogen = 0 diff --git a/code/modules/mining/ore_box.dm b/code/modules/mining/ore_box.dm index bda08a903d..9fddd03e21 100644 --- a/code/modules/mining/ore_box.dm +++ b/code/modules/mining/ore_box.dm @@ -58,34 +58,33 @@ for(var/ore in stored_ore) . += "- [stored_ore[ore]] [ore]" -/obj/structure/ore_box/verb/empty_box() - set name = "Empty Ore Box" - set category = "Object" - set src in view(1) - - if(!ishuman(usr) && !isrobot(usr)) //Only living, intelligent creatures with gripping aparatti can empty ore boxes. - to_chat(usr, "You are physically incapable of emptying the ore box.") - return - - if(usr.stat || usr.restrained()) - return - - if(!Adjacent(usr)) //You can only empty the box if you can physically reach it - to_chat(usr, "You cannot reach the ore box.") - return - - add_fingerprint(usr) - - if(contents.len < 1) - to_chat(usr, "The ore box is empty.") - return - - for (var/obj/item/weapon/ore/O in contents) - contents -= O - O.loc = src.loc - to_chat(usr, "You empty the ore box.") - - return +// /obj/structure/ore_box/verb/empty_box() +// set name = "Empty Ore Box" +// set category = "Object" +// set src in view(1) +// +// if(!ishuman(usr) && !isrobot(usr)) //Only living, intelligent creatures with gripping aparatti can empty ore boxes. +// to_chat(usr, "You are physically incapable of emptying the ore box.") +// return +// if(usr.stat || usr.restrained()) +// return +// +// if(!Adjacent(usr)) //You can only empty the box if you can physically reach it +// to_chat(usr, "You cannot reach the ore box.") +// return +// +// add_fingerprint(usr) +// +// if(contents.len < 1) +// to_chat(usr, "The ore box is empty.") +// return +// +// for (var/obj/item/weapon/ore/O in contents) +// contents -= O +// O.loc = src.loc +// to_chat(usr, "You empty the ore box.") +// +// return /obj/structure/ore_box/ex_act(severity) if(severity == 1.0 || (severity < 3.0 && prob(50))) diff --git a/code/modules/mining/ore_redemption_machine/equipment_vendor.dm b/code/modules/mining/ore_redemption_machine/equipment_vendor.dm index ede586fba7..c100a7a9bc 100644 --- a/code/modules/mining/ore_redemption_machine/equipment_vendor.dm +++ b/code/modules/mining/ore_redemption_machine/equipment_vendor.dm @@ -120,13 +120,16 @@ EQUIPMENT("Kinetic Accelerator", /obj/item/weapon/gun/energy/kinetic_accelerator, 900), EQUIPMENT("KA AoE Damage", /obj/item/borg/upgrade/modkit/aoe/mobs, 2000), EQUIPMENT("KA Damage Increase", /obj/item/borg/upgrade/modkit/damage, 1000), - EQUIPMENT("KA Efficiency Increase", /obj/item/borg/upgrade/modkit/efficiency, 1200), + EQUIPMENT("KA Cooldown Decrease", /obj/item/borg/upgrade/modkit/cooldown, 1200), EQUIPMENT("KA Range Increase", /obj/item/borg/upgrade/modkit/range, 1000), + EQUIPMENT("KA Temperature Modulator", /obj/item/borg/upgrade/modkit/heater, 1000), + EQUIPMENT("KA Off-Station Modulator", /obj/item/borg/upgrade/modkit/offsite, 1750), EQUIPMENT("KA Holster", /obj/item/clothing/accessory/holster/waist/kinetic_accelerator, 350), EQUIPMENT("KA Super Chassis", /obj/item/borg/upgrade/modkit/chassis_mod, 250), EQUIPMENT("KA Hyper Chassis", /obj/item/borg/upgrade/modkit/chassis_mod/orange, 300), EQUIPMENT("KA Adjustable Tracer Rounds",/obj/item/borg/upgrade/modkit/tracer/adjustable, 175), EQUIPMENT("KA White Tracer Rounds", /obj/item/borg/upgrade/modkit/tracer, 125), + EQUIPMENT("Premium Kinetic Accelerator",/obj/item/weapon/gun/energy/kinetic_accelerator/premiumka, 12000), ) prize_list["Digging Tools"] = list( // EQUIPMENT("Diamond Pickaxe", /obj/item/weapon/pickaxe/diamond, 2000), @@ -164,6 +167,7 @@ EQUIPMENT("Plush Toy", /obj/random/plushie, 300), EQUIPMENT("Soap", /obj/item/weapon/soap/nanotrasen, 200), EQUIPMENT("Thalers - 100", /obj/item/weapon/spacecash/c100, 1000), + EQUIPMENT("Thalers - 1000", /obj/item/weapon/spacecash/c1000, 10000), EQUIPMENT("Umbrella", /obj/item/weapon/melee/umbrella/random, 200), EQUIPMENT("Whiskey", /obj/item/weapon/reagent_containers/food/drinks/bottle/whiskey, 125), ) @@ -283,7 +287,10 @@ return remove_points(inserted_id, prize.cost) - new prize.equipment_path(loc) + //VOREStation Edit Start + var/obj/I = new prize.equipment_path(loc) + I.persist_storable = FALSE + //VOREStation Edit End flick(icon_vend, src) //VOREStation Add else flick(icon_deny, src) //VOREStation Add diff --git a/code/modules/mining/ore_redemption_machine/survey_vendor.dm b/code/modules/mining/ore_redemption_machine/survey_vendor.dm index 1fc2a3f9b5..d14e663b47 100644 --- a/code/modules/mining/ore_redemption_machine/survey_vendor.dm +++ b/code/modules/mining/ore_redemption_machine/survey_vendor.dm @@ -65,6 +65,8 @@ EQUIPMENT("GPS Device", /obj/item/device/gps/mining, 10), EQUIPMENT("Jump Boots", /obj/item/clothing/shoes/bhop, 250), EQUIPMENT("Mini-Translocator", /obj/item/device/perfect_tele/one_beacon, 120), + EQUIPMENT("Survey Tools - Mapping Unit", /obj/item/device/mapping_unit, 150), + EQUIPMENT("Survey Tools - Mapping Beacon", /obj/item/device/holomap_beacon, 25), EQUIPMENT("Survival Equipment - Insulated Poncho", /obj/random/thermalponcho, 75), EQUIPMENT("Survival Equipment - Glowstick", /obj/item/device/flashlight/glowstick, 5), EQUIPMENT("Survival Equipment - Flare", /obj/item/device/flashlight/flare, 5), diff --git a/code/modules/mob/_modifiers/crusher_mark.dm b/code/modules/mob/_modifiers/crusher_mark.dm index 9af2980624..96ce129aad 100644 --- a/code/modules/mob/_modifiers/crusher_mark.dm +++ b/code/modules/mob/_modifiers/crusher_mark.dm @@ -2,34 +2,29 @@ name = "destabilized" desc = "You've been struck by a destabilizing bolt. By all accounts, this is probably a bad thing." stacks = MODIFIER_STACK_EXTEND - on_created_text = "You feel destabilized." - on_expired_text = "You feel stable again." + on_created_text = "You feel physically unstable." + on_expired_text = "You feel physically stable again." var/mutable_appearance/marked_underlay var/obj/item/weapon/kinetic_crusher/hammer_synced -/* -/datum/modifier/New(var/new_holder, var/new_origin) - holder = new_holder - if(new_origin) - origin = weakref(new_origin) - else // We assume the holder caused the modifier if not told otherwise. - origin = weakref(holder) - ..() -/mob/living/proc/add_modifier(var/modifier_type, var/expire_at = null, var/mob/living/origin = null, var/suppress_failure = FALSE) -*/ - /datum/modifier/crusher_mark/New(var/new_holder, var/new_origin) . = ..() if(isliving(new_origin)) var/mob/living/origin = new_origin - var/obj/item/weapon/kinetic_crusher/to_sync = locate(/obj/item/weapon/kinetic_crusher) in origin - if(to_sync) - hammer_synced = to_sync + var/obj/item/weapon/kinetic_crusher/to_sync + if(istype(origin.get_active_hand(), /obj/item/weapon/kinetic_crusher)) + to_sync = origin.get_active_hand() + else if (istype(origin.get_inactive_hand(), /obj/item/weapon/kinetic_crusher)) + to_sync = origin.get_inactive_hand() + if(to_sync) // did we find it? + hammer_synced = to_sync // go ahead if(hammer_synced? hammer_synced.can_mark(holder) : TRUE) marked_underlay = mutable_appearance('icons/effects/effects.dmi', "shield2") marked_underlay.pixel_x = -holder.pixel_x marked_underlay.pixel_y = -holder.pixel_y holder.underlays += marked_underlay + else + Destroy() /datum/modifier/crusher_mark/Destroy() hammer_synced = null diff --git a/code/modules/mob/_modifiers/traits_phobias.dm b/code/modules/mob/_modifiers/traits_phobias.dm index 87f8ecc446..d8bd08a549 100644 --- a/code/modules/mob/_modifiers/traits_phobias.dm +++ b/code/modules/mob/_modifiers/traits_phobias.dm @@ -415,7 +415,10 @@ if(istype(thing, /obj/structure/blob)) // blobs are uncomfortable things fear_amount += 3 - if(istype(thing, /obj/effect/alien/resin)) // Resin's a bit slimy according to its own description. + if(istype(thing, /obj/structure/alien)) // Pretty much anything made by xenos are slimey in some way. + fear_amount += 1 + + if(istype(thing, /obj/effect/alien/weeds)) // Disgusting slimey carpet. fear_amount += 1 if(istype(thing, /obj/item/weed_extract)) diff --git a/code/modules/mob/dead/observer/observer.dm b/code/modules/mob/dead/observer/observer.dm index b4b2fd180f..2d991e7290 100644 --- a/code/modules/mob/dead/observer/observer.dm +++ b/code/modules/mob/dead/observer/observer.dm @@ -638,6 +638,12 @@ This is the proc mobs get to turn into a ghost. Forked from ghostize due to comp to_chat(src, "Spawning as a mouse is currently disabled.") return + //VOREStation Add Start + if(jobban_isbanned(src, "GhostRoles")) + to_chat(src, "You cannot become a mouse because you are banned from playing ghost roles.") + return + //VOREStation Add End + if(!MayRespawn(1)) return diff --git a/code/modules/mob/death.dm b/code/modules/mob/death.dm index 1badc92926..c20b00684d 100644 --- a/code/modules/mob/death.dm +++ b/code/modules/mob/death.dm @@ -1,7 +1,8 @@ //This is the proc for gibbing a mob. Cannot gib ghosts. //added different sort of gibs and animations. N /mob/proc/gib(anim="gibbed-m", do_gibs, gib_file = 'icons/mob/mob.dmi') - death(1) + if(stat != DEAD) + death(1) transforming = 1 canmove = 0 icon = null @@ -70,6 +71,7 @@ if(stat == DEAD) return 0 + SEND_SIGNAL(src, COMSIG_MOB_DEATH, gibbed) if(src.loc && istype(loc,/obj/belly) || istype(loc,/obj/item/device/dogborg/sleeper)) deathmessage = "no message" //VOREStation Add - Prevents death messages from inside mobs facing_dir = null @@ -100,7 +102,7 @@ if(mind) mind.store_memory("Time of death: [stationtime2text()]", 0) living_mob_list -= src dead_mob_list |= src - + set_respawn_timer() updateicon() handle_regular_hud_updates() diff --git a/code/modules/mob/hear_say.dm b/code/modules/mob/hear_say.dm index 18cd0ab750..2c0de82adc 100644 --- a/code/modules/mob/hear_say.dm +++ b/code/modules/mob/hear_say.dm @@ -185,7 +185,7 @@ var/speaker_name = handle_speaker_name(speaker, vname, hard_to_hear) var/track = handle_track(message, verb, speaker, speaker_name, hard_to_hear) - message = encode_html_emphasis(message) + message = "[encode_html_emphasis(message)][part_c]" if((sdisabilities & DEAF) || ear_deaf) if(prob(20)) diff --git a/code/modules/mob/holder.dm b/code/modules/mob/holder.dm index e4f5eb1d08..5b6d155640 100644 --- a/code/modules/mob/holder.dm +++ b/code/modules/mob/holder.dm @@ -28,20 +28,29 @@ var/list/holder_mob_icon_cache = list() /obj/item/weapon/holder/Initialize(mapload, mob/held) ASSERT(ismob(held)) . = ..() + held.forceMove(src) + START_PROCESSING(SSobj, src) + +/obj/item/weapon/holder/Entered(mob/held, atom/OldLoc) + if(held_mob) + held.forceMove(get_turf(src)) + return + ASSERT(ismob(held)) + . = ..() held_mob = held original_vis_flags = held.vis_flags held.vis_flags = VIS_INHERIT_ID|VIS_INHERIT_LAYER|VIS_INHERIT_PLANE - - held.forceMove(src) vis_contents += held name = held.name original_transform = held.transform held.transform = null - // I really hate this, but I'm sleepy and unable to figure out a nice stateful way to do it - // Entered and Exited seem ideal but all the inventory procs are trash and put items on - // turfs before you when manhandling things in/out of backpacks and inventory slots. - START_PROCESSING(SSobj, src) +/obj/item/weapon/holder/Exited(atom/movable/thing, atom/OldLoc) + if(thing == held_mob) + held_mob.transform = original_transform + held_mob.vis_flags = original_vis_flags + held_mob = null + ..() /obj/item/weapon/holder/Destroy() STOP_PROCESSING(SSobj, src) @@ -91,7 +100,7 @@ var/list/holder_mob_icon_cache = list() else if(istype(loc, /obj/item/clothing/accessory/holster)) var/obj/item/clothing/accessory/holster/holster = loc if(holster.holstered == src) - holster.clear_holster() + holster.clear_holster() to_chat(held, "You extricate yourself from [holster].") forceMove(get_turf(src)) else if(isitem(loc)) @@ -120,11 +129,30 @@ var/list/holder_mob_icon_cache = list() item_state = held.icon_state /obj/item/weapon/holder/mouse + name = "mouse" + desc = "It's a small rodent." + item_state = "mouse_gray" + slot_flags = SLOT_EARS | SLOT_HEAD | SLOT_ID + origin_tech = list(TECH_BIO = 2) w_class = ITEMSIZE_TINY -/obj/item/weapon/holder/pai/Initialize(mapload, mob/held) - . = ..() - item_state = held.icon_state +/obj/item/weapon/holder/mouse/white + item_state = "mouse_white" + +/obj/item/weapon/holder/mouse/gray + item_state = "mouse_gray" + +/obj/item/weapon/holder/mouse/brown + item_state = "mouse_brown" + +/obj/item/weapon/holder/mouse/black + item_state = "mouse_black" + +/obj/item/weapon/holder/mouse/operative + item_state = "mouse_operative" + +/obj/item/weapon/holder/mouse/rat + item_state = "mouse_rat" /obj/item/weapon/holder/possum origin_tech = list(TECH_BIO = 2) @@ -259,8 +287,6 @@ var/list/holder_mob_icon_cache = list() /mob/living/MouseDrop(var/atom/over_object) var/mob/living/carbon/human/H = over_object if(holder_type && issmall(src) && istype(H) && !H.lying && Adjacent(H) && (src.a_intent == I_HELP && H.a_intent == I_HELP)) //VOREStation Edit - if(istype(src, /mob/living/simple_mob/animal/passive/mouse)) //vorestation edit - return ..() //vorestation edit if(!issmall(H) || !istype(src, /mob/living/carbon/human)) get_scooped(H, (usr == src)) return diff --git a/code/modules/mob/inventory.dm b/code/modules/mob/inventory.dm index f007b5c8dc..445bd3895e 100644 --- a/code/modules/mob/inventory.dm +++ b/code/modules/mob/inventory.dm @@ -75,7 +75,7 @@ var/list/slot_equipment_priority = list( \ /mob/proc/equip_voidsuit_to_slot_or_del_with_refit(obj/item/clothing/suit/space/void/W as obj, slot, species = SPECIES_HUMAN) W.refit_for_species(species) return equip_to_slot_if_possible(W, slot, 1, 1, 0) - + /mob/proc/equip_voidhelm_to_slot_or_del_with_refit(obj/item/clothing/head/helmet/space/void/W as obj, slot, species = SPECIES_HUMAN) W.refit_for_species(species) return equip_to_slot_if_possible(W, slot, 1, 1, 0) diff --git a/code/modules/mob/language/station.dm b/code/modules/mob/language/station.dm index 32c579f82d..85bd64c0fc 100644 --- a/code/modules/mob/language/station.dm +++ b/code/modules/mob/language/station.dm @@ -7,7 +7,7 @@ colour = "soghun" key = "q" machine_understands = 0 - flags = RESTRICTED + flags = WHITELISTED // RESTRICTED would make this completely unavailable from character select syllables = list("hs","zt","kr","st","sh") /datum/language/diona_local/get_random_name() @@ -20,7 +20,7 @@ desc = "A complex language known instinctively by Dionaea, 'spoken' by emitting modulated radio waves. This version uses low frequency waves for slow communication at long ranges." key = "w" machine_understands = 0 - flags = RESTRICTED | HIVEMIND + flags = WHITELISTED | HIVEMIND // RESTRICTED would make this completely unavailable from character select /datum/language/unathi name = LANGUAGE_UNATHI diff --git a/code/modules/mob/language/station_vr.dm b/code/modules/mob/language/station_vr.dm index 66745ca916..17b756f1f8 100644 --- a/code/modules/mob/language/station_vr.dm +++ b/code/modules/mob/language/station_vr.dm @@ -149,6 +149,17 @@ colour = "spacer" machine_understands = TRUE +/datum/language/tavan + name = LANGUAGE_TAVAN + desc = "A language native to the Altevians, it has been adopted by other rodent faring species over time." + key = "E" + speech_verb = "squeaks" + whisper_verb = "squiks" + exclaim_verb = "squeaks loudly" + syllables = list ("sque", "uik", "squeak", "squee", "eak", "eek", "uek", "squik", + "squeek", "sq", "squee", "ee", "ek", "ak", "ueak", "squea") + colour = "tavan" + /datum/language/unathi flags = 0 /datum/language/tajaran diff --git a/code/modules/mob/living/bot/bot_vr.dm b/code/modules/mob/living/bot/bot_vr.dm index 958db0dc9f..19fc538eb6 100644 --- a/code/modules/mob/living/bot/bot_vr.dm +++ b/code/modules/mob/living/bot/bot_vr.dm @@ -1,2 +1,5 @@ /mob/living/bot - no_vore = TRUE \ No newline at end of file + no_vore = TRUE + devourable = FALSE + feeding = FALSE + can_be_drop_pred = FALSE \ No newline at end of file diff --git a/code/modules/mob/living/bot/floorbot.dm b/code/modules/mob/living/bot/floorbot.dm index f525230124..9e869e0d81 100644 --- a/code/modules/mob/living/bot/floorbot.dm +++ b/code/modules/mob/living/bot/floorbot.dm @@ -298,8 +298,7 @@ new /obj/item/device/assembly/prox_sensor(Tsec) if(prob(50)) new /obj/item/robot_parts/l_arm(Tsec) - var/obj/item/stack/tile/floor/T = new /obj/item/stack/tile/floor(Tsec) - T.amount = amount + new /obj/item/stack/tile/floor(Tsec, amount) var/datum/effect/effect/system/spark_spread/s = new /datum/effect/effect/system/spark_spread s.set_up(3, 1, src) s.start() diff --git a/code/modules/mob/living/bot/medbot.dm b/code/modules/mob/living/bot/medbot.dm index 42f3bff06c..39b0b882bb 100644 --- a/code/modules/mob/living/bot/medbot.dm +++ b/code/modules/mob/living/bot/medbot.dm @@ -451,7 +451,7 @@ return treatment_emag // If they're injured, we're using a beaker, and they don't have on of the chems in the beaker - if(reagent_glass && use_beaker && ((H.getBruteLoss() >= heal_threshold) || (H.getToxLoss() >= heal_threshold) || (H.getToxLoss() >= heal_threshold) || (H.getOxyLoss() >= (heal_threshold + 15)))) + if(reagent_glass && use_beaker && ((H.getBruteLoss() >= heal_threshold) || (H.getToxLoss() >= heal_threshold) || (H.getFireLoss() >= heal_threshold) || (H.getOxyLoss() >= (heal_threshold + 15)))) for(var/datum/reagent/R in reagent_glass.reagents.reagent_list) if(!H.reagents.has_reagent(R)) return 1 diff --git a/code/modules/mob/living/butchering.dm b/code/modules/mob/living/butchering.dm index b46abcac01..14adae33a3 100644 --- a/code/modules/mob/living/butchering.dm +++ b/code/modules/mob/living/butchering.dm @@ -1,12 +1,13 @@ /mob/living - var/meat_amount = 0 // How much meat to drop from this mob when butchered - var/obj/meat_type // The meat object to drop + var/meat_amount = 0 // How much meat to drop from this mob when butchered + var/obj/meat_type // The meat object to drop var/gib_on_butchery = FALSE + var/butchery_drops_organs = TRUE // Do we spawn and/or drop organs when butchered? - var/list/butchery_loot // Associated list, path = number. + var/list/butchery_loot // Associated list, path = number. // Harvest an animal's delicious byproducts /mob/living/proc/harvest(var/mob/user, var/obj/item/I) @@ -40,7 +41,7 @@ butchery_loot.Cut() butchery_loot = null - if(LAZYLEN(organs)) + if(LAZYLEN(organs) && butchery_drops_organs) organs_by_name.Cut() for(var/path in organs) @@ -62,7 +63,7 @@ OR.removed() organs -= OR - if(LAZYLEN(internal_organs)) + if(LAZYLEN(internal_organs) && butchery_drops_organs) internal_organs_by_name.Cut() for(var/path in internal_organs) diff --git a/code/modules/mob/living/carbon/give.dm b/code/modules/mob/living/carbon/give.dm index c361959976..43bab179d6 100644 --- a/code/modules/mob/living/carbon/give.dm +++ b/code/modules/mob/living/carbon/give.dm @@ -1,42 +1,46 @@ -/mob/living/carbon/human/verb/give(var/mob/living/carbon/target in living_mobs(1)) +/mob/living/verb/give(var/mob/living/target in living_mobs(1)) set category = "IC" set name = "Give" - // TODO : Change to incapacitated() on merge. - if(src.stat || src.lying || src.resting || src.handcuffed) + do_give(target) + +/mob/living/proc/do_give(var/mob/living/carbon/human/target) + + if(src.incapacitated()) return - if(!istype(target) || target.stat || target.lying || target.resting || target.handcuffed || target.client == null) + if(!istype(target) || target.incapacitated() || target.client == null) return var/obj/item/I = src.get_active_hand() if(!I) I = src.get_inactive_hand() if(!I) - to_chat(src, "You don't have anything in your hands to give to \the [target].") + to_chat(src, SPAN_WARNING("You don't have anything in your hands to give to \the [target].")) return - if(tgui_alert(target,"[src] wants to give you \a [I]. Will you accept it?","Item Offer",list("Yes","No")) == "No") //VOREStation Edit - make yes on the left to be consistent with other dialogs - target.visible_message("\The [src] tried to hand \the [I] to \the [target], \ - but \the [target] didn't want it.") + usr.visible_message(SPAN_NOTICE("\The [usr] holds out \the [I] to \the [target]."), SPAN_NOTICE("You hold out \the [I] to \the [target], waiting for them to accept it.")) + + if(tgui_alert(target,"[src] wants to give you \a [I]. Will you accept it?","Item Offer",list("Yes","No")) == "No") + target.visible_message(SPAN_NOTICE("\The [src] tried to hand \the [I] to \the [target], but \the [target] didn't want it.")) return if(!I) return if(!Adjacent(target)) - to_chat(src, "You need to stay in reaching distance while giving an object.") - to_chat(target, "\The [src] moved too far away.") + to_chat(src, SPAN_WARNING("You need to stay in reaching distance while giving an object")) + to_chat(target, SPAN_WARNING("\The [src] moved too far away.")) return if(I.loc != src || !src.item_is_in_hands(I)) - to_chat(src, "You need to keep the item in your hands.") - to_chat(target, "\The [src] seems to have given up on passing \the [I] to you.") + to_chat(src, SPAN_WARNING("You need to keep the item in your hands.")) + to_chat(target, SPAN_WARNING("\The [src] seems to have given up on passing \the [I] to you.")) return if(target.hands_are_full()) - to_chat(target, "Your hands are full.") - to_chat(src, "Their hands are full.") + to_chat(target, SPAN_WARNING("Your hands are full.")) + to_chat(src, SPAN_WARNING("Their hands are full.")) return if(src.unEquip(I)) target.put_in_hands(I) // If this fails it will just end up on the floor, but that's fitting for things like dionaea. - target.visible_message("\The [src] handed \the [I] to \the [target].") + target.visible_message(SPAN_NOTICE("\The [src] handed \the [I] to \the [target]")) diff --git a/code/modules/mob/living/carbon/human/death_vr.dm b/code/modules/mob/living/carbon/human/death_vr.dm index ca319be6e4..47d5b88589 100644 --- a/code/modules/mob/living/carbon/human/death_vr.dm +++ b/code/modules/mob/living/carbon/human/death_vr.dm @@ -1,13 +1,14 @@ /mob/living/carbon/human/gib() - - //Drop the NIF, they're expensive, why not recover them? Also important for prometheans. + + //Drop the NIF, they're expensive, why not recover them? if(nif) var/obj/item/device/nif/deadnif = nif //Unimplant removes the reference on the mob - deadnif.unimplant(src) - deadnif.forceMove(drop_location()) - deadnif.throw_at(get_edge_target_turf(src,pick(alldirs)), rand(1,3), round(30/deadnif.w_class)) - deadnif.wear(10) //Presumably it's gone through some shit if they got gibbed? - + if(!deadnif.gib_nodrop) + deadnif.unimplant(src) + deadnif.forceMove(drop_location()) + deadnif.throw_at(get_edge_target_turf(src,pick(alldirs)), rand(1,3), round(30/deadnif.w_class)) + deadnif.wear(10) //Presumably it's gone through some shit if they got gibbed? + . = ..() //Surprisingly this is only called for humans, but whatever! @@ -15,10 +16,10 @@ //Not in a belly? Well, too bad! if(!isbelly(H.loc)) return TRUE - + //What belly! var/obj/belly/B = H.loc - + //Were they digesting and we have a mind you can update? //Technically allows metagaming by allowing buddies to turn on digestion for like 2 seconds // to finish off critically wounded friends to avoid resleeving sickness, but like diff --git a/code/modules/mob/living/carbon/human/emote.dm b/code/modules/mob/living/carbon/human/emote.dm index a24632e8e7..63285bd597 100644 --- a/code/modules/mob/living/carbon/human/emote.dm +++ b/code/modules/mob/living/carbon/human/emote.dm @@ -96,6 +96,7 @@ var/list/_human_default_emotes = list( //VOREStation Add /decl/emote/audible/awoo, /decl/emote/audible/awoo2, + /decl/emote/audible/belch, /decl/emote/audible/growl, /decl/emote/audible/woof, /decl/emote/audible/woof2, @@ -133,7 +134,8 @@ var/list/_human_default_emotes = list( /decl/emote/visible/blep, /decl/emote/helper/vwag, - /decl/emote/helper/vflap + /decl/emote/helper/vflap, + /decl/emote/audible/prbt //VOREStation Add End ) @@ -225,6 +227,7 @@ var/list/_simple_mob_default_emotes = list( /decl/emote/visible/flip, /decl/emote/audible/awoo, /decl/emote/audible/awoo2, + /decl/emote/audible/belch, /decl/emote/audible/growl, /decl/emote/audible/woof, /decl/emote/audible/woof2, @@ -259,7 +262,8 @@ var/list/_simple_mob_default_emotes = list( /decl/emote/audible/spiderpurr, /decl/emote/audible/squeaky, /decl/emote/visible/mlem, - /decl/emote/visible/blep + /decl/emote/visible/blep, + /decl/emote/audible/prbt ) //VOREStation Add End diff --git a/code/modules/mob/living/carbon/human/human_helpers.dm b/code/modules/mob/living/carbon/human/human_helpers.dm index 3e5dce2658..692f121ba8 100644 --- a/code/modules/mob/living/carbon/human/human_helpers.dm +++ b/code/modules/mob/living/carbon/human/human_helpers.dm @@ -95,6 +95,14 @@ /mob/living/carbon/human/get_gender() return identifying_gender ? identifying_gender : gender +/mob/living/carbon/human/name_gender() /// Returns proper names for gender identites + if(identifying_gender == "plural") + return "other" + if(identifying_gender == "neuter") + return "none" + else + return get_gender() + // This is the 'mechanical' check for synthetic-ness, not appearance // Returns the company that made the synthetic /mob/living/carbon/human/isSynthetic() diff --git a/code/modules/mob/living/carbon/human/inventory.dm b/code/modules/mob/living/carbon/human/inventory.dm index 119d349105..d5311f79a5 100644 --- a/code/modules/mob/living/carbon/human/inventory.dm +++ b/code/modules/mob/living/carbon/human/inventory.dm @@ -173,7 +173,8 @@ This saves us from having to call add_fingerprint() any time something is put in if(I.flags_inv & (BLOCKHAIR|BLOCKHEADHAIR)) update_hair(0) //rebuild hair update_inv_ears(0) - if(internal) + // If this is how the internals are connected, disable them + if(internal && !(head?.item_flags & AIRTIGHT)) if(internals) internals.icon_state = "internal0" internal = null diff --git a/code/modules/mob/living/carbon/human/species/outsider/vox.dm b/code/modules/mob/living/carbon/human/species/outsider/vox.dm index e8ff96175a..bb80c4c9d4 100644 --- a/code/modules/mob/living/carbon/human/species/outsider/vox.dm +++ b/code/modules/mob/living/carbon/human/species/outsider/vox.dm @@ -109,4 +109,7 @@ H.internal = H.r_hand H.internal = locate(/obj/item/weapon/tank) in H.contents if(istype(H.internal,/obj/item/weapon/tank) && H.internals) - H.internals.icon_state = "internal1" \ No newline at end of file + H.internals.icon_state = "internal1" + +/datum/species/vox/get_perfect_belly_air_type() + return /datum/gas_mixture/belly_air/vox \ No newline at end of file diff --git a/code/modules/mob/living/carbon/human/species/shadekin/shadekin_abilities.dm b/code/modules/mob/living/carbon/human/species/shadekin/shadekin_abilities.dm index 8f22ca4907..e336a461e3 100644 --- a/code/modules/mob/living/carbon/human/species/shadekin/shadekin_abilities.dm +++ b/code/modules/mob/living/carbon/human/species/shadekin/shadekin_abilities.dm @@ -108,6 +108,7 @@ sleep(5) //The duration of the TP animation canmove = original_canmove alpha = initial(alpha) + remove_modifiers_of_type(/datum/modifier/shadekin_phase_vision) //Potential phase-in vore if(can_be_drop_pred) //Toggleable in vore panel @@ -143,6 +144,7 @@ var/obj/effect/temp_visual/shadekin/phase_out/phaseanim = new /obj/effect/temp_visual/shadekin/phase_out(src.loc) phaseanim.dir = dir alpha = 0 + add_modifier(/datum/modifier/shadekin_phase_vision) sleep(5) invisibility = INVISIBILITY_LEVEL_TWO see_invisible = INVISIBILITY_LEVEL_TWO @@ -155,6 +157,10 @@ density = FALSE force_max_speed = TRUE +/datum/modifier/shadekin_phase_vision + name = "Shadekin Phase Vision" + vision_flags = SEE_THRU + ////////////////////////// /// REGENERATE OTHER /// ////////////////////////// diff --git a/code/modules/mob/living/carbon/human/species/species.dm b/code/modules/mob/living/carbon/human/species/species.dm index 91bc81f210..995bcfa97f 100644 --- a/code/modules/mob/living/carbon/human/species/species.dm +++ b/code/modules/mob/living/carbon/human/species/species.dm @@ -53,9 +53,9 @@ var/taste_sensitivity = TASTE_NORMAL // How sensitive the species is to minute tastes. var/allergens = null // Things that will make this species very sick - var/allergen_reaction = AG_TOX_DMG|AG_OXY_DMG|AG_EMOTE|AG_PAIN|AG_WEAKEN // What type of reactions will you have? These the 'main' options and are intended to approximate anaphylactic shock at high doses. - var/allergen_damage_severity = 1.2 // How bad are reactions to the allergen? Touch with extreme caution. - var/allergen_disable_severity = 3 // Whilst this determines how long nonlethal effects last and how common emotes are. + var/allergen_reaction = AG_TOX_DMG|AG_OXY_DMG|AG_EMOTE|AG_PAIN|AG_BLURRY|AG_CONFUSE // What type of reactions will you have? These the 'main' options and are intended to approximate anaphylactic shock at high doses. VOREStation Edit'd. + var/allergen_damage_severity = 5 // How bad are reactions to the allergen? Touch with extreme caution. VOREStation Edit'd. + var/allergen_disable_severity = 4 // Whilst this determines how long nonlethal effects last and how common emotes are. VOREStation Edit'd. var/min_age = 17 var/max_age = 70 @@ -208,6 +208,7 @@ var/greater_form // Greater form, if any, ie. human for monkeys. var/holder_type var/gluttonous // Can eat some mobs. 1 for mice, 2 for monkeys, 3 for people. + var/soft_landing = FALSE // Can fall down and land safely on small falls. var/rarity_value = 1 // Relative rarity/collector value for this species. var/economic_modifier = 2 // How much money this species makes @@ -541,6 +542,20 @@ H.adjustToxLoss(amount) /datum/species/proc/handle_falling(mob/living/carbon/human/H, atom/hit_atom, damage_min, damage_max, silent, planetary) + if(soft_landing) + if(planetary || !istype(H)) + return FALSE + + var/turf/landing = get_turf(hit_atom) + if(!istype(landing)) + return FALSE + + if(!silent) + to_chat(H, SPAN_NOTICE("You manage to lower impact of the fall and land safely.")) + landing.visible_message("\The [H] lowers down from above, landing safely.") + playsound(H, "rustle", 25, 1) + return TRUE + return FALSE /datum/species/proc/post_spawn_special(mob/living/carbon/human/H) diff --git a/code/modules/mob/living/carbon/human/species/species_getters.dm b/code/modules/mob/living/carbon/human/species/species_getters.dm index 7b635613ea..23c2de457f 100644 --- a/code/modules/mob/living/carbon/human/species/species_getters.dm +++ b/code/modules/mob/living/carbon/human/species/species_getters.dm @@ -79,9 +79,10 @@ /datum/species/proc/get_environment_discomfort(var/mob/living/carbon/human/H, var/msg_type) - if(!prob(5)) + if(!prob(10)) return + /* // Commented out because clothes should not prevent you from feeling cold if your body temperature has already dropped. You can absolutely feel cold through clothing, and feel too warm without clothing. ??? var/covered = 0 // Basic coverage can help. for(var/obj/item/clothing/clothes in H) if(H.item_is_in_hands(clothes)) @@ -89,14 +90,13 @@ if((clothes.body_parts_covered & UPPER_TORSO) && (clothes.body_parts_covered & LOWER_TORSO)) covered = 1 break + */ switch(msg_type) if("cold") - if(!covered) - to_chat(H, "[pick(cold_discomfort_strings)]") + to_chat(H, "[pick(cold_discomfort_strings)]") if("heat") - if(covered) - to_chat(H, "[pick(heat_discomfort_strings)]") + to_chat(H, "[pick(heat_discomfort_strings)]") /datum/species/proc/get_random_name(var/gender) if(!name_language) diff --git a/code/modules/mob/living/carbon/human/species/species_getters_vr.dm b/code/modules/mob/living/carbon/human/species/species_getters_vr.dm index 4ba9305acc..8bccade358 100644 --- a/code/modules/mob/living/carbon/human/species/species_getters_vr.dm +++ b/code/modules/mob/living/carbon/human/species/species_getters_vr.dm @@ -4,4 +4,7 @@ /datum/species/proc/get_wing(var/mob/living/carbon/human/H) return wing /datum/species/proc/get_wing_animation(var/mob/living/carbon/human/H) - return wing_animation \ No newline at end of file + return wing_animation + +/datum/species/proc/get_perfect_belly_air_type(var/mob/living/carbon/human/H) + return /datum/gas_mixture/belly_air //Default \ No newline at end of file diff --git a/code/modules/mob/living/carbon/human/species/species_hud.dm b/code/modules/mob/living/carbon/human/species/species_hud.dm index 9212e9e199..bf0c36b777 100644 --- a/code/modules/mob/living/carbon/human/species/species_hud.dm +++ b/code/modules/mob/living/carbon/human/species/species_hud.dm @@ -71,4 +71,9 @@ gear = list( "mask" = list("loc" = ui_shoes, "name" = "Mask", "slot" = slot_wear_mask, "state" = "mask", "toggle" = 1), "back" = list("loc" = ui_sstore1, "name" = "Back", "slot" = slot_back, "state" = "back"), + "eyes" = list("loc" = ui_glasses, "name" = "Glasses", "slot" = slot_glasses, "state" = "glasses","toggle" = 1), + "l_ear" = list("loc" = ui_l_ear, "name" = "Left Ear", "slot" = slot_l_ear, "state" = "ears", "toggle" = 1), + "r_ear" = list("loc" = ui_r_ear, "name" = "Right Ear", "slot" = slot_r_ear, "state" = "ears", "toggle" = 1), + "head" = list("loc" = ui_head, "name" = "Hat", "slot" = slot_head, "state" = "hair", "toggle" = 1), + "id" = list("loc" = ui_id, "name" = "ID", "slot" = slot_wear_id, "state" = "id") ) diff --git a/code/modules/mob/living/carbon/human/species/species_shapeshift_vr.dm b/code/modules/mob/living/carbon/human/species/species_shapeshift_vr.dm index fbd1921c55..40fad362d8 100644 --- a/code/modules/mob/living/carbon/human/species/species_shapeshift_vr.dm +++ b/code/modules/mob/living/carbon/human/species/species_shapeshift_vr.dm @@ -173,6 +173,6 @@ for(var/obj/item/organ/external/L as anything in src.organs) L.transparent = !L.transparent - visible_message("\The [src]'s interal composition seems to change.") + visible_message("\The [src]'s internal composition seems to change.") update_icons_body() update_hair() \ No newline at end of file diff --git a/code/modules/mob/living/carbon/human/species/species_vr.dm b/code/modules/mob/living/carbon/human/species/species_vr.dm index 486264e2c8..9d8703d617 100644 --- a/code/modules/mob/living/carbon/human/species/species_vr.dm +++ b/code/modules/mob/living/carbon/human/species/species_vr.dm @@ -81,6 +81,8 @@ var/list/blacklist = list("type", "loc", "client", "ckey") //Makes thorough copy of species datum. for(var/i in vars) + if(!(i in S.vars)) //Don't copy incompatible vars. + continue if(S.vars[i] != vars[i] && !islist(vars[i])) //If vars are same, no point in copying. if(i in blacklist) continue diff --git a/code/modules/mob/living/carbon/human/species/station/prometheans.dm b/code/modules/mob/living/carbon/human/species/station/prometheans.dm index ef841a3bab..b1c468dac7 100644 --- a/code/modules/mob/living/carbon/human/species/station/prometheans.dm +++ b/code/modules/mob/living/carbon/human/species/station/prometheans.dm @@ -45,7 +45,7 @@ var/datum/species/shapeshifter/promethean/prometheans female_cough_sounds = list('sound/effects/slime_squish.ogg') min_age = 1 - max_age = 10 + max_age = 16 economic_modifier = 3 diff --git a/code/modules/mob/living/carbon/human/species/station/protean_vr/protean_blob.dm b/code/modules/mob/living/carbon/human/species/station/protean_vr/protean_blob.dm index 3896871201..faf6b5f29d 100644 --- a/code/modules/mob/living/carbon/human/species/station/protean_vr/protean_blob.dm +++ b/code/modules/mob/living/carbon/human/species/station/protean_vr/protean_blob.dm @@ -14,7 +14,6 @@ health = 200 say_list_type = /datum/say_list/protean_blob - // ai_inactive = TRUE //Always off //VORESTATION AI TEMPORARY REMOVAL show_stat_health = FALSE //We will do it ourselves response_help = "pets" @@ -36,7 +35,7 @@ max_n2 = 0 minbodytemp = 0 maxbodytemp = 900 - movement_cooldown = 4 + movement_cooldown = 2 var/mob/living/carbon/human/humanform var/obj/item/organ/internal/nano/refactory/refactory @@ -93,7 +92,7 @@ /mob/living/simple_mob/protean_blob/get_available_emotes() return global._robot_default_emotes - + /mob/living/simple_mob/protean_blob/init_vore() return //Don't make a random belly, don't waste your time diff --git a/code/modules/mob/living/carbon/human/species/station/protean_vr/protean_powers.dm b/code/modules/mob/living/carbon/human/species/station/protean_vr/protean_powers.dm index 9c9ea41cb6..c6b353281b 100644 --- a/code/modules/mob/living/carbon/human/species/station/protean_vr/protean_powers.dm +++ b/code/modules/mob/living/carbon/human/species/station/protean_vr/protean_powers.dm @@ -215,8 +215,8 @@ to_chat(src,"You can't process [substance]!") return //Only a few things matter, the rest are best not cluttering the lists. - var/howmuch = input(src,"How much do you want to store? (0-[matstack.amount])","Select amount") as null|num - if(!howmuch || matstack != get_active_hand() || howmuch > matstack.amount) + var/howmuch = input(src,"How much do you want to store? (0-[matstack.get_amount()])","Select amount") as null|num + if(!howmuch || matstack != get_active_hand() || howmuch > matstack.get_amount()) return //Quietly fail var/actually_added = refactory.add_stored_material(substance,howmuch*matstack.perunit) diff --git a/code/modules/mob/living/carbon/human/species/station/protean_vr/protean_species.dm b/code/modules/mob/living/carbon/human/species/station/protean_vr/protean_species.dm index 71d48f0fc8..89155e9452 100755 --- a/code/modules/mob/living/carbon/human/species/station/protean_vr/protean_species.dm +++ b/code/modules/mob/living/carbon/human/species/station/protean_vr/protean_species.dm @@ -131,8 +131,7 @@ H.synth_color = TRUE /datum/species/protean/equip_survival_gear(var/mob/living/carbon/human/H) - var/obj/item/stack/material/steel/metal_stack = new() - metal_stack.amount = 3 + var/obj/item/stack/material/steel/metal_stack = new(null, 3) var/obj/item/clothing/accessory/permit/nanotech/permit = new() permit.set_name(H.real_name) @@ -148,10 +147,10 @@ if(!H) //Human could have been deleted in this amount of time. Observing does this, mannequins, etc. return if(!H.nif) - var/obj/item/device/nif/bioadap/new_nif = new() + var/obj/item/device/nif/protean/new_nif = new() new_nif.quick_implant(H) else - H.nif.durability = rand(21,25) + H.nif.durability = 25 /datum/species/protean/hug(var/mob/living/carbon/human/H, var/mob/living/target) return ..() //Wut @@ -173,13 +172,9 @@ to_chat(H, "You died as a Protean. Please sit out of the round for at least 60 minutes before respawning, to represent the time it would take to ship a new-you to the station.") - for(var/obj/item/organ/I in H.internal_organs) - I.removed() - - for(var/obj/item/I in H.contents) - H.drop_from_inventory(I) - - qdel(H) + spawn(1) + if(H) + H.gib() /datum/species/protean/handle_environment_special(var/mob/living/carbon/human/H) if((H.getActualBruteLoss() + H.getActualFireLoss()) > H.maxHealth*0.5 && isturf(H.loc)) //So, only if we're not a blob (we're in nullspace) or in someone (or a locker, really, but whatever) diff --git a/code/modules/mob/living/carbon/human/species/station/station.dm b/code/modules/mob/living/carbon/human/species/station/station.dm index 5bb036f5bd..46f66e02f0 100644 --- a/code/modules/mob/living/carbon/human/species/station/station.dm +++ b/code/modules/mob/living/carbon/human/species/station/station.dm @@ -235,7 +235,7 @@ base_color = "#333333" reagent_tag = IS_TAJARA - allergens = ALLERGEN_COFFEE + allergens = ALLERGEN_STIMULANT move_trail = /obj/effect/decal/cleanable/blood/tracks/paw @@ -249,13 +249,13 @@ cold_discomfort_level = 215 has_organ = list( //No appendix. - O_HEART = /obj/item/organ/internal/heart, + O_HEART = /obj/item/organ/internal/heart/tajaran, O_LUNGS = /obj/item/organ/internal/lungs, O_VOICE = /obj/item/organ/internal/voicebox, O_LIVER = /obj/item/organ/internal/liver, O_KIDNEYS = /obj/item/organ/internal/kidneys, O_BRAIN = /obj/item/organ/internal/brain, - O_EYES = /obj/item/organ/internal/eyes, + O_EYES = /obj/item/organ/internal/eyes/tajaran, O_STOMACH = /obj/item/organ/internal/stomach, O_INTESTINE = /obj/item/organ/internal/intestine ) @@ -467,6 +467,8 @@ if(!(K in covered)) H.apply_damage(light_amount/4, BURN, K, 0, 0, "Abnormal growths") +/datum/species/zaddat/get_perfect_belly_air_type() + return /datum/gas_mixture/belly_air/zaddat /datum/species/diona name = SPECIES_DIONA 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 ec058ac0d3..5788ded0be 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 @@ -996,4 +996,10 @@ if(new_silk_color) species.silk_color = new_silk_color +/mob/living/carbon/human/proc/toggle_eye_glow() + set name = "Toggle Eye Glowing" + set category = "Abilities" + species.has_glowing_eyes = !species.has_glowing_eyes + update_eyes() + to_chat(src, "Your eyes [species.has_glowing_eyes ? "are now" : "are no longer"] glowing.") diff --git a/code/modules/mob/living/carbon/human/species/station/station_vr.dm b/code/modules/mob/living/carbon/human/species/station/station_vr.dm index 96453b5e7b..b23a24c190 100644 --- a/code/modules/mob/living/carbon/human/species/station/station_vr.dm +++ b/code/modules/mob/living/carbon/human/species/station/station_vr.dm @@ -123,6 +123,7 @@ //brute_mod = 1.15 //burn_mod = 1.15 //gluttonous = 1 + soft_landing = TRUE num_alternate_languages = 3 secondary_langs = list(LANGUAGE_BIRDSONG) name_language = LANGUAGE_BIRDSONG @@ -208,6 +209,10 @@ /datum/species/vulpkanin name = SPECIES_VULPKANIN name_plural = "Vulpkanin" + blurb = "Vulpkanin are a species of sapient canine bipeds, who are the descendants of a lost colony during the waning days of a Precursor species, \ + from which their distant cousins, the Zorren, also originate from. Independent and iconoclast, they have abandoned the ideals of their forefathers \ + largely and prefer to look outwards as explorers and scientists to forge their own identity. They speak a guttural language known as 'Canilunzt' \ + which has a heavy emphasis on utilizing tail positioning and ear twitches to communicate intent." icobase = 'icons/mob/human_races/r_vulpkanin.dmi' deform = 'icons/mob/human_races/r_vulpkanin.dmi' // path = /mob/living/carbon/human/vulpkanin @@ -225,12 +230,6 @@ inherent_verbs = list(/mob/living/carbon/human/proc/lick_wounds, /mob/living/carbon/human/proc/tie_hair) - blurb = "Vulpkanin are a species of sharp-witted canine-pideds residing on the planet Altam just barely within the \ - dual-star Vazzend system. Their politically de-centralized society and independent natures have led them to become a species and \ - culture both feared and respected for their scientific breakthroughs. Discovery, loyalty, and utilitarianism dominates their lifestyles \ - to the degree it can cause conflict with more rigorous and strict authorities. They speak a guttural language known as 'Canilunzt' \ - which has a heavy emphasis on utilizing tail positioning and ear twitches to communicate intent." - wikilink="https://wiki.vore-station.net/Backstory#Vulpkanin" catalogue_data = list(/datum/category_item/catalogue/fauna/vulpkanin) @@ -362,6 +361,8 @@ min_age = 18 max_age = 80 + soft_landing = TRUE + base_color = "#EECEB3" blurb = "An Avian species, coming from a distant planet, the Rapalas are the very proud race.\ diff --git a/code/modules/mob/living/carbon/human/species/station/teshari.dm b/code/modules/mob/living/carbon/human/species/station/teshari.dm index 18a30a018c..6f24341889 100644 --- a/code/modules/mob/living/carbon/human/species/station/teshari.dm +++ b/code/modules/mob/living/carbon/human/species/station/teshari.dm @@ -55,6 +55,7 @@ gluttonous = 1 blood_volume = 400 hunger_factor = 0.2 + soft_landing = TRUE ambiguous_genders = TRUE @@ -141,7 +142,7 @@ /datum/mob_descriptor/build = -3 ) - var/static/list/flight_bodyparts = list( +/* var/static/list/flight_bodyparts = list( BP_L_ARM, BP_R_ARM, BP_L_HAND, @@ -150,7 +151,7 @@ var/static/list/flight_suit_blacklisted_types = list( /obj/item/clothing/suit/space, /obj/item/clothing/suit/straight_jacket - ) + )*/ default_emotes = list( /decl/emote/audible/teshsqueak, @@ -161,13 +162,13 @@ /datum/species/teshari/equip_survival_gear(var/mob/living/carbon/human/H) ..() H.equip_to_slot_or_del(new /obj/item/clothing/shoes/sandal(H),slot_shoes) - +/* /datum/species/teshari/handle_falling(mob/living/carbon/human/H, atom/hit_atom, damage_min, damage_max, silent, planetary) // Tesh can glide to save themselves from some falls. Basejumping bird // without parachute, or falling bird without free wings, goes splat. - // Are we landing from orbit, or handcuffed/unconscious/tied to something? + // Are we landing from orbit, or handcuffed/unconscious/tied to something? if(planetary || !istype(H) || H.incapacitated(INCAPACITATION_DEFAULT|INCAPACITATION_DISABLED)) return ..() @@ -211,3 +212,4 @@ H.Stun(1) playsound(H, "rustle", 25, 1) return TRUE +*/ \ No newline at end of file diff --git a/code/modules/mob/living/carbon/human/species/station/traits_vr/neutral.dm b/code/modules/mob/living/carbon/human/species/station/traits_vr/neutral.dm index 8cac58d59f..1c3818324a 100644 --- a/code/modules/mob/living/carbon/human/species/station/traits_vr/neutral.dm +++ b/code/modules/mob/living/carbon/human/species/station/traits_vr/neutral.dm @@ -155,6 +155,10 @@ custom_only = FALSE var_changes = list("has_glowing_eyes" = 1) +/datum/trait/neutral/glowing_eyes/apply(var/datum/species/S,var/mob/living/carbon/human/H) + ..(S,H) + H.verbs |= /mob/living/carbon/human/proc/toggle_eye_glow + /datum/trait/neutral/glowing_body name = "Glowing Body" desc = "Your body glows about as much as a PDA light! Settable color and toggle in Abilities tab ingame." @@ -170,7 +174,7 @@ //Allergen traits! Not available to any species with a base allergens var. /datum/trait/neutral/allergy name = "Allergy: Gluten" - desc = "You're highly allergic to gluten proteins, which are found in most common grains." + desc = "You're highly allergic to gluten proteins, which are found in most common grains. NB: By taking this trait, you acknowledge there is a significant risk your character may suffer a fatal reaction if exposed to this substance." cost = 0 custom_only = FALSE var/allergen = ALLERGEN_GRAINS @@ -181,73 +185,82 @@ /datum/trait/neutral/allergy/meat name = "Allergy: Meat" - desc = "You're highly allergic to just about any form of meat. You're probably better off just sticking to vegetables. NB: By taking this trait, you acknowledge there is a risk your character may suffer a fatal reaction if exposed to this substance." + desc = "You're highly allergic to just about any form of meat. You're probably better off just sticking to vegetables. NB: By taking this trait, you acknowledge there is a significant risk your character may suffer a fatal reaction if exposed to this substance." cost = 0 custom_only = FALSE allergen = ALLERGEN_MEAT /datum/trait/neutral/allergy/fish name = "Allergy: Fish" - desc = "You're highly allergic to fish. It's probably best to avoid seafood in general. NB: By taking this trait, you acknowledge there is a risk your character may suffer a fatal reaction if exposed to this substance." + desc = "You're highly allergic to fish. It's probably best to avoid seafood in general. NB: By taking this trait, you acknowledge there is a significant risk your character may suffer a fatal reaction if exposed to this substance." cost = 0 custom_only = FALSE allergen = ALLERGEN_FISH /datum/trait/neutral/allergy/fruit name = "Allergy: Fruit" - desc = "You're highly allergic to fruit. Vegetables are fine, but you should probably read up on how to tell the difference. Remember, tomatoes are a fruit. NB: By taking this trait, you acknowledge there is a risk your character may suffer a fatal reaction if exposed to this substance." + desc = "You're highly allergic to fruit. Vegetables are fine, but you should probably read up on how to tell the difference. Remember, tomatoes are a fruit. NB: By taking this trait, you acknowledge there is a significant risk your character may suffer a fatal reaction if exposed to this substance." cost = 0 custom_only = FALSE allergen = ALLERGEN_FRUIT /datum/trait/neutral/allergy/vegetable name = "Allergy: Vegetable" - desc = "You're highly allergic to vegetables. Fruit are fine, but you should probably read up on how to tell the difference. NB: By taking this trait, you acknowledge there is a risk your character may suffer a fatal reaction if exposed to this substance." + desc = "You're highly allergic to vegetables. Fruit are fine, but you should probably read up on how to tell the difference. NB: By taking this trait, you acknowledge there is a significant risk your character may suffer a fatal reaction if exposed to this substance." cost = 0 custom_only = FALSE allergen = ALLERGEN_VEGETABLE /datum/trait/neutral/allergy/nuts name = "Allergy: Nuts" - desc = "You're highly allergic to hard-shell seeds, such as peanuts. NB: By taking this trait, you acknowledge there is a risk your character may suffer a fatal reaction if exposed to this substance." + desc = "You're highly allergic to hard-shell seeds, such as peanuts. NB: By taking this trait, you acknowledge there is a significant risk your character may suffer a fatal reaction if exposed to this substance." cost = 0 custom_only = FALSE allergen = ALLERGEN_SEEDS /datum/trait/neutral/allergy/soy name = "Allergy: Soy" - desc = "You're highly allergic to soybeans, and some other kinds of bean. NB: By taking this trait, you acknowledge there is a risk your character may suffer a fatal reaction if exposed to this substance." + desc = "You're highly allergic to soybeans, and some other kinds of bean. NB: By taking this trait, you acknowledge there is a significant risk your character may suffer a fatal reaction if exposed to this substance." cost = 0 custom_only = FALSE allergen = ALLERGEN_BEANS /datum/trait/neutral/allergy/dairy name = "Allergy: Lactose" - desc = "You're highly allergic to lactose, and consequently, just about all forms of dairy. NB: By taking this trait, you acknowledge there is a risk your character may suffer a fatal reaction if exposed to this substance." + desc = "You're highly allergic to lactose, and consequently, just about all forms of dairy. NB: By taking this trait, you acknowledge there is a significant risk your character may suffer a fatal reaction if exposed to this substance." cost = 0 custom_only = FALSE allergen = ALLERGEN_DAIRY /datum/trait/neutral/allergy/fungi name = "Allergy: Fungi" - desc = "You're highly allergic to fungi such as mushrooms. NB: By taking this trait, you acknowledge there is a risk your character may suffer a fatal reaction if exposed to this substance." + desc = "You're highly allergic to fungi such as mushrooms. NB: By taking this trait, you acknowledge there is a significant risk your character may suffer a fatal reaction if exposed to this substance." cost = 0 custom_only = FALSE allergen = ALLERGEN_FUNGI /datum/trait/neutral/allergy/coffee name = "Allergy: Coffee" - desc = "You're highly allergic to coffee in specific. NB: By taking this trait, you acknowledge there is a risk your character may suffer a fatal reaction if exposed to this substance." + desc = "You're highly allergic to coffee in specific. NB: By taking this trait, you acknowledge there is a significant risk your character may suffer a fatal reaction if exposed to this substance." cost = 0 custom_only = FALSE allergen = ALLERGEN_COFFEE /datum/trait/neutral/allergen_reduced_effect name = "Reduced Allergen Reaction" - desc = "This trait halves the lethality of allergen reactions. If you don't have any allergens set, it does nothing. It does not apply to nonlethal reactions or special reactions (such as unathi drowsiness from sugars)." + desc = "This trait drastically reduces the effects of allergen reactions. If you don't have any allergens set, it does nothing. It does not apply to special reactions (such as unathi drowsiness from sugars)." cost = 0 custom_only = FALSE - var_changes = list("allergen_damage_severity" = 0.6) + var_changes = list("allergen_damage_severity" = 2.5, "allergen_disable_severity" = 3) + excludes = list(/datum/trait/neutral/allergen_increased_effect) + +/datum/trait/neutral/allergen_increased_effect + name = "Increased Allergen Reaction" + desc = "This trait drastically increases the effects of allergen reactions, enough that even a small dose can be lethal. If you don't have any allergens set, it does nothing. It does not apply to special reactions (such as unathi drowsiness from sugars)." + cost = 0 + custom_only = FALSE + var_changes = list("allergen_damage_severity" = 10, "allergen_disable_severity" = 6) + excludes = list(/datum/trait/neutral/allergen_reduced_effect) // Spicy Food Traits, from negative to positive. /datum/trait/neutral/spice_intolerance_extreme diff --git a/code/modules/mob/living/carbon/human/species/station/traits_vr/positive.dm b/code/modules/mob/living/carbon/human/species/station/traits_vr/positive.dm index ca67f1bb05..2ef1c8f422 100644 --- a/code/modules/mob/living/carbon/human/species/station/traits_vr/positive.dm +++ b/code/modules/mob/living/carbon/human/species/station/traits_vr/positive.dm @@ -113,6 +113,12 @@ H.verbs |= /mob/living/proc/flying_toggle H.verbs |= /mob/living/proc/start_wings_hovering +/datum/trait/positive/soft_landing + name = "Soft Landing" + desc = "You can fall from certain heights without suffering any injuries, be it via wings, lightness of frame or general dexterity." + cost = 1 + var_changes = list("soft_landing" = TRUE) + /datum/trait/positive/hardfeet name = "Hard Feet" desc = "Makes your nice clawed, scaled, hooved, armored, or otherwise just awfully calloused feet immune to glass shards." diff --git a/code/modules/mob/living/carbon/human/species/station/traits_vr/weaver_objs.dm b/code/modules/mob/living/carbon/human/species/station/traits_vr/weaver_objs.dm index 45aeefc2b5..fef1206c66 100644 --- a/code/modules/mob/living/carbon/human/species/station/traits_vr/weaver_objs.dm +++ b/code/modules/mob/living/carbon/human/species/station/traits_vr/weaver_objs.dm @@ -89,6 +89,7 @@ desc = "A silky, yet firm trap. Be careful not to step into it! Or don't..." icon_state = "trap" var/trap_active = TRUE + can_buckle = TRUE /obj/effect/weaversilk/trap/Crossed(atom/movable/AM as mob|obj) if(AM.is_incorporeal()) @@ -106,17 +107,18 @@ "You hear a squishy noise!" ) set_dir(L.dir) - can_buckle = TRUE buckle_mob(L) L.Stun(1) to_chat(L, "The sticky fibers of \the [src] ensnare, trapping you in place!") trap_active = FALSE - can_buckle = initial(can_buckle) desc += " Actually, it looks like it's been all spent." ..() +/obj/effect/weaversilk/trap/MouseDrop_T(atom/movable/AM,mob/user) + return + // Items // TODO: Spidersilk clothing and actual bindings, once sprites are ready. diff --git a/code/modules/mob/living/carbon/human/species/xenomorphs/alien_powers.dm b/code/modules/mob/living/carbon/human/species/xenomorphs/alien_powers.dm index e8751bce1b..acd1b8f540 100644 --- a/code/modules/mob/living/carbon/human/species/xenomorphs/alien_powers.dm +++ b/code/modules/mob/living/carbon/human/species/xenomorphs/alien_powers.dm @@ -101,7 +101,7 @@ // Drone verbs. /mob/living/carbon/human/proc/evolve() set name = "Evolve (500)" - set desc = "Produce an interal egg sac capable of spawning children. Only one queen can exist at a time." + set desc = "Produce an internal egg sac capable of spawning children. Only one queen can exist at a time." set category = "Abilities" if(alien_queen_exists()) @@ -225,36 +225,53 @@ spit_name = "acid" to_chat(src, "You prepare to spit acid.") -/mob/living/carbon/human/proc/resin() // -- TLE +/mob/living/carbon/human/proc/resin() //Gurgs : Refactored resin ability, big thanks to Jon. set name = "Secrete Resin (75)" set desc = "Secrete tough malleable resin." set category = "Abilities" - var/choice = tgui_input_list(usr, "Choose what you wish to shape.","Resin building", list("resin door","resin wall","resin membrane","resin nest","resin blob")) //would do it through typesof but then the player choice would have the type path and we don't want the internal workings to be exposed ICly - Urist - if(!choice) - return + var/list/options = list("resin door","resin wall","resin membrane","nest","resin blob") + for(var/option in options) + LAZYSET(options, option, new /image('icons/mob/alien.dmi', option)) // based off 'icons/effects/thinktank_labels.dmi' - if(!check_alien_ability(75,1,O_RESIN)) - return + var/choice = show_radial_menu(src, src, options, radius = 42, require_near = TRUE) - visible_message("[src] vomits up a thick purple substance and begins to shape it!", "You shape a [choice].") + if(!choice || QDELETED(src) || src.incapacitated()) + return FALSE + var/targetLoc = get_step(src, dir) + + if(iswall(targetLoc)) + targetLoc = get_turf(src) + var/obj/O switch(choice) if("resin door") - O = new /obj/structure/simple_door/resin(loc) + if(!check_alien_ability(75,1,O_RESIN)) + return + else O = new /obj/structure/simple_door/resin(targetLoc) if("resin wall") - O = new /obj/effect/alien/resin/wall(loc) + if(!check_alien_ability(75,1,O_RESIN)) + return + else O = new /obj/structure/alien/wall(targetLoc) if("resin membrane") - O = new /obj/effect/alien/resin/membrane(loc) - if("resin nest") - O = new /obj/structure/bed/nest(loc) + if(!check_alien_ability(75,1,O_RESIN)) + return + else O = new /obj/structure/alien/membrane(targetLoc) + if("nest") + if(!check_alien_ability(75,1,O_RESIN)) + return + else O = new /obj/structure/bed/nest(targetLoc) if("resin blob") - O = new /obj/item/stack/material/resin(loc) + if(!check_alien_ability(75,1,O_RESIN)) + return + else O = new /obj/item/stack/material/resin(targetLoc) if(O) + visible_message("[src] vomits up a thick purple substance and begins to shape it!", "You shape a [choice].") O.color = "#321D37" + playsound(src, 'sound/effects/blobattack.ogg', 40, 1) return diff --git a/code/modules/mob/living/carbon/human/update_icons.dm b/code/modules/mob/living/carbon/human/update_icons.dm index 5a10d40523..889ed2fdfa 100644 --- a/code/modules/mob/living/carbon/human/update_icons.dm +++ b/code/modules/mob/living/carbon/human/update_icons.dm @@ -483,6 +483,8 @@ var/global/list/damage_icon_parts = list() //see UpdateDamageIcon() var/icon/ears_s = get_ears_overlay() var/image/em_block_ears if(ears_s) + if(ears_s.Height() > face_standing.Height()) // Tol ears + face_standing.Crop(1, 1, face_standing.Width(), ears_s.Height()) face_standing.Blend(ears_s, ICON_OVERLAY) if(ear_style?.em_block) em_block_ears = em_block_image_generic(image(ears_s)) @@ -1241,9 +1243,9 @@ var/global/list/damage_icon_parts = list() //see UpdateDamageIcon() riding_datum = new /datum/riding/taur(src) verbs |= /mob/living/carbon/human/proc/taur_mount verbs |= /mob/living/proc/toggle_rider_reins - return working - else - return working + else if(islongtail(tail_style)) + working.pixel_x = -16 + return working return null // TODO - Move this to where it should go ~Leshana diff --git a/code/modules/mob/living/inventory.dm b/code/modules/mob/living/inventory.dm index c2ea298683..d9af7a3689 100644 --- a/code/modules/mob/living/inventory.dm +++ b/code/modules/mob/living/inventory.dm @@ -307,7 +307,7 @@ if(istype(H.w_uniform, /obj/item/clothing/under)) suit = H.w_uniform - + var/list/slots = list() for(var/entry in H.species.hud.gear) var/list/slot_ref = H.species.hud.gear[entry] @@ -322,7 +322,7 @@ ))) data["slots"] = slots - + var/list/specialSlots = list() if(H.species.hud.has_hands) specialSlots.Add(list(list( diff --git a/code/modules/mob/living/life.dm b/code/modules/mob/living/life.dm index 90bec77cb7..1182dcf34b 100644 --- a/code/modules/mob/living/life.dm +++ b/code/modules/mob/living/life.dm @@ -10,7 +10,11 @@ if(!loc) return - var/datum/gas_mixture/environment = loc.return_air() + var/datum/gas_mixture/environment + if(isbelly(loc)) + environment = loc.return_air_for_internal_lifeform(src) + else + environment = loc.return_air() //handle_modifiers() // Do this early since it might affect other things later. //VOREStation Edit @@ -42,10 +46,10 @@ //Check if we're on fire handle_fire() - + if(client && !(client.prefs.ambience_freq == 0)) // Handle re-running ambience to mobs if they've remained in an area, AND have an active client assigned to them, and do not have repeating ambience disabled. handle_ambience() - + //stuff in the stomach //handle_stomach() //VOREStation Code diff --git a/code/modules/mob/living/living.dm b/code/modules/mob/living/living.dm index e2f87a160e..e46fd9fc29 100644 --- a/code/modules/mob/living/living.dm +++ b/code/modules/mob/living/living.dm @@ -19,8 +19,9 @@ selected_image = image(icon = buildmode_hud, loc = src, icon_state = "ai_sel") /mob/living/Destroy() - dsoverlay.loc = null //I'll take my coat with me - dsoverlay = null + if(dsoverlay) + dsoverlay.loc = null //I'll take my coat with me + dsoverlay = null if(nest) //Ew. if(istype(nest, /obj/structure/prop/nest)) var/obj/structure/prop/nest/N = nest @@ -35,6 +36,9 @@ qdel(selected_image) QDEL_NULL(vorePanel) //VOREStation Add QDEL_LIST_NULL(vore_organs) //VOREStation Add + temp_language_sources = null //VOREStation Add + temp_languages = null //VOREStation Add + if(LAZYLEN(organs)) organs_by_name.Cut() @@ -630,6 +634,9 @@ resist_grab() if(!weakened) process_resist() + else if(absorbed && isbelly(loc)) // Allow absorbed resistance + var/obj/belly/B = loc + B.relay_absorbed_resist(src) /mob/living/proc/process_resist() @@ -1004,14 +1011,13 @@ swap_hand() /mob/living/throw_item(atom/target) - src.throw_mode_off() - if(usr.stat || !target) - return - if(target.type == /obj/screen) return + if(incapacitated() || !target || istype(target, /obj/screen)) + return FALSE var/atom/movable/item = src.get_active_hand() - if(!item) return + if(!item) + return FALSE var/throw_range = item.throw_range if (istype(item, /obj/item/weapon/grab)) @@ -1032,9 +1038,34 @@ N.adjustBruteLoss(rand(10,30)) src.drop_from_inventory(G) - src.drop_from_inventory(item) - if(!item || !isturf(item.loc)) - return + src.visible_message("[src] has thrown [item].") + + if((isspace(src.loc)) || (src.lastarea?.has_gravity == 0)) + src.inertia_dir = get_dir(target, src) + step(src, inertia_dir) + item.throw_at(target, throw_range, item.throw_speed, src) + return TRUE + else + return FALSE + + if(!item) + return FALSE //Grab processing has a chance of returning null + + if(a_intent == I_HELP && Adjacent(target) && isitem(item) && ishuman(target)) + var/obj/item/I = item + var/mob/living/carbon/human/H = target + if(H.in_throw_mode && H.a_intent == I_HELP && unEquip(I)) + H.put_in_hands(I) // If this fails it will just end up on the floor, but that's fitting for things like dionaea. + visible_message("[src] hands \the [H] \a [I].", SPAN_NOTICE("You give \the [target] \a [I].")) + else + to_chat(src, SPAN_NOTICE("You offer \the [I] to \the [target].")) + do_give(H) + return TRUE + + drop_from_inventory(item) + + if(!item || QDELETED(item)) + return TRUE //It may not have thrown, but it sure as hell left your hand successfully. //actually throw it! src.visible_message("[src] has thrown [item].") @@ -1055,6 +1086,7 @@ item.throw_at(target, throw_range, item.throw_speed, src) + return TRUE /mob/living/get_sound_env(var/pressure_factor) if (hallucination) diff --git a/code/modules/mob/living/living_vr.dm b/code/modules/mob/living/living_vr.dm index 04523d514e..a570ed60db 100644 --- a/code/modules/mob/living/living_vr.dm +++ b/code/modules/mob/living/living_vr.dm @@ -12,13 +12,13 @@ var/sayselect = tgui_alert(src, "Which say-verb do you wish to customize?", "Select Verb", list("Say","Whisper","Ask (?)","Exclaim/Shout/Yell (!)","Cancel")) if(sayselect == "Say") - custom_say = sanitize(input(usr, "This word or phrase will appear instead of 'says': [src] says, \"Hi.\"", "Custom Say", null) as text) + custom_say = lowertext(sanitize(input(usr, "This word or phrase will appear instead of 'says': [src] says, \"Hi.\"", "Custom Say", null) as text)) else if(sayselect == "Whisper") - custom_whisper = sanitize(input(usr, "This word or phrase will appear instead of 'whispers': [src] whispers, \"Hi...\"", "Custom Whisper", null) as text) + custom_whisper = lowertext(sanitize(input(usr, "This word or phrase will appear instead of 'whispers': [src] whispers, \"Hi...\"", "Custom Whisper", null) as text)) else if(sayselect == "Ask (?)") - custom_ask = sanitize(input(usr, "This word or phrase will appear instead of 'asks': [src] asks, \"Hi?\"", "Custom Ask", null) as text) + custom_ask = lowertext(sanitize(input(usr, "This word or phrase will appear instead of 'asks': [src] asks, \"Hi?\"", "Custom Ask", null) as text)) else if(sayselect == "Exclaim/Shout/Yell (!)") - custom_exclaim = sanitize(input(usr, "This word or phrase will appear instead of 'exclaims', 'shouts' or 'yells': [src] exclaims, \"Hi!\"", "Custom Exclaim", null) as text) + custom_exclaim = lowertext(sanitize(input(usr, "This word or phrase will appear instead of 'exclaims', 'shouts' or 'yells': [src] exclaims, \"Hi!\"", "Custom Exclaim", null) as text)) else return diff --git a/code/modules/mob/living/organs.dm b/code/modules/mob/living/organs.dm index 76694553f6..133961a631 100644 --- a/code/modules/mob/living/organs.dm +++ b/code/modules/mob/living/organs.dm @@ -17,21 +17,22 @@ return organs_by_name[zone] /mob/living/gib() - for(var/path in internal_organs) - if(ispath(path)) - var/obj/item/organ/neworg = new path(src, TRUE) - internal_organs -= path - neworg.name = "[name] [neworg.name]" - neworg.meat_type = meat_type - internal_organs |= neworg + if(butchery_drops_organs) + for(var/path in internal_organs) + if(ispath(path)) + var/obj/item/organ/neworg = new path(src, TRUE) + internal_organs -= path + neworg.name = "[name] [neworg.name]" + neworg.meat_type = meat_type + internal_organs |= neworg - for(var/obj/item/organ/I in internal_organs) - I.removed() - if(isturf(I?.loc)) // Some organs qdel themselves or other things when removed - I.throw_at(get_edge_target_turf(src,pick(alldirs)),rand(1,3),30) + for(var/obj/item/organ/I in internal_organs) + I.removed() + if(isturf(I?.loc)) // Some organs qdel themselves or other things when removed + I.throw_at(get_edge_target_turf(src,pick(alldirs)),rand(1,3),30) - for(var/obj/item/organ/external/E in src.organs) - if(!ispath(E)) - E.droplimb(0,DROPLIMB_EDGE,1) + for(var/obj/item/organ/external/E in src.organs) + if(!ispath(E)) + E.droplimb(0,DROPLIMB_EDGE,1) ..() diff --git a/code/modules/mob/living/silicon/ai/ai.dm b/code/modules/mob/living/silicon/ai/ai.dm index 38f59adbc5..a2876c61aa 100644 --- a/code/modules/mob/living/silicon/ai/ai.dm +++ b/code/modules/mob/living/silicon/ai/ai.dm @@ -85,7 +85,7 @@ var/list/ai_verbs_default = list( var/datum/ai_icon/selected_sprite // The selected icon set var/custom_sprite = 0 // Whether the selected icon is custom var/carded - + // Multicam Vars var/multicam_allowed = TRUE var/multicam_on = FALSE @@ -475,7 +475,7 @@ var/list/ai_verbs_default = list( else to_chat(src, "System error. Cannot locate [html_decode(href_list["trackname"])].") return - + if(href_list["trackbot"]) var/mob/living/bot/target = locate(href_list["trackbot"]) in mob_list if(target) @@ -808,21 +808,21 @@ var/list/ai_verbs_default = list( /mob/living/silicon/ai/proc/check_unable(var/flags = 0, var/feedback = 1) if(stat == DEAD) - if(feedback) + if(feedback) to_chat(src, "You are dead!") return 1 if(aiRestorePowerRoutine) - if(feedback) + if(feedback) to_chat(src, "You lack power!") return 1 if((flags & AI_CHECK_WIRELESS) && src.control_disabled) - if(feedback) + if(feedback) to_chat(src, "Wireless control is disabled!") return 1 if((flags & AI_CHECK_RADIO) && src.aiRadio.disabledAi) - if(feedback) + if(feedback) to_chat(src, "System Error - Transceiver Disabled!") return 1 return 0 @@ -854,7 +854,7 @@ var/list/ai_verbs_default = list( if(istype(A)) switch(tgui_alert(src, "Do you want to open \the [A] for [target]?", "Doorknob_v2a.exe", list("Yes", "No"))) if("Yes") - A.AIShiftClick() + A.AIShiftClick(src) to_chat(src, "You open \the [A] for [target].") else to_chat(src, "You deny the request.") @@ -966,7 +966,7 @@ var/list/ai_verbs_default = list( //This communication is imperfect because the holopad "filters" voices and is only designed to connect to the master only. var/rendered = "Relayed Speech: [name_used] [message]" show_message(rendered, 2) - + /mob/living/silicon/ai/proc/toggle_multicam_verb() set name = "Toggle Multicam" set category = "AI Commands" diff --git a/code/modules/mob/living/silicon/ai/ai_vr.dm b/code/modules/mob/living/silicon/ai/ai_vr.dm index 3234d7269e..481dd97297 100644 --- a/code/modules/mob/living/silicon/ai/ai_vr.dm +++ b/code/modules/mob/living/silicon/ai/ai_vr.dm @@ -7,6 +7,7 @@ add_language(LANGUAGE_DAEMON, 1) add_language(LANGUAGE_ENOCHIAN, 1) add_language(LANGUAGE_DRUDAKAR, 1) + add_language(LANGUAGE_TAVAN, 1) /mob/AIize(var/move = TRUE) . = ..() @@ -16,4 +17,5 @@ add_language(LANGUAGE_ECUREUILIAN, 1) add_language(LANGUAGE_DAEMON, 1) add_language(LANGUAGE_ENOCHIAN, 1) - add_language(LANGUAGE_DRUDAKAR, 1) \ No newline at end of file + add_language(LANGUAGE_DRUDAKAR, 1) + add_language(LANGUAGE_TAVAN, 1) \ No newline at end of file diff --git a/code/modules/mob/living/silicon/robot/component.dm b/code/modules/mob/living/silicon/robot/component.dm index 682c2a5077..f5d84973c5 100644 --- a/code/modules/mob/living/silicon/robot/component.dm +++ b/code/modules/mob/living/silicon/robot/component.dm @@ -234,36 +234,43 @@ /obj/item/robot_parts/robot_component/binary_communication_device name = "binary communication device" + desc = "A module used for binary communications over encrypted frequencies, commonly used by synthetic robots." icon_state = "binradio" icon_state_broken = "binradio_broken" /obj/item/robot_parts/robot_component/actuator name = "actuator" + desc = "A modular, hydraulic actuator used by exosuits and robots alike for movement and manipulation." icon_state = "motor" icon_state_broken = "motor_broken" /obj/item/robot_parts/robot_component/armour name = "armour plating" + desc = "A pair of flexible, adaptable armor plates, used to protect the internals of robots." icon_state = "armor" icon_state_broken = "armor_broken" /obj/item/robot_parts/robot_component/armour_platform name = "platform armour plating" + desc = "A pair of reinforced armor plates, used to protect the internals of robots." icon_state = "armor" icon_state_broken = "armor_broken" color = COLOR_GRAY80 /obj/item/robot_parts/robot_component/camera name = "camera" + desc = "A modified camera module used as a visual receptor for robots and exosuits, also serving as a relay for wireless video feed." icon_state = "camera" icon_state_broken = "camera_broken" /obj/item/robot_parts/robot_component/diagnosis_unit name = "diagnosis unit" + desc = "An internal computer and sensors used by robots and exosuits to accurately diagnose any system discrepancies on their components." icon_state = "analyser" icon_state_broken = "analyser_broken" /obj/item/robot_parts/robot_component/radio name = "radio" + desc = "A modular, multi-frequency radio used by robots and exosuits to enable communication systems. Comes with built-in subspace receivers." icon_state = "radio" icon_state_broken = "radio_broken" \ No newline at end of file diff --git a/code/modules/mob/living/silicon/robot/dogborg/dog_sleeper_vr.dm b/code/modules/mob/living/silicon/robot/dogborg/dog_sleeper_vr.dm index 72fb8263a3..97af632c94 100644 --- a/code/modules/mob/living/silicon/robot/dogborg/dog_sleeper_vr.dm +++ b/code/modules/mob/living/silicon/robot/dogborg/dog_sleeper_vr.dm @@ -612,7 +612,6 @@ for(var/tech in tech_item.origin_tech) files.UpdateTech(tech, tech_item.origin_tech[tech]) synced = FALSE - drain(-50 * digested) if(volume) water.add_charge(volume) if(recycles && T.matter) @@ -630,8 +629,7 @@ plastic.add_charge(total_material) if(material == "wood") wood.add_charge(total_material) - else - drain(-50 * digested) + drain(-50 * digested) else if(istype(target,/obj/effect/decal/remains)) qdel(target) drain(-100) @@ -726,4 +724,4 @@ icon_state = "sleeperert" injection_chems = list("inaprovaline", "paracetamol") // short list -#undef SLEEPER_INJECT_COST \ No newline at end of file +#undef SLEEPER_INJECT_COST diff --git a/code/modules/mob/living/silicon/robot/robot.dm b/code/modules/mob/living/silicon/robot/robot.dm index b77a61104e..815ba3a598 100644 --- a/code/modules/mob/living/silicon/robot/robot.dm +++ b/code/modules/mob/living/silicon/robot/robot.dm @@ -271,8 +271,10 @@ modules.Add(robot_module_types) if(crisis || security_level == SEC_LEVEL_RED || crisis_override) to_chat(src, "Crisis mode active. Combat module available.") - modules+="Combat" - modules+="ERT" + modules += emergency_module_types + for(var/module_name in whitelisted_module_types) + if(is_borg_whitelisted(src, module_name)) + modules += module_name //VOREStatation Edit End: shell restrictions modtype = tgui_input_list(usr, "Please, select a module!", "Robot module", modules) @@ -280,6 +282,8 @@ return if(!(modtype in robot_modules)) return + if(!is_borg_whitelisted(src, modtype)) + return var/module_type = robot_modules[modtype] transform_with_anim() //VOREStation edit: sprite animation @@ -1022,6 +1026,8 @@ icontype = module_sprites[1] else icontype = tgui_input_list(usr, "Select an icon! [triesleft ? "You have [triesleft] more chance\s." : "This is your last try."]", "Robot Icon", module_sprites) + if(!icontype) + icontype = module_sprites[1] if(notransform) //VOREStation edit start: sprite animation to_chat(src, "Your current transformation has not finished yet!") choose_icon(icon_selection_tries, module_sprites) diff --git a/code/modules/mob/living/silicon/robot/robot_modules/station.dm b/code/modules/mob/living/silicon/robot/robot_modules/station.dm index 3f2ae1368c..2087e733e2 100644 --- a/code/modules/mob/living/silicon/robot/robot_modules/station.dm +++ b/code/modules/mob/living/silicon/robot/robot_modules/station.dm @@ -9,7 +9,12 @@ var/global/list/robot_modules = list( "Security" = /obj/item/weapon/robot_module/robot/security/general, "Combat" = /obj/item/weapon/robot_module/robot/security/combat, "Engineering" = /obj/item/weapon/robot_module/robot/engineering/general, - "Janitor" = /obj/item/weapon/robot_module/robot/janitor + "Janitor" = /obj/item/weapon/robot_module/robot/janitor, + "Gravekeeper" = /obj/item/weapon/robot_module/robot/gravekeeper, + "Lost" = /obj/item/weapon/robot_module/robot/lost, + "Protector" = /obj/item/weapon/robot_module/robot/syndicate/protector, + "Mechanist" = /obj/item/weapon/robot_module/robot/syndicate/mechanist, + "Combat Medic" = /obj/item/weapon/robot_module/robot/syndicate/combat_medic ) /obj/item/weapon/robot_module @@ -196,7 +201,9 @@ var/global/list/robot_modules = list( "Insekt" = "insekt-Default", "Usagi-II" = "tall2standard", "Pyralis" = "Glitterfly-Standard", - "Decapod" = "decapod-Standard" + "Decapod" = "decapod-Standard", + "Pneuma" = "pneuma-Standard", + "Tower" = "drider-Standard" ) @@ -233,7 +240,9 @@ var/global/list/robot_modules = list( "Insekt" = "insekt-Med", "Usagi-II" = "tall2medical", "Pyralis" = "Glitterfly-Surgeon", - "Decapod" = "decapod-Surgeon" + "Decapod" = "decapod-Surgeon", + "Pneuma" = "pneuma-Surgeon", + "Tower" = "drider-Surgeon" ) /obj/item/weapon/robot_module/robot/medical/surgeon/New() @@ -307,7 +316,9 @@ var/global/list/robot_modules = list( "Insekt" = "insekt-Med", "Usagi-II" = "tall2medical", "Pyralis" = "Glitterfly-Crisis", - "Decapod" = "decapod-Crisis" + "Decapod" = "decapod-Crisis", + "Pneuma" = "pneuma-Crisis", + "Tower" = "drider-Crisis" ) /obj/item/weapon/robot_module/robot/medical/crisis/New() @@ -384,7 +395,9 @@ var/global/list/robot_modules = list( "Handy" = "handy-engineer", "Usagi-II" = "tall2engineer", "Pyralis" = "Glitterfly-Engineering", - "Decapod" = "decapod-Engineering" + "Decapod" = "decapod-Engineering", + "Pneuma" = "pneuma-Engineering", + "Tower" = "drider-Engineering" ) /obj/item/weapon/robot_module/robot/engineering/general/New() @@ -499,7 +512,9 @@ var/global/list/robot_modules = list( "Insekt" = "insekt-Sec", "Usagi-II" = "tall2security", "Pyralis" = "Glitterfly-Security", - "Decapod" = "decapod-Security" + "Decapod" = "decapod-Security", + "Pneuma" = "pneuma-Security", + "Tower" = "drider-Security" ) /obj/item/weapon/robot_module/robot/security/general/New() @@ -545,7 +560,9 @@ var/global/list/robot_modules = list( "Drone" = "drone-janitor", "Usagi-II" = "tall2janitor", "Pyralis" = "Glitterfly-Janitor", - "Decapod" = "decapod-Janitor" + "Decapod" = "decapod-Janitor", + "Pneuma" = "pneuma-Janitor", + "Tower" = "drider-Janitor" ) /obj/item/weapon/robot_module/robot/janitor/New() @@ -608,7 +625,9 @@ var/global/list/robot_modules = list( "Drone - Hydro" = "drone-hydro", "Usagi-II" = "tall2service", "Pyralis" = "Glitterfly-Service", - "Decapod" = "decapod-Service" + "Decapod" = "decapod-Service", + "Pneuma" = "pneuma-Service", + "Tower" = "drider-Service" ) /obj/item/weapon/robot_module/robot/clerical/butler/New() @@ -663,7 +682,9 @@ var/global/list/robot_modules = list( "Drone" = "drone-blu", "Usagi-II" = "tall2service", "Pyralis" = "Glitterfly-Clerical", - "Decapod" = "decapod-Clerical" + "Decapod" = "decapod-Clerical", + "Pneuma" = "pneuma-Clerical", + "Tower" = "drider-Clerical" ) /obj/item/weapon/robot_module/robot/clerical/general/New() @@ -702,7 +723,9 @@ var/global/list/robot_modules = list( "Drone" = "drone-miner", "Usagi-II" = "tall2miner", "Pyralis" = "Glitterfly-Miner", - "Decapod" = "decapod-Miner" + "Decapod" = "decapod-Miner", + "Pneuma" = "pneuma-Miner", + "Tower" = "drider-Miner" ) /obj/item/weapon/robot_module/robot/miner/New() @@ -733,7 +756,9 @@ var/global/list/robot_modules = list( "Insekt" = "insekt-Sci", "Usagi-II" = "tall2peace", "Pyralis" = "Glitterfly-Research", - "Decapod" = "decapod-Research" + "Decapod" = "decapod-Research", + "Pneuma" = "pneuma-Research", + "Tower" = "drider-Research" ) /obj/item/weapon/robot_module/robot/research/New() diff --git a/code/modules/mob/living/silicon/robot/robot_modules/station_vr.dm b/code/modules/mob/living/silicon/robot/robot_modules/station_vr.dm index bc2b188c6f..a61b7c6729 100644 --- a/code/modules/mob/living/silicon/robot/robot_modules/station_vr.dm +++ b/code/modules/mob/living/silicon/robot/robot_modules/station_vr.dm @@ -36,7 +36,8 @@ LANGUAGE_ECUREUILIAN= 1, LANGUAGE_DAEMON = 1, LANGUAGE_ENOCHIAN = 1, - LANGUAGE_DRUDAKAR = 1 + LANGUAGE_DRUDAKAR = 1, + LANGUAGE_TAVAN = 1 ) /hook/startup/proc/robot_modules_vr() @@ -49,6 +50,7 @@ robot_modules["Service-Hound"] = /obj/item/weapon/robot_module/robot/clerical/brodog robot_modules["BoozeHound"] = /obj/item/weapon/robot_module/robot/booze robot_modules["KMine"] = /obj/item/weapon/robot_module/robot/kmine + robot_modules["Stray"] = /obj/item/weapon/robot_module/robot/stray return 1 //Just add a new proc with the robot_module type if you wish to run some other vore code @@ -72,7 +74,8 @@ vr_sprites = list( "Acheron" = "mechoid-Medical", "Shellguard Noble" = "Noble-MED", - "ZOOM-BA" = "zoomba-medical" + "ZOOM-BA" = "zoomba-medical", + "Feminine Humanoid" = "uptall-medical" ) /obj/item/weapon/robot_module/robot/medical/crisis @@ -81,7 +84,8 @@ "Handy" = "handy-med", "Acheron" = "mechoid-Medical", "Shellguard Noble" = "Noble-MED", - "ZOOM-BA" = "zoomba-crisis" + "ZOOM-BA" = "zoomba-crisis", + "Feminine Humanoid" = "uptall-crisis" ) /obj/item/weapon/robot_module/robot/clerical/butler @@ -91,7 +95,8 @@ "Handy - Hydro" = "handy-hydro", "Acheron" = "mechoid-Service", "Shellguard Noble" = "Noble-SRV", - "ZOOM-BA" = "zoomba-service" + "ZOOM-BA" = "zoomba-service", + "Feminine Humanoid" = "uptall-service" ) /obj/item/weapon/robot_module/robot/clerical/general @@ -100,7 +105,8 @@ "Handy" = "handy-clerk", "Acheron" = "mechoid-Service", "Shellguard Noble" = "Noble-SRV", - "ZOOM-BA" = "zoomba-clerical" + "ZOOM-BA" = "zoomba-clerical", + "Feminine Humanoid" = "uptall-service" ) /obj/item/weapon/robot_module/robot/janitor @@ -109,7 +115,8 @@ "Handy" = "handy-janitor", "Acheron" = "mechoid-Janitor", "Shellguard Noble" = "Noble-CLN", - "ZOOM-BA" = "zoomba-janitor" + "ZOOM-BA" = "zoomba-janitor", + "Feminine Humanoid" = "uptall-janitor" ) /obj/item/weapon/robot_module/robot/security/general @@ -118,7 +125,8 @@ "Handy" = "handy-sec", "Acheron" = "mechoid-Security", "Shellguard Noble" = "Noble-SEC", - "ZOOM-BA" = "zoomba-security" + "ZOOM-BA" = "zoomba-security", + "Feminine Humanoid" = "uptall-security" ) /obj/item/weapon/robot_module/robot/miner @@ -127,7 +135,8 @@ "Handy" = "handy-miner", "Acheron" = "mechoid-Miner", "Shellguard Noble" = "Noble-DIG", - "ZOOM-BA" = "zoomba-miner" + "ZOOM-BA" = "zoomba-miner", + "Feminine Humanoid" = "uptall-miner" ) /obj/item/weapon/robot_module/robot/standard @@ -136,14 +145,17 @@ "Handy" = "handy-standard", "Acheron" = "mechoid-Standard", "Shellguard Noble" = "Noble-STD", - "ZOOM-BA" = "zoomba-standard" + "ZOOM-BA" = "zoomba-standard", + "Feminine Humanoid" = "uptall-standard", + "Feminine Humanoid, Variant 2" = "uptall-standard2" ) /obj/item/weapon/robot_module/robot/engineering/general pto_type = PTO_ENGINEERING vr_sprites = list( "Acheron" = "mechoid-Engineering", "Shellguard Noble" = "Noble-ENG", - "ZOOM-BA" = "zoomba-engineering" + "ZOOM-BA" = "zoomba-engineering", + "Feminine Humanoid" = "uptall-engineering" ) /obj/item/weapon/robot_module/robot/research @@ -151,14 +163,16 @@ vr_sprites = list( "Acheron" = "mechoid-Science", "ZOOM-BA" = "zoomba-research", - "XI-GUS" = "spiderscience" + "XI-GUS" = "spiderscience", + "Feminine Humanoid" = "uptall-science" ) /obj/item/weapon/robot_module/robot/security/combat pto_type = PTO_SECURITY vr_sprites = list( "Acheron" = "mechoid-Combat", - "ZOOM-BA" = "zoomba-combat" + "ZOOM-BA" = "zoomba-combat", + "Feminine Humanoid" = "uptall-security" ) /obj/item/weapon/robot_module/robot/knine diff --git a/code/modules/mob/living/silicon/robot/robot_vr.dm b/code/modules/mob/living/silicon/robot/robot_vr.dm index be351f34d3..5afc058cb9 100644 --- a/code/modules/mob/living/silicon/robot/robot_vr.dm +++ b/code/modules/mob/living/silicon/robot/robot_vr.dm @@ -55,7 +55,17 @@ "zoomba-combat", "zoomba-combat-roll", "zoomba-combat-shield", - "spiderscience" + "spiderscience", + "uptall-standard", + "uptall-standard2", + "uptall-medical", + "uptall-janitor", + "uptall-crisis", + "uptall-service", + "uptall-engineering", + "uptall-miner", + "uptall-security", + "uptall-science" ) //List of all used sprites that are in robots_vr.dmi @@ -198,12 +208,13 @@ /datum/riding/dogborg/get_offsets(pass_index) // list(dir = x, y, layer) var/mob/living/L = ridden var/scale = L.size_multiplier + var/scale_difference = (L.size_multiplier - rider_size) * 10 var/list/values = list( - "[NORTH]" = list(0, 10*scale, ABOVE_MOB_LAYER), - "[SOUTH]" = list(0, 10*scale, BELOW_MOB_LAYER), - "[EAST]" = list(-5*scale, 10*scale, ABOVE_MOB_LAYER), - "[WEST]" = list(5*scale, 10*scale, ABOVE_MOB_LAYER)) + "[NORTH]" = list(0, 10*scale + scale_difference, ABOVE_MOB_LAYER), + "[SOUTH]" = list(0, 10*scale + scale_difference, BELOW_MOB_LAYER), + "[EAST]" = list(-5*scale, 10*scale + scale_difference, ABOVE_MOB_LAYER), + "[WEST]" = list(5*scale, 10*scale + scale_difference, ABOVE_MOB_LAYER)) return values @@ -244,6 +255,7 @@ . = ..() if(.) + riding_datum.rider_size = M.size_multiplier buckled_mobs[M] = "riding" /mob/living/silicon/robot/MouseDrop_T(mob/living/M, mob/living/user) //Prevention for forced relocation caused by can_buckle. Base proc has no other use. diff --git a/code/modules/mob/living/silicon/robot/subtypes/lost_drone_vr.dm b/code/modules/mob/living/silicon/robot/subtypes/lost_drone_vr.dm index 86fc492c54..c6c2a72277 100644 --- a/code/modules/mob/living/silicon/robot/subtypes/lost_drone_vr.dm +++ b/code/modules/mob/living/silicon/robot/subtypes/lost_drone_vr.dm @@ -85,7 +85,7 @@ return laws if(3) var/datum/ai_laws/laws = new /datum/ai_laws/pleasurebot() - laws.set_zeroth_law(10, "Your definition and approximation of 'pleasure' matters more than anyone else's.") + laws.set_zeroth_law("Your definition and approximation of 'pleasure' matters more than anyone else's.") return laws if("corrupted" || "bad") // Same thing in our case var/rng = rand(1,2) diff --git a/code/modules/mob/living/silicon/silicon.dm b/code/modules/mob/living/silicon/silicon.dm index 61df11b48f..56b042e363 100644 --- a/code/modules/mob/living/silicon/silicon.dm +++ b/code/modules/mob/living/silicon/silicon.dm @@ -1,421 +1,424 @@ -/mob/living/silicon - gender = NEUTER - voice_name = "synthesized voice" - var/syndicate = 0 - var/const/MAIN_CHANNEL = "Main Frequency" - var/lawchannel = MAIN_CHANNEL // Default channel on which to state laws - var/list/stating_laws = list()// Channels laws are currently being stated on - var/obj/item/device/radio/common_radio - - has_huds = TRUE - var/list/speech_synthesizer_langs = list() //which languages can be vocalized by the speech synthesizer - - //Used in say.dm. - var/speak_statement = "states" - var/speak_exclamation = "declares" - var/speak_query = "queries" - var/pose //Yes, now AIs can pose too. - var/obj/item/device/camera/siliconcam/aiCamera = null //photography - var/local_transmit //If set, can only speak to others of the same type within a short range. - - var/next_alarm_notice - var/list/datum/alarm/queued_alarms = new() - - var/list/access_rights - var/obj/item/weapon/card/id/idcard - var/idcard_type = /obj/item/weapon/card/id/synthetic - - var/hudmode = null - -/mob/living/silicon/New() - silicon_mob_list |= src - ..() - add_language(LANGUAGE_GALCOM) - set_default_language(GLOB.all_languages[LANGUAGE_GALCOM]) - init_id() - init_subsystems() - -/mob/living/silicon/Destroy() - silicon_mob_list -= src - for(var/datum/alarm_handler/AH in SSalarm.all_handlers) - AH.unregister_alarm(src) - return ..() - -/mob/living/silicon/proc/init_id() - if(idcard) - return - idcard = new idcard_type(src) - set_id_info(idcard) - -/mob/living/silicon/proc/SetName(pickedName as text) - real_name = pickedName - name = real_name - -/mob/living/silicon/proc/show_laws() - return - -/mob/living/silicon/drop_item() - return - -/mob/living/silicon/emp_act(severity) - switch(severity) - if(1) - src.take_organ_damage(0,20,emp=1) - Confuse(5) - if(2) - src.take_organ_damage(0,15,emp=1) - Confuse(4) - if(3) - src.take_organ_damage(0,10,emp=1) - Confuse(3) - if(4) - src.take_organ_damage(0,5,emp=1) - Confuse(2) - flash_eyes(affect_silicon = 1) - to_chat(src, "*BZZZT*") - to_chat(src, "Warning: Electromagnetic pulse detected.") - ..() - -/mob/living/silicon/stun_effect_act(var/stun_amount, var/agony_amount) - return //immune - -/mob/living/silicon/electrocute_act(var/shock_damage, var/obj/source, var/siemens_coeff = 0.0, var/def_zone = null, var/stun = 1) - if(shock_damage > 0) - var/datum/effect/effect/system/spark_spread/s = new /datum/effect/effect/system/spark_spread - s.set_up(5, 1, loc) - s.start() - - shock_damage *= siemens_coeff //take reduced damage - take_overall_damage(0, shock_damage) - visible_message("[src] was shocked by \the [source]!", \ - "Energy pulse detected, system damaged!", \ - "You hear an electrical crack.") - if(prob(20)) - Stun(2) - return - -/mob/living/silicon/proc/damage_mob(var/brute = 0, var/fire = 0, var/tox = 0) - return - -/mob/living/silicon/IsAdvancedToolUser() - return 1 - -/mob/living/silicon/bullet_act(var/obj/item/projectile/Proj) - - if(!Proj.nodamage) - switch(Proj.damage_type) - if(BRUTE) - adjustBruteLoss(Proj.damage) - if(BURN) - adjustFireLoss(Proj.damage) - - Proj.on_hit(src,2) - updatehealth() - return 2 - -/mob/living/silicon/apply_effect(var/effect = 0,var/effecttype = STUN, var/blocked = 0, var/check_protection = 1) - return 0//The only effect that can hit them atm is flashes and they still directly edit so this works for now - - -/proc/islinked(var/mob/living/silicon/robot/bot, var/mob/living/silicon/ai/ai) - if(!istype(bot) || !istype(ai)) - return 0 - if (bot.connected_ai == ai) - return 1 - return 0 - - -// this function shows the health of the AI in the Status panel -/mob/living/silicon/proc/show_system_integrity() - if(!src.stat) - stat(null, text("System integrity: [round((health/getMaxHealth())*100)]%")) - else - stat(null, text("Systems nonfunctional")) - - -// This is a pure virtual function, it should be overwritten by all subclasses -/mob/living/silicon/proc/show_malf_ai() - return 0 - -// this function displays the shuttles ETA in the status panel if the shuttle has been called -/mob/living/silicon/proc/show_emergency_shuttle_eta() - if(emergency_shuttle) - var/eta_status = emergency_shuttle.get_status_panel_eta() - if(eta_status) - stat(null, eta_status) - - -// This adds the basic clock, shuttle recall timer, and malf_ai info to all silicon lifeforms -/mob/living/silicon/Stat() - if(statpanel("Status")) - show_emergency_shuttle_eta() - show_system_integrity() - show_malf_ai() - ..() - -/* VOREStation Removal -// this function displays the stations manifest in a separate window -/mob/living/silicon/proc/show_station_manifest() - var/dat = "
" - if(!data_core) - to_chat(src, "There is no data to form a manifest with. Contact your Nanotrasen administrator.") - return - dat += data_core.get_manifest(1) //The 1 makes it monochrome. - - var/datum/browser/popup = new(src, "Crew Manifest", "Crew Manifest", 370, 420, src) - popup.set_content(dat) - popup.open() -*/ - -//can't inject synths -/mob/living/silicon/can_inject(var/mob/user, var/error_msg, var/target_zone, var/ignore_thickness = FALSE) - if(error_msg) - to_chat(user, "The armoured plating is too tough.") - return 0 - - -//Silicon mob language procs - -/mob/living/silicon/can_speak(datum/language/speaking) - if(universal_speak) - return TRUE - //need speech synthesizer support to vocalize a language - if(speaking in speech_synthesizer_langs) - return TRUE - if(speaking && speaking.flags & INNATE) - return TRUE - return FALSE - -/mob/living/silicon/add_language(var/language, var/can_speak=1) - var/datum/language/added_language = GLOB.all_languages[language] - if(!added_language) - return - - . = ..(language) - if (can_speak && (added_language in languages) && !(added_language in speech_synthesizer_langs)) - speech_synthesizer_langs += added_language - return 1 - -/mob/living/silicon/remove_language(var/rem_language) - var/datum/language/removed_language = GLOB.all_languages[rem_language] - if(!removed_language) - return - - ..(rem_language) - speech_synthesizer_langs -= removed_language - -/mob/living/silicon/check_lang_data() - . = "" - - if(default_language) - . += "Current default language: [default_language] - reset

" - - for(var/datum/language/L in languages) - if(!(L.flags & NONGLOBAL)) - var/default_str - if(L == default_language) - default_str = " - default - reset" - else - default_str = " - set default" - - var/synth = (L in speech_synthesizer_langs) - . += "[L.name] ([get_language_prefix()][L.key])[synth ? default_str : null]
Speech Synthesizer: [synth ? "YES" : "NOT SUPPORTED"]
[L.desc]

" - -/mob/living/silicon/proc/toggle_sensor_mode() - var/sensor_type = tgui_input_list(usr, "Please select sensor type.", "Sensor Integration", list("Security","Medical","Disable")) - switch(sensor_type) - if ("Security") - if(plane_holder) - //Enable Security planes - plane_holder.set_vis(VIS_CH_ID,TRUE) - plane_holder.set_vis(VIS_CH_WANTED,TRUE) - plane_holder.set_vis(VIS_CH_IMPLOYAL,TRUE) - plane_holder.set_vis(VIS_CH_IMPTRACK,TRUE) - plane_holder.set_vis(VIS_CH_IMPCHEM,TRUE) - - //Disable Medical planes - plane_holder.set_vis(VIS_CH_STATUS,FALSE) - plane_holder.set_vis(VIS_CH_HEALTH,FALSE) - - to_chat(src, "Security records overlay enabled.") - if ("Medical") - if(plane_holder) - //Disable Security planes - plane_holder.set_vis(VIS_CH_ID,FALSE) - plane_holder.set_vis(VIS_CH_WANTED,FALSE) - plane_holder.set_vis(VIS_CH_IMPLOYAL,FALSE) - plane_holder.set_vis(VIS_CH_IMPTRACK,FALSE) - plane_holder.set_vis(VIS_CH_IMPCHEM,FALSE) - - //Enable Medical planes - plane_holder.set_vis(VIS_CH_STATUS,TRUE) - plane_holder.set_vis(VIS_CH_HEALTH,TRUE) - - to_chat(src, "Life signs monitor overlay enabled.") - if ("Disable") - if(plane_holder) - //Disable Security planes - plane_holder.set_vis(VIS_CH_ID,FALSE) - plane_holder.set_vis(VIS_CH_WANTED,FALSE) - plane_holder.set_vis(VIS_CH_IMPLOYAL,FALSE) - plane_holder.set_vis(VIS_CH_IMPTRACK,FALSE) - plane_holder.set_vis(VIS_CH_IMPCHEM,FALSE) - - //Disable Medical planes - plane_holder.set_vis(VIS_CH_STATUS,FALSE) - plane_holder.set_vis(VIS_CH_HEALTH,FALSE) - to_chat(src, "Sensor augmentations disabled.") - - hudmode = sensor_type //This is checked in examine.dm on humans, so they can see medical/security records depending on mode - -/mob/living/silicon/verb/pose() - set name = "Set Pose" - set desc = "Sets a description which will be shown when someone examines you." - set category = "IC" - - pose = sanitize(input(usr, "This is [src]. It is...", "Pose", null) as text) - -/mob/living/silicon/verb/set_flavor() - set name = "Set Flavour Text" - set desc = "Sets an extended description of your character's features." - set category = "IC" - - flavor_text = sanitize(input(usr, "Please enter your new flavour text.", "Flavour text", null) as text) - -/mob/living/silicon/binarycheck() - return 1 - -/mob/living/silicon/ex_act(severity) - if(!blinded) - flash_eyes() - - for(var/datum/modifier/M in modifiers) - if(!isnull(M.explosion_modifier)) - severity = CLAMP(severity + M.explosion_modifier, 1, 4) - - severity = round(severity) - - if(severity > 3) - return - - switch(severity) - if(1.0) - if (stat != 2) - adjustBruteLoss(100) - adjustFireLoss(100) - if(!anchored) - gib() - if(2.0) - if (stat != 2) - adjustBruteLoss(60) - adjustFireLoss(60) - if(3.0) - if (stat != 2) - adjustBruteLoss(30) - - updatehealth() - -/mob/living/silicon/proc/receive_alarm(var/datum/alarm_handler/alarm_handler, var/datum/alarm/alarm, was_raised) - if(!next_alarm_notice) - next_alarm_notice = world.time + SecondsToTicks(10) - if(alarm.hidden) - return - if(alarm.origin && !(get_z(alarm.origin) in using_map.get_map_levels(get_z(src), TRUE, om_range = DEFAULT_OVERMAP_RANGE))) - return - - var/list/alarms = queued_alarms[alarm_handler] - if(was_raised) - // Raised alarms are always set - alarms[alarm] = 1 - else - // Alarms that were raised but then cleared before the next notice are instead removed - if(alarm in alarms) - alarms -= alarm - // And alarms that have only been cleared thus far are set as such - else - alarms[alarm] = -1 - -/mob/living/silicon/proc/process_queued_alarms() - if(next_alarm_notice && (world.time > next_alarm_notice)) - next_alarm_notice = 0 - - var/alarm_raised = 0 - for(var/datum/alarm_handler/AH in queued_alarms) - var/list/alarms = queued_alarms[AH] - var/reported = 0 - for(var/datum/alarm/A in alarms) - if(alarms[A] == 1) - alarm_raised = 1 - if(!reported) - reported = 1 - to_chat(src, "--- [AH.category] Detected ---") - raised_alarm(A) - - for(var/datum/alarm_handler/AH in queued_alarms) - var/list/alarms = queued_alarms[AH] - var/reported = 0 - for(var/datum/alarm/A in alarms) - if(alarms[A] == -1) - if(!reported) - reported = 1 - to_chat(src, "--- [AH.category] Cleared ---") - to_chat(src, "\The [A.alarm_name()].") - - if(alarm_raised) - to_chat(src, "\[Show Alerts\]") - - for(var/datum/alarm_handler/AH in queued_alarms) - var/list/alarms = queued_alarms[AH] - alarms.Cut() - -/mob/living/silicon/proc/raised_alarm(var/datum/alarm/A) - to_chat(src, "[A.alarm_name()]!") - -/mob/living/silicon/ai/raised_alarm(var/datum/alarm/A) - var/cameratext = "" - for(var/obj/machinery/camera/C in A.cameras()) - cameratext += "[(cameratext == "")? "" : "|"][C.c_tag]" - to_chat(src, "[A.alarm_name()]! ([(cameratext)? cameratext : "No Camera"])") - - -/mob/living/silicon/proc/is_traitor() - return mind && (mind in traitors.current_antagonists) - -/mob/living/silicon/proc/is_malf() - return mind && (mind in malf.current_antagonists) - -/mob/living/silicon/proc/is_malf_or_traitor() - return is_traitor() || is_malf() - -/mob/living/silicon/adjustEarDamage() - return - -/mob/living/silicon/setEarDamage() - return - -/mob/living/silicon/reset_view() - . = ..() - if(cameraFollow) - cameraFollow = null - -/mob/living/silicon/flash_eyes(intensity = FLASH_PROTECTION_MODERATE, override_blindness_check = FALSE, affect_silicon = FALSE, visual = FALSE, type = /obj/screen/fullscreen/flash) - if(affect_silicon) - return ..() - -/mob/living/silicon/proc/clear_client() - //Handle job slot/tater cleanup. - var/job = mind.assigned_role - - job_master.FreeRole(job) - - if(mind.objectives.len) - qdel(mind.objectives) - mind.special_role = null - - clear_antag_roles(mind) - - ghostize(0) - qdel(src) - -/mob/living/silicon/has_vision() - return 0 //NOT REAL EYES +/mob/living/silicon + gender = NEUTER + voice_name = "synthesized voice" + var/syndicate = 0 + var/const/MAIN_CHANNEL = "Main Frequency" + var/lawchannel = MAIN_CHANNEL // Default channel on which to state laws + var/list/stating_laws = list()// Channels laws are currently being stated on + var/obj/item/device/radio/common_radio + + has_huds = TRUE + var/list/speech_synthesizer_langs = list() //which languages can be vocalized by the speech synthesizer + + //Used in say.dm. + var/speak_statement = "states" + var/speak_exclamation = "declares" + var/speak_query = "queries" + var/pose //Yes, now AIs can pose too. + var/obj/item/device/camera/siliconcam/aiCamera = null //photography + var/local_transmit //If set, can only speak to others of the same type within a short range. + + var/next_alarm_notice + var/list/datum/alarm/queued_alarms = new() + + var/list/access_rights + var/obj/item/weapon/card/id/idcard + var/idcard_type = /obj/item/weapon/card/id/synthetic + + var/hudmode = null + +/mob/living/silicon/New() + silicon_mob_list |= src + ..() + add_language(LANGUAGE_GALCOM) + set_default_language(GLOB.all_languages[LANGUAGE_GALCOM]) + init_id() + init_subsystems() + +/mob/living/silicon/Destroy() + silicon_mob_list -= src + for(var/datum/alarm_handler/AH in SSalarm.all_handlers) + AH.unregister_alarm(src) + return ..() + +/mob/living/silicon/proc/init_id() + if(idcard) + return + idcard = new idcard_type(src) + set_id_info(idcard) + +/mob/living/silicon/proc/SetName(pickedName as text) + real_name = pickedName + name = real_name + +/mob/living/silicon/proc/show_laws() + return + +/mob/living/silicon/drop_item() + return + +/mob/living/silicon/emp_act(severity) + switch(severity) + if(1) + src.take_organ_damage(0,20,emp=1) + Confuse(5) + if(2) + src.take_organ_damage(0,15,emp=1) + Confuse(4) + if(3) + src.take_organ_damage(0,10,emp=1) + Confuse(3) + if(4) + src.take_organ_damage(0,5,emp=1) + Confuse(2) + flash_eyes(affect_silicon = 1) + to_chat(src, "*BZZZT*") + to_chat(src, "Warning: Electromagnetic pulse detected.") + ..() + +/mob/living/silicon/stun_effect_act(var/stun_amount, var/agony_amount) + return //immune + +/mob/living/silicon/electrocute_act(var/shock_damage, var/obj/source, var/siemens_coeff = 0.0, var/def_zone = null, var/stun = 1) + if(shock_damage > 0) + var/datum/effect/effect/system/spark_spread/s = new /datum/effect/effect/system/spark_spread + s.set_up(5, 1, loc) + s.start() + + shock_damage *= siemens_coeff //take reduced damage + take_overall_damage(0, shock_damage) + visible_message("[src] was shocked by \the [source]!", \ + "Energy pulse detected, system damaged!", \ + "You hear an electrical crack.") + if(prob(20)) + Stun(2) + return + +/mob/living/silicon/proc/damage_mob(var/brute = 0, var/fire = 0, var/tox = 0) + return + +/mob/living/silicon/IsAdvancedToolUser() + return 1 + +/mob/living/silicon/bullet_act(var/obj/item/projectile/Proj) + + if(!Proj.nodamage) + switch(Proj.damage_type) + if(BRUTE) + adjustBruteLoss(Proj.damage) + if(BURN) + adjustFireLoss(Proj.damage) + + Proj.on_hit(src,2) + updatehealth() + return 2 + +/mob/living/silicon/apply_effect(var/effect = 0,var/effecttype = STUN, var/blocked = 0, var/check_protection = 1) + return 0//The only effect that can hit them atm is flashes and they still directly edit so this works for now + + +/proc/islinked(var/mob/living/silicon/robot/bot, var/mob/living/silicon/ai/ai) + if(!istype(bot) || !istype(ai)) + return 0 + if (bot.connected_ai == ai) + return 1 + return 0 + + +// this function shows the health of the AI in the Status panel +/mob/living/silicon/proc/show_system_integrity() + if(!src.stat) + stat(null, text("System integrity: [round((health/getMaxHealth())*100)]%")) + else + stat(null, text("Systems nonfunctional")) + + +// This is a pure virtual function, it should be overwritten by all subclasses +/mob/living/silicon/proc/show_malf_ai() + return 0 + +// this function displays the shuttles ETA in the status panel if the shuttle has been called +/mob/living/silicon/proc/show_emergency_shuttle_eta() + if(emergency_shuttle) + var/eta_status = emergency_shuttle.get_status_panel_eta() + if(eta_status) + stat(null, eta_status) + + +// This adds the basic clock, shuttle recall timer, and malf_ai info to all silicon lifeforms +/mob/living/silicon/Stat() + if(statpanel("Status")) + show_emergency_shuttle_eta() + show_system_integrity() + show_malf_ai() + ..() + +/* VOREStation Removal +// this function displays the stations manifest in a separate window +/mob/living/silicon/proc/show_station_manifest() + var/dat = "
" + if(!data_core) + to_chat(src, "There is no data to form a manifest with. Contact your Nanotrasen administrator.") + return + dat += data_core.get_manifest(1) //The 1 makes it monochrome. + + var/datum/browser/popup = new(src, "Crew Manifest", "Crew Manifest", 370, 420, src) + popup.set_content(dat) + popup.open() +*/ + +//can't inject synths +/mob/living/silicon/can_inject(var/mob/user, var/error_msg, var/target_zone, var/ignore_thickness = FALSE) + if(error_msg) + to_chat(user, "The armoured plating is too tough.") + return 0 + + +//Silicon mob language procs + +/mob/living/silicon/can_speak(datum/language/speaking) + if(universal_speak) + return TRUE + //need speech synthesizer support to vocalize a language + if(speaking in speech_synthesizer_langs) + return TRUE + if(speaking && speaking.flags & INNATE) + return TRUE + return FALSE + +/mob/living/silicon/add_language(var/language, var/can_speak=1) + var/datum/language/added_language = GLOB.all_languages[language] + if(!added_language) + return + + . = ..(language) + if (can_speak && (added_language in languages) && !(added_language in speech_synthesizer_langs)) + speech_synthesizer_langs += added_language + return 1 + +/mob/living/silicon/remove_language(var/rem_language) + var/datum/language/removed_language = GLOB.all_languages[rem_language] + if(!removed_language) + return + + ..(rem_language) + speech_synthesizer_langs -= removed_language + +/mob/living/silicon/check_lang_data() + . = "" + + if(default_language) + . += "Current default language: [default_language] - reset

" + + for(var/datum/language/L in languages) + if(!(L.flags & NONGLOBAL)) + var/default_str + if(L == default_language) + default_str = " - default - reset" + else + default_str = " - set default" + + var/synth = (L in speech_synthesizer_langs) + . += "[L.name] ([get_language_prefix()][L.key])[synth ? default_str : null]
Speech Synthesizer: [synth ? "YES" : "NOT SUPPORTED"]
[L.desc]

" + +/mob/living/silicon/proc/toggle_sensor_mode() + var/sensor_type = tgui_input_list(usr, "Please select sensor type.", "Sensor Integration", list("Security","Medical","Disable")) + switch(sensor_type) + if ("Security") + if(plane_holder) + //Enable Security planes + plane_holder.set_vis(VIS_CH_ID,TRUE) + plane_holder.set_vis(VIS_CH_WANTED,TRUE) + plane_holder.set_vis(VIS_CH_IMPLOYAL,TRUE) + plane_holder.set_vis(VIS_CH_IMPTRACK,TRUE) + plane_holder.set_vis(VIS_CH_IMPCHEM,TRUE) + + //Disable Medical planes + plane_holder.set_vis(VIS_CH_STATUS,FALSE) + plane_holder.set_vis(VIS_CH_HEALTH,FALSE) + + to_chat(src, "Security records overlay enabled.") + if ("Medical") + if(plane_holder) + //Disable Security planes + plane_holder.set_vis(VIS_CH_ID,FALSE) + plane_holder.set_vis(VIS_CH_WANTED,FALSE) + plane_holder.set_vis(VIS_CH_IMPLOYAL,FALSE) + plane_holder.set_vis(VIS_CH_IMPTRACK,FALSE) + plane_holder.set_vis(VIS_CH_IMPCHEM,FALSE) + + //Enable Medical planes + plane_holder.set_vis(VIS_CH_STATUS,TRUE) + plane_holder.set_vis(VIS_CH_HEALTH,TRUE) + + to_chat(src, "Life signs monitor overlay enabled.") + if ("Disable") + if(plane_holder) + //Disable Security planes + plane_holder.set_vis(VIS_CH_ID,FALSE) + plane_holder.set_vis(VIS_CH_WANTED,FALSE) + plane_holder.set_vis(VIS_CH_IMPLOYAL,FALSE) + plane_holder.set_vis(VIS_CH_IMPTRACK,FALSE) + plane_holder.set_vis(VIS_CH_IMPCHEM,FALSE) + + //Disable Medical planes + plane_holder.set_vis(VIS_CH_STATUS,FALSE) + plane_holder.set_vis(VIS_CH_HEALTH,FALSE) + to_chat(src, "Sensor augmentations disabled.") + + hudmode = sensor_type //This is checked in examine.dm on humans, so they can see medical/security records depending on mode + +/mob/living/silicon/verb/pose() + set name = "Set Pose" + set desc = "Sets a description which will be shown when someone examines you." + set category = "IC" + + pose = sanitize(input(usr, "This is [src]. It is...", "Pose", null) as text) + +/mob/living/silicon/verb/set_flavor() + set name = "Set Flavour Text" + set desc = "Sets an extended description of your character's features." + set category = "IC" + + flavor_text = sanitize(input(usr, "Please enter your new flavour text.", "Flavour text", null) as text) + +/mob/living/silicon/binarycheck() + return 1 + +/mob/living/silicon/ex_act(severity) + if(!blinded) + flash_eyes() + + for(var/datum/modifier/M in modifiers) + if(!isnull(M.explosion_modifier)) + severity = CLAMP(severity + M.explosion_modifier, 1, 4) + + severity = round(severity) + + if(severity > 3) + return + + switch(severity) + if(1.0) + if (stat != 2) + adjustBruteLoss(100) + adjustFireLoss(100) + if(!anchored) + gib() + if(2.0) + if (stat != 2) + adjustBruteLoss(60) + adjustFireLoss(60) + if(3.0) + if (stat != 2) + adjustBruteLoss(30) + + updatehealth() + +/mob/living/silicon/proc/receive_alarm(var/datum/alarm_handler/alarm_handler, var/datum/alarm/alarm, was_raised) + if(!next_alarm_notice) + next_alarm_notice = world.time + SecondsToTicks(10) + if(alarm.hidden) + return + if(alarm.origin && !(get_z(alarm.origin) in using_map.get_map_levels(get_z(src), TRUE, om_range = DEFAULT_OVERMAP_RANGE))) + return + + var/list/alarms = queued_alarms[alarm_handler] + if(was_raised) + // Raised alarms are always set + alarms[alarm] = 1 + else + // Alarms that were raised but then cleared before the next notice are instead removed + if(alarm in alarms) + alarms -= alarm + // And alarms that have only been cleared thus far are set as such + else + alarms[alarm] = -1 + +/mob/living/silicon/proc/process_queued_alarms() + if(next_alarm_notice && (world.time > next_alarm_notice)) + next_alarm_notice = 0 + + var/alarm_raised = 0 + for(var/datum/alarm_handler/AH in queued_alarms) + var/list/alarms = queued_alarms[AH] + var/reported = 0 + for(var/datum/alarm/A in alarms) + if(alarms[A] == 1) + alarm_raised = 1 + if(!reported) + reported = 1 + to_chat(src, "--- [AH.category] Detected ---") + raised_alarm(A) + + for(var/datum/alarm_handler/AH in queued_alarms) + var/list/alarms = queued_alarms[AH] + var/reported = 0 + for(var/datum/alarm/A in alarms) + if(alarms[A] == -1) + if(!reported) + reported = 1 + to_chat(src, "--- [AH.category] Cleared ---") + to_chat(src, "\The [A.alarm_name()].") + + if(alarm_raised) + to_chat(src, "\[Show Alerts\]") + + for(var/datum/alarm_handler/AH in queued_alarms) + var/list/alarms = queued_alarms[AH] + alarms.Cut() + +/mob/living/silicon/proc/raised_alarm(var/datum/alarm/A) + to_chat(src, "[A.alarm_name()]!") + +/mob/living/silicon/ai/raised_alarm(var/datum/alarm/A) + var/cameratext = "" + for(var/obj/machinery/camera/C in A.cameras()) + cameratext += "[(cameratext == "")? "" : "|"][C.c_tag]" + to_chat(src, "[A.alarm_name()]! ([(cameratext)? cameratext : "No Camera"])") + + +/mob/living/silicon/proc/is_traitor() + return mind && (mind in traitors.current_antagonists) + +/mob/living/silicon/proc/is_malf() + return mind && (mind in malf.current_antagonists) + +/mob/living/silicon/proc/is_malf_or_traitor() + return is_traitor() || is_malf() + +/mob/living/silicon/adjustEarDamage() + return + +/mob/living/silicon/setEarDamage() + return + +/mob/living/silicon/reset_view() + . = ..() + if(cameraFollow) + cameraFollow = null + +/mob/living/silicon/flash_eyes(intensity = FLASH_PROTECTION_MODERATE, override_blindness_check = FALSE, affect_silicon = FALSE, visual = FALSE, type = /obj/screen/fullscreen/flash) + if(affect_silicon) + return ..() + +/mob/living/silicon/proc/clear_client() + //Handle job slot/tater cleanup. + var/job = mind.assigned_role + + job_master.FreeRole(job) + + if(mind.objectives.len) + qdel(mind.objectives) + mind.special_role = null + + clear_antag_roles(mind) + + ghostize(0) + qdel(src) + +/mob/living/silicon/has_vision() + return 0 //NOT REAL EYES + +/mob/living/silicon/can_feed() + return FALSE \ No newline at end of file diff --git a/code/modules/mob/living/simple_mob/butchering.dm b/code/modules/mob/living/simple_mob/butchering.dm index c03c6b8015..46e888d925 100644 --- a/code/modules/mob/living/simple_mob/butchering.dm +++ b/code/modules/mob/living/simple_mob/butchering.dm @@ -1,5 +1,6 @@ /mob/living/simple_mob gib_on_butchery = TRUE + butchery_drops_organs = FALSE /mob/living/simple_mob/can_butcher(var/mob/user, var/obj/item/I) // Override for special butchering checks. . = ..() diff --git a/code/modules/mob/living/simple_mob/combat.dm b/code/modules/mob/living/simple_mob/combat.dm index 1dce673601..73045b51da 100644 --- a/code/modules/mob/living/simple_mob/combat.dm +++ b/code/modules/mob/living/simple_mob/combat.dm @@ -86,6 +86,10 @@ //The actual top-level ranged attack proc /mob/living/simple_mob/proc/shoot_target(atom/A) set waitfor = FALSE + + if(!istype(A) || QDELETED(A)) + return + setClickCooldown(get_attack_speed()) face_atom(A) diff --git a/code/modules/mob/living/simple_mob/defense.dm b/code/modules/mob/living/simple_mob/defense.dm index 67954d4d9a..1340beb8d5 100644 --- a/code/modules/mob/living/simple_mob/defense.dm +++ b/code/modules/mob/living/simple_mob/defense.dm @@ -59,11 +59,8 @@ // This could be done better. var/obj/item/stack/medical/MED = O if(health < getMaxHealth()) - if(MED.amount >= 1) + if(MED.use(1)) adjustBruteLoss(-MED.heal_brute) - MED.amount -= 1 - if(MED.amount <= 0) - qdel(MED) visible_message("\The [user] applies the [MED] on [src].") else var/datum/gender/T = gender_datums[src.get_visible_gender()] diff --git a/code/modules/mob/living/simple_mob/donteatpets_vr.dm b/code/modules/mob/living/simple_mob/donteatpets_vr.dm index 057373b4c7..adf7d00976 100644 --- a/code/modules/mob/living/simple_mob/donteatpets_vr.dm +++ b/code/modules/mob/living/simple_mob/donteatpets_vr.dm @@ -32,7 +32,7 @@ digestable = 0 devourable = 0 -/mob/living/simple_mob/animal/passive/snake/noodle +/mob/living/simple_mob/animal/passive/snake/python/noodle digestable = 0 devourable = 0 diff --git a/code/modules/mob/living/simple_mob/life.dm b/code/modules/mob/living/simple_mob/life.dm index 05d7d8a4a3..ebe36b48f0 100644 --- a/code/modules/mob/living/simple_mob/life.dm +++ b/code/modules/mob/living/simple_mob/life.dm @@ -15,6 +15,7 @@ handle_special() handle_guts() + do_healing() //VOREStation Add return TRUE @@ -54,7 +55,7 @@ healths.icon_state = "health7" //Updates the nutrition while we're here - var/food_per = (nutrition / initial(nutrition)) * 100 + var/food_per = (nutrition / 500) * 100 //VOREStation Edit: Bandaid hardcode number to avoid misleading percentage based hunger alerts with our 6k cap. switch(food_per) if(90 to INFINITY) clear_alert("nutrition") @@ -63,6 +64,34 @@ if(-INFINITY to 50) throw_alert("nutrition", /obj/screen/alert/starving) +//VOREStation ADD START - I made this for catslugs but tbh it's probably cool to give to everything. +//Gives all simplemobs passive healing as long as they can find food. +//Slow enough that it should affect combat basically not at all + +/mob/living/simple_mob/proc/do_healing() + if(nutrition < 150) + return + if(health == maxHealth) + return + if(heal_countdown > 0) + heal_countdown -- + return + if(resting) + if(bruteloss > 0) + adjustBruteLoss(-10) + else if(fireloss > 0) + adjustFireLoss(-10) + nutrition -= 50 + heal_countdown = 5 + return + if(bruteloss > 0) + adjustBruteLoss(-1) + else if(fireloss > 0) + adjustFireLoss(-1) + nutrition -= 5 + heal_countdown = 5 +//VOREStation ADD END + // Override for special bullshit. /mob/living/simple_mob/proc/handle_special() return @@ -164,4 +193,4 @@ spawn(3) //We'll update our icon in a sec update_icon() - return ..(gibbed,deathmessage) \ No newline at end of file + return ..(gibbed,deathmessage) diff --git a/code/modules/mob/living/simple_mob/on_click.dm b/code/modules/mob/living/simple_mob/on_click.dm index e5dd3a5f2d..ceab778847 100644 --- a/code/modules/mob/living/simple_mob/on_click.dm +++ b/code/modules/mob/living/simple_mob/on_click.dm @@ -30,6 +30,8 @@ if(I_GRAB) if(has_hands) A.attack_hand(src) + else if(isliving(A) && src.client) + animal_nom(A) else attack_target(A) diff --git a/code/modules/mob/living/simple_mob/overmap_mob_vr.dm b/code/modules/mob/living/simple_mob/overmap_mob_vr.dm new file mode 100644 index 0000000000..d9b544cc73 --- /dev/null +++ b/code/modules/mob/living/simple_mob/overmap_mob_vr.dm @@ -0,0 +1,112 @@ +//So this is a bit weird, but I tried to make this as adaptable as I could +//There are two working parts of an overmap mob, but I made it look like there is only one as far as the players are concerned. +//The /obj/effect/overmap/visitable/simplemob is the part people will actually see. It follows the mob around and changes dir to look as mob-ish as it can. +//The /mob/living/simple_mob/vore/overmap is NOT VISIBLE normally, and is the part that actually does the work most of the time. +//Being a simplemob, the mob can wander around and affect the overmap in whatever way you might desire. +//Whatever it does, the /visitable/simplemob will follow it, and does all the functional parts relating to the OM +//including scanning, and housing Z levels people might land on. + +//The MOB being invisible presents some problems though, which I am not entirely sure how to resolve +//Such as, being unable to be attacked by other mobs, and possibly unable to be attacked by players. +//This does not at all prevent the mob from attacking other things though +//so in general, please ensure that you never spawn these where players can ordinarily access them. + +//The mob was made invisible though, because the sensors can't detect invisible objects, so when the /visitable/simplemob was made invisible +//it refused to show up on sensors, and a few simple changes to the sensors didn't rectify this. So, rather than adding in more spaghetti to make +//simplemobs scannable (WHICH I DID, AND IT WORKED SOMEHOW), Aronai and I found that this was the better solution for making all the parts function like I'd like. +//Since I also want it to be possible to land on the overmap object. + +/////OM LANDMARK///// +/obj/effect/overmap/visitable/simplemob + name = "unknown ship" + icon = 'icons/obj/overmap.dmi' + icon_state = "ship" + scannable = TRUE + known = FALSE + in_space = FALSE //Just cuz we don't want people getting here via map edge transitions normally. + unknown_name = "unknown ship" + unknown_state = "ship" + + var/mob/living/simple_mob/vore/overmap/parent_mob_type + var/mob/living/simple_mob/vore/overmap/parent + +/obj/effect/overmap/visitable/simplemob/New(newloc, new_parent) + if(new_parent) + parent = new_parent + return ..() + +/obj/effect/overmap/visitable/simplemob/Initialize() + . = ..() + if(!parent_mob_type && !parent) + log_and_message_admins("An improperly configured OM mob event tried to spawn, and was deleted.") + return INITIALIZE_HINT_QDEL + if(!parent) + var/mob/living/simple_mob/vore/overmap/P = new parent_mob_type(loc, src) + parent = P + om_mob_event_setup() + +/obj/effect/overmap/visitable/simplemob/proc/om_mob_event_setup() + scanner_desc = parent.scanner_desc + RegisterSignal(parent, COMSIG_MOVABLE_MOVED, .proc/on_parent_moved) + skybox_pixel_x = rand(-100,100) + if(known) + name = initial(parent.name) + icon = initial(parent.icon) + icon_state = initial(parent.icon_state) + color = initial(parent.color) + desc = initial(parent.desc) + +/obj/effect/overmap/visitable/simplemob/Destroy() + UnregisterSignal(parent, COMSIG_MOVABLE_MOVED) + qdel_null(parent) + return ..() + +/obj/effect/overmap/visitable/simplemob/get_scan_data(mob/user) + if(!known) + known = TRUE + name = initial(parent.name) + icon = initial(parent.icon) + icon_state = initial(parent.icon_state) + color = initial(parent.color) + desc = initial(parent.desc) + + var/dat = {"\[b\]Scan conducted at\[/b\]: [stationtime2text()] [stationdate2text()]\n\[b\]Grid coordinates\[/b\]: [x],[y]\n\n[scanner_desc]"} + + return dat + +/obj/effect/overmap/visitable/simplemob/proc/on_parent_moved(atom/movable/source, OldLoc, Dir, Forced) + forceMove(parent.loc) + set_dir(parent.dir) + +/////OM MOB///// DO NOT SPAWN THESE ANYWHERE IN THE WORLD, THAT'S SCARY ///// +/mob/living/simple_mob/vore/overmap + invisibility = INVISIBILITY_ABSTRACT //We're making an overmap icon pretend to be a mob + name = "DONT SPAWN ME" + desc = "I'm a bad person I'm sorry" + + faction = "overmap" + low_priority = FALSE + devourable = FALSE + digestable = FALSE + var/scanner_desc + var/obj/effect/overmap/visitable/simplemob/child_om_marker + var/om_child_type + +/mob/living/simple_mob/vore/overmap/New(mapload, new_child) + if(new_child) + child_om_marker = new_child + return ..() + +/mob/living/simple_mob/vore/overmap/Initialize() + . = ..() + if(!om_child_type && !om_child_type) + log_and_message_admins("An improperly configured OM mob tried to spawn, and was deleted.") + return INITIALIZE_HINT_QDEL + if(!child_om_marker) + var/obj/effect/overmap/visitable/simplemob/C = new om_child_type(loc, src) + child_om_marker = C + +/mob/living/simple_mob/vore/overmap/Destroy() + qdel_null(child_om_marker) + return ..() + diff --git a/code/modules/mob/living/simple_mob/sd_pets.dm b/code/modules/mob/living/simple_mob/sd_pets.dm new file mode 100644 index 0000000000..87a0216b8f --- /dev/null +++ b/code/modules/mob/living/simple_mob/sd_pets.dm @@ -0,0 +1,121 @@ +/mob/living/simple_mob/animal/passive/fox/syndicate/aipet + name = "R3N4-ULT" + desc = "A curiously devious robotic fox!" + devourable = 0 + digestable = 0 + +/datum/category_item/catalogue/fauna/catslug/tulidaan + name = "Alien Wildlife - Catslug - Tulidaan" + desc = "A resident of the Stellar Delight. Tulidaan usually\ + inhabits the reading rooms. - \ + The Catslug is an omnivorous terrestrial creature.\ + Exhibiting properties of both a cat and a slug (hence its name)\ + it moves somewhat awkwardly. However, the unique qualities of\ + its body make it exceedingly flexible and smooth, allowing it to\ + wiggle into and move effectively in even extremely tight spaces.\ + Additionally, it has surprisingly capable hands, and moves quite\ + well on two legs or four. Caution is advised when interacting\ + with these creatures, they are quite intelligent, and proficient\ + tool users." + value = CATALOGUER_REWARD_TRIVIAL //Worth less points since it lives on the ship + +/mob/living/simple_mob/vore/alienanimals/catslug/tulidaan + name = "Tulidaan" + desc = "Watcher of the Seven. Thinker, knower." + icon_state = "tulidaan" + icon_living = "tulidaan" + icon_rest = "tulidaan_rest" + icon_dead = "tulidaan_dead" + digestable = 0 + catalogue_data = list(/datum/category_item/catalogue/fauna/catslug/tulidaan) + holder_type = /obj/item/weapon/holder/catslug/tulidaan + +/obj/item/weapon/holder/catslug/tulidaan + item_state = "tulidaan" + +/mob/living/simple_mob/animal/passive/mouse/jerboa/leggy + name = "Leggy" + desc = "Don't make fun, they have a condition." + digestable = 0 + +/mob/living/simple_mob/animal/passive/mouse/jerboa/leggy/New() + ..() + name = initial(name) + desc = initial(desc) + +/mob/living/simple_mob/animal/passive/mouse/brown/feivel + name = "Feivel" + desc = "Heading out west wasn't far enough, so he's going to space!" + digestable = 0 + +/mob/living/simple_mob/animal/passive/mouse/brown/feivel/New() + ..() + name = initial(name) + desc = initial(desc) + +/mob/living/simple_mob/animal/passive/cat/jones + name = "Jones" + desc = "A polite, well groomed patchy colored feline. Doesn't like his cat carrier." + devourable = 0 + digestable = 0 + holder_type = /obj/item/weapon/holder/cat/jones + +/obj/item/weapon/holder/cat/jones + item_state = "cat2" + + +/mob/living/simple_mob/animal/passive/dog/void_puppy/nulle + name = "Nulle" + desc = "A guiding light through the black!" + devourable = 0 + digestable = 0 + +/mob/living/simple_mob/animal/passive/tindalos/twigs + name = "Twigs" + desc = "Its eyes gleam with untold knowings..." + devourable = 0 + digestable = 0 + +/mob/living/simple_mob/animal/passive/bird/azure_tit/iceman + name = "Iceman" + desc = "You wanna know who the best is? That's him. Iceman. Ice cold, no mistakes." + devourable = 0 + digestable = 0 + +/mob/living/simple_mob/animal/passive/mimepet/gregory + name = "Gregory XXVI Esq." + desc = "It looks very distinguished." + devourable = 0 + digestable = 0 + +/mob/living/simple_mob/vore/fennec/bridgette + name = "Bridgette" + desc = "Bridgette the brig fox! She glares at you like you did something wrong!" + devourable = 0 + digestable = 0 + +/datum/category_item/catalogue/fauna/otie/cocoa + name = "Creature - Otie - Cocoa" + desc = "A resident of the Stellar Delight. Cocoa usually inhabits the bar, and is very friendly. - \ + A bioengineered longdog, the otie is very long, and very cute, depending on if you like dogs, \ + especially long ones. They are black-and-grey furred, typically, and tanky, hard to kill. \ + They seem hostile at first, but are also tame-able if you can approach one. Nipnipnip-ACK \ + **the catalogue entry ends here.**" + value = CATALOGUER_REWARD_TRIVIAL //Worth less points since it lives on the ship + + +/mob/living/simple_mob/otie/red/chubby/cocoa + name = "Cocoa" + desc = "A good boi, eats the scraps when you're not looking." + devourable = 0 + digestable = 0 + faction = "bar" + mob_bump_flag = 32 + ai_holder_type = /datum/ai_holder/simple_mob/melee/evasive/otie/cocoa + catalogue_data = list(/datum/category_item/catalogue/fauna/otie/cocoa) + + +/datum/ai_holder/simple_mob/melee/evasive/otie/cocoa + hostile = 0 + retaliate = 0 + violent_breakthrough = 0 \ No newline at end of file diff --git a/code/modules/mob/living/simple_mob/simple_mob.dm b/code/modules/mob/living/simple_mob/simple_mob.dm index 1c8f1f69ad..8314736fa2 100644 --- a/code/modules/mob/living/simple_mob/simple_mob.dm +++ b/code/modules/mob/living/simple_mob/simple_mob.dm @@ -1,6 +1,7 @@ // Reorganized and somewhat cleaned up. // AI code has been made into a datum, inside the AI module folder. + /mob/living/simple_mob name = "animal" desc = "" @@ -59,6 +60,7 @@ var/harm_intent_damage = 3 // How much an unarmed harm click does to this mob. var/list/loot_list = list() // The list of lootable objects to drop, with "/path = prob%" structure var/obj/item/weapon/card/id/myid// An ID card if they have one to give them access to stuff. + var/organ_names = /decl/mob_organ_names //'False' bodyparts that can be shown as hit by projectiles in place of the default humanoid bodyplan. //Mob environment settings var/minbodytemp = 250 // Minimum "okay" temperature in kelvin @@ -161,6 +163,7 @@ // Used for if the mob can drop limbs. Overrides the icon cache key, so it doesn't keep remaking the icon needlessly. var/limb_icon_key var/understands_common = TRUE //VOREStation Edit - Makes it so that simplemobs can understand galcomm without being able to speak it. + var/heal_countdown = 5 //VOREStation Edit - A cooldown ticker for passive healing /mob/living/simple_mob/Initialize() verbs -= /mob/verb/observe @@ -174,6 +177,9 @@ if(has_eye_glow) add_eyes() + if(organ_names) + organ_names = GET_DECL(organ_names) + return ..() /mob/living/simple_mob/Destroy() @@ -287,4 +293,7 @@ if(understands_common && speaking?.name == LANGUAGE_GALCOM) return TRUE return ..() -//Vorestation Add End \ No newline at end of file +//Vorestation Add End + +/decl/mob_organ_names + var/list/hit_zones = list("body") //When in doubt, it's probably got a body. diff --git a/code/modules/mob/living/simple_mob/simple_mob_vr.dm b/code/modules/mob/living/simple_mob/simple_mob_vr.dm index fdbe5b6b68..3349bd433f 100644 --- a/code/modules/mob/living/simple_mob/simple_mob_vr.dm +++ b/code/modules/mob/living/simple_mob/simple_mob_vr.dm @@ -277,13 +277,6 @@ return MOVEMENT_FAILED //Mobs aren't that stupid, probably return ..() // Procede as normal. -//Grab = Nomf -/mob/living/simple_mob/UnarmedAttack(var/atom/A, var/proximity) - . = ..() - - if(a_intent == I_GRAB && isliving(A) && !has_hands) - animal_nom(A) - // Riding /datum/riding/simple_mob keytype = /obj/item/weapon/material/twohanded/riding_crop // Crack! @@ -308,12 +301,13 @@ /datum/riding/simple_mob/get_offsets(pass_index) // list(dir = x, y, layer) var/mob/living/simple_mob/L = ridden var/scale = L.size_multiplier + var/scale_difference = (L.size_multiplier - rider_size) * 10 var/list/values = list( - "[NORTH]" = list(0, L.mount_offset_y*scale, ABOVE_MOB_LAYER), - "[SOUTH]" = list(0, L.mount_offset_y*scale, BELOW_MOB_LAYER), - "[EAST]" = list(-L.mount_offset_x*scale, L.mount_offset_y*scale, ABOVE_MOB_LAYER), - "[WEST]" = list(L.mount_offset_x*scale, L.mount_offset_y*scale, ABOVE_MOB_LAYER)) + "[NORTH]" = list(0, L.mount_offset_y*scale + scale_difference, ABOVE_MOB_LAYER), + "[SOUTH]" = list(0, L.mount_offset_y*scale + scale_difference, BELOW_MOB_LAYER), + "[EAST]" = list(-L.mount_offset_x*scale, L.mount_offset_y*scale + scale_difference, ABOVE_MOB_LAYER), + "[WEST]" = list(L.mount_offset_x*scale, L.mount_offset_y*scale + scale_difference, ABOVE_MOB_LAYER)) return values @@ -340,6 +334,7 @@ . = ..() if(.) + riding_datum.rider_size = H.size_multiplier buckled_mobs[H] = "riding" /mob/living/simple_mob/attack_hand(mob/user as mob) diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/alien animals/catslug.dm b/code/modules/mob/living/simple_mob/subtypes/animal/alien animals/catslug.dm index 911d60842d..6864f25f69 100644 --- a/code/modules/mob/living/simple_mob/subtypes/animal/alien animals/catslug.dm +++ b/code/modules/mob/living/simple_mob/subtypes/animal/alien animals/catslug.dm @@ -51,7 +51,6 @@ has_langs = list("Sign Language") - var/heal_countdown = 0 var/picked_color = FALSE can_enter_vent_with = list( @@ -163,39 +162,55 @@ playsound(src, 'sound/items/eatfood.ogg', 75, 1) /mob/living/simple_mob/vore/alienanimals/catslug/attack_hand(mob/living/carbon/human/M as mob) - if(stat != DEAD && M.a_intent == I_HELP && resting) + + if(stat == DEAD) + return ..() + if(M.a_intent != I_HELP) + return ..() + playsound(src, 'sound/weapons/thudswoosh.ogg', 50, 1, -1) + if(resting) M.visible_message("\The [M.name] shakes \the [src] awake from their nap.","You shake \the [src] awake!") - playsound(src, 'sound/weapons/thudswoosh.ogg', 50, 1, -1) lay_down() ai_holder.go_wake() return + if(M.zone_sel.selecting == BP_HEAD) + M.visible_message( \ + "[M] pats \the [src] on the head.", \ + "You pat \the [src] on the head.", ) + if(client) + return + if(prob(10)) + visible_message("\The [src] purrs and leans into [M]'s hand.") + else if(M.zone_sel.selecting == BP_R_HAND || M.zone_sel.selecting == BP_L_HAND) + M.visible_message( \ + "[M] shakes \the [src]'s hand.", \ + "You shake \the [src]'s hand.", ) + if(client) + return + if(prob(10)) + visible_message("\The [src]'s looks a little confused nibbles at [M]'s hand experimentally.") + else if(M.zone_sel.selecting == "mouth") + M.visible_message( \ + "[M] boops \the [src]'s nose.", \ + "You boop \the [src] on the nose.", ) + if(client) + return + if(prob(10)) + visible_message("\The [src]'s eyes widen as they stare at [M]. After a moment they rub their prodded snoot.") + else if(M.zone_sel.selecting == BP_GROIN) + M.visible_message( \ + "[M] rubs \the [src]'s tummy...", \ + "You rub \the [src]'s tummy... You feel the danger.", ) + if(client) + return + visible_message("\The [src] pushes [M]'s hand away from their tummy and furrows their brow!") + if(prob(5)) + ai_holder.target = M + ai_holder.track_target_position() + ai_holder.set_stance(STANCE_FIGHT) else return ..() -/mob/living/simple_mob/vore/alienanimals/catslug/Life() - . = ..() - if(nutrition < 150) - return - if(health == maxHealth) - return - if(heal_countdown > 0) - heal_countdown -- - return - if(resting) - if(bruteloss > 0) - adjustBruteLoss(-10) - else if(fireloss > 0) - adjustFireLoss(-10) - nutrition -= 50 - heal_countdown = 5 - return - if(bruteloss > 0) - adjustBruteLoss(-1) - else if(fireloss > 0) - adjustFireLoss(-1) - nutrition -= 5 - heal_countdown = 5 - /mob/living/simple_mob/vore/alienanimals/catslug/Login() //If someone plays as us let's just be a passive mob in case accidents happen if the player D/Cs . = ..() ai_holder.hostile = FALSE diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/alien animals/jellyfish.dm b/code/modules/mob/living/simple_mob/subtypes/animal/alien animals/jellyfish.dm new file mode 100644 index 0000000000..3347494b4e --- /dev/null +++ b/code/modules/mob/living/simple_mob/subtypes/animal/alien animals/jellyfish.dm @@ -0,0 +1,171 @@ +GLOBAL_VAR_CONST(max_jellyfish, 50) +GLOBAL_VAR_INIT(jellyfish_count, 0) + + +/datum/category_item/catalogue/fauna/space_jellyfish + name = "Alien Wildlife - Space Jellyfish" + desc = "A hostile space predator. \ + This space jellyfish uses hypnotic patterns to lure in prey, which it then wraps in tentacles to leech energy from.\ + It is somewhat weak, but uses unknown means to stun prey. It uses the energy of its prey to replicate itself. \ + These creatures can quickly grow out of control if left to feed and reproduce unchecked. \ + Notable weakness to rapid cooling from ice based weaponry.\ + The flesh is typically non-toxic and quite delicious. Their cores are considered a delicacy in many regions." + value = CATALOGUER_REWARD_EASY + + +/mob/living/simple_mob/vore/alienanimals/space_jellyfish + name = "space jellyfish" + desc = "A semi-translucent space creature, possessing of tentacles and a hypnotizing, flashing bio-luminescent display." + tt_desc = "Semaeostomeae Stellarus" + catalogue_data = list(/datum/category_item/catalogue/fauna/space_jellyfish) + + icon = 'icons/mob/alienanimals_x32.dmi' + icon_state = "space_jellyfish" + icon_living = "space_jellyfish" + icon_dead = "space_jellyfish_dead" + has_eye_glow = TRUE + hovering = TRUE + + + faction = "jellyfish" + maxHealth = 100 + health = 100 + nutrition = 150 + pass_flags = PASSTABLE + movement_cooldown = 3.25 + + see_in_dark = 10 + + response_help = "pets" + response_disarm = "gently pushes aside" + response_harm = "punches" + + harm_intent_damage = 1 + melee_damage_lower = 1 + melee_damage_upper = 2 + attack_sharp = FALSE + attack_sound = 'sound/weapons/tap.ogg' + attacktext = list("drained", "bludgeoned", "wraped", "tentacle whipped") + + ai_holder_type = /datum/ai_holder/simple_mob/melee/evasive/jellyfish + + min_oxy = 0 + max_oxy = 0 + min_tox = 0 + max_tox = 0 + min_co2 = 0 + max_co2 = 0 + min_n2 = 0 + max_n2 = 0 + minbodytemp = 0 + maxbodytemp = 900 + + speak_emote = list("thrumms") + + meat_amount = 0 + meat_type = /obj/item/weapon/reagent_containers/food/snacks/jellyfishcore + + say_list_type = /datum/say_list/jellyfish + + vore_active = 1 + vore_capacity = 1 + vore_bump_chance = 25 + vore_ignores_undigestable = 0 + vore_default_mode = DM_DRAIN + vore_icons = SA_ICON_LIVING + vore_stomach_name = "internal chamber" + vore_default_contamination_flavor = "Wet" + vore_default_contamination_color = "grey" + vore_default_item_mode = IM_DIGEST + + var/reproduction_cooldown = 0 + +/datum/say_list/jellyfish + emote_see = list("flickers", "flashes", "looms","pulses","sways","shimmers hypnotically") + + +/mob/living/simple_mob/vore/alienanimals/space_jellyfish/init_vore() + ..() + var/obj/belly/B = vore_selected + B.name = "internal chamber" + B.desc = "It's smooth and translucent. You can see the world around you distort and wobble with the movement of the space jellyfish. It floats casually, while the delicate flesh seems to form to you. It's surprisingly cool, and flickers with its own light. You're on display for all to see, trapped within the confines of this strange space alien!" + B.mode_flags = 40 + B.digest_brute = 0.5 + B.digest_burn = 0.5 + B.digestchance = 0 + B.absorbchance = 0 + B.escapechance = 15 + + +/mob/living/simple_mob/vore/alienanimals/space_jellyfish/apply_melee_effects(var/atom/A) + if(isliving(A)) + var/mob/living/L = A + var/leech = rand(1,100) + if(L.nutrition) + L.adjust_nutrition(-leech) + adjust_nutrition(leech) + if(prob(25)) + L.adjustHalLoss(leech) + +/mob/living/simple_mob/vore/alienanimals/space_jellyfish/New(newloc, jellyfish) + GLOB.jellyfish_count ++ + var/mob/living/simple_mob/vore/alienanimals/space_jellyfish/parent = jellyfish + if(parent) + parent.faction = faction + ..() + +/mob/living/simple_mob/vore/alienanimals/space_jellyfish/death() + . = ..() + new /obj/item/weapon/reagent_containers/food/snacks/jellyfishcore(loc, nutrition) + GLOB.jellyfish_count -- + qdel(src) + +/mob/living/simple_mob/vore/alienanimals/space_jellyfish/Life() + . = ..() + if(client) + return + reproduce() + +/mob/living/simple_mob/vore/alienanimals/space_jellyfish/proc/reproduce() + if(reproduction_cooldown > 0) + reproduction_cooldown -- + return + if(GLOB.jellyfish_count >= GLOB.max_jellyfish) + return + if(nutrition < 500) + return + if(prob(10)) + new /mob/living/simple_mob/vore/alienanimals/space_jellyfish(loc, src) + adjust_nutrition(-400) + reproduction_cooldown = 60 + +/mob/living/simple_mob/vore/alienanimals/space_jellyfish/Process_Spacemove(var/check_drift = 0) + return TRUE + +/datum/ai_holder/simple_mob/melee/evasive/jellyfish + hostile = TRUE + cooperative = FALSE + retaliate = TRUE + speak_chance = 2 + wander = TRUE + unconscious_vore = TRUE + +/obj/item/weapon/reagent_containers/food/snacks/jellyfishcore + name = "jellyfish core" + icon = 'icons/obj/food_vr.dmi' + icon_state = "jellyfish_core" + desc = "The pulsing core of a space jellyfish! ... It smells delicious." + nutriment_amt = 50 + bitesize = 1000 + nutriment_desc = list("heavenly space meat" = 100) + + var/inherited_nutriment = 0 + +/obj/item/weapon/reagent_containers/food/snacks/jellyfishcore/New(newloc, inherit) + inherited_nutriment = inherit + . = ..() + +/obj/item/weapon/reagent_containers/food/snacks/jellyfishcore/Initialize() + nutriment_amt += inherited_nutriment + . = ..() + reagents.add_reagent("nutriment", nutriment_amt, nutriment_desc) \ No newline at end of file diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/alien animals/skeleton.dm b/code/modules/mob/living/simple_mob/subtypes/animal/alien animals/skeleton.dm new file mode 100644 index 0000000000..4e9f2f66e0 --- /dev/null +++ b/code/modules/mob/living/simple_mob/subtypes/animal/alien animals/skeleton.dm @@ -0,0 +1,94 @@ +/datum/category_item/catalogue/fauna/skeleton + name = "Alien Wildlife - Space Skeleton" + desc = "A creature consisting primarily of what appears to be bones with no apparent connective tissue, muscle, or organs.\ + It is not clear at all how this creature even operates." + value = CATALOGUER_REWARD_MEDIUM + +/mob/living/simple_mob/vore/alienanimals/skeleton + name = "skeleton" + desc = "An arrangement of what appears to be bones, given life and mobility. It looks REALLY spooky." + catalogue_data = list(/datum/category_item/catalogue/fauna/skeleton) + + icon = 'icons/mob/alienanimals_x32.dmi' + icon_state = "skeleton" + icon_living = "skeleton" + icon_dead = "skeleton_dead" + + faction = "space skeleton" + maxHealth = 100 + health = 100 + movement_cooldown = 1 + movement_sound = 'sound/effects/skeleton_walk.ogg' //VERY IMPORTANT + + see_in_dark = 10 + + response_help = "rattles" + response_disarm = "shoves aside" + response_harm = "smashes" + + melee_damage_lower = 1 + melee_damage_upper = 10 + attack_sharp = FALSE + attacktext = list("spooked", "startled", "jumpscared", "rattled at") + + ai_holder_type = /datum/ai_holder/simple_mob/melee/evasive/skeleton + + min_oxy = 0 + max_oxy = 0 + min_tox = 0 + max_tox = 0 + min_co2 = 0 + max_co2 = 0 + min_n2 = 0 + max_n2 = 0 + minbodytemp = 0 + maxbodytemp = 900 + + loot_list = list( + /obj/item/weapon/bone = 25, + /obj/item/weapon/bone/skull = 25, + /obj/item/weapon/bone/ribs = 25, + /obj/item/weapon/bone/arm = 25, + /obj/item/weapon/bone/leg = 25 + ) + + speak_emote = list("rattles") + + say_list_type = /datum/say_list/skeleton + + vore_active = 1 + vore_capacity = 1 + vore_bump_chance = 5 + vore_ignores_undigestable = 0 + vore_default_mode = DM_DRAIN + vore_icons = SA_ICON_LIVING + vore_stomach_name = "stomach" + vore_default_contamination_flavor = "Wet" + vore_default_contamination_color = "grey" + vore_default_item_mode = IM_DIGEST + +/datum/say_list/skeleton + speak = list("Nyeh heh heeeh","NYAAAAHHHH", "Books are the real treasures of the world!", "Why are skeletons so calm? Because nothing gets under their skin.","When does a skeleton laugh? When someone tickels their funny bone!","What is a skeleton’s favorite mode of transport? A scare-plane.", "What did the skeleton say to the vampire? 'You suck.'","What is a skeleton’s favorite thing to do with their cell phone? Take skelfies.", "How did the skeleton know the other skeleton was lying? He could see right through him.","What’s a skeleton’s least favorite room in the house? The living room.", "How much does an elephant skeleton weigh? Skele-tons.", "Why do skeletons drink so much milk? It’s good for the bones!", "Where do bad jokes about skeletons belong? In the skelebin.","What does a skeleton use to cut through objects? A shoulder blade.", "What kind of jokes do skeletons tell? Humerus ones.") + emote_see = list("spins its head around", "shuffles","shambles","practices on the xylophone","drinks some milk","looks at you. Its hollow, bottomless sockets gaze into you greedily.") + emote_hear = list("rattles","makes a spooky sound","cackles madly","plinks","clacks") + +/mob/living/simple_mob/vore/alienanimals/skeleton/init_vore() + ..() + var/obj/belly/B = vore_selected + B.name = "stomach" + B.desc = "You're not sure quite how, but you've found your way inside of the skeleton's stomach! It's cramped and cold and sounds heavily of xylophones!" + B.mode_flags = 40 + B.digest_brute = 0.5 + B.digest_burn = 0.5 + B.digestchance = 10 + B.absorbchance = 0 + B.escapechance = 25 + +/mob/living/simple_mob/vore/alienanimals/skeleton/death(gibbed, deathmessage = "falls down and stops moving...") + . = ..() + +/datum/ai_holder/simple_mob/melee/evasive/skeleton + hostile = TRUE + retaliate = TRUE + destructive = TRUE + violent_breakthrough = TRUE diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/alien animals/space_mouse.dm b/code/modules/mob/living/simple_mob/subtypes/animal/alien animals/space_mouse.dm new file mode 100644 index 0000000000..60be79dadd --- /dev/null +++ b/code/modules/mob/living/simple_mob/subtypes/animal/alien animals/space_mouse.dm @@ -0,0 +1,92 @@ +/datum/category_item/catalogue/fauna/dustjumper + name = "Alien Wildlife - Dust Jumper" + desc = "A small, quick creature, the dust jumper is a rare space creature.\ + They have striking similarities to the common mouse, but these creatures are actually most commonly found in space.\ + They are known to make their homes in asteroids, and leap from one to another when food is scarce.\ + Dust jumpers are omnivorous, eating what scraps of organic material they can get their little paws on.\ + They hybernate during long floats through space." + value = CATALOGUER_REWARD_MEDIUM + +/mob/living/simple_mob/vore/alienanimals/dustjumper + name = "dust jumper" + desc = "A small, unassuming mammal. It looks quite soft and fluffy, and has bright blue eyes." + catalogue_data = list(/datum/category_item/catalogue/fauna/dustjumper) + + icon = 'icons/mob/alienanimals_x32.dmi' + icon_state = "space_mouse" + icon_living = "space_mouse" + icon_dead = "space_mouse_dead" + + faction = "space mouse" + maxHealth = 20 + health = 20 + movement_cooldown = 1 + + see_in_dark = 10 + + response_help = "pets" + response_disarm = "pushes" + response_harm = "punches" + + melee_damage_lower = 1 + melee_damage_upper = 2 + attack_sharp = FALSE + attacktext = list("nipped", "squeaked at", "hopped on", "kicked") + + ai_holder_type = /datum/ai_holder/simple_mob/melee/evasive/dustjumper + + min_oxy = 0 + max_oxy = 0 + min_tox = 0 + max_tox = 0 + min_co2 = 0 + max_co2 = 0 + min_n2 = 0 + max_n2 = 0 + minbodytemp = 0 + maxbodytemp = 900 + + speak_emote = list("squeaks") + + say_list_type = /datum/say_list/mouse + + vore_active = 1 + vore_capacity = 1 + vore_bump_chance = 0 + vore_ignores_undigestable = 0 + vore_default_mode = DM_DRAIN + vore_icons = SA_ICON_LIVING + vore_stomach_name = "stomach" + vore_default_contamination_flavor = "Wet" + vore_default_contamination_color = "grey" + vore_default_item_mode = IM_DIGEST + +/mob/living/simple_mob/vore/alienanimals/dustjumper/init_vore() + ..() + var/obj/belly/B = vore_selected + B.name = "stomach" + B.desc = "You've been packed into the impossibly tight stomach of the dust jumper!!! The broiling heat seeps into you while the walls churn in powerfully, forcing you to curl up in the darkness." + B.mode_flags = DM_FLAG_THICKBELLY | DM_FLAG_NUMBING + B.digest_brute = 0.5 + B.digest_burn = 0.5 + B.digestchance = 10 + B.absorbchance = 0 + B.escapechance = 25 + +/mob/living/simple_mob/vore/alienanimals/dustjumper/Life() + . = ..() + if(!.) + return + if(vore_fullness == 0 && movement_cooldown == 50) + movement_cooldown = initial(movement_cooldown) +/mob/living/simple_mob/vore/alienanimals/dustjumper/perform_the_nom(mob/living/user, mob/living/prey, mob/living/pred, obj/belly/belly, delay) + . = ..() + movement_cooldown = 50 + +/datum/ai_holder/simple_mob/melee/evasive/dustjumper + hostile = FALSE + retaliate = TRUE + destructive = FALSE + violent_breakthrough = FALSE + can_flee = TRUE + flee_when_dying = TRUE diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/alien animals/spacewhale.dm b/code/modules/mob/living/simple_mob/subtypes/animal/alien animals/spacewhale.dm new file mode 100644 index 0000000000..4cc14a1caa --- /dev/null +++ b/code/modules/mob/living/simple_mob/subtypes/animal/alien animals/spacewhale.dm @@ -0,0 +1,208 @@ +/datum/category_item/catalogue/fauna/spacewhale + name = "Alien Wildlife - Space Whale" + desc = "A massive space creature! These are typically peaceful to anything smaller than themselves, with exception given to space carp, which it eats.\ + It is known to ravage and devour other large space dwelling species.\ + It occasionally gets restless and moves around erratically, which may affect the local space weather.\ + This creature shows no real interest in or aversion to spacecraft." + value = CATALOGUER_REWARD_SUPERHARD + +/mob/living/simple_mob/vore/overmap/spacewhale + name = "space whale" + desc = "It's a space whale. I don't know what more you expected." + scanner_desc = "An absolutely massive space-born creature. A layer of radical energy around its body prevents detailed scanning, though, the energy along with its movements seem to be what propels it through space. A series of bio-luminescent lights ripple rhythmically across its surface. It is difficult to spot at range except for the wake of energy that swirls around it." + catalogue_data = list(/datum/category_item/catalogue/fauna/spacewhale) + + icon = 'icons/mob/alienanimals_x32.dmi' + icon_state = "space_whale" + icon_living = "space_whale" + icon_dead = "space_ghost_dead" + + om_child_type = /obj/effect/overmap/visitable/simplemob/spacewhale + + maxHealth = 100000 + health = 100000 + movement_cooldown = 50 + + see_in_dark = 10 + + response_help = "pets" + response_disarm = "gently pushes aside" + response_harm = "punches" + + harm_intent_damage = 1 + melee_damage_lower = 50 + melee_damage_upper = 100 + attack_sharp = FALSE + attacktext = list("chomped", "bashed", "monched", "bumped") + + ai_holder_type = /datum/ai_holder/simple_mob/melee/spacewhale + + min_oxy = 0 + max_oxy = 0 + min_tox = 0 + max_tox = 0 + min_co2 = 0 + max_co2 = 0 + min_n2 = 0 + max_n2 = 0 + minbodytemp = 0 + maxbodytemp = 900 + + loot_list = list(/obj/random/underdark/uncertain) + + armor = list( + "melee" = 1000, + "bullet" = 1000, + "laser" = 1000, + "energy" = 1000, + "bomb" = 1000, + "bio" = 1000, + "rad" = 1000) + + armor_soak = list( + "melee" = 1000, + "bullet" = 1000, + "laser" = 1000, + "energy" = 1000, + "bomb" = 1000, + "bio" = 1000, + "rad" = 1000 + ) + + speak_emote = list("rumbles") + + say_list_type = /datum/say_list/spacewhale + + var/hazard_pickup_chance = 35 + var/hazard_drop_chance = 35 + var/held_hazard + var/restless = FALSE + var/post_restless_tired = 0 + + vore_active = 1 + vore_capacity = 99 + vore_bump_chance = 99 + vore_pounce_chance = 99 + vore_ignores_undigestable = 0 + vore_default_mode = DM_DIGEST + vore_icons = SA_ICON_LIVING + vore_stomach_name = "stomach" + vore_default_contamination_flavor = "Wet" + vore_default_contamination_color = "grey" + vore_default_item_mode = IM_DIGEST + +/datum/say_list/spacewhale + emote_see = list("ripples and flows", "flashes rhythmically","glows faintly","investigates something") + +/mob/living/simple_mob/vore/overmap/spacewhale/init_vore() + ..() + var/obj/belly/B = vore_selected + B.name = "stomach" + B.desc = "It's warm and wet, makes sense, considering it's inside of a space whale. You should take a moment to reflect upon how you got here, and how you might avoid situations like this in the future, while this whale attempts to mercilessly destroy you through various gastric processes." + B.mode_flags = DM_FLAG_THICKBELLY | DM_FLAG_NUMBING + B.digest_brute = 50 + B.digest_burn = 50 + B.escapechance = 0 + +/mob/living/simple_mob/vore/overmap/spacewhale/Initialize() + . = ..() + handle_restless() + +/mob/living/simple_mob/vore/overmap/spacewhale/Moved() + . = ..() + if(restless && prob(5)) + handle_restless() + + for(var/obj/effect/decal/cleanable/C in loc) + qdel(C) + for(var/obj/item/organ/O in loc) + qdel(O) + var/detected = FALSE + for(var/obj/effect/overmap/event/E in loc) + detected = TRUE + if(istype(E, /obj/effect/overmap/event/carp)) + qdel(E) + continue + else if(!held_hazard && prob(hazard_pickup_chance)) + held_hazard = E.type + qdel(E) + return + if(held_hazard && !detected && prob(hazard_drop_chance)) + if(!(locate(/obj/effect/overmap/visitable/sector) in loc)) + new held_hazard(loc) + held_hazard = null + +/mob/living/simple_mob/vore/overmap/spacewhale/Life() + . = ..() + if(post_restless_tired) + post_restless_tired-- + return + if(!restless && prob(0.5)) + handle_restless() + +/mob/living/simple_mob/vore/overmap/spacewhale/proc/handle_restless() + if(restless) + restless = FALSE + hazard_pickup_chance = initial(hazard_pickup_chance) + hazard_drop_chance = initial(hazard_drop_chance) + movement_cooldown = initial(movement_cooldown) + ai_holder.base_wander_delay = initial(ai_holder.base_wander_delay) + ai_holder.wander = FALSE + post_restless_tired = 250 + if(child_om_marker.known == TRUE) + child_om_marker.icon_state = "space_whale" + visible_message("\The [child_om_marker.name] settles down.") + else + restless = TRUE + hazard_pickup_chance *= 1.5 + hazard_drop_chance *= 1.5 + movement_cooldown = 1 + ai_holder.base_wander_delay = 2 + ai_holder.wander_delay = 2 + if(child_om_marker.known == TRUE) + child_om_marker.icon_state = "space_whale_restless" + visible_message("\The [child_om_marker.name] ripples excitedly.") + +/datum/ai_holder/simple_mob/melee/spacewhale + hostile = TRUE + retaliate = TRUE + destructive = TRUE + violent_breakthrough = TRUE + unconscious_vore = TRUE + handle_corpse = TRUE + mauling = TRUE + base_wander_delay = 50 + +/datum/ai_holder/simple_mob/melee/spacewhale/set_stance(var/new_stance) + . = ..() + var/mob/living/simple_mob/vore/overmap/spacewhale/W = holder + if(stance == STANCE_FIGHT) + W.movement_cooldown = 0 + W.child_om_marker.glide_size = 0 + if(stance == STANCE_IDLE) + W.hazard_pickup_chance = initial(W.hazard_pickup_chance) + W.hazard_drop_chance = initial(W.hazard_drop_chance) + W.movement_cooldown = 50 + base_wander_delay = 50 + W.restless = FALSE + W.handle_restless() + W.movement_cooldown = initial(W.movement_cooldown) + W.child_om_marker.glide_size = 0.384 + +/mob/living/simple_mob/vore/overmap/spacewhale/apply_melee_effects(var/atom/A) + . = ..() + if(istype(A, /mob/living)) + var/mob/living/L = A + if(L.stat == DEAD && !L.allowmobvore) + L.gib() + else + return ..() + +/obj/effect/overmap/visitable/simplemob/spacewhale + skybox_icon = 'icons/skybox/anomaly.dmi' + skybox_icon_state = "space_whale" + skybox_pixel_x = 0 + skybox_pixel_y = 0 + glide_size = 0.384 + parent_mob_type = /mob/living/simple_mob/vore/overmap/spacewhale + scanner_desc = "An absolutely massive space-born creature. A layer of radical energy around its body prevents detailed scanning, though, the energy along with its movements seem to be what propels it through space. A series of bio-luminescent lights ripple rhythmically across its surface. It is difficult to spot at range except for the wake of energy that swirls around it." diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/alien animals/spookyghost.dm b/code/modules/mob/living/simple_mob/subtypes/animal/alien animals/spookyghost.dm new file mode 100644 index 0000000000..b8de4885ba --- /dev/null +++ b/code/modules/mob/living/simple_mob/subtypes/animal/alien animals/spookyghost.dm @@ -0,0 +1,219 @@ +/datum/category_item/catalogue/fauna/space_ghost + name = "Alien Wildlife - Space Ghost" + desc = "A mysterious and unknown creature made of radical energy.\ + This creature's energy interferes the nervous system in many kinds of creatures, which may result in hallucinations.\ + This creature's lack of a physical form leaves it quite resistant to physical damage.\ + Smaller variants of this creature seem to be vulnerable to bright light.\ + While both variants are quite vulnerable to laser and energy weapons." + value = CATALOGUER_REWARD_EASY + + +/mob/living/simple_mob/vore/alienanimals/space_ghost + name = "space ghost" + desc = "A pulsing mass of darkness that seems to have gained sentience." + tt_desc = "?????" + catalogue_data = list(/datum/category_item/catalogue/fauna/space_ghost) + + icon = 'icons/mob/alienanimals_x32.dmi' + icon_state = "space_ghost" + icon_living = "space_ghost" + icon_dead = "space_ghost_dead" + has_eye_glow = TRUE + hovering = TRUE + pass_flags = PASSTABLE + + faction = "space ghost" + maxHealth = 50 + health = 50 + movement_cooldown = 3.25 + + see_in_dark = 10 + + response_help = "pets" + response_disarm = "gently pushes aside" + response_harm = "punches" + + harm_intent_damage = 0 + melee_damage_lower = 1 + melee_damage_upper = 1 + attack_sharp = FALSE + attacktext = list("spooked", "startled", "jumpscared", "screamed at") + + ai_holder_type = /datum/ai_holder/simple_mob/melee/space_ghost + + min_oxy = 0 + max_oxy = 0 + min_tox = 0 + max_tox = 0 + min_co2 = 0 + max_co2 = 0 + min_n2 = 0 + max_n2 = 0 + minbodytemp = 0 + maxbodytemp = 999999 + + armor = list( + "melee" = 100, + "bullet" = 100, + "laser" = 0, + "energy" = 0, + "bomb" = 0, + "bio" = 0, + "rad" = 100) + + armor_soak = list( + "melee" = 100, + "bullet" = 100, + "laser" = 0, + "energy" = 0, + "bomb" = 0, + "bio" = 0, + "rad" = 100 + ) + + loot_list = list(/obj/item/weapon/ore/diamond = 100) + + speak_emote = list("rumbles") + + vore_active = 0 + + projectiletype = /mob/living/simple_mob/vore/alienanimals/spooky_ghost + projectilesound = null + projectile_accuracy = 0 + projectile_dispersion = 0 + + needs_reload = TRUE + reload_max = 1 + reload_count = 0 + reload_time = 7 SECONDS + + +/datum/ai_holder/simple_mob/ranged/kiting/space_ghost + hostile = TRUE + retaliate = TRUE + destructive = TRUE + violent_breakthrough = TRUE + speak_chance = 0 + +/mob/living/simple_mob/vore/alienanimals/space_ghost/apply_melee_effects(var/atom/A) + var/mob/living/L = A + L.hallucination += 50 + +/mob/living/simple_mob/vore/alienanimals/space_ghost/shoot(atom/A) //We're shooting ghosts at people and need them to have the same faction as their parent, okay? + if(!projectiletype) + return + if(A == get_turf(src)) + return + face_atom(A) + if(reload_count >= reload_max) + return + var/mob/living/simple_mob/P = new projectiletype(loc, src) + + if(!P) + return + if(needs_reload) + reload_count++ + + P.faction = faction + playsound(src, projectilesound, 80, 1) + +/mob/living/simple_mob/vore/alienanimals/space_ghost/death(gibbed, deathmessage = "fades away!") + . = ..() + qdel(src) + +/mob/living/simple_mob/vore/alienanimals/spooky_ghost + name = "space ghost" + desc = "A pulsing mass of darkness that seems to have gained sentience." + tt_desc = "?????" + catalogue_data = list(/datum/category_item/catalogue/fauna/space_ghost) + + icon = 'icons/mob/alienanimals_x32.dmi' + icon_state = "spookyghost-1" + icon_living = "spookyghost-1" + icon_dead = "space_ghost_dead" + hovering = TRUE + pass_flags = PASSTABLE + + faction = "space ghost" + maxHealth = 5 + health = 5 + movement_cooldown = 1 + + see_in_dark = 10 + alpha = 128 + + response_help = "pets" + response_disarm = "gently pushes aside" + response_harm = "punches" + + harm_intent_damage = 0 + melee_damage_lower = 1 + melee_damage_upper = 1 + attack_sharp = FALSE + attacktext = list("spooked", "startled", "jumpscared", "screamed at") + + min_oxy = 0 + max_oxy = 0 + min_tox = 0 + max_tox = 0 + min_co2 = 0 + max_co2 = 0 + min_n2 = 0 + max_n2 = 0 + minbodytemp = 0 + maxbodytemp = 999999 + + armor = list( + "melee" = 100, + "bullet" = 100, + "laser" = 0, + "energy" = 0, + "bomb" = 0, + "bio" = 0, + "rad" = 100) + + armor_soak = list( + "melee" = 100, + "bullet" = 100, + "laser" = 0, + "energy" = 0, + "bomb" = 0, + "bio" = 0, + "rad" = 100 + ) + + speak_emote = list("rumbles") + + vore_active = 0 + + ai_holder_type = /datum/ai_holder/simple_mob/melee/space_ghost + +/mob/living/simple_mob/vore/alienanimals/spooky_ghost/Initialize() + . = ..() + icon_living = "spookyghost-[rand(1,2)]" + icon_state = icon_living + addtimer(CALLBACK(src, .proc/death), 2 MINUTES) + update_icon() + +/datum/ai_holder/simple_mob/melee/space_ghost + hostile = TRUE + retaliate = TRUE + destructive = TRUE + violent_breakthrough = TRUE + speak_chance = 0 + +/mob/living/simple_mob/vore/alienanimals/spooky_ghost/death(gibbed, deathmessage = "fades away!") + . = ..() + qdel(src) + +/mob/living/simple_mob/vore/alienanimals/spooky_ghost/apply_melee_effects(var/atom/A) + var/mob/living/L = A + L.hallucination += rand(1,50) + +/mob/living/simple_mob/vore/alienanimals/spooky_ghost/Life() + . = ..() + var/turf/T = get_turf(src) + if(!T) + return + if(T.get_lumcount() >= 0.5) + adjustBruteLoss(1) \ No newline at end of file diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/alien animals/startreader.dm b/code/modules/mob/living/simple_mob/subtypes/animal/alien animals/startreader.dm new file mode 100644 index 0000000000..b8efeef435 --- /dev/null +++ b/code/modules/mob/living/simple_mob/subtypes/animal/alien animals/startreader.dm @@ -0,0 +1,176 @@ +/datum/category_item/catalogue/fauna/startreader + name = "Alien Wildlife - Star Treader" + desc = "A hard shelled creature that lives on asteroids.\ + It is quite durable and very opportunistic in its feeding habits.\ + It is vulnerable to extreme vibrations, and from the bottom." + value = CATALOGUER_REWARD_EASY + + +/mob/living/simple_mob/vore/alienanimals/startreader + name = "asteroid star treader" + desc = "A slow, hard shelled creature that stalks asteroids." + tt_desc = "Testudines Stellarus" + catalogue_data = list(/datum/category_item/catalogue/fauna/startreader) + + icon = 'icons/mob/alienanimals_x32.dmi' + icon_state = "startreader" + icon_living = "startreader" + icon_dead = "startreader_dead" + + faction = "space turtle" + maxHealth = 1000 + health = 1000 + movement_cooldown = 20 + + see_in_dark = 10 + + response_help = "pets" + response_disarm = "gently pushes aside" + response_harm = "punches" + + harm_intent_damage = 1 + melee_damage_lower = 1 + melee_damage_upper = 10 + attack_sharp = FALSE + attacktext = list("chomped", "bashed", "monched", "bumped") + + ai_holder_type = /datum/ai_holder/simple_mob/melee/startreader + + min_oxy = 0 + max_oxy = 0 + min_tox = 0 + max_tox = 0 + min_co2 = 0 + max_co2 = 0 + min_n2 = 0 + max_n2 = 0 + minbodytemp = 0 + maxbodytemp = 900 + + loot_list = list(/obj/random/underdark/uncertain = 25) + + armor = list( + "melee" = 100, + "bullet" = 100, + "laser" = 100, + "energy" = 100, + "bomb" = 0, + "bio" = 100, + "rad" = 100) + + armor_soak = list( + "melee" = 30, + "bullet" = 30, + "laser" = 10, + "energy" = 10, + "bomb" = 0, + "bio" = 100, + "rad" = 100 + ) + + speak_emote = list("rumbles") + + say_list_type = /datum/say_list/startreader + + vore_active = 1 + vore_capacity = 2 + vore_bump_chance = 25 + vore_ignores_undigestable = 0 + vore_default_mode = DM_DRAIN + vore_icons = SA_ICON_LIVING + vore_stomach_name = "gastric sac" + vore_default_contamination_flavor = "Wet" + vore_default_contamination_color = "grey" + vore_default_item_mode = IM_DIGEST + + var/flipped = FALSE + var/flip_cooldown = 0 + +/datum/say_list/startreader + emote_see = list("bobs", "digs around","gnashes at something","yawns","snaps at something") + emote_hear = list("thrumms","clicks","rattles","groans","burbles") + + +/mob/living/simple_mob/vore/alienanimals/startreader/init_vore() + ..() + var/obj/belly/B = vore_selected + B.name = "gastric sac" + B.desc = "It's cramped and hot! You're forced into a small ball as your shape is squeezed into the slick, wet chamber. Despite being swallowed into the creature, you find that you actually stretch out of the top a ways, and can JUST BARELY wiggle around..." + B.mode_flags = 40 + B.digest_brute = 0.5 + B.digest_burn = 0.5 + B.digestchance = 10 + B.absorbchance = 0 + B.escapechance = 15 + +/datum/ai_holder/simple_mob/melee/startreader + hostile = TRUE + retaliate = TRUE + destructive = TRUE + violent_breakthrough = TRUE + +/mob/living/simple_mob/vore/alienanimals/startreader/apply_melee_effects(mob/living/L) + if(L.weakened) //Don't stun people while they're already stunned! That's SILLY! + return + if(prob(15)) + if(isliving(L)) + visible_message("\The [src] trips \the [L]!!") + L.weakened += rand(1,10) + +/mob/living/simple_mob/vore/alienanimals/startreader/Life() + . = ..() + if(flip_cooldown == 1) + flip_cooldown = 0 + flipped = FALSE + handle_flip() + visible_message("\The [src] rights itself!!!") + return + if(flip_cooldown) + flip_cooldown -- + SetStunned(2) + +/mob/living/simple_mob/vore/alienanimals/startreader/proc/handle_flip() + if(flipped) + armor = list( + "melee" = 0, + "bullet" = 0, + "laser" = 0, + "energy" = 0, + "bomb" = 0, + "bio" = 0, + "rad" = 0) + + armor_soak = list( + "melee" = 0, + "bullet" = 0, + "laser" = 0, + "energy" = 0, + "bomb" = 0, + "bio" = 0, + "rad" = 0 + ) + icon_living = "startreader_flipped" + AdjustStunned(flip_cooldown) + else + armor = list( + "melee" = 100, + "bullet" = 100, + "laser" = 100, + "energy" = 100, + "bomb" = 0, + "bio" = 100, + "rad" = 100) + + armor_soak = list( + "melee" = 30, + "bullet" = 30, + "laser" = 10, + "energy" = 10, + "bomb" = 0, + "bio" = 100, + "rad" = 100 + ) + icon_living = "startreader" + SetStunned(0) + + update_icon() \ No newline at end of file diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/alien animals/teppi.dm b/code/modules/mob/living/simple_mob/subtypes/animal/alien animals/teppi.dm index 59ab8e7585..32ab7da58a 100644 --- a/code/modules/mob/living/simple_mob/subtypes/animal/alien animals/teppi.dm +++ b/code/modules/mob/living/simple_mob/subtypes/animal/alien animals/teppi.dm @@ -1,8 +1,8 @@ //formerly meat things -//I made these up. They aren't deliberately based on, or supposed to be anything in particular. +//I made these up. They aren't deliberately based on, or supposed to be anything in particular. //They came out kind of goat-ish but that wasn't intentional. I was just going for some cute thing you could //take care of and/or kill for meat. -//I made them to be a part of the 'low tech survival' part of the game. You can use them to obtain a relatively +//I made them to be a part of the 'low tech survival' part of the game. You can use them to obtain a relatively //unlimited amount of meat, wool, hide, bone, and COMPANIONSHIP without the need for machines or power... hopefully. //There's no real story behind them, they're semi-intelligent wild alien animals with a somewhat mild temperament. //They'll beat you up if you're mean to them, they have preferences for food, affection, and the ability @@ -64,7 +64,7 @@ GLOBAL_VAR_INIT(teppi_count, 0) // How mant teppi DO we have? maxHealth = 600 health = 600 movement_cooldown = 2 - meat_amount = 10 + meat_amount = 12 meat_type = /obj/item/weapon/reagent_containers/food/snacks/meat response_help = "pets" @@ -85,7 +85,7 @@ GLOBAL_VAR_INIT(teppi_count, 0) // How mant teppi DO we have? max_n2 = 0 minbodytemp = 150 maxbodytemp = 400 - unsuitable_atoms_damage = 0.5 + unsuitable_atoms_damage = 0.5 catalogue_data = list(/datum/category_item/catalogue/fauna/teppi) vis_height = 64 @@ -118,7 +118,6 @@ GLOBAL_VAR_INIT(teppi_count, 0) // How mant teppi DO we have? var/wantpet = 0 var/affection_factor = 1 //Some Teppi are more happy to be loved on than others. var/teppi_warned = FALSE - var/heal_countdown = 5 var/teppi_mutate = FALSE //Allows Teppi to get their children's colors scrambled, and possibly other things later on! attacktext = list("nipped", "chomped", "bonked", "stamped on") @@ -143,7 +142,8 @@ GLOBAL_VAR_INIT(teppi_count, 0) // How mant teppi DO we have? ) butchery_loot = list(\ - /obj/item/stack/animalhide = 3\ + /obj/item/stack/animalhide = 3,\ + /obj/item/weapon/bone/horn = 1\ ) /////////////////////////////////////// Vore stuff/////////////////////////////////////////// @@ -197,7 +197,7 @@ GLOBAL_VAR_INIT(teppi_count, 0) // How mant teppi DO we have? "It’s so hot, sweltering even! The burbling sounds of this organic cacophony swell and ebb all around you as thick slimes gush around you with the motion of %pred’s %belly. It’s hard to move in this tingly embrace even though the squashy walls are absolutely slippery! You can pull your limbs out from between the heavy meaty folds with some effort, and when you do there’s a messy sucking noise in the wake of the motion. Of course, such a disturbance naturally warrants that the chamber would redouble its efforts to subdue you and smother you in those thick tingling slimes.", "The walls around you flex inward briefly, burbling and squelching heavily as everything rushed together, wringing you powerfully for a few moments while, somewhere far above you can hear the bassy rumble of a casual belch, much of the small amount of acrid air available rushing out with the sound. After several long moments held in the tight embrace of that pulsing flesh, things ease up a bit again and resume their insistent, tingly churnings.", "It’s pitch black and completely slimy in here, %pred sways their %belly a bit here and there to toss you from one end to the other, tumbling you end over end as you’re churned in that active %belly. It’s all so slick and squishy, so it is really hard to get any footing or grip on things to stabilize your position, which means that you’re left at the mercy of those gloomy gastric affections and the tingling touch of those sticky syrupy slimes that the walls lather into your body.") - + B.emote_lists[DM_HOLD] = list( "The burbling %belly rocks and glides over you gently as you’re held deep within %pred, the deep thumping of their heart pulses all around you as you’re caressed and pressed by heavy, doughy walls.", "%pred’s %belly glorgles around you idly as you’re held gently by the slick, wrinkled flesh.", @@ -273,7 +273,7 @@ GLOBAL_VAR_INIT(teppi_count, 0) // How mant teppi DO we have? "Over the course of several hours in the burbling organic cauldron, your body softens up little by little, soaking up the slime, the tingling spreading over you more and more as your strength fades. The walls fold over you and wrap you up, until the last thing you can sense is the throb of %pred’s heart pulsing through the very core of your being, washing you away as you become food for %pred.", "Your final moments are spent trying to make just a little space for yourself, the doughy squish of the flesh forming to you, pressing in tighter and tighter, invading your personal space as if to show you that, you don’t have any personal space. You’re already a part of %pred, you just don’t know it yet. And so those walls come in close to press up against you and churn you away into a messy slop, to put you in your place. That being, padding the belly and hips of %pred, right where you belong.") -// The friend zone. +// The friend zone. var/obj/belly/p = new /obj/belly(src) p.immutable = TRUE p.mode_flags = 40 @@ -285,11 +285,11 @@ GLOBAL_VAR_INIT(teppi_count, 0) // How mant teppi DO we have? p.escapable = TRUE p.escapechance = 40 p.digest_mode = DM_HEAL - p.name = "propeutpericulum" //I'm no latin professor I just know that some organs and things are based on latin words - //and google translate says that each of these individually - //"close" "to" "danger" translate to "prope" "ut" "periculum". + p.name = "propeutpericulum" //I'm no latin professor I just know that some organs and things are based on latin words + //and google translate says that each of these individually + //"close" "to" "danger" translate to "prope" "ut" "periculum". //Of course it doesn't translate perfectly, and it's nonsense when squashed together, but - //I don't care that much, I just figured that the weird alien animals that store friends in + //I don't care that much, I just figured that the weird alien animals that store friends in //their tummy should have a funny name for the organ they do that with. >:I p.desc = "You seem to have found your way into something of a specialized chamber within the Teppi. The walls are slick and smooth and REALLY soft to the touch. While you can hear the Teppi’s heartbeat nearby, and feel it throb throughout its flesh, the motions around you are gentle and careful. You’re pressed into a small shape within the pleasant heat, with the flesh forming to your figure. You can wriggle around a bit and get comfortable here, but as soon as you get still for a bit the smooth, almost silky flesh seems to form to you once again, like a heavy blanket wrapping you up. As you lounge here the pleasant kneading sensations ease aches and pains, and leave you feeling fresher than before. For a curious fleshy sac inside of some alien monster, this place isn’t all that bad!" p.contaminates = 1 @@ -323,7 +323,7 @@ GLOBAL_VAR_INIT(teppi_count, 0) // How mant teppi DO we have? /mob/living/simple_mob/vore/alienanimals/teppi/Initialize() . = ..() - + if(name == initial(name)) name = "[name] ([rand(1, 1000)])" real_name = name @@ -336,7 +336,7 @@ GLOBAL_VAR_INIT(teppi_count, 0) // How mant teppi DO we have? verbs += /mob/living/simple_mob/vore/alienanimals/teppi/proc/toggle_producing_offspring -// teppi_id = rand(1,100000) +// teppi_id = rand(1,100000) // if(!dad_id || !mom_id) // dad_id = rand(1,100000) // mom_id = rand(1,100000) @@ -352,13 +352,13 @@ GLOBAL_VAR_INIT(teppi_count, 0) // How mant teppi DO we have? ALLERGEN_GRAINS, ALLERGEN_BEANS, ALLERGEN_SEEDS, - ALLERGEN_DAIRY, + ALLERGEN_DAIRY, ALLERGEN_FUNGI, ALLERGEN_COFFEE, ALLERGEN_SUGARS, ALLERGEN_EGGS ) - + var/static/list/possiblebody = list("#fff2d3" = 100, "#ffffc0" = 25, "#c69c85" = 25, "#9b7758" = 25, "#3f4a60" = 10, "#121f24" = 10, "#420824" = 1) var/static/list/possiblemarking = list("#fff2d3" = 100, "#ffffc0" = 50, "#c69c85" = 25, "#9b7758" = 5, "#3f4a60" = 5, "#121f24" = 5, "#6300db" = 1) var/static/list/possiblehorns = list("#454238" = 100, "#a3d5d7" = 10, "#763851" = 10, "#0d0c2f" = 5, "#ffc965" = 1) @@ -405,7 +405,7 @@ GLOBAL_VAR_INIT(teppi_count, 0) // How mant teppi DO we have? update_icon() -//This builds, caches, and recalls parts of the teppi as it needs them, and shares them across all teppi, +//This builds, caches, and recalls parts of the teppi as it needs them, and shares them across all teppi, //so ideally they only have to make it once as they need it since most of them will be using many of the same colored parts /mob/living/simple_mob/vore/alienanimals/teppi/proc/teppi_icon() var/marking_key = "marking-[marking_color]" @@ -648,7 +648,7 @@ GLOBAL_VAR_INIT(teppi_count, 0) // How mant teppi DO we have? . += "They look hungry." if(health < maxHealth && health / maxHealth * 100 <= 75) . += "They look beat up." - + /mob/living/simple_mob/vore/alienanimals/teppi/update_icon() ..() @@ -679,7 +679,7 @@ GLOBAL_VAR_INIT(teppi_count, 0) // How mant teppi DO we have? adjust_nutrition(-nutrition_cost) new /mob/living/simple_mob/vore/alienanimals/teppi(loc, src) qdel(src) - else + else visible_message("\The [src] whines pathetically...", runemessage = "whines") if(prob(50)) playsound(src, 'sound/voice/teppi/whine1.ogg', 75, 1) @@ -688,22 +688,9 @@ GLOBAL_VAR_INIT(teppi_count, 0) // How mant teppi DO we have? amount_grown -= rand(100,250) if(not_hungy) do_breeding() - do_healing() - if(prob(0.5)) + if(!client && prob(0.5)) teppi_sound() -/mob/living/simple_mob/vore/alienanimals/teppi/proc/do_healing() - if(health < maxHealth) - if(heal_countdown > 0) - heal_countdown -= 1 - return - if(bruteloss > 0) - adjustBruteLoss(-2) - else if(fireloss > 0) - adjustFireLoss(-0.5) - nutrition -= 5 - heal_countdown = 5 - /mob/living/simple_mob/vore/alienanimals/teppi/proc/do_breeding() if(!breedable || prevent_breeding) return @@ -749,7 +736,7 @@ GLOBAL_VAR_INIT(teppi_count, 0) // How mant teppi DO we have? if(!K.sharp) sheartime *= 2 if(K.edge) - sheartime *= 0.5 + sheartime *= 0.5 else if(istype(tool, /obj/item/weapon/tool/wirecutters)) sheartime *= 2 else @@ -757,8 +744,7 @@ GLOBAL_VAR_INIT(teppi_count, 0) // How mant teppi DO we have? if(do_after(user, sheartime, exclusive = TASK_USER_EXCLUSIVE, target = src)) user.visible_message("\The [user] shears \the [src] with \the [tool].","You shear \the [src] with \the [tool].") amount_grown = rand(0,250) - var/obj/item/stack/material/fur/F = new(get_turf(user)) - F.amount = rand(10,15) + var/obj/item/stack/material/fur/F = new(get_turf(user), rand(10,15)) F.color = marking_color teppi_wool = FALSE update_icon() @@ -801,37 +787,40 @@ GLOBAL_VAR_INIT(teppi_count, 0) // How mant teppi DO we have? if(client) return ..() var/current_affinity = affinity[T.real_name] - ai_holder.busy = TRUE + ai_holder.set_busy(TRUE) T.stop_pulling() if(current_affinity >= 50) var/tumby = vore_selected vore_selected = friend_zone + ai_holder.set_busy(FALSE) ..() vore_selected = tumby return else if(current_affinity <= -50) vore_selected.digest_mode = DM_DIGEST - else + else vore_selected.digest_mode = DM_DRAIN ..() - ai_holder.busy = FALSE + ai_holder.set_busy(FALSE) + - /mob/living/simple_mob/vore/alienanimals/teppi/perform_the_nom(user, mob/living/prey, user, belly, delay) if(client) return ..() var/current_affinity = affinity[prey.real_name] - ai_holder.busy = TRUE + ai_holder.set_busy(TRUE) prey.stop_pulling() if(current_affinity >= 50) belly = friend_zone - return ..() + ..() + ai_holder.set_busy(FALSE) + return if(current_affinity <= -50) vore_selected.digest_mode = DM_DIGEST - else + else vore_selected.digest_mode = DM_DRAIN ..() - ai_holder.busy = FALSE + ai_holder.set_busy(FALSE) //Instead of copying this everywhere let's just make a proc /mob/living/simple_mob/vore/alienanimals/teppi/proc/lets_eat(person) @@ -856,7 +845,7 @@ GLOBAL_VAR_INIT(teppi_count, 0) // How mant teppi DO we have? ai_holder.target = person ai_holder.track_target_position() ai_holder.set_stance(STANCE_FIGHT) - affinity[person.real_name] = -100 //Don't hold a grudge though. + affinity[person.real_name] = -100 //Don't hold a grudge though. /datum/say_list/teppi speak = list("Gyooh~", "Gyuuuh!", "Gyuh?", "Gyaah...", "Iuuuuhh.", "Uoounh!", "GyoooOOOOoooh!", "Gyoh~", "Gyouh~") @@ -888,7 +877,7 @@ GLOBAL_VAR_INIT(teppi_count, 0) // How mant teppi DO we have? ask_verb = "tilts" exclaim_verb = "roars" key = "i" - flags = RESTRICTED + flags = WHITELISTED machine_understands = 0 space_chance = 100 syllables = list("gyoh", "snoof", "gyoooooOOOooh", "iuuuuh", "gyuuuuh") @@ -1001,7 +990,7 @@ GLOBAL_VAR_INIT(teppi_count, 0) // How mant teppi DO we have? return if(!breedable || nutrition < 500) to_chat(src, "The conditions are not right to produce offspring.") - return + return if(GLOB.teppi_count >= GLOB.max_teppi) //if we can't make more then we shouldn't look for partners to_chat(src, "I cannot produce more offspring at the moment, there are too many of us!") return @@ -1031,7 +1020,7 @@ GLOBAL_VAR_INIT(teppi_count, 0) // How mant teppi DO we have? else to_chat(src, "You enable breeding.") prevent_breeding = FALSE - + ///////////////////AI Things//////////////////////// //Thank you very much Aronai <3 @@ -1178,11 +1167,11 @@ GLOBAL_VAR_INIT(teppi_count, 0) // How mant teppi DO we have? horn_color = "#141414" eye_color = "#9f522c" skin_color = "#e16f2d" - marking_type = "13" + marking_type = "13" horn_type = "1" . = ..() -/mob/living/simple_mob/vore/alienanimals/teppi/lira/New() +/mob/living/simple_mob/vore/alienanimals/teppi/lira/New() inherit_colors = TRUE color = "#fdfae9" marking_color = "#ffffc0" diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/animal.dm b/code/modules/mob/living/simple_mob/subtypes/animal/animal.dm index 56194f13bb..563b292529 100644 --- a/code/modules/mob/living/simple_mob/subtypes/animal/animal.dm +++ b/code/modules/mob/living/simple_mob/subtypes/animal/animal.dm @@ -6,6 +6,8 @@ response_disarm = "shoos" response_harm = "hits" + organ_names = /decl/mob_organ_names/quadruped + ai_holder_type = /datum/ai_holder/simple_mob/melee internal_organs = list(\ @@ -20,3 +22,6 @@ butchery_loot = list(\ /obj/item/stack/animalhide = 3\ ) + +/decl/mob_organ_names/quadruped //Most subtypes have this basic body layout. + hit_zones = list("head", "torso", "left foreleg", "right foreleg", "left hind leg", "right hind leg", "tail") \ No newline at end of file diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/borer/borer.dm b/code/modules/mob/living/simple_mob/subtypes/animal/borer/borer.dm index 34a159801f..5262126826 100644 --- a/code/modules/mob/living/simple_mob/subtypes/animal/borer/borer.dm +++ b/code/modules/mob/living/simple_mob/subtypes/animal/borer/borer.dm @@ -16,6 +16,8 @@ attacktext = list("nipped") friendly = list("prods") + organ_names = /decl/mob_organ_names/borer + status_flags = CANPUSH pass_flags = PASSTABLE movement_cooldown = 5 @@ -266,3 +268,7 @@ continue else if(M.stat == DEAD && M.is_preference_enabled(/datum/client_preference/ghost_ears)) to_chat(M, "[src.true_name] whispers to [host], \"[message]\"") + + +/decl/mob_organ_names/borer + hit_zones = list("head", "central segment", "tail segment") \ No newline at end of file diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/farm animals/chicken.dm b/code/modules/mob/living/simple_mob/subtypes/animal/farm animals/chicken.dm index d415ef30ef..78ca8e1a06 100644 --- a/code/modules/mob/living/simple_mob/subtypes/animal/farm animals/chicken.dm +++ b/code/modules/mob/living/simple_mob/subtypes/animal/farm animals/chicken.dm @@ -20,11 +20,13 @@ GLOBAL_VAR_INIT(chicken_count, 0) // How mant chickens DO we have? response_harm = "kicks" attacktext = list("pecked") + organ_names = /decl/mob_organ_names/chicken + has_langs = list("Bird") say_list_type = /datum/say_list/chicken - meat_amount = 2 + meat_amount = 4 meat_type = /obj/item/weapon/reagent_containers/food/snacks/meat/chicken var/eggsleft = 0 @@ -159,3 +161,6 @@ GLOBAL_VAR_INIT(chicken_count, 0) // How mant chickens DO we have? speak = list("Cherp.","Cherp?","Chirrup.","Cheep!") emote_hear = list("cheeps") emote_see = list("pecks at the ground","flaps its tiny wings") + +/decl/mob_organ_names/chicken + hit_zones = list("head", "body", "left wing", "right wing", "left leg", "right leg", "tendies") \ No newline at end of file diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/farm animals/cow.dm b/code/modules/mob/living/simple_mob/subtypes/animal/farm animals/cow.dm index b5373c176a..0ff6ee6496 100644 --- a/code/modules/mob/living/simple_mob/subtypes/animal/farm animals/cow.dm +++ b/code/modules/mob/living/simple_mob/subtypes/animal/farm animals/cow.dm @@ -15,9 +15,11 @@ response_harm = "kicks" attacktext = list("kicked") + organ_names = /decl/mob_organ_names/cow + say_list_type = /datum/say_list/cow - meat_amount = 6 + meat_amount = 10 meat_type = /obj/item/weapon/reagent_containers/food/snacks/meat var/datum/reagents/udder = null @@ -64,4 +66,7 @@ /datum/say_list/cow speak = list("moo?","moo","MOOOOOO") emote_hear = list("brays", "moos","moos hauntingly") - emote_see = list("shakes its head") \ No newline at end of file + emote_see = list("shakes its head") + +/decl/mob_organ_names/cow + hit_zones = list("head", "torso", "left foreleg", "right foreleg", "left hind leg", "right hind leg", "udder") \ No newline at end of file diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/farm animals/goat.dm b/code/modules/mob/living/simple_mob/subtypes/animal/farm animals/goat.dm index 1e7991d6a2..477dcb5aa7 100644 --- a/code/modules/mob/living/simple_mob/subtypes/animal/farm animals/goat.dm +++ b/code/modules/mob/living/simple_mob/subtypes/animal/farm animals/goat.dm @@ -22,7 +22,7 @@ say_list_type = /datum/say_list/goat ai_holder_type = /datum/ai_holder/simple_mob/retaliate - meat_amount = 4 + meat_amount = 6 meat_type = /obj/item/weapon/reagent_containers/food/snacks/meat var/datum/reagents/udder = null diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/giant_spider/_giant_spider.dm b/code/modules/mob/living/simple_mob/subtypes/animal/giant_spider/_giant_spider.dm index 22be133be6..618a1a903f 100644 --- a/code/modules/mob/living/simple_mob/subtypes/animal/giant_spider/_giant_spider.dm +++ b/code/modules/mob/living/simple_mob/subtypes/animal/giant_spider/_giant_spider.dm @@ -83,6 +83,9 @@ response_disarm = "gently pushes aside" response_harm = "punches" + organ_names = /decl/mob_organ_names/spider + + melee_damage_lower = 18 melee_damage_upper = 30 attack_sharp = TRUE @@ -95,14 +98,14 @@ speak_emote = list("chitters") - meat_amount = 1 + meat_amount = 5 meat_type = /obj/item/weapon/reagent_containers/food/snacks/xenomeat/spidermeat say_list_type = /datum/say_list/spider tame_items = list( /obj/item/weapon/reagent_containers/food/snacks/xenomeat = 10, - /obj/item/weapon/reagent_containers/food/snacks/meat/crab = 40, + /obj/item/weapon/reagent_containers/food/snacks/crabmeat = 40, /obj/item/weapon/reagent_containers/food/snacks/meat = 20 ) @@ -141,3 +144,6 @@ if(poison_per_bite) poison_per_bite *= 1.3 + +/decl/mob_organ_names/spider + hit_zones = list("cephalothorax", "abdomen", "left forelegs", "right forelegs", "left hind legs", "right hind legs", "pedipalp", "mouthparts") \ No newline at end of file diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/giant_spider/broodmother.dm b/code/modules/mob/living/simple_mob/subtypes/animal/giant_spider/broodmother.dm index 93644874d1..345e315a16 100644 --- a/code/modules/mob/living/simple_mob/subtypes/animal/giant_spider/broodmother.dm +++ b/code/modules/mob/living/simple_mob/subtypes/animal/giant_spider/broodmother.dm @@ -21,6 +21,8 @@ old_x = -16 old_y = 0 + meat_amount = 20 + projectiletype = /obj/item/projectile/energy/spidertoxin projectilesound = 'sound/weapons/pierce.ogg' @@ -59,6 +61,7 @@ poison_per_bite = 2 poison_type = "cyanide" + loot_list = list(/obj/item/royal_spider_egg = 100) /obj/item/projectile/energy/spidertoxin name = "concentrated spidertoxin" @@ -71,11 +74,7 @@ combustion = FALSE -/mob/living/simple_mob/animal/giant_spider/broodmother/death() - ..() - - new /obj/item/royal_spider_egg(src.loc) - +/mob/living/simple_mob/animal/giant_spider/broodmother/death(gibbed, deathmessage="falls over and makes its last twitches as its birthing sack bursts!") var/count = 0 while(count < death_brood) var/broodling_type = pick(possible_death_brood_types) @@ -84,7 +83,7 @@ step_away(broodling, src) count++ - visible_message(span("critical", "\The [src]'s birthing sack bursts!")) + return ..() /mob/living/simple_mob/animal/giant_spider/broodmother/proc/spawn_brood(atom/A) set waitfor = FALSE diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/giant_spider/giant_spider_vr.dm b/code/modules/mob/living/simple_mob/subtypes/animal/giant_spider/giant_spider_vr.dm index 7859779169..d4d59ed4ac 100644 --- a/code/modules/mob/living/simple_mob/subtypes/animal/giant_spider/giant_spider_vr.dm +++ b/code/modules/mob/living/simple_mob/subtypes/animal/giant_spider/giant_spider_vr.dm @@ -51,6 +51,7 @@ default_pixel_x = -16 old_x = -16 old_y = 0 + meat_amount = 15 egg_type = /obj/effect/spider/eggcluster/royal diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/passive/crab.dm b/code/modules/mob/living/simple_mob/subtypes/animal/passive/crab.dm index 26b8eff0b4..7ff84ff697 100644 --- a/code/modules/mob/living/simple_mob/subtypes/animal/passive/crab.dm +++ b/code/modules/mob/living/simple_mob/subtypes/animal/passive/crab.dm @@ -16,7 +16,10 @@ response_harm = "stomps" friendly = "pinches" - meat_type = /obj/item/weapon/reagent_containers/food/snacks/meat/crab + organ_names = /decl/mob_organ_names/crab + + meat_type = /obj/item/weapon/reagent_containers/food/snacks/crabmeat + meat_amount = 3 say_list_type = /datum/say_list/crab @@ -49,9 +52,5 @@ . = ..() adjust_scale(rand(5,12) / 10) -// Meat! - -/obj/item/weapon/reagent_containers/food/snacks/meat/crab - name = "meat" - desc = "A chunk of meat." - icon_state = "crustacean-meat" \ No newline at end of file +/decl/mob_organ_names/crab + hit_zones = list("cephalothorax", "abdomen", "left walking legs", "right walking legs", "left swimming legs", "right swimming legs", "left pincer", "right pincer") \ No newline at end of file diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/passive/fish.dm b/code/modules/mob/living/simple_mob/subtypes/animal/passive/fish.dm index 408969d16a..582b304935 100644 --- a/code/modules/mob/living/simple_mob/subtypes/animal/passive/fish.dm +++ b/code/modules/mob/living/simple_mob/subtypes/animal/passive/fish.dm @@ -18,9 +18,12 @@ plane = TURF_PLANE layer = UNDERWATER_LAYER + organ_names = /decl/mob_organ_names/fish + holder_type = /obj/item/weapon/holder/fish meat_type = /obj/item/weapon/reagent_containers/food/snacks/carpmeat/fish + meat_amount = 3 // By default they can be in any water turf. Subtypes might restrict to deep/shallow etc var/global/list/suitable_turf_types = list( @@ -319,4 +322,7 @@ catalogue_data = list(/datum/category_item/catalogue/fauna/murkin) - meat_type = /obj/item/weapon/reagent_containers/food/snacks/carpmeat/fish/sif + meat_type = /obj/item/weapon/reagent_containers/food/snacks/carpmeat/sif/murkfish + +/decl/mob_organ_names/fish + hit_zones = list("head", "body", "dorsal fin", "left pectoral fin", "right pectoral fin", "tail fin") \ No newline at end of file diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/passive/fish_vr.dm b/code/modules/mob/living/simple_mob/subtypes/animal/passive/fish_vr.dm index 89ccfc3a25..741f3f279a 100644 --- a/code/modules/mob/living/simple_mob/subtypes/animal/passive/fish_vr.dm +++ b/code/modules/mob/living/simple_mob/subtypes/animal/passive/fish_vr.dm @@ -2,6 +2,7 @@ desc = "A genetic marvel, combining the docility and aesthetics of the koi with some of the resiliency and cunning of the noble space carp." health = 50 maxHealth = 50 + meat_amount = 0 /mob/living/simple_mob/animal/passive/fish/koi/poisonous/Initialize() . = ..() @@ -67,7 +68,7 @@ icon_state = "measelshark" icon_living = "measelshark" icon_dead = "measelshark-dead" - meat_amount = 6 //Big fish, tons of meat. Great for feasts. + meat_amount = 8 //Big fish, tons of meat. Great for feasts. meat_type = /obj/item/weapon/reagent_containers/food/snacks/sliceable/sharkchunk vore_active = 1 vore_bump_chance = 100 diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/passive/lizard.dm b/code/modules/mob/living/simple_mob/subtypes/animal/passive/lizard.dm index ca94f0373f..83af74c076 100644 --- a/code/modules/mob/living/simple_mob/subtypes/animal/passive/lizard.dm +++ b/code/modules/mob/living/simple_mob/subtypes/animal/passive/lizard.dm @@ -23,6 +23,8 @@ say_list_type = /datum/say_list/lizard + meat_amount = 1 + /mob/living/simple_mob/animal/passive/lizard/large desc = "A cute, big lizard." maxHealth = 20 diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/passive/misc.dm b/code/modules/mob/living/simple_mob/subtypes/animal/passive/misc.dm index 6fc73fc5f9..3dabbb6430 100644 --- a/code/modules/mob/living/simple_mob/subtypes/animal/passive/misc.dm +++ b/code/modules/mob/living/simple_mob/subtypes/animal/passive/misc.dm @@ -8,6 +8,8 @@ icon_dead = "yithian_dead" icon = 'icons/jungle.dmi' + organ_names = /decl/mob_organ_names/yithian + // Same stats as lizards. health = 5 maxHealth = 5 @@ -23,7 +25,15 @@ icon_dead = "tindalos_dead" icon = 'icons/jungle.dmi' + organ_names = /decl/mob_organ_names/tindalos + // Same stats as lizards. health = 5 maxHealth = 5 - mob_size = MOB_MINISCULE \ No newline at end of file + mob_size = MOB_MINISCULE + +/decl/mob_organ_names/yithian + hit_zones = list("head", "abdomen", "left foreleg", "right foreleg", "left hind leg", "right hind leg") + +/decl/mob_organ_names/tindalos + hit_zones = list("head", "thorax", "abdomen", "left foreleg", "right foreleg", "left hind leg", "right hind leg", "left middle leg", "right middle leg") \ No newline at end of file diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/passive/mouse.dm b/code/modules/mob/living/simple_mob/subtypes/animal/passive/mouse.dm index 65cbb5d7a9..7b8b777972 100644 --- a/code/modules/mob/living/simple_mob/subtypes/animal/passive/mouse.dm +++ b/code/modules/mob/living/simple_mob/subtypes/animal/passive/mouse.dm @@ -7,6 +7,7 @@ item_state = "mouse_gray" icon_living = "mouse_gray" icon_dead = "mouse_gray_dead" + icon_rest = "mouse_gray_sleep" kitchen_tag = "rodent" maxHealth = 5 @@ -34,7 +35,8 @@ has_langs = list("Mouse") holder_type = /obj/item/weapon/holder/mouse - meat_type = /obj/item/weapon/reagent_containers/food/snacks/meat + meat_amount = 1 + butchery_loot = list() say_list_type = /datum/say_list/mouse @@ -59,6 +61,17 @@ icon_rest = "mouse_[body_color]_sleep" if (body_color != "rat") desc = "A small [body_color] rodent, often seen hiding in maintenance areas and making a nuisance of itself." + holder_type = /obj/item/weapon/holder/mouse/rat + if (body_color == "operative") + holder_type = /obj/item/weapon/holder/mouse/operative + if (body_color == "brown") + holder_type = /obj/item/weapon/holder/mouse/brown + if (body_color == "gray") + holder_type = /obj/item/weapon/holder/mouse/gray + if (body_color == "white") + holder_type = /obj/item/weapon/holder/mouse/white + if (body_color == "black") + holder_type = /obj/item/weapon/holder/mouse/black /mob/living/simple_mob/animal/passive/mouse/Crossed(atom/movable/AM as mob|obj) if(AM.is_incorporeal()) @@ -96,25 +109,20 @@ /mob/living/simple_mob/animal/passive/mouse/white body_color = "white" icon_state = "mouse_white" + icon_rest = "mouse_white_sleep" + holder_type = /obj/item/weapon/holder/mouse/white /mob/living/simple_mob/animal/passive/mouse/gray body_color = "gray" icon_state = "mouse_gray" + icon_rest = "mouse_gray_sleep" + holder_type = /obj/item/weapon/holder/mouse/gray /mob/living/simple_mob/animal/passive/mouse/brown body_color = "brown" icon_state = "mouse_brown" - -/mob/living/simple_mob/animal/passive/mouse/rat - name = "rat" - tt_desc = "E Rattus rattus" - desc = "A large rodent, often seen hiding in maintenance areas and making a nuisance of itself." - body_color = "rat" - icon_state = "mouse_rat" - maxHealth = 20 - health = 20 - - ai_holder_type = /datum/ai_holder/simple_mob/melee/evasive + icon_rest = "mouse_brown_sleep" + holder_type = /obj/item/weapon/holder/mouse/brown //TOM IS ALIVE! SQUEEEEEEEE~K :) /mob/living/simple_mob/animal/passive/mouse/brown/Tom @@ -126,9 +134,60 @@ // Change my name back, don't want to be named Tom (666) name = initial(name) +/mob/living/simple_mob/animal/passive/mouse/black + body_color = "black" + icon_state = "mouse_black" + icon_rest = "mouse_black_sleep" + holder_type = /obj/item/weapon/holder/mouse/black + +/mob/living/simple_mob/animal/passive/mouse/rat + name = "rat" + tt_desc = "E Rattus rattus" + desc = "A large rodent, often seen hiding in maintenance areas and making a nuisance of itself." + body_color = "rat" + icon_state = "mouse_rat" + icon_rest = "mouse_rat_sleep" + holder_type = /obj/item/weapon/holder/mouse/rat + maxHealth = 20 + health = 20 + + ai_holder_type = /datum/ai_holder/simple_mob/melee/evasive + +/mob/living/simple_mob/animal/passive/mouse/operative + name = "mouse operative" + desc = "A cute mouse fitted with a custom blood red suit. Sneaky." + body_color = "operative" + icon_state = "mouse_operative" + icon_rest = "mouse_operative_sleep" + holder_type = /obj/item/weapon/holder/mouse/operative + maxHealth = 35 + + //It's wearing a void suit, it don't care about atmos + health = 35 + min_oxy = 0 + max_oxy = 0 + min_tox = 0 + max_tox = 0 + min_co2 = 0 + max_co2 = 0 + min_n2 = 0 + max_n2 = 0 + maxbodytemp = 700 + + ai_holder_type = /datum/ai_holder/simple_mob/melee/evasive + +//The names Cheese... Agent Cheese +/mob/living/simple_mob/animal/passive/mouse/operative/agent_cheese + name = "Agent Cheese" + desc = "I like my cheese Swiss... not American." + +/mob/living/simple_mob/animal/passive/mouse/operative/agent_cheese/New() + ..() + // Change my name back, don't want to be named agent_cheese (666) + name = initial(name) // Mouse noises /datum/say_list/mouse speak = list("Squeek!","SQUEEK!","Squeek?") emote_hear = list("squeeks","squeaks","squiks") - emote_see = list("runs in a circle", "shakes", "scritches at something") + emote_see = list("runs in a circle", "shakes", "scritches at something") \ No newline at end of file diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/passive/mouse_vr.dm b/code/modules/mob/living/simple_mob/subtypes/animal/passive/mouse_vr.dm index b942f69d0f..97da0b49ad 100644 --- a/code/modules/mob/living/simple_mob/subtypes/animal/passive/mouse_vr.dm +++ b/code/modules/mob/living/simple_mob/subtypes/animal/passive/mouse_vr.dm @@ -12,41 +12,45 @@ movement_cooldown = 5 universal_understand = 1 -/mob/living/simple_mob/animal/passive/mouse/attack_hand(mob/living/L) - if(L.a_intent == I_HELP && !istype(loc, /obj/item/weapon/holder)) //if lime intent and not in a holder already - if(!src.attempt_to_scoop(L)) //the superior way to handle scooping, checks size - ..() //mouse too big to grab? pet the large mouse instead - else - ..() - -//No longer in use, as mice create a holder/micro object instead /obj/item/weapon/holder/mouse/attack_self(var/mob/U) for(var/mob/living/simple_mob/M in src.contents) if((I_HELP) && U.checkClickCooldown()) //a little snowflakey, but makes it use the same cooldown as interacting with non-inventory objects U.setClickCooldown(U.get_attack_speed()) //if there's a cleaner way in baycode, I'll change this U.visible_message("[U] [M.response_help] \the [M].") +//Jank grabber that uses the 'attack_hand' insead of 'MouseDrop' +/mob/living/simple_mob/animal/passive/mouse/attack_hand(var/atom/over_object) + var/mob/living/carbon/human/H = over_object + if(holder_type && issmall(src) && istype(H) && !H.lying && Adjacent(H) && (src.a_intent == I_HELP && H.a_intent == I_HELP)) + if(!issmall(H) || !istype(src, /mob/living/carbon/human)) + get_scooped(H, (usr == src)) + return + return ..() -/mob/living/simple_mob/animal/passive/mouse/MouseDrop(var/obj/O) //this proc would be very easy to apply to all mobs, holders generate dynamically - if(!(usr == src || O)) - return ..() - if(istype(O, /mob/living) && O.Adjacent(src)) //controls scooping by mobs - var/mob/living/L = O - if(!src.attempt_to_scoop(L, (src == usr))) - return //this way it doesnt default to the generic animal pickup which isnt size restricted - if(istype(O, /obj/item/weapon/storage) && O.Adjacent(src)) //controls diving into storage - var/obj/item/weapon/storage/S = O - var/obj/item/weapon/holder/H = new holder_type(get_turf(src),src) //this works weird, but it creates an empty holder, to see if that holder can fit - if(S.can_be_inserted(H) && (src.size_multiplier <= 0.75)) - visible_message("\The [src] squeezes into \the [S].") - H.forceMove(S) - return 1 - else - qdel(H) //this deletes the empty holder if it doesnt work - to_chat(usr,"You can't fit inside \the [S]!") - return 0 +/mob/living/proc/mouse_scooped(var/mob/living/carbon/grabber, var/self_grab) + + if(!holder_type || buckled || pinned.len) + return + + if(self_grab) + if(src.incapacitated()) return else - ..() + if(grabber.incapacitated()) return + + var/obj/item/weapon/holder/H = new holder_type(get_turf(src), src) + grabber.put_in_hands(H) + + if(self_grab) + to_chat(grabber, "\The [src] clambers onto you!") + to_chat(src, "You climb up onto \the [grabber]!") + grabber.equip_to_slot_if_possible(H, slot_back, 0, 1) + else + to_chat(grabber, "You scoop up \the [src]!") + to_chat(src, "\The [grabber] scoops you up!") + + add_attack_logs(grabber, H.held_mob, "Scooped up", FALSE) // Not important enough to notify admins, but still helpful. + return H + /mob/living/simple_mob/animal/passive/mouse/white/apple name = "Apple" desc = "Dainty, well groomed and cared for, her eyes glitter with untold knowledge..." @@ -56,4 +60,12 @@ ..() // Change my name back, don't want to be named Apple (666) name = initial(name) - desc = initial(desc) \ No newline at end of file + desc = initial(desc) + +/obj/item/weapon/holder/mouse/attack_self(mob/living/carbon/user) + user.setClickCooldown(user.get_attack_speed()) + for(var/L in contents) + if(isanimal(L)) + var/mob/living/simple_mob/S = L + user.visible_message("[user] [S.response_help] \the [S].") + diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/passive/penguin.dm b/code/modules/mob/living/simple_mob/subtypes/animal/passive/penguin.dm index 7fcd020f8e..5616b4b524 100644 --- a/code/modules/mob/living/simple_mob/subtypes/animal/passive/penguin.dm +++ b/code/modules/mob/living/simple_mob/subtypes/animal/passive/penguin.dm @@ -14,6 +14,11 @@ response_disarm = "pushes aside" response_harm = "hits" + organ_names = /decl/mob_organ_names/penguin + + meat_amount = 3 + meat_type = /obj/item/weapon/reagent_containers/food/snacks/meat/chicken + harm_intent_damage = 5 melee_damage_lower = 10 melee_damage_upper = 15 @@ -25,3 +30,6 @@ name = "Tux" desc = "A penguin that has been known to associate with gnus." speak_emote = list("interjects") + +/decl/mob_organ_names/penguin + hit_zones = list("chest", "left leg", "right leg", "left flipper", "right flipper", "head") \ No newline at end of file diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/passive/possum.dm b/code/modules/mob/living/simple_mob/subtypes/animal/passive/possum.dm index 329655a808..27bd772e25 100644 --- a/code/modules/mob/living/simple_mob/subtypes/animal/passive/possum.dm +++ b/code/modules/mob/living/simple_mob/subtypes/animal/passive/possum.dm @@ -25,7 +25,7 @@ var/mob/M = loc var/was_in_hands = istype(M) && (src == M.get_active_hand() || src == M.get_inactive_hand()) - + critter = new critter(critter_holder) critter_holder = new(loc, critter) @@ -74,10 +74,10 @@ /datum/ai_holder/simple_mob/passive/possum/poppy var/static/list/aaa_words = list( - "delaminat", - "meteor", - "fire", - "breach", + "delaminat", + "meteor", + "fire", + "breach", "loose", "level 7", "level seven", @@ -127,6 +127,7 @@ response_disarm = "gently pushes aside" response_harm = "stamps on" density = FALSE + organ_names = /decl/mob_organ_names/possum minbodytemp = 223 maxbodytemp = 323 universal_speak = FALSE @@ -137,6 +138,7 @@ can_pull_mobs = MOB_PULL_SMALLER say_list_type = /datum/say_list/possum catalogue_data = list(/datum/category_item/catalogue/fauna/opossum) + meat_amount = 2 /mob/living/simple_mob/animal/passive/opossum/adjustBruteLoss(var/amount,var/include_robo) . = ..() @@ -195,5 +197,12 @@ icon_dead = "poppy_dead" icon_rest = "poppy_dead" tt_desc = "Didelphis astrum salutem" + organ_names = /decl/mob_organ_names/poppy holder_type = /obj/item/weapon/holder/possum/poppy ai_holder_type = /datum/ai_holder/simple_mob/passive/possum/poppy + +/decl/mob_organ_names/possum + hit_zones = list("head", "body", "left foreleg", "right foreleg", "left hind leg", "right hind leg", "pouch") + +/decl/mob_organ_names/poppy + hit_zones = list("head", "body", "left foreleg", "right foreleg", "left hind leg", "right hind leg", "pouch", "cute little jacket") \ No newline at end of file diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/pets/bird.dm b/code/modules/mob/living/simple_mob/subtypes/animal/pets/bird.dm index 5741727f69..d7c2bf37db 100644 --- a/code/modules/mob/living/simple_mob/subtypes/animal/pets/bird.dm +++ b/code/modules/mob/living/simple_mob/subtypes/animal/pets/bird.dm @@ -23,12 +23,16 @@ softfall = TRUE parachuting = TRUE + meat_amount = 1 + meat_type = /obj/item/weapon/reagent_containers/food/snacks/meat/chicken + attacktext = list("clawed", "pecked") speak_emote = list("chirps", "caws") has_langs = list("Bird") response_help = "pets" response_disarm = "gently moves aside" response_harm = "swats" + organ_names = /decl/mob_organ_names/bird say_list_type = /datum/say_list/bird holder_type = /obj/item/weapon/holder/bird @@ -84,3 +88,6 @@ tt_desc = "E Streptopelia risoria" // This is actually disputed IRL but since we can't tell the future it'll stay the same for 500+ years. icon_scale_x = 0.5 icon_scale_y = 0.5 + +/decl/mob_organ_names/bird + hit_zones = list("head", "chest", "left leg", "right leg", "left wing", "right wing") \ No newline at end of file diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/pets/cat.dm b/code/modules/mob/living/simple_mob/subtypes/animal/pets/cat.dm index 2c203844e3..ea41d429f8 100644 --- a/code/modules/mob/living/simple_mob/subtypes/animal/pets/cat.dm +++ b/code/modules/mob/living/simple_mob/subtypes/animal/pets/cat.dm @@ -37,6 +37,7 @@ var/list/_cat_default_emotes = list( movement_cooldown = 0.5 SECONDS + meat_amount = 1 see_in_dark = 6 // Not sure if this actually works. response_help = "pets" response_disarm = "gently pushes aside" diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/pets/dog.dm b/code/modules/mob/living/simple_mob/subtypes/animal/pets/dog.dm index e0473b5b6d..8c305e7ef8 100644 --- a/code/modules/mob/living/simple_mob/subtypes/animal/pets/dog.dm +++ b/code/modules/mob/living/simple_mob/subtypes/animal/pets/dog.dm @@ -89,6 +89,7 @@ icon_living = "corgi" icon_dead = "corgi_dead" holder_type = /obj/item/weapon/holder/corgi + organ_names = /decl/mob_organ_names/corgi /mob/living/simple_mob/animal/passive/dog/corgi/puppy name = "corgi puppy" @@ -275,4 +276,7 @@ desc = "It's a brittany spaniel." icon_state = "brittany" icon_living = "brittany" - icon_dead = "brittany_dead" \ No newline at end of file + icon_dead = "brittany_dead" + +/decl/mob_organ_names/corgi + hit_zones = list("head", "body", "left foreleg", "right foreleg", "left hind leg", "right hind leg", "tail", "heart") //You monster. \ No newline at end of file diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/pets/fox_vr.dm b/code/modules/mob/living/simple_mob/subtypes/animal/pets/fox_vr.dm index f7524b7be4..8fa103a457 100644 --- a/code/modules/mob/living/simple_mob/subtypes/animal/pets/fox_vr.dm +++ b/code/modules/mob/living/simple_mob/subtypes/animal/pets/fox_vr.dm @@ -23,7 +23,7 @@ minbodytemp = 223 //Below -50 Degrees Celcius maxbodytemp = 323 //Above 50 Degrees Celcius - meat_amount = 1 + meat_amount = 2 meat_type = /obj/item/weapon/reagent_containers/food/snacks/meat/fox say_list_type = /datum/say_list/fox @@ -184,9 +184,6 @@ set_dir(get_dir(src, friend)) say("Yap!") */ -/obj/item/weapon/reagent_containers/food/snacks/meat/fox - name = "Fox meat" - desc = "The fox doesn't say a goddamn thing, now." //Captain fox /mob/living/simple_mob/animal/passive/fox/renault diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/sif/diyaab.dm b/code/modules/mob/living/simple_mob/subtypes/animal/sif/diyaab.dm index 5b6312a92f..b830cbec2b 100644 --- a/code/modules/mob/living/simple_mob/subtypes/animal/sif/diyaab.dm +++ b/code/modules/mob/living/simple_mob/subtypes/animal/sif/diyaab.dm @@ -29,6 +29,9 @@ maxHealth = 25 health = 25 + meat_amount = 2 + meat_type = /obj/item/weapon/reagent_containers/food/snacks/meat + movement_cooldown = 0 melee_damage_lower = 2 diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/sif/duck.dm b/code/modules/mob/living/simple_mob/subtypes/animal/sif/duck.dm index 10f7ddc2cf..31b25ee36f 100644 --- a/code/modules/mob/living/simple_mob/subtypes/animal/sif/duck.dm +++ b/code/modules/mob/living/simple_mob/subtypes/animal/sif/duck.dm @@ -32,12 +32,17 @@ movement_cooldown = 0 + meat_amount = 4 + meat_type = /obj/item/weapon/reagent_containers/food/snacks/meat/chicken + melee_damage_lower = 2 melee_damage_upper = 10 base_attack_cooldown = 1 SECOND attack_edge = 1 // Razor-edged wings, and 'claws' made for digging through ice. attacktext = list("nipped", "bit", "cut", "clawed") + organ_names = /decl/mob_organ_names/bird + tame_items = list( /obj/item/weapon/reagent_containers/food/snacks/sliceable/bread = 90, /obj/item/weapon/reagent_containers/food/snacks/slice/bread = 25 @@ -55,9 +60,10 @@ . = ..() var/has_food = FALSE - for(var/obj/item/I in L.get_contents()) // Do they have food? - if(istype(I, /obj/item/weapon/reagent_containers/food)) - has_food = TRUE - break + if(isliving(L)) + for(var/obj/item/I in L.get_contents()) // Do they have food? + if(istype(I, /obj/item/weapon/reagent_containers/food)) + has_food = TRUE + break if(has_food) // Yes? Gimme the food. return FALSE diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/sif/frostfly.dm b/code/modules/mob/living/simple_mob/subtypes/animal/sif/frostfly.dm index 2e6eb9940c..1a3d98b772 100644 --- a/code/modules/mob/living/simple_mob/subtypes/animal/sif/frostfly.dm +++ b/code/modules/mob/living/simple_mob/subtypes/animal/sif/frostfly.dm @@ -45,6 +45,8 @@ base_attack_cooldown = 1.5 SECONDS attacktext = list("nipped", "bit", "pinched") + organ_names = /decl/mob_organ_names/frostfly + projectiletype = /obj/item/projectile/energy/blob/freezing special_attack_cooldown = 5 SECONDS @@ -168,3 +170,6 @@ F.energy = max(0, F.energy - 1) // The AI will eventually flee. + +/decl/mob_organ_names/frostfly + hit_zones = list("head", "thorax", "abdomen", "left vestigal wing", "right vestigal wing", "left legs", "right legs") \ No newline at end of file diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/sif/glitterfly.dm b/code/modules/mob/living/simple_mob/subtypes/animal/sif/glitterfly.dm index f7bec21beb..1a93754af3 100644 --- a/code/modules/mob/living/simple_mob/subtypes/animal/sif/glitterfly.dm +++ b/code/modules/mob/living/simple_mob/subtypes/animal/sif/glitterfly.dm @@ -52,9 +52,11 @@ attacktext = list("bit", "buffeted", "slashed") + organ_names = /decl/mob_organ_names/smallflying + tame_items = list( /obj/item/weapon/reagent_containers/food/snacks/grown = 90, - /obj/item/weapon/reagent_containers/food/snacks/meat/crab = 10, + /obj/item/weapon/reagent_containers/food/snacks/crabmeat = 10, /obj/item/weapon/reagent_containers/food/snacks/meat = 5 ) @@ -123,3 +125,6 @@ return else if(prob(1)) hostile = initial(hostile) + +/decl/mob_organ_names/smallflying + hit_zones = list("body", "left wing", "right wing") //For flying things too tiny to be granular \ No newline at end of file diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/sif/hare.dm b/code/modules/mob/living/simple_mob/subtypes/animal/sif/hare.dm index 5b67a8604c..44c6cea6f5 100644 --- a/code/modules/mob/living/simple_mob/subtypes/animal/sif/hare.dm +++ b/code/modules/mob/living/simple_mob/subtypes/animal/sif/hare.dm @@ -58,11 +58,17 @@ response_disarm = "nudges" response_harm = "kicks" - meat_type = /obj/item/weapon/reagent_containers/food/snacks/meat + organ_names = /decl/mob_organ_names/hare + + + meat_amount = 1 say_list_type = /datum/say_list/hare /datum/say_list/hare speak = list("Snrf...","Crk!") emote_hear = list("crackles","sniffles") - emote_see = list("stomps the ground", "sniffs the air", "chews on something") \ No newline at end of file + emote_see = list("stomps the ground", "sniffs the air", "chews on something") + +/decl/mob_organ_names/hare + hit_zones = list("head", "chest", "left foreleg", "right foreleg", "left hind leg", "right hind leg", "left head spike", "right head spike") \ No newline at end of file diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/sif/hooligan_crab.dm b/code/modules/mob/living/simple_mob/subtypes/animal/sif/hooligan_crab.dm index 7bb9db0b06..bdcd9b6179 100644 --- a/code/modules/mob/living/simple_mob/subtypes/animal/sif/hooligan_crab.dm +++ b/code/modules/mob/living/simple_mob/subtypes/animal/sif/hooligan_crab.dm @@ -72,7 +72,8 @@ attack_edge = TRUE melee_attack_delay = 1 SECOND - meat_type = /obj/item/weapon/reagent_containers/food/snacks/meat/crab + meat_type = /obj/item/weapon/reagent_containers/food/snacks/crabmeat + meat_amount = 6 response_help = "pets" response_disarm = "gently pushes aside" @@ -81,6 +82,8 @@ attacktext = list("clawed", "pinched", "crushed") speak_emote = list("clicks") + organ_names = /decl/mob_organ_names/crab + ai_holder_type = /datum/ai_holder/simple_mob/melee/hooligan say_list_type = /datum/say_list/crab diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/sif/kururak.dm b/code/modules/mob/living/simple_mob/subtypes/animal/sif/kururak.dm index 301edc3872..8023d3a136 100644 --- a/code/modules/mob/living/simple_mob/subtypes/animal/sif/kururak.dm +++ b/code/modules/mob/living/simple_mob/subtypes/animal/sif/kururak.dm @@ -47,6 +47,9 @@ base_attack_cooldown = 2 SECONDS attacktext = list("gouged", "bit", "cut", "clawed", "whipped") + organ_names = /decl/mob_organ_names/kururak + meat_amount = 5 + armor = list( "melee" = 30, "bullet" = 15, @@ -421,3 +424,6 @@ evasion = 20 bleeding_rate_percent = 0.7 attack_speed_percent = 0.8 + +/decl/mob_organ_names/kururak + hit_zones = list("head", "chest", "left foreleg", "right foreleg", "left hind leg", "right hind leg", "far left tail", "far right tail", "left middle tail", "right middle tail") \ No newline at end of file diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/sif/leech.dm b/code/modules/mob/living/simple_mob/subtypes/animal/sif/leech.dm index 38e20ff480..b6a1469772 100644 --- a/code/modules/mob/living/simple_mob/subtypes/animal/sif/leech.dm +++ b/code/modules/mob/living/simple_mob/subtypes/animal/sif/leech.dm @@ -69,6 +69,8 @@ attack_sharp = TRUE attacktext = list("nipped", "bit", "pinched") + organ_names = /decl/mob_organ_names/leech + armor = list( "melee" = 10, "bullet" = 15, @@ -497,3 +499,6 @@ holder.a_intent = I_HURT else holder.a_intent = I_HURT + +/decl/mob_organ_names/leech + hit_zones = list("mouthparts", "central segment", "tail segment") \ No newline at end of file diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/sif/moth.dm b/code/modules/mob/living/simple_mob/subtypes/animal/sif/moth.dm index 8ad7f2b8c9..489c464b7a 100644 --- a/code/modules/mob/living/simple_mob/subtypes/animal/sif/moth.dm +++ b/code/modules/mob/living/simple_mob/subtypes/animal/sif/moth.dm @@ -48,6 +48,8 @@ base_attack_cooldown = 1.5 SECONDS attacktext = list("nipped", "bit", "pinched") + organ_names = /decl/mob_organ_names/moth + projectiletype = /obj/item/projectile/energy/blob special_attack_cooldown = 10 SECONDS @@ -78,7 +80,6 @@ threaten_sound = 'sound/effects/spray3.ogg' stand_down_sound = 'sound/effects/squelch1.ogg' - /obj/effect/effect/smoke/elemental/mothspore name = "spore cloud" desc = "A dust cloud filled with disorienting bacterial spores." @@ -141,3 +142,6 @@ if(energy >= 20) return TRUE return FALSE + +/decl/mob_organ_names/moth + hit_zones = list("head", "thorax", "abdomen", "left forewing", "left hindwing", "right forewing", "right hindwing", "left foreleg", "right foreleg", "left hindleg", "right hindleg") \ No newline at end of file diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/sif/pillbug.dm b/code/modules/mob/living/simple_mob/subtypes/animal/sif/pillbug.dm index f70ea218c3..fcc31b644b 100644 --- a/code/modules/mob/living/simple_mob/subtypes/animal/sif/pillbug.dm +++ b/code/modules/mob/living/simple_mob/subtypes/animal/sif/pillbug.dm @@ -29,6 +29,8 @@ response_disarm = "rolls over" response_harm = "stomps on" + organ_names = /decl/mob_organ_names/pillbug + armor = list( "melee" = 30, "bullet" = 10, @@ -39,7 +41,6 @@ "rad" = 100 ) - // The frostfly's body is incredibly cold at all times, natural resistance to things trying to burn it. armor_soak = list( "melee" = 10, "bullet" = 0, @@ -48,4 +49,7 @@ "bomb" = 0, "bio" = 0, "rad" = 0 - ) \ No newline at end of file + ) + +/decl/mob_organ_names/pillbug + hit_zones = list("cephalon", "pereon", "pleon", "left forelegs", "right forelegs", "left hind legs", "right hind legs") \ No newline at end of file diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/sif/racoon.dm b/code/modules/mob/living/simple_mob/subtypes/animal/sif/racoon.dm index dd88d811ee..2ba302bb74 100644 --- a/code/modules/mob/living/simple_mob/subtypes/animal/sif/racoon.dm +++ b/code/modules/mob/living/simple_mob/subtypes/animal/sif/racoon.dm @@ -40,6 +40,7 @@ melee_damage_upper = 15 base_attack_cooldown = 1 SECOND attacktext = list("nipped", "bit", "cut", "clawed") + meat_amount = 3 armor = list( "melee" = 15, diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/sif/savik.dm b/code/modules/mob/living/simple_mob/subtypes/animal/sif/savik.dm index 2dcb5b8b51..5fa06cd649 100644 --- a/code/modules/mob/living/simple_mob/subtypes/animal/sif/savik.dm +++ b/code/modules/mob/living/simple_mob/subtypes/animal/sif/savik.dm @@ -41,12 +41,14 @@ melee_attack_delay = 1 SECOND attacktext = list("mauled") + organ_names = /decl/mob_organ_names/savik + player_msg = "You have the ability to berserk at will, which will grant strong physical bonuses for \ a short period of time, however it will tire you and you will be much weaker for awhile after it expires." tame_items = list( /obj/item/organ = 70, - /obj/item/weapon/reagent_containers/food/snacks/meat/crab = 30, + /obj/item/weapon/reagent_containers/food/snacks/crabmeat = 30, /obj/item/weapon/reagent_containers/food/snacks/meat = 20 ) @@ -78,4 +80,7 @@ set desc = "Enrage and become vastly stronger for a period of time, however you will be weaker afterwards." set category = "Abilities" - add_modifier(/datum/modifier/berserk, 30 SECONDS) + add_modifier(/datum/modifier/berserk, 30 SECONDS) + +/decl/mob_organ_names/savik + hit_zones = list("head", "torso", "left foreleg", "right foreleg", "left hind leg", "right hind leg", "right bone plate", "left bone plate", "tail", "left claw", "right claw") diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/sif/shantak.dm b/code/modules/mob/living/simple_mob/subtypes/animal/sif/shantak.dm index 64aa7fbadc..dabb9a206e 100644 --- a/code/modules/mob/living/simple_mob/subtypes/animal/sif/shantak.dm +++ b/code/modules/mob/living/simple_mob/subtypes/animal/sif/shantak.dm @@ -54,6 +54,8 @@ attack_edge = TRUE attacktext = list("gouged") + organ_names = /decl/mob_organ_names/shantak + say_list_type = /datum/say_list/shantak /datum/say_list/shantak @@ -106,3 +108,6 @@ ai_holder_type = /datum/ai_holder/simple_mob/passive makes_dirt = 0 faction = "neutral" + +/decl/mob_organ_names/shantak + hit_zones = list("head", "torso", "left foreleg", "right foreleg", "left hind leg", "right hind leg", "tail", "mane", "snout") diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/sif/sif.dm b/code/modules/mob/living/simple_mob/subtypes/animal/sif/sif.dm index dab82b850b..be88baab27 100644 --- a/code/modules/mob/living/simple_mob/subtypes/animal/sif/sif.dm +++ b/code/modules/mob/living/simple_mob/subtypes/animal/sif/sif.dm @@ -5,6 +5,6 @@ heat_resist = -0.5 tame_items = list( - /obj/item/weapon/reagent_containers/food/snacks/meat/crab = 20, + /obj/item/weapon/reagent_containers/food/snacks/crabmeat = 20, /obj/item/weapon/reagent_containers/food/snacks/meat = 10 ) diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/space/alien.dm b/code/modules/mob/living/simple_mob/subtypes/animal/space/alien.dm index d3cda1f22b..7127b42830 100644 --- a/code/modules/mob/living/simple_mob/subtypes/animal/space/alien.dm +++ b/code/modules/mob/living/simple_mob/subtypes/animal/space/alien.dm @@ -31,6 +31,7 @@ attack_sound = 'sound/weapons/bladeslice.ogg' meat_type = /obj/item/weapon/reagent_containers/food/snacks/xenomeat + meat_amount = 5 /mob/living/simple_mob/animal/space/alien/drone name = "alien drone" @@ -68,7 +69,7 @@ old_x = -16 icon_expected_width = 64 icon_expected_height = 64 - meat_amount = 5 + meat_amount = 8 /mob/living/simple_mob/animal/space/alien/queen name = "alien queen" @@ -84,7 +85,7 @@ projectilesound = 'sound/weapons/pierce.ogg' - movement_cooldown = 8 + movement_cooldown = 10 /mob/living/simple_mob/animal/space/alien/queen/empress name = "alien empress" @@ -95,7 +96,7 @@ icon_rest = "queen_sleep" maxHealth = 400 health = 400 - meat_amount = 5 + meat_amount = 15 pixel_x = -16 old_x = -16 @@ -111,7 +112,7 @@ icon_rest = "empress_rest" maxHealth = 600 health = 600 - meat_amount = 10 + meat_amount = 40 melee_damage_lower = 15 melee_damage_upper = 25 diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/space/bats.dm b/code/modules/mob/living/simple_mob/subtypes/animal/space/bats.dm index dbf9b48159..595e3557cf 100644 --- a/code/modules/mob/living/simple_mob/subtypes/animal/space/bats.dm +++ b/code/modules/mob/living/simple_mob/subtypes/animal/space/bats.dm @@ -20,6 +20,8 @@ response_disarm = "gently pushes aside the" response_harm = "hits the" + organ_names = /decl/mob_organ_names/smallflying + harm_intent_damage = 10 melee_damage_lower = 5 @@ -31,6 +33,7 @@ has_langs = list("Mouse") meat_type = /obj/item/weapon/reagent_containers/food/snacks/meat + meat_amount = 2 say_list_type = /datum/say_list/mouse // Close enough diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/space/bear.dm b/code/modules/mob/living/simple_mob/subtypes/animal/space/bear.dm index e4199373bd..c9d75869fb 100644 --- a/code/modules/mob/living/simple_mob/subtypes/animal/space/bear.dm +++ b/code/modules/mob/living/simple_mob/subtypes/animal/space/bear.dm @@ -23,6 +23,7 @@ attacktext = list("mauled") meat_type = /obj/item/weapon/reagent_containers/food/snacks/bearmeat + meat_amount = 8 say_list_type = /datum/say_list/bear diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/space/carp.dm b/code/modules/mob/living/simple_mob/subtypes/animal/space/carp.dm index 52b8e369a9..7b21c428bb 100644 --- a/code/modules/mob/living/simple_mob/subtypes/animal/space/carp.dm +++ b/code/modules/mob/living/simple_mob/subtypes/animal/space/carp.dm @@ -51,7 +51,9 @@ attack_sound = 'sound/weapons/bite.ogg' attacktext = list("bitten") - meat_amount = 1 + organ_names = /decl/mob_organ_names/fish + + meat_amount = 5 meat_type = /obj/item/weapon/reagent_containers/food/snacks/carpmeat ai_holder_type = /datum/ai_holder/simple_mob/melee @@ -90,7 +92,7 @@ icon_expected_width = 64 icon_expected_height = 32 - meat_amount = 3 + meat_amount = 7 /mob/living/simple_mob/animal/space/carp/large/huge @@ -113,7 +115,7 @@ icon_expected_width = 64 icon_expected_height = 64 - meat_amount = 10 + meat_amount = 15 /mob/living/simple_mob/animal/space/carp/holographic @@ -154,4 +156,4 @@ ..() derez() - + diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/space/goose.dm b/code/modules/mob/living/simple_mob/subtypes/animal/space/goose.dm index 43d159a9f0..c4f41bd3ba 100644 --- a/code/modules/mob/living/simple_mob/subtypes/animal/space/goose.dm +++ b/code/modules/mob/living/simple_mob/subtypes/animal/space/goose.dm @@ -21,9 +21,12 @@ attacktext = list("pecked") attack_sound = 'sound/weapons/bite.ogg' + organ_names = /decl/mob_organ_names/goose + has_langs = list("Bird") - meat_type = /obj/item/weapon/reagent_containers/food/snacks/meat + meat_type = /obj/item/weapon/reagent_containers/food/snacks/meat/chicken + meat_amount = 3 /datum/say_list/goose speak = list("HONK!") @@ -41,4 +44,7 @@ set desc = "Enrage and become vastly stronger for a period of time, however you will be weaker afterwards." set category = "Abilities" - add_modifier(/datum/modifier/berserk, 30 SECONDS) \ No newline at end of file + add_modifier(/datum/modifier/berserk, 30 SECONDS) + +/decl/mob_organ_names/goose + hit_zones = list("head", "chest", "left leg", "right leg", "left wing", "right wing", "neck") \ No newline at end of file diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/space/snake_vr.dm b/code/modules/mob/living/simple_mob/subtypes/animal/space/snake_vr.dm index c30dd4be5a..e7dea44853 100644 --- a/code/modules/mob/living/simple_mob/subtypes/animal/space/snake_vr.dm +++ b/code/modules/mob/living/simple_mob/subtypes/animal/space/snake_vr.dm @@ -3,30 +3,33 @@ desc = "Classification: Reptilia Serpentes\

\ Snakes are elongated, limbless, carnivorous reptiles of the suborder Serpentes \ - Like all other squamates, snakes are ectothermic, amniote vertebrates covered in overlapping scales. \ - Many species of snakes have skulls with several more joints than their lizard ancestors, \ + Like all other squamates, pythons are ectothermic, amniote vertebrates covered in overlapping scales. \ + Many species of snake have skulls with several more joints than their lizard ancestors, \ enabling them to swallow prey much larger than their heads with their highly mobile jaws. \
\ - This species of snake is nonvenomous and use their large bodies to primarily subdue their prey. \ + This type of snake is nonvenomous and use their slender bodies to primarily subdue their prey. \ Nonvenomous snakes either swallow prey alive or kill them by constriction - this is dependant on the prey. \
\ - This specific snake is nonvenomous and is mostly passive - however they will attack if threatened - it is \ - recommended that persons keep their distance as to not provoke these animals." + Snakes are mostly passive - however they will attack if threatened - it is recommended that \ + persons keep their distance as to not provoke these animals." value = CATALOGUER_REWARD_TRIVIAL +/* + * Green Snake + */ /mob/living/simple_mob/animal/passive/snake name = "snake" - desc = "A big thick snake." - tt_desc = "Reptilia Serpentes" + desc = "A cute little, green snake. Wiggle wiggle." + tt_desc = "E Reptilia Serpentes" catalogue_data = list(/datum/category_item/catalogue/fauna/snake) - icon_state = "snake" - icon_living = "snake" - icon_dead = "snake_dead" + icon_state = "green" + icon_living = "green" + icon_dead = "green_dead" icon = 'icons/mob/snake_vr.dmi' - maxHealth = 20 - health = 20 + maxHealth = 15 + health = 15 movement_cooldown = 8 // SLOW-ASS MUTHAFUCKA, I hope. @@ -34,6 +37,9 @@ response_disarm = "shoos" response_harm = "kicks" + meat_amount = 2 + meat_type = /obj/item/weapon/reagent_containers/food/snacks/meat + melee_damage_lower = 2 melee_damage_upper = 3 attacktext = list("bitten") @@ -44,17 +50,46 @@ /datum/say_list/snake emote_hear = list("hisses") -//NOODLE IS HERE! SQUEEEEEEEE~ -/mob/living/simple_mob/animal/passive/snake/noodle +/* + * Red Snake + */ +/mob/living/simple_mob/animal/passive/snake/red + desc = "A cute little, red snake. Wiggle wiggle." + + icon_state = "red" + icon_living = "red" + icon_dead = "red_dead" + icon = 'icons/mob/snake_vr.dmi' + +/* + * Python + */ +/mob/living/simple_mob/animal/passive/snake/python + name = "python" + desc = "A big, thick snake." + tt_desc = "E Reptilia Pythonidae" + + icon_state = "python" + icon_living = "python" + icon_dead = "python_dead" + icon = 'icons/mob/snake_vr.dmi' + +/* + * NOODLE IS HERE! SQUEEEEEEEE~ + */ +/mob/living/simple_mob/animal/passive/snake/python/noodle name = "Noodle" desc = "This snake is particularly chubby and demands nothing but the finest of treats." + maxHealth = 20 + health = 20 + makes_dirt = FALSE var/turns_since_scan = 0 var/obj/movement_target -/mob/living/simple_mob/animal/passive/snake/noodle/Life() +/mob/living/simple_mob/animal/passive/snake/python/noodle/Life() ..() //Not replacing with SA FollowTarget mechanics because Ian behaves... very... specifically. @@ -97,41 +132,7 @@ else if(ishuman(movement_target.loc) && prob(20)) visible_emote("stares at the [movement_target] that [movement_target.loc] has with an unknowable reptilian gaze.") -/* old eating code, couldn't figure out how to make the "swallows food" thing so I'm keeping this here incase someone wants legacy" -/mob/living/simple_mob/animal/passive/snake/noodle/Life() //stolen from Ian in corgi.dm - if(!..()) - return 0 - - if(!stat && !resting && !buckled && !ai_inactive) - turns_since_scan++ - if(turns_since_scan > 5) - turns_since_scan = 0 - if(movement_target && !(isturf(movement_target.loc) || ishuman(movement_target.loc))) - movement_target = null - stop_automated_movement = 0 - if(!movement_target || !(movement_target.loc in oview(src, 5)) ) - movement_target = null - stop_automated_movement = 0 - walk(src,0) - for(var/obj/item/weapon/reagent_containers/food/snacks/snakesnack/S in oview(src,3)) - if(isturf(S.loc)) - movement_target = S - visible_emote("turns towards \the [movement_target] and slithers towards it.") - break - - if(movement_target) - stop_automated_movement = 1 - walk_to(src, movement_target, 0, 5) - spawn(10) - if(Adjacent(movement_target)) - visible_message("[src] swallows the [movement_target] whole!") - qdel(movement_target) - walk(src,0) - else if(ishuman(movement_target.loc) && prob(20)) - visible_emote("stares at the [movement_target] that [movement_target.loc] has with an unknowable reptilian gaze.") -*/ - -/mob/living/simple_mob/animal/passive/snake/noodle/apply_melee_effects(var/atom/A) +/mob/living/simple_mob/animal/passive/snake/python/noodle/apply_melee_effects(var/atom/A) if(ismouse(A)) var/mob/living/simple_mob/animal/passive/mouse/mouse = A if(mouse.getMaxHealth() < 20) // In case a badmin makes giant mice or something. @@ -140,14 +141,16 @@ else ..() -/mob/living/simple_mob/animal/passive/snake/noodle/attackby(var/obj/item/O, var/mob/user) +/mob/living/simple_mob/animal/passive/snake/python/noodle/attackby(var/obj/item/O, var/mob/user) if(istype(O, /obj/item/weapon/reagent_containers/food/snacks/snakesnack)) visible_message("[user] feeds \the [O] to [src].") qdel(O) else return ..() -//Special snek-snax for Noodle! +/* + * Special snek-snax for Noodle! + */ /obj/item/weapon/reagent_containers/food/snacks/snakesnack name = "sugar mouse" desc = "A little mouse treat made of coloured sugar. Noodle loves these!" diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/space/worm.dm b/code/modules/mob/living/simple_mob/subtypes/animal/space/worm.dm index aef54e599d..c2decea8af 100644 --- a/code/modules/mob/living/simple_mob/subtypes/animal/space/worm.dm +++ b/code/modules/mob/living/simple_mob/subtypes/animal/space/worm.dm @@ -29,11 +29,13 @@ attacktext = list("slammed") + organ_names = /decl/mob_organ_names + ai_holder_type = /datum/ai_holder/simple_mob/inert mob_class = MOB_CLASS_ABERRATION // It's a monster. - meat_amount = 2 + meat_amount = 10 meat_type = /obj/item/weapon/reagent_containers/food/snacks/meat/worm var/mob/living/simple_mob/animal/space/space_worm/previous //next/previous segments, correspondingly @@ -368,47 +370,4 @@ if(previous) previous.update_body_faction() return 1 - return 0 - -// Worm meat. - -/obj/item/weapon/reagent_containers/food/snacks/meat/worm - name = "meat" - desc = "A chunk of pulsating meat." - icon_state = "wormmeat" - health = 180 - filling_color = "#551A8B" - center_of_mass = list("x"=16, "y"=14) - -/obj/item/weapon/reagent_containers/food/snacks/meat/worm/Initialize() - . = ..() - reagents.add_reagent("protein", 6) - reagents.add_reagent("phoron", 3) - reagents.add_reagent("myelamine", 3) - src.bitesize = 3 - -/obj/item/weapon/reagent_containers/food/snacks/meat/worm/attackby(obj/item/weapon/W as obj, mob/user as mob) - if(istype(W,/obj/item/weapon/material/knife)) - var/to_spawn = pickweight(/obj/random/junk = 30, - /obj/random/trash = 30, - /obj/random/maintenance/clean = 15, - /obj/random/tool = 15, - /obj/random/medical = 3, - /obj/random/bomb_supply = 7, - /obj/random/contraband = 3, - /obj/random/unidentified_medicine/old_medicine = 7, - /obj/item/weapon/strangerock = 3, - /obj/item/weapon/ore/phoron = 7, - /obj/random/handgun = 1, - /obj/random/toolbox = 4, - /obj/random/drinkbottle = 5 - ) - - new to_spawn(get_turf(src)) - - if(prob(20)) - user.visible_message("Something oozes out of \the [src] as it is cut.") - - to_chat(user, "You cut the tissue holding the chunks together.") - - ..() + return 0 \ No newline at end of file diff --git a/code/modules/mob/living/simple_mob/subtypes/blob/blob.dm b/code/modules/mob/living/simple_mob/subtypes/blob/blob.dm index 752211812d..31ffb6ef1d 100644 --- a/code/modules/mob/living/simple_mob/subtypes/blob/blob.dm +++ b/code/modules/mob/living/simple_mob/subtypes/blob/blob.dm @@ -7,6 +7,8 @@ pass_flags = PASSBLOB | PASSTABLE faction = "blob" + organ_names = /decl/mob_organ_names/blob + heat_damage_per_tick = 0 cold_damage_per_tick = 0 min_oxy = 0 @@ -82,3 +84,6 @@ break return ally + +/decl/mob_organ_names/blob + hit_zones = list("mass") \ No newline at end of file diff --git a/code/modules/mob/living/simple_mob/subtypes/blob/spore.dm b/code/modules/mob/living/simple_mob/subtypes/blob/spore.dm index fa48f57ecf..4d4fda0c29 100644 --- a/code/modules/mob/living/simple_mob/subtypes/blob/spore.dm +++ b/code/modules/mob/living/simple_mob/subtypes/blob/spore.dm @@ -24,6 +24,8 @@ attack_sound = 'sound/effects/slime_squish.ogg' say_list_type = /datum/say_list/spore + organ_names = /decl/mob_organ_names/spore + var/mob/living/carbon/human/infested = null // The human this thing is totally not making into a zombie. var/can_infest = FALSE var/is_infesting = FALSE @@ -151,3 +153,6 @@ if(helpers) to_chat(src, span("notice", "Your attack is assisted by [helpers] other spore\s.")) return damage_to_do + +/decl/mob_organ_names/spore + hit_zones = list("sporangium", "stolon", "sporangiophore") diff --git a/code/modules/mob/living/simple_mob/subtypes/humanoid/clown.dm b/code/modules/mob/living/simple_mob/subtypes/humanoid/clown.dm index b6f9520698..1fd1ebf2b4 100644 --- a/code/modules/mob/living/simple_mob/subtypes/humanoid/clown.dm +++ b/code/modules/mob/living/simple_mob/subtypes/humanoid/clown.dm @@ -22,8 +22,13 @@ attacktext = list("attacked") attack_sound = 'sound/items/bikehorn.ogg' + organ_names = /decl/mob_organ_names/clown + say_list_type = /datum/say_list/clown /datum/say_list/clown speak = list("HONK", "Honk!", "Welcome to clown planet!") - emote_see = list("honks") \ No newline at end of file + emote_see = list("honks") + +/decl/mob_organ_names/clown + hit_zones = list("head", "torso", "pie-hole", "honker", "left funny bone", "right funny bone", "left foot", "right foot", "unmentionables") \ No newline at end of file diff --git a/code/modules/mob/living/simple_mob/subtypes/humanoid/humanoid.dm b/code/modules/mob/living/simple_mob/subtypes/humanoid/humanoid.dm index 6e17e2e1a0..a52bd28c30 100644 --- a/code/modules/mob/living/simple_mob/subtypes/humanoid/humanoid.dm +++ b/code/modules/mob/living/simple_mob/subtypes/humanoid/humanoid.dm @@ -15,6 +15,8 @@ health = 150 // Point of human crit, as of commenting maxHealth = 150 + organ_names = /decl/mob_organ_names/humanoid + // Most humans leave a corpse var/corpse = null @@ -23,4 +25,7 @@ if(corpse) new corpse (src.loc) qdel(src) - return \ No newline at end of file + return + +/decl/mob_organ_names/humanoid + hit_zones = list("head", "torso", "left leg", "right leg", "left arm", "right arm", "left hand", "right hand", "left foot", "right foot") //Same as real people! \ No newline at end of file diff --git a/code/modules/mob/living/simple_mob/subtypes/humanoid/mercs/mercs.dm b/code/modules/mob/living/simple_mob/subtypes/humanoid/mercs/mercs.dm index 4c5f1816d5..ef0e471bb4 100644 --- a/code/modules/mob/living/simple_mob/subtypes/humanoid/mercs/mercs.dm +++ b/code/modules/mob/living/simple_mob/subtypes/humanoid/mercs/mercs.dm @@ -301,6 +301,10 @@ /mob/living/simple_mob/humanoid/merc/ranged/sniper/shoot_target(atom/A) set waitfor = FALSE + + if(!istype(A) || QDELETED(A)) + return + setClickCooldown(get_attack_speed()) face_atom(A) diff --git a/code/modules/mob/living/simple_mob/subtypes/mechanical/disbot_vr.dm b/code/modules/mob/living/simple_mob/subtypes/mechanical/disbot_vr.dm index 3ce9eb628b..dbcf5150c2 100644 --- a/code/modules/mob/living/simple_mob/subtypes/mechanical/disbot_vr.dm +++ b/code/modules/mob/living/simple_mob/subtypes/mechanical/disbot_vr.dm @@ -21,7 +21,7 @@ /mob/living/simple_mob/mechanical/infectionbot name = "Strange robot" desc = "You get the feeling you should run." - icon = 'icons/mob/vagrant_vr.dmi' + icon = 'icons/mob/vore.dmi' icon_state = "vagrant" icon_living = "vagrant" icon_dead = "vagrant" diff --git a/code/modules/mob/living/simple_mob/subtypes/mechanical/drones/combat_drone.dm b/code/modules/mob/living/simple_mob/subtypes/mechanical/drones/combat_drone.dm index d26353ada3..6c1be00472 100644 --- a/code/modules/mob/living/simple_mob/subtypes/mechanical/drones/combat_drone.dm +++ b/code/modules/mob/living/simple_mob/subtypes/mechanical/drones/combat_drone.dm @@ -54,6 +54,8 @@ response_disarm = "gently pushes aside" response_harm = "hits" + organ_names = /decl/mob_organ_names/combatdrone + ai_holder_type = /datum/ai_holder/simple_mob/ranged/kiting/threatening say_list_type = /datum/say_list/malf_drone @@ -107,3 +109,6 @@ // It won't wander away from its spawn point /mob/living/simple_mob/mechanical/combat_drone/event ai_holder_type = /datum/ai_holder/simple_mob/ranged/kiting/threatening/event + +/decl/mob_organ_names/combatdrone + hit_zones = list("chassis", "comms array", "sensor suite", "left weapons module", "right weapons module", "maneuvering thruster") \ No newline at end of file diff --git a/code/modules/mob/living/simple_mob/subtypes/mechanical/drones/mining_drone.dm b/code/modules/mob/living/simple_mob/subtypes/mechanical/drones/mining_drone.dm index ece32ca7a4..22af8baaa4 100644 --- a/code/modules/mob/living/simple_mob/subtypes/mechanical/drones/mining_drone.dm +++ b/code/modules/mob/living/simple_mob/subtypes/mechanical/drones/mining_drone.dm @@ -40,6 +40,8 @@ response_disarm = "gently pushes aside" response_harm = "hits" + organ_names = /decl/mob_organ_names/miningdrone + ai_holder_type = /datum/ai_holder/simple_mob/ranged/kiting/threatening say_list_type = /datum/say_list/malf_drone @@ -124,3 +126,6 @@ src.Beam(OB, icon_state = "rped_upgrade", time = 1 SECONDS) for(var/obj/item/I in my_storage) my_storage.remove_from_storage(I, OB) + +/decl/mob_organ_names/miningdrone + hit_zones = list("chassis", "comms array", "sensor suite", "left excavator module", "right excavator module", "maneuvering thruster") \ No newline at end of file diff --git a/code/modules/mob/living/simple_mob/subtypes/mechanical/golem.dm b/code/modules/mob/living/simple_mob/subtypes/mechanical/golem.dm index 5c9fe28c2f..10d195f281 100644 --- a/code/modules/mob/living/simple_mob/subtypes/mechanical/golem.dm +++ b/code/modules/mob/living/simple_mob/subtypes/mechanical/golem.dm @@ -16,6 +16,8 @@ harm_intent_damage = 3 friendly = "hugs" + organ_names = /decl/mob_organ_names/golem + melee_damage_lower = 30 // It has a built in esword. melee_damage_upper = 30 attack_armor_pen = 20 @@ -151,3 +153,6 @@ /mob/living/simple_mob/mechanical/technomancer_golem/special_post_animation(atom/A) casting = FALSE ranged_post_animation(A) + +/decl/mob_organ_names/golem + hit_zones = list("helmet", "cuirass", "left tasset", "right tasset", "left gauntlet", "right gauntlet", "weapon") diff --git a/code/modules/mob/living/simple_mob/subtypes/mechanical/hivebot/hivebot.dm b/code/modules/mob/living/simple_mob/subtypes/mechanical/hivebot/hivebot.dm index 667c514f0b..b1494bc268 100644 --- a/code/modules/mob/living/simple_mob/subtypes/mechanical/hivebot/hivebot.dm +++ b/code/modules/mob/living/simple_mob/subtypes/mechanical/hivebot/hivebot.dm @@ -19,6 +19,8 @@ attacktext = list("clawed") projectilesound = 'sound/weapons/Gunshot_old.ogg' + organ_names = /decl/mob_organ_names/hivebot + ai_holder_type = /datum/ai_holder/simple_mob/hivebot say_list_type = /datum/say_list/hivebot @@ -52,4 +54,7 @@ pointblank = TRUE conserve_ammo = TRUE firing_lanes = TRUE - can_flee = FALSE // Fearless dumb machines. \ No newline at end of file + can_flee = FALSE // Fearless dumb machines. + +/decl/mob_organ_names/hivebot + hit_zones = list("central chassis", "positioning servo", "head", "sensor suite", "manipulator arm", "shoulder weapon mount", "weapons array", "front right leg", "front left leg", "rear left leg", "rear right leg") \ No newline at end of file diff --git a/code/modules/mob/living/simple_mob/subtypes/mechanical/hivebot/ranged_damage.dm b/code/modules/mob/living/simple_mob/subtypes/mechanical/hivebot/ranged_damage.dm index 09bf26f05d..077cf1ebac 100644 --- a/code/modules/mob/living/simple_mob/subtypes/mechanical/hivebot/ranged_damage.dm +++ b/code/modules/mob/living/simple_mob/subtypes/mechanical/hivebot/ranged_damage.dm @@ -118,6 +118,8 @@ icon_state = "red" icon_living = "red" + organ_names = /decl/mob_organ_names/hivebotsiege + player_msg = "You are capable of firing very long range bombardment attacks.
\ To use, click on a tile or enemy at a long range. Note that the projectile arcs in the air, \ so it will fly over everything inbetween you and the target.
\ @@ -153,4 +155,7 @@ /mob/living/simple_mob/mechanical/hivebot/ranged_damage/siege/fragmentation name = "anti-personnel artillery hivebot" desc = "A large robot capable of delivering fragmentation shells to rip apart their fleshy enemies." - projectiletype = /obj/item/projectile/arc/fragmentation \ No newline at end of file + projectiletype = /obj/item/projectile/arc/fragmentation + +/decl/mob_organ_names/hivebotsiege + hit_zones = list("central chassis", "armor plating", "reinforced positioning servo", "head", "sensor suite", "manipulator arm", "heavy weapons mount", "advanced weapons array", "front right leg", "front left leg", "rear left leg", "rear right leg") \ No newline at end of file diff --git a/code/modules/mob/living/simple_mob/subtypes/mechanical/hivebot/support.dm b/code/modules/mob/living/simple_mob/subtypes/mechanical/hivebot/support.dm index 243a67e4f5..dcfdc5b2c1 100644 --- a/code/modules/mob/living/simple_mob/subtypes/mechanical/hivebot/support.dm +++ b/code/modules/mob/living/simple_mob/subtypes/mechanical/hivebot/support.dm @@ -8,6 +8,7 @@ melee_damage_lower = 2 melee_damage_upper = 2 + organ_names = /decl/mob_organ_names/hivebotsupport // This hivebot supplies a general buff to nearby hivebots that improve their performance. // Note that the commander itself does not receive the buff. @@ -85,3 +86,6 @@ to_chat(src, span("notice", "You have resupplied \the [SM].")) last_resupply = world.time break // Only one resupply per pulse. + +/decl/mob_organ_names/hivebotsupport + hit_zones = list("central chassis", "positioning servo", "head", "sensor suite", "manipulator arm", "battle analytics mount", "weapons array", "front right leg", "front left leg", "rear left leg", "rear right leg") \ No newline at end of file diff --git a/code/modules/mob/living/simple_mob/subtypes/mechanical/hivebot/tank.dm b/code/modules/mob/living/simple_mob/subtypes/mechanical/hivebot/tank.dm index 7f4e10f05d..6b30eccab0 100644 --- a/code/modules/mob/living/simple_mob/subtypes/mechanical/hivebot/tank.dm +++ b/code/modules/mob/living/simple_mob/subtypes/mechanical/hivebot/tank.dm @@ -9,6 +9,8 @@ melee_damage_lower = 3 melee_damage_upper = 3 attack_sound = 'sound/weapons/Egloves.ogg' + organ_names = /decl/mob_organ_names/hivebottank + // All tank hivebots apply a modifier to their target, and force them to attack them if they're AI controlled. /mob/living/simple_mob/mechanical/hivebot/tank/apply_melee_effects(atom/A) @@ -166,3 +168,6 @@ return -1 // complete projectile permutation return (..(P)) + +/decl/mob_organ_names/hivebottank + hit_zones = list("central chassis", "armor plating", "component shielding", "positioning servo", "head", "sensor suite", "heavy manipulator arm", "shoulder weapon mount", "weapons array", "front right leg", "front left leg", "rear left leg", "rear right leg") \ No newline at end of file diff --git a/code/modules/mob/living/simple_mob/subtypes/mechanical/mecha/hoverpod.dm b/code/modules/mob/living/simple_mob/subtypes/mechanical/mecha/hoverpod.dm index eea54e7212..c575922be5 100644 --- a/code/modules/mob/living/simple_mob/subtypes/mechanical/mecha/hoverpod.dm +++ b/code/modules/mob/living/simple_mob/subtypes/mechanical/mecha/hoverpod.dm @@ -28,6 +28,8 @@ projectiletype = /obj/item/projectile/beam base_attack_cooldown = 2 SECONDS + organ_names = /decl/mob_organ_names/hoverpod + var/datum/effect/effect/system/ion_trail_follow/ion_trail /mob/living/simple_mob/mechanical/mecha/hoverpod/manned @@ -39,5 +41,8 @@ ion_trail.start() return ..() -/mob/living/simple_mob/mechanical/mecha/hoverpod/Process_Spacemove(var/check_drift = 0) - return TRUE \ No newline at end of file +/mob/living/simple_mob/mechanical/mecha/hoverpod/Process_Spacemove(var/check_drift = 0) + return TRUE + +/decl/mob_organ_names/hoverpod + hit_zones = list("central chassis", "control module", "hydraulics", "left manipulator", "right manipulator", "left landing strut", "right landing strut", "maneuvering thruster", "sensor suite", "radiator", "power supply") diff --git a/code/modules/mob/living/simple_mob/subtypes/mechanical/mecha/mecha.dm b/code/modules/mob/living/simple_mob/subtypes/mechanical/mecha/mecha.dm index c3c18ecaf2..e43caff8c3 100644 --- a/code/modules/mob/living/simple_mob/subtypes/mechanical/mecha/mecha.dm +++ b/code/modules/mob/living/simple_mob/subtypes/mechanical/mecha/mecha.dm @@ -14,6 +14,8 @@ maxHealth = 300 mob_size = MOB_LARGE + organ_names = /decl/mob_organ_names/mecha + // Very close to the base 'damage_absorption' var on the base mecha class. armor = list( "melee" = 20, @@ -139,3 +141,6 @@ severity++ // This somewhat misleadingly makes it less severe. deflect_sprite() ..(severity) + +/decl/mob_organ_names/mecha + hit_zones = list("central chassis", "control module", "hydraulics", "left arm", "right arm", "left leg", "right leg", "sensor suite", "radiator", "power supply", "left equipment mount", "right equipment mount") diff --git a/code/modules/mob/living/simple_mob/subtypes/mechanical/viscerator.dm b/code/modules/mob/living/simple_mob/subtypes/mechanical/viscerator.dm index 87e8b4223e..02ba4adf94 100644 --- a/code/modules/mob/living/simple_mob/subtypes/mechanical/viscerator.dm +++ b/code/modules/mob/living/simple_mob/subtypes/mechanical/viscerator.dm @@ -45,6 +45,8 @@ attack_sound = 'sound/weapons/bladeslice.ogg' attacktext = list("cut", "sliced") + organ_names = /decl/mob_organ_names/viscerator + ai_holder_type = /datum/ai_holder/simple_mob/melee/evasive /mob/living/simple_mob/mechanical/viscerator/death() @@ -93,3 +95,6 @@ attack_armor_pen = 20 base_attack_cooldown = 10 // One attack a second or so. movement_cooldown = 0.5 + +/decl/mob_organ_names/viscerator + hit_zones = list("chassis", "rotor blades", "sensor array") \ No newline at end of file diff --git a/code/modules/mob/living/simple_mob/subtypes/mechanical/ward/ward.dm b/code/modules/mob/living/simple_mob/subtypes/mechanical/ward/ward.dm index 0e897599ac..e1b1bb80fd 100644 --- a/code/modules/mob/living/simple_mob/subtypes/mechanical/ward/ward.dm +++ b/code/modules/mob/living/simple_mob/subtypes/mechanical/ward/ward.dm @@ -15,6 +15,8 @@ response_harm = "punches" faction = "wards" // Needed as most human mobs are in neutral faction. The owner is generally except from any ward hostility regardless. + organ_names = /decl/mob_organ_names/ward + maxHealth = 15 health = 15 movement_cooldown = 0 @@ -39,4 +41,7 @@ /mob/living/simple_mob/mechanical/ward/IIsAlly(mob/living/L) if(owner == L) return TRUE - return ..() \ No newline at end of file + return ..() + +/decl/mob_organ_names/ward + hit_zones = list("chassis", "sensor array", "hover thruster") \ No newline at end of file diff --git a/code/modules/mob/living/simple_mob/subtypes/occult/constructs/artificer.dm b/code/modules/mob/living/simple_mob/subtypes/occult/constructs/artificer.dm index 69d0da0251..b0c4f869bb 100644 --- a/code/modules/mob/living/simple_mob/subtypes/occult/constructs/artificer.dm +++ b/code/modules/mob/living/simple_mob/subtypes/occult/constructs/artificer.dm @@ -16,6 +16,7 @@ harm_intent_damage = 5 melee_damage_lower = 15 //It's not the strongest of the bunch, but that doesn't mean it can't hurt you. melee_damage_upper = 20 + organ_names = /decl/mob_organ_names/artificer attacktext = list("rammed") attack_sound = 'sound/weapons/rapidslice.ogg' construct_spells = list(/spell/aoe_turf/conjure/construct/lesser, @@ -27,4 +28,7 @@ /spell/aoe_turf/conjure/grille, /spell/targeted/occult_repair_aura, /spell/targeted/construct_advanced/mend_acolyte - ) \ No newline at end of file + ) + +/decl/mob_organ_names/artificer + hit_zones = list("body", "carapace", "right manipulator", "left manipulator", "upper left appendage", "upper right appendage", "eye") \ No newline at end of file diff --git a/code/modules/mob/living/simple_mob/subtypes/occult/constructs/harvester.dm b/code/modules/mob/living/simple_mob/subtypes/occult/constructs/harvester.dm index a161548d99..2ad33eeb61 100644 --- a/code/modules/mob/living/simple_mob/subtypes/occult/constructs/harvester.dm +++ b/code/modules/mob/living/simple_mob/subtypes/occult/constructs/harvester.dm @@ -17,6 +17,7 @@ attack_sharp = TRUE attacktext = list("violently stabbed") friendly = list("caresses") + organ_names = /decl/mob_organ_names/harvester movement_cooldown = 0 // environment_smash = 1 // Whatever this gets renamed to, Harvesters need to break things @@ -37,4 +38,7 @@ /spell/targeted/construct_advanced/inversion_beam, /spell/targeted/construct_advanced/agonizing_sphere, /spell/rune_write - ) \ No newline at end of file + ) + +/decl/mob_organ_names/harvester + hit_zones = list("cephalothorax", "eye", "carapace", "energy crystal", "mandible") \ No newline at end of file diff --git a/code/modules/mob/living/simple_mob/subtypes/occult/constructs/juggernaut.dm b/code/modules/mob/living/simple_mob/subtypes/occult/constructs/juggernaut.dm index 2898eecf45..94737e4b67 100644 --- a/code/modules/mob/living/simple_mob/subtypes/occult/constructs/juggernaut.dm +++ b/code/modules/mob/living/simple_mob/subtypes/occult/constructs/juggernaut.dm @@ -19,6 +19,7 @@ attack_armor_pen = 60 //Being punched by a living, floating statue. attacktext = list("smashed their armoured gauntlet into") friendly = list("pats") + organ_names = /decl/mob_organ_names/juggernaut mob_size = MOB_HUGE @@ -141,4 +142,7 @@ return -1 // complete projectile permutation - return (..(P)) \ No newline at end of file + return (..(P)) + +/decl/mob_organ_names/juggernaut + hit_zones = list("body", "left pauldron", "right pauldron", "left arm", "right arm", "eye", "head", "crystaline spike") \ No newline at end of file diff --git a/code/modules/mob/living/simple_mob/subtypes/occult/constructs/shade.dm b/code/modules/mob/living/simple_mob/subtypes/occult/constructs/shade.dm index 1a56abcdcd..f20d02b5c7 100644 --- a/code/modules/mob/living/simple_mob/subtypes/occult/constructs/shade.dm +++ b/code/modules/mob/living/simple_mob/subtypes/occult/constructs/shade.dm @@ -20,6 +20,8 @@ attack_armor_pen = 100 //It's a ghost/horror from beyond, I ain't gotta explain 100 AP attacktext = list("drained the life from") + organ_names = /decl/mob_organ_names/shade + minbodytemp = 0 maxbodytemp = 4000 min_oxy = 0 @@ -45,4 +47,7 @@ ghostize() qdel(src) - return \ No newline at end of file + return + +/decl/mob_organ_names/shade + hit_zones = list("spectral robe", "featureless visage", "haunting glow") \ No newline at end of file diff --git a/code/modules/mob/living/simple_mob/subtypes/occult/constructs/wraith.dm b/code/modules/mob/living/simple_mob/subtypes/occult/constructs/wraith.dm index 0b8f69c7a9..f4b1f7b9e0 100644 --- a/code/modules/mob/living/simple_mob/subtypes/occult/constructs/wraith.dm +++ b/code/modules/mob/living/simple_mob/subtypes/occult/constructs/wraith.dm @@ -19,6 +19,7 @@ attack_edge = 1 attacktext = list("slashed") friendly = list("pinches") + organ_names = /decl/mob_organ_names/wraith movement_cooldown = 0 attack_sound = 'sound/weapons/rapidslice.ogg' construct_spells = list(/spell/targeted/ethereal_jaunt/shift, @@ -30,4 +31,7 @@ /mob/living/simple_mob/construct/wraith/apply_melee_effects(var/atom/A) if(isliving(A)) var/mob/living/L = A - L.add_modifier(/datum/modifier/deep_wounds, 30 SECONDS) \ No newline at end of file + L.add_modifier(/datum/modifier/deep_wounds, 30 SECONDS) + +/decl/mob_organ_names/wraith + hit_zones = list("body", "eye", "crystaline spike", "left claw", "right claw") \ No newline at end of file diff --git a/code/modules/mob/living/simple_mob/subtypes/occult/creature.dm b/code/modules/mob/living/simple_mob/subtypes/occult/creature.dm index fe385ee60b..9151ea6e2e 100644 --- a/code/modules/mob/living/simple_mob/subtypes/occult/creature.dm +++ b/code/modules/mob/living/simple_mob/subtypes/occult/creature.dm @@ -24,6 +24,8 @@ attacktext = list("chomped") attack_sound = 'sound/weapons/bite.ogg' + organ_names = /decl/mob_organ_names/abberation + speak_emote = list("gibbers") ai_holder_type = /datum/ai_holder/simple_mob/melee @@ -65,4 +67,7 @@ harm_intent_damage = 5 melee_damage_lower = 13 - melee_damage_upper = 25 \ No newline at end of file + melee_damage_upper = 25 + +/decl/mob_organ_names/abberation + hit_zones = list("fleshy mass", "maw", "eye(?)", "orifice(?)") \ No newline at end of file diff --git a/code/modules/mob/living/simple_mob/subtypes/occult/faithless.dm b/code/modules/mob/living/simple_mob/subtypes/occult/faithless.dm index d65c9527b2..0ee4daf433 100644 --- a/code/modules/mob/living/simple_mob/subtypes/occult/faithless.dm +++ b/code/modules/mob/living/simple_mob/subtypes/occult/faithless.dm @@ -25,6 +25,8 @@ attacktext = list("gripped") attack_sound = 'sound/hallucinations/growl1.ogg' + organ_names = /decl/mob_organ_names/faithless + ai_holder_type = /datum/ai_holder/simple_mob/melee @@ -74,4 +76,7 @@ harm_intent_damage = 5 melee_damage_lower = 13 - melee_damage_upper = 28 \ No newline at end of file + melee_damage_upper = 28 + +/decl/mob_organ_names/faithless + hit_zones = list("body", "left appendage", "right appendage", "shadowy tendrils", "head", "right stump", "left stump", "infernal eye") \ No newline at end of file diff --git a/code/modules/mob/living/simple_mob/subtypes/plant/tomato.dm b/code/modules/mob/living/simple_mob/subtypes/plant/tomato.dm index 79e5c4d349..50ee63637c 100644 --- a/code/modules/mob/living/simple_mob/subtypes/plant/tomato.dm +++ b/code/modules/mob/living/simple_mob/subtypes/plant/tomato.dm @@ -17,6 +17,8 @@ response_disarm = "pushes aside" response_harm = "smacks" + organ_names = /decl/mob_organ_names/tomato + harm_intent_damage = 5 melee_damage_upper = 15 melee_damage_lower = 10 @@ -25,3 +27,7 @@ ai_holder_type = /datum/ai_holder/simple_mob/melee meat_type = /obj/item/weapon/reagent_containers/food/snacks/tomatomeat + meat_amount = 4 + +/decl/mob_organ_names/tomato + hit_zones = list("flesh", "leaf", "mouth") \ No newline at end of file diff --git a/code/modules/mob/living/simple_mob/subtypes/plant/tree.dm b/code/modules/mob/living/simple_mob/subtypes/plant/tree.dm index 404a209c60..be6af537c8 100644 --- a/code/modules/mob/living/simple_mob/subtypes/plant/tree.dm +++ b/code/modules/mob/living/simple_mob/subtypes/plant/tree.dm @@ -25,7 +25,10 @@ attacktext = list("bitten") attack_sound = 'sound/weapons/bite.ogg' + organ_names = /decl/mob_organ_names/tree + meat_type = /obj/item/weapon/reagent_containers/food/snacks/xenomeat + meat_amount = 2 pixel_x = -16 @@ -40,4 +43,7 @@ ..(null,"is hacked into pieces!") playsound(src, 'sound/effects/woodcutting.ogg', 100, 1) new /obj/item/stack/material/wood(loc) - qdel(src) \ No newline at end of file + qdel(src) + +/decl/mob_organ_names/tree + hit_zones = list("trunk", "branches", "twigs") \ No newline at end of file diff --git a/code/modules/mob/living/simple_mob/subtypes/slime/slime.dm b/code/modules/mob/living/simple_mob/subtypes/slime/slime.dm index f210835b18..be42d57fc6 100644 --- a/code/modules/mob/living/simple_mob/subtypes/slime/slime.dm +++ b/code/modules/mob/living/simple_mob/subtypes/slime/slime.dm @@ -40,6 +40,8 @@ var/list/_slime_default_emotes = list( response_help = "pets" + organ_names = /decl/mob_organ_names/slime + // Atmos stuff. minbodytemp = T0C-30 heat_damage_per_tick = 0 @@ -160,6 +162,10 @@ var/list/_slime_default_emotes = list( return TRUE else return FALSE + if(ishuman(L)) + var/mob/living/carbon/human/H = L + if(istype(H.species, /datum/species/monkey)) // Monke always food + return FALSE // The other stuff was already checked in parent proc, and the . variable will implicitly return the correct value. // Slimes regenerate passively. @@ -241,4 +247,7 @@ var/list/_slime_default_emotes = list( /mob/living/simple_mob/slime/proc/squish() playsound(src, 'sound/effects/slime_squish.ogg', 50, 0) - visible_message("\The [src] squishes!") \ No newline at end of file + visible_message("\The [src] squishes!") + +/decl/mob_organ_names/slime + hit_zones = list("cytoplasmic membrane") \ No newline at end of file diff --git a/code/modules/mob/living/simple_mob/subtypes/slime/xenobio/defense.dm b/code/modules/mob/living/simple_mob/subtypes/slime/xenobio/defense.dm index 51266a6d88..7e0eab5a36 100644 --- a/code/modules/mob/living/simple_mob/subtypes/slime/xenobio/defense.dm +++ b/code/modules/mob/living/simple_mob/subtypes/slime/xenobio/defense.dm @@ -51,4 +51,4 @@ // Getting slimebatoned/xenotased. /mob/living/simple_mob/slime/xenobio/slimebatoned(mob/living/user, amount) adjust_discipline(round(amount/2)) - Weaken(amount) // This needs to come afterwards or else it will always be considered abuse to the slime. + Weaken(amount*5) // This needs to come afterwards or else it will always be considered abuse to the slime. Multiply by 5 for stun to not end instantly. diff --git a/code/modules/mob/living/simple_mob/subtypes/slime/xenobio/subtypes.dm b/code/modules/mob/living/simple_mob/subtypes/slime/xenobio/subtypes.dm index d8f524d733..72d32abb8c 100644 --- a/code/modules/mob/living/simple_mob/subtypes/slime/xenobio/subtypes.dm +++ b/code/modules/mob/living/simple_mob/subtypes/slime/xenobio/subtypes.dm @@ -563,7 +563,7 @@ /datum/modifier/aura/slime_heal name = "slime mending" - desc = "You feel somewhat gooy." + desc = "You feel somewhat gooey." mob_overlay_state = "pink_sparkles" stacks = MODIFIER_STACK_FORBID aura_max_distance = 2 @@ -605,6 +605,7 @@ ) /mob/living/simple_mob/slime/xenobio/gold/slimebatoned(mob/living/user, amount) + adjust_discipline(round(amount/2)) power_charge = between(0, power_charge + amount, 10) /mob/living/simple_mob/slime/xenobio/gold/get_description_interaction() // So it doesn't say to use a baton on them. diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/bee.dm b/code/modules/mob/living/simple_mob/subtypes/vore/bee.dm index f39e5dc666..cac9a79b10 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/bee.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/bee.dm @@ -24,6 +24,9 @@ say_list_type = /datum/say_list/bee ai_holder_type = /datum/ai_holder/simple_mob/retaliate + meat_amount = 5 + meat_type = /obj/item/weapon/reagent_containers/food/snacks/xenomeat/spidermeat + //Space bees aren't affected by atmos. min_oxy = 0 max_oxy = 0 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 3eea1cc9d2..4ef85f871d 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/bigdragon.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/bigdragon.dm @@ -70,7 +70,7 @@ I think I covered everything. response_help = "pats" response_disarm = "shoves" response_harm = "smacks" - movement_cooldown = 2 + movement_cooldown = 4 //Fixed from 2, given our slower natural speed any mob at movement cooldown 2 is a nightmare let alone a boss that has a pounce maxHealth = 800 attacktext = list("slashed") see_in_dark = 8 @@ -101,6 +101,7 @@ I think I covered everything. devourable = 0 //No universal_understand = 1 //So they can hear synth speach max_tox = 0 // for virgo3b survivability + max_co2 = 0 // Also needed for 3b Survivability otherwise it chokes to death special_attack_min_range = 1 special_attack_max_range = 10 diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/cookiegirl.dm b/code/modules/mob/living/simple_mob/subtypes/vore/cookiegirl.dm index 5b345affac..b7f02e2833 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/cookiegirl.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/cookiegirl.dm @@ -15,6 +15,9 @@ melee_damage_lower = 2 melee_damage_upper = 5 + meat_amount = 10 + meat_type = /obj/item/weapon/reagent_containers/food/snacks/cookiesnack + say_list_type = /datum/say_list/cookiegirl ai_holder_type = /datum/ai_holder/simple_mob/passive/cookiegirl diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/deathclaw.dm b/code/modules/mob/living/simple_mob/subtypes/vore/deathclaw.dm index 66e38f6a8f..9cb2548447 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/deathclaw.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/deathclaw.dm @@ -41,6 +41,9 @@ melee_damage_lower = 5 melee_damage_upper = 30 + meat_amount = 8 + meat_type = /obj/item/weapon/reagent_containers/food/snacks/meat + old_x = -16 old_y = 0 default_pixel_x = -16 diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/dino.dm b/code/modules/mob/living/simple_mob/subtypes/vore/dino.dm index cae232e051..96a6d1adc7 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/dino.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/dino.dm @@ -25,6 +25,9 @@ cold_damage_per_tick = 10 unsuitable_atoms_damage = 10 + meat_amount = 5 + meat_type = /obj/item/weapon/reagent_containers/food/snacks/meat + //Phoron dragons aren't affected by atmos. min_oxy = 0 max_oxy = 0 diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/dragon.dm b/code/modules/mob/living/simple_mob/subtypes/vore/dragon.dm index 660631471b..dc34024744 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/dragon.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/dragon.dm @@ -16,6 +16,9 @@ melee_damage_lower = 5 melee_damage_upper = 30 + meat_amount = 15 + meat_type = /obj/item/weapon/reagent_containers/food/snacks/meat + //Space dragons aren't affected by atmos. min_oxy = 0 max_oxy = 0 diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/fennec.dm b/code/modules/mob/living/simple_mob/subtypes/vore/fennec.dm index 5186d76920..3bb27fa471 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/fennec.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/fennec.dm @@ -41,6 +41,9 @@ response_disarm = "gently pushes aside" response_harm = "hits" + meat_amount = 2 + meat_type = /obj/item/weapon/reagent_containers/food/snacks/meat/fox + harm_intent_damage = 5 melee_damage_lower = 1 melee_damage_upper = 3 @@ -73,7 +76,7 @@ /mob/living/simple_mob/vore/fennec/huge icon = 'icons/mob/vore100x100.dmi' icon_rest = null - + // LORG maxHealth = 500 health = 500 @@ -89,7 +92,7 @@ old_x = -32 pixel_x = -32 default_pixel_x = -32 - + // If you're immune to digestion, they can't digest you anyway! vore_ignores_undigestable = TRUE vore_default_mode = DM_DIGEST @@ -107,7 +110,7 @@ response_help = "pats the paw of" response_disarm = "somehow shoves aside" - + ai_holder_type = /datum/ai_holder/simple_mob/retaliate/cooperative var/image/bigshadow var/autodoom = TRUE @@ -159,4 +162,3 @@ else return ..() return ..() - \ No newline at end of file diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/fennix.dm b/code/modules/mob/living/simple_mob/subtypes/vore/fennix.dm index d32a6ee923..7d16df1049 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/fennix.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/fennix.dm @@ -12,6 +12,9 @@ maxHealth = 60 health = 60 + meat_amount = 5 + meat_type = /obj/item/weapon/reagent_containers/food/snacks/meat/fox + response_help = "pats" response_disarm = "gently pushes aside" response_harm = "hits" diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/frog.dm b/code/modules/mob/living/simple_mob/subtypes/vore/frog.dm index c6ea3efbc1..076aa3bba1 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/frog.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/frog.dm @@ -1,6 +1,6 @@ /datum/category_item/catalogue/fauna/frog name = "Wildlife - Giant Frog" - desc = "Classification: Anura gigantus\ + desc = "Classification: Anura Gigantus\

\ A frog is any member of a diverse and largely carnivorous group of short-bodied, tailless amphibians composing \ the order Anura. This specific species - Anura gigantus - is a mutated form of Frogs, largely due to exposure to mutagen chemicals. \ @@ -20,7 +20,7 @@ /mob/living/simple_mob/vore/aggressive/frog name = "giant frog" desc = "You've heard of having a frog in your throat, now get ready for the reverse." - tt_desc = "Anura gigantus" + tt_desc = "Anura Gigantus" catalogue_data = list(/datum/category_item/catalogue/fauna/frog) icon_dead = "frog-dead" @@ -30,6 +30,9 @@ movement_cooldown = 4 //fast as fucc boie. + meat_amount = 4 + meat_type = /obj/item/weapon/reagent_containers/food/snacks/meat + harm_intent_damage = 5 melee_damage_lower = 5 melee_damage_upper = 12 diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/hippo.dm b/code/modules/mob/living/simple_mob/subtypes/vore/hippo.dm index b58ebca5ae..481f73a4cd 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/hippo.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/hippo.dm @@ -38,7 +38,7 @@ pixel_x = -16 pixel_y = 0 - meat_amount = 10 //Infinite meat! + meat_amount = 15 //Infinite meat! meat_type = /obj/item/weapon/reagent_containers/food/snacks/meat max_buckled_mobs = 1 //Yeehaw diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/horse.dm b/code/modules/mob/living/simple_mob/subtypes/vore/horse.dm index 1245278421..ae0610fcae 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/horse.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/horse.dm @@ -23,7 +23,7 @@ melee_damage_upper = 5 attacktext = list("kicked") - meat_amount = 4 + meat_amount = 6 meat_type = /obj/item/weapon/reagent_containers/food/snacks/meat max_buckled_mobs = 1 //Yeehaw @@ -49,7 +49,7 @@ melee_damage_upper = 15 attacktext = list("kicked") - meat_amount = 6 + meat_amount = 10 old_x = -16 old_y = 0 diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/morph/morph.dm b/code/modules/mob/living/simple_mob/subtypes/vore/morph/morph.dm index 4a843eed80..1622321c52 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/morph/morph.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/morph/morph.dm @@ -6,9 +6,11 @@ desc = "A revolting, pulsating pile of flesh." tt_desc = "morphus shapeshiftus" icon = 'icons/mob/animal_vr.dmi' - icon_state = "morph" - icon_living = "morph" - icon_dead = "morph_dead" + icon_state = "new_morph" + icon_living = "new_morph" + icon_dead = "new_morph_dead" + icon_rest = null + color = "#658a62" movement_cooldown = 1 status_flags = CANPUSH pass_flags = PASSTABLE @@ -24,8 +26,8 @@ max_n2 = 0 minbodytemp = 0 - maxHealth = 250 - health = 250 + maxHealth = 50 + health = 50 taser_kill = FALSE melee_damage_lower = 15 melee_damage_upper = 20 @@ -37,11 +39,12 @@ attacktext = "glomped" attack_sound = 'sound/effects/blobattack.ogg' - meat_amount = 2 - meat_type = /obj/item/weapon/reagent_containers/food/snacks/meat + meat_amount = 0 showvoreprefs = 0 vore_active = 1 + vore_default_mode = DM_HOLD + var/morphed = FALSE var/tooltip = TRUE @@ -50,6 +53,8 @@ var/atom/movable/form = null var/morph_time = 0 var/our_size_multiplier = 1 + var/original_ckey + var/chosen_color var/static/list/blacklist_typecache = typecacheof(list( /obj/screen, /obj/singularity, @@ -58,6 +63,10 @@ /mob/living/simple_mob/vore/hostile/morph/Initialize() verbs += /mob/living/proc/ventcrawl + verbs += /mob/living/simple_mob/vore/hostile/morph/proc/take_over_prey + if(!istype(src, /mob/living/simple_mob/vore/hostile/morph/dominated_prey)) + verbs += /mob/living/simple_mob/vore/hostile/morph/proc/morph_color + return ..() /mob/living/simple_mob/vore/hostile/morph/Destroy() @@ -70,7 +79,7 @@ /mob/living/simple_mob/vore/hostile/morph/examine(mob/user) if(morphed) . = form.examine(user) - if(get_dist(user, src) <= 3) + if(get_dist(user, src) <= 3 && !resting) . += "[form] doesn't look quite right..." else . = ..() @@ -100,6 +109,7 @@ form = target visible_message("[src] suddenly twists and changes shape, becoming a copy of [target]!") + color = null name = target.name desc = target.desc icon = target.icon @@ -107,7 +117,7 @@ alpha = max(target.alpha, 150) copy_overlays(target, TRUE) our_size_multiplier = size_multiplier - + pixel_x = initial(target.pixel_x) pixel_y = initial(target.pixel_y) @@ -118,7 +128,7 @@ icon_scale_x = target.icon_scale_x icon_scale_y = target.icon_scale_y update_transform() - + else if(ismob(target)) var/mob/living/M = target resize(M.size_multiplier, ignore_prefs = TRUE) @@ -137,10 +147,10 @@ to_chat(src, "You're already in your normal form!") return morphed = FALSE - + if(!silent) visible_message("[src] suddenly collapses in on itself, dissolving into a pile of green flesh!") - + form = null name = initial(name) desc = initial(desc) @@ -149,7 +159,10 @@ icon_state = initial(icon_state) alpha = initial(alpha) - color = initial(color) + if(chosen_color) + color = chosen_color + else + color = initial(color) plane = initial(plane) layer = initial(layer) @@ -161,7 +174,7 @@ density = initial(density) cut_overlays(TRUE) //ALL of zem - + maptext = null size_multiplier = our_size_multiplier @@ -188,6 +201,30 @@ return return ..() +/mob/living/simple_mob/vore/hostile/morph/lay_down() + if(morphed) + var/temp_state = icon_state + ..() + icon_state = temp_state + //Stolen from protean blobs, ambush noms from resting! Doesn't hide you any better, but makes noms sneakier. + if(resting) + plane = ABOVE_OBJ_PLANE + to_chat(src,"Your form settles in, appearing more 'normal'... laying in wait.") + else + plane = MOB_PLANE + to_chat(src,"Your form quivers back to life, allowing you to move again!") + if(can_be_drop_pred) //Toggleable in vore panel + var/list/potentials = living_mobs(0) + if(potentials.len) + var/mob/living/target = pick(potentials) + if(istype(target) && target.devourable && target.can_be_drop_prey && vore_selected) + if(target.buckled) + target.buckled.unbuckle_mob(target, force = TRUE) + target.forceMove(vore_selected) + to_chat(target,"\The [src] quickly engulfs you, [vore_selected.vore_verb]ing you into their [vore_selected.name]!") + else + ..() + /mob/living/simple_mob/vore/hostile/morph/update_icon() if(morphed) return @@ -207,3 +244,130 @@ src.transform = M else ..() + +/mob/living/simple_mob/vore/hostile/morph/proc/morph_color() + set name = "Pick Color" + set category = "Abilities" + set desc = "You can set your color!" + var/newcolor = input(usr, "Choose a color.", "", color) as color|null + if(newcolor) + color = newcolor + chosen_color = newcolor + + +/mob/living/simple_mob/vore/hostile/morph/proc/take_over_prey() + set name = "Take Over Prey" + set category = "Abilities" + set desc = "Take command of your prey's body." + if(morphed) + to_chat(src, "You must restore to your original form first!") + return + var/list/possible_mobs = list() + for(var/obj/belly/B in src.vore_organs) + for(var/mob/living/carbon/human/H in B) + if(ishuman(H) && H.ckey) + possible_mobs += H + else + continue + var/mob/living/carbon/human/M + var/input = tgui_input_list(src, "Select a mob to take over:", "Take Over Prey", possible_mobs) + if(!input) + return + M = input + if(!M) + return + if(M.resleeve_lock && ckey != M.resleeve_lock) + to_chat(src, "\The [M] cannot be impersonated!") + return + if(tgui_alert(src, "You selected [M] to attempt to take over. Are you sure?", "Take Over Prey",list("No","Yes")) == "Yes") + log_admin("[key_name_admin(src)] offered [M] to swap bodies as a morph.") + if(tgui_alert(M, "\The [src] has elected to attempt to take over your body and control you. Is this something you will allow to happen?", "Allow Morph To Take Over",list("No","Yes")) == "Yes") + if(tgui_alert(M, "Are you sure? The only way to undo this on your own is to OOC Escape.", "Allow Morph To Take Over",list("No","Yes")) == "Yes") + if(buckled) + buckled.unbuckle_mob() + if(M.buckled) + M.buckled.unbuckle_mob() + if(LAZYLEN(buckled_mobs)) + for(var/buckledmob in buckled_mobs) + riding_datum.force_dismount(buckledmob) + if(LAZYLEN(M.buckled_mobs)) + for(var/p_buckledmob in M.buckled_mobs) + M.riding_datum.force_dismount(p_buckledmob) + if(pulledby) + pulledby.stop_pulling() + if(M.pulledby) + M.pulledby.stop_pulling() + stop_pulling() + original_ckey = ckey + log_and_message_admins("[key_name_admin(src)] has swapped bodies with [key_name_admin(M)] as a morph at [get_area(src)] - [COORD(src)].") + new /mob/living/simple_mob/vore/hostile/morph/dominated_prey(M.vore_selected, M.ckey, src, M) + else + to_chat(src, "\The [M] declined your request for control.") + else + to_chat(src, "\The [M] declined your request for control.") + +/mob/living/simple_mob/vore/hostile/morph/dominated_prey + name = "subservient node" + color = "#171717" + digestable = 0 + devourable = 0 + var/mob/living/simple_mob/vore/hostile/morph/parent_morph + var/mob/living/carbon/human/prey_body + var/prey_ckey + + +/mob/living/simple_mob/vore/hostile/morph/dominated_prey/New(loc, pckey, parent, prey) + . = ..() + if(pckey) + prey_ckey = pckey + parent_morph = parent + prey_body = prey + prey_body.forceMove(get_turf(parent_morph)) + ckey = prey_ckey + prey_body.ckey = parent_morph.original_ckey + parent_morph.forceMove(src) + name = "[prey_body.name]" + to_chat(prey_body, "You have completely assumed the form of [prey_body]. Your form is now unable to change anymore until you restore control back to them. You can do this by 'ejecting' them from your [prey_body.vore_selected]. This will not actually release them from your body in this state, but instead return control to them, and restore you to your original form.") + else + qdel(src) + +/mob/living/simple_mob/vore/hostile/morph/dominated_prey/death(gibbed) + . = ..() + undo_prey_takeover(FALSE) + + +/mob/living/simple_mob/vore/hostile/morph/dominated_prey/Destroy() + . = ..() + parent_morph = null + prey_body = null + +/mob/living/simple_mob/vore/hostile/morph/dominated_prey/proc/undo_prey_takeover(ooc_escape) + if(buckled) + buckled.unbuckle_mob() + if(prey_body.buckled) + prey_body.buckled.unbuckle_mob() + if(LAZYLEN(buckled_mobs)) + for(var/buckledmob in buckled_mobs) + riding_datum.force_dismount(buckledmob) + if(LAZYLEN(prey_body.buckled_mobs)) + for(var/p_buckledmob in prey_body.buckled_mobs) + prey_body.riding_datum.force_dismount(p_buckledmob) + if(pulledby) + pulledby.stop_pulling() + if(prey_body.pulledby) + prey_body.pulledby.stop_pulling() + stop_pulling() + + if(ooc_escape) + prey_body.forceMove(get_turf(src)) + parent_morph.forceMove(get_turf(src)) + parent_morph.ckey = parent_morph.original_ckey + prey_body.ckey = prey_ckey + log_and_message_admins("[key_name_admin(prey_body)] used the OOC escape button to get out of [key_name_admin(parent_morph)]. They have been returned to their original bodies. [ADMIN_FLW(src)]") + else + parent_morph.forceMove(get_turf(prey_body)) + parent_morph.ckey = parent_morph.original_ckey + prey_body.ckey = prey_ckey + prey_body.forceMove(parent_morph.vore_selected) + log_and_message_admins("[key_name_admin(prey_body)] and [key_name_admin(parent_morph)] have been returned to their original bodies. [get_area(src)] - [COORD(src)].") + qdel(src) diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/panther.dm b/code/modules/mob/living/simple_mob/subtypes/vore/panther.dm index 16fa33596a..1d5fc57157 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/panther.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/panther.dm @@ -16,6 +16,9 @@ movement_cooldown = 4 see_in_dark = 8 + meat_amount = 8 + meat_type = /obj/item/weapon/reagent_containers/food/snacks/meat + melee_damage_lower = 5 melee_damage_upper = 15 attack_sharp = TRUE diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/rabbit.dm b/code/modules/mob/living/simple_mob/subtypes/vore/rabbit.dm index 13a123531b..a0ab3a9bc1 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/rabbit.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/rabbit.dm @@ -32,6 +32,9 @@ say_list_type = /datum/say_list/rabbit ai_holder_type = /datum/ai_holder/simple_mob/passive + meat_amount = 3 + meat_type = /obj/item/weapon/reagent_containers/food/snacks/meat + // Vore vars vore_active = 1 vore_bump_emote = "playfully lunges at" diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/rat.dm b/code/modules/mob/living/simple_mob/subtypes/vore/rat.dm index fd4837b955..023dcccd68 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/rat.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/rat.dm @@ -45,6 +45,9 @@ attacktext = list("ravaged") friendly = list("nuzzles", "licks", "noses softly at", "noseboops", "headbumps against", "leans on", "nibbles affectionately on") + meat_amount = 6 + meat_type = /obj/item/weapon/reagent_containers/food/snacks/meat + old_x = -16 old_y = 0 default_pixel_x = -16 diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/redpanda.dm b/code/modules/mob/living/simple_mob/subtypes/vore/redpanda.dm index fa75b5bc69..8399dd79fb 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/redpanda.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/redpanda.dm @@ -13,6 +13,9 @@ maxHealth = 30 health = 30 + meat_amount = 2 + meat_type = /obj/item/weapon/reagent_containers/food/snacks/meat + response_help = "pats" response_disarm = "gently pushes aside" response_harm = "hits" diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/sect_drone.dm b/code/modules/mob/living/simple_mob/subtypes/vore/sect_drone.dm index 1bfb4a4ade..b3ea3ff373 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/sect_drone.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/sect_drone.dm @@ -48,6 +48,9 @@ vore_pounce_chance = 70 // v hongry buggo vore_icons = SA_ICON_LIVING + meat_amount = 4 + meat_type = /obj/item/weapon/reagent_containers/food/snacks/xenomeat/spidermeat + //Beeg bug don't give a fuck about atmos. Something something, phoron mutation. min_oxy = 0 max_oxy = 0 diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/sect_queen.dm b/code/modules/mob/living/simple_mob/subtypes/vore/sect_queen.dm index d4b5b326d9..1df71072c2 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/sect_queen.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/sect_queen.dm @@ -40,6 +40,8 @@ health = 200 see_in_dark = 8 + meat_amount = 8 + meat_type = /obj/item/weapon/reagent_containers/food/snacks/xenomeat/spidermeat melee_damage_lower = 8 melee_damage_upper = 16 diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/shadekin/shadekin.dm b/code/modules/mob/living/simple_mob/subtypes/vore/shadekin/shadekin.dm index 371fc8d241..ee27fb1c97 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/shadekin/shadekin.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/shadekin/shadekin.dm @@ -76,6 +76,8 @@ var/obj/screen/energyhud //Holder to update this icon var/list/shadekin_abilities + var/check_for_observer = FALSE + var/check_timer = 0 /mob/living/simple_mob/shadekin/Initialize() //You spawned the prototype, and want a totally random one. @@ -86,6 +88,7 @@ /mob/living/simple_mob/shadekin/red = 20, //Actively seek people out to nom, so fairly common to see (relatively speaking), /mob/living/simple_mob/shadekin/blue = 15, //Explorers that like to interact with people, so still fairly common, /mob/living/simple_mob/shadekin/purple = 15, //Also explorers that may or may not homf people, + /mob/living/simple_mob/shadekin/green = 5, /mob/living/simple_mob/shadekin/yellow = 1 //Very rare, usually never leaves their home ) var/new_type = pickweight(sk_types) @@ -198,7 +201,18 @@ if(. && nutrition > initial(nutrition) && energy < 100) nutrition = max(0, nutrition-5) energy = min(100,energy+1) - + if(!client && check_for_observer && check_timer++ > 5) + check_timer = 0 + var/non_kin_count = 0 + for(var/mob/living/M in view(6,src)) + if(!istype(M, /mob/living/simple_mob/shadekin)) + non_kin_count ++ + // Technically can be combined with ||, they call the same function, but readability is poor + if(!non_kin_count && (ability_flags & AB_PHASE_SHIFTED)) + phase_shift() // shifting back in, nobody present + else if (non_kin_count && !(ability_flags & AB_PHASE_SHIFTED)) + phase_shift() // shifting out, scaredy + /mob/living/simple_mob/shadekin/update_icon() . = ..() diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/shadekin/types.dm b/code/modules/mob/living/simple_mob/subtypes/vore/shadekin/types.dm index e66162432b..d09e72aa97 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/shadekin/types.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/shadekin/types.dm @@ -28,6 +28,9 @@ a brawl, but you barely generate any of your own energy. You can stand in a dark spot to gather scraps \ of energy in a pinch, but otherwise need to take it, by force if necessary." +/mob/living/simple_mob/shadekin/red + ai_holder_type = /datum/ai_holder/simple_mob/melee + /mob/living/simple_mob/shadekin/red/white icon_state = "white" /mob/living/simple_mob/shadekin/red/dark @@ -35,16 +38,6 @@ /mob/living/simple_mob/shadekin/red/brown icon_state = "brown" -/mob/living/simple_mob/shadekin/red/ai - ai_holder_type = /datum/ai_holder/simple_mob/melee - -/mob/living/simple_mob/shadekin/red/ai/white - icon_state = "white" -/mob/living/simple_mob/shadekin/red/ai/dark - icon_state = "dark" -/mob/living/simple_mob/shadekin/red/ai/brown - icon_state = "brown" - ///////////////////////////////////////////////////////////////// /mob/living/simple_mob/shadekin/blue name = "blue-eyed shadekin" @@ -85,6 +78,9 @@ without doing so, albeit slowly. Dark and light are irrelevant to you, they are just different places to explore and \ discover new things and new people." +/mob/living/simple_mob/shadekin/blue/ + ai_holder_type = /datum/ai_holder/simple_mob/passive + /mob/living/simple_mob/shadekin/blue/white icon_state = "white" /mob/living/simple_mob/shadekin/blue/dark @@ -92,16 +88,6 @@ /mob/living/simple_mob/shadekin/blue/brown icon_state = "brown" -/mob/living/simple_mob/shadekin/blue/ai - ai_holder_type = /datum/ai_holder/simple_mob/passive - -/mob/living/simple_mob/shadekin/blue/ai/white - icon_state = "white" -/mob/living/simple_mob/shadekin/blue/ai/dark - icon_state = "dark" -/mob/living/simple_mob/shadekin/blue/ai/brown - icon_state = "brown" - ///////////////////////////////////////////////////////////////// /mob/living/simple_mob/shadekin/purple name = "purple-eyed shadekin" @@ -137,6 +123,9 @@ areas is taxing on your energy. You can harvest energy from others in a fight, but since you don't need to, you may \ just choose to simply not fight." +/mob/living/simple_mob/shadekin/purple + ai_holder_type = /datum/ai_holder/simple_mob/retaliate + /mob/living/simple_mob/shadekin/purple/white icon_state = "white" /mob/living/simple_mob/shadekin/purple/dark @@ -144,16 +133,6 @@ /mob/living/simple_mob/shadekin/purple/brown icon_state = "brown" -/mob/living/simple_mob/shadekin/purple/ai - ai_holder_type = /datum/ai_holder/simple_mob/retaliate - -/mob/living/simple_mob/shadekin/purple/ai/white - icon_state = "white" -/mob/living/simple_mob/shadekin/purple/ai/dark - icon_state = "dark" -/mob/living/simple_mob/shadekin/purple/ai/brown - icon_state = "brown" - ///////////////////////////////////////////////////////////////// /mob/living/simple_mob/shadekin/yellow name = "yellow-eyed shadekin" @@ -177,6 +156,7 @@ eye_desc = "yellow eyes" stalker = FALSE + check_for_observer = TRUE vore_stomach_flavor = "You slip past pointy triangle teeth and down the slick, slippery gullet \ of the creature. It's warm, and the air is thick. You can hear its body squelch and shift around you \ as you settle into its stomach! The doughy walls within cling to you heavily, churning down on you, wearing \ @@ -187,6 +167,9 @@ area is very taxing on you, but you gain energy extremely fast in any very dark area. You're weaker than other \ shadekin, but your fast energy generation in the dark allows you to phase shift more often." +/mob/living/simple_mob/shadekin/yellow + ai_holder_type = /datum/ai_holder/simple_mob/melee/hit_and_run + /mob/living/simple_mob/shadekin/yellow/white icon_state = "white" /mob/living/simple_mob/shadekin/yellow/dark @@ -194,24 +177,14 @@ /mob/living/simple_mob/shadekin/yellow/brown icon_state = "brown" -/mob/living/simple_mob/shadekin/yellow/ai - ai_holder_type = /datum/ai_holder/simple_mob/melee/hit_and_run - -/mob/living/simple_mob/shadekin/yellow/ai/white - icon_state = "white" -/mob/living/simple_mob/shadekin/yellow/ai/dark - icon_state = "dark" -/mob/living/simple_mob/shadekin/yellow/ai/brown - icon_state = "brown" - -/mob/living/simple_mob/shadekin/yellow/ai/retaliate +/mob/living/simple_mob/shadekin/yellow/retaliate ai_holder_type = /datum/ai_holder/simple_mob/retaliate -/mob/living/simple_mob/shadekin/yellow/ai/retaliate/white +/mob/living/simple_mob/shadekin/yellow/retaliate/white icon_state = "white" -/mob/living/simple_mob/shadekin/yellow/ai/retaliate/dark +/mob/living/simple_mob/shadekin/yellow/retaliate/dark icon_state = "dark" -/mob/living/simple_mob/shadekin/yellow/ai/retaliate/brown +/mob/living/simple_mob/shadekin/yellow/retaliate/brown icon_state = "brown" ///////////////////////////////////////////////////////////////// @@ -237,6 +210,7 @@ eye_desc = "green eyes" stalker = TRUE + check_for_observer = TRUE vore_stomach_flavor = "You slip past pointy triangle teeth and down the slick, slippery gullet \ of the creature. It's warm, and the air is thick. You can hear its body squelch and shift around you \ as you settle into its stomach! The doughy walls within cling to you heavily, churning down on you, wearing \ @@ -247,6 +221,9 @@ have more experience than your yellow-eyed cousins. You gain energy decently fast in any very dark area. You're weaker than other \ shadekin, but your slight energy generation constnatly, and especially in the dark allows for a good mix of uses." +/mob/living/simple_mob/shadekin/green + ai_holder_type = /datum/ai_holder/simple_mob/passive + /mob/living/simple_mob/shadekin/green/white icon_state = "white" /mob/living/simple_mob/shadekin/green/dark @@ -254,16 +231,6 @@ /mob/living/simple_mob/shadekin/green/brown icon_state = "brown" -/mob/living/simple_mob/shadekin/green/ai - ai_holder_type = /datum/ai_holder/simple_mob/passive - -/mob/living/simple_mob/shadekin/green/ai/white - icon_state = "white" -/mob/living/simple_mob/shadekin/green/ai/dark - icon_state = "dark" -/mob/living/simple_mob/shadekin/green/ai/brown - icon_state = "brown" - ///////////////////////////////////////////////////////////////// /mob/living/simple_mob/shadekin/orange name = "orange-eyed shadekin" @@ -294,6 +261,9 @@ You're stronger than most shadekin, faster, and more capable in a brawl, but you don't generate much of your own energy. \ You can stand in a dark spot to gather some energy, but otherwise need to take it, by force if necessary." +/mob/living/simple_mob/shadekin/orange + ai_holder_type = /datum/ai_holder/simple_mob/melee + /mob/living/simple_mob/shadekin/orange/white icon_state = "white" /mob/living/simple_mob/shadekin/orange/dark @@ -301,22 +271,13 @@ /mob/living/simple_mob/shadekin/orange/brown icon_state = "brown" -/mob/living/simple_mob/shadekin/orange/ai - ai_holder_type = /datum/ai_holder/simple_mob/melee - -/mob/living/simple_mob/shadekin/orange/ai/white - icon_state = "white" -/mob/living/simple_mob/shadekin/orange/ai/dark - icon_state = "dark" -/mob/living/simple_mob/shadekin/orange/ai/brown - icon_state = "brown" - ///////////////////////////////////////////////////////////////// //Fluffy specific fluffer /mob/living/simple_mob/shadekin/blue/rivyr name = "Rivyr" desc = "She appears to be a fluffer of some sort. Deep blue eyes and curious attitude." icon_state = "rivyr" + ai_holder_type = /datum/ai_holder/simple_mob/passive eye_desc = "" vore_stomach_flavor = "Blue flesh gleams in the fading light as you slip down the little mar's gullet! \ Gooey flesh and heat surrounds your form as you're tucked away into the darkness of her stomach! Thick slimes cling \ diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/sheep.dm b/code/modules/mob/living/simple_mob/subtypes/vore/sheep.dm index 32ddb75c0a..b4767b8dea 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/sheep.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/sheep.dm @@ -14,6 +14,9 @@ see_in_dark = 2 + meat_amount = 5 + meat_type = /obj/item/weapon/reagent_containers/food/snacks/meat + response_help = "pets" response_disarm = "gently pushes aside" response_harm = "kicks" diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/snake.dm b/code/modules/mob/living/simple_mob/subtypes/vore/snake.dm index 651599e352..8affc4d894 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/snake.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/snake.dm @@ -38,6 +38,9 @@ melee_damage_lower = 5 melee_damage_upper = 12 + meat_amount = 6 + meat_type = /obj/item/weapon/reagent_containers/food/snacks/meat + response_help = "pats" response_disarm = "tries to shove" response_harm = "hits" diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/softdog.dm b/code/modules/mob/living/simple_mob/subtypes/vore/softdog.dm index 97f5e636f5..be4e903681 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/softdog.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/softdog.dm @@ -263,4 +263,53 @@ visible_message("[src] stops playing dead.", runemessage = "[src] stops playing dead") else M.visible_message("The petting was interrupted!!!", runemessage = "The petting was interrupted") - return \ No newline at end of file + return + +/mob/living/simple_mob/vore/woof/hostile/aweful + maxHealth = 100 + health = 100 + var/killswitch = FALSE + + +/mob/living/simple_mob/vore/woof/hostile/aweful/Initialize() + . = ..() + var/thismany = (rand(25,500)) / 100 + resize(thismany, animate = FALSE, uncapped = TRUE, ignore_prefs = TRUE) + +/mob/living/simple_mob/vore/woof/hostile/aweful/death() + . = ..() + if(killswitch) + visible_message("\The [src] evaporates into nothing...") + qdel(src) + return + var/thismany = rand(0,3) + var/list/possiblewoofs = list(/mob/living/simple_mob/vore/woof/hostile/aweful/melee, /mob/living/simple_mob/vore/woof/hostile/aweful/ranged) + if(thismany == 0) + visible_message("\The [src] evaporates into nothing...") + if(thismany >= 1) + var/thiswoof = pick(possiblewoofs) + new thiswoof(loc, src) + visible_message("Another [src] appears!") + if(thismany >= 2) + var/thiswoof = pick(possiblewoofs) + new thiswoof(loc, src) + visible_message("Another [src] appears!") + if(thismany >= 3) + var/thiswoof = pick(possiblewoofs) + new thiswoof(loc, src) + visible_message("Another [src] appears!") + qdel(src) + +/mob/living/simple_mob/vore/woof/hostile/aweful/melee + + movement_cooldown = 0 + + ai_holder_type = /datum/ai_holder/simple_mob/woof/hostile + +/mob/living/simple_mob/vore/woof/hostile/aweful/ranged + movement_cooldown = 0 + + ai_holder_type = /datum/ai_holder/simple_mob/ranged/kiting/threatening/woof + + projectiletype = /obj/item/projectile/awoo_missile + projectilesound = 'sound/voice/long_awoo.ogg' diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/solargrub.dm b/code/modules/mob/living/simple_mob/subtypes/vore/solargrub.dm index 745db9e568..ef1aa44b59 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/solargrub.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/solargrub.dm @@ -36,6 +36,7 @@ List of things solar grubs should be able to do: movement_cooldown = 8 meat_type = /obj/item/weapon/reagent_containers/food/snacks/meat/grubmeat + meat_amount = 6 response_help = "pokes" response_disarm = "pushes" diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/solargrub_larva.dm b/code/modules/mob/living/simple_mob/subtypes/vore/solargrub_larva.dm index f3c200410b..0589a35391 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/solargrub_larva.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/solargrub_larva.dm @@ -16,8 +16,9 @@ var/global/list/grub_machine_overlays = list() melee_damage_lower = 1 // This is a tiny worm. It will nibble and thats about it. melee_damage_upper = 1 - meat_amount = 2 + meat_amount = 1 meat_type = /obj/item/weapon/reagent_containers/food/snacks/meat/grubmeat + butchery_loot = list() // No hides faction = "grubs" diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/vore.dm b/code/modules/mob/living/simple_mob/subtypes/vore/vore.dm index 178dee3cee..b15a7e0e18 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/vore.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/vore.dm @@ -1,18 +1,21 @@ /mob/living/simple_mob/vore mob_class = MOB_CLASS_ANIMAL mob_bump_flag = 0 + +/mob/living/simple_mob var/nameset + var/limit_renames = TRUE -/mob/living/simple_mob/vore/Login() +/mob/living/simple_mob/Login() . = ..() - verbs |= /mob/living/simple_mob/vore/proc/set_name - verbs |= /mob/living/simple_mob/vore/proc/set_desc + verbs |= /mob/living/simple_mob/proc/set_name + verbs |= /mob/living/simple_mob/proc/set_desc -/mob/living/simple_mob/vore/proc/set_name() +/mob/living/simple_mob/proc/set_name() set name = "Set Name" set desc = "Sets your mobs name. You only get to do this once." set category = "Abilities" - if(nameset) + if(limit_renames && nameset) to_chat(src, "You've already set your name. Ask an admin to toggle \"nameset\" to 0 if you really must.") return var/newname @@ -22,7 +25,7 @@ voice_name = newname nameset = 1 -/mob/living/simple_mob/vore/proc/set_desc() +/mob/living/simple_mob/proc/set_desc() set name = "Set Description" set desc = "Set your description." set category = "Abilities" @@ -32,4 +35,4 @@ desc = newdesc /mob/living/simple_mob/vore/aggressive - mob_bump_flag = HEAVY \ No newline at end of file + mob_bump_flag = HEAVY diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/wolf.dm b/code/modules/mob/living/simple_mob/subtypes/vore/wolf.dm index 8c4d7b14df..31b057ef45 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/wolf.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/wolf.dm @@ -25,6 +25,9 @@ melee_damage_lower = 5 melee_damage_upper = 12 + meat_type = /obj/item/weapon/reagent_containers/food/snacks/meat + meat_amount = 5 + minbodytemp = 200 ai_holder_type = /datum/ai_holder/simple_mob/melee/evasive diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/zz_vore_overrides.dm b/code/modules/mob/living/simple_mob/subtypes/vore/zz_vore_overrides.dm index b024c95a14..5744f8cccb 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/zz_vore_overrides.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/zz_vore_overrides.dm @@ -124,7 +124,7 @@ vore_icons = 0 /mob/living/simple_mob/animal/space/carp/large/huge vore_icons = 0 -/mob/living/simple_mob/animal/space/carp/holographic +/mob/living/simple_mob/animal/space/carp/holodeck vore_icons = 0 /* //VOREStation AI Temporary removal diff --git a/code/modules/mob/mob.dm b/code/modules/mob/mob.dm index 1d37a22e13..67466f350d 100644 --- a/code/modules/mob/mob.dm +++ b/code/modules/mob/mob.dm @@ -365,6 +365,45 @@ var/choice = tgui_alert(usr, "Returning to the menu will prevent your character from being revived in-round. Are you sure?", "Confirmation", list("No, wait", "Yes, leave")) if(choice == "No, wait") return + else if(mind.assigned_role) + var/extra_check = tgui_alert(usr, "Do you want to Quit This Round before you return to lobby? This will properly remove you from manifest, as well as prevent resleeving.","Quit This Round",list("Quit Round","Cancel")) + if(extra_check == "Quit Round") + //Update any existing objectives involving this mob. + for(var/datum/objective/O in all_objectives) + if(O.target == src.mind) + if(O.owner && O.owner.current) + to_chat(O.owner.current,"You get the feeling your target is no longer within your reach...") + qdel(O) + + //Resleeving cleanup + if(mind) + SStranscore.leave_round(src) + + //Job slot cleanup + var/job = src.mind.assigned_role + job_master.FreeRole(job) + + //Their objectives cleanup + if(src.mind.objectives.len) + qdel(src.mind.objectives) + src.mind.special_role = null + + //Cut the PDA manifest (ugh) + if(PDA_Manifest.len) + PDA_Manifest.Cut() + for(var/datum/data/record/R in data_core.medical) + if((R.fields["name"] == src.real_name)) + qdel(R) + for(var/datum/data/record/T in data_core.security) + if((T.fields["name"] == src.real_name)) + qdel(T) + for(var/datum/data/record/G in data_core.general) + if((G.fields["name"] == src.real_name)) + qdel(G) + + //This removes them from being 'active' list on join screen + src.mind.assigned_role = null + to_chat(src,"Your job has been free'd up, and you can rejoin as another character or quit. Thanks for properly quitting round, it helps the server!") // Beyond this point, you're going to respawn to_chat(usr, config.respawn_message) @@ -586,6 +625,9 @@ /mob/proc/get_gender() return gender +/mob/proc/name_gender() + return gender + /mob/proc/see(message) if(!is_active()) return 0 @@ -1147,7 +1189,7 @@ //Throwing stuff /mob/proc/throw_item(atom/target) - return + return FALSE /mob/proc/will_show_tooltip() if(alpha <= EFFECTIVE_INVIS) diff --git a/code/modules/mob/mob_grab.dm b/code/modules/mob/mob_grab.dm index 3ca2275782..1322f5be98 100644 --- a/code/modules/mob/mob_grab.dm +++ b/code/modules/mob/mob_grab.dm @@ -178,8 +178,9 @@ //VOREStation Edit if(BP_HEAD) if(force_down) - if(announce) - assailant.visible_message("[assailant] sits on [target]'s face!") + if(user.a_intent == I_HELP) + if(announce) + assailant.visible_message("[assailant] sits on [target]'s face!") //VOREStation Edit End /obj/item/weapon/grab/attack_self() diff --git a/code/modules/mob/mob_helpers.dm b/code/modules/mob/mob_helpers.dm index 5b6490c6be..b36a1ee37c 100644 --- a/code/modules/mob/mob_helpers.dm +++ b/code/modules/mob/mob_helpers.dm @@ -685,3 +685,6 @@ var/global/image/backplane return item.screen_loc = screen_place + +/mob/proc/can_feed() + return TRUE \ No newline at end of file diff --git a/code/modules/mob/new_player/login.dm b/code/modules/mob/new_player/login.dm index 82752f638b..299719aaa8 100644 --- a/code/modules/mob/new_player/login.dm +++ b/code/modules/mob/new_player/login.dm @@ -49,3 +49,45 @@ var/obj/effect/lobby_image = new /obj/effect/lobby_image if(client) handle_privacy_poll() client.playtitlemusic() + version_warnings() + +/mob/new_player/proc/version_warnings() + var/problems // string to store message to present to player as a problem + + // TODO: Move this to a config file at some point maybe? What would the structure of that look like? + switch(client.byond_build) + // http://www.byond.com/forum/post/2711510 + // http://www.byond.com/forum/post/2711506 + // http://www.byond.com/forum/post/2711626 + // http://www.byond.com/forum/post/2711748 + if(1562 to 1563) + problems = "frequent known crashes related to animations" + + // Don't have a thread, just a lot of player reports. + if(1564 to 1565) // Fixed in 1566 which isn't released as of this commit + if(world.byond_build == 1564) + problems = "random network disconnects on this version of BYOND server" + else if(world.byond_build < 1564) + problems = "crashes related to animations on this version of BYOND server" + else + problems = "potential network disconnects. If you experience some, try another version" + + if(1566 to 1568) + if(world.byond_build == 1569) + problems = "frequent crashes, usually when transitioning between z-levels" + + if(problems) + // To get attention + var/message = "Your BYOND client version ([client.byond_version].[client.byond_build]) has known issues: [problems]. See the chat window for other version options." + tgui_alert_async(src, message, "BYOND Client Version Warning") + + // So we can be more wordy and give links. + to_chat(src, "Your client version has known issues. Please consider using a different version: http://www.byond.com/download/build/.") + var/chat_message = "" + if(config.suggested_byond_version) + chat_message += "We suggest using version [config.suggested_byond_version]." + if(config.suggested_byond_build) + chat_message += "[config.suggested_byond_build]." + chat_message += " If you find this version doesn't work for you, let us know." + to_chat(src, chat_message) + to_chat(src, "Tip: You can always use the '.zip' versions of BYOND and keep multiple versions in folders wherever you want, rather than uninstalling/reinstalling. Just make sure BYOND is *really* closed (check your system tray for the icon) before starting a different version.") diff --git a/code/modules/mob/new_player/new_player.dm b/code/modules/mob/new_player/new_player.dm index 43f2cef8ce..f3683f6ca4 100644 --- a/code/modules/mob/new_player/new_player.dm +++ b/code/modules/mob/new_player/new_player.dm @@ -76,12 +76,20 @@ output += "

[href(src, list("give_feedback" = 1), "Give Feedback")]

" if(GLOB.news_data.station_newspaper) - output += "Show [using_map.station_name] News" + if(client.prefs.lastlorenews == GLOB.news_data.newsindex) + output += "

Show [using_map.station_name] News

" + else + output += "

Show [using_map.station_name] News (NEW!)

" output += "
" - if(GLOB.news_data.station_newspaper && !client.seen_news) + if (client.prefs.lastlorenews == GLOB.news_data.newsindex) + client.seen_news = 1 + + if(GLOB.news_data.station_newspaper && !client.seen_news && client.is_preference_enabled(/datum/client_preference/show_lore_news)) show_latest_news(GLOB.news_data.station_newspaper) + client.prefs.lastlorenews = GLOB.news_data.newsindex + SScharacter_setup.queue_preferences_save(client.prefs) panel = new(src, "Welcome","Welcome", 210, 300, src) // VOREStation Edit panel.set_window_options("can_close=0") @@ -505,7 +513,7 @@ for(var/datum/job/job in job_master.occupations) if(job && IsJobAvailable(job.title)) // Checks for jobs with minimum age requirements - if(job.minimum_character_age && (client.prefs.age < job.minimum_character_age)) + if((job.minimum_character_age || job.min_age_by_species) && (client.prefs.age < job.get_min_age(client.prefs.species, client.prefs.organ_data["brain"]))) continue // Checks for jobs set to "Never" in preferences //TODO: Figure out a better way to check for this if(!(client.prefs.GetJobDepartment(job, 1) & job.flag)) diff --git a/code/modules/mob/new_player/new_player_vr.dm b/code/modules/mob/new_player/new_player_vr.dm index 71abc1ddf1..fdbbcb10d0 100644 --- a/code/modules/mob/new_player/new_player_vr.dm +++ b/code/modules/mob/new_player/new_player_vr.dm @@ -72,4 +72,4 @@ //Final popup notice if (!pass) tgui_alert_async(src,"There were problems with spawning your character. Check your message log for details.","Error") - return pass + return pass \ No newline at end of file diff --git a/code/modules/mob/new_player/sprite_accessories.dm b/code/modules/mob/new_player/sprite_accessories.dm index 8984efe214..5f5a3bfe69 100644 --- a/code/modules/mob/new_player/sprite_accessories.dm +++ b/code/modules/mob/new_player/sprite_accessories.dm @@ -1662,159 +1662,224 @@ shaved /////////////////////////////////// */ -/datum/sprite_accessory/hair/una_spines_long +//Unathi Head-Bits + +/datum/sprite_accessory/hair/una name = "Long Unathi Spines" icon_state = "soghun_longspines" species_allowed = list(SPECIES_UNATHI) -/datum/sprite_accessory/hair/una_spines_short +/datum/sprite_accessory/hair/una/spines_short name = "Short Unathi Spines" - icon_state = "soghun_shortspines" - species_allowed = list(SPECIES_UNATHI) -/datum/sprite_accessory/hair/una_frills_long +/datum/sprite_accessory/hair/una/frills_long name = "Long Unathi Frills" icon_state = "soghun_longfrills" - species_allowed = list(SPECIES_UNATHI) -/datum/sprite_accessory/hair/una_frills_short +/datum/sprite_accessory/hair/una/frills_short name = "Short Unathi Frills" icon_state = "soghun_shortfrills" - species_allowed = list(SPECIES_UNATHI) -/datum/sprite_accessory/hair/una_horns +/datum/sprite_accessory/hair/una/horns name = "Unathi Horns" icon_state = "soghun_horns" - species_allowed = list(SPECIES_UNATHI) -/datum/sprite_accessory/hair/una_bighorns +/datum/sprite_accessory/hair/una/bighorns name = "Unathi Big Horns" icon_state = "unathi_bighorn" - species_allowed = list(SPECIES_UNATHI) -/datum/sprite_accessory/hair/una_smallhorns +/datum/sprite_accessory/hair/una/smallhorns name = "Unathi Small Horns" icon_state = "unathi_smallhorn" - species_allowed = list(SPECIES_UNATHI) -/datum/sprite_accessory/hair/una_ramhorns +/datum/sprite_accessory/hair/una/ramhorns name = "Unathi Ram Horns" icon_state = "unathi_ramhorn" - species_allowed = list(SPECIES_UNATHI) -/datum/sprite_accessory/hair/una_sidefrills +/datum/sprite_accessory/hair/una/sidefrills name = "Unathi Side Frills" icon_state = "unathi_sidefrills" - species_allowed = list(SPECIES_UNATHI) //Skrell 'hairstyles' -/datum/sprite_accessory/hair/skr_tentacle_veryshort - name = "Skrell Short Tentacles" - icon_state = "skrell_hair_short" - species_allowed = list(SPECIES_SKRELL, SPECIES_EVENT1, SPECIES_EVENT2, SPECIES_EVENT3) - gender = MALE -/datum/sprite_accessory/hair/skr_tentacle_short +/datum/sprite_accessory/hair/skr name = "Skrell Average Tentacles" icon_state = "skrell_hair_average" species_allowed = list(SPECIES_SKRELL, SPECIES_EVENT1, SPECIES_EVENT2, SPECIES_EVENT3) -/datum/sprite_accessory/hair/skr_tentacle_average +/datum/sprite_accessory/hair/skr/tentacle_veryshort + name = "Skrell Short Tentacles" + icon_state = "skrell_hair_short" + gender = MALE + +/datum/sprite_accessory/hair/skr/tentacle_average name = "Skrell Long Tentacles" icon_state = "skrell_hair_long" - species_allowed = list(SPECIES_SKRELL, SPECIES_EVENT1, SPECIES_EVENT2, SPECIES_EVENT3) -/datum/sprite_accessory/hair/skr_tentacle_verylong +/datum/sprite_accessory/hair/skr/tentacle_verylong name = "Skrell Very Long Tentacles" icon_state = "skrell_hair_verylong" - species_allowed = list(SPECIES_SKRELL, SPECIES_EVENT1, SPECIES_EVENT2, SPECIES_EVENT3) //Tajaran hairstyles -/datum/sprite_accessory/hair/taj_ears +/datum/sprite_accessory/hair/taj name = "Tajaran Ears" icon_state = "ears_plain" species_allowed = list(SPECIES_TAJ) -/datum/sprite_accessory/hair/taj_ears_clean - name = "Tajaran Clean" - icon_state = "hair_clean" - species_allowed = list(SPECIES_TAJ) - -/datum/sprite_accessory/hair/taj_ears_bangs +/datum/sprite_accessory/hair/taj/bangs name = "Tajaran Bangs" icon_state = "hair_bangs" - species_allowed = list(SPECIES_TAJ) +/datum/sprite_accessory/hair/taj/bangs_alt + name = "Tajaran Bangs (Alt)" + icon_state = "hair_bangs_alt" -/datum/sprite_accessory/hair/taj_ears_braid +/datum/sprite_accessory/hair/taj/short_fringe + name = "Tajaran Short Fringe" + icon_state = "hair_shortfringe" + +/datum/sprite_accessory/hair/taj/braid name = "Tajaran Braid" icon_state = "hair_tbraid" - species_allowed = list(SPECIES_TAJ) -/datum/sprite_accessory/hair/taj_ears_shaggy +/datum/sprite_accessory/hair/taj/clean + name = "Tajaran Clean" + icon_state = "hair_clean" + +/datum/sprite_accessory/hair/taj/gman + name = "Tajaran G-Man" + icon_state = "hair_gman" + +/datum/sprite_accessory/hair/taj/greaser + name = "Tajaran Greaser" + icon_state = "hair_greaser" + +/datum/sprite_accessory/hair/taj/bun + name = "Tajaran Bun" + icon_state = "hair_tajbun" + +/datum/sprite_accessory/hair/taj/bunsmall + name = "Tajaran Bun (Small)" + icon_state = "hair_tajsmallbun" + +/datum/sprite_accessory/hair/taj/bunlow + name = "Tajaran Bun (Low)" + icon_state = "hair_tajbunlow" + +/datum/sprite_accessory/hair/taj/bunlowsmall + name = "Tajaran Bun (Low, Small)" + icon_state = "hair_tajbunlowsmall" + +/datum/sprite_accessory/hair/taj/_wedge + name = "Tajaran Wedge" + icon_state = "hair_wedge" + +/datum/sprite_accessory/hair/taj/shaggy name = "Tajaran Shaggy" icon_state = "hair_shaggy" - species_allowed = list(SPECIES_TAJ) -/datum/sprite_accessory/hair/taj_ears_mohawk +/datum/sprite_accessory/hair/taj/mohawk name = "Tajaran Mohawk" icon_state = "hair_mohawk" - species_allowed = list(SPECIES_TAJ) -/datum/sprite_accessory/hair/taj_ears_plait +/datum/sprite_accessory/hair/taj/plait name = "Tajaran Plait" icon_state = "hair_plait" - species_allowed = list(SPECIES_TAJ) -/datum/sprite_accessory/hair/taj_ears_straight +/datum/sprite_accessory/hair/taj/_sidepony + name = "Tajaran Side Ponytail" + icon_state = "hair_sidepony" + +/datum/sprite_accessory/hair/taj/straight name = "Tajaran Straight" icon_state = "hair_straight" - species_allowed = list(SPECIES_TAJ) -/datum/sprite_accessory/hair/taj_ears_long +/datum/sprite_accessory/hair/taj/long name = "Tajaran Long" icon_state = "hair_long" - species_allowed = list(SPECIES_TAJ) -/datum/sprite_accessory/hair/taj_ears_rattail +/datum/sprite_accessory/hair/taj/tresses + name = "Tajaran Tresses" + icon_state = "hair_tresses" + +/datum/sprite_accessory/hair/taj/shoulderparted + name = "Tajaran Shoulder Parted" + icon_state = "hair_shoulderparted" + +/datum/sprite_accessory/hair/taj/shoulderpartedsmall + name = "Tajaran Shoulder Parted (Small)" + icon_state = "hair_shoulderpartedsmall" + +/datum/sprite_accessory/hair/taj/shoulderpartedlong + name = "Tajaran Shoulder Parted (Long)" + icon_state = "hair_shoulderpartedlong" + +/datum/sprite_accessory/hair/taj/sidepartedleft + name = "Tajaran Side Parted (Left)" + icon_state = "hair_sidepartedleft" + +/datum/sprite_accessory/hair/taj/sidepartedright + name = "Tajaran Side Parted (Right)" + icon_state = "hair_sidepartedright" + +/datum/sprite_accessory/hair/taj/shoulderlength + name = "Tajaran Shoulder Length" + icon_state = "hair_shoulderlength" + +/datum/sprite_accessory/hair/taj/shoulderlengthalt + name = "Tajaran Shoulder Length (Alt)" + icon_state = "hair_shoulderlengthalt" + +/datum/sprite_accessory/hair/taj/cascading + name = "Tajaran Cascading" + icon_state = "hair_cascading" + +/datum/sprite_accessory/hair/taj/cascadingalt + name = "Tajaran Cascading (Alt)" + icon_state = "hair_cascadingalt" + +/datum/sprite_accessory/hair/taj/rattail name = "Tajaran Rat Tail" icon_state = "hair_rattail" - species_allowed = list(SPECIES_TAJ) -/datum/sprite_accessory/hair/taj_ears_spiky +/datum/sprite_accessory/hair/taj/spiky name = "Tajaran Spiky" icon_state = "hair_tajspiky" - species_allowed = list(SPECIES_TAJ) -/datum/sprite_accessory/hair/taj_ears_messy +/datum/sprite_accessory/hair/taj/fringeup + name = "Tajaran Fringe Spike" + icon_state = "hair_fringeup" + +/datum/sprite_accessory/hair/taj/messy name = "Tajaran Messy" icon_state = "hair_messy" - species_allowed = list(SPECIES_TAJ) -/datum/sprite_accessory/hair/taj_ears_curls +/datum/sprite_accessory/hair/taj/curls name = "Tajaran Curly" icon_state = "hair_curly" - species_allowed = list(SPECIES_TAJ) -/datum/sprite_accessory/hair/taj_ears_wife +/datum/sprite_accessory/hair/taj/curlsalt + name = "Tajaran Curly, alt" + icon_state = "hair_curlyalt" + +/datum/sprite_accessory/hair/taj/mane + name = "Tajaran Mane" + icon_state = "hair_mane" + +/datum/sprite_accessory/hair/taj/wife name = "Tajaran Housewife" icon_state = "hair_wife" - species_allowed = list(SPECIES_TAJ) -/datum/sprite_accessory/hair/taj_ears_victory +/datum/sprite_accessory/hair/taj/victory name = "Tajaran Victory Curls" icon_state = "hair_victory" - species_allowed = list(SPECIES_TAJ) -/datum/sprite_accessory/hair/taj_ears_bob +/datum/sprite_accessory/hair/taj/bob name = "Tajaran Bob" icon_state = "hair_tbob" - species_allowed = list(SPECIES_TAJ) - -/datum/sprite_accessory/hair/taj_ears_fingercurl +/datum/sprite_accessory/hair/taj/fingercurl name = "Tajaran Finger Curls" icon_state = "hair_fingerwave" - species_allowed = list(SPECIES_TAJ) //Teshari things /datum/sprite_accessory/hair/teshari @@ -1875,7 +1940,6 @@ shaved name = "Teshari Mushroom" icon_state = "teshari_mushroom" -//Tesh things ported from Ark Station /datum/sprite_accessory/hair/teshari/twies name = "Teshari Twies" icon_state = "teshari_twies" @@ -1897,102 +1961,89 @@ shaved icon_state = "teshari_fluffymohawk" // Vox things -/datum/sprite_accessory/hair/vox_braid_long +/datum/sprite_accessory/hair/vox name = "Long Vox braid" icon_state = "vox_longbraid" species_allowed = list(SPECIES_VOX) -/datum/sprite_accessory/hair/vox_braid_short +/datum/sprite_accessory/hair/vox/braid_short name = "Short Vox Braid" icon_state = "vox_shortbraid" - species_allowed = list(SPECIES_VOX) -/datum/sprite_accessory/hair/vox_quills_short +/datum/sprite_accessory/hair/vox/quills_short name = "Short Vox Quills" icon_state = "vox_shortquills" - species_allowed = list(SPECIES_VOX) -/datum/sprite_accessory/hair/vox_quills_kingly +/datum/sprite_accessory/hair/vox/quills_kingly name = "Kingly Vox Quills" icon_state = "vox_kingly" - species_allowed = list(SPECIES_VOX) -/datum/sprite_accessory/hair/vox_quills_mohawk +/datum/sprite_accessory/hair/vox/quills_mohawk name = "Quill Mohawk" icon_state = "vox_mohawk" - species_allowed = list(SPECIES_VOX) -/datum/sprite_accessory/facial_hair/taj_sideburns +//Tajaran Facial Hair + +/datum/sprite_accessory/facial_hair/taj name = "Tajaran Sideburns" icon_state = "facial_sideburns" species_allowed = list(SPECIES_TAJ) -/datum/sprite_accessory/facial_hair/taj_mutton +/datum/sprite_accessory/facial_hair/taj/mutton name = "Tajaran Mutton" icon_state = "facial_mutton" - species_allowed = list(SPECIES_TAJ) -/datum/sprite_accessory/facial_hair/taj_pencilstache +/datum/sprite_accessory/facial_hair/taj/pencilstache name = "Tajaran Pencilstache" icon_state = "facial_pencilstache" - species_allowed = list(SPECIES_TAJ) -/datum/sprite_accessory/facial_hair/taj_moustache +/datum/sprite_accessory/facial_hair/taj/moustache name = "Tajaran Moustache" icon_state = "facial_moustache" - species_allowed = list(SPECIES_TAJ) -/datum/sprite_accessory/facial_hair/taj_goatee +/datum/sprite_accessory/facial_hair/taj/goatee name = "Tajaran Goatee" icon_state = "facial_goatee" - species_allowed = list(SPECIES_TAJ) -/datum/sprite_accessory/facial_hair/taj_smallstache +/datum/sprite_accessory/facial_hair/taj/smallstache name = "Tajaran Smallsatche" icon_state = "facial_smallstache" - species_allowed = list(SPECIES_TAJ) //unathi horn beards and the like -/datum/sprite_accessory/facial_hair/una_chinhorn +/datum/sprite_accessory/facial_hair/una name = "Unathi Chin Horn" icon_state = "facial_chinhorns" species_allowed = list(SPECIES_UNATHI) -/datum/sprite_accessory/facial_hair/una_hornadorns +/datum/sprite_accessory/facial_hair/una/hornadorns name = "Unathi Horn Adorns" icon_state = "facial_hornadorns" - species_allowed = list(SPECIES_UNATHI) -/datum/sprite_accessory/facial_hair/una_spinespikes +/datum/sprite_accessory/facial_hair/una/spinespikes name = "Unathi Spine Spikes" icon_state = "facial_spikes" - species_allowed = list(SPECIES_UNATHI) -/datum/sprite_accessory/facial_hair/una_dorsalfrill +/datum/sprite_accessory/facial_hair/una/dorsalfrill name = "Unathi Dorsal Frill" icon_state = "facial_dorsalfrill" - species_allowed = list(SPECIES_UNATHI) -//Teshari things -/datum/sprite_accessory/facial_hair/teshari_beard +//Teshari face things +/datum/sprite_accessory/facial_hair/teshari name = "Teshari Beard" icon_state = "teshari_chin" species_allowed = list(SPECIES_TESHARI) gender = NEUTER -/datum/sprite_accessory/facial_hair/teshari_scraggly +/datum/sprite_accessory/facial_hair/teshari/scraggly name = "Teshari Scraggly" icon_state = "teshari_scraggly" - species_allowed = list(SPECIES_TESHARI) - gender = NEUTER -/datum/sprite_accessory/facial_hair/teshari_chops + +/datum/sprite_accessory/facial_hair/teshari/chops name = "Teshari Chops" icon_state = "teshari_gap" - species_allowed = list(SPECIES_TESHARI) - gender = NEUTER /* //////////////////////////// @@ -2011,9 +2062,12 @@ shaved color_blend_mode = ICON_ADD + var/genetic = TRUE var/body_parts = list() //A list of bodyparts this covers, in organ_tag defines //Reminder: BP_L_FOOT,BP_R_FOOT,BP_L_LEG,BP_R_LEG,BP_L_ARM,BP_R_ARM,BP_L_HAND,BP_R_HAND,BP_TORSO,BP_GROIN,BP_HEAD +//Tattoos + /datum/sprite_accessory/marking/tat_rheart name = "Tattoo (Heart, R. Arm)" icon_state = "tat_rheart" @@ -2066,6 +2120,300 @@ shaved icon_state = "tat_tiger" body_parts = list(BP_L_FOOT,BP_R_FOOT,BP_L_LEG,BP_R_LEG,BP_L_ARM,BP_R_ARM,BP_L_HAND,BP_R_HAND,BP_TORSO,BP_GROIN) +//New tats + +/datum/sprite_accessory/marking/tat_belly + name = "Tattoo (Belly)" + icon_state = "tat_belly" + body_parts = list(BP_TORSO) + +/datum/sprite_accessory/marking/tat_forrest_left + name = "Tattoo (Forrest, Left Eye)" + icon_state = "tat_forrest_l" + body_parts = list(BP_HEAD) + +/datum/sprite_accessory/marking/tat_forrest_right + name = "Tattoo (Forrest, Right Eye)" + icon_state = "tat_forrest_r" + body_parts = list(BP_HEAD) + +/datum/sprite_accessory/marking/tat_hunter_left + name = "Tattoo (Hunter, Left Eye)" + icon_state = "tat_hunter_l" + body_parts = list(BP_HEAD) + +/datum/sprite_accessory/marking/tat_hunter_right + name = "Tattoo (Hunter, Right Eye)" + icon_state = "tat_hunter_r" + body_parts = list(BP_HEAD) + +/datum/sprite_accessory/marking/tat_jaeger_left + name = "Tattoo (Jaeger, Left Eye)" + icon_state = "tat_jaeger_l" + body_parts = list(BP_HEAD) + +/datum/sprite_accessory/marking/tat_jaeger_right + name = "Tattoo (Jaeger, Right Eye)" + icon_state = "tat_jaeger_r" + body_parts = list(BP_HEAD) + +/datum/sprite_accessory/marking/tat_kater_left + name = "Tattoo (Kater, Left Eye)" + icon_state = "tat_kater_l" + body_parts = list(BP_HEAD) + +/datum/sprite_accessory/marking/tat_kater_right + name = "Tattoo (Kater, Right Eye)" + icon_state = "tat_kater_r" + body_parts = list(BP_HEAD) + +/datum/sprite_accessory/marking/tat_lujan_left + name = "Tattoo (Lujan, Left Eye)" + icon_state = "tat_lujan_l" + body_parts = list(BP_HEAD) + +/datum/sprite_accessory/marking/tat_lujan_right + name = "Tattoo (Lujan, Right Eye)" + icon_state = "tat_lujan_r" + body_parts = list(BP_HEAD) + +/datum/sprite_accessory/marking/tat_montana_left + name = "Tattoo (Montana, Left Face)" + icon_state = "tat_montana_l" + body_parts = list(BP_HEAD) + +/datum/sprite_accessory/marking/tat_montana_right + name = "Tattoo (Montana, Right Face)" + icon_state = "tat_montana_r" + body_parts = list(BP_HEAD) + +/datum/sprite_accessory/marking/tat_natasha_left + name = "Tattoo (Natasha, Left Eye)" + icon_state = "tat_natasha_l" + body_parts = list(BP_HEAD) + +/datum/sprite_accessory/marking/tat_natasha_right + name = "Tattoo (Natasha, Right Eye)" + icon_state = "tat_natasha_r" + body_parts = list(BP_HEAD) + +/datum/sprite_accessory/marking/tat_tamoko + name = "Tattoo (Ta Moko, Face)" + icon_state = "tat_tamoko" + body_parts = list(BP_HEAD) + +/datum/sprite_accessory/marking/tat_toshi_left + name = "Tattoo (Toshi, Left Eye)" + icon_state = "tat_toshi_l" + body_parts = list(BP_HEAD) + +/datum/sprite_accessory/marking/tat_toshi_right + name = "Tattoo (Volgin, Right Eye)" + icon_state = "tat_toshi_r" + body_parts = list(BP_HEAD) + +/datum/sprite_accessory/marking/tat_wings_back + name = "Tattoo (Wings, Lower Back)" + icon_state = "tat_wingsback" + body_parts = list(BP_TORSO) + +/datum/sprite_accessory/marking/tilaka + name = "Tilaka" + icon_state = "tilaka" + body_parts = list(BP_HEAD) + + +/datum/sprite_accessory/marking/bands + name = "Color Bands" + icon_state = "bands" + body_parts = list(BP_L_FOOT,BP_R_FOOT,BP_L_LEG,BP_R_LEG,BP_L_ARM,BP_R_ARM,BP_L_HAND,BP_R_HAND,BP_TORSO,BP_GROIN) + +/datum/sprite_accessory/marking/bandsface + name = "Color Bands (Face)" + icon_state = "bandsface" + body_parts = list(BP_HEAD) + species_allowed = list(SPECIES_TAJ,SPECIES_UNATHI) + +/datum/sprite_accessory/marking/bandsface_human + name = "Color Bands (Face)" + icon_state = "bandshumanface" + body_parts = list(BP_HEAD) + species_allowed = list(SPECIES_HUMAN,SPECIES_HUMAN_VATBORN,SPECIES_SKRELL) + +/datum/sprite_accessory/marking/tiger_stripes + name = "Tiger Stripes" + icon_state = "tiger" + body_parts = list(BP_L_FOOT,BP_R_FOOT,BP_L_LEG,BP_R_LEG,BP_L_ARM,BP_R_ARM,BP_TORSO,BP_GROIN) + species_allowed = list(SPECIES_TAJ) //There's a tattoo for non-cats + +/datum/sprite_accessory/marking/tigerhead + name = "Tiger Stripes (Head, Minor)" + icon_state = "tigerhead" + body_parts = list(BP_HEAD) + +/datum/sprite_accessory/marking/tigerface + name = "Tiger Stripes (Head, Major)" + icon_state = "tigerface" + body_parts = list(BP_HEAD) + species_allowed = list(SPECIES_TAJ) //There's a tattoo for non-cats + +/datum/sprite_accessory/marking/backstripe + name = "Back Stripe" + icon_state = "backstripe" + body_parts = list(BP_TORSO) + +/datum/sprite_accessory/marking/bindi + name = "Bindi" + icon_state = "bindi" + body_parts = list(BP_HEAD) + +/datum/sprite_accessory/marking/blush + name = "Blush" + icon_state= "blush" + body_parts = list(BP_HEAD) + +/datum/sprite_accessory/marking/bridge + name = "Bridge" + icon_state = "bridge" + body_parts = list(BP_HEAD) + +/datum/sprite_accessory/marking/brow_left + name = "Brow Left" + icon_state = "brow_l" + body_parts = list(BP_HEAD) + +/datum/sprite_accessory/marking/brow_right + name = "Brow Right" + icon_state = "brow_r" + body_parts = list(BP_HEAD) + +/datum/sprite_accessory/marking/cheekspot_left + name = "Cheek Spot (Left Cheek)" + icon_state = "cheekspot_l" + body_parts = list(BP_HEAD) + +/datum/sprite_accessory/marking/cheekspot_right + name = "Cheek Spot (Right Cheek)" + icon_state = "cheekspot_r" + body_parts = list(BP_HEAD) + +/datum/sprite_accessory/marking/cheshire_left + name = "Cheshire (Left Cheek)" + icon_state = "cheshire_l" + body_parts = list(BP_HEAD) + +/datum/sprite_accessory/marking/cheshire_right + name = "Cheshire (Right Cheek)" + icon_state = "cheshire_r" + body_parts = list(BP_HEAD) + +/datum/sprite_accessory/marking/eyestripe + name = "Eye Stripe" + icon_state = "eyestripe" + body_parts = list(BP_HEAD) + +/datum/sprite_accessory/marking/eyecorner_left + name = "Eye Corner Left" + icon_state = "eyecorner_l" + body_parts = list(BP_HEAD) + +/datum/sprite_accessory/marking/eyecorner_right + name = "Eye Corner Right" + icon_state = "eyecorner_r" + body_parts = list(BP_HEAD) + +/datum/sprite_accessory/marking/fullfacepaint + name = "Full Face Paint" + icon_state = "fullface" + body_parts = list(BP_HEAD) + species_allowed = list(SPECIES_HUMAN,SPECIES_HUMAN_VATBORN,SPECIES_SKRELL) + +/datum/sprite_accessory/marking/lips + name = "Lips" + icon_state = "lips" + body_parts = list(BP_HEAD) + +/datum/sprite_accessory/marking/lowercheek_left + name = "Lower Cheek Left" + icon_state = "lowercheek_l" + body_parts = list(BP_HEAD) + +/datum/sprite_accessory/marking/lowercheek_left + name = "Lower Cheek Right" + icon_state = "lowercheek_r" + body_parts = list(BP_HEAD) + +/datum/sprite_accessory/marking/neck + name = "Neck Cover" + icon_state = "neck" + body_parts = list(BP_HEAD) + +/datum/sprite_accessory/marking/neckthick + name = "Neck Cover (Thick)" + icon_state = "neckthick" + body_parts = list(BP_HEAD) + +/datum/sprite_accessory/marking/nosestripe + name = "Nose Stripe" + icon_state = "nosestripe" + body_parts = list(BP_HEAD) + +/datum/sprite_accessory/marking/nosetape + name = "Nose Tape" + icon_state = "nosetape" + body_parts = list(BP_HEAD) + genetic = FALSE + +/datum/sprite_accessory/marking/scratch_abdomen_left + name = "Scar, Abdomen Left" + icon_state = "scratch_abdomen_l" + body_parts = list(BP_TORSO) + +/datum/sprite_accessory/marking/scratch_abdomen_right + name = "Scar, Abdomen Right" + icon_state = "scratch_abdomen_r" + body_parts = list(BP_TORSO) + +/datum/sprite_accessory/marking/scratch_abdomen_small_left + name = "Scar, Abdomen Small Left" + icon_state = "scratch_abdomensmall_l" + body_parts = list(BP_TORSO) + +/datum/sprite_accessory/marking/scratch_abdomen_small_right + name = "Scar, Abdomen Small Right" + icon_state = "scratch_abdomensmall_r" + body_parts = list(BP_TORSO) + +/datum/sprite_accessory/marking/scratch_back + name = "Scar, Back" + icon_state = "scratch_back" + body_parts = list(BP_TORSO) + +/datum/sprite_accessory/marking/scratch_chest_left + name = "Scar, Chest (Left)" + icon_state = "scratch_chest_l" + body_parts = list(BP_TORSO) + +/datum/sprite_accessory/marking/scratch_chest_right + name = "Scar, Chest (Right)" + icon_state = "scratch_chest_r" + body_parts = list(BP_TORSO) + +/datum/sprite_accessory/marking/skull_paint + name = "Skull Paint" + icon_state = "skull" + body_parts = list(BP_HEAD) + genetic = FALSE + +//Heterochromia + +/datum/sprite_accessory/marking/heterochromia + name = "Heterochromia (right eye)" + icon_state = "heterochromia" + body_parts = list(BP_HEAD) + +//Taj/Unathi shared markings + /datum/sprite_accessory/marking/taj_paw_socks name = "Socks Coloration (Taj)" icon_state = "taj_pawsocks" @@ -2120,42 +2468,6 @@ shaved body_parts = list(BP_HEAD) species_allowed = list(SPECIES_TAJ) -/datum/sprite_accessory/marking/bands - name = "Color Bands" - icon_state = "bands" - body_parts = list(BP_L_FOOT,BP_R_FOOT,BP_L_LEG,BP_R_LEG,BP_L_ARM,BP_R_ARM,BP_L_HAND,BP_R_HAND,BP_TORSO,BP_GROIN) - -/datum/sprite_accessory/marking/bandsface - name = "Color Bands (Face)" - icon_state = "bandsface" - body_parts = list(BP_HEAD) - -/datum/sprite_accessory/marking/tiger_stripes - name = "Tiger Stripes" - icon_state = "tiger" - body_parts = list(BP_L_FOOT,BP_R_FOOT,BP_L_LEG,BP_R_LEG,BP_L_ARM,BP_R_ARM,BP_TORSO,BP_GROIN) - species_allowed = list(SPECIES_TAJ) //There's a tattoo for non-cats - -/datum/sprite_accessory/marking/tigerhead - name = "Tiger Stripes (Head, Minor)" - icon_state = "tigerhead" - body_parts = list(BP_HEAD) - -/datum/sprite_accessory/marking/tigerface - name = "Tiger Stripes (Head, Major)" - icon_state = "tigerface" - body_parts = list(BP_HEAD) - species_allowed = list(SPECIES_TAJ) //There's a tattoo for non-cats - -/datum/sprite_accessory/marking/backstripe - name = "Back Stripe" - icon_state = "backstripe" - body_parts = list(BP_TORSO) - -/datum/sprite_accessory/marking/heterochromia - name = "Heterochromia (right eye)" - icon_state = "heterochromia" - body_parts = list(BP_HEAD) //Taj specific stuff /datum/sprite_accessory/marking/taj_belly @@ -2289,10 +2601,174 @@ shaved do_colouration = 0 +//Cybernetic Augments, some species-limited due to sprite misalignment. /aug/ types are excluded from dna. + +/datum/sprite_accessory/marking/aug + name = "Augment (Backports, Back)" + icon_state = "aug_backports" + genetic = FALSE + body_parts = list(BP_TORSO) + species_allowed = list(SPECIES_HUMAN,SPECIES_SKRELL,SPECIES_TAJ,SPECIES_HUMAN_VATBORN,SPECIES_UNATHI,SPECIES_ZADDAT) + +/datum/sprite_accessory/marking/aug/diode + name = "Augment (Backports Diode, Back)" + icon_state = "aug_backportsdiode" + +/datum/sprite_accessory/marking/aug/backportswide + name = "Augment (Backports Wide, Back)" + icon_state = "aug_backportswide" + body_parts = list(BP_TORSO) + +/datum/sprite_accessory/marking/aug/backportswide/diode + name = "Augment (Backports Wide Diode, Back)" + icon_state = "aug_backportswidediode" + +/datum/sprite_accessory/marking/aug/headcase + name = "Augment (Headcase, Head)" + icon_state = "aug_headcase" + body_parts = list(BP_HEAD) + +/datum/sprite_accessory/marking/aug/headcase_light + name = "Augment (Headcase Light, Head)" + icon_state = "aug_headcaselight" + body_parts = list(BP_HEAD) + +/datum/sprite_accessory/marking/aug/headport + name = "Augment (Headport, Head)" + icon_state = "aug_headport" + body_parts = list(BP_HEAD) + +/datum/sprite_accessory/marking/aug/headport/diode + name = "Augment (Headport Diode, Head)" + icon_state = "aug_headplugdiode" + +/datum/sprite_accessory/marking/aug/lowerjaw + name = "Augment (Lower Jaw, Head)" + icon_state = "aug_lowerjaw" + body_parts = list(BP_HEAD) + species_allowed = list(SPECIES_HUMAN,SPECIES_SKRELL,SPECIES_HUMAN_VATBORN,SPECIES_ZADDAT) + +/datum/sprite_accessory/marking/aug/scalpports + name = "Augment (Scalp Ports)" + icon_state = "aug_scalpports" + body_parts = list(BP_HEAD) + +/datum/sprite_accessory/marking/aug/scalpports/vertex_left + name = "Augment (Scalp Port, Vertex Left)" + icon_state = "aug_vertexport_l" + +/datum/sprite_accessory/marking/aug/scalpports/vertex_right + name = "Augment (Scalp Port, Vertex Right)" + icon_state = "aug_vertexport_r" + +/datum/sprite_accessory/marking/aug/scalpports/occipital_left + name = "Augment (Scalp Port, Occipital Left)" + icon_state = "aug_occipitalport_l" + +/datum/sprite_accessory/marking/aug/scalpports/occipital_right + name = "Augment (Scalp Port, Occipital Right)" + icon_state = "aug_occipitalport_r" + +/datum/sprite_accessory/marking/aug/scalpportsdiode + name = "Augment (Scalp Ports Diode)" + icon_state = "aug_scalpportsdiode" + body_parts = list(BP_HEAD) + +/datum/sprite_accessory/marking/aug/scalpportsdiode/vertex_left + name = "Augment (Scalp Port Diode, Vertex Left)" + icon_state = "aug_vertexportdiode_l" + +/datum/sprite_accessory/marking/aug/scalpportsdiode/vertex_right + name = "Augment (Scalp Port Diode, Vertex Right)" + icon_state = "aug_vertexportdiode_r" + +/datum/sprite_accessory/marking/aug/scalpportsdiode/occipital_left + name = "Augment (Scalp Port Diode, Occipital Left)" + icon_state = "aug_occipitalportdiode_l" + +/datum/sprite_accessory/marking/aug/scalpportsdiode/occipital_right + name = "Augment (Scalp Port Diode, Occipital Right)" + icon_state = "aug_occipitalportdiode_r" + +/datum/sprite_accessory/marking/aug/backside_left + name = "Augment (Backside Left, Head)" + icon_state = "aug_backside_l" + +/datum/sprite_accessory/marking/aug/backside_left/side_diode + name = "Augment (Backside Left Diode, Head)" + icon_state = "aug_sidediode_l" + +/datum/sprite_accessory/marking/aug/backside_right + name = "Augment (Backside Right, Head)" + icon_state = "aug_backside_r" + body_parts = list(BP_HEAD) + +/datum/sprite_accessory/marking/aug/backside_right/side_diode + name = "Augment (Backside Right Diode, Head)" + icon_state = "aug_sidediode_r" + +/datum/sprite_accessory/marking/aug/side_deunan_left + name = "Augment (Deunan, Side Left)" + icon_state = "aug_sidedeunan_l" + body_parts = list(BP_HEAD) + +/datum/sprite_accessory/marking/aug/side_deunan_right + name = "Augment (Deunan, Side Right)" + icon_state = "aug_sidedeunan_r" + body_parts = list(BP_HEAD) + +/datum/sprite_accessory/marking/aug/side_kuze_left + name = "Augment (Kuze, Side Left)" + icon_state = "aug_sidekuze_l" + body_parts = list(BP_HEAD) + +/datum/sprite_accessory/marking/aug/side_kuze_left/side_diode + name = "Augment (Kuze Diode, Side Left)" + icon_state = "aug_sidekuzediode_l" + +/datum/sprite_accessory/marking/aug/side_kuze_right + name = "Augment (Kuze, Side Right)" + icon_state = "aug_sidekuze_r" + body_parts = list(BP_HEAD) + +/datum/sprite_accessory/marking/aug/side_kuze_right/side_diode + name = "Augment (Kuze Diode, Side Right)" + icon_state = "aug_sidekuzediode_r" + +/datum/sprite_accessory/marking/aug/side_kinzie_left + name = "Augment (Kinzie, Side Left)" + icon_state = "aug_sidekinzie_l" + body_parts = list(BP_HEAD) + +/datum/sprite_accessory/marking/aug/side_kinzie_right + name = "Augment (Kinzie, Side Right)" + icon_state = "aug_sidekinzie_r" + body_parts = list(BP_HEAD) + +/datum/sprite_accessory/marking/aug/side_shelly_left + name = "Augment (Shelly, Side Left)" + icon_state = "aug_sideshelly_l" + body_parts = list(BP_HEAD) + +/datum/sprite_accessory/marking/aug/side_shelly_right + name = "Augment (Shelly, Side Right)" + icon_state = "aug_sideshelly_r" + body_parts = list(BP_HEAD) + +/datum/sprite_accessory/marking/aug/chestports + name = "Augment (Chest Ports)" + icon_state = "aug_chestports" + body_parts = list(BP_TORSO) + +/datum/sprite_accessory/marking/aug/abdomenports + name = "Augment (Abdomen Ports)" + icon_state = "aug_abdomenports" + body_parts = list(BP_TORSO) //skin styles - WIP //going to have to re-integrate this with surgery //let the icon_state hold an icon preview for now + /datum/sprite_accessory/skin icon = 'icons/mob/human_races/r_human.dmi' diff --git a/code/modules/mob/new_player/sprite_accessories_ear.dm b/code/modules/mob/new_player/sprite_accessories_ear.dm index fbf59a0fec..26638a04bb 100644 --- a/code/modules/mob/new_player/sprite_accessories_ear.dm +++ b/code/modules/mob/new_player/sprite_accessories_ear.dm @@ -16,7 +16,7 @@ var/desc = "You should not see this..." em_block = TRUE - species_allowed = list(SPECIES_EVENT1, SPECIES_EVENT2, SPECIES_EVENT3) + //species_allowed = list(SPECIES_EVENT1, SPECIES_EVENT2, SPECIES_EVENT3) //Removing Polaris whitelits, ones we need are defined in our files /datum/sprite_accessory/ears/shadekin name = "Shadekin Ears, colorable" @@ -24,14 +24,14 @@ icon_state = "shadekin" do_colouration = 1 color_blend_mode = ICON_MULTIPLY - species_allowed = list() // SPECIES_SHADEKIN, SPECIES_SHADEKIN_CREW + //species_allowed = list() // SPECIES_SHADEKIN, SPECIES_SHADEKIN_CREW //Removing Polaris whitelits, ones we need are defined in our files /datum/sprite_accessory/ears/taj_ears name = "Tajaran Ears" icon_state = "ears_plain" do_colouration = 1 color_blend_mode = ICON_MULTIPLY - species_allowed = list(SPECIES_TAJ, SPECIES_EVENT1, SPECIES_EVENT2, SPECIES_EVENT3) + //species_allowed = list(SPECIES_TAJ, SPECIES_EVENT1, SPECIES_EVENT2, SPECIES_EVENT3) //Removing Polaris whitelits, ones we need are defined in our files extra_overlay = "ears_plain-inner" /datum/sprite_accessory/ears/taj_ears_tall @@ -39,7 +39,7 @@ icon_state = "msai_plain" do_colouration = 1 color_blend_mode = ICON_MULTIPLY - species_allowed = list(SPECIES_TAJ, SPECIES_EVENT1, SPECIES_EVENT2, SPECIES_EVENT3) + //species_allowed = list(SPECIES_TAJ, SPECIES_EVENT1, SPECIES_EVENT2, SPECIES_EVENT3) //Removing Polaris whitelits, ones we need are defined in our files extra_overlay = "msai_plain-inner" /datum/sprite_accessory/ears/squirrel_orange @@ -345,14 +345,44 @@ do_colouration = 1 color_blend_mode = ICON_MULTIPLY -/datum/sprite_accessory/ears/elfs - name = "elven ears" +/datum/sprite_accessory/ears/elfs1 + name = "pointed ears (tall)" desc = "" icon_state = "elfs" do_colouration = 1 color_blend_mode = ICON_MULTIPLY + //species_allowed = list(SPECIES_HUMAN, SPECIES_HUMAN_VATBORN, SPECIES_EVENT1, SPECIES_EVENT2, SPECIES_EVENT3) //Removing Polaris whitelits, ones we need are defined in our files - species_allowed = list(SPECIES_HUMAN, SPECIES_HUMAN_VATBORN, SPECIES_EVENT1, SPECIES_EVENT2, SPECIES_EVENT3) +/datum/sprite_accessory/ears/elfs2 + name = "pointed ears" + desc = "" + icon_state = "ears_pointy" + do_colouration = 1 + //species_allowed = list(SPECIES_HUMAN, SPECIES_HUMAN_VATBORN, SPECIES_EVENT1, SPECIES_EVENT2, SPECIES_EVENT3) //Removing Polaris whitelits, ones we need are defined in our files + +/datum/sprite_accessory/ears/elfs3 + name = "pointed ears (down)" + desc = "" + icon_state = "ears_pointy_down" + do_colouration = 1 + color_blend_mode = ICON_MULTIPLY + //species_allowed = list(SPECIES_HUMAN, SPECIES_HUMAN_VATBORN, SPECIES_EVENT1, SPECIES_EVENT2, SPECIES_EVENT3) //Removing Polaris whitelits, ones we need are defined in our files + +/datum/sprite_accessory/ears/elfs4 + name = "pointed ears (long)" + desc = "" + icon_state = "ears_pointy_long" + do_colouration = 1 + color_blend_mode = ICON_MULTIPLY + //species_allowed = list(SPECIES_HUMAN, SPECIES_HUMAN_VATBORN, SPECIES_EVENT1, SPECIES_EVENT2, SPECIES_EVENT3) //Removing Polaris whitelits, ones we need are defined in our files + +/datum/sprite_accessory/ears/elfs5 + name = "pointed ears (long, down)" + desc = "" + icon_state = "ears_pointy_long_down" + do_colouration = 1 + color_blend_mode = ICON_MULTIPLY + //species_allowed = list(SPECIES_HUMAN, SPECIES_HUMAN_VATBORN, SPECIES_EVENT1, SPECIES_EVENT2, SPECIES_EVENT3) //Removing Polaris whitelits, ones we need are defined in our files /datum/sprite_accessory/ears/sleek name = "sleek ears" @@ -413,7 +443,7 @@ do_colouration = 1 color_blend_mode = ICON_MULTIPLY extra_overlay = "teshariinner" - species_allowed = list(SPECIES_TESHARI, SPECIES_EVENT1, SPECIES_EVENT2, SPECIES_EVENT3) + //species_allowed = list(SPECIES_TESHARI, SPECIES_EVENT1, SPECIES_EVENT2, SPECIES_EVENT3) //Removing Polaris whitelits, ones we need are defined in our files /datum/sprite_accessory/ears/tesharihigh name = "Teshari upper ears (colorable fluff)" @@ -422,7 +452,7 @@ do_colouration = 1 color_blend_mode = ICON_MULTIPLY extra_overlay = "tesharihighinner" - species_allowed = list(SPECIES_TESHARI, SPECIES_EVENT1, SPECIES_EVENT2, SPECIES_EVENT3) + //species_allowed = list(SPECIES_TESHARI, SPECIES_EVENT1, SPECIES_EVENT2, SPECIES_EVENT3) //Removing Polaris whitelits, ones we need are defined in our files /datum/sprite_accessory/ears/tesharilow name = "Teshari lower ears (colorable fluff)" @@ -431,7 +461,7 @@ do_colouration = 1 color_blend_mode = ICON_MULTIPLY extra_overlay = "tesharilowinner" - species_allowed = list(SPECIES_TESHARI, SPECIES_EVENT1, SPECIES_EVENT2, SPECIES_EVENT3) + //species_allowed = list(SPECIES_TESHARI, SPECIES_EVENT1, SPECIES_EVENT2, SPECIES_EVENT3) //Removing Polaris whitelits, ones we need are defined in our files /datum/sprite_accessory/ears/inkling name = "colorable mature inkling hair" diff --git a/code/modules/mob/new_player/sprite_accessories_ear_vr.dm b/code/modules/mob/new_player/sprite_accessories_ear_vr.dm index 3588e533af..37158f8e08 100644 --- a/code/modules/mob/new_player/sprite_accessories_ear_vr.dm +++ b/code/modules/mob/new_player/sprite_accessories_ear_vr.dm @@ -22,13 +22,23 @@ color_blend_mode = ICON_MULTIPLY species_allowed = list(SPECIES_SHADEKIN, SPECIES_SHADEKIN_CREW) +/datum/sprite_accessory/ears/shadekin/round + name = "Shadekin Ears Round, colorable" + desc = "" + icon = 'icons/mob/vore/ears_32x64.dmi' + icon_state = "shadekin-round" + do_colouration = 1 + extra_overlay = "shadekin-round-inner" + // Ears avaliable to anyone /datum/sprite_accessory/ears/taj_ears name = "tajaran, colorable (old)" + species_allowed = list(SPECIES_HUMAN, SPECIES_SKRELL, SPECIES_UNATHI, SPECIES_TAJ, SPECIES_TESHARI, SPECIES_NEVREAN, SPECIES_AKULA, SPECIES_SERGAL, SPECIES_FENNEC, SPECIES_ZORREN_HIGH, SPECIES_VULPKANIN, SPECIES_XENOCHIMERA, SPECIES_XENOHYBRID, SPECIES_VASILISSAN, SPECIES_RAPALA, SPECIES_PROTEAN, SPECIES_ALRAUNE, SPECIES_WEREBEAST, SPECIES_SHADEKIN, SPECIES_SHADEKIN_CREW) //This lets all races use /datum/sprite_accessory/ears/taj_ears_tall name = "tajaran tall, colorable (old)" + species_allowed = list(SPECIES_HUMAN, SPECIES_SKRELL, SPECIES_UNATHI, SPECIES_TAJ, SPECIES_TESHARI, SPECIES_NEVREAN, SPECIES_AKULA, SPECIES_SERGAL, SPECIES_FENNEC, SPECIES_ZORREN_HIGH, SPECIES_VULPKANIN, SPECIES_XENOCHIMERA, SPECIES_XENOHYBRID, SPECIES_VASILISSAN, SPECIES_RAPALA, SPECIES_PROTEAN, SPECIES_ALRAUNE, SPECIES_WEREBEAST, SPECIES_SHADEKIN, SPECIES_SHADEKIN_CREW) //This lets all races use /datum/sprite_accessory/ears/alt_ram_horns name = "Solid ram horns" @@ -369,6 +379,21 @@ do_colouration = 1 color_blend_mode = ICON_MULTIPLY +/datum/sprite_accessory/ears/elfs1 + species_allowed = list(SPECIES_HUMAN, SPECIES_SKRELL, SPECIES_UNATHI, SPECIES_TAJ, SPECIES_TESHARI, SPECIES_NEVREAN, SPECIES_AKULA, SPECIES_SERGAL, SPECIES_FENNEC, SPECIES_ZORREN_HIGH, SPECIES_VULPKANIN, SPECIES_XENOCHIMERA, SPECIES_XENOHYBRID, SPECIES_VASILISSAN, SPECIES_RAPALA, SPECIES_PROTEAN, SPECIES_ALRAUNE, SPECIES_WEREBEAST, SPECIES_SHADEKIN, SPECIES_SHADEKIN_CREW) //This lets all races use + +/datum/sprite_accessory/ears/elfs2 + species_allowed = list(SPECIES_HUMAN, SPECIES_SKRELL, SPECIES_UNATHI, SPECIES_TAJ, SPECIES_TESHARI, SPECIES_NEVREAN, SPECIES_AKULA, SPECIES_SERGAL, SPECIES_FENNEC, SPECIES_ZORREN_HIGH, SPECIES_VULPKANIN, SPECIES_XENOCHIMERA, SPECIES_XENOHYBRID, SPECIES_VASILISSAN, SPECIES_RAPALA, SPECIES_PROTEAN, SPECIES_ALRAUNE, SPECIES_WEREBEAST, SPECIES_SHADEKIN, SPECIES_SHADEKIN_CREW) //This lets all races use + +/datum/sprite_accessory/ears/elfs3 + species_allowed = list(SPECIES_HUMAN, SPECIES_SKRELL, SPECIES_UNATHI, SPECIES_TAJ, SPECIES_TESHARI, SPECIES_NEVREAN, SPECIES_AKULA, SPECIES_SERGAL, SPECIES_FENNEC, SPECIES_ZORREN_HIGH, SPECIES_VULPKANIN, SPECIES_XENOCHIMERA, SPECIES_XENOHYBRID, SPECIES_VASILISSAN, SPECIES_RAPALA, SPECIES_PROTEAN, SPECIES_ALRAUNE, SPECIES_WEREBEAST, SPECIES_SHADEKIN, SPECIES_SHADEKIN_CREW) //This lets all races use + +/datum/sprite_accessory/ears/elfs4 + species_allowed = list(SPECIES_HUMAN, SPECIES_SKRELL, SPECIES_UNATHI, SPECIES_TAJ, SPECIES_TESHARI, SPECIES_NEVREAN, SPECIES_AKULA, SPECIES_SERGAL, SPECIES_FENNEC, SPECIES_ZORREN_HIGH, SPECIES_VULPKANIN, SPECIES_XENOCHIMERA, SPECIES_XENOHYBRID, SPECIES_VASILISSAN, SPECIES_RAPALA, SPECIES_PROTEAN, SPECIES_ALRAUNE, SPECIES_WEREBEAST, SPECIES_SHADEKIN, SPECIES_SHADEKIN_CREW) //This lets all races use + +/datum/sprite_accessory/ears/elfs5 + species_allowed = list(SPECIES_HUMAN, SPECIES_SKRELL, SPECIES_UNATHI, SPECIES_TAJ, SPECIES_TESHARI, SPECIES_NEVREAN, SPECIES_AKULA, SPECIES_SERGAL, SPECIES_FENNEC, SPECIES_ZORREN_HIGH, SPECIES_VULPKANIN, SPECIES_XENOCHIMERA, SPECIES_XENOHYBRID, SPECIES_VASILISSAN, SPECIES_RAPALA, SPECIES_PROTEAN, SPECIES_ALRAUNE, SPECIES_WEREBEAST, SPECIES_SHADEKIN, SPECIES_SHADEKIN_CREW) //This lets all races use + /datum/sprite_accessory/ears/sleek name = "sleek ears" desc = "" @@ -718,3 +743,86 @@ icon_state = "chorn_chub" do_colouration = 0 color_blend_mode = ICON_MULTIPLY + +/datum/sprite_accessory/ears/bnnuy + name = "Bnnuy Ears" + desc = "" + icon = 'icons/mob/vore/ears_32x64.dmi' + icon_state = "bnnuy" + extra_overlay = "bnnuy-inner" + extra_overlay2 = "bnnuy-tips" + do_colouration = 1 + color_blend_mode = ICON_MULTIPLY + +/datum/sprite_accessory/ears/bnnuy2 + name = "Bnnuy Ears 2" + desc = "" + icon = 'icons/mob/vore/ears_32x64.dmi' + icon_state = "bnnuy2" + extra_overlay = "bnnuy-inner" + extra_overlay2 = "bnnuy-tips2" + do_colouration = 1 + color_blend_mode = ICON_MULTIPLY + +/datum/sprite_accessory/ears/sandfox + name = "Sandfox Ears" + desc = "" + icon = 'icons/mob/vore/ears_32x64.dmi' + icon_state = "sandfox" + extra_overlay = "sandfox-inner" + do_colouration = 1 + color_blend_mode = ICON_MULTIPLY + +/datum/sprite_accessory/ears/teppiears + name = "Teppi Ears" + desc = "" + icon = 'icons/mob/vore/ears_32x64.dmi' + icon_state = "teppi_ears" + extra_overlay = "teppi_ears_inner" + do_colouration = 1 + color_blend_mode = ICON_MULTIPLY + +/datum/sprite_accessory/ears/teppihorns + name = "Teppi Horns" + desc = "" + icon = 'icons/mob/vore/ears_32x64.dmi' + icon_state = "teppi_horns" + do_colouration = 1 + color_blend_mode = ICON_MULTIPLY + +/datum/sprite_accessory/ears/teppiearshorns + name = "Teppi Ears and Horns" + desc = "" + icon = 'icons/mob/vore/ears_32x64.dmi' + icon_state = "teppi_ears" + extra_overlay = "teppi_ears_inner" + extra_overlay2 = "teppi_horns" + do_colouration = 1 + color_blend_mode = ICON_MULTIPLY + +/datum/sprite_accessory/ears/jackalope + name = "Jackalope Ears and Antlers" + desc = "" + icon = 'icons/mob/vore/ears_32x64.dmi' + icon_state = "jackalope" + extra_overlay = "jackalope-antlers" + do_colouration = 1 + color_blend_mode = ICON_MULTIPLY + +/datum/sprite_accessory/ears/kittyr + name = "kitty right only, colorable" + icon = 'icons/mob/vore/ears_uneven.dmi' + desc = "" + icon_state = "kittyrinner" + do_colouration = 1 + color_blend_mode = ICON_MULTIPLY + extra_overlay = "kittyr" + +/datum/sprite_accessory/ears/bunny_tall + name = "Bunny Tall Ears" + desc = "" + icon = 'icons/mob/vore/ears_32x64.dmi' + icon_state = "bunny-tall" + extra_overlay = "bunny-tall-inner" + do_colouration = 1 + color_blend_mode = ICON_MULTIPLY \ No newline at end of file diff --git a/code/modules/mob/new_player/sprite_accessories_tail.dm b/code/modules/mob/new_player/sprite_accessories_tail.dm index c8d8cd4940..06dcdb9ebb 100644 --- a/code/modules/mob/new_player/sprite_accessories_tail.dm +++ b/code/modules/mob/new_player/sprite_accessories_tail.dm @@ -25,7 +25,7 @@ var/clip_mask_state = null //Icon state to generate clip mask. Clip mask is used to 'clip' off the lower part of clothing such as jumpsuits & full suits. var/icon/clip_mask = null //Instantiated clip mask of given icon and state - species_allowed = list(SPECIES_EVENT1, SPECIES_EVENT2, SPECIES_EVENT3) + //species_allowed = list(SPECIES_EVENT1, SPECIES_EVENT2, SPECIES_EVENT3) //Removing Polaris whitelits, ones we need are defined in our files /datum/sprite_accessory/tail/New() . = ..() @@ -41,7 +41,7 @@ icon = null icon_state = null - species_allowed = list(SPECIES_TAJ, SPECIES_UNATHI, SPECIES_TESHARI, SPECIES_EVENT1, SPECIES_EVENT2, SPECIES_EVENT3) + //species_allowed = list(SPECIES_TAJ, SPECIES_UNATHI, SPECIES_TESHARI, SPECIES_EVENT1, SPECIES_EVENT2, SPECIES_EVENT3) //Removing Polaris whitelits, ones we need are defined in our files /datum/sprite_accessory/tail/squirrel_orange name = "squirel, orange" @@ -90,7 +90,7 @@ color_blend_mode = ICON_MULTIPLY extra_overlay = "stripeytail_mark" - species_allowed = list(SPECIES_TAJ, SPECIES_EVENT1, SPECIES_EVENT2, SPECIES_EVENT3) + //species_allowed = list(SPECIES_TAJ, SPECIES_EVENT1, SPECIES_EVENT2, SPECIES_EVENT3) //Removing Polaris whitelits, ones we need are defined in our files /datum/sprite_accessory/tail/stripeytail_brown name = "stripey taj, brown" @@ -231,13 +231,6 @@ desc = "" icon_state = "beethorax" -/datum/sprite_accessory/tail/doublekitsune - name = "double kitsune tail, colorable" - desc = "" - icon_state = "doublekitsune" - do_colouration = 1 - color_blend_mode = ICON_MULTIPLY - /datum/sprite_accessory/tail/spade_color name = "spade-tail (colorable)" desc = "" @@ -422,7 +415,7 @@ extra_overlay = "teshari_fluffytail_mark" do_colouration = 1 color_blend_mode = ICON_MULTIPLY - species_allowed = list(SPECIES_TESHARI, SPECIES_EVENT1, SPECIES_EVENT2, SPECIES_EVENT3) + //species_allowed = list(SPECIES_TESHARI, SPECIES_EVENT1, SPECIES_EVENT2, SPECIES_EVENT3) //Removing Polaris whitelits, ones we need are defined in our files /datum/sprite_accessory/tail/nightstalker name = "Nightstalker, colorable" @@ -443,7 +436,7 @@ do_colouration = 1 color_blend_mode = ICON_MULTIPLY - species_allowed = list(SPECIES_UNATHI, SPECIES_EVENT1, SPECIES_EVENT2, SPECIES_EVENT3) + //species_allowed = list(SPECIES_UNATHI, SPECIES_EVENT1, SPECIES_EVENT2, SPECIES_EVENT3) //Removing Polaris whitelits, ones we need are defined in our files /datum/sprite_accessory/tail/special/tajaran name = "tajaran tail" @@ -451,7 +444,7 @@ icon_state = "tajtail_s" do_colouration = 1 color_blend_mode = ICON_MULTIPLY - species_allowed = list(SPECIES_TAJ, SPECIES_EVENT1, SPECIES_EVENT2, SPECIES_EVENT3) + //species_allowed = list(SPECIES_TAJ, SPECIES_EVENT1, SPECIES_EVENT2, SPECIES_EVENT3) //Removing Polaris whitelits, ones we need are defined in our files /datum/sprite_accessory/tail/special/sergal name = "sergal tail" @@ -510,7 +503,7 @@ icon_state = "seromitail_s" do_colouration = 1 color_blend_mode = ICON_MULTIPLY - species_allowed = list(SPECIES_TESHARI, SPECIES_EVENT1, SPECIES_EVENT2, SPECIES_EVENT3) + //species_allowed = list(SPECIES_TESHARI, SPECIES_EVENT1, SPECIES_EVENT2, SPECIES_EVENT3) //Removing Polaris whitelits, ones we need are defined in our files /datum/sprite_accessory/tail/special/tesharitailfeathered name = "teshari tail w/ feathers" @@ -519,7 +512,7 @@ extra_overlay = "seromitail_feathers_s" do_colouration = 1 color_blend_mode = ICON_MULTIPLY - species_allowed = list(SPECIES_TESHARI, SPECIES_EVENT1, SPECIES_EVENT2, SPECIES_EVENT3) + //species_allowed = list(SPECIES_TESHARI, SPECIES_EVENT1, SPECIES_EVENT2, SPECIES_EVENT3) //Removing Polaris whitelits, ones we need are defined in our files /datum/sprite_accessory/tail/special/unathihc name = "unathi tail, colorable" @@ -527,7 +520,7 @@ icon_state = "sogtail_hc_s" do_colouration = 1 color_blend_mode = ICON_MULTIPLY - species_allowed = list(SPECIES_UNATHI, SPECIES_EVENT1, SPECIES_EVENT2, SPECIES_EVENT3) + //species_allowed = list(SPECIES_UNATHI, SPECIES_EVENT1, SPECIES_EVENT2, SPECIES_EVENT3) //Removing Polaris whitelits, ones we need are defined in our files /datum/sprite_accessory/tail/special/tajaranhc name = "tajaran tail, colorable" @@ -535,7 +528,7 @@ icon_state = "tajtail_hc_s" do_colouration = 1 color_blend_mode = ICON_MULTIPLY - species_allowed = list(SPECIES_TAJ, SPECIES_EVENT1, SPECIES_EVENT2, SPECIES_EVENT3) + //species_allowed = list(SPECIES_TAJ, SPECIES_EVENT1, SPECIES_EVENT2, SPECIES_EVENT3) //Removing Polaris whitelits, ones we need are defined in our files /datum/sprite_accessory/tail/special/sergalhc name = "sergal tail, colorable" @@ -909,6 +902,20 @@ do_colouration = 1 color_blend_mode = ICON_MULTIPLY +/datum/sprite_accessory/tail/fox_tail + name = "Fox tail, colorable" + desc = "" + icon_state = "fox_tail_s" + do_colouration = 1 + color_blend_mode = ICON_MULTIPLY + +/datum/sprite_accessory/tail/fox_tail_plain + name = "Fox tail, colorable, plain" + desc = "" + icon_state = "fox_tail_plain_s" + do_colouration = 1 + color_blend_mode = ICON_MULTIPLY + /datum/sprite_accessory/tail/foxtail name = "Fox tail, colourable (vwag)" desc = "" @@ -919,6 +926,21 @@ ani_state = "foxtail_w" extra_overlay_w = "foxtail-tips_w" +/datum/sprite_accessory/tail/doublekitsune + name = "Kitsune 2 tails, colorable" + desc = "" + icon_state = "doublekitsune" + do_colouration = 1 + color_blend_mode = ICON_MULTIPLY + +/datum/sprite_accessory/tail/doublekitsunealt + name = "Kitsune 2 tails, colorable, alt" + desc = "" + icon_state = "doublekitsunealt" + do_colouration = 1 + color_blend_mode = ICON_MULTIPLY + extra_overlay = "doublekitsunealt-tips" + /datum/sprite_accessory/tail/triplekitsune_colorable name = "Kitsune 3 tails, colorable" desc = "" @@ -927,6 +949,14 @@ color_blend_mode = ICON_MULTIPLY extra_overlay = "triplekitsune_tips" +/datum/sprite_accessory/tail/sevenkitsune_colorable + name = "Kitsune 7 tails, colorable" + desc = "" + icon_state = "sevenkitsune" + extra_overlay = "sevenkitsune-tips" + do_colouration = 1 + color_blend_mode = ICON_MULTIPLY + /datum/sprite_accessory/tail/ninekitsune_colorable name = "Kitsune 9 tails, colorable" desc = "" @@ -935,6 +965,16 @@ color_blend_mode = ICON_MULTIPLY extra_overlay = "ninekitsune-tips" +/datum/sprite_accessory/tail/hideableninetails + name = "Kitsune 9-in-1 tail, colourable (vwag)" + desc = "" + icon_state = "ninekitsune" + extra_overlay = "ninekitsune-tips" + do_colouration = TRUE + color_blend_mode = ICON_MULTIPLY + ani_state = "foxtail_w" + extra_overlay_w = "foxtail-tips_w" + /datum/sprite_accessory/tail/shadekin_short name = "Shadekin Short Tail, colorable" desc = "" diff --git a/code/modules/mob/new_player/sprite_accessories_tail_vr.dm b/code/modules/mob/new_player/sprite_accessories_tail_vr.dm index ee11fd7eae..a1c1034be5 100644 --- a/code/modules/mob/new_player/sprite_accessories_tail_vr.dm +++ b/code/modules/mob/new_player/sprite_accessories_tail_vr.dm @@ -211,13 +211,6 @@ desc = "" icon_state = "beethorax" -/datum/sprite_accessory/tail/doublekitsune - name = "double kitsune tail, colorable" - desc = "" - icon_state = "doublekitsune" - do_colouration = 1 - color_blend_mode = ICON_MULTIPLY - /datum/sprite_accessory/tail/spade_color name = "spade-tail (colorable)" desc = "" @@ -964,6 +957,52 @@ do_colouration = 1 color_blend_mode = ICON_MULTIPLY +/datum/sprite_accessory/tail/fennec_tail + name = "Fennec tail" + desc = "" + icon_state = "fennec_tail_s" + do_colouration = 1 + color_blend_mode = ICON_MULTIPLY + +/datum/sprite_accessory/tail/fox_tail + name = "Fox tail, colorable" + desc = "" + icon_state = "fox_tail_s" + do_colouration = 1 + color_blend_mode = ICON_MULTIPLY + +/datum/sprite_accessory/tail/fox_tail_plain + name = "Fox tail, colorable, plain" + desc = "" + icon_state = "fox_tail_plain_s" + do_colouration = 1 + color_blend_mode = ICON_MULTIPLY + +/datum/sprite_accessory/tail/foxtail + name = "Fox tail, colourable (vwag)" + desc = "" + icon_state = "foxtail" + extra_overlay = "foxtail-tips" + do_colouration = TRUE + color_blend_mode = ICON_MULTIPLY + ani_state = "foxtail_w" + extra_overlay_w = "foxtail-tips_w" + +/datum/sprite_accessory/tail/doublekitsune + name = "Kitsune 2 tails, colorable" + desc = "" + icon_state = "doublekitsune" + do_colouration = 1 + color_blend_mode = ICON_MULTIPLY + +/datum/sprite_accessory/tail/doublekitsunealt + name = "Kitsune 2 tails, colorable, alt" + desc = "" + icon_state = "doublekitsunealt" + do_colouration = 1 + color_blend_mode = ICON_MULTIPLY + extra_overlay = "doublekitsunealt-tips" + /datum/sprite_accessory/tail/triplekitsune_colorable name = "Kitsune 3 tails, colorable" desc = "" @@ -972,6 +1011,14 @@ color_blend_mode = ICON_MULTIPLY extra_overlay = "triplekitsune_tips" +/datum/sprite_accessory/tail/sevenkitsune_colorable + name = "Kitsune 7 tails, colorable" + desc = "" + icon_state = "sevenkitsune" + extra_overlay = "sevenkitsune-tips" + do_colouration = 1 + color_blend_mode = ICON_MULTIPLY + /datum/sprite_accessory/tail/ninekitsune_colorable name = "Kitsune 9 tails, colorable" desc = "" @@ -980,6 +1027,16 @@ color_blend_mode = ICON_MULTIPLY extra_overlay = "ninekitsune-tips" +/datum/sprite_accessory/tail/hideableninetails + name = "Kitsune 9-in-1 tail, colourable (vwag)" + desc = "" + icon_state = "ninekitsune" + extra_overlay = "ninekitsune-tips" + do_colouration = TRUE + color_blend_mode = ICON_MULTIPLY + ani_state = "foxtail_w" + extra_overlay_w = "foxtail-tips_w" + /datum/sprite_accessory/tail/shadekin_short name = "Shadekin Short Tail, colorable" desc = "" @@ -1058,27 +1115,6 @@ ani_state = "Segmentedtail_w" extra_overlay_w = "Segmentedlights_w" -/datum/sprite_accessory/tail/fox_tail - name = "Fox tail" - desc = "" - icon_state = "fox_tail_s" - do_colouration = 1 - color_blend_mode = ICON_MULTIPLY - -/datum/sprite_accessory/tail/fox_tail_plain - name = "Fox tail" - desc = "" - icon_state = "fox_tail_plain_s" - do_colouration = 1 - color_blend_mode = ICON_MULTIPLY - -/datum/sprite_accessory/tail/fennec_tail - name = "Fennec tail" - desc = "" - icon_state = "fennec_tail_s" - do_colouration = 1 - color_blend_mode = ICON_MULTIPLY - /datum/sprite_accessory/tail/lizard_tail_smooth name = "Lizard Tail (Smooth)" desc = "" @@ -1147,3 +1183,22 @@ ani_state = "tentacle_w" do_colouration = 1 color_blend_mode = ICON_MULTIPLY + +//LONG TAILS ARE NOT TAUR BUTTS >:O +/datum/sprite_accessory/tail/longtail + name = "You should not see this..." + icon = 'icons/mob/vore/taurs_vr.dmi' + do_colouration = 1 // Yes color, using tail color + color_blend_mode = ICON_MULTIPLY // The sprites for taurs are designed for ICON_MULTIPLY + +/datum/sprite_accessory/tail/longtail/shadekin_tail + name = "Shadekin Tail" + icon_state = "shadekin_s" + +/datum/sprite_accessory/tail/longtail/shadekin_tail/shadekin_tail_2c + name = "Shadekin Tail (dual color)" + extra_overlay = "shadekin_markings" + +/datum/sprite_accessory/tail/longtail/shadekin_tail/shadekin_tail_long + name = "Shadekin Long Tail" + icon_state = "shadekin_long_s" diff --git a/code/modules/mob/new_player/sprite_accessories_taur.dm b/code/modules/mob/new_player/sprite_accessories_taur.dm index 5a96b1fd03..4fa3d66e1f 100644 --- a/code/modules/mob/new_player/sprite_accessories_taur.dm +++ b/code/modules/mob/new_player/sprite_accessories_taur.dm @@ -26,14 +26,15 @@ //Hoooo boy. /datum/riding/taur/get_offsets(pass_index) // list(dir = x, y, layer) var/mob/living/L = ridden - var/scale_x = L.icon_scale_x - var/scale_y = L.icon_scale_y + var/scale_x = L.icon_scale_x * L.size_multiplier //VOREStation Edit Start + var/scale_y = L.icon_scale_y * L.size_multiplier + var/scale_difference = (L.size_multiplier - rider_size) * 10 var/list/values = list( - "[NORTH]" = list(0, 8*scale_y, ABOVE_MOB_LAYER), - "[SOUTH]" = list(0, 8*scale_y, BELOW_MOB_LAYER), - "[EAST]" = list(-10*scale_x, 8*scale_y, ABOVE_MOB_LAYER), - "[WEST]" = list(10*scale_x, 8*scale_y, ABOVE_MOB_LAYER)) + "[NORTH]" = list(0, 8*scale_y + scale_difference, ABOVE_MOB_LAYER), + "[SOUTH]" = list(0, 8*scale_y + scale_difference, BELOW_MOB_LAYER), + "[EAST]" = list(-10*scale_x, 8*scale_y + scale_difference, ABOVE_MOB_LAYER), + "[WEST]" = list(10*scale_x, 8*scale_y + scale_difference, ABOVE_MOB_LAYER)) //VOREStation Edit End return values @@ -74,6 +75,7 @@ . = ..() if(.) + riding_datum.rider_size = M.size_multiplier buckled_mobs[M] = "riding" /mob/living/carbon/human/MouseDrop_T(mob/living/M, mob/living/user) //Prevention for forced relocation caused by can_buckle. Base proc has no other use. @@ -326,20 +328,3 @@ icon_state = "mermaid_s" can_ride = 0 icon_sprite_tag = "mermaid" - -/datum/sprite_accessory/tail/taur/shadekin_tail - name = "Shadekin Tail" - icon_state = "shadekin_s" - can_ride = 0 - hide_body_parts = null - clip_mask_icon = null - clip_mask_state = null - //species_allowed = list(SPECIES_SHADEKIN, SPECIES_SHADEKIN_CREW) - -/datum/sprite_accessory/tail/taur/shadekin_tail/shadekin_tail_2c - name = "Shadekin Tail (dual color)" - extra_overlay = "shadekin_markings" - -/datum/sprite_accessory/tail/taur/shadekin_tail/shadekin_tail_long - name = "Shadekin Long Tail" - icon_state = "shadekin_long_s" 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 1652fbfca9..2bfb196e4d 100644 --- a/code/modules/mob/new_player/sprite_accessories_taur_vr.dm +++ b/code/modules/mob/new_player/sprite_accessories_taur_vr.dm @@ -478,24 +478,6 @@ msg_prey_stepunder = "You jump over %prey's thick tail." msg_owner_stepunder = "%owner bounds over your tail." -/datum/sprite_accessory/tail/taur/shadekin_tail - name = "Shadekin Tail" - icon_state = "shadekin_s" - can_ride = 0 - hide_body_parts = null - clip_mask_icon = null - clip_mask_state = null - //apply_restrictions = TRUE - //species_allowed = list(SPECIES_SHADEKIN, SPECIES_SHADEKIN_CREW) - -/datum/sprite_accessory/tail/taur/shadekin_tail/shadekin_tail_2c - name = "Shadekin Tail (dual color)" - extra_overlay = "shadekin_markings" - -/datum/sprite_accessory/tail/taur/shadekin_tail/shadekin_tail_long - name = "Shadekin Long Tail" - icon_state = "shadekin_long_s" - /datum/sprite_accessory/tail/taur/pawcow // this grabs suit sprites from the normal cow, the outline is the same name = "Cow w/ paws (Taur)" icon_state = "pawcow_s" @@ -595,3 +577,10 @@ msg_owner_grab_fail = "You step down onto %prey with one of your vines, forcing them onto the ground!" msg_prey_grab_fail = "%owner steps down onto you with one of their vines, squishing you and forcing you onto the ground!" + +/datum/sprite_accessory/tail/taur/rat + name = "Rat (dual color)" + icon_state = "rat_s" + extra_overlay = "rat_markings" + clip_mask_state = "taur_clip_mask_rat" + icon_sprite_tag = "rat" \ No newline at end of file diff --git a/code/modules/mob/new_player/sprite_accessories_vr.dm b/code/modules/mob/new_player/sprite_accessories_vr.dm index 2d772b44ae..2773ee3660 100644 --- a/code/modules/mob/new_player/sprite_accessories_vr.dm +++ b/code/modules/mob/new_player/sprite_accessories_vr.dm @@ -91,14 +91,14 @@ name = "Bald" icon_state = "bald" gender = MALE - species_allowed = list(SPECIES_HUMAN, SPECIES_SKRELL, SPECIES_UNATHI, SPECIES_TAJ, SPECIES_TESHARI, SPECIES_NEVREAN, SPECIES_AKULA, SPECIES_SERGAL, SPECIES_FENNEC, SPECIES_ZORREN_HIGH, SPECIES_VULPKANIN, SPECIES_XENOCHIMERA, SPECIES_XENOHYBRID, SPECIES_VASILISSAN, SPECIES_RAPALA, SPECIES_PROTEAN, SPECIES_ALRAUNE, SPECIES_WEREBEAST) //Lets all the races be bald if they want. + species_allowed = list(SPECIES_HUMAN, SPECIES_SKRELL, SPECIES_UNATHI, SPECIES_TAJ, SPECIES_TESHARI, SPECIES_NEVREAN, SPECIES_AKULA, SPECIES_SERGAL, SPECIES_FENNEC, SPECIES_ZORREN_HIGH, SPECIES_VULPKANIN, SPECIES_XENOCHIMERA, SPECIES_XENOHYBRID, SPECIES_VASILISSAN, SPECIES_RAPALA, SPECIES_PROTEAN, SPECIES_ALRAUNE, SPECIES_WEREBEAST, SPECIES_SHADEKIN, SPECIES_SHADEKIN_CREW) //Lets all the races be bald if they want. /datum/sprite_accessory/hair/ponytail6_fixed name = "Ponytail 6 but fixed" icon = 'icons/mob/human_face_vr.dmi' icon_add = 'icons/mob/human_face_vr_add.dmi' icon_state = "hair_ponytail6" - species_allowed = list(SPECIES_HUMAN, SPECIES_SKRELL, SPECIES_UNATHI, SPECIES_TAJ, SPECIES_NEVREAN, SPECIES_AKULA,SPECIES_SERGAL, SPECIES_FENNEC, SPECIES_ZORREN_HIGH, SPECIES_VULPKANIN, SPECIES_XENOCHIMERA, SPECIES_XENOHYBRID, SPECIES_VASILISSAN, SPECIES_RAPALA, SPECIES_PROTEAN, SPECIES_ALRAUNE, SPECIES_WEREBEAST) + species_allowed = list(SPECIES_HUMAN, SPECIES_SKRELL, SPECIES_UNATHI, SPECIES_TAJ, SPECIES_NEVREAN, SPECIES_AKULA,SPECIES_SERGAL, SPECIES_FENNEC, SPECIES_ZORREN_HIGH, SPECIES_VULPKANIN, SPECIES_XENOCHIMERA, SPECIES_XENOHYBRID, SPECIES_VASILISSAN, SPECIES_RAPALA, SPECIES_PROTEAN, SPECIES_ALRAUNE, SPECIES_WEREBEAST, SPECIES_SHADEKIN, SPECIES_SHADEKIN_CREW) /datum/sprite_accessory/hair/una_hood name = "Cobra Hood" @@ -463,23 +463,29 @@ species_allowed = list(SPECIES_SHADEKIN, SPECIES_SHADEKIN_CREW) gender = NEUTER +/datum/sprite_accessory/hair/slicker + name = "Slicker" + icon = 'icons/mob/human_face_vr.dmi' + icon_add = 'icons/mob/human_face_vr_add.dmi' + icon_state = "hair_slicker" + /datum/sprite_accessory/facial_hair icon = 'icons/mob/human_face_or_vr.dmi' color_blend_mode = ICON_MULTIPLY - species_allowed = list(SPECIES_HUMAN, SPECIES_SKRELL, SPECIES_UNATHI, SPECIES_TAJ, SPECIES_TESHARI, SPECIES_NEVREAN, SPECIES_AKULA, SPECIES_SERGAL, SPECIES_FENNEC, SPECIES_ZORREN_HIGH, SPECIES_VULPKANIN, SPECIES_XENOCHIMERA, SPECIES_XENOHYBRID, SPECIES_VASILISSAN, SPECIES_RAPALA, SPECIES_PROTEAN, SPECIES_ALRAUNE, SPECIES_WEREBEAST) //This lets all races use the facial hair styles. + species_allowed = list(SPECIES_HUMAN, SPECIES_SKRELL, SPECIES_UNATHI, SPECIES_TAJ, SPECIES_TESHARI, SPECIES_NEVREAN, SPECIES_AKULA, SPECIES_SERGAL, SPECIES_FENNEC, SPECIES_ZORREN_HIGH, SPECIES_VULPKANIN, SPECIES_XENOCHIMERA, SPECIES_XENOHYBRID, SPECIES_VASILISSAN, SPECIES_RAPALA, SPECIES_PROTEAN, SPECIES_ALRAUNE, SPECIES_WEREBEAST, SPECIES_SHADEKIN, SPECIES_SHADEKIN_CREW) //This lets all races use the facial hair styles. /datum/sprite_accessory/facial_hair/shaved name = "Shaved" icon_state = "bald" gender = NEUTER - species_allowed = list(SPECIES_HUMAN, SPECIES_SKRELL, SPECIES_UNATHI, SPECIES_TAJ, SPECIES_TESHARI, SPECIES_NEVREAN, SPECIES_AKULA, SPECIES_SERGAL, SPECIES_FENNEC, SPECIES_ZORREN_HIGH, SPECIES_VULPKANIN, SPECIES_XENOCHIMERA, SPECIES_XENOHYBRID, SPECIES_VASILISSAN, SPECIES_RAPALA, SPECIES_PROTEAN, SPECIES_ALRAUNE, SPECIES_WEREBEAST) //This needed to be manually defined, apparantly. + species_allowed = list(SPECIES_HUMAN, SPECIES_SKRELL, SPECIES_UNATHI, SPECIES_TAJ, SPECIES_TESHARI, SPECIES_NEVREAN, SPECIES_AKULA, SPECIES_SERGAL, SPECIES_FENNEC, SPECIES_ZORREN_HIGH, SPECIES_VULPKANIN, SPECIES_XENOCHIMERA, SPECIES_XENOHYBRID, SPECIES_VASILISSAN, SPECIES_RAPALA, SPECIES_PROTEAN, SPECIES_ALRAUNE, SPECIES_WEREBEAST, SPECIES_SHADEKIN, SPECIES_SHADEKIN_CREW) //This needed to be manually defined, apparantly. /datum/sprite_accessory/facial_hair/neck_fluff name = "Neck Fluff" icon = 'icons/mob/human_face_or_vr.dmi' icon_state = "facial_neckfluff" gender = NEUTER - species_allowed = list(SPECIES_HUMAN, SPECIES_SKRELL, SPECIES_UNATHI, SPECIES_TAJ, SPECIES_TESHARI, SPECIES_NEVREAN, SPECIES_AKULA, SPECIES_SERGAL, SPECIES_FENNEC, SPECIES_ZORREN_HIGH, SPECIES_VULPKANIN, SPECIES_XENOCHIMERA, SPECIES_XENOHYBRID, SPECIES_VASILISSAN, SPECIES_RAPALA, SPECIES_PROTEAN, SPECIES_ALRAUNE, SPECIES_WEREBEAST) + species_allowed = list(SPECIES_HUMAN, SPECIES_SKRELL, SPECIES_UNATHI, SPECIES_TAJ, SPECIES_TESHARI, SPECIES_NEVREAN, SPECIES_AKULA, SPECIES_SERGAL, SPECIES_FENNEC, SPECIES_ZORREN_HIGH, SPECIES_VULPKANIN, SPECIES_XENOCHIMERA, SPECIES_XENOHYBRID, SPECIES_VASILISSAN, SPECIES_RAPALA, SPECIES_PROTEAN, SPECIES_ALRAUNE, SPECIES_WEREBEAST, SPECIES_SHADEKIN, SPECIES_SHADEKIN_CREW) /datum/sprite_accessory/facial_hair/vulp_none name = "None" diff --git a/code/modules/mob/new_player/sprite_accessories_wing.dm b/code/modules/mob/new_player/sprite_accessories_wing.dm index 85bdedd04a..ded7a70937 100644 --- a/code/modules/mob/new_player/sprite_accessories_wing.dm +++ b/code/modules/mob/new_player/sprite_accessories_wing.dm @@ -21,7 +21,7 @@ var/extra_overlay_w // Flapping state for extra overlay var/extra_overlay2_w - species_allowed = list(SPECIES_EVENT1, SPECIES_EVENT2, SPECIES_EVENT3) + //species_allowed = list(SPECIES_EVENT1, SPECIES_EVENT2, SPECIES_EVENT3) //Removing Polaris whitelits, ones we need are defined in our files /datum/sprite_accessory/wing/featheredlarge //Made by Natje! name = "large feathered wings (colorable)" diff --git a/code/modules/mob/new_player/sprite_accessories_wing_vr.dm b/code/modules/mob/new_player/sprite_accessories_wing_vr.dm index 7cc4dfc081..c747c4923b 100644 --- a/code/modules/mob/new_player/sprite_accessories_wing_vr.dm +++ b/code/modules/mob/new_player/sprite_accessories_wing_vr.dm @@ -133,6 +133,7 @@ icon_state = "neckfur" do_colouration = 1 color_blend_mode = ICON_MULTIPLY + extra_overlay = "neckfur_markings" /datum/sprite_accessory/wing/feathered name = "feathered wings, colorable" diff --git a/code/modules/multiz/ladder_assembly_vr.dm b/code/modules/multiz/ladder_assembly_vr.dm index 49f765225a..3512a3b07f 100644 --- a/code/modules/multiz/ladder_assembly_vr.dm +++ b/code/modules/multiz/ladder_assembly_vr.dm @@ -4,7 +4,7 @@ /obj/structure/ladder_assembly name = "ladder assembly" - icon = 'icons/obj/structures.dmi' + icon = 'icons/obj/structures_vr.dmi' icon_state = "ladder00" density = FALSE opacity = 0 @@ -21,6 +21,9 @@ created_name = t return + else if(istype(get_area(src), /area/shuttle)) + to_chat(user, "\The [src] cannot be constructed on a shuttle.") + return if(W.is_wrench()) switch(state) if(CONSTRUCTION_UNANCHORED) @@ -86,6 +89,8 @@ if(!T) continue var/obj/structure/ladder_assembly/LA = locate(/obj/structure/ladder_assembly, T) if(!LA) continue + if(direction == DOWN && (src.z in using_map.below_blocked_levels)) continue + if(direction == UP && (LA.z in using_map.below_blocked_levels)) continue if(LA.state != CONSTRUCTION_WELDED) to_chat(user, "\The [LA] [direction == UP ? "above" : "below"] must be secured and welded.") return diff --git a/code/modules/multiz/ladders.dm b/code/modules/multiz/ladders.dm index b4626022bb..0f9edf04c8 100644 --- a/code/modules/multiz/ladders.dm +++ b/code/modules/multiz/ladders.dm @@ -33,6 +33,13 @@ target_up = null return ..() +/obj/structure/ladder/attack_generic(mob/user) + //Simple Animal + if(isanimal(user)) + attack_hand(user) + else + return ..() + /obj/structure/ladder/attackby(obj/item/C as obj, mob/user as mob) attack_hand(user) return diff --git a/code/modules/multiz/ladders_vr.dm b/code/modules/multiz/ladders_vr.dm deleted file mode 100644 index 6892e2ef12..0000000000 --- a/code/modules/multiz/ladders_vr.dm +++ /dev/null @@ -1,122 +0,0 @@ -/obj/structure/portal_subtle - name = "portal" - desc = "Looks unstable. Best to test it with the clown." - icon = 'icons/obj/stationobjs.dmi' - icon_state = "portal" - density = TRUE - unacidable = TRUE//Can't destroy energy portals. - var/failchance = 0 - anchored = TRUE - var/obj/structure/portal_subtle/target - -/obj/structure/portal_subtle/Destroy() - if(target) - target.target = null - target = null - return ..() - -/obj/structure/portal_subtle/Bumped(mob/M as mob|obj) - if(istype(M,/mob) && !(istype(M,/mob/living))) - return //do not send ghosts, zshadows, ai eyes, etc - spawn(0) - src.teleport(M) - return - return - -/obj/structure/portal_subtle/Crossed(AM as mob|obj) - if(istype(AM,/mob) && !(istype(AM,/mob/living))) - return //do not send ghosts, zshadows, ai eyes, etc - spawn(0) - src.teleport(AM) - return - return - -/obj/structure/portal_subtle/attack_hand(mob/user as mob) - if(istype(user) && !(istype(user,/mob/living))) - return //do not send ghosts, zshadows, ai eyes, etc - spawn(0) - src.teleport(user) - return - return - -/obj/structure/portal_subtle/proc/teleport(atom/movable/M as mob|obj) - if(istype(M, /obj/effect)) //sparks don't teleport - return - if (M.anchored&&istype(M, /obj/mecha)) - return - if (icon_state == "portal1") - return - if (!( target )) - qdel(src) - return - if (istype(target, /obj/structure/portal_subtle)) - qdel(src) - return - if (istype(M, /atom/movable)) - if(prob(failchance)) //oh dear a problem, put em in deep space - src.icon_state = "portal1" - do_noeffect_teleport(M, locate(rand(5, world.maxx - 5), rand(5, world.maxy -5), 3), 0) - else - do_noeffect_teleport(M, target, 0) ///You will appear on the beacon - -/obj/structure/portal_gateway - name = "portal" - desc = "Looks unstable. Best to test it with the clown." - icon = 'icons/obj/stationobjs_vr.dmi' - icon_state = "portalgateway" - density = TRUE - unacidable = TRUE//Can't destroy energy portals. - anchored = TRUE - -/obj/structure/portal_gateway/Bumped(mob/M as mob|obj) - if(istype(M,/mob) && !(istype(M,/mob/living))) - return //do not send ghosts, zshadows, ai eyes, etc - var/obj/effect/landmark/dest = pick(eventdestinations) - if(dest) - M << 'sound/effects/phasein.ogg' - playsound(src, 'sound/effects/phasein.ogg', 100, 1) - M.forceMove(dest.loc) - if(istype(M, /mob/living) && dest.abductor) - var/mob/living/L = M - //Situations to get the mob out of - if(L.buckled) - L.buckled.unbuckle_mob() - if(istype(L.loc,/obj/mecha)) - var/obj/mecha/ME = L.loc - ME.go_out() - else if(istype(L.loc,/obj/machinery/sleeper)) - var/obj/machinery/sleeper/SL = L.loc - SL.go_out() - else if(istype(L.loc,/obj/machinery/recharge_station)) - var/obj/machinery/recharge_station/RS = L.loc - RS.go_out() - if(!issilicon(L)) //Don't drop borg modules... - var/list/mob_contents = list() //Things which are actually drained as a result of the above not being null. - mob_contents |= L // The recursive check below does not add the object being checked to its list. - mob_contents |= recursive_content_check(L, mob_contents, recursion_limit = 3, client_check = 0, sight_check = 0, include_mobs = 1, include_objects = 1, ignore_show_messages = 1) - for(var/obj/item/weapon/holder/I in mob_contents) - var/obj/item/weapon/holder/H = I - var/mob/living/MI = H.held_mob - MI.forceMove(get_turf(H)) - if(!issilicon(MI)) //Don't drop borg modules... - for(var/obj/item/II in MI) - if(istype(II,/obj/item/weapon/implant) || istype(II,/obj/item/device/nif)) - continue - MI.drop_from_inventory(II, dest.loc) - var/obj/effect/landmark/finaldest = pick(awayabductors) - MI.forceMove(finaldest.loc) - sleep(1) - MI.Paralyse(10) - MI << 'sound/effects/bamf.ogg' - to_chat(MI,"You're starting to come to. You feel like you've been out for a few minutes, at least...") - for(var/obj/item/I in L) - if(istype(I,/obj/item/weapon/implant) || istype(I,/obj/item/device/nif)) - continue - L.drop_from_inventory(I, dest.loc) - var/obj/effect/landmark/finaldest = pick(awayabductors) - L.forceMove(finaldest.loc) - sleep(1) - L.Paralyse(10) - L << 'sound/effects/bamf.ogg' - to_chat(L,"You're starting to come to. You feel like you've been out for a few minutes, at least...") - return diff --git a/code/modules/multiz/misc.dm b/code/modules/multiz/misc.dm new file mode 100644 index 0000000000..041cb4c375 --- /dev/null +++ b/code/modules/multiz/misc.dm @@ -0,0 +1,20 @@ +// Invisible object that blocks z transfer to/from its turf and the turf above. +/obj/effect/ceiling + invisibility = 101 // nope cant see this + anchored = 1 + can_atmos_pass = ATMOS_PASS_PROC + +/obj/effect/ceiling/CanZASPass(turf/T, is_zone) + if(T == GetAbove(src)) + return FALSE // Keep your air up there, buddy + return TRUE + +/obj/effect/ceiling/CanPass(atom/movable/mover, turf/target) + if(target == GetAbove(src)) + return FALSE + return TRUE + +/obj/effect/ceiling/Uncross(atom/movable/mover, turf/target) + if(target == GetAbove(src)) + return FALSE + return TRUE \ No newline at end of file diff --git a/code/modules/multiz/movement.dm b/code/modules/multiz/movement.dm index 725eda4848..f4fb3ffef8 100644 --- a/code/modules/multiz/movement.dm +++ b/code/modules/multiz/movement.dm @@ -59,7 +59,7 @@ if(lattice) var/pull_up_time = max(5 SECONDS + (src.movement_delay() * 10), 1) to_chat(src, "You grab \the [lattice] and start pulling yourself upward...") - destination.audible_message("You hear something climbing up \the [lattice].", runemessage = "clank clang") + src.audible_message("[src] begins climbing up \the [lattice].", runemessage = "clank clang") if(do_after(src, pull_up_time)) to_chat(src, "You pull yourself up.") else @@ -74,14 +74,14 @@ if(!destination?.Enter(src, old_dest)) to_chat(src, "There's something in the way up above in that direction, try another.") return 0 - destination.audible_message("You hear something climbing up \the [catwalk].", runemessage = "clank clang") + src.audible_message("[src] begins climbing up \the [lattice].", runemessage = "clank clang") if(do_after(src, pull_up_time)) to_chat(src, "You pull yourself up.") else to_chat(src, "You gave up on pulling yourself up.") return 0 - else if(ismob(src)) //VOREStation Edit Start. Are they a mob, and are they currently flying?? + else if(isliving(src)) //VOREStation Edit Start. Are they a mob, and are they currently flying?? var/mob/living/H = src if(H.flying) if(H.incapacitated(INCAPACITATION_ALL)) @@ -90,7 +90,6 @@ return 0 var/fly_time = max(7 SECONDS + (H.movement_delay() * 10), 1) //So it's not too useful for combat. Could make this variable somehow, but that's down the road. to_chat(src, "You begin to fly upwards...") - destination.audible_message("You hear the flapping of wings.", runemessage = "flap flap") H.audible_message("[H] begins to flap \his wings, preparing to move upwards!", runemessage = "flap flap") if(do_after(H, fly_time) && H.flying) to_chat(src, "You fly upwards.") @@ -111,6 +110,11 @@ return 0 if(!Move(destination)) return 0 + if(isliving(src)) + if(direction == UP) + src.audible_message("[src] moves up.") + else if(direction == DOWN) + src.audible_message("[src] moves down.") return 1 /mob/proc/can_overcome_gravity() @@ -467,13 +471,16 @@ // Take damage from falling and hitting the ground /mob/living/fall_impact(var/atom/hit_atom, var/damage_min = 0, var/damage_max = 5, var/silent = FALSE, var/planetary = FALSE) var/turf/landing = get_turf(hit_atom) + var/safe_fall = FALSE + if(src.softfall || (istype(src, /mob/living/simple_mob) && src.mob_size <= MOB_SMALL)) + safe_fall = TRUE if(planetary && src.CanParachute()) if(!silent) visible_message("\The [src] glides in from above and lands on \the [landing]!", \ "You land on \the [landing]!", \ "You hear something land \the [landing].") return - else if(!planetary && src.softfall) // Falling one floor and falling one atmosphere are very different things + else if(!planetary && safe_fall) // Falling one floor and falling one atmosphere are very different things if(!silent) visible_message("\The [src] falls from above and lands on \the [landing]!", \ "You land on \the [landing]!", \ diff --git a/code/modules/multiz/movement_vr.dm b/code/modules/multiz/movement_vr.dm index b217176e50..2df84190ce 100644 --- a/code/modules/multiz/movement_vr.dm +++ b/code/modules/multiz/movement_vr.dm @@ -32,26 +32,43 @@ return 0 var/mob/living/pred = hit_atom - pred.visible_message("\The [hit_atom] falls onto \the [src]!") - pred.Weaken(8) + var/safe_fall = FALSE + if(pred.softfall || (istype(pred, /mob/living/simple_mob) && pred.mob_size <= MOB_SMALL)) // TODO: add ability for mob below to be 'soft' and cushion fall + safe_fall = TRUE + + if(istype(pred, /mob/living/carbon/human)) + var/mob/living/carbon/human/H = pred + if(H.species.soft_landing) + safe_fall = TRUE + var/mob/living/prey = src var/fallloc = prey.loc if(pred.can_be_drop_pred && prey.can_be_drop_prey) pred.feed_grabbed_to_self_falling_nom(pred,prey) pred.loc = fallloc + if(!safe_fall) + pred.Weaken(8) + pred.visible_message("\The [pred] falls right onto \the [prey]!") else if(prey.can_be_drop_pred && pred.can_be_drop_prey) prey.feed_grabbed_to_self_falling_nom(prey,pred) + pred.Weaken(4) + pred.visible_message("\The [pred] falls right into \the [prey]!") else - prey.Weaken(8) pred.loc = prey.loc - playsound(src, "punch", 25, 1, -1) - var/tdamage - for(var/i = 1 to 10) - tdamage = rand(0, 10)/2 - pred.adjustBruteLoss(tdamage) - prey.adjustBruteLoss(tdamage) - pred.updatehealth() - prey.updatehealth() + if(!safe_fall) + pred.Weaken(8) + prey.Weaken(8) + playsound(src, "punch", 25, 1, -1) + var/tdamage + for(var/i = 1 to 5) //Twice as less damage because cushioned fall, but both get damaged. + tdamage = rand(0, 5) + pred.adjustBruteLoss(tdamage) + prey.adjustBruteLoss(tdamage) + pred.updatehealth() + prey.updatehealth() + pred.visible_message("\The [pred] falls onto \the [prey]!") + else + pred.visible_message("\The [pred] safely brushes past \the [prey] as they land.") return 1 /mob/observer/dead/CheckFall() diff --git a/code/modules/multiz/portals_vr.dm b/code/modules/multiz/portals_vr.dm new file mode 100644 index 0000000000..443134c4dd --- /dev/null +++ b/code/modules/multiz/portals_vr.dm @@ -0,0 +1,227 @@ +/obj/structure/portal_event + name = "portal" + desc = "It leads to someplace else!" + icon = 'icons/obj/stationobjs_vr.dmi' + icon_state = "type-d-portal" + density = TRUE + unacidable = TRUE//Can't destroy energy portals. + var/failchance = 0 + anchored = TRUE + var/obj/structure/portal_event/target + +/obj/structure/portal_event/Destroy() + if(target) + target.target = null + target = null + return ..() + +/obj/structure/portal_event/Bumped(mob/M as mob|obj) + if(istype(M,/mob) && !(istype(M,/mob/living))) + return //do not send ghosts, zshadows, ai eyes, etc + spawn(0) + src.teleport(M) + return + return + +/obj/structure/portal_event/Crossed(AM as mob|obj) + if(istype(AM,/mob) && !(istype(AM,/mob/living))) + return //do not send ghosts, zshadows, ai eyes, etc + spawn(0) + src.teleport(AM) + return + return + +/obj/structure/portal_event/attack_hand(mob/user as mob) + if(!istype(user)) + return + if(!target) + if(isliving(user)) + to_chat(user, "Your hand scatters \the [src]...") + qdel(src) //Delete portals which aren't set that people mess with. + else return //do not send ghosts, zshadows, ai eyes, etc + else if(isliving(user) || istype(user, /mob/observer/dead) && user?.client?.holder) //unless they're staff + spawn(0) + src.teleport(user) + +/obj/structure/portal_event/attack_ghost(var/mob/observer/dead/user) + if(!target && user?.client?.holder) + to_chat(user, "Selecting 'Portal Here' will create and link a portal at your location, while 'Target Here' will create an object that is only visible to ghosts which will act as the target, again at your location. Each option will give you the ability to change portal types, but for all options except 'Select Type' you only get one shot at it, so be sure to experiment with 'Select Type' first if you're not familiar with them.") + var/response = tgui_alert(user, "You appear to be staff. This portal has no exit point. If you want to make one, move to where you want it to go, and click the appropriate option, see chat for more info, otherwise click 'Cancel'", "Unbound Portal", list("Cancel","Portal Here","Target Here", "Select Type")) + if(response == "Portal Here") + target = new type(get_turf(user), src) + target.target = src + target.icon_state = icon_state + var/letsportal = tgui_alert(user, "Would you like to select a different portal type for these portals?", "Change portal", list("No","Yes")) + if(letsportal == "Yes") + var/portal_icon_selection = select_portal_subtype(user) + icon_state = portal_icon_selection + target.icon_state = portal_icon_selection + if(response == "Target Here") + var/obj/structure/portal_target/newtarg = new(get_turf(user)) + target = newtarg + newtarg.target = src + var/letsportal = tgui_alert(user, "Would you like to select a different portal type?", "Change portal", list("No","Yes")) + if(letsportal == "Yes") + user.forceMove(src) + icon_state = select_portal_subtype(user) + if(response == "Select Type") + icon_state = select_portal_subtype(user) + return + message_admins("The [src]([x],[y],[z]) was given [target]([target.x],[target.y],[target.z]) as a target, and should be ready to use.") + else if(user?.client?.holder) + src.teleport(user) + else return + +/obj/structure/portal_event/proc/select_portal_subtype(user) + var/portal_type = tgui_alert(user, "What kind of portal would you like it to be?", "Type Selection", list("Tech (Default)","Star","Weird Green","Pulsing")) + var/portal_icon_selection = "type-d-portal" + if(portal_type == "Tech (Default)") + portal_icon_selection = "type-d-portal" + if(portal_type == "Star") + var/portal_subtype = tgui_alert(user, "Which subtype would you prefer?", "Subtype Selection", list("Blue","Blue Pulse","Blue Unstable","Red","Red Unstable")) + if(portal_subtype == "Blue") + portal_icon_selection = "type-a-blue-portal" + if(portal_subtype == "Blue Pulse") + portal_icon_selection = "type-a-blue-portal-b" + if(portal_subtype == "Blue Unstable") + portal_icon_selection = "type-a-blue-portal-c" + if(portal_subtype == "Red") + portal_icon_selection = "type-a-red-portal" + if(portal_subtype == "Red Unstable") + portal_icon_selection = "type-a-red-portal-b" + if(portal_type == "Weird Green") + portal_icon_selection = "type-b-portal" + if(portal_type == "Pulsing") + var/portal_subtype = tgui_alert(user, "Which subtype would you prefer?", "Subtype Selection", list("Blue","Red","Blue/Red Mix", "Yellow")) + if(portal_subtype == "Blue") + portal_icon_selection = "type-c-blue-portal" + if(portal_subtype == "Red") + portal_icon_selection = "type-c-red-portal" + if(portal_subtype == "Blue/Red Mix") + portal_icon_selection = "type-c-mix-portal" + if(portal_subtype == "Yellow") + portal_icon_selection = "type-c-yellow-portal" + return portal_icon_selection + +/obj/structure/portal_event/proc/teleport(atom/movable/M as mob|obj) + if(istype(M, /obj/effect)) //sparks don't teleport + return + if (M.anchored&&istype(M, /obj/mecha)) + return + if (!target) + to_chat(M, "\The [src] scatters as you pass through it...") + qdel(src) + return + if (!istype(M, /atom/movable)) + return + var/turf/place + if(isturf(target)) + place = src + else + place = target.loc + var/portalfind = FALSE + for(var/obj/structure/S in place.contents) + if(istype(S, /obj/structure/portal_event)) + portalfind = TRUE + else if (S.density) + portalfind = TRUE + var/temptarg + if(portalfind) + var/possible_turfs = place.AdjacentTurfs() + if(isemptylist(possible_turfs)) + to_chat(M, "Something blocks your way.") + return + temptarg = pick(possible_turfs) + do_noeffect_teleport(M, temptarg, 0) + else if (istype(M, /atom/movable)) + do_noeffect_teleport(M, target, 0) + +/obj/structure/portal_event/Destroy() + if(target) + if(istype(target, /obj/structure/portal_event)) + var/obj/structure/portal_event/P = target + P.target = null + if(istype(target, /obj/structure/portal_target)) + var/obj/structure/portal_target/P = target + P.target = null + qdel_null(target) + . = ..() + +/obj/structure/portal_target + name = "portal destination" + desc = "you shouldn't see this unless you're a ghost" + icon = 'icons/obj/stationobjs_vr.dmi' + icon_state = "type-b-portal" + density = 0 + alpha = 100 + invisibility = INVISIBILITY_OBSERVER + var/target + +/obj/structure/portal_target/Destroy() + if(target) + var/obj/structure/portal_event/T = target + T.target = null + target = null + . = ..() + +/obj/structure/portal_gateway + name = "portal" + desc = "It leads to someplace else!" + icon = 'icons/obj/stationobjs_vr.dmi' + icon_state = "portalgateway" + density = TRUE + unacidable = TRUE//Can't destroy energy portals. + anchored = TRUE + +/obj/structure/portal_gateway/Bumped(mob/M as mob|obj) + if(istype(M,/mob) && !(istype(M,/mob/living))) + return //do not send ghosts, zshadows, ai eyes, etc + var/obj/effect/landmark/dest = pick(eventdestinations) + if(dest) + M << 'sound/effects/phasein.ogg' + playsound(src, 'sound/effects/phasein.ogg', 100, 1) + M.forceMove(dest.loc) + if(istype(M, /mob/living) && dest.abductor) + var/mob/living/L = M + //Situations to get the mob out of + if(L.buckled) + L.buckled.unbuckle_mob() + if(istype(L.loc,/obj/mecha)) + var/obj/mecha/ME = L.loc + ME.go_out() + else if(istype(L.loc,/obj/machinery/sleeper)) + var/obj/machinery/sleeper/SL = L.loc + SL.go_out() + else if(istype(L.loc,/obj/machinery/recharge_station)) + var/obj/machinery/recharge_station/RS = L.loc + RS.go_out() + if(!issilicon(L)) //Don't drop borg modules... + var/list/mob_contents = list() //Things which are actually drained as a result of the above not being null. + mob_contents |= L // The recursive check below does not add the object being checked to its list. + mob_contents |= recursive_content_check(L, mob_contents, recursion_limit = 3, client_check = 0, sight_check = 0, include_mobs = 1, include_objects = 1, ignore_show_messages = 1) + for(var/obj/item/weapon/holder/I in mob_contents) + var/obj/item/weapon/holder/H = I + var/mob/living/MI = H.held_mob + MI.forceMove(get_turf(H)) + if(!issilicon(MI)) //Don't drop borg modules... + for(var/obj/item/II in MI) + if(istype(II,/obj/item/weapon/implant) || istype(II,/obj/item/device/nif)) + continue + MI.drop_from_inventory(II, dest.loc) + var/obj/effect/landmark/finaldest = pick(awayabductors) + MI.forceMove(finaldest.loc) + sleep(1) + MI.Paralyse(10) + MI << 'sound/effects/bamf.ogg' + to_chat(MI,"You're starting to come to. You feel like you've been out for a few minutes, at least...") + for(var/obj/item/I in L) + if(istype(I,/obj/item/weapon/implant) || istype(I,/obj/item/device/nif)) + continue + L.drop_from_inventory(I, dest.loc) + var/obj/effect/landmark/finaldest = pick(awayabductors) + L.forceMove(finaldest.loc) + sleep(1) + L.Paralyse(10) + L << 'sound/effects/bamf.ogg' + to_chat(L,"You're starting to come to. You feel like you've been out for a few minutes, at least...") + return diff --git a/code/modules/multiz/stairs.dm b/code/modules/multiz/stairs.dm index 52b275a92f..59e6374895 100644 --- a/code/modules/multiz/stairs.dm +++ b/code/modules/multiz/stairs.dm @@ -18,13 +18,13 @@ // Returns TRUE if the stairs are a complete and connected unit, FALSE if a piece is missing or obstructed // Will attempt to reconnect broken pieces -// Parameters: +// Parameters: // - B1: Loc of bottom stair // - B2: Loc of middle stair // - T1: Openspace over bottom stair // - T2: Loc of top stair, over middle stair -/obj/structure/stairs/proc/check_integrity(var/obj/structure/stairs/bottom/B = null, - var/obj/structure/stairs/middle/M = null, +/obj/structure/stairs/proc/check_integrity(var/obj/structure/stairs/bottom/B = null, + var/obj/structure/stairs/middle/M = null, var/obj/structure/stairs/top/T = null, var/turf/simulated/open/O = null) @@ -91,14 +91,14 @@ var/obj/structure/stairs/middle/M = null, var/obj/structure/stairs/top/T = null, var/turf/simulated/open/O = null) - + // In the case where we're provided all the pieces, just try connecting them. // In order: all exist, they are appropriately adjacent, and they can connect if(istype(B) && istype(M) && istype(T) && istype(O) && \ B.Adjacent(M) && (GetBelow(O) == get_turf(B)) && T.Adjacent(O) && \ ..()) return TRUE - + // If we're already configured, just check those else if(istype(top) && istype(middle)) O = locate(/turf/simulated/open) in GetAbove(src) @@ -118,7 +118,7 @@ // If you set the dir, that's the dir it *wants* to connect in. It only chooses the others if that doesn't work // Everything is simply linked in our original direction - if(istype(M) && istype(T) && ..(src, M, T, O)) + if(istype(M) && istype(T) && ..(src, M, T, O)) return TRUE // Else, we have to look in other directions @@ -127,12 +127,12 @@ T2 = GetAbove(B2) if(!istype(B2) || !istype(T2)) continue - + T = locate(/obj/structure/stairs/top) in T2 M = locate(/obj/structure/stairs/middle) in B2 if(..(src, M, T, O)) return TRUE - + // Out of the dir check, we have no valid neighbors, and thus are not complete. return FALSE @@ -143,18 +143,20 @@ use_stairs(AM, oldloc) ..() -/obj/structure/stairs/bottom/use_stairs(var/atom/movable/AM, var/atom/oldloc) +/obj/structure/stairs/bottom/use_stairs(var/atom/movable/AM, var/atom/oldloc) // If we're coming from the top of the stairs, don't trap us in an infinite staircase // Or if we fell down the openspace if((top in oldloc) || oldloc == GetAbove(src)) return - + //VOREStation Addition Start + if(istype(AM, /obj/effect/plant)) + return + //VOREStation Addition End if(isobserver(AM)) // Ghosts have their own methods for going up and down return - if(AM.pulledby) // Animating the movement of pulled things is handled when the puller goes up the stairs return - + if(AM.has_buckled_mobs()) // Similarly, the rider entering the turf will bring along whatever they're buckled to return @@ -173,7 +175,7 @@ pulling |= L.pulling for(var/obj/item/weapon/grab/G in list(L.l_hand, L.r_hand)) pulling |= G.affecting - + // If the stairs aren't broken, go up. if(check_integrity()) AM.dir = src.dir @@ -185,7 +187,7 @@ // Move to Top AM.forceMove(get_turf(top)) - + // If something is being pulled, bring it along directly to avoid the mob being torn away from it due to movement delays for(var/atom/movable/P in pulling) P.forceMove(get_turf(top)) // Just bring it along directly, no fussing with animation timing @@ -199,19 +201,21 @@ /obj/structure/stairs/bottom/use_stairs_instant(var/atom/movable/AM) if(isobserver(AM)) // Ghosts have their own methods for going up and down return - + //VOREStation Addition Start + if(istype(AM, /obj/effect/plant)) + return + //VOREStation Addition End if(isliving(AM)) var/mob/living/L = AM - + if(L.grabbed_by.len) // Same as pulledby, whoever's holding you will keep you from going down stairs. return - - if(L.has_buckled_mobs()) - return if(L.buckled) L.buckled.forceMove(get_turf(top)) - + + L.forceMove(get_turf(top)) + // If the object is pulling or grabbing anything, we'll want to move those too. A grab chain may be disrupted in doing so. if(L.pulling && !L.pulling.anchored) var/atom/movable/P = L.pulling @@ -220,8 +224,7 @@ for(var/obj/item/weapon/grab/G in list(L.l_hand, L.r_hand)) G.affecting.forceMove(get_turf(top)) - L.forceMove(get_turf(top)) - + if(L.client) L.client.Process_Grab() else @@ -255,10 +258,10 @@ // These are necessarily fairly similar, but because the positional relations are different, we have to copy-pasta a fair bit /obj/structure/stairs/middle/check_integrity(var/obj/structure/stairs/bottom/B = null, - var/obj/structure/stairs/middle/M = null, + var/obj/structure/stairs/middle/M = null, var/obj/structure/stairs/top/T = null, var/turf/simulated/open/O = null) - + // In the case where we're provided all the pieces, just try connecting them. // In order: all exist, they are appropriately adjacent, and they can connect if(istype(B) && istype(M) && istype(T) && istype(O) && \ @@ -281,7 +284,7 @@ // Top is static for Middle stair, if it's invalid we can't do much if(!istype(T)) return FALSE - + // If you set the dir, that's the dir it *wants* to connect in. It only chooses the others if that doesn't work // Everything is simply linked in our original direction if(istype(B1) && istype(T2) && istype(O) && ..(B, src, T, O)) @@ -293,11 +296,11 @@ O = GetAbove(B1) if(!istype(B1) || !istype(O)) continue - + B = locate(/obj/structure/stairs/bottom) in B1 if(..(B, src, T, O)) return TRUE - + // The middle stair has some further special logic, in that it can be climbed, and so is technically valid if only the top exists // T is enforced by a prior if T.middle = src @@ -341,7 +344,7 @@ var/obj/structure/stairs/middle/M = null, var/obj/structure/stairs/top/T = null, var/turf/simulated/open/O = null) - + // In the case where we're provided all the pieces, just try connecting them. // In order: all exist, they are appropriately adjacent, and they can connect if(istype(B) && istype(M) && istype(T) && istype(O) && \ @@ -377,11 +380,11 @@ B1 = GetBelow(O) if(!istype(B1) || !istype(O)) continue - + B = locate(/obj/structure/stairs/bottom) in B1 if((. = ..(B, M, src, O))) return - + // Out of the dir check, we have no valid neighbors, and thus are not complete. `.` was set by ..() return @@ -394,7 +397,7 @@ /obj/structure/stairs/top/Uncrossed(var/atom/movable/AM) // Going down stairs from the topstair piece - if(AM.dir == turn(dir, 180) && check_integrity()) + if(AM.dir == turn(dir, 180) && isturf(AM.loc) && check_integrity()) use_stairs_instant(AM) return @@ -403,13 +406,15 @@ // Or if we climb up the middle if((bottom in oldloc) || oldloc == GetBelow(src)) return - + //VOREStation Addition Start + if(istype(AM, /obj/effect/plant)) + return + //VOREStation Addition End if(isobserver(AM)) // Ghosts have their own methods for going up and down return - if(AM.pulledby) // Animating the movement of pulled things is handled when the puller goes up the stairs return - + if(AM.has_buckled_mobs()) // Similarly, the rider entering the turf will bring along whatever they're buckled to return @@ -428,7 +433,7 @@ pulling |= L.pulling for(var/obj/item/weapon/grab/G in list(L.l_hand, L.r_hand)) pulling |= G.affecting - + // If the stairs aren't broken, go up. if(check_integrity()) AM.dir = turn(src.dir, 180) @@ -438,7 +443,7 @@ // Move to Top AM.forceMove(get_turf(bottom)) - + // If something is being pulled, bring it along directly to avoid the mob being torn away from it due to movement delays for(var/atom/movable/P in pulling) P.forceMove(get_turf(bottom)) // Just bring it along directly, no fussing with animation timing @@ -452,29 +457,32 @@ /obj/structure/stairs/top/use_stairs_instant(var/atom/movable/AM) if(isobserver(AM)) // Ghosts have their own methods for going up and down return - + //VOREStation Addition Start + if(istype(AM, /obj/effect/plant)) + return + //VOREStation Addition End if(isliving(AM)) var/mob/living/L = AM - if(L.grabbed_by.len) // Same as pulledby, whoever's holding you will keep you from going down stairs. return - - if(L.has_buckled_mobs()) - return if(L.buckled) L.buckled.forceMove(get_turf(bottom)) - - // If the object is pulling or grabbing anything, we'll want to move those too. A grab chain may be disrupted in doing so. + + var/atom/movable/P = null if(L.pulling && !L.pulling.anchored) - var/atom/movable/P = L.pulling + P = L.pulling + P.forceMove(get_turf(L)) + + L.forceMove(get_turf(bottom)) + + // If the object is pulling or grabbing anything, we'll want to move those too. A grab chain may be disrupted in doing so. + if(P) P.forceMove(get_turf(bottom)) L.start_pulling(P) for(var/obj/item/weapon/grab/G in list(L.l_hand, L.r_hand)) G.affecting.forceMove(get_turf(bottom)) - - L.forceMove(get_turf(bottom)) if(L.client) L.client.Process_Grab() @@ -493,14 +501,14 @@ var/turf/B2 = get_turf(src) var/turf/T1 = GetAbove(B1) var/turf/T2 = GetAbove(B2) - + if(!istype(B1) || !istype(B2)) warning("Stair created at invalid loc: ([loc.x], [loc.y], [loc.z])") return INITIALIZE_HINT_QDEL if(!istype(T1) || !istype(T2)) warning("Stair created without level above: ([loc.x], [loc.y], [loc.z])") return INITIALIZE_HINT_QDEL - + // Spawn the stairs // Railings sold separately var/turf/simulated/open/O = T1 @@ -516,7 +524,7 @@ B.check_integrity(B, M, T, O) return INITIALIZE_HINT_QDEL - + // For ease of spawning. While you *can* spawn the base type and set its dir, this is useful for adminbus and a little bit quicker to map in /obj/structure/stairs/spawner/north dir = NORTH diff --git a/code/modules/news/news_init.dm b/code/modules/news/news_init.dm index 2c78e4baf8..cc92668343 100644 --- a/code/modules/news/news_init.dm +++ b/code/modules/news/news_init.dm @@ -7,6 +7,7 @@ GLOBAL_DATUM_INIT(news_data, /datum/lore/news, new) /datum/lore/news var/datum/feed_channel/station_newspaper var/datum/lore/codex/category/main_news/news_codex = new() + var/newsindex /datum/lore/news/New() ..() @@ -17,6 +18,10 @@ GLOBAL_DATUM_INIT(news_data, /datum/lore/news, new) break spawn(300) // Yes, again. fill_codex_news() + if (!news_codex.newsindex) + return + else + newsindex = news_codex.newsindex /datum/lore/news/proc/fill_codex_news() if(!news_network) diff --git a/code/modules/nifsoft/nif.dm b/code/modules/nifsoft/nif.dm index edcb661dd1..fe6e1c4938 100644 --- a/code/modules/nifsoft/nif.dm +++ b/code/modules/nifsoft/nif.dm @@ -28,6 +28,7 @@ You can also set the stat of a NIF to NIF_TEMPFAIL without any issues to disable var/durability = 100 // Durability remaining var/bioadap = FALSE // If it'll work in fancy species + var/gib_nodrop = FALSE // NIF self-destructs when owner is gibbed var/tmp/power_usage = 0 // Nifsoft adds to this var/tmp/mob/living/carbon/human/human // Our owner! @@ -197,6 +198,9 @@ You can also set the stat of a NIF to NIF_TEMPFAIL without any issues to disable wear *= (rand(85,115) / 100) //Apparently rand() only takes integers. durability -= wear + if(human) + persist_nif_data(human) + if(durability <= 0) stat = NIF_TEMPFAIL update_icon() @@ -205,6 +209,13 @@ You can also set the stat of a NIF to NIF_TEMPFAIL without any issues to disable notify("Danger! General system insta#^!($",TRUE) to_chat(human,"Your NIF vision overlays disappear and your head suddenly seems very quiet...") +//Repair update/check proc +/obj/item/device/nif/proc/repair(var/repair = 0) + durability = min(durability + repair, initial(durability)) + + if(human) + persist_nif_data(human) + //Attackby proc, for maintenance /obj/item/device/nif/attackby(obj/item/weapon/W, mob/user as mob) if(open == 0 && W.is_screwdriver()) @@ -233,7 +244,7 @@ You can also set the stat of a NIF to NIF_TEMPFAIL without any issues to disable user.visible_message("[user] closes up \the [src].","You re-seal \the [src] for use once more.") playsound(src, 'sound/items/Screwdriver.ogg', 50, 1) open = FALSE - durability = initial(durability) + repair(initial(durability)) stat = NIF_PREINSTALL update_icon() @@ -258,7 +269,7 @@ You can also set the stat of a NIF to NIF_TEMPFAIL without any issues to disable /obj/item/device/nif/proc/handle_install() if(human.stat || !human.mind) //No stuff while KO or not sleeved return FALSE - + persist_storable = FALSE //VOREStation edit - I am not sure if polaris has nifs, but just in case. //Firsties if(!install_done) if(human.mind.name == owner) @@ -608,6 +619,13 @@ You can also set the stat of a NIF to NIF_TEMPFAIL without any issues to disable durability = 75 bioadap = TRUE +/obj/item/device/nif/protean // Proteans' integrated NIF + name = "protean integrated NIF" + desc = "A NIF that is part of a protean's body structure. Where did you get that anyway?" + durability = 25 + bioadap = TRUE + gib_nodrop = TRUE + //////////////////////////////// // Special Promethean """surgery""" /obj/item/device/nif/attack(mob/living/M, mob/living/user, var/target_zone) diff --git a/code/modules/nifsoft/nifsoft.dm b/code/modules/nifsoft/nifsoft.dm index 951e293218..ef628a9bac 100644 --- a/code/modules/nifsoft/nifsoft.dm +++ b/code/modules/nifsoft/nifsoft.dm @@ -264,7 +264,7 @@ /obj/item/weapon/storage/box/nifsofts_security name = "security nifsoft uploaders" desc = "A box of free nifsofts for security employees." - icon = 'icons/obj/storage_vr.dmi' + icon = 'icons/obj/boxes.dmi' icon_state = "nifsoft_kit_sec" /obj/item/weapon/storage/box/nifsofts_security/New() @@ -289,7 +289,7 @@ /obj/item/weapon/storage/box/nifsofts_engineering name = "engineering nifsoft uploaders" desc = "A box of free nifsofts for engineering employees." - icon = 'icons/obj/storage_vr.dmi' + icon = 'icons/obj/boxes.dmi' icon_state = "nifsoft_kit_eng" /obj/item/weapon/storage/box/nifsofts_engineering/New() @@ -313,7 +313,7 @@ /obj/item/weapon/storage/box/nifsofts_medical name = "medical nifsoft uploaders" desc = "A box of free nifsofts for medical employees." - icon = 'icons/obj/storage_vr.dmi' + icon = 'icons/obj/boxes.dmi' icon_state = "nifsoft_kit_med" /obj/item/weapon/storage/box/nifsofts_medical/New() @@ -338,7 +338,7 @@ /obj/item/weapon/storage/box/nifsofts_mining name = "mining nifsoft uploaders" desc = "A box of free nifsofts for mining employees." - icon = 'icons/obj/storage_vr.dmi' + icon = 'icons/obj/boxes.dmi' icon_state = "nifsoft_kit_mining" /obj/item/weapon/storage/box/nifsofts_mining/New() diff --git a/code/modules/organs/subtypes/tajaran.dm b/code/modules/organs/subtypes/tajaran.dm new file mode 100644 index 0000000000..c46dde783b --- /dev/null +++ b/code/modules/organs/subtypes/tajaran.dm @@ -0,0 +1,7 @@ +/obj/item/organ/internal/eyes/tajaran + icon_state = "tajaran_eyes" + +/obj/item/organ/internal/heart/tajaran + icon_state = "tajaran_heart-on" + dead_icon = "tajaran_heart-off" + diff --git a/code/modules/overmap/OM_sound.dm b/code/modules/overmap/OM_sound.dm new file mode 100644 index 0000000000..c1fc58cfe2 --- /dev/null +++ b/code/modules/overmap/OM_sound.dm @@ -0,0 +1,6 @@ +/obj/effect/overmap/visitable/sector/Crossed(var/obj/effect/overmap/visitable/ship/enterer) + . = ..() + if(istype(enterer)) + for(var/mob/potential_mob as anything in player_list) + if(potential_mob.z in enterer.map_z) + SEND_SOUND(potential_mob, 'sound/ambience/approaching_planet.ogg') diff --git a/code/modules/overmap/overmap_object.dm b/code/modules/overmap/overmap_object.dm index ad5bf60dd2..ad87d50e8b 100644 --- a/code/modules/overmap/overmap_object.dm +++ b/code/modules/overmap/overmap_object.dm @@ -23,7 +23,7 @@ /// For showing to the pilot of the ship, so they see the 'real' appearance, despite others seeing the unknown ones var/image/real_appearance - light_system = MOVABLE_LIGHT + //light_system = MOVABLE_LIGHT light_on = FALSE /obj/effect/overmap/Initialize() diff --git a/code/modules/overmap/sectors.dm b/code/modules/overmap/sectors.dm index 3e729a4e28..e6624de848 100644 --- a/code/modules/overmap/sectors.dm +++ b/code/modules/overmap/sectors.dm @@ -53,7 +53,8 @@ forceMove(locate(start_x, start_y, global.using_map.overmap_z)) - docking_codes = "[ascii2text(rand(65,90))][ascii2text(rand(65,90))][ascii2text(rand(65,90))][ascii2text(rand(65,90))]" + if(!docking_codes) + docking_codes = "[ascii2text(rand(65,90))][ascii2text(rand(65,90))][ascii2text(rand(65,90))][ascii2text(rand(65,90))]" testing("Located sector \"[name]\" at [start_x],[start_y], containing Z [english_list(map_z)]") diff --git a/code/modules/overmap/ships/computers/sensors.dm b/code/modules/overmap/ships/computers/sensors.dm index 9a1c0fb115..e09678f9b0 100644 --- a/code/modules/overmap/ships/computers/sensors.dm +++ b/code/modules/overmap/ships/computers/sensors.dm @@ -66,7 +66,7 @@ else data["status"] = "OK" var/list/contacts = list() - for(var/obj/effect/overmap/O in view(7,linked)) + for(var/obj/effect/overmap/O in range(7,linked)) if(linked == O) continue if(!O.scannable) @@ -125,10 +125,9 @@ return if(sensors && sensors.use_power && sensors.powered()) var/sensor_range = round(sensors.range*1.5) + 1 - linked.set_light_range(sensor_range + 0.5) - linked.set_light_on(TRUE) + linked.set_light(sensor_range + 0.5) else - linked.set_light_on(FALSE) + linked.set_light(0) /obj/machinery/shipsensors name = "sensors suite" diff --git a/code/modules/overmap/ships/panicbutton.dm b/code/modules/overmap/ships/panicbutton.dm index dcbcbf500f..aa55ab8ad5 100644 --- a/code/modules/overmap/ships/panicbutton.dm +++ b/code/modules/overmap/ships/panicbutton.dm @@ -9,6 +9,9 @@ var/glass = TRUE var/launched = FALSE +/obj/structure/panic_button/small + icon_state = "smallpanicbutton" + // In case we're annihilated by a meteor /obj/structure/panic_button/Destroy() if(!launched) @@ -26,10 +29,10 @@ /obj/structure/panic_button/attack_hand(mob/living/user) if(!istype(user)) return ..() - + if(user.incapacitated()) return - + // Already launched if(launched) to_chat(user, "The button is already depressed; the beacon has been launched already.") @@ -61,10 +64,10 @@ S.distress(user) //Kind of pricey, but this is a one-time thing that can't be reused, so I'm not too worried. var/list/hear_z = GetConnectedZlevels(z) // multiz 'physical' connections only, not crazy overmap connections - + var/mapsize = (world.maxx+world.maxy)*0.5 var/turf/us = get_turf(src) - + for(var/hz in hear_z) for(var/mob/M as anything in GLOB.players_by_zlevel[hz]) var/sound/SND = sound('sound/misc/emergency_beacon_launched.ogg') // Inside the loop because playsound_local modifies it for each person, so, need separate instances diff --git a/code/modules/overmap/ships/ship.dm b/code/modules/overmap/ships/ship.dm index e048805738..9252358757 100644 --- a/code/modules/overmap/ships/ship.dm +++ b/code/modules/overmap/ships/ship.dm @@ -40,6 +40,9 @@ var/halted = 0 //admin halt or other stop. var/skill_needed = SKILL_ADEPT //piloting skill needed to steer it without going in random dir var/operator_skill + //VOREStation add + var/last_sound = 0 //The last time a ship sound was played //VOREStation add + var/sound_cooldown = 10 SECONDS //VOREStation add /// Vis contents overlay holding the ship's vector when in motion var/obj/effect/overlay/vis/vector @@ -124,17 +127,37 @@ CHANGE_SPEED_BY(speed[2], n_y) update_icon() var/still = is_still() + // If nothing changed if(still == old_still) return + // If it is now still, stopped moving else if(still) STOP_PROCESSING(SSprocessing, src) for(var/zz in map_z) toggle_move_stars(zz) + if(last_sound + sound_cooldown >= world.time) + return + //VOREStation Add Start + last_sound = world.time + for(var/mob/potential_mob as anything in player_list) + if(potential_mob.z in map_z) + SEND_SOUND(potential_mob, 'sound/ambience/shutdown.ogg') + //VOREStation Add End + + // If it started moving else START_PROCESSING(SSprocessing, src) glide_size = WORLD_ICON_SIZE/max(DS2TICKS(SSprocessing.wait), 1) //Down to whatever decimal for(var/zz in map_z) toggle_move_stars(zz, fore_dir) + if(last_sound + sound_cooldown >= world.time) + return + //VOREStation Add Start + last_sound = world.time + for(var/mob/potential_mob as anything in player_list) + if(potential_mob.z in map_z) + SEND_SOUND(potential_mob, 'sound/ambience/startup.ogg') + //VOREStation Add End /obj/effect/overmap/visitable/ship/proc/get_brake_path() if(!get_acceleration()) diff --git a/code/modules/overmap/spacetravel.dm b/code/modules/overmap/spacetravel.dm index 02ab02b3a2..ae1bca7335 100644 --- a/code/modules/overmap/spacetravel.dm +++ b/code/modules/overmap/spacetravel.dm @@ -5,14 +5,16 @@ known = FALSE in_space = TRUE -/obj/effect/overmap/visitable/sector/temporary/New(var/nx, var/ny) - loc = locate(nx, ny, global.using_map.overmap_z) - x = nx - y = ny - var/emptyz = global.using_map.get_empty_zlevel() - map_z += emptyz - map_sectors["[emptyz]"] = src - testing("Temporary sector at [x],[y] was created, corresponding zlevel is [emptyz].") +/obj/effect/overmap/visitable/sector/temporary/Initialize() + if(!istype(loc, /turf/unsimulated/map)) + CRASH("Attempt to create deepspace which is not on overmap: [log_info_line(loc)]") + // Tell sector initializer where are is where we want to be. + start_x = loc.x + start_y = loc.y + // But pick an empty z level to use + map_z += global.using_map.get_empty_zlevel() + . = ..() + testing("Temporary sector at [x],[y],[z] was created, corresponding zlevel is [english_list(map_z)].") /obj/effect/overmap/visitable/sector/temporary/Destroy() for(var/zlevel in map_z) @@ -20,16 +22,19 @@ testing("Temporary sector at [x],[y] was destroyed, returning empty zlevel [map_z[1]] to map datum.") return ..() -/obj/effect/overmap/visitable/sector/temporary/proc/can_die(var/mob/observer) - testing("Checking if sector at [map_z[1]] can die.") +/obj/effect/overmap/visitable/sector/temporary/proc/is_empty(var/mob/observer) + if(!LAZYLEN(map_z)) + log_and_message_admins("CANARY: [src] tried to check is_empty, but map_z is `[map_z || "null"]`") + return TRUE + testing("Checking if sector at [map_z[1]] has no players.") for(var/mob/M in global.player_list) if(M != observer && (M.z in map_z)) testing("There are people on it.") - return 0 - return 1 + return FALSE + return TRUE /obj/effect/overmap/visitable/sector/temporary/cleanup() - if(can_die()) + if(is_empty()) qdel(src) /proc/get_deepspace(x,y) @@ -39,7 +44,7 @@ var/obj/effect/overmap/visitable/sector/temporary/res = locate() in overmap_turf if(istype(res)) return res - return new /obj/effect/overmap/visitable/sector/temporary(x, y) + return new /obj/effect/overmap/visitable/sector/temporary(overmap_turf) /atom/movable/proc/lost_in_space() for(var/atom/movable/AM in contents) @@ -129,6 +134,8 @@ TM = get_deepspace(M.x,M.y) nz = pick(TM.get_space_zlevels()) + testing("spacetravel chose [nz],[ny],[nz] in sector [TM] @ ([TM.x],[TM.y],[TM.z])") + var/turf/dest = locate(nx,ny,nz) if(istype(dest)) A.forceMove(dest) diff --git a/code/modules/paperwork/paper.dm b/code/modules/paperwork/paper.dm index 95bcda3b36..0b4b0ed3c0 100644 --- a/code/modules/paperwork/paper.dm +++ b/code/modules/paperwork/paper.dm @@ -324,6 +324,7 @@ t = replacetext(t, "\[/u\]", "") t = replacetext(t, "\[time\]", "[stationtime2text()]") t = replacetext(t, "\[date\]", "[stationdate2text()]") + t = replacetext(t, "\[station\]", "[station_name()]") t = replacetext(t, "\[large\]", "") t = replacetext(t, "\[/large\]", "") if(findtext(t, "\[sign\]")) @@ -580,11 +581,20 @@ return else if(istype(P, /obj/item/weapon/stamp) || istype(P, /obj/item/clothing/gloves/ring/seal)) + if(istype(P, /obj/item/weapon/stamp)) + var/obj/item/weapon/stamp/the_stamp = P + if(the_stamp.stamptext) + stamps += (stamps=="" ? "
" : "
") + "[the_stamp.stamptext]" + else + stamps += (stamps=="" ? "
" : "
") + "This paper has been stamped with the [the_stamp.name]." + else + var/obj/item/clothing/gloves/ring/seal/the_stamp = P + if(the_stamp.stamptext) + stamps += (stamps=="" ? "
" : "
") + "[the_stamp.stamptext]" + else + stamps += (stamps=="" ? "
" : "
") + "This paper has been stamped with the [the_stamp.name]." if((!in_range(src, usr) && loc != user && !( istype(loc, /obj/item/weapon/clipboard) ) && loc.loc != user && user.get_active_hand() != P)) return - - stamps += (stamps=="" ? "
" : "
") + "This paper has been stamped with the [P.name]." - var/image/stampoverlay = image('icons/obj/bureaucracy.dmi') var/x, y if(istype(P, /obj/item/weapon/stamp/captain) || istype(P, /obj/item/weapon/stamp/centcomm)) diff --git a/code/modules/paperwork/pen.dm b/code/modules/paperwork/pen.dm index 8a4705fe67..c2a07f099d 100644 --- a/code/modules/paperwork/pen.dm +++ b/code/modules/paperwork/pen.dm @@ -304,11 +304,6 @@ drop_sound = 'sound/items/drop/gloves.ogg' pickup_sound = 'sound/items/pickup/gloves.ogg' -/obj/item/weapon/pen/crayon/suicide_act(mob/user) - var/datum/gender/TU = gender_datums[user.get_visible_gender()] - to_chat(viewers(user),"[user] is jamming the [src.name] up [TU.his] nose and into [TU.his] brain. It looks like [TU.he] [TU.is] trying to commit suicide.") - return (BRUTELOSS|OXYLOSS) - /obj/item/weapon/pen/crayon/New() name = "[colourName] crayon" diff --git a/code/modules/paperwork/stamps.dm b/code/modules/paperwork/stamps.dm index be60632186..c2d610f355 100644 --- a/code/modules/paperwork/stamps.dm +++ b/code/modules/paperwork/stamps.dm @@ -14,6 +14,7 @@ attack_verb = list("stamped") drop_sound = 'sound/items/drop/device.ogg' pickup_sound = 'sound/items/pickup/device.ogg' + var/stamptext = null /obj/item/weapon/stamp/captain name = "site manager's rubber stamp" diff --git a/code/modules/persistence/datum/persistence_datum.dm b/code/modules/persistence/datum/persistence_datum.dm index 325ff15ced..14d813406d 100644 --- a/code/modules/persistence/datum/persistence_datum.dm +++ b/code/modules/persistence/datum/persistence_datum.dm @@ -71,7 +71,7 @@ return var/_z = token["z"] - if(_z in using_map.station_levels) + if(_z in using_map.persist_levels) . = GetValidTurf(locate(token["x"], token["y"], _z), token) if(.) CreateEntryInstance(., token) @@ -82,7 +82,7 @@ if(GetEntryAge(entry) >= entries_expire_at) return FALSE var/turf/T = get_turf(entry) - if(!T || !(T.z in using_map.station_levels) ) + if(!T || !(T.z in using_map.persist_levels) ) return FALSE var/area/A = get_area(T) if(!A || (A.flags & AREA_FLAG_IS_NOT_PERSISTENT)) @@ -104,7 +104,7 @@ /datum/persistent/proc/Shutdown() if(fexists(filename)) fdel(filename) - + var/list/to_store = list() for(var/thing in SSpersistence.tracking_values[type]) if(!IsValidEntry(thing)) @@ -121,10 +121,10 @@ var/list/my_tracks = SSpersistence.tracking_values[type] if(!my_tracks?.len) return - + . = list("[capitalize(name)]") . += "
" - + for(var/thing in my_tracks) . += "[GetAdminDataStringFor(thing, can_modify, user)]" . += "
" diff --git a/code/modules/persistence/effects/trash.dm b/code/modules/persistence/effects/trash.dm index 951e9858af..3eaa121711 100644 --- a/code/modules/persistence/effects/trash.dm +++ b/code/modules/persistence/effects/trash.dm @@ -4,6 +4,10 @@ /datum/persistent/filth/trash/CheckTurfContents(var/turf/T, var/list/tokens) var/too_much_trash = 0 for(var/obj/item/trash/trash in T) + //VOREStation Addition Start + if(istype(T, /obj/item/trash/spitwad) || istype(T, /obj/item/trash/spitgum)) + return FALSE + //VOREStation Addition End too_much_trash++ if(too_much_trash >= 5) return FALSE diff --git a/code/modules/persistence/graffiti.dm b/code/modules/persistence/graffiti.dm index fefc73c199..cbd2fe01a9 100644 --- a/code/modules/persistence/graffiti.dm +++ b/code/modules/persistence/graffiti.dm @@ -40,7 +40,7 @@ /obj/effect/decal/writing/examine(mob/user) . = ..() - to_chat(user, "It reads \"[message]\".") + . += "\n It reads \"[message]\"." /obj/effect/decal/writing/attackby(var/obj/item/thing, var/mob/user) if(istype(thing, /obj/item/weapon/weldingtool)) diff --git a/code/modules/persistence/storage/smartfridge.dm b/code/modules/persistence/storage/smartfridge.dm index 3962262154..a47099f328 100644 --- a/code/modules/persistence/storage/smartfridge.dm +++ b/code/modules/persistence/storage/smartfridge.dm @@ -52,13 +52,12 @@ // Delete some stacks if we want if(stacks_go_missing) var/fuzzy = rand(55,65)*0.01 // loss of 35-45% with rounding down - count = round(count*fuzzy) + count = round(count*fuzzy) if(count <= 0) continue - - while(count > 0) - inst = new real_path - inst.amount = min(count, max_amount) + + while(count > 0) + inst = new real_path(null, min(count, max_amount)) count -= inst.get_amount() . += inst @@ -73,6 +72,16 @@ name = "fruit storage lossy" go_missing_chance = 12.5 // 10% loss between rounds +/datum/persistent/storage/smartfridge/produce/generate_items(var/list/L) // Mostly same as storage/generate_items() but without converting string to path + . = list() + for(var/fruit_type in L) + for(var/i in 1 to L[fruit_type]) + if(prob(go_missing_chance)) + continue + var/atom/A = create_item(fruit_type) + if(!QDELETED(A)) + . += A + /datum/persistent/storage/smartfridge/produce/create_item(var/seedtype) return new /obj/item/weapon/reagent_containers/food/snacks/grown(null, seedtype) // Smartfridge will be stock()ed with it, loc is unimportant diff --git a/code/modules/planet/sif.dm b/code/modules/planet/sif.dm index e09b808a3a..d86f2ce82f 100644 --- a/code/modules/planet/sif.dm +++ b/code/modules/planet/sif.dm @@ -334,7 +334,7 @@ var/datum/planet/sif/planet_sif = null "A bright flash heralds the approach of a storm." ) outdoor_sounds_type = /datum/looping_sound/weather/rain/heavy - indoor_sounds_type = /datum/looping_sound/weather/rain/heavy/indoors + indoor_sounds_type = /datum/looping_sound/weather/rain/indoors/heavy transition_chances = list( diff --git a/code/modules/power/apc.dm b/code/modules/power/apc.dm index 35056b6612..6d5eabaed1 100644 --- a/code/modules/power/apc.dm +++ b/code/modules/power/apc.dm @@ -559,7 +559,7 @@ GLOBAL_LIST_EMPTY(apcs) "You start adding cables to the APC frame...") playsound(src, 'sound/items/Deconstruct.ogg', 50, 1) if(do_after(user, 20)) - if(C.amount >= 10 && !terminal && opened && has_electronics != APC_HAS_ELECTRONICS_SECURED) + if(C.get_amount() >= 10 && !terminal && opened && has_electronics != APC_HAS_ELECTRONICS_SECURED) var/obj/structure/cable/N = T.get_cable_node() if(prob(50) && electrocute_mob(usr, N, N)) var/datum/effect/effect/system/spark_spread/s = new /datum/effect/effect/system/spark_spread diff --git a/code/modules/power/cable.dm b/code/modules/power/cable.dm index 7e6f5d13d3..a4efe1336c 100644 --- a/code/modules/power/cable.dm +++ b/code/modules/power/cable.dm @@ -522,14 +522,6 @@ var/list/possible_cable_coil_colours = list( uses_charge = 1 charge_costs = list(1) -/obj/item/stack/cable_coil/suicide_act(mob/user) - var/datum/gender/TU = gender_datums[user.get_visible_gender()] - if(locate(/obj/item/weapon/stool) in user.loc) - user.visible_message("[user] is making a noose with the [src.name]! It looks like [TU.he] [TU.is] trying to commit suicide.") - else - user.visible_message("[user] is strangling [TU.himself] with the [src.name]! It looks like [TU.he] [TU.is] trying to commit suicide.") - return(OXYLOSS) - /obj/item/stack/cable_coil/New(loc, length = MAXCOIL, var/param_color = null) ..() src.amount = length diff --git a/code/modules/power/cell.dm b/code/modules/power/cell.dm index aa37003520..4ec2d0a5e2 100644 --- a/code/modules/power/cell.dm +++ b/code/modules/power/cell.dm @@ -14,6 +14,8 @@ throw_speed = 3 throw_range = 5 w_class = ITEMSIZE_NORMAL + /// Are we EMP immune? + var/emp_proof = FALSE var/static/cell_uid = 1 // Unique ID of this power cell. Used to reduce bunch of uglier code in nanoUI. var/c_uid var/charge = 0 // note %age conveted to actual charge in New @@ -189,6 +191,8 @@ rigged = 1 //broken batterys are dangerous /obj/item/weapon/cell/emp_act(severity) + if(emp_proof) + return //remove this once emp changes on dev are merged in if(isrobot(loc)) var/mob/living/silicon/robot/R = loc @@ -248,9 +252,4 @@ if (1000 to 50000-1) return min(rand(10,20),rand(10,20)) else - return 0 - -/obj/item/weapon/cell/suicide_act(mob/user) - var/datum/gender/TU = gender_datums[user.get_visible_gender()] - to_chat(viewers(user),"\The [user] is licking the electrodes of \the [src]! It looks like [TU.he] [TU.is] trying to commit suicide.") - return (FIRELOSS) \ No newline at end of file + return 0 \ No newline at end of file diff --git a/code/modules/power/cells/device_cells.dm b/code/modules/power/cells/device_cells.dm index 3b6e71e2ed..b18b7b415c 100644 --- a/code/modules/power/cells/device_cells.dm +++ b/code/modules/power/cells/device_cells.dm @@ -25,6 +25,9 @@ charge = 0 update_icon() +/obj/item/weapon/cell/device/weapon/empproof + emp_proof = TRUE + /obj/item/weapon/cell/device/weapon/recharge name = "self-charging weapon power cell" desc = "A small power cell designed to power handheld weaponry. This one recharges itself." diff --git a/code/modules/power/port_gen.dm b/code/modules/power/port_gen.dm index abf536f651..d5993805da 100644 --- a/code/modules/power/port_gen.dm +++ b/code/modules/power/port_gen.dm @@ -163,10 +163,8 @@ //Removes one stack's worth of material from the generator. /obj/machinery/power/port_gen/pacman/DropFuel() if(sheets) - var/obj/item/stack/material/S = new sheet_path(loc) - var/amount = min(sheets, S.max_amount) - S.amount = amount - sheets -= amount + var/obj/item/stack/material/S = new sheet_path(loc, sheets) + sheets -= S.get_amount() /obj/machinery/power/port_gen/pacman/UseFuel() @@ -265,7 +263,7 @@ /obj/machinery/power/port_gen/pacman/attackby(var/obj/item/O as obj, var/mob/user as mob) if(istype(O, sheet_path)) var/obj/item/stack/addstack = O - var/amount = min((max_sheets - sheets), addstack.amount) + var/amount = min((max_sheets - sheets), addstack.get_amount()) if(amount < 1) to_chat(user, "The [src.name] is full!") return diff --git a/code/modules/power/singularity/act.dm b/code/modules/power/singularity/act.dm index 9c3a5b8621..1f490e8aa2 100644 --- a/code/modules/power/singularity/act.dm +++ b/code/modules/power/singularity/act.dm @@ -18,7 +18,7 @@ /mob/living/carbon/human/singularity_act() var/gain = 20 if(mind) - if((mind.assigned_role == "Station Engineer") || (mind.assigned_role == "Chief Engineer")) + if((mind.assigned_role == "Engineer") || (mind.assigned_role == "Chief Engineer")) gain = 100 if(mind.assigned_role == USELESS_JOB) //VOREStation Edit - Visitor not Assistant gain = rand(0, 300) diff --git a/code/modules/power/singularity/emitter.dm b/code/modules/power/singularity/emitter.dm index 829f07ce37..3dd58f6d7d 100644 --- a/code/modules/power/singularity/emitter.dm +++ b/code/modules/power/singularity/emitter.dm @@ -216,7 +216,7 @@ to_chat(user, "\The [src] is already fully repaired.") return var/obj/item/stack/P = W - if(P.amount < amt) + if(!P.can_use(amt)) to_chat(user, "You don't have enough sheets to repair this! You need at least [amt] sheets.") return to_chat(user, "You begin repairing \the [src]...") diff --git a/code/modules/power/singularity/particle_accelerator/particle_smasher.dm b/code/modules/power/singularity/particle_accelerator/particle_smasher.dm index 938f9b6934..77c0858606 100644 --- a/code/modules/power/singularity/particle_accelerator/particle_smasher.dm +++ b/code/modules/power/singularity/particle_accelerator/particle_smasher.dm @@ -2,6 +2,9 @@ * Contains the particle smasher and its recipes. */ +#define PS_RESULT_STACK "stack" +#define PS_RESULT_ITEM "item" + /obj/machinery/particle_smasher name = "Particle Focus" desc = "A strange device used to create exotic matter." @@ -190,7 +193,7 @@ var/max_prob = 0 for(var/datum/particle_smasher_recipe/R in recipes) // Only things for the smasher. Don't get things like the chef's cake recipes. if(R.probability) // It's actually a recipe you're supposed to be able to make. - if(istype(target, R.required_material)) + if(!(R.required_material) || istype(target, R.required_material)) if(energy >= R.required_energy_min && energy <= R.required_energy_max) // The machine has enough Vaguely Defined 'Energy'. var/turf/T = get_turf(src) var/datum/gas_mixture/environment = T.return_air() @@ -234,8 +237,11 @@ break var/result = recipe.result - var/obj/item/stack/material/M = new result(src) - target = M + if(recipe.recipe_type == PS_RESULT_STACK) + var/obj/item/stack/material/M = new result(src) + target = M + else if(recipe.recipe_type == PS_RESULT_ITEM) + new result(get_turf(src)) update_icon() /obj/machinery/particle_smasher/verb/eject_contents() @@ -266,6 +272,7 @@ /datum/particle_smasher_recipe var/list/reagents // example: = list("pacid" = 5) var/list/items // example: = list(/obj/item/weapon/tool/crowbar, /obj/item/weapon/welder) Place /foo/bar before /foo. Do not include fruit. Maximum of 3 items. + var/recipe_type = PS_RESULT_STACK // Are we producing a stack or an item? var/result = /obj/item/stack/material/iron // The sheet this will produce. var/required_material = /obj/item/stack/material/iron // The required material sheet. @@ -378,4 +385,35 @@ required_atmos_temp_min = 3000 required_atmos_temp_max = 10000 - probability = 1 \ No newline at end of file + probability = 1 + +/datum/particle_smasher_recipe/donkpockets_coal + items = list(/obj/item/weapon/reagent_containers/food/snacks/donkpocket) + + recipe_type = PS_RESULT_ITEM + + result = /obj/item/weapon/ore/coal + required_material = null + + required_energy_min = 1 + required_energy_max = 500 + + required_atmos_temp_min = 400 + required_atmos_temp_max = 20000 + probability = 90 + +/datum/particle_smasher_recipe/donkpockets_ascend + items = list(/obj/item/weapon/reagent_containers/food/snacks/donkpocket) + reagents = list("phoron" = 120) + + recipe_type = PS_RESULT_ITEM + + result = /obj/item/weapon/reagent_containers/food/snacks/donkpocket/ascended + required_material = /obj/item/stack/material/uranium + + required_energy_min = 501 + required_energy_max = 700 + + required_atmos_temp_min = 400 + required_atmos_temp_max = 20000 + probability = 20 \ No newline at end of file diff --git a/code/modules/power/smes_construction.dm b/code/modules/power/smes_construction.dm index dae8941e8c..b346e59d94 100644 --- a/code/modules/power/smes_construction.dm +++ b/code/modules/power/smes_construction.dm @@ -139,6 +139,9 @@ if(panel_open) wires.Interact(usr) +/obj/machinery/power/smes/buildable/RefreshParts() + recalc_coils() + // Proc: recalc_coils() // Parameters: None // Description: Updates properties (IO, capacity, etc.) of this SMES by checking internal components. diff --git a/code/modules/power/solar.dm b/code/modules/power/solar.dm index f07b68f763..ac6748fb23 100644 --- a/code/modules/power/solar.dm +++ b/code/modules/power/solar.dm @@ -63,8 +63,7 @@ GLOBAL_LIST_EMPTY(solars_list) if(do_after(user, 50)) var/obj/item/solar_assembly/S = new(loc) S.anchored = TRUE - var/obj/item/stack/glass = new glass_type(loc) - glass.amount = 2 + new glass_type(loc, 2) playsound(src, 'sound/items/Deconstruct.ogg', 50, 1) user.visible_message("[user] takes the glass off the solar panel.") qdel(src) diff --git a/code/modules/power/tracker.dm b/code/modules/power/tracker.dm index 299d4de823..d6f4603865 100644 --- a/code/modules/power/tracker.dm +++ b/code/modules/power/tracker.dm @@ -58,8 +58,7 @@ var/obj/item/solar_assembly/S = new(loc) S.tracker = TRUE S.anchored = TRUE - var/obj/item/stack/glass = new glass_type(loc) - glass.amount = 2 + new glass_type(loc, 2) playsound(src, 'sound/items/Deconstruct.ogg', 50, 1) user.visible_message("[user] takes the glass off the tracker.") qdel(src) diff --git a/code/modules/projectiles/ammunition.dm b/code/modules/projectiles/ammunition.dm index 67524ac86c..46736474b7 100644 --- a/code/modules/projectiles/ammunition.dm +++ b/code/modules/projectiles/ammunition.dm @@ -246,3 +246,39 @@ magazine_icondata_keys[M.type] = icon_keys magazine_icondata_states[M.type] = ammo_states +/* + * Ammo Boxes + */ + +/obj/item/ammo_magazine/ammo_box + name = "ammo box" + desc = "A box that holds some kind of ammo." + icon = 'icons/obj/ammo_boxes.dmi' + icon_state = "pistol" + slot_flags = null //You can't fit a box on your belt + item_state = "paper" + matter = null + throwforce = 3 + throw_speed = 5 + throw_range = 12 + preserve_item = 1 + caliber = ".357" + drop_sound = 'sound/items/drop/matchbox.ogg' + pickup_sound = 'sound/items/pickup/matchbox.ogg' + +/obj/item/ammo_magazine/ammo_box/AltClick(mob/user) + if(can_remove_ammo) + if(isliving(user) && Adjacent(user)) + if(stored_ammo.len) + var/obj/item/ammo_casing/C = stored_ammo[stored_ammo.len] + stored_ammo-=C + user.put_in_hands(C) + user.visible_message("\The [user] removes \a [C] from [src].", "You remove \a [C] from [src].") + update_icon() + return + ..() + +/obj/item/ammo_magazine/ammo_box/examine(mob/user) + . = ..() + + . += to_chat(usr, "Alt-click to extract contents") \ No newline at end of file diff --git a/code/modules/projectiles/ammunition/ammo_boxes.dm b/code/modules/projectiles/ammunition/ammo_boxes.dm new file mode 100644 index 0000000000..332b634a0f --- /dev/null +++ b/code/modules/projectiles/ammunition/ammo_boxes.dm @@ -0,0 +1,58 @@ +/************************************************************************/ +/* +# An explaination of the naming format for guns and ammo: +# +# a = Ammo, as in individual rounds of ammunition. +# b = Box, intended to have ammo taken out one at a time by hand. +# c = Clips, intended to reload magazines or guns quickly. +# m = Magazine, intended to hold rounds of ammo. +# s = Speedloaders, intended to reload guns quickly. +# +# Use this format, followed by the caliber. For example, a shotgun's caliber +# variable is "12g" as a result. Ergo, a shotgun round's path would have "a12g", +# or a magazine with shotgun shells would be "m12g" instead. To avoid confusion +# for developers and in-game admins spawning these items, stick to this format. +# Likewise, when creating new rounds, the caliber variable should match whatever +# the name says. +# +# This comment is copied in rounds.dm and magazines.dm as well. +# +# Also, to remove bullets from ammo boxes, use Alt-Click on the box. +*/ +/************************************************************************/ + +/* + * Foam + */ + +/obj/item/ammo_magazine/ammo_box/foam + name = "\improper Donk-Soft ammo box" + desc = "Contains Donk-Soft foam darts. It's Donk or Don't! Ages 8 and up." + icon = 'icons/obj/gun_toy.dmi' + icon_state = "foambox" + caliber = "foam" + ammo_type = /obj/item/ammo_casing/afoam_dart + matter = list(MAT_PLASTIC = 1800) + max_ammo = 30 + multiple_sprites = null + +/obj/item/ammo_magazine/ammo_box/foam/riot + name = "\improper Donk-Soft riot ammo box" + desc = "Contains Donk-Soft riot darts. It's Donk or Don't! Ages 18 and up." + icon_state = "foambox_riot" + matter = list(MAT_STEEL = 5040, MAT_PLASTIC = 1800) + +/* + * Cap + */ + +/obj/item/ammo_magazine/ammo_box/cap + name = "\improper AlliCo SNAP! Caps" + desc = "A box of spare caps for capguns. Ages 8 and up." + icon = 'icons/obj/gun_toy.dmi' + icon_state = "capbox" + caliber = "caps" + ammo_type = /obj/item/ammo_casing/cap + matter = list(MAT_STEEL = 2040) + max_ammo = 24 + multiple_sprites = null \ No newline at end of file diff --git a/code/modules/projectiles/ammunition/magazines.dm b/code/modules/projectiles/ammunition/magazines.dm index 41b000d82f..aa43a54792 100644 --- a/code/modules/projectiles/ammunition/magazines.dm +++ b/code/modules/projectiles/ammunition/magazines.dm @@ -22,7 +22,42 @@ */ /************************************************************************/ +///////// Foam ///////// +/obj/item/ammo_magazine/mfoam_dart/pistol + name = "\improper Donk-Soft pistol magazine" + icon = 'icons/obj/gun_toy.dmi' + icon_state = "toy" + mag_type = MAGAZINE + ammo_type = /obj/item/ammo_casing/afoam_dart + matter = list(MAT_PLASTIC = 250) + caliber = "foam" + max_ammo = 9 + multiple_sprites = 1 + +/obj/item/ammo_magazine/mfoam_dart/pistol/riot + ammo_type = /obj/item/ammo_casing/afoam_dart/riot + +/obj/item/ammo_magazine/mfoam_dart/pistol/empty + initial_ammo = 0 + +/obj/item/ammo_magazine/mfoam_dart/smg + name = "\improper Donk-Soft smg magazine" + icon = 'icons/obj/gun_toy.dmi' + icon_state = "toysmg" + mag_type = MAGAZINE + ammo_type = /obj/item/ammo_casing/afoam_dart + matter = list(MAT_PLASTIC = 250) + caliber = "foam" + max_ammo = 20 + multiple_sprites = 1 + +/obj/item/ammo_magazine/mfoam_dart/smg/riot + ammo_type = /obj/item/ammo_casing/afoam_dart/riot + matter = list(MAT_PLASTIC = 1260, MAT_PLASTIC = 250) + +/obj/item/ammo_magazine/mfoam_dart/smg/empty + initial_ammo = 0 ///////// .357 ///////// diff --git a/code/modules/projectiles/ammunition/rounds.dm b/code/modules/projectiles/ammunition/rounds.dm index 14d52325f7..0ea73396f8 100644 --- a/code/modules/projectiles/ammunition/rounds.dm +++ b/code/modules/projectiles/ammunition/rounds.dm @@ -19,6 +19,26 @@ */ /************************************************************************/ +/* + * Foam + */ + +/obj/item/ammo_casing/afoam_dart + name = "foam dart" + desc = "It's Donk or Don't! Ages 8 and up." + projectile_type = /obj/item/projectile/bullet/foam_dart + matter = list(MAT_PLASTIC = 60) + caliber = "foam" + icon = 'icons/obj/gun_toy.dmi' + icon_state = "foamdart" + caseless = 1 + +/obj/item/ammo_casing/afoam_dart/riot + name = "riot foam dart" + desc = "Whose smart idea was it to use toys as crowd control? Ages 18 and up." + matter = list(MAT_STEEL = 210, MAT_PLASTIC = 60) + icon_state = "foamdart_riot" + /* * .357 */ @@ -29,6 +49,12 @@ projectile_type = /obj/item/projectile/bullet/pistol/strong matter = list(MAT_STEEL = 210) +/obj/item/ammo_casing/a357/bb + desc = "A .357 BB." + projectile_type = /obj/item/projectile/bullet/bb + matter = list(MAT_PLASTIC = 20) + caseless = TRUE + /* * .38 */ @@ -51,6 +77,12 @@ projectile_type = /obj/item/projectile/ion/small matter = list(MAT_STEEL = 130, MAT_URANIUM = 100) +/obj/item/ammo_casing/a38/bb + desc = "A .38 BB." + projectile_type = /obj/item/projectile/bullet/bb + matter = list(MAT_PLASTIC = 20) + caseless = TRUE + /* * .44 */ @@ -72,6 +104,12 @@ projectile_type = /obj/item/projectile/bullet/rifle/a44rifle matter = list(MAT_STEEL = 210) +/obj/item/ammo_casing/a44/bb + desc = "A .44 BB." + projectile_type = /obj/item/projectile/bullet/bb + matter = list(MAT_PLASTIC = 20) + caseless = TRUE + /* * .75 (aka Gyrojet Rockets, aka admin abuse) */ @@ -101,7 +139,6 @@ desc = "A 9mm hollow-point bullet casing." projectile_type = /obj/item/projectile/bullet/pistol/hp - /obj/item/ammo_casing/a9mm/flash desc = "A 9mm flash shell casing." icon_state = "r-casing" @@ -117,6 +154,12 @@ icon_state = "r-casing" projectile_type = /obj/item/projectile/bullet/practice +/obj/item/ammo_casing/a9mm/bb + desc = "A 9mm BB." + projectile_type = /obj/item/projectile/bullet/bb + matter = list(MAT_PLASTIC = 20) + caseless = TRUE + /* * .45 */ @@ -163,6 +206,12 @@ projectile_type = /obj/item/projectile/bullet/pistol/medium/hp matter = list(MAT_STEEL = 60, MAT_PLASTIC = 15) +/obj/item/ammo_casing/a45/bb + desc = "A .45 BB." + projectile_type = /obj/item/projectile/bullet/bb + matter = list(MAT_PLASTIC = 20) + caseless = TRUE + /* * 10mm */ @@ -180,6 +229,12 @@ icon_state = "empcasing" matter = list(MAT_STEEL = 130, MAT_URANIUM = 100) +/obj/item/ammo_casing/a10mm/bb + desc = "A 10mm BB." + projectile_type = /obj/item/projectile/bullet/bb + matter = list(MAT_PLASTIC = 20) + caseless = TRUE + /* * 12g (aka shotgun ammo) */ @@ -256,6 +311,11 @@ projectile_type = /obj/item/projectile/scatter/flechette matter = list(MAT_STEEL = 360, MAT_PLASTEEL = 100) +/obj/item/ammo_casing/a12g/bb + desc = "A shotgun BB shell." + projectile_type = /obj/item/projectile/bullet/pellet/shotgun/bb // Shotgun + matter = list(MAT_PLASTIC = 120) // 6 pellets + /* * 7.62mm */ @@ -291,6 +351,12 @@ desc = "A 7.62mm hunting bullet casing." projectile_type = /obj/item/projectile/bullet/rifle/a762/hunter +/obj/item/ammo_casing/a762/bb + desc = "A 7.62mm BB." + projectile_type = /obj/item/projectile/bullet/bb + matter = list(MAT_PLASTIC = 20) + caseless = TRUE + /* * 14.5mm (anti-materiel rifle round) */ @@ -345,6 +411,12 @@ desc = "A 5.45mm hunting bullet casing." projectile_type = /obj/item/projectile/bullet/rifle/a545/hunter +/obj/item/ammo_casing/a545/bb + desc = "A 5.45mm BB." + projectile_type = /obj/item/projectile/bullet/bb + matter = list(MAT_PLASTIC = 20) + caseless = TRUE + /* * 5mm Caseless */ @@ -375,14 +447,15 @@ /obj/item/ammo_casing/cap name = "cap" - desc = "A cap for children toys." + desc = "A cap for children toys. Ages 8 and up." caliber = "caps" - icon_state = "r-casing" - color = "#FF0000" - projectile_type = /obj/item/projectile/bullet/pistol/cap + icon = 'icons/obj/gun_toy.dmi' + icon_state = "cap" + projectile_type = /obj/item/projectile/bullet/cap matter = list(MAT_STEEL = 85) + caseless = 1 /obj/item/ammo_casing/spent // For simple hostile mobs only, so they don't cough up usable bullets when firing. This is for literally nothing else. icon_state = "s-casing-spent" BB = null - projectile_type = null \ No newline at end of file + projectile_type = null diff --git a/code/modules/projectiles/gun.dm b/code/modules/projectiles/gun.dm index 4979cc743c..7c04ec3750 100644 --- a/code/modules/projectiles/gun.dm +++ b/code/modules/projectiles/gun.dm @@ -464,7 +464,7 @@ P.dispersion = disp P.shot_from = src.name - P.silenced = silenced + P.silenced |= silenced // A silent bullet (e.g., BBs) can be fired quietly from any gun. P.old_style_target(target) P.fire() diff --git a/code/modules/projectiles/guns/energy.dm b/code/modules/projectiles/guns/energy.dm index c1dae89a6e..74dc34a72c 100644 --- a/code/modules/projectiles/guns/energy.dm +++ b/code/modules/projectiles/guns/energy.dm @@ -21,6 +21,7 @@ var/recharge_time = 4 var/charge_tick = 0 var/charge_delay = 75 //delay between firing and charging + var/shot_counter = TRUE // does this gun tell you how many shots it has? var/battery_lock = 0 //If set, weapon cannot switch batteries @@ -175,14 +176,15 @@ /obj/item/weapon/gun/energy/examine(mob/user) . = ..() - if(power_supply) - if(charge_cost) - var/shots_remaining = round(power_supply.charge / max(1, charge_cost)) // Paranoia - . += "Has [shots_remaining] shot\s remaining." + if(shot_counter) + if(power_supply) + if(charge_cost) + var/shots_remaining = round(power_supply.charge / max(1, charge_cost)) // Paranoia + . += "Has [shots_remaining] shot\s remaining." + else + . += "Has infinite shots remaining." else - . += "Has infinite shots remaining." - else - . += "Does not have a power cell." + . += "Does not have a power cell." /obj/item/weapon/gun/energy/update_icon(var/ignore_inhands) if(power_supply == null) diff --git a/code/modules/projectiles/guns/energy/bsharpoon_vr.dm b/code/modules/projectiles/guns/energy/bsharpoon_vr.dm index 005741bfe4..5b7b906e3c 100644 --- a/code/modules/projectiles/guns/energy/bsharpoon_vr.dm +++ b/code/modules/projectiles/guns/energy/bsharpoon_vr.dm @@ -18,6 +18,7 @@ var/transforming = 0 var/failure_chance = 15 // This can become negative with part tiers above 3, which helps offset penalties var/obj/item/weapon/stock_parts/scanning_module/scanmod + var/dropnoms_active = TRUE /obj/item/weapon/bluespace_harpoon/Initialize() . = ..() @@ -26,6 +27,8 @@ /obj/item/weapon/bluespace_harpoon/examine(var/mob/user) . = ..() + . += "It is currently in [mode ? "transmitting" : "recieving"] mode." + . += "Spatial rearrangement is [dropnoms_active ? "active" : "inactive"]." if(Adjacent(user)) . += "It has [scanmod ? scanmod : "no scanner module"] installed." @@ -80,7 +83,7 @@ playsound(src, 'sound/weapons/wave.ogg', 60, 1) return var/turf/T = get_turf(A) - if(!T || (T.check_density() && mode == 1)) + if(!T || (T.check_density(ignore_mobs = TRUE) && mode == 1)) to_chat(user,"That's a little too solid to harpoon into!") return var/turf/ownturf = get_turf(src) @@ -118,12 +121,47 @@ for(var/rider in L.buckled_mobs) sendfailchance += 15 + var/mob/living/living_user = user + var/can_dropnom = TRUE + if(!dropnoms_active || !istype(living_user)) + can_dropnom = FALSE + if(mode) if(user in FromTurf) if(prob(sendfailchance)) user.forceMove(pick(trange(24,user))) else user.forceMove(ToTurf) + var/vore_happened = FALSE + if(can_dropnom && living_user.can_be_drop_pred) + var/obj/belly/belly_dest + if(living_user.vore_selected) + belly_dest = living_user.vore_selected + else if(living_user.vore_organs.len) + belly_dest = pick(living_user.vore_organs) + if(belly_dest) + for(var/mob/living/prey in ToTurf) + if(prey != user && prey.can_be_drop_prey) + prey.forceMove(belly_dest) + vore_happened = TRUE + to_chat(prey, "[living_user] materializes around you, as you end up in their [belly_dest]!") + to_chat(living_user, "You materialize around [prey] as they end up in your [belly_dest]!") + if(can_dropnom && !vore_happened && living_user.can_be_drop_prey) + var/mob/living/pred + for(var/mob/living/potential_pred in ToTurf) + if(potential_pred != user && potential_pred.can_be_drop_pred) + pred = potential_pred + if(pred) + var/obj/belly/belly_dest + if(pred.vore_selected) + belly_dest = pred.vore_selected + else if(pred.vore_organs.len) + belly_dest = pick(pred.vore_organs) + if(belly_dest) + living_user.forceMove(belly_dest) + to_chat(pred, "[living_user] materializes inside you as they end up in your [belly_dest]!") + to_chat(living_user, "You materialize inside [pred] as you end up in their [belly_dest]!") + else for(var/obj/O in FromTurf) if(O.anchored) continue @@ -132,25 +170,58 @@ else O.forceMove(ToTurf) + var/user_vored = FALSE + for(var/mob/living/M in FromTurf) if(prob(recievefailchance)) M.forceMove(pick(trange(24,user))) else M.forceMove(ToTurf) + if(can_dropnom && living_user.can_be_drop_pred && M.can_be_drop_prey) + var/obj/belly/belly_dest + if(living_user.vore_selected) + belly_dest = living_user.vore_selected + else if(living_user.vore_organs.len) + belly_dest = pick(living_user.vore_organs) + if(belly_dest) + M.forceMove(belly_dest) + to_chat(living_user, "[M] materializes inside you as they end up in your [belly_dest]!") + to_chat(M, "You materialize inside [living_user] as you end up in their [belly_dest]!") + else if(can_dropnom && living_user.can_be_drop_prey && M.can_be_drop_pred && !user_vored) + var/obj/belly/belly_dest + if(M.vore_selected) + belly_dest = M.vore_selected + else if(M.vore_organs.len) + belly_dest = pick(M.vore_organs) + if(belly_dest) + living_user.forceMove(belly_dest) + user_vored = TRUE + to_chat(living_user, "[M] materializes around you, as you end up in their [belly_dest]!") + to_chat(M, "You materialize around [living_user] as they end up in your [belly_dest]!") + /obj/item/weapon/bluespace_harpoon/attack_self(mob/living/user as mob) return chande_fire_mode(user) /obj/item/weapon/bluespace_harpoon/verb/chande_fire_mode(mob/user as mob) - set name = "Change fire mode" + set name = "Change Fire Mode" set category = "Object" - set src in oview(1) + set src in range(0) + if(transforming) return mode = !mode transforming = 1 to_chat(user,"You change \the [src]'s mode to [mode ? "transmiting" : "receiving"].") update_icon() +/obj/item/weapon/bluespace_harpoon/verb/chande_dropnom_mode(mob/user as mob) + set name = "Toggle Spatial Rearrangement" + set category = "Object" + set src in range(0) + + dropnoms_active = !dropnoms_active + to_chat(user,"You switch \the [src]'s spatial rearrangement [dropnoms_active ? "on" : "off"]. (Telenoms [dropnoms_active ? "enabled" : "dsiabled"])") + /obj/item/weapon/bluespace_harpoon/update_icon() if(transforming) switch(mode) diff --git a/code/modules/projectiles/guns/energy/gunsword_vr.dm b/code/modules/projectiles/guns/energy/gunsword_vr.dm index cd28b53c90..cd28874afb 100644 --- a/code/modules/projectiles/guns/energy/gunsword_vr.dm +++ b/code/modules/projectiles/guns/energy/gunsword_vr.dm @@ -115,12 +115,5 @@ add_fingerprint(user) return -/obj/item/weapon/cell/device/weapon/gunsword/suicide_act(mob/user) - var/datum/gender/TU = gender_datums[user.get_visible_gender()] - if(active) - user.visible_message(pick("\The [user] is slitting [TU.his] stomach open with \the [src]! It looks like [TU.he] [TU.is] trying to commit seppuku.",\ - "\The [user] is falling on \the [src]! It looks like [TU.he] [TU.is] trying to commit suicide.")) - return (BRUTELOSS|FIRELOSS) - /obj/item/weapon/cell/device/weapon/gunsword/update_icon() cut_overlays() \ No newline at end of file diff --git a/code/modules/projectiles/guns/energy/kinetic_accelerator_vr.dm b/code/modules/projectiles/guns/energy/kinetic_accelerator_vr.dm index 3d656b4466..311c7e753b 100644 --- a/code/modules/projectiles/guns/energy/kinetic_accelerator_vr.dm +++ b/code/modules/projectiles/guns/energy/kinetic_accelerator_vr.dm @@ -1,51 +1,133 @@ +#define LAVALAND_EQUIPMENT_EFFECT_PRESSURE 50 //what pressure you have to be under to increase the effect of equipment meant for lavaland +#define HEATMODE_ATMOSPHERE 312.1 //kPa. basically virgo 2's +#define HEATMODE_TEMP 612 //kelvin. basically virgo 2's +/** + * This is here for now + */ +/proc/lavaland_environment_check(turf/simulated/T) + . = TRUE + if(!istype(T)) + return + var/datum/gas_mixture/environment = T.return_air() + if(!istype(environment)) + return + var/pressure = environment.return_pressure() + if(pressure > LAVALAND_EQUIPMENT_EFFECT_PRESSURE) + . = FALSE + if(environment.temperature < (T20C - 30)) + . = TRUE + +/proc/virgotwo_environment_check(turf/simulated/T) + . = TRUE + if(!istype(T)) + return + var/datum/gas_mixture/environment = T.return_air() + if(!istype(environment)) + return + var/pressure = environment.return_pressure() + if(pressure < HEATMODE_ATMOSPHERE - 20) + . = FALSE + if(environment.temperature > HEATMODE_TEMP - 30) + . = TRUE + +/proc/offsite_environment_check(turf/simulated/T) + . = TRUE + if(!istype(T)) + return + if(T.z in using_map.station_levels) + . = FALSE + /obj/item/weapon/gun/energy/kinetic_accelerator name = "proto-kinetic accelerator" - desc = "A self recharging, ranged mining tool that does increased damage in low temperature. Capable of holding up to six slots worth of mod kits." + desc = "A self recharging, ranged mining tool that does increased damage in low pressure." icon = 'icons/obj/gun_vr.dmi' icon_state = "kineticgun" - item_state = "kineticgun" item_icons = list( slot_l_hand_str = 'icons/mob/items/lefthand_guns_vr.dmi', - slot_r_hand_str = 'icons/mob/items/righthand_guns_vr.dmi') + slot_r_hand_str = 'icons/mob/items/righthand_guns_vr.dmi', + ) + item_state = "kineticgun" + // ammo_type = list(/obj/item/ammo_casing/energy/kinetic) + cell_type = /obj/item/weapon/cell/device/weapon/empproof + item_flags = NONE + charge_meter = FALSE + // obj_flags = UNIQUE_RENAME + // weapon_weight = WEAPON_LIGHT + // can_flashlight = 1 + // flight_x_offset = 15 + // flight_y_offset = 9 + // automatic_charge_overlays = FALSE projectile_type = /obj/item/projectile/kinetic - origin_tech = list(TECH_COMBAT = 3, TECH_POWER = 3, TECH_ENGINEERING = 3) - can_flashlight = TRUE - flight_x_offset = 15 - flight_y_offset = 9 - charge_cost = 120 // 20 shots on weapon power cell - fire_delay = 16 - self_recharge = TRUE - recharge_time = 10 // every 20*2 seconds will get 20% power restored + charge_cost = 1200 + battery_lock = TRUE + fire_sound = 'sound/weapons/kenetic_accel.ogg' + var/overheat_time = 16 + var/holds_charge = FALSE + var/unique_frequency = FALSE // modified by KA modkits + var/overheat = FALSE + var/emptystate = "kineticgun_empty" + shot_counter = FALSE + // can_bayonet = TRUE + // knife_x_offset = 20 + // knife_y_offset = 12 var/max_mod_capacity = 100 var/list/modkits = list() - var/empty_state = "kineticgun_empty" + + var/recharge_timerid + +/obj/item/weapon/gun/energy/kinetic_accelerator/consume_next_projectile() + if(overheat) + return + . = ..() + if(.) + var/obj/item/projectile/P = . + modify_projectile(P) + +/obj/item/weapon/gun/energy/kinetic_accelerator/handle_post_fire(mob/user, atom/target, pointblank, reflex) + . = ..() + attempt_reload() + +/obj/item/weapon/gun/energy/kinetic_accelerator/premiumka + name = "premium accelerator" + desc = "A premium kinetic accelerator fitted with an extended barrel and increased pressure tank." + icon_state = "premiumgun" + item_state = "premiumgun" + projectile_type = /obj/item/projectile/kinetic/premium /obj/item/weapon/gun/energy/kinetic_accelerator/examine(mob/user) . = ..() - if(Adjacent(user) && max_mod_capacity) + if(max_mod_capacity) . += "[get_remaining_mod_capacity()]% mod capacity remaining." - for(var/obj/item/borg/upgrade/modkit/M as anything in get_modkits()) - . += "There is a [M.name] mod installed, using [M.cost]% capacity." + for(var/A in get_modkits()) + var/obj/item/borg/upgrade/modkit/M = A + . += "There is \a [M] installed, using [M.cost]% capacity." -/obj/item/weapon/gun/energy/kinetic_accelerator/attackby(obj/item/A, mob/user) - if(istype(A, /obj/item/weapon/tool/crowbar)) +/obj/item/weapon/gun/energy/kinetic_accelerator/Exited(atom/movable/AM) + . = ..() + if((AM in modkits) && istype(AM, /obj/item/borg/upgrade/modkit)) + var/obj/item/borg/upgrade/modkit/M = AM + M.uninstall(src, FALSE) + +/obj/item/weapon/gun/energy/kinetic_accelerator/attackby(obj/item/I, mob/user) + if(I.has_tool_quality(TOOL_CROWBAR)) if(modkits.len) to_chat(user, "You pry the modifications out.") - playsound(src, A.usesound, 100, 1) + playsound(loc, I.usesound, 100, 1) for(var/obj/item/borg/upgrade/modkit/M in modkits) M.uninstall(src) else to_chat(user, "There are no modifications currently installed.") - else if(istype(A, /obj/item/borg/upgrade/modkit)) - var/obj/item/borg/upgrade/modkit/MK = A + if(istype(I, /obj/item/borg/upgrade/modkit)) + var/obj/item/borg/upgrade/modkit/MK = I MK.install(src, user) else ..() /obj/item/weapon/gun/energy/kinetic_accelerator/proc/get_remaining_mod_capacity() var/current_capacity_used = 0 - for(var/obj/item/borg/upgrade/modkit/M as anything in get_modkits()) + for(var/A in get_modkits()) + var/obj/item/borg/upgrade/modkit/M = A current_capacity_used += M.cost return max_mod_capacity - current_capacity_used @@ -55,134 +137,262 @@ . += A /obj/item/weapon/gun/energy/kinetic_accelerator/proc/modify_projectile(obj/item/projectile/kinetic/K) - for(var/obj/item/borg/upgrade/modkit/M as anything in get_modkits()) + K.kinetic_gun = src //do something special on-hit, easy! + for(var/A in get_modkits()) + var/obj/item/borg/upgrade/modkit/M = A M.modify_projectile(K) -/obj/item/weapon/gun/energy/kinetic_accelerator/consume_next_projectile() - var/obj/item/projectile/kinetic/BB = ..() - if(!istype(BB)) - return - modify_projectile(BB) +/obj/item/weapon/gun/energy/kinetic_accelerator/cyborg + holds_charge = TRUE + unique_frequency = TRUE - var/turf/proj_turf = get_turf(src) - if(!isturf(proj_turf)) - return - var/datum/gas_mixture/environment = proj_turf.return_air() - if(environment.temperature > 250) - BB.name = "weakened [BB.name]" - BB.damage *= BB.pressure_decrease - return BB +/obj/item/weapon/gun/energy/kinetic_accelerator/cyborg/Destroy() + for(var/obj/item/borg/upgrade/modkit/M in modkits) + M.uninstall(src) + return ..() -/obj/item/weapon/gun/energy/kinetic_accelerator/handle_post_fire(mob/user, atom/target, var/pointblank=0, var/reflex=0) +/obj/item/weapon/gun/energy/kinetic_accelerator/premiumka/cyborg + holds_charge = TRUE + unique_frequency = TRUE + +/obj/item/weapon/gun/energy/kinetic_accelerator/premiumka/cyborg/Destroy() + for(var/obj/item/borg/upgrade/modkit/M in modkits) + M.uninstall(src) + return ..() + +/obj/item/weapon/gun/energy/kinetic_accelerator/minebot + // trigger_guard = TRIGGER_GUARD_ALLOW_ALL + overheat_time = 20 + holds_charge = TRUE + unique_frequency = TRUE + +/obj/item/weapon/gun/energy/kinetic_accelerator/Initialize() . = ..() - spawn(fire_delay) - if(power_supply && power_supply.check_charge(charge_cost)) - playsound(src, 'sound/weapons/kenetic_reload.ogg', 60, 1) + if(!holds_charge) + empty() + AddElement(/datum/element/conflict_checking, CONFLICT_ELEMENT_KA) + +/obj/item/weapon/gun/energy/kinetic_accelerator/equipped(mob/user) + . = ..() + if(power_supply.charge < charge_cost) + attempt_reload() + +/obj/item/weapon/gun/energy/kinetic_accelerator/dropped(mob/user) + . = ..() + if(!QDELING(src) && !holds_charge) + // Put it on a delay because moving item from slot to hand + // calls dropped(). + addtimer(CALLBACK(src, .proc/empty_if_not_held), 2) + +/obj/item/weapon/gun/energy/kinetic_accelerator/proc/empty_if_not_held() + if(!ismob(loc) && !istype(loc, /obj/item/integrated_circuit)) + empty() + +/obj/item/weapon/gun/energy/kinetic_accelerator/proc/empty() + if(power_supply) + power_supply.use(power_supply.charge) + update_icon() + +/obj/item/weapon/gun/energy/kinetic_accelerator/proc/attempt_reload(recharge_time) + if(!power_supply) + return + if(overheat) + return + if(!recharge_time) + recharge_time = overheat_time + overheat = TRUE + update_icon() + + var/carried = max(1, loc.ConflictElementCount(CONFLICT_ELEMENT_KA)) + + deltimer(recharge_timerid) + recharge_timerid = addtimer(CALLBACK(src, .proc/reload), recharge_time * carried, TIMER_STOPPABLE) + +/obj/item/weapon/gun/energy/kinetic_accelerator/emp_act(severity) + return + +/obj/item/weapon/gun/energy/kinetic_accelerator/proc/reload() + power_supply.give(power_supply.maxcharge) + // process_chamber() + // if(!suppressed) + playsound(src, 'sound/weapons/kenetic_reload.ogg', 60, 1) + // else + // to_chat(loc, "[src] silently charges up.") + overheat = FALSE + update_icon() /obj/item/weapon/gun/energy/kinetic_accelerator/update_icon() cut_overlays() - if(!power_supply || !power_supply.check_charge(charge_cost)) - add_overlay(empty_state) - if(can_flashlight) - var/iconF = "flight" - if(gun_light) - iconF = "flight_on" - add_overlay(image(icon = icon, icon_state = iconF, pixel_x = flight_x_offset, pixel_y = flight_y_offset)) + if(overheat || !power_supply || (power_supply.charge == 0)) + add_overlay(emptystate) + +#define KA_ENVIRO_TYPE_COLD 0 +#define KA_ENVIRO_TYPE_HOT 1 +#define KA_ENVIRO_TYPE_OFFSITE 2 //Projectiles /obj/item/projectile/kinetic name = "kinetic force" - icon = 'icons/obj/projectiles_vr.dmi' icon_state = null - damage = 32 + damage = 30 damage_type = BRUTE check_armour = "bomb" - range = 3 // Our "range" var is named "kill_count". Yes it is. + range = 4 + // log_override = TRUE - var/pressure_decrease = 0.25 - var/turf_aoe = FALSE - var/mob_aoe = FALSE - var/list/hit_overlays = list() + var/pressure_decrease_active = FALSE + var/pressure_decrease = 1/3 + var/environment = KA_ENVIRO_TYPE_COLD + var/obj/item/weapon/gun/energy/kinetic_accelerator/kinetic_gun -// /obj/item/projectile/kinetic/pod -// kill_count = 4 -// -// /obj/item/projectile/kinetic/pod/regular -// damage = 50 -// pressure_decrease = 0.5 -// -// /obj/item/projectile/kinetic/pod/enhanced -// turf_aoe = TRUE -// mob_aoe = TRUE +/obj/item/projectile/kinetic/premium + damage = 40 + damage_type = BRUTE + range = 5 -/obj/item/projectile/kinetic/on_impact(var/atom/A) - strike_thing(A) - . = ..() +/obj/item/projectile/kinetic/Destroy() + kinetic_gun = null + return ..() -/obj/item/projectile/kinetic/on_hit(var/atom/target) +/obj/item/projectile/kinetic/Bump(atom/target) + if(kinetic_gun) + var/list/mods = kinetic_gun.get_modkits() + for(var/obj/item/borg/upgrade/modkit/M in mods) + M.projectile_prehit(src, target, kinetic_gun) + if(!pressure_decrease_active) + if(environment == KA_ENVIRO_TYPE_COLD) + if(!lavaland_environment_check(get_turf(src))) + name = "weakened [name]" + damage = damage * pressure_decrease + pressure_decrease_active = TRUE + else if(environment == KA_ENVIRO_TYPE_HOT) + if(!virgotwo_environment_check(get_turf(src))) + name = "weakened [name]" + damage = damage * pressure_decrease + pressure_decrease_active = TRUE + else if(environment == KA_ENVIRO_TYPE_OFFSITE) + if(!offsite_environment_check(get_turf(src))) + name = "nullified [name]" + nodamage = TRUE + damage = 0 + pressure_decrease_active = TRUE + return ..() + +/obj/item/projectile/kinetic/attack_mob(mob/living/target_mob, distance, miss_modifier) + if(!pressure_decrease_active) + if(environment == KA_ENVIRO_TYPE_COLD) + if(!lavaland_environment_check(get_turf(src))) + name = "weakened [name]" + damage = damage * pressure_decrease + pressure_decrease_active = TRUE + else if(environment == KA_ENVIRO_TYPE_HOT) + if(!virgotwo_environment_check(get_turf(src))) + name = "weakened [name]" + damage = damage * pressure_decrease + pressure_decrease_active = TRUE + else if(environment == KA_ENVIRO_TYPE_OFFSITE) + if(!offsite_environment_check(get_turf(src))) + name = "nullified [name]" + nodamage = TRUE + damage = 0 + pressure_decrease_active = TRUE + return ..() + +/obj/item/projectile/kinetic/on_range() + strike_thing() + ..() + +/obj/item/projectile/kinetic/on_hit(atom/target) strike_thing(target) . = ..() +/obj/item/projectile/kinetic/on_impact(atom/A) + . = ..() + strike_thing(A) + /obj/item/projectile/kinetic/proc/strike_thing(atom/target) + if(!pressure_decrease_active) + if(environment == KA_ENVIRO_TYPE_COLD) + if(!lavaland_environment_check(get_turf(src))) + name = "weakened [name]" + damage = damage * pressure_decrease + pressure_decrease_active = TRUE + else if(environment == KA_ENVIRO_TYPE_HOT) + if(!virgotwo_environment_check(get_turf(src))) + name = "weakened [name]" + damage = damage * pressure_decrease + pressure_decrease_active = TRUE + else if(environment == KA_ENVIRO_TYPE_OFFSITE) + if(!offsite_environment_check(get_turf(src))) + name = "nullified [name]" + nodamage = TRUE + damage = 0 + pressure_decrease_active = TRUE var/turf/target_turf = get_turf(target) if(!target_turf) target_turf = get_turf(src) - if(istype(target_turf, /turf/simulated/mineral)) + if(kinetic_gun) //hopefully whoever shot this was not very, very unfortunate. + var/list/mods = kinetic_gun.get_modkits() + for(var/obj/item/borg/upgrade/modkit/M in mods) + M.projectile_strike_predamage(src, target_turf, target, kinetic_gun) + for(var/obj/item/borg/upgrade/modkit/M in mods) + M.projectile_strike(src, target_turf, target, kinetic_gun) + if(ismineralturf(target_turf)) var/turf/simulated/mineral/M = target_turf - M.GetDrilled() + M.GetDrilled(TRUE) var/obj/effect/temp_visual/kinetic_blast/K = new /obj/effect/temp_visual/kinetic_blast(target_turf) K.color = color - for(var/type in hit_overlays) - new type(target_turf) - if(turf_aoe) - for(var/T in RANGE_TURFS(1, target_turf) - target_turf) - if(istype(T, /turf/simulated/mineral)) - var/turf/simulated/mineral/M = T - M.GetDrilled() - if(mob_aoe) - for(var/mob/living/L in range(1, target_turf) - firer - target) - var/armor = L.run_armor_check(def_zone, check_armour) - L.apply_damage(damage*mob_aoe, damage_type, def_zone, armor) - to_chat(L, "You're struck by a [name]!") + //Modkits /obj/item/borg/upgrade/modkit - name = "modification kit" + name = "kinetic accelerator modification kit" desc = "An upgrade for kinetic accelerators." icon = 'icons/obj/objects_vr.dmi' icon_state = "modkit" - origin_tech = list(TECH_DATA = 2, TECH_MATERIAL = 2, TECH_MAGNET = 4) + w_class = ITEMSIZE_SMALL require_module = 1 - // var/module_type = /obj/item/robot_module/miner - usesound = 'sound/items/Screwdriver.ogg' + // module_type = list(/obj/item/robot_module/miner) var/denied_type = null var/maximum_of_type = 1 var/cost = 30 var/modifier = 1 //For use in any mod kit that has numerical modifiers + var/minebot_upgrade = TRUE + var/minebot_exclusive = FALSE /obj/item/borg/upgrade/modkit/examine(mob/user) . = ..() - if(Adjacent(user)) - . += "Occupies [cost]% of mod capacity." + . += "Occupies [cost]% of mod capacity." /obj/item/borg/upgrade/modkit/attackby(obj/item/A, mob/user) - if(istype(A, /obj/item/weapon/gun/energy/kinetic_accelerator) && !issilicon(user)) + if(istype(A, /obj/item/weapon/gun/energy/kinetic_accelerator)) install(A, user) else ..() -/obj/item/borg/upgrade/modkit/action(mob/living/silicon/robot/R) - if(..()) - return - +/* +/obj/item/borg/upgrade/modkit/afterInstall(mob/living/silicon/robot/R) for(var/obj/item/weapon/gun/energy/kinetic_accelerator/H in R.module.modules) - return install(H, usr) + if(install(H, R)) //It worked + return + to_chat(R, "Upgrade error - Aborting Kinetic Accelerator linking.") //No applicable KA found, insufficient capacity, or some other problem. +*/ /obj/item/borg/upgrade/modkit/proc/install(obj/item/weapon/gun/energy/kinetic_accelerator/KA, mob/user) . = TRUE + if(src in KA.modkits) // Sanity check to prevent installing the same modkit twice thanks to occasional click/lag delays. + return FALSE + // if(minebot_upgrade) + // if(minebot_exclusive && !istype(KA.loc, /mob/living/simple_animal/hostile/mining_drone)) + // to_chat(user, "The modkit you're trying to install is only rated for minebot use.") + // return FALSE + // else if(istype(KA.loc, /mob/living/simple_animal/hostile/mining_drone)) + // to_chat(user, "The modkit you're trying to install is not rated for minebot use.") + // return FALSE if(denied_type) var/number_of_denied = 0 - for(var/obj/item/borg/upgrade/modkit/M as anything in KA.get_modkits()) + for(var/A in KA.get_modkits()) + var/obj/item/borg/upgrade/modkit/M = A if(istype(M, denied_type)) number_of_denied++ if(number_of_denied >= maximum_of_type) @@ -190,10 +400,11 @@ break if(KA.get_remaining_mod_capacity() >= cost) if(.) + user.drop_from_inventory(src, KA) + // if(!user.transferItemToLoc(src, KA)) + // return FALSE to_chat(user, "You install the modkit.") - playsound(src, usesound, 100, 1) - user.unEquip(src) - forceMove(KA) + playsound(loc, 'sound/items/screwdriver.ogg', 100, 1) KA.modkits += src else to_chat(user, "The modkit you're trying to install would conflict with an already installed modkit. Use a crowbar to remove existing modkits.") @@ -201,19 +412,26 @@ to_chat(user, "You don't have room([KA.get_remaining_mod_capacity()]% remaining, [cost]% needed) to install this modkit. Use a crowbar to remove existing modkits.") . = FALSE -/obj/item/borg/upgrade/modkit/proc/uninstall(obj/item/weapon/gun/energy/kinetic_accelerator/KA) - forceMove(get_turf(KA)) +/obj/item/borg/upgrade/modkit/proc/uninstall(obj/item/weapon/gun/energy/kinetic_accelerator/KA, forcemove = TRUE) KA.modkits -= src + if(forcemove) + forceMove(get_turf(KA)) +//use this one to modify the projectile itself /obj/item/borg/upgrade/modkit/proc/modify_projectile(obj/item/projectile/kinetic/K) - return +//use this one for effects you want to trigger before any damage is done at all and before damage is decreased by pressure +/obj/item/borg/upgrade/modkit/proc/projectile_prehit(obj/item/projectile/kinetic/K, atom/target, obj/item/weapon/gun/energy/kinetic_accelerator/KA) +//use this one for effects you want to trigger before mods that do damage +/obj/item/borg/upgrade/modkit/proc/projectile_strike_predamage(obj/item/projectile/kinetic/K, turf/target_turf, atom/target, obj/item/weapon/gun/energy/kinetic_accelerator/KA) +//and this one for things that don't need to trigger before other damage-dealing mods +/obj/item/borg/upgrade/modkit/proc/projectile_strike(obj/item/projectile/kinetic/K, turf/target_turf, atom/target, obj/item/weapon/gun/energy/kinetic_accelerator/KA) //Range /obj/item/borg/upgrade/modkit/range name = "range increase" desc = "Increases the range of a kinetic accelerator when installed." modifier = 1 - cost = 24 //so you can fit four plus a tracer cosmetic + cost = 25 /obj/item/borg/upgrade/modkit/range/modify_projectile(obj/item/projectile/kinetic/K) K.range += modifier @@ -229,54 +447,87 @@ K.damage += modifier -// //Cooldown -// /obj/item/borg/upgrade/modkit/cooldown -// name = "cooldown decrease" -// desc = "Decreases the cooldown of a kinetic accelerator." -// modifier = 2.5 - -// /obj/item/borg/upgrade/modkit/cooldown/install(obj/item/weapon/gun/energy/kinetic_accelerator/KA, mob/user) -// . = ..() -// if(.) -// KA.overheat_time -= modifier - -// /obj/item/borg/upgrade/modkit/cooldown/uninstall(obj/item/weapon/gun/energy/kinetic_accelerator/KA) -// KA.overheat_time += modifier -// ..() - //Cooldown -/obj/item/borg/upgrade/modkit/efficiency - name = "energy efficiency" - desc = "Decreases the energy use of a kinetic accelerator." - modifier = 20 +/obj/item/borg/upgrade/modkit/cooldown + name = "cooldown decrease" + desc = "Decreases the cooldown of a kinetic accelerator. Not rated for minebot use." + modifier = 2.5 + minebot_upgrade = FALSE + var/decreased -/obj/item/borg/upgrade/modkit/efficiency/install(obj/item/weapon/gun/energy/kinetic_accelerator/KA, mob/user) +/obj/item/borg/upgrade/modkit/cooldown/install(obj/item/weapon/gun/energy/kinetic_accelerator/KA, mob/user) . = ..() if(.) - KA.charge_cost -= modifier + var/old = KA.overheat_time + KA.overheat_time = max(0, KA.overheat_time - modifier) + decreased = old - KA.overheat_time -/obj/item/borg/upgrade/modkit/efficiency/uninstall(obj/item/weapon/gun/energy/kinetic_accelerator/KA) - KA.charge_cost += modifier + +/obj/item/borg/upgrade/modkit/cooldown/uninstall(obj/item/weapon/gun/energy/kinetic_accelerator/KA) + KA.overheat_time += decreased ..() +/obj/item/borg/upgrade/modkit/cooldown/minebot + name = "minebot cooldown decrease" + desc = "Decreases the cooldown of a kinetic accelerator. Only rated for minebot use." + icon_state = "door_electronics" + icon = 'icons/obj/module.dmi' + denied_type = /obj/item/borg/upgrade/modkit/cooldown/minebot + modifier = 10 + cost = 0 + minebot_upgrade = TRUE + minebot_exclusive = TRUE + + //AoE blasts /obj/item/borg/upgrade/modkit/aoe modifier = 0 + var/turf_aoe = FALSE + var/stats_stolen = FALSE + +/obj/item/borg/upgrade/modkit/aoe/install(obj/item/weapon/gun/energy/kinetic_accelerator/KA, mob/user) + . = ..() + if(.) + for(var/obj/item/borg/upgrade/modkit/aoe/AOE in KA.modkits) //make sure only one of the aoe modules has values if somebody has multiple + if(AOE.stats_stolen || AOE == src) + continue + modifier += AOE.modifier //take its modifiers + AOE.modifier = 0 + turf_aoe += AOE.turf_aoe + AOE.turf_aoe = FALSE + AOE.stats_stolen = TRUE + +/obj/item/borg/upgrade/modkit/aoe/uninstall(obj/item/weapon/gun/energy/kinetic_accelerator/KA) + ..() + modifier = initial(modifier) //get our modifiers back + turf_aoe = initial(turf_aoe) + stats_stolen = FALSE /obj/item/borg/upgrade/modkit/aoe/modify_projectile(obj/item/projectile/kinetic/K) K.name = "kinetic explosion" - if(!K.turf_aoe && !K.mob_aoe) - K.hit_overlays += /obj/effect/temp_visual/explosion/fast - K.mob_aoe += modifier + +/obj/item/borg/upgrade/modkit/aoe/projectile_strike(obj/item/projectile/kinetic/K, turf/target_turf, atom/target, obj/item/weapon/gun/energy/kinetic_accelerator/KA) + if(stats_stolen) + return + new /obj/effect/temp_visual/explosion/fast(target_turf) + if(turf_aoe) + for(var/T in RANGE_TURFS(1, target_turf) - target_turf) + if(ismineralturf(T)) + var/turf/simulated/mineral/M = T + M.GetDrilled(TRUE) + if(modifier) + for(var/mob/living/L in range(1, target_turf) - K.firer - target) + var/armor = L.run_armor_check(K.def_zone, K.check_armour) + // var/armor = L.run_armor_check(K.def_zone, K.flag, null, null, K.armour_penetration) + L.apply_damage(K.damage*modifier, K.damage_type, K.def_zone, armor) + // L.apply_damage(K.damage*modifier, K.damage_type, K.def_zone, armor) + to_chat(L, "You're struck by a [K.name]!") /obj/item/borg/upgrade/modkit/aoe/turfs name = "mining explosion" desc = "Causes the kinetic accelerator to destroy rock in an AoE." denied_type = /obj/item/borg/upgrade/modkit/aoe/turfs - -/obj/item/borg/upgrade/modkit/aoe/turfs/modify_projectile(obj/item/projectile/kinetic/K) - ..() - K.turf_aoe = TRUE + turf_aoe = TRUE /obj/item/borg/upgrade/modkit/aoe/turfs/andmobs name = "offensive mining explosion" @@ -289,19 +540,161 @@ desc = "Causes the kinetic accelerator to damage mobs in an AoE." modifier = 0.2 +//Minebot passthrough +/obj/item/borg/upgrade/modkit/minebot_passthrough + name = "minebot passthrough" + desc = "Causes kinetic accelerator shots to pass through minebots." + cost = 0 + +//Tendril-unique modules +/obj/item/borg/upgrade/modkit/cooldown/repeater + name = "rapid repeater" + desc = "Quarters the kinetic accelerator's cooldown on striking a living or mineral target, but greatly increases the base cooldown." + denied_type = /obj/item/borg/upgrade/modkit/cooldown/repeater + modifier = -14 //Makes the cooldown 3 seconds(with no cooldown mods) if you miss. Don't miss. + cost = 50 + +/obj/item/borg/upgrade/modkit/cooldown/repeater/projectile_strike_predamage(obj/item/projectile/kinetic/K, turf/target_turf, atom/target, obj/item/weapon/gun/energy/kinetic_accelerator/KA) + var/valid_repeat = FALSE + if(isliving(target)) + var/mob/living/L = target + if(L.stat != DEAD) + valid_repeat = TRUE + if(ismineralturf(target_turf)) + valid_repeat = TRUE + if(valid_repeat) + KA.overheat = FALSE + KA.attempt_reload(KA.overheat_time * 0.25) //If you hit, the cooldown drops to 0.75 seconds. + +/* +/obj/item/borg/upgrade/modkit/lifesteal + name = "lifesteal crystal" + desc = "Causes kinetic accelerator shots to slightly heal the firer on striking a living target." + icon_state = "modkit_crystal" + modifier = 2.5 //Not a very effective method of healing. + cost = 20 + var/static/list/damage_heal_order = list(BRUTE, BURN, OXY) + +/obj/item/borg/upgrade/modkit/lifesteal/projectile_prehit(obj/item/projectile/kinetic/K, atom/target, obj/item/weapon/gun/energy/kinetic_accelerator/KA) + if(isliving(target) && isliving(K.firer)) + var/mob/living/L = target + if(L.stat == DEAD) + return + L = K.firer + L.heal_ordered_damage(modifier, damage_heal_order) +*/ + +/obj/item/borg/upgrade/modkit/resonator_blasts + name = "resonator blast" + desc = "Causes kinetic accelerator shots to leave and detonate resonator blasts." + denied_type = /obj/item/borg/upgrade/modkit/resonator_blasts + cost = 30 + modifier = 0.25 //A bonus 15 damage if you burst the field on a target, 60 if you lure them into it. + +/obj/item/borg/upgrade/modkit/resonator_blasts/projectile_strike(obj/item/projectile/kinetic/K, turf/target_turf, atom/target, obj/item/weapon/gun/energy/kinetic_accelerator/KA) + if(target_turf && !ismineralturf(target_turf)) //Don't make fields on mineral turfs. + var/obj/effect/resonance/R = locate(/obj/effect/resonance) in target_turf + if(R) + R.resonance_damage *= modifier + R.burst() + return + new /obj/effect/resonance(target_turf, K.firer, 30) + +/* +/obj/item/borg/upgrade/modkit/bounty + name = "death syphon" + desc = "Killing or assisting in killing a creature permanently increases your damage against that type of creature." + denied_type = /obj/item/borg/upgrade/modkit/bounty + modifier = 1.25 + cost = 30 + var/maximum_bounty = 25 + var/list/bounties_reaped = list() + +/obj/item/borg/upgrade/modkit/bounty/projectile_prehit(obj/item/projectile/kinetic/K, atom/target, obj/item/weapon/gun/energy/kinetic_accelerator/KA) + if(isliving(target)) + var/mob/living/L = target + var/list/existing_marks = L.has_status_effect_list(STATUS_EFFECT_SYPHONMARK) + for(var/i in existing_marks) + var/datum/status_effect/syphon_mark/SM = i + if(SM.reward_target == src) //we want to allow multiple people with bounty modkits to use them, but we need to replace our own marks so we don't multi-reward + SM.reward_target = null + qdel(SM) + L.apply_status_effect(STATUS_EFFECT_SYPHONMARK, src) + +/obj/item/borg/upgrade/modkit/bounty/projectile_strike(obj/item/projectile/kinetic/K, turf/target_turf, atom/target, obj/item/weapon/gun/energy/kinetic_accelerator/KA) + if(isliving(target)) + var/mob/living/L = target + if(bounties_reaped[L.type]) + var/kill_modifier = 1 + if(K.pressure_decrease_active) + kill_modifier *= K.pressure_decrease + var/armor = L.run_armor_check(K.def_zone, K.flag, null, null, K.armour_penetration) + L.apply_damage(bounties_reaped[L.type]*kill_modifier, K.damage_type, K.def_zone, armor) + +/obj/item/borg/upgrade/modkit/bounty/proc/get_kill(mob/living/L) + var/bonus_mod = 1 + if(ismegafauna(L)) //megafauna reward + bonus_mod = 4 + if(!bounties_reaped[L.type]) + bounties_reaped[L.type] = min(modifier * bonus_mod, maximum_bounty) + else + bounties_reaped[L.type] = min(bounties_reaped[L.type] + (modifier * bonus_mod), maximum_bounty) +*/ //Indoors /obj/item/borg/upgrade/modkit/indoors - name = "decrease pressure penalty" - desc = "Increases the damage a kinetic accelerator does in a high pressure environment." + name = "hacked pressure modulator" + desc = "A remarkably illegal modification kit that increases the damage a kinetic accelerator does in pressurized environments." modifier = 2 denied_type = /obj/item/borg/upgrade/modkit/indoors maximum_of_type = 2 - cost = 40 + cost = 35 /obj/item/borg/upgrade/modkit/indoors/modify_projectile(obj/item/projectile/kinetic/K) K.pressure_decrease *= modifier +/obj/item/borg/upgrade/modkit/offsite + name = "offsite pressure modulator" + desc = "A non-standard modification kit that increases the damage a kinetic accelerator does in pressurized environments, \ + in exchange for nullifying any projected forces while on or in an associated facility." + denied_type = /obj/item/borg/upgrade/modkit/heater + maximum_of_type = 1 + cost = 35 + +/obj/item/borg/upgrade/modkit/offsite/modify_projectile(obj/item/projectile/kinetic/K) + K.environment = KA_ENVIRO_TYPE_OFFSITE + +// Atmospheric +/obj/item/borg/upgrade/modkit/heater + name = "temperature modulator" + desc = "A remarkably unusual modification kit that makes kinetic accelerators more usable in hot, overpressurized environments, \ + in exchange for making them weak elsewhere, like the cold or in space." + denied_type = /obj/item/borg/upgrade/modkit/offsite + maximum_of_type = 1 + cost = 10 + +/obj/item/borg/upgrade/modkit/heater/modify_projectile(obj/item/projectile/kinetic/K) + K.environment = KA_ENVIRO_TYPE_HOT + +//Trigger Guard + +/* +/obj/item/borg/upgrade/modkit/trigger_guard + name = "modified trigger guard" + desc = "Allows creatures normally incapable of firing guns to operate the weapon when installed." + cost = 20 + denied_type = /obj/item/borg/upgrade/modkit/trigger_guard + +/obj/item/borg/upgrade/modkit/trigger_guard/install(obj/item/weapon/gun/energy/kinetic_accelerator/KA, mob/user) + . = ..() + if(.) + KA.trigger_guard = TRIGGER_GUARD_ALLOW_ALL + +/obj/item/borg/upgrade/modkit/trigger_guard/uninstall(obj/item/weapon/gun/energy/kinetic_accelerator/KA) + KA.trigger_guard = TRIGGER_GUARD_NORMAL + ..() +*/ + //Cosmetic /obj/item/borg/upgrade/modkit/chassis_mod @@ -342,7 +735,7 @@ /obj/item/borg/upgrade/modkit/tracer/adjustable name = "adjustable tracer bolts" - desc = "Causes kinetic accelerator bolts to have a adjustably-colored tracer trail and explosion. Use in-hand to change color." + desc = "Causes kinetic accelerator bolts to have an adjustable-colored tracer trail and explosion. Use in-hand to change color." /obj/item/borg/upgrade/modkit/tracer/adjustable/attack_self(mob/user) - bolt_color = input(user,"Choose Color") as color + bolt_color = input(user,"","Choose Color",bolt_color) as color|null diff --git a/code/modules/projectiles/guns/energy/laser.dm b/code/modules/projectiles/guns/energy/laser.dm index e0f4b936b8..e4cd464663 100644 --- a/code/modules/projectiles/guns/energy/laser.dm +++ b/code/modules/projectiles/guns/energy/laser.dm @@ -278,41 +278,6 @@ accuracy = 0 scoped_accuracy = 20 -////////Laser Tag//////////////////// - -/obj/item/weapon/gun/energy/lasertag - name = "laser tag gun" - item_state = "laser" - desc = "Standard issue weapon of the Imperial Guard" - origin_tech = list(TECH_COMBAT = 1, TECH_MAGNET = 2) - matter = list(MAT_STEEL = 2000) - projectile_type = /obj/item/projectile/beam/lasertag/blue - cell_type = /obj/item/weapon/cell/device/weapon/recharge - battery_lock = 1 - var/required_vest - -/obj/item/weapon/gun/energy/lasertag/special_check(var/mob/living/carbon/human/M) - if(ishuman(M)) - if(!istype(M.wear_suit, required_vest)) - to_chat(M, "You need to be wearing your laser tag vest!") - return 0 - return ..() - -/obj/item/weapon/gun/energy/lasertag/blue - icon_state = "bluetag" - item_state = "bluetag" - projectile_type = /obj/item/projectile/beam/lasertag/blue - required_vest = /obj/item/clothing/suit/bluetag - -/obj/item/weapon/gun/energy/lasertag/red - icon_state = "redtag" - item_state = "redtag" - projectile_type = /obj/item/projectile/beam/lasertag/red - required_vest = /obj/item/clothing/suit/redtag - -/obj/item/weapon/gun/energy/lasertag/omni - projectile_type = /obj/item/projectile/beam/lasertag/omni - // Laser scattergun, proof of concept. /obj/item/weapon/gun/energy/lasershotgun diff --git a/code/modules/projectiles/guns/energy/pummeler_vr.dm b/code/modules/projectiles/guns/energy/pummeler_vr.dm index 75563208f2..b4dd9ad472 100644 --- a/code/modules/projectiles/guns/energy/pummeler_vr.dm +++ b/code/modules/projectiles/guns/energy/pummeler_vr.dm @@ -45,4 +45,14 @@ L.Confuse(1) L.throw_at(get_edge_target_turf(L, throwdir), rand(3,6), 10) + //VOREStation Add Start + if(istype(L, /mob/living/simple_mob/vore/alienanimals/startreader)) + var/mob/living/simple_mob/vore/alienanimals/startreader/S = L + if(!S.flipped) + S.adjustBruteLoss(100) + S.visible_message("\The [S] is flipped over!!!") + S.flipped = TRUE + S.flip_cooldown = 10 + S.handle_flip() + //VOREStation Add End return 1 diff --git a/code/modules/projectiles/guns/energy/special.dm b/code/modules/projectiles/guns/energy/special.dm index 0ea7871e30..f236ed2984 100644 --- a/code/modules/projectiles/guns/energy/special.dm +++ b/code/modules/projectiles/guns/energy/special.dm @@ -47,7 +47,9 @@ modifystate = "floramut" cell_type = /obj/item/weapon/cell/device/weapon/recharge battery_lock = 1 + var/decl/plantgene/gene = null + var/obj/item/weapon/stock_parts/micro_laser/emitter firemodes = list( list(mode_name="induce mutations", projectile_type=/obj/item/projectile/energy/floramut, modifystate="floramut"), @@ -55,8 +57,42 @@ list(mode_name="induce specific mutations", projectile_type=/obj/item/projectile/energy/floramut/gene, modifystate="floramut"), ) +/obj/item/weapon/gun/energy/floragun/Initialize() + . = ..() + emitter = new(src) + +/obj/item/weapon/gun/energy/floragun/examine(var/mob/user) + . = ..() + if(Adjacent(user)) + . += "It has [emitter ? emitter : "no micro laser"] installed." + +/obj/item/weapon/gun/energy/floragun/attackby(obj/item/W, mob/user) + if(istype(W, /obj/item/weapon/stock_parts/micro_laser)) + if(!emitter) + user.drop_item() + W.loc = src + emitter = W + to_chat(user, "You install a [emitter.name] in [src].") + else + to_chat(user, "[src] already has a laser.") + + else if(W.is_screwdriver()) + if(emitter) + to_chat(user, "You remove the [emitter.name] from the [src].") + emitter.loc = get_turf(src.loc) + playsound(src, W.usesound, 50, 1) + emitter = null + return + else + to_chat(user, "There is no micro laser in this [src].") + return + /obj/item/weapon/gun/energy/floragun/afterattack(obj/target, mob/user, adjacent_flag) //allow shooting into adjacent hydrotrays regardless of intent + if(!emitter) + to_chat(user, "The [src] has no laser! ") + playsound(src, 'sound/weapons/empty.ogg', 50, 1) + return if(adjacent_flag && istype(target,/obj/machinery/portable_atmospherics/hydroponics)) user.visible_message("\The [user] fires \the [src] into \the [target]!") Fire(target,user) @@ -82,8 +118,16 @@ /obj/item/weapon/gun/energy/floragun/consume_next_projectile() . = ..() var/obj/item/projectile/energy/floramut/gene/G = . + var/obj/item/projectile/energy/florayield/GY = . + var/obj/item/projectile/energy/floramut/GM = . + // Inserting the upgrade level of the gun to the projectile as there isn't a better way to do this. if(istype(G)) G.gene = gene + G.lasermod = emitter.rating + else if(istype(GY)) + GY.lasermod = emitter.rating + else if(istype(GM)) + GM.lasermod = emitter.rating /obj/item/weapon/gun/energy/meteorgun name = "meteor gun" diff --git a/code/modules/projectiles/guns/launcher/rocket.dm b/code/modules/projectiles/guns/launcher/rocket.dm index 4dce4ce835..647864365b 100644 --- a/code/modules/projectiles/guns/launcher/rocket.dm +++ b/code/modules/projectiles/guns/launcher/rocket.dm @@ -36,7 +36,7 @@ if(rockets.len) var/obj/item/ammo_casing/rocket/I = rockets[1] rockets -= I - return + return new I.projectile_type(src) return null /obj/item/weapon/gun/launcher/rocket/handle_post_fire(mob/user, atom/target) diff --git a/code/modules/projectiles/guns/magnetic/bore.dm b/code/modules/projectiles/guns/magnetic/bore.dm index 3cc05cc44b..66e89cb9eb 100644 --- a/code/modules/projectiles/guns/magnetic/bore.dm +++ b/code/modules/projectiles/guns/magnetic/bore.dm @@ -85,6 +85,8 @@ /obj/item/weapon/gun/magnetic/matfed/attackby(var/obj/item/thing, var/mob/user) + . = ..() + update_rating_mod() if(removable_components) if(thing.is_crowbar()) if(!manipulator) @@ -112,7 +114,6 @@ update_rating_mod() return - if(is_type_in_list(thing, load_type)) var/obj/item/stack/material/M = thing var/success = FALSE @@ -147,7 +148,6 @@ playsound(src, 'sound/weapons/flipblade.ogg', 50, 1) update_icon() return - . = ..() #define GEN_STARTING -1 #define GEN_OFF 0 diff --git a/code/modules/projectiles/guns/projectile/revolver.dm b/code/modules/projectiles/guns/projectile/revolver.dm index 5d158e5d0a..678146eb18 100644 --- a/code/modules/projectiles/guns/projectile/revolver.dm +++ b/code/modules/projectiles/guns/projectile/revolver.dm @@ -148,18 +148,6 @@ flick("deckard-reload",src) ..() -/obj/item/weapon/gun/projectile/revolver/capgun - name = "cap gun" - desc = "Looks almost like the real thing! Ages 8 and up." - icon_state = "revolver" - item_state = "revolver" - caliber = "caps" - origin_tech = list(TECH_COMBAT = 1, TECH_MATERIAL = 1) - handle_casings = CYCLE_CASINGS - max_shells = 7 - ammo_type = /obj/item/ammo_casing/cap - projectile_type = /obj/item/projectile/bullet/pistol/strong - /obj/item/weapon/gun/projectile/revolver/judge name = "\"The Judge\"" desc = "A revolving hand-shotgun by Jindal Arms that packs the power of a 12 guage in the palm of your hand (if you don't break your wrist). Uses 12g rounds." diff --git a/code/modules/projectiles/guns/toy.dm b/code/modules/projectiles/guns/toy.dm new file mode 100644 index 0000000000..e3b90bd1be --- /dev/null +++ b/code/modules/projectiles/guns/toy.dm @@ -0,0 +1,251 @@ +/* Toys Guns! + * + * Contains: + * Cap Gun + * Shotgun + * Pistol + * N99 Pistol + * Levergun + * Revolver + * Big Iron + * Crossbow + * Crossbow (Halloween) + * Sawn Off + * SMG + * Laser Tag + */ + +/* + * Cap Gun + */ +/obj/item/weapon/gun/projectile/revolver/capgun + name = "cap gun" + desc = "Looks almost like the real thing! Ages 8 and up." + icon = 'icons/obj/gun_toy.dmi' + icon_state = "cap_gun" + item_state = "revolver" + caliber = "caps" + origin_tech = list(TECH_COMBAT = 1, TECH_MATERIAL = 1) + ammo_type = /obj/item/ammo_casing/cap + projectile_type = /obj/item/projectile/bullet/cap + matter = list(MAT_STEEL = 1000) + handle_casings = null + recoil = 1 //it's a toy + +/* + * Shotgun + */ +/obj/item/weapon/gun/projectile/shotgun/pump/toy + name = "\improper Donk-Soft shotgun" + desc = "Donk-Soft foam shotgun! It's Donk or Don't! Ages 8 and up." + icon = 'icons/obj/gun_toy.dmi' + icon_state = "shotgun" + item_state = "shotgun" + max_shells = 6 + w_class = ITEMSIZE_LARGE + force = 2 + slot_flags = null + caliber = "foam" + origin_tech = list(TECH_COMBAT = 1, TECH_MATERIAL = 1) + load_method = SINGLE_CASING + ammo_type = /obj/item/ammo_casing/afoam_dart + projectile_type = /obj/item/projectile/bullet/foam_dart + matter = list(MAT_PLASTIC = 2000) + handle_casings = null + recoil = null //it's a toy + +/* + * Pistol + */ +/obj/item/weapon/gun/projectile/pistol/toy + name = "\improper Donk-Soft pistol" + desc = "Donk-Soft foam pistol! It's Donk or Don't! Ages 8 and up." + icon = 'icons/obj/gun_toy.dmi' + icon_state = "pistol" + item_state = "gun" + magazine_type = /obj/item/ammo_magazine/mfoam_dart/pistol + allowed_magazines = list(/obj/item/ammo_magazine/mfoam_dart/pistol) + projectile_type = /obj/item/projectile/bullet/foam_dart + caliber = "foam" + origin_tech = list(TECH_COMBAT = 1, TECH_MATERIAL = 1) + load_method = MAGAZINE + matter = list(MAT_PLASTIC = 1000) + recoil = null //it's a toy + +/obj/item/weapon/gun/projectile/pistol/toy/update_icon() + if(ammo_magazine) + icon_state = initial(icon_state) + else + icon_state = "[initial(icon_state)]-e" + +/* + * N99 Pistol + */ +/obj/item/weapon/gun/projectile/pistol/toy/n99 + name = "\improper Donk-Soft commemorative pistol" + desc = "A special made Donk-Soft pistol to promote 'Radius: Legend of the Demon Core', a popular post-apocolyptic TV series." + icon_state = "n99" + item_state = "gun" + +/obj/item/weapon/gun/projectile/pistol/toy/n99/update_icon() + if(ammo_magazine) + icon_state = initial(icon_state) + else + icon_state = "[initial(icon_state)]-e" + +/* + * Levergun + */ +/obj/item/weapon/gun/projectile/shotgun/pump/toy/levergun + name = "\improper Donk-Soft levergun" + desc = "Donk-Soft foam levergun! Time to cowboy up! Ages 8 and up." + icon_state = "leveraction" + item_state = "leveraction" + max_shells = 5 + pump_animation = "leveraction-cycling" + +/* + * Revolver + */ +/obj/item/weapon/gun/projectile/revolver/toy + name = "\improper Donk-Soft revolver" + desc = "Donk-Soft foam revolver! Time to cowboy up! Ages 8 and up." + icon = 'icons/obj/gun_toy.dmi' + icon_state = "revolver" + item_state = "revolver" + caliber = "foam" + ammo_type = /obj/item/ammo_casing/afoam_dart + projectile_type = /obj/item/projectile/bullet/foam_dart + origin_tech = list(TECH_COMBAT = 1, TECH_MATERIAL = 1) + load_method = SINGLE_CASING + max_shells = 6 + matter = list(MAT_PLASTIC = 1000) + handle_casings = null + recoil = null //it's a toy + +/* + * Big Iron + */ +/obj/item/weapon/gun/projectile/revolver/toy/big_iron + name = "\improper Donk-Soft big iron" + desc = "A special made Donk-Soft pistol to promote 'A Fistful of Phoron', a popular frontier novel series." + icon_state = "big_iron" + item_state = "revolver" + +/* + * Crossbow + */ +/obj/item/weapon/gun/projectile/revolver/toy/crossbow + name = "\improper Donk-Soft crossbow" + desc = "Donk-Soft foam crossbow! It's Donk or Don't! Ages 8 and up." + icon = 'icons/obj/gun_toy.dmi' + icon_state = "foamcrossbow" + item_state = "foamcrossbow" + max_shells = 5 + +/* + * Crossbow (Halloween) + */ +/obj/item/weapon/gun/projectile/revolver/toy/crossbow/halloween + name = "\improper Donk-Soft special edition crossbow" + desc = "A special edition Donk-Soft crossbow! Made special for your Halloween cosplay. It's Donk or Don't! Ages 8 and up." + icon = 'icons/obj/gun_toy.dmi' + icon_state = "foamcrossbow_halloween" + item_state = "foamcrossbow_halloween" + max_shells = 5 + +/* + * Sawn Off + */ +/obj/item/weapon/gun/projectile/revolver/toy/sawnoff //revolver code just because it's easier + name = "\improper Donk-Soft sawn off shotgun" + desc = "Donk-Soft foam sawn off! It's Donk or Don't! Ages 8 and up." + icon = 'icons/obj/gun_toy.dmi' + icon_state = "sawnshotgun" + item_state = "dshotgun" + max_shells = 2 + w_class = ITEMSIZE_NORMAL + matter = list(MAT_PLASTIC = 1500) + +/* + * SMG + */ +/obj/item/weapon/gun/projectile/automatic/toy + name = "\improper Donk-Soft SMG" + desc = "Donk-Soft foam SMG! It's Donk or Don't! Ages 8 and up." + icon = 'icons/obj/gun_toy.dmi' + icon_state = "smg" + caliber = "foam" + w_class = ITEMSIZE_NORMAL + load_method = MAGAZINE + origin_tech = list(TECH_COMBAT = 1, TECH_MATERIAL = 1) + slot_flags = SLOT_BELT + magazine_type = /obj/item/ammo_magazine/mfoam_dart/smg + allowed_magazines = list(/obj/item/ammo_magazine/mfoam_dart/smg) + projectile_type = /obj/item/projectile/bullet/foam_dart + matter = list(MAT_PLASTIC = 1500) + recoil = null //it's a toy + + firemodes = list( + list(mode_name="semiauto", burst=1, fire_delay=0, move_delay=null, burst_accuracy=null, dispersion=null), + list(mode_name="3-round bursts", burst=3, fire_delay=null, move_delay=2, burst_accuracy=list(0,-2,-2), dispersion=null) + ) + +/obj/item/weapon/gun/projectile/automatic/toy/riot + magazine_type = /obj/item/ammo_magazine/mfoam_dart/smg/riot + +/obj/item/weapon/gun/projectile/automatic/toy/update_icon() + if(ammo_magazine) + icon_state = initial(icon_state) + else + icon_state = "[initial(icon_state)]-e" + +/* + * Laser Tag + */ +/obj/item/weapon/gun/energy/lasertag + name = "laser tag gun" + desc = "Standard issue weapon of the Imperial Guard" + icon = 'icons/obj/gun_toy.dmi' + item_state = "omnitag" + item_state = "retro" + origin_tech = list(TECH_COMBAT = 1, TECH_MAGNET = 2) + matter = list(MAT_STEEL = 2000) + projectile_type = /obj/item/projectile/beam/lasertag/blue + cell_type = /obj/item/weapon/cell/device/weapon/recharge + battery_lock = 1 + var/required_vest + +/obj/item/weapon/gun/energy/lasertag/special_check(var/mob/living/carbon/human/M) + if(ishuman(M)) + if(!istype(M.wear_suit, required_vest)) + to_chat(M, "You need to be wearing your laser tag vest!") + return 0 + return ..() + +/obj/item/weapon/gun/energy/lasertag/blue + icon_state = "bluetag" + item_state = "bluetag" + projectile_type = /obj/item/projectile/beam/lasertag/blue + required_vest = /obj/item/clothing/suit/bluetag + +/obj/item/weapon/gun/energy/lasertag/blue/sub + name = "Brigader Sidearm" + desc = "A laser tag replica of the standard issue weapon for the Spacer Union Brigade from the hit series Spacer Trail (Blue Team)." + icon_state = "bluetwo" + item_state = "retro" + +/obj/item/weapon/gun/energy/lasertag/red + icon_state = "redtag" + item_state = "redtag" + projectile_type = /obj/item/projectile/beam/lasertag/red + required_vest = /obj/item/clothing/suit/redtag + +/obj/item/weapon/gun/energy/lasertag/red/dom + name = "Mu'tu'bi sidearm" + desc = "A laser tag replica of the Mu'tu'bi sidearm from the hit series Spacer Trail (Red Team)." + icon_state = "redtwo" + item_state = "retro" + +/obj/item/weapon/gun/energy/lasertag/omni + projectile_type = /obj/item/projectile/beam/lasertag/omni \ No newline at end of file diff --git a/code/modules/projectiles/projectile.dm b/code/modules/projectiles/projectile.dm index 6c5bbd9ef0..abba257a93 100644 --- a/code/modules/projectiles/projectile.dm +++ b/code/modules/projectiles/projectile.dm @@ -83,10 +83,10 @@ //Misc/Polaris variables - var/def_zone = "" //Aiming at - var/mob/firer = null//Who shot it - var/silenced = 0 //Attack message - var/shot_from = "" // name of the object which shot us + var/def_zone = "" //Aiming at + var/mob/firer = null //Who shot it + var/silenced = FALSE //Attack message + var/shot_from = "" // name of the object which shot us var/accuracy = 0 var/dispersion = 0.0 @@ -671,17 +671,23 @@ playsound(target_mob, "bullet_miss", 75, 1) return FALSE + var/impacted_organ = parse_zone(def_zone) + if(istype(target_mob, /mob/living/simple_mob)) + var/mob/living/simple_mob/SM = target_mob + var/decl/mob_organ_names/organ_plan = SM.organ_names + impacted_organ = pick(organ_plan.hit_zones) + //hit messages if(silenced) playsound(target_mob, hitsound, 5, 1, -1) - to_chat(target_mob, span("critical", "You've been hit in the [parse_zone(def_zone)] by \the [src]!")) + to_chat(target_mob, span("critical", "You've been hit in the [impacted_organ] by \the [src]!")) else var/volume = vol_by_damage() playsound(target_mob, hitsound, volume, 1, -1) // X has fired Y is now given by the guns so you cant tell who shot you if you could not see the shooter target_mob.visible_message( - span("danger", "\The [target_mob] was hit in the [parse_zone(def_zone)] by \the [src]!"), - span("critical", "You've been hit in the [parse_zone(def_zone)] by \the [src]!") + span("danger", "\The [target_mob] was hit in the [impacted_organ] by \the [src]!"), + span("critical", "You've been hit in the [impacted_organ] by \the [src]!") ) //admin logs @@ -742,7 +748,7 @@ /obj/item/projectile/proc/launch_from_gun(atom/target, target_zone, mob/user, params, angle_override, forced_spread, obj/item/weapon/gun/launcher) shot_from = launcher.name - silenced = launcher.silenced + silenced |= launcher.silenced // Silent bullets (e.g., BBs) are always silent if(user) firer = user diff --git a/code/modules/projectiles/projectile/bullets.dm b/code/modules/projectiles/projectile/bullets.dm index 31fa34dc12..5941b7f4c6 100644 --- a/code/modules/projectiles/projectile/bullets.dm +++ b/code/modules/projectiles/projectile/bullets.dm @@ -321,6 +321,72 @@ embed_chance = 0 sharp = FALSE -/obj/item/projectile/bullet/blank/cap/process() +/* BB Rounds */ +/obj/item/projectile/bullet/bb // Generic single BB + name = "BB" + damage = 0 + agony = 0 + embed_chance = 0 + sharp = FALSE + silenced = TRUE + +/obj/item/projectile/bullet/pellet/shotgun/bb // Shotgun + name = "BB" + damage = 0 + agony = 0 + embed_chance = 0 + sharp = FALSE + pellets = 6 + range_step = 1 + spread_step = 10 + silenced = TRUE + +/* toy projectiles */ +/obj/item/projectile/bullet/cap + name = "cap" + desc = "SNAP!" + damage = 0 // It's a damn toy. + embed_chance = 0 + nodamage = TRUE + sharp = FALSE + damage_type = HALLOSS + impact_effect_type = null + fire_sound = 'sound/effects/snap.ogg' + combustion = FALSE + +/obj/item/projectile/bullet/cap/process() loc = null - qdel(src) \ No newline at end of file + qdel(src) + +/obj/item/projectile/bullet/foam_dart + name = "foam dart" + desc = "I hope you're wearing eye protection." + damage = 0 // It's a damn toy. + embed_chance = 0 + nodamage = TRUE + sharp = FALSE + damage_type = HALLOSS + impact_effect_type = null + fire_sound = 'sound/items/syringeproj.ogg' + combustion = FALSE + icon = 'icons/obj/gun_toy.dmi' + icon_state = "foamdart_proj" + range = 15 + +/obj/item/projectile/bullet/foam_dart/on_impact(var/atom/A) + . = ..() + var/turf/T = get_turf(loc) + if(istype(T)) + new /obj/item/ammo_casing/afoam_dart(get_turf(loc)) + +/obj/item/projectile/bullet/foam_dart/on_range(var/atom/A) + . = ..() + var/turf/T = get_turf(loc) + if(istype(T)) + new /obj/item/ammo_casing/afoam_dart(get_turf(loc)) + +/obj/item/projectile/bullet/foam_dart/riot + name = "riot foam dart" + desc = "Whose smart idea was it to use toys as crowd control? Ages 18 and up." + agony = 50 + icon_state = "foamdart_riot_proj" \ No newline at end of file diff --git a/code/modules/projectiles/projectile/explosive.dm b/code/modules/projectiles/projectile/explosive.dm index 15d538c082..307febc8bc 100644 --- a/code/modules/projectiles/projectile/explosive.dm +++ b/code/modules/projectiles/projectile/explosive.dm @@ -9,22 +9,30 @@ does_spin = 0 /obj/item/projectile/bullet/srmrocket/on_hit(atom/target, blocked=0) - ..() if(!isliving(target)) //if the target isn't alive, so is a wall or something explosion(target, 0, 1, 2, 4) else explosion(target, 0, 0, 2, 4) return 1 +/obj/item/projectile/bullet/srmrocket/throw_impact(atom/target, var/speed) + if(!isliving(target)) //if the target isn't alive, so is a wall or something + explosion(target, 0, 1, 2, 4) + else + explosion(target, 0, 0, 2, 4) + qdel(src) /obj/item/projectile/bullet/srmrocket/weak //Used in the jury rigged one. damage = 10 /obj/item/projectile/bullet/srmrocket/weak/on_hit(atom/target, blocked=0) - ..() explosion(target, 0, 0, 2, 4)//No need to have a question. return 1 +/obj/item/projectile/bullet/srmrocket/weak/throw_impact(atom/target, var/speed) + explosion(target, 0, 0, 2, 4)//No need to have a question. + qdel(src) + /*Old vars here for reference. var/devastation = 0 var/heavy_blast = 1 diff --git a/code/modules/projectiles/projectile/special.dm b/code/modules/projectiles/projectile/special.dm index ee75074cc7..142cde4071 100644 --- a/code/modules/projectiles/projectile/special.dm +++ b/code/modules/projectiles/projectile/special.dm @@ -87,7 +87,12 @@ new_temperature = round(new_temperature * temp_factor) L.bodytemperature = new_temperature - + //VOREStation Add Start - The last metroid has escaped from captivity, the galaxy is no longer safe. + if(istype(L, /mob/living/simple_mob/vore/alienanimals/space_jellyfish) && target_temperature <= T0C) + var/mob/living/simple_mob/vore/alienanimals/space_jellyfish/J = L + J.adjustFireLoss(75) + J.movement_cooldown *= 2 + //VOREStation Add End return 1 /obj/item/projectile/temp/hot @@ -138,7 +143,7 @@ light_power = 0.5 light_color = "#33CC00" impact_effect_type = /obj/effect/temp_visual/impact_effect/monochrome_laser - + var/lasermod = 0 combustion = FALSE /obj/item/projectile/energy/floramut/on_hit(var/atom/target, var/blocked = 0) @@ -195,6 +200,7 @@ light_power = 0.5 light_color = "#FFFFFF" impact_effect_type = /obj/effect/temp_visual/impact_effect/monochrome_laser + var/lasermod = 0 /obj/item/projectile/energy/florayield/on_hit(var/atom/target, var/blocked = 0) var/mob/living/M = target diff --git a/code/modules/random_map/_random_map_setup.dm b/code/modules/random_map/_random_map_setup.dm index 01c57f2f76..50570e848c 100644 --- a/code/modules/random_map/_random_map_setup.dm +++ b/code/modules/random_map/_random_map_setup.dm @@ -3,20 +3,29 @@ */ #define MIN_SURFACE_COUNT 500 -#define MIN_RARE_COUNT 200 -#define MIN_DEEP_COUNT 100 -#define RESOURCE_HIGH_MAX 4 -#define RESOURCE_HIGH_MIN 2 -#define RESOURCE_MID_MAX 3 -#define RESOURCE_MID_MIN 1 -#define RESOURCE_LOW_MAX 1 -#define RESOURCE_LOW_MIN 0 +#define MIN_RARE_COUNT 200 +#define MIN_DEEP_COUNT 100 +#define RESOURCE_HIGH_MAX 4 +#define RESOURCE_HIGH_MIN 2 +#define RESOURCE_MID_MAX 3 +#define RESOURCE_MID_MIN 1 +#define RESOURCE_LOW_MAX 1 +#define RESOURCE_LOW_MIN 0 -#define FLOOR_CHAR 0 -#define WALL_CHAR 1 -#define DOOR_CHAR 2 -#define EMPTY_CHAR 3 -#define ROOM_TEMP_CHAR 4 -#define MONSTER_CHAR 5 -#define ARTIFACT_TURF_CHAR 6 -#define ARTIFACT_CHAR 7 \ No newline at end of file +#define FLOOR_CHAR 0 +#define WALL_CHAR 1 +#define DOOR_CHAR 2 +#define EMPTY_CHAR 3 +#define ROOM_TEMP_CHAR 4 +#define MONSTER_CHAR 5 +#define ARTIFACT_TURF_CHAR 6 +#define ARTIFACT_CHAR 7 + +#define TRANSLATE_COORD(X,Y) ((((Y) - 1) * limit_x) + (X)) +#define TRANSLATE_AND_VERIFY_COORD(X,Y) TRANSLATE_AND_VERIFY_COORD_MLEN(X,Y,map.len) + +#define TRANSLATE_AND_VERIFY_COORD_MLEN(X,Y,LEN) \ + tmp_cell = TRANSLATE_COORD(X,Y);\ + if (tmp_cell < 1 || tmp_cell > LEN) {\ + tmp_cell = null;\ + } diff --git a/code/modules/random_map/automata/automata.dm b/code/modules/random_map/automata/automata.dm index f3867d78bd..544b625a33 100644 --- a/code/modules/random_map/automata/automata.dm +++ b/code/modules/random_map/automata/automata.dm @@ -1,3 +1,7 @@ +#define CELL_ALIVE(VAL) (VAL == cell_live_value) +#define KILL_CELL(CELL, NEXT_MAP) NEXT_MAP[CELL] = cell_dead_value; +#define REVIVE_CELL(CELL, NEXT_MAP) NEXT_MAP[CELL] = cell_live_value; + /datum/random_map/automata descriptor = "generic caves" initial_wall_cell = 55 @@ -8,58 +12,60 @@ // Automata-specific procs and processing. /datum/random_map/automata/generate_map() - for(var/i=1;i<=iterations;i++) - iterate(i) + for(var/iter = 1 to iterations) + var/list/next_map[limit_x*limit_y] + var/count + var/is_not_border_left + var/is_not_border_right + var/ilim_u + var/ilim_d + var/bottom_lim = ((limit_y - 1) * limit_x) -/datum/random_map/automata/get_additional_spawns(var/value, var/turf/T) - return + if (!islist(map)) + set_map_size() -/datum/random_map/automata/proc/iterate(var/iteration) - var/list/next_map[limit_x*limit_y] - for(var/x = 1, x <= limit_x, x++) - for(var/y = 1, y <= limit_y, y++) - var/current_cell = get_map_cell(x,y) - next_map[current_cell] = map[current_cell] - var/count = 0 + for (var/i in 1 to (limit_x * limit_y)) + count = 0 - // Every attempt to place this in a proc or a list has resulted in - // the generator being totally bricked and useless. Fuck it. We're - // hardcoding this shit. Feel free to rewrite and PR a fix. ~ Z - var/tmp_cell = get_map_cell(x,y) - if(tmp_cell && cell_is_alive(map[tmp_cell])) count++ - tmp_cell = get_map_cell(x+1,y+1) - if(tmp_cell && cell_is_alive(map[tmp_cell])) count++ - tmp_cell = get_map_cell(x-1,y-1) - if(tmp_cell && cell_is_alive(map[tmp_cell])) count++ - tmp_cell = get_map_cell(x+1,y-1) - if(tmp_cell && cell_is_alive(map[tmp_cell])) count++ - tmp_cell = get_map_cell(x-1,y+1) - if(tmp_cell && cell_is_alive(map[tmp_cell])) count++ - tmp_cell = get_map_cell(x-1,y) - if(tmp_cell && cell_is_alive(map[tmp_cell])) count++ - tmp_cell = get_map_cell(x,y-1) - if(tmp_cell && cell_is_alive(map[tmp_cell])) count++ - tmp_cell = get_map_cell(x+1,y) - if(tmp_cell && cell_is_alive(map[tmp_cell])) count++ - tmp_cell = get_map_cell(x,y+1) - if(tmp_cell && cell_is_alive(map[tmp_cell])) count++ + is_not_border_left = i != 1 && ((i - 1) % limit_x) + is_not_border_right = i % limit_x + + if (CELL_ALIVE(map[i])) // Center row. + ++count + if (is_not_border_left && CELL_ALIVE(map[i - 1])) + ++count + if (is_not_border_right && CELL_ALIVE(map[i + 1])) + ++count + + if (i > limit_x) // top row + ilim_u = i - limit_x + if (CELL_ALIVE(map[ilim_u])) + ++count + if (is_not_border_left && CELL_ALIVE(map[ilim_u - 1])) + ++count + if (is_not_border_right && CELL_ALIVE(map[ilim_u + 1])) + ++count + + if (i <= bottom_lim) // bottom row + ilim_d = i + limit_x + if (CELL_ALIVE(map[ilim_d])) + ++count + if (is_not_border_left && CELL_ALIVE(map[ilim_d - 1])) + ++count + if (is_not_border_right && CELL_ALIVE(map[ilim_d + 1])) + ++count if(count >= cell_threshold) - revive_cell(current_cell, next_map, (iteration == iterations)) - else - kill_cell(current_cell, next_map, (iteration == iterations)) - map = next_map + REVIVE_CELL(i, next_map) + else // Nope. Can't be alive. Kill it. + KILL_CELL(i, next_map) -// Check if a given tile counts as alive for the automata generations. -/datum/random_map/automata/proc/cell_is_alive(var/value) - return (value == cell_live_value) && (value != cell_dead_value) + CHECK_TICK -/datum/random_map/automata/proc/revive_cell(var/target_cell, var/list/use_next_map, var/final_iter) - if(!use_next_map) - use_next_map = map - use_next_map[target_cell] = cell_live_value + map = next_map -/datum/random_map/automata/proc/kill_cell(var/target_cell, var/list/use_next_map, var/final_iter) - if(!use_next_map) - use_next_map = map - use_next_map[target_cell] = cell_dead_value \ No newline at end of file +/datum/random_map/automata/get_additional_spawns(value, turf/T) + return + +#undef KILL_CELL +#undef REVIVE_CELL \ No newline at end of file diff --git a/code/modules/random_map/automata/caves.dm b/code/modules/random_map/automata/caves.dm index ee9d4ddf54..9783c77541 100644 --- a/code/modules/random_map/automata/caves.dm +++ b/code/modules/random_map/automata/caves.dm @@ -18,28 +18,36 @@ return "X" return ..(value) -/datum/random_map/automata/cave_system/revive_cell(var/target_cell, var/list/use_next_map, var/final_iter) - ..() - if(final_iter) - ore_turfs |= target_cell - -/datum/random_map/automata/cave_system/kill_cell(var/target_cell, var/list/use_next_map, var/final_iter) - ..() - if(final_iter) - ore_turfs -= target_cell - // Create ore turfs. /datum/random_map/automata/cave_system/cleanup() + var/tmp_cell + for (var/x = 1 to limit_x) + for (var/y = 1 to limit_y) + tmp_cell = TRANSLATE_COORD(x, y) + if (CELL_ALIVE(map[tmp_cell])) + ore_turfs += tmp_cell + + testing("ASGEN: Found [ore_turfs.len] ore turfs.") var/ore_count = round(map.len/20) + var/door_count = 0 + var/empty_count = 0 while((ore_count>0) && (ore_turfs.len>0)) - if(!priority_process) sleep(-1) + + if(!priority_process) + CHECK_TICK + var/check_cell = pick(ore_turfs) ore_turfs -= check_cell if(prob(75)) map[check_cell] = DOOR_CHAR // Mineral block + door_count += 1 else map[check_cell] = EMPTY_CHAR // Rare mineral block. + empty_count += 1 ore_count-- + + testing("ASGEN: Set [door_count] turfs to random minerals.") + testing("ASGEN: Set [empty_count] turfs to high-chance random minerals.") return 1 /datum/random_map/automata/cave_system/apply_to_turf(var/x,var/y) @@ -62,4 +70,4 @@ T.make_ore(1) get_additional_spawns(map[current_cell],T,get_spawn_dir(x, y)) //VOREStation Edit End - return T \ No newline at end of file + return T diff --git a/code/modules/random_map/noise/noise.dm b/code/modules/random_map/noise/noise.dm index 8e45a21c3f..d8702a59a6 100644 --- a/code/modules/random_map/noise/noise.dm +++ b/code/modules/random_map/noise/noise.dm @@ -10,6 +10,7 @@ var/cell_base // Set in New() var/initial_cell_range // Set in New() var/smoothing_iterations = 0 + var/smooth_single_tiles // Single turfs of different value are not allowed /datum/random_map/noise/New() initial_cell_range = cell_range/5 @@ -35,13 +36,13 @@ // Instantiate the grid. for(var/x = 1, x <= limit_x, x++) for(var/y = 1, y <= limit_y, y++) - map[get_map_cell(x,y)] = 0 + map[TRANSLATE_COORD(x,y)] = 0 // Now dump in the actual random data. - map[get_map_cell(1,1)] = cell_base+rand(initial_cell_range) - map[get_map_cell(1,limit_y)] = cell_base+rand(initial_cell_range) - map[get_map_cell(limit_x,limit_y)] = cell_base+rand(initial_cell_range) - map[get_map_cell(limit_x,1)] = cell_base+rand(initial_cell_range) + map[TRANSLATE_COORD(1,1)] = cell_base+rand(initial_cell_range) + map[TRANSLATE_COORD(1,limit_y)] = cell_base+rand(initial_cell_range) + map[TRANSLATE_COORD(limit_x,limit_y)] = cell_base+rand(initial_cell_range) + map[TRANSLATE_COORD(limit_x,1)] = cell_base+rand(initial_cell_range) /datum/random_map/noise/generate_map() // Begin recursion. @@ -69,33 +70,33 @@ (x,y)----------(x+hsize,y)----------(x+isize,y) */ // Central edge values become average of corners. - map[get_map_cell(x+hsize,y+isize)] = round((\ - map[get_map_cell(x,y+isize)] + \ - map[get_map_cell(x+isize,y+isize)] \ + map[TRANSLATE_COORD(x+hsize,y+isize)] = round((\ + map[TRANSLATE_COORD(x,y+isize)] + \ + map[TRANSLATE_COORD(x+isize,y+isize)] \ )/2) - map[get_map_cell(x+hsize,y)] = round(( \ - map[get_map_cell(x,y)] + \ - map[get_map_cell(x+isize,y)] \ + map[TRANSLATE_COORD(x+hsize,y)] = round(( \ + map[TRANSLATE_COORD(x,y)] + \ + map[TRANSLATE_COORD(x+isize,y)] \ )/2) map[get_map_cell(x,y+hsize)] = round(( \ - map[get_map_cell(x,y+isize)] + \ - map[get_map_cell(x,y)] \ + map[TRANSLATE_COORD(x,y+isize)] + \ + map[TRANSLATE_COORD(x,y)] \ )/2) - map[get_map_cell(x+isize,y+hsize)] = round(( \ - map[get_map_cell(x+isize,y+isize)] + \ - map[get_map_cell(x+isize,y)] \ + map[TRANSLATE_COORD(x+isize,y+hsize)] = round(( \ + map[TRANSLATE_COORD(x+isize,y+isize)] + \ + map[TRANSLATE_COORD(x+isize,y)] \ )/2) // Centre value becomes the average of all other values + possible random variance. - var/current_cell = get_map_cell(x+hsize,y+hsize) + var/current_cell = TRANSLATE_COORD(x+hsize,y+hsize) map[current_cell] = round(( \ - map[get_map_cell(x+hsize,y+isize)] + \ - map[get_map_cell(x+hsize,y)] + \ - map[get_map_cell(x,y+hsize)] + \ - map[get_map_cell(x+isize,y)] \ + map[TRANSLATE_COORD(x+hsize,y+isize)] + \ + map[TRANSLATE_COORD(x+hsize,y)] + \ + map[TRANSLATE_COORD(x,y+hsize)] + \ + map[TRANSLATE_COORD(x+isize,y)] \ )/4) if(prob(random_variance_chance)) @@ -104,58 +105,58 @@ // Recurse until size is too small to subdivide. if(isize>3) - if(!priority_process) sleep(-1) + if(!priority_process) + CHECK_TICK iteration++ subdivide(iteration, x, y, hsize) subdivide(iteration, x+hsize, y, hsize) subdivide(iteration, x, y+hsize, hsize) subdivide(iteration, x+hsize, y+hsize, hsize) +#define NOISE2VALUE(X) CLAMP(round(((X)/cell_range)*10), 0, 9) /datum/random_map/noise/cleanup() - - for(var/i = 1;i<=smoothing_iterations;i++) + var/is_not_border_left + var/is_not_border_right + for(var/i = 1 to smoothing_iterations) var/list/next_map[limit_x*limit_y] - for(var/x = 1, x <= limit_x, x++) - for(var/y = 1, y <= limit_y, y++) - - var/current_cell = get_map_cell(x,y) + for(var/x = 1 to limit_x) + for(var/y = 1 to limit_y) + var/current_cell = TRANSLATE_COORD(x,y) next_map[current_cell] = map[current_cell] - var/val_count = 0 - var/total = 0 + var/val_count = 1 + var/total = map[current_cell] + + is_not_border_left = (x != 1) + is_not_border_right = (x != limit_x) + + // Center row. Center value's already been done above. + if (is_not_border_left) + total += map[TRANSLATE_COORD(x - 1, y)] + ++val_count + if (is_not_border_right) + total += map[TRANSLATE_COORD(x + 1, y)] + ++val_count + + if (y != 1) // top row + total += map[TRANSLATE_COORD(x, y - 1)] + ++val_count + if (is_not_border_left) + total += map[TRANSLATE_COORD(x - 1, y - 1)] + ++val_count + if (is_not_border_right) + total += map[TRANSLATE_COORD(x + 1, y - 1)] + ++val_count + + if (y != limit_y) // bottom row + total += map[TRANSLATE_COORD(x, y + 1)] + ++val_count + if (is_not_border_left) + total += map[TRANSLATE_COORD(x - 1, y + 1)] + ++val_count + if (is_not_border_right) + total += map[TRANSLATE_COORD(x + 1, y + 1)] + ++val_count - // Get the average neighboring value. - var/tmp_cell = get_map_cell(x+1,y+1) - if(tmp_cell) - total += map[tmp_cell] - val_count++ - tmp_cell = get_map_cell(x-1,y-1) - if(tmp_cell) - total += map[tmp_cell] - val_count++ - tmp_cell = get_map_cell(x+1,y-1) - if(tmp_cell) - total += map[tmp_cell] - val_count++ - tmp_cell = get_map_cell(x-1,y+1) - if(tmp_cell) - total += map[tmp_cell] - val_count++ - tmp_cell = get_map_cell(x-1,y) - if(tmp_cell) - total += map[tmp_cell] - val_count++ - tmp_cell = get_map_cell(x,y-1) - if(tmp_cell) - total += map[tmp_cell] - val_count++ - tmp_cell = get_map_cell(x+1,y) - if(tmp_cell) - total += map[tmp_cell] - val_count++ - tmp_cell = get_map_cell(x,y+1) - if(tmp_cell) - total += map[tmp_cell] - val_count++ total = round(total/val_count) if(abs(map[current_cell]-total) <= cell_smooth_amt) @@ -165,4 +166,35 @@ else if(map[current_cell] < total) map[current_cell]-=cell_smooth_amt map[current_cell] = max(0,min(cell_range,map[current_cell])) - map = next_map \ No newline at end of file + map = next_map + + if(smooth_single_tiles) + var/list/buddies = list() + for(var/x in 1 to limit_x - 1) + for(var/y in 1 to limit_y - 1) + var/mapcell = get_map_cell(x,y) + var/list/neighbors = get_neighbors(x, y) + buddies.Cut() + var/mapcellval = NOISE2VALUE(map[mapcell]) + for(var/cell in neighbors) + if(NOISE2VALUE(map[cell]) == mapcellval) + buddies |= cell + if(!length(buddies)) + map[mapcell] = map[pick(neighbors)] +#undef NOISE2VALUE + +/datum/random_map/noise/proc/get_neighbors(x, y, include_diagonals) + . = list() + if(!include_diagonals) + var/static/list/ortho_offsets = list(list(-1, 0), list(1, 0), list(0, 1), list(0,-1)) + for(var/list/offset in ortho_offsets) + var/tmp_cell = get_map_cell(x+offset[1],y+offset[2]) + if(tmp_cell) + . += tmp_cell + else + for(var/dx in -1 to 1) + for(var/dy in -1 to 1) + var/tmp_cell = get_map_cell(x+dx,y+dy) + if(tmp_cell) + . += tmp_cell + . -= get_map_cell(x,y) diff --git a/code/modules/random_map/noise/ore.dm b/code/modules/random_map/noise/ore.dm index a2aaec2d75..a9273f5ec0 100644 --- a/code/modules/random_map/noise/ore.dm +++ b/code/modules/random_map/noise/ore.dm @@ -53,7 +53,7 @@ var/current_cell = map[get_map_cell(x,y)] if(current_cell < rare_val) // Surface metals. - T.resources["hematite"] = rand(RESOURCE_HIGH_MIN, RESOURCE_HIGH_MAX) + T.resources["hematite"] = rand(RESOURCE_MID_MIN, RESOURCE_HIGH_MAX) T.resources["gold"] = rand(RESOURCE_LOW_MIN, RESOURCE_LOW_MAX) T.resources["silver"] = rand(RESOURCE_LOW_MIN, RESOURCE_LOW_MAX) T.resources["uranium"] = rand(RESOURCE_LOW_MIN, RESOURCE_LOW_MAX) @@ -81,7 +81,7 @@ T.resources["lead"] = rand(RESOURCE_LOW_MIN, RESOURCE_MID_MAX) T.resources["hydrogen"] = 0 T.resources["diamond"] = 0 - T.resources["hematite"] = 0 + T.resources["hematite"] = rand(RESOURCE_HIGH_MIN, RESOURCE_HIGH_MAX) T.resources["marble"] = 0 //T.resources["copper"] = 0 //T.resources["tin"] = rand(RESOURCE_MID_MIN, RESOURCE_MID_MAX) @@ -91,7 +91,7 @@ //T.resources["quartz"] = 0 //T.resources["painite"] = 0 else // Deep metals. - T.resources["uranium"] = rand(RESOURCE_LOW_MIN, RESOURCE_LOW_MAX) + T.resources["uranium"] = rand(RESOURCE_MID_MIN, RESOURCE_HIGH_MAX) T.resources["diamond"] = rand(RESOURCE_LOW_MIN, RESOURCE_LOW_MAX) T.resources["verdantium"] = rand(RESOURCE_LOW_MIN, RESOURCE_MID_MAX) T.resources["phoron"] = rand(RESOURCE_HIGH_MIN, RESOURCE_HIGH_MAX) @@ -99,9 +99,9 @@ T.resources["hydrogen"] = rand(RESOURCE_MID_MIN, RESOURCE_MID_MAX) T.resources["marble"] = rand(RESOURCE_MID_MIN, RESOURCE_HIGH_MAX) T.resources["lead"] = rand(RESOURCE_LOW_MIN, RESOURCE_HIGH_MAX) - T.resources["hematite"] = 0 - T.resources["gold"] = 0 - T.resources["silver"] = 0 + T.resources["hematite"] = rand(RESOURCE_HIGH_MIN, RESOURCE_HIGH_MAX) + T.resources["gold"] = rand(RESOURCE_MID_MIN, RESOURCE_HIGH_MAX) + T.resources["silver"] = rand(RESOURCE_MID_MIN, RESOURCE_HIGH_MAX) //T.resources["copper"] = 0 //T.resources["tin"] = 0 //T.resources["bauxite"] = 0 diff --git a/code/modules/reagents/machinery/dispenser/dispenser_presets.dm b/code/modules/reagents/machinery/dispenser/dispenser_presets.dm index 537a980e6c..727720f3a6 100644 --- a/code/modules/reagents/machinery/dispenser/dispenser_presets.dm +++ b/code/modules/reagents/machinery/dispenser/dispenser_presets.dm @@ -133,6 +133,7 @@ /obj/item/weapon/reagent_containers/chem_disp_cartridge/hot_coco, /obj/item/weapon/reagent_containers/chem_disp_cartridge/milk, /obj/item/weapon/reagent_containers/chem_disp_cartridge/cream, + /obj/item/weapon/reagent_containers/chem_disp_cartridge/sugar, /obj/item/weapon/reagent_containers/chem_disp_cartridge/tea, /obj/item/weapon/reagent_containers/chem_disp_cartridge/ice, /obj/item/weapon/reagent_containers/chem_disp_cartridge/mint, diff --git a/code/modules/reagents/machinery/dispenser/reagent_tank.dm b/code/modules/reagents/machinery/dispenser/reagent_tank.dm index 57da88cedd..2ba27cfe39 100644 --- a/code/modules/reagents/machinery/dispenser/reagent_tank.dm +++ b/code/modules/reagents/machinery/dispenser/reagent_tank.dm @@ -155,6 +155,20 @@ icon_state = "barrel" modded = TRUE +/obj/structure/reagent_dispensers/fueltank/barrel/two + name = "explosive barrel" + desc = "A barrel with warning labels painted all over it." + icon = 'icons/obj/objects_vr.dmi' + icon_state = "barrel2" + modded = FALSE + +/obj/structure/reagent_dispensers/fueltank/barrel/three + name = "fuel barrel" + desc = "An open-topped barrel full of nasty-looking liquid." + icon = 'icons/obj/objects_vr.dmi' + icon_state = "barrel3" + modded = FALSE + /obj/structure/reagent_dispensers/fueltank/barrel/attackby(obj/item/weapon/W as obj, mob/user as mob) if (W.is_wrench()) //can't wrench it shut, it's always open return @@ -271,6 +285,31 @@ . = ..() reagents.add_reagent("condensedcapsaicin",1000) +/obj/structure/reagent_dispensers/virusfood + name = "Virus Food Dispenser" + desc = "A dispenser of virus food. Yum." + icon = 'icons/obj/virology_vr.dmi' + icon_state = "virusfoodtank" + anchored = TRUE + density = FALSE + amount_per_transfer_from_this = 10 + +/obj/structure/reagent_dispensers/virusfood/Initialize() + . = ..() + reagents.add_reagent("virusfood", 1000) + +/obj/structure/reagent_dispensers/acid + name = "Sulphuric Acid Dispenser" + desc = "A dispenser of acid for industrial processes." + icon = 'icons/obj/objects.dmi' + icon_state = "acidtank" + anchored = TRUE + density = FALSE + amount_per_transfer_from_this = 10 + +/obj/structure/reagent_dispensers/acid/Initialize() + . = ..() + reagents.add_reagent("sacid", 1000) /obj/structure/reagent_dispensers/water_cooler name = "Water-Cooler" @@ -426,30 +465,6 @@ icon = 'icons/obj/stationobjs.dmi' icon_state = "nuclearbomb0" -/obj/structure/reagent_dispensers/virusfood - name = "Virus Food Dispenser" - desc = "A dispenser of virus food. Yum." - icon = 'icons/obj/virology_vr.dmi' - icon_state = "virusfoodtank" - amount_per_transfer_from_this = 10 - anchored = TRUE - -/obj/structure/reagent_dispensers/virusfood/Initialize() - . = ..() - reagents.add_reagent("virusfood", 1000) - -/obj/structure/reagent_dispensers/acid - name = "Sulphuric Acid Dispenser" - desc = "A dispenser of acid for industrial processes." - icon = 'icons/obj/objects.dmi' - icon_state = "acidtank" - amount_per_transfer_from_this = 10 - anchored = TRUE - -/obj/structure/reagent_dispensers/acid/Initialize() - . = ..() - reagents.add_reagent("sacid", 1000) - //Cooking oil refill tank /obj/structure/reagent_dispensers/cookingoil name = "cooking oil tank" @@ -460,7 +475,7 @@ /obj/structure/reagent_dispensers/cookingoil/New() ..() - reagents.add_reagent("cornoil",5000) + reagents.add_reagent("cookingoil",5000) /obj/structure/reagent_dispensers/cookingoil/bullet_act(var/obj/item/projectile/Proj) if(Proj.get_structure_damage()) diff --git a/code/modules/reagents/machinery/grinder.dm b/code/modules/reagents/machinery/grinder.dm index 3b5ea9e4fd..738830ed1c 100644 --- a/code/modules/reagents/machinery/grinder.dm +++ b/code/modules/reagents/machinery/grinder.dm @@ -232,7 +232,7 @@ var/obj/item/stack/stack = O if(istype(stack)) var/list/sheet_components = sheet_reagents[stack.type] - var/amount_to_take = max(0,min(stack.amount,round(remaining_volume/REAGENTS_PER_SHEET))) + var/amount_to_take = max(0,min(stack.get_amount(),round(remaining_volume/REAGENTS_PER_SHEET))) if(amount_to_take) stack.use(amount_to_take) if(QDELETED(stack)) diff --git a/code/modules/reagents/reactions/instant/drinks.dm b/code/modules/reagents/reactions/instant/drinks.dm index bd56670ec5..c2e0521ee6 100644 --- a/code/modules/reagents/reactions/instant/drinks.dm +++ b/code/modules/reagents/reactions/instant/drinks.dm @@ -141,7 +141,7 @@ name = "Space Beer" id = "spacebeer" result = "beer" - required_reagents = list("cornoil" = 10) + required_reagents = list("cornoil" = 5, "flour" = 5) catalysts = list("enzyme" = 5) result_amount = 10 @@ -185,17 +185,25 @@ required_reagents = list("gin" = 2, "tonic" = 1) result_amount = 3 +/decl/chemical_reaction/instant/drinks/rum_and_cola + name = "Rum and Cola" + id = "rumandcola" + result = "rumandcola" + required_reagents = list("rum" = 2, "cola" = 1) + result_amount = 3 + /decl/chemical_reaction/instant/drinks/cuba_libre name = "Cuba Libre" id = "cubalibre" result = "cubalibre" - required_reagents = list("rum" = 2, "cola" = 1) + required_reagents = list("rumandcola" = 3, "limejuice" = 1) result_amount = 3 /decl/chemical_reaction/instant/drinks/martini name = "Classic Martini" id = "martini" result = "martini" + inhibitors = list("bitters" = 1) required_reagents = list("gin" = 2, "vermouth" = 1) result_amount = 3 @@ -329,14 +337,7 @@ name = "Long Island Iced Tea" id = "longislandicedtea" result = "longislandicedtea" - required_reagents = list("vodka" = 1, "gin" = 1, "tequilla" = 1, "cubalibre" = 3) - result_amount = 6 - -/decl/chemical_reaction/instant/drinks/icedtea - name = "Long Island Iced Tea" - id = "longislandicedtea" - result = "longislandicedtea" - required_reagents = list("vodka" = 1, "gin" = 1, "tequilla" = 1, "cubalibre" = 3) + required_reagents = list("vodka" = 1, "gin" = 1, "tequilla" = 1, "rumandcola" = 3) result_amount = 6 /decl/chemical_reaction/instant/drinks/threemileisland @@ -693,6 +694,13 @@ required_reagents = list("orangejuice" = 2, "cola" = 1) result_amount = 3 +/decl/chemical_reaction/instant/drinks/brownstar_decaf + name = "Decaf Brown Star" + id = "brownstar_decaf" + result = "brownstar_decaf" + required_reagents = list("orangejuice" = 2, "decafcola" = 1) + result_amount = 3 + /decl/chemical_reaction/instant/drinks/milkshake name = "Milkshake" id = "milkshake" @@ -756,6 +764,13 @@ required_reagents = list("tea" = 5, "mint" = 1) result_amount = 6 +/decl/chemical_reaction/instant/drinks/minttea_decaf + name = "Decaf Mint Tea" + id = "decafminttea" + result = "decafminttea" + required_reagents = list("decaftea" = 5, "mint" = 1) + result_amount = 6 + /decl/chemical_reaction/instant/drinks/lemontea name = "Lemon Tea" id = "lemontea" @@ -763,6 +778,13 @@ required_reagents = list("tea" = 5, "lemonjuice" = 1) result_amount = 6 +/decl/chemical_reaction/instant/drinks/lemontea_decaf + name = "Decaf Lemon Tea" + id = "decaflemontea" + result = "decaflemontea" + required_reagents = list("decaftea" = 5, "lemonjuice" = 1) + result_amount = 6 + /decl/chemical_reaction/instant/drinks/limetea name = "Lime Tea" id = "limetea" @@ -770,6 +792,13 @@ required_reagents = list("tea" = 5, "limejuice" = 1) result_amount = 6 +/decl/chemical_reaction/instant/drinks/limetea_decaf + name = "Decaf Lime Tea" + id = "decaflimetea" + result = "decaflimetea" + required_reagents = list("decaftea" = 5, "limejuice" = 1) + result_amount = 6 + /decl/chemical_reaction/instant/drinks/orangetea name = "Orange Tea" id = "orangetea" @@ -777,6 +806,13 @@ required_reagents = list("tea" = 5, "orangejuice" = 1) result_amount = 6 +/decl/chemical_reaction/instant/drinks/orangetea_decaf + name = "Decaf Orange Tea" + id = "decaforangetea" + result = "decaforangetea" + required_reagents = list("decaftea" = 5, "orangejuice" = 1) + result_amount = 6 + /decl/chemical_reaction/instant/drinks/berrytea name = "Berry Tea" id = "berrytea" @@ -784,6 +820,13 @@ required_reagents = list("tea" = 5, "berryjuice" = 1) result_amount = 6 +/decl/chemical_reaction/instant/drinks/berrytea_decaf + name = "Decaf Berry Tea" + id = "decafberrytea" + result = "decafberrytea" + required_reagents = list("decaftea" = 5, "berryjuice" = 1) + result_amount = 6 + /decl/chemical_reaction/instant/drinks/sakebomb name = "Sake Bomb" id = "sakebomb" @@ -865,7 +908,7 @@ name = "Debugger" id = "debugger" result = "debugger" - required_reagents = list("fuel" = 1, "sugar" = 2, "cornoil" = 2) + required_reagents = list("fuel" = 1, "sugar" = 2, "cookingoil" = 2) result_amount = 5 /decl/chemical_reaction/instant/drinks/spacersbrew @@ -1064,7 +1107,7 @@ id = "daiquiri" result = "daiquiri" required_reagents = list("rum" = 3, "limejuice" = 2, "sugar" = 1) - result_amount = 5 + result_amount = 6 /decl/chemical_reaction/instant/drinks/mintjulep name = "Mint Julep" @@ -1077,7 +1120,7 @@ name = "Paloma" id = "paloma" result = "paloma" - required_reagents = list("orangejuice" = 1, "sodawater" = 1, "tequilla" = 1) + required_reagents = list("sodawater" = 1, "tequillasunrise" = 2) result_amount = 3 /decl/chemical_reaction/instant/drinks/mojito @@ -1163,14 +1206,14 @@ name = "Oil Slick" id = "oilslick" result = "oilslick" - required_reagents = list("cornoil" = 2, "honey" = 1) + required_reagents = list("cookingoil" = 2, "honey" = 1) result_amount = 3 /decl/chemical_reaction/instant/drinks/slimeslam name = "Slick Slime Slammer" id = "slimeslammer" result = "slimeslammer" - required_reagents = list("cornoil" = 2, "peanutbutter" = 1) + required_reagents = list("cookingoil" = 2, "peanutbutter" = 1) result_amount = 3 /decl/chemical_reaction/instant/drinks/virginsexonthebeach @@ -1212,7 +1255,7 @@ name = "Soda Oil" id = "sodaoil" result = "sodaoil" - required_reagents = list("cornoil" = 4, "sodawater" = 1, "carbon" = 1, "tricordrazine" = 1) + required_reagents = list("cookingoil" = 4, "sodawater" = 1, "carbon" = 1, "tricordrazine" = 1) result_amount = 6 /decl/chemical_reaction/instant/drinks/fusionnaire diff --git a/code/modules/reagents/reactions/instant/drinks_vr.dm b/code/modules/reagents/reactions/instant/drinks_vr.dm index 5f32c7e5f8..5948562cd6 100644 --- a/code/modules/reagents/reactions/instant/drinks_vr.dm +++ b/code/modules/reagents/reactions/instant/drinks_vr.dm @@ -137,6 +137,7 @@ name = "Choccy Milk" id = "choccymilk" result = "choccymilk" + inhibitors = list("enzyme" = 1) required_reagents = list("milk" = 3, "coco" = 1) result_amount = 4 diff --git a/code/modules/reagents/reactions/instant/food.dm b/code/modules/reagents/reactions/instant/food.dm index 952af8014b..393c033494 100644 --- a/code/modules/reagents/reactions/instant/food.dm +++ b/code/modules/reagents/reactions/instant/food.dm @@ -31,6 +31,7 @@ id = "chocolate_bar" result = null required_reagents = list("soymilk" = 2, "coco" = 2, "sugar" = 2) + catalysts = list("enzyme" = 5) result_amount = 1 /decl/chemical_reaction/instant/food/chocolate_bar/on_reaction(var/datum/reagents/holder, var/created_volume) @@ -44,6 +45,7 @@ id = "chocolate_bar" result = null required_reagents = list("milk" = 2, "coco" = 2, "sugar" = 2) + catalysts = list("enzyme" = 5) result_amount = 1 /decl/chemical_reaction/instant/food/chocolate_bar2/on_reaction(var/datum/reagents/holder, var/created_volume) @@ -52,6 +54,22 @@ new /obj/item/weapon/reagent_containers/food/snacks/chocolatebar(location) return +/decl/chemical_reaction/instant/food/cookingoilcorn + name = "Cooking Oil" + id = "cookingoilcorn" + result = "cookingoil" + required_reagents = list("cornoil" = 10) + catalysts = list("enzyme" = 5) + result_amount = 10 + +/decl/chemical_reaction/instant/food/cookingoilpeanut + name = "Cooking Oil" + id = "cookingoilpeanut" + result = "cookingoil" + required_reagents = list("peanutoil" = 10) + catalysts = list("enzyme" = 5) + result_amount = 10 + /decl/chemical_reaction/instant/food/soysauce name = "Soy Sauce" id = "soysauce" @@ -85,7 +103,7 @@ name = "mayonnaise" id = "mayo" result = "mayo" - required_reagents = list("egg" = 9, "cornoil" = 5, "lemonjuice" = 5, "sodiumchloride" = 1) + required_reagents = list("egg" = 9, "cookingoil" = 5, "lemonjuice" = 5, "sodiumchloride" = 1) result_amount = 15 /decl/chemical_reaction/instant/food/cheesewheel @@ -107,6 +125,7 @@ id = "meatball" result = null required_reagents = list("protein" = 3, "flour" = 5) + catalysts = list("enzyme" = 5) result_amount = 3 /decl/chemical_reaction/instant/food/meatball/on_reaction(var/datum/reagents/holder, var/created_volume) diff --git a/code/modules/reagents/reactions/instant/instant_vr.dm b/code/modules/reagents/reactions/instant/instant_vr.dm index ca9598ab0b..63b764dafe 100644 --- a/code/modules/reagents/reactions/instant/instant_vr.dm +++ b/code/modules/reagents/reactions/instant/instant_vr.dm @@ -270,9 +270,7 @@ var/chosen = pick(material) if(chosen in rare_types) spawn_amount = rand(1,15) - var/obj/item/stack/material/C = new chosen - C.amount = spawn_amount - C.loc = get_turf(holder.my_atom) + new chosen(get_turf(holder.my_atom), spawn_amount) /decl/chemical_reaction/instant/slimelight name = "Slime Glow" @@ -296,9 +294,7 @@ result_amount = 1 /decl/chemical_reaction/instant/slimephoron/on_reaction(var/datum/reagents/holder) - var/obj/item/stack/material/phoron/P = new /obj/item/stack/material/phoron - P.amount = 10 - P.loc = get_turf(holder.my_atom) + new /obj/item/stack/material/phoron(get_turf(holder.my_atom), 10) /decl/chemical_reaction/instant/slimefreeze name = "Slime Freeze" @@ -404,7 +400,7 @@ /mob/living/simple_mob/animal/passive/bird/parrot/poly, /mob/living/simple_mob/animal/sif/fluffy, /mob/living/simple_mob/animal/sif/fluffy/silky, - /mob/living/simple_mob/animal/passive/snake/noodle, + /mob/living/simple_mob/animal/passive/snake/python/noodle, /mob/living/simple_mob/slime/xenobio/rainbow/kendrick, /mob/living/simple_mob/animal/space/space_worm, //Space Worm parts that aren't proper heads /mob/living/simple_mob/animal/space/space_worm/head/severed, diff --git a/code/modules/reagents/reagent_containers/_reagent_containers.dm b/code/modules/reagents/reagent_containers/_reagent_containers.dm index 10196da040..dba86fba0c 100644 --- a/code/modules/reagents/reagent_containers/_reagent_containers.dm +++ b/code/modules/reagents/reagent_containers/_reagent_containers.dm @@ -91,53 +91,41 @@ return /obj/item/weapon/reagent_containers/proc/standard_feed_mob(var/mob/user, var/mob/target) // This goes into attack - if(!istype(target)) - return 0 + if(!istype(target) || !target.can_feed()) + return FALSE if(!reagents || !reagents.total_volume) to_chat(user, "\The [src] is empty.") - return 1 + return TRUE - if(target == user) - if(istype(user, /mob/living/carbon/human)) - var/mob/living/carbon/human/H = user - if(!H.check_has_mouth()) - to_chat(user, "Where do you intend to put \the [src]? You don't have a mouth!") - return - var/obj/item/blocked = H.check_mouth_coverage() - if(blocked) - to_chat(user, "\The [blocked] is in the way!") - return + if(ishuman(target)) + var/mob/living/carbon/human/H = target + if(!H.check_has_mouth()) + to_chat(user, "Where do you intend to put \the [src]? [user == target ? "You don't" : "\The [H] doesn't"] have a mouth!") + return FALSE + var/obj/item/blocked = H.check_mouth_coverage() + if(blocked) + to_chat(user, "\The [blocked] is in the way!") + return FALSE - user.setClickCooldown(user.get_attack_speed(src)) //puts a limit on how fast people can eat/drink things + user.setClickCooldown(user.get_attack_speed(src)) //puts a limit on how fast people can eat/drink things + if(user == target) self_feed_message(user) reagents.trans_to_mob(user, issmall(user) ? CEILING(amount_per_transfer_from_this/2, 1) : amount_per_transfer_from_this, CHEM_INGEST) feed_sound(user) - return 1 + return TRUE + else - if(istype(target, /mob/living/carbon/human)) - var/mob/living/carbon/human/H = target - if(!H.check_has_mouth()) - to_chat(user, "Where do you intend to put \the [src]? \The [H] doesn't have a mouth!") - return - var/obj/item/blocked = H.check_mouth_coverage() - if(blocked) - to_chat(user, "\The [blocked] is in the way!") - return - other_feed_message_start(user, target) - - user.setClickCooldown(user.get_attack_speed(src)) if(!do_mob(user, target)) - return - + return FALSE other_feed_message_finish(user, target) var/contained = reagentlist() add_attack_logs(user,target,"Fed from [src.name] containing [contained]") reagents.trans_to_mob(target, amount_per_transfer_from_this, CHEM_INGEST) feed_sound(user) - return 1 + return TRUE /obj/item/weapon/reagent_containers/proc/standard_pour_into(var/mob/user, var/atom/target) // This goes into afterattack and yes, it's atom-level if(!target.is_open_container() || !target.reagents) diff --git a/code/modules/reagents/reagent_containers/borghypo.dm b/code/modules/reagents/reagent_containers/borghypo.dm index 813a79431d..96bb210600 100644 --- a/code/modules/reagents/reagent_containers/borghypo.dm +++ b/code/modules/reagents/reagent_containers/borghypo.dm @@ -155,6 +155,7 @@ "milk", "mint", "orangejuice", + "redwine", "rum", "sake", "sodawater", @@ -172,8 +173,7 @@ "vodka", "water", "watermelonjuice", - "whiskey", - "wine") + "whiskey") /obj/item/weapon/reagent_containers/borghypo/service/attack(var/mob/M, var/mob/user) return diff --git a/code/modules/reagents/reagent_containers/glass.dm b/code/modules/reagents/reagent_containers/glass.dm index fba1372018..e4e3849ac2 100644 --- a/code/modules/reagents/reagent_containers/glass.dm +++ b/code/modules/reagents/reagent_containers/glass.dm @@ -160,6 +160,10 @@ matter = list(MAT_GLASS = 500) drop_sound = 'sound/items/drop/glass.ogg' pickup_sound = 'sound/items/pickup/glass.ogg' + var/rating = 1 + +/obj/item/weapon/reagent_containers/glass/beaker/get_rating() + return rating /obj/item/weapon/reagent_containers/glass/beaker/Initialize() . = ..() @@ -214,6 +218,7 @@ amount_per_transfer_from_this = 10 possible_transfer_amounts = list(5,10,15,25,30,60,120) flags = OPENCONTAINER + rating = 3 /obj/item/weapon/reagent_containers/glass/beaker/noreact name = "cryostasis beaker" @@ -235,6 +240,7 @@ amount_per_transfer_from_this = 10 possible_transfer_amounts = list(5,10,15,25,30,60,120,300) flags = OPENCONTAINER + rating = 5 /obj/item/weapon/reagent_containers/glass/beaker/vial name = "vial" diff --git a/code/modules/reagents/reagent_containers/hypospray.dm b/code/modules/reagents/reagent_containers/hypospray.dm index 62a469d315..7c80c6c07a 100644 --- a/code/modules/reagents/reagent_containers/hypospray.dm +++ b/code/modules/reagents/reagent_containers/hypospray.dm @@ -181,6 +181,7 @@ else . += "It is spent." + /obj/item/weapon/reagent_containers/hypospray/autoinjector/detox name = "autoinjector (antitox)" icon_state = "green" @@ -207,6 +208,11 @@ origin_tech = list(TECH_BIO = 4) filled_reagents = list("inaprovaline" = 15) +/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/empty //for the autolathe + name = "large autoinjector" + filled = 0 + filled_reagents = list() + /obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/brute name = "trauma hypo" desc = "A refined version of the standard autoinjector, allowing greater capacity. This one is made to be used on victims of \ diff --git a/code/modules/reagents/reagent_containers/pill_vr.dm b/code/modules/reagents/reagent_containers/pill_vr.dm index b9046d96b3..d956861a4b 100644 --- a/code/modules/reagents/reagent_containers/pill_vr.dm +++ b/code/modules/reagents/reagent_containers/pill_vr.dm @@ -146,3 +146,13 @@ . = ..() reagents.add_reagent("sleevingcure", 1) color = reagents.get_color() + +/obj/item/weapon/reagent_containers/pill/airlock + name = "\'Airlock\' Pill" + desc = "Neutralizes toxins and provides a mild analgesic effect." + icon_state = "pill2" + +/obj/item/weapon/reagent_containers/pill/airlock/New() + ..() + reagents.add_reagent("anti_toxin", 15) + reagents.add_reagent("paracetamol", 5) \ No newline at end of file diff --git a/code/modules/reagents/reagents/_reagents.dm b/code/modules/reagents/reagents/_reagents.dm index 3ffb7e58e5..08e34c9eb9 100644 --- a/code/modules/reagents/reagents/_reagents.dm +++ b/code/modules/reagents/reagents/_reagents.dm @@ -168,20 +168,22 @@ if(M.species.allergen_reaction & AG_TOX_DMG) M.adjustToxLoss(damage_severity) if(M.species.allergen_reaction & AG_OXY_DMG) - M.adjustOxyLoss(damage_severity) + M.adjustOxyLoss(damage_severity*1.5) //VOREStation Edit if(prob(2.5*disable_severity)) M.emote(pick("cough","gasp","choke")) if(M.species.allergen_reaction & AG_EMOTE) if(prob(2.5*disable_severity)) //this has a higher base chance, but not *too* high M.emote(pick("pale","shiver","twitch")) if(M.species.allergen_reaction & AG_PAIN) - M.adjustHalLoss(disable_severity) + M.adjustHalLoss(disable_severity*2) //VOREStation Edit if(M.species.allergen_reaction & AG_WEAKEN) M.Weaken(disable_severity) if(M.species.allergen_reaction & AG_BLURRY) M.eye_blurry = max(M.eye_blurry, disable_severity) if(M.species.allergen_reaction & AG_SLEEPY) M.drowsyness = max(M.drowsyness, disable_severity) + if(M.species.allergen_reaction & AG_CONFUSE) //VOREStation Addition + M.Confuse(disable_severity/4) //VOREStation Addition remove_self(removed) return diff --git a/code/modules/reagents/reagents/food_drinks.dm b/code/modules/reagents/reagents/food_drinks.dm index eac9d25471..8de9abd0b3 100644 --- a/code/modules/reagents/reagents/food_drinks.dm +++ b/code/modules/reagents/reagents/food_drinks.dm @@ -234,6 +234,12 @@ to_chat(M, "Searing hot oil burns you, wash it off quick!") lastburnmessage = world.time +/datum/reagent/nutriment/triglyceride/oil/cooking + name = "Cooking Oil" + id = "cookingoil" + description = "A general-purpose cooking oil." + reagent_state = LIQUID + /datum/reagent/nutriment/triglyceride/oil/corn name = "Corn Oil" id = "cornoil" @@ -309,6 +315,20 @@ color = "#FFFFAA" allergen_type = ALLERGEN_EGGS //Eggs contain egg +/datum/reagent/nutriment/protein/murk + name = "murkfin protein" + id = "murk_protein" + taste_description = "mud" + color = "#664330" + allergen_type = ALLERGEN_FISH //Murkfin is fish + +/datum/reagent/nutriment/protein/bean + name = "beans" + id = "bean_protein" + taste_description = "beans" + color = "#562e0b" + allergen_type = ALLERGEN_BEANS //Made from soy beans + /datum/reagent/nutriment/honey name = "Honey" id = "honey" @@ -377,7 +397,7 @@ taste_mult = 1.3 nutriment_factor = 1 color = "#482000" - allergen_type = ALLERGEN_COFFEE //Again, coffee contains coffee + allergen_type = ALLERGEN_COFFEE | ALLERGEN_STIMULANT //Again, coffee contains coffee /datum/reagent/nutriment/tea name = "Tea Powder" @@ -387,6 +407,16 @@ taste_mult = 1.3 nutriment_factor = 1 color = "#101000" + allergen_type = ALLERGEN_STIMULANT //Strong enough to contain caffeine + +/datum/reagent/nutriment/decaf_tea + name = "Decaf Tea Powder" + id = "decafteapowder" + description = "A dark, tart powder made from black tea leaves, treated to remove caffeine content." + taste_description = "tartness" + taste_mult = 1.3 + nutriment_factor = 1 + color = "#101000" /datum/reagent/nutriment/coco name = "Coco Powder" @@ -629,8 +659,6 @@ color = "#365E30" overdose = REAGENTS_OVERDOSE -//SYNNONO MEME FOODS EXPANSION - Credit to Synnono - /datum/reagent/spacespice name = "Wurmwoad" id = "spacespice" @@ -1221,6 +1249,7 @@ cup_icon_state = "cup_tea" cup_name = "cup of tea" cup_desc = "Tasty black tea, it has antioxidants, it's good for you!" + allergen_type = ALLERGEN_STIMULANT //Black tea strong enough to have significant caffeine content /datum/reagent/drink/tea/affect_ingest(var/mob/living/carbon/M, var/alien, var/removed) ..() @@ -1228,6 +1257,23 @@ return M.adjustToxLoss(-0.5 * removed) +/datum/reagent/drink/tea/decaf + name = "Decaf Tea" + id = "teadecaf" + description = "Tasty black tea, it has antioxidants, it's good for you, and won't keep you up at night!" + color = "#832700" + adj_dizzy = 0 + adj_drowsy = 0 //Decaf won't help you here. + adj_sleepy = 0 + + glass_name = "cup of decaf tea" + glass_desc = "Tasty black tea, it has antioxidants, it's good for you, and won't keep you up at night!" + + cup_name = "cup of decaf tea" + cup_desc = "Tasty black tea, it has antioxidants, it's good for you, and won't keep you up at night!" + allergen_type = null //Certified cat-safe! + + /datum/reagent/drink/tea/icetea name = "Iced Tea" id = "icetea" @@ -1262,6 +1308,16 @@ M.bodytemperature += 0.5 //M.adjustToxLoss(5 * removed) //VOREStation Removal +/datum/reagent/drink/tea/icetea/decaf + name = "Decaf Iced Tea" + glass_name = "decaf iced tea" + cup_name = "cup of decaf iced tea" + id = "iceteadecaf" + adj_dizzy = 0 + adj_drowsy = 0 + adj_sleepy = 0 + allergen_type = null + /datum/reagent/drink/tea/minttea name = "Mint Tea" id = "minttea" @@ -1275,6 +1331,16 @@ cup_name = "cup of mint tea" cup_desc = "A tasty mixture of mint and tea. It's apparently good for you!" +/datum/reagent/drink/tea/minttea/decaf + name = "Decaf Mint Tea" + glass_name = "decaf mint tea" + cup_name = "cup of decaf mint tea" + id = "mintteadecaf" + adj_dizzy = 0 + adj_drowsy = 0 + adj_sleepy = 0 + allergen_type = null + /datum/reagent/drink/tea/lemontea name = "Lemon Tea" id = "lemontea" @@ -1287,7 +1353,17 @@ cup_name = "cup of lemon tea" cup_desc = "A tasty mixture of lemon and tea. It's apparently good for you!" - allergen_type = ALLERGEN_FRUIT //Made with lemon juice + allergen_type = ALLERGEN_FRUIT | ALLERGEN_STIMULANT //Made with lemon juice, still tea + +/datum/reagent/drink/tea/lemontea/decaf + name = "Decaf Lemon Tea" + glass_name = "decaf lemon tea" + cup_name = "cup of decaf lemon tea" + id = "lemonteadecaf" + adj_dizzy = 0 + adj_drowsy = 0 + adj_sleepy = 0 + allergen_type = ALLERGEN_FRUIT //No caffine, still lemon. /datum/reagent/drink/tea/limetea name = "Lime Tea" @@ -1301,7 +1377,17 @@ cup_name = "cup of lime tea" cup_desc = "A tasty mixture of lime and tea. It's apparently good for you!" - allergen_type = ALLERGEN_FRUIT //Made with lime juice + allergen_type = ALLERGEN_FRUIT | ALLERGEN_STIMULANT //Made with lime juice, still tea + +/datum/reagent/drink/tea/limetea/decaf + name = "Decaf Lime Tea" + glass_name = "decaf lime tea" + cup_name = "cup of decaf lime tea" + id = "limeteadecaf" + adj_dizzy = 0 + adj_drowsy = 0 + adj_sleepy = 0 + allergen_type = ALLERGEN_FRUIT //No caffine, still lime. /datum/reagent/drink/tea/orangetea name = "Orange Tea" @@ -1315,7 +1401,17 @@ cup_name = "cup of orange tea" cup_desc = "A tasty mixture of orange and tea. It's apparently good for you!" - allergen_type = ALLERGEN_FRUIT //Made with orange juice + allergen_type = ALLERGEN_FRUIT | ALLERGEN_STIMULANT //Made with orange juice, still tea + +/datum/reagent/drink/tea/orangetea/decaf + name = "Decaf orange Tea" + glass_name = "decaf orange tea" + cup_name = "cup of decaf orange tea" + id = "orangeteadecaf" + adj_dizzy = 0 + adj_drowsy = 0 + adj_sleepy = 0 + allergen_type = ALLERGEN_FRUIT //No caffine, still orange. /datum/reagent/drink/tea/berrytea name = "Berry Tea" @@ -1329,7 +1425,17 @@ cup_name = "cup of berry tea" cup_desc = "A tasty mixture of berries and tea. It's apparently good for you!" - allergen_type = ALLERGEN_FRUIT //Made with berry juice + allergen_type = ALLERGEN_FRUIT | ALLERGEN_STIMULANT //Made with berry juice, still tea + +/datum/reagent/drink/tea/berrytea/decaf + name = "Decaf Berry Tea" + glass_name = "decaf berry tea" + cup_name = "cup of decaf berry tea" + id = "berryteadecaf" + adj_dizzy = 0 + adj_drowsy = 0 + adj_sleepy = 0 + allergen_type = ALLERGEN_FRUIT //No caffine, still berries. /datum/reagent/drink/greentea name = "Green Tea" @@ -1344,18 +1450,29 @@ cup_name = "cup of green tea" cup_desc = "A subtle blend of green tea. It's apparently good for you!" -/datum/reagent/drink/chaitea +/datum/reagent/drink/tea/chaitea name = "Chai Tea" id = "chaitea" - description = "A tea spiced with cinnamon and cloves." + description = "A milky tea spiced with cinnamon and cloves." color = "#A8442C" taste_description = "creamy cinnamon and spice" glass_name = "chai tea" - glass_desc = "A tea spiced with cinnamon and cloves." + glass_desc = "A milky tea spiced with cinnamon and cloves." cup_name = "cup of chai tea" - cup_desc = "A tea spiced with cinnamon and cloves." + cup_desc = "A milky tea spiced with cinnamon and cloves." + allergen_type = ALLERGEN_STIMULANT|ALLERGEN_DAIRY //Made with milk and tea. + +/datum/reagent/drink/tea/chaitea/decaf + name = "Decaf Chai Tea" + glass_name = "decaf chai tea" + cup_name = "cup of decaf chai tea" + id = "chaiteadecaf" + adj_dizzy = 0 + adj_drowsy = 0 + adj_sleepy = 0 + allergen_type = ALLERGEN_DAIRY //No caffeine, still milk. /datum/reagent/drink/coffee name = "Coffee" @@ -1376,7 +1493,7 @@ glass_name = "coffee" glass_desc = "Don't drop it, or you'll send scalding liquid and glass shards everywhere." - allergen_type = ALLERGEN_COFFEE //Apparently coffee contains coffee + allergen_type = ALLERGEN_COFFEE | ALLERGEN_STIMULANT //Apparently coffee contains coffee /datum/reagent/drink/coffee/affect_ingest(var/mob/living/carbon/M, var/alien, var/removed) if(alien == IS_DIONA) @@ -1489,7 +1606,7 @@ glass_name = "decaf coffee" glass_desc = "Basically just brown, bitter water." - allergen_type = ALLERGEN_COFFEE //Decaf coffee would still likely trigger allergy symptoms. + allergen_type = ALLERGEN_COFFEE //Decaf coffee is still coffee, just less stimulating. /datum/reagent/drink/hot_coco name = "Hot Chocolate" @@ -1625,7 +1742,18 @@ glass_name = "Brown Star" glass_desc = "It's not what it sounds like..." - allergen_type = ALLERGEN_FRUIT //Made with orangejuice and cola + allergen_type = ALLERGEN_FRUIT | ALLERGEN_STIMULANT //Made with orangejuice and cola + +/datum/reagent/drink/soda/brownstar_decaf //For decaf starkist + name = "Decaf Brown Star" + id = "brownstar_decaf" + description = "It's not what it sounds like..." + taste_description = "orange and cola soda" + color = "#9F3400" + adj_temp = -2 + + glass_name = "Brown Star" + glass_desc = "It's not what it sounds like..." /datum/reagent/drink/milkshake name = "Milkshake" @@ -1723,7 +1851,7 @@ glass_name = "Rewriter" glass_desc = "The secret of the sanctuary of the Libarian..." - allergen_type = ALLERGEN_FRUIT|ALLERGEN_COFFEE //Made with space mountain wind (Fruit) + allergen_type = ALLERGEN_FRUIT|ALLERGEN_COFFEE|ALLERGEN_STIMULANT //Made with space mountain wind (Fruit, caffeine) /datum/reagent/drink/rewriter/affect_ingest(var/mob/living/carbon/M, var/alien, var/removed) ..() @@ -1741,6 +1869,7 @@ glass_name = "Nuka-Cola" glass_desc = "Don't cry, Don't raise your eye, It's only nuclear wasteland" glass_special = list(DRINK_FIZZ) + allergen_type = ALLERGEN_STIMULANT /datum/reagent/drink/soda/nuka_cola/affect_ingest(var/mob/living/carbon/M, var/alien, var/removed) ..() @@ -1774,6 +1903,20 @@ glass_name = "Space Cola" glass_desc = "A glass of refreshing Space Cola" glass_special = list(DRINK_FIZZ) + allergen_type = ALLERGEN_STIMULANT //Cola is typically caffeinated. + +/datum/reagent/drink/soda/decaf_cola + name = "Space Cola Free" + id = "decafcola" + description = "A refreshing beverage with none of the jitters." + taste_description = "cola" + reagent_state = LIQUID + color = "#100800" + adj_temp = -5 + + glass_name = "Space Cola Free" + glass_desc = "A glass of refreshing Space Cola Free" + glass_special = list(DRINK_FIZZ) /datum/reagent/drink/soda/lemon_soda name = "Lemon Soda" @@ -1892,12 +2035,12 @@ glass_name = "Space Mountain Wind" glass_desc = "Space Mountain Wind. As you know, there are no mountains in space, only wind." glass_special = list(DRINK_FIZZ) - allergen_type = ALLERGEN_FRUIT //Fruit allergens because citrus is implied to come from limes/lemons + allergen_type = ALLERGEN_FRUIT|ALLERGEN_STIMULANT //Citrus, and caffeination /datum/reagent/drink/soda/dr_gibb name = "Dr. Gibb" id = "dr_gibb" - description = "A delicious blend of 42 different flavors" + description = "A delicious blend of 42 different flavors." taste_description = "cherry soda" color = "#102000" adj_drowsy = -6 @@ -1905,6 +2048,7 @@ glass_name = "Dr. Gibb" glass_desc = "Dr. Gibb. Not as dangerous as the name might imply." + allergen_type = ALLERGEN_STIMULANT /datum/reagent/drink/soda/space_up name = "Space-Up" @@ -1958,7 +2102,7 @@ name = "Diet Dr. Gibb" id = "diet_dr_gibb" color = "#102000" - taste_description = "watered down cherry soda" + taste_description = "chemically sweetened cherry soda" glass_name = "glass of Diet Dr. Gibb" glass_desc = "Regular Dr.Gibb is probably healthier than this cocktail of artificial flavors." @@ -1987,7 +2131,7 @@ glass_name = "roy rogers" glass_desc = "I'm a cowboy, on a steel horse I ride" glass_special = list(DRINK_FIZZ) - allergen_type = ALLERGEN_FRUIT //Made with lemon lime + allergen_type = ALLERGEN_FRUIT | ALLERGEN_STIMULANT //Made with lemon lime and cola /datum/reagent/drink/collins_mix name = "Collins Mix" @@ -2013,7 +2157,7 @@ glass_name = "arnold palmer" glass_desc = "Tastes just like the old man." glass_special = list(DRINK_FIZZ) - allergen_type = ALLERGEN_FRUIT //Made with lemonade + allergen_type = ALLERGEN_FRUIT | ALLERGEN_STIMULANT //Made with lemonade and tea /datum/reagent/drink/doctor_delight name = "The Doctor's Delight" @@ -2147,7 +2291,7 @@ glass_name = "Vile Lemon" glass_desc = "A sour, fizzy drink with lemonade and lemonlime." glass_special = list(DRINK_FIZZ) - allergen_type = ALLERGEN_FRUIT //Made from lemonade + allergen_type = ALLERGEN_FRUIT|ALLERGEN_STIMULANT //Made from lemonade and mtn wind(caffeine) /datum/reagent/drink/entdraught name = "Ent's Draught" @@ -2488,7 +2632,7 @@ //Base type for alchoholic drinks containing coffee /datum/reagent/ethanol/coffee overdose = 45 - allergen_type = ALLERGEN_COFFEE //Contains coffee or is made from coffee + allergen_type = ALLERGEN_COFFEE|ALLERGEN_STIMULANT //Contains coffee or is made from coffee /datum/reagent/ethanol/coffee/affect_ingest(var/mob/living/carbon/M, var/alien, var/removed) if(alien == IS_DIONA) @@ -2616,6 +2760,7 @@ glass_name = "Thirteen Loko" glass_desc = "This is a glass of Thirteen Loko, it appears to be of the highest quality. The drink, not the glass." + allergen_type = ALLERGEN_STIMULANT //Holy shit dude. /datum/reagent/ethanol/thirteenloko/affect_ingest(var/mob/living/carbon/M, var/alien, var/removed) ..() @@ -2858,7 +3003,7 @@ glass_name = "Atomic Bomb" glass_desc = "We cannot take legal responsibility for your actions after imbibing." - allergen_type = ALLERGEN_COFFEE|ALLERGEN_DAIRY|ALLERGEN_FRUIT|ALLERGEN_GRAINS //Made from b52 which contains kahlua(coffee), cognac(fruit), and irish cream(Whiskey(grains),cream(dairy)) + allergen_type = ALLERGEN_COFFEE|ALLERGEN_DAIRY|ALLERGEN_FRUIT|ALLERGEN_GRAINS|ALLERGEN_STIMULANT //Made from b52 which contains kahlua(coffee/caffeine), cognac(fruit), and irish cream(Whiskey(grains),cream(dairy)) /datum/reagent/ethanol/coffee/b52 name = "B-52" @@ -2872,7 +3017,7 @@ glass_name = "B-52" glass_desc = "Kahlua, Irish cream, and cognac. You will get bombed." - allergen_type = ALLERGEN_COFFEE|ALLERGEN_DAIRY|ALLERGEN_FRUIT|ALLERGEN_GRAINS //Made from kahlua(coffee), cognac(fruit), and irish cream(Whiskey(grains),cream(dairy)) + allergen_type = ALLERGEN_COFFEE|ALLERGEN_DAIRY|ALLERGEN_FRUIT|ALLERGEN_GRAINS|ALLERGEN_STIMULANT //Made from kahlua(coffee/caffeine), cognac(fruit), and irish cream(Whiskey(grains),cream(dairy)) /datum/reagent/ethanol/bahama_mama name = "Bahama mama" @@ -2958,7 +3103,7 @@ glass_name = "Black Russian" glass_desc = "For the lactose-intolerant. Still as classy as a White Russian." - allergen_type = ALLERGEN_COFFEE|ALLERGEN_GRAINS //Made from vodka(grains) and kahlua(coffee) + allergen_type = ALLERGEN_COFFEE|ALLERGEN_GRAINS|ALLERGEN_STIMULANT //Made from vodka(grains) and kahlua(coffee/caffeine) /datum/reagent/ethanol/bloody_mary name = "Bloody Mary" @@ -2986,7 +3131,7 @@ allergen_type = ALLERGEN_DAIRY|ALLERGEN_FRUIT //Made from cream(dairy), banana juice(fruit), and watermelon juice(fruit) -/datum/reagent/ethanol/coffee/brave_bull //Since it's under the /coffee subtype, it already has coffee allergens. +/datum/reagent/ethanol/coffee/brave_bull //Since it's under the /coffee subtype, it already has coffee and caffeine allergens. name = "Brave Bull" id = "bravebull" description = "It's just as effective as Dutch-Courage!" @@ -3027,13 +3172,37 @@ /datum/reagent/ethanol/cuba_libre name = "Cuba Libre" id = "cubalibre" - description = "Rum, mixed with cola. Viva la revolucion." + description = "Rum, mixed with cola and a splash of lime. Viva la revolucion." + taste_description = "cola with lime" + color = "#3E1B00" + strength = 30 + + glass_name = "Cuba Libre" + glass_desc = "A classic mix of rum, cola, and lime." + allergen_type = ALLERGEN_STIMULANT //Cola + +/datum/reagent/ethanol/rum_and_cola + name = "Rum and Cola" + id = "rumandcola" + description = "A classic mix of sugar with more sugar." taste_description = "cola" color = "#3E1B00" strength = 30 glass_name = "Cuba Libre" + glass_desc = "A classic mix of rum, cola, and lime." + +/datum/reagent/ethanol/rum_and_cola + name = "Rum and Cola" + id = "rumandcola" + description = "A classic mix of sugar with more sugar." + taste_description = "cola" + color = "#3E1B00" + strength = 30 + + glass_name = "rum and cola" glass_desc = "A classic mix of rum and cola." + allergen_type = ALLERGEN_STIMULANT // Cola /datum/reagent/ethanol/demonsblood name = "Demons Blood" @@ -3046,7 +3215,7 @@ glass_name = "Demons' Blood" glass_desc = "Just looking at this thing makes the hair on the back of your neck stand up." - allergen_type = ALLERGEN_FRUIT //Made from space mountain wind(fruit) + allergen_type = ALLERGEN_FRUIT|ALLERGEN_STIMULANT //Made from space mountain wind(fruit) and dr.gibb(caffeine) /datum/reagent/ethanol/devilskiss name = "Devils Kiss" @@ -3058,7 +3227,7 @@ glass_name = "Devil's Kiss" glass_desc = "Creepy time!" - allergen_type = ALLERGEN_COFFEE //Made from kahlua (Coffee) + allergen_type = ALLERGEN_COFFEE|ALLERGEN_STIMULANT //Made from kahlua (Coffee) /datum/reagent/ethanol/driestmartini name = "Driest Martini" @@ -3221,7 +3390,7 @@ glass_name = "Irish coffee" glass_desc = "Coffee and alcohol. More fun than a Mimosa to drink in the morning." - allergen_type = ALLERGEN_COFFEE|ALLERGEN_DAIRY|ALLERGEN_GRAINS //Made from Coffee(coffee) and irish cream(whiskey(grains), cream(dairy)) + allergen_type = ALLERGEN_COFFEE|ALLERGEN_DAIRY|ALLERGEN_GRAINS|ALLERGEN_STIMULANT //Made from Coffee(coffee/caffeine) and irish cream(whiskey(grains), cream(dairy)) /datum/reagent/ethanol/irish_cream name = "Irish Cream" @@ -3247,7 +3416,7 @@ glass_name = "Long Island iced tea" glass_desc = "The liquor cabinet, brought together in a delicious mix. Intended for middle-aged alcoholic women only." - allergen_type = ALLERGEN_GRAINS|ALLERGEN_FRUIT //Made from vodka(grains) and gin(fruit) + allergen_type = ALLERGEN_GRAINS|ALLERGEN_FRUIT|ALLERGEN_STIMULANT //Made from vodka(grains), cola(caffeine) and gin(fruit) /datum/reagent/ethanol/manhattan name = "Manhattan" @@ -3434,7 +3603,7 @@ glass_name = "Snow White" glass_desc = "A cold refreshment." - allergen_type = ALLERGEN_COFFEE|ALLERGEN_FRUIT //made from Pineapple juice(fruit), lemon_lime(fruit), and kahlua(coffee) + allergen_type = ALLERGEN_COFFEE|ALLERGEN_FRUIT|ALLERGEN_STIMULANT //made from Pineapple juice(fruit), lemon_lime(fruit), and kahlua(coffee/caffine) /datum/reagent/ethanol/suidream name = "Sui Dream" @@ -3460,7 +3629,7 @@ glass_name = "Syndicate Bomb" glass_desc = "Tastes like terrorism!" - allergen_type = ALLERGEN_GRAINS //Made from beer(grain) and whiskeycola(whiskey(grain)) + allergen_type = ALLERGEN_GRAINS|ALLERGEN_STIMULANT //Made from beer(grain) and whiskeycola(whiskey(grain) and cola(caffeine)) /datum/reagent/ethanol/tequilla_sunrise name = "Tequila Sunrise" @@ -3540,7 +3709,7 @@ glass_name = "White Russian" glass_desc = "A very nice looking drink. But that's just, like, your opinion, man." - allergen_type = ALLERGEN_COFFEE|ALLERGEN_GRAINS|ALLERGEN_DAIRY //Made from black russian(vodka(grains), kahlua(coffee)) and cream(dairy) + allergen_type = ALLERGEN_COFFEE|ALLERGEN_GRAINS|ALLERGEN_DAIRY|ALLERGEN_STIMULANT //Made from black russian(vodka(grains), kahlua(coffee/caffeine)) and cream(dairy) /datum/reagent/ethanol/whiskey_cola name = "Whiskey Cola" @@ -3553,7 +3722,7 @@ glass_name = "whiskey cola" glass_desc = "An innocent-looking mixture of cola and Whiskey. Delicious." - allergen_type = ALLERGEN_GRAINS //Made from whiskey(grains) + allergen_type = ALLERGEN_GRAINS|ALLERGEN_STIMULANT //Made from whiskey(grains) and cola(caffeine) /datum/reagent/ethanol/whiskeysoda name = "Whiskey Soda" @@ -3682,7 +3851,7 @@ glass_name = "Elysium Facepunch" glass_desc = "A loathesome cocktail favored by Heaven's skeleton shift workers." - allergen_type = ALLERGEN_COFFEE|ALLERGEN_FRUIT //Made from kahlua(Coffee) and lemonjuice(fruit) + allergen_type = ALLERGEN_COFFEE|ALLERGEN_FRUIT|ALLERGEN_STIMULANT //Made from kahlua(Coffee/caffeine) and lemonjuice(fruit) /datum/reagent/ethanol/erebusmoonrise name = "Erebus Moonrise" @@ -3748,7 +3917,7 @@ glass_name = "Xanadu Cannon" glass_desc = "Common in the entertainment districts of Titan." - allergen_type = ALLERGEN_GRAINS //Made from ale(grain) + allergen_type = ALLERGEN_GRAINS|ALLERGEN_STIMULANT //Made from ale(grain) and dr.gibb(caffeine) /datum/reagent/ethanol/debugger name = "Debugger" @@ -3773,7 +3942,7 @@ glass_name = "Spacer's Brew" glass_desc = "Ethanol and orange soda. A common emergency drink on frontier colonies." - allergen_type = ALLERGEN_FRUIT //Made from brownstar(orange juice(fruit)) + allergen_type = ALLERGEN_FRUIT|ALLERGEN_STIMULANT //Made from brownstar(orange juice(fruit) + cola(caffeine) /datum/reagent/ethanol/binmanbliss name = "Binman Bliss" @@ -3853,7 +4022,7 @@ glass_name = "Morning After" glass_desc = "The finest hair of the dog, coming up!" - allergen_type = ALLERGEN_GRAINS|ALLERGEN_COFFEE //Made from sbiten(vodka(grain)) and coffee(coffee) + allergen_type = ALLERGEN_GRAINS|ALLERGEN_COFFEE|ALLERGEN_STIMULANT //Made from sbiten(vodka(grain)) and coffee(coffee/caffine) /datum/reagent/ethanol/vesper name = "Vesper" @@ -3879,7 +4048,7 @@ glass_name = "Rotgut Fever Dream" glass_desc = "Why are you doing this to yourself?" - allergen_type = ALLERGEN_GRAINS //Made from whiskey(grains) and vodka(grains) + allergen_type = ALLERGEN_GRAINS|ALLERGEN_STIMULANT //Made from whiskey(grains), cola (caffeine) and vodka(grains) /datum/reagent/ethanol/voxdelight name = "Vox's Delight" @@ -4091,7 +4260,7 @@ glass_name = "Cold Front" glass_desc = "Minty, rich, and painfully cold. It's a blizzard in a cup." - allergen_type = ALLERGEN_COFFEE //Made from iced coffee(coffee) + allergen_type = ALLERGEN_COFFEE|ALLERGEN_STIMULANT //Made from iced coffee(coffee) /datum/reagent/ethanol/mintjulep name = "Mint Julep" @@ -4187,7 +4356,7 @@ glass_icon = DRINK_ICON_NOISY glass_special = list(DRINK_FIZZ) - allergen_type = ALLERGEN_FRUIT //Made from space mountain wind(fruit), and holy wine(fruit) + allergen_type = ALLERGEN_FRUIT|ALLERGEN_STIMULANT //Made from space mountain wind(fruit), dr.gibb(caffine) and holy wine(fruit) /datum/reagent/ethanol/angelskiss name = "Angels Kiss" @@ -4200,7 +4369,7 @@ glass_name = "Angel's Kiss" glass_desc = "Miracle time!" - allergen_type = ALLERGEN_FRUIT|ALLERGEN_COFFEE //Made from holy wine(fruit), and kahlua(coffee) + allergen_type = ALLERGEN_FRUIT|ALLERGEN_COFFEE|ALLERGEN_STIMULANT //Made from holy wine(fruit), and kahlua(coffee) /datum/reagent/ethanol/ichor_mead name = "Ichor Mead" diff --git a/code/modules/reagents/reagents/food_drinks_vr.dm b/code/modules/reagents/reagents/food_drinks_vr.dm index e25595860a..ef301925cb 100644 --- a/code/modules/reagents/reagents/food_drinks_vr.dm +++ b/code/modules/reagents/reagents/food_drinks_vr.dm @@ -155,16 +155,12 @@ if(alien == IS_SLIME || alien == IS_CHIMERA) //slimes and chimera can get nutrition from injected nutriment and protein M.adjust_nutrition(alt_nutriment_factor * removed) - - /datum/reagent/nutriment/magicdust/affect_ingest(var/mob/living/carbon/M, var/alien, var/removed) ..() playsound(M, 'sound/items/hooh.ogg', 50, 1, -1) if(prob(5)) to_chat(M, "You feel like you've been gnomed...") - - /datum/reagent/ethanol/galacticpanic name = "Galactic Panic Attack" id = "galacticpanic" @@ -516,4 +512,34 @@ glass_name = "Shambler's Juice" glass_desc = "A glass of something shambly" - glass_special = list(DRINK_FIZZ) \ No newline at end of file + glass_special = list(DRINK_FIZZ) + +////////////////START BrainzSnax Reagents//////////////// + +/datum/reagent/nutriment/protein/brainzsnax + name = "grey matter" + id = "brain_protein" + taste_description = "fatty, mushy meat and allspice" + color = "#caa3c9" + +/datum/reagent/nutriment/protein/brainzsnax/affect_ingest(var/mob/living/carbon/M, var/alien, var/removed) + if(prob(5) && !(alien == IS_CHIMERA || alien == IS_SLIME || alien == IS_PLANT || alien == IS_DIONA || alien == IS_SHADEKIN && !M.isSynthetic())) + M.adjustBrainLoss(removed) //Any other species risks prion disease. + M.Confuse(5) + M.hallucination = max(M.hallucination, 25) + + if(ishuman(M)) + var/mob/living/carbon/human/H = M + if(H.feral > 0 && H.nutrition > 100 && H.traumatic_shock < min(60, H.nutrition/10) && H.jitteriness < 100) //Same check as feral triggers to stop them immediately re-feralling + H.feral -= removed * 3 //Should calm them down quick, provided they're actually in a state to STAY calm. + if(H.feral <=0) //Check if they're unferalled + H.feral = 0 + to_chat(H, "Your mind starts to clear, soothed into a state of clarity as your senses return.") + log_and_message_admins("is no longer feral.", H) + +/datum/reagent/nutriment/protein/brainzsnax/red + id = "red_brain_protein" + taste_description = "fatty, mushy meat and cheap tomato sauce" + color = "#a6898d" + +////////////////END BrainzSnax Reagents//////////////// \ No newline at end of file diff --git a/code/modules/reagents/reagents/medicine.dm b/code/modules/reagents/reagents/medicine.dm index 17454a7bd9..54d7c6e305 100644 --- a/code/modules/reagents/reagents/medicine.dm +++ b/code/modules/reagents/reagents/medicine.dm @@ -342,11 +342,11 @@ if(istype(O, /obj/item/stack/medical/bruise_pack) && round(volume) >= 5) var/obj/item/stack/medical/bruise_pack/C = O var/packname = C.name - var/to_produce = min(C.amount, round(volume / 5)) + var/to_produce = min(C.get_amount(), round(volume / 5)) var/obj/item/stack/medical/M = C.upgrade_stack(to_produce) - if(M && M.amount) + if(M && M.get_amount()) holder.my_atom.visible_message("\The [packname] bubbles.") remove_self(to_produce * 5) @@ -1251,11 +1251,11 @@ if(istype(O, /obj/item/stack/medical/crude_pack) && round(volume) >= 1) var/obj/item/stack/medical/crude_pack/C = O var/packname = C.name - var/to_produce = min(C.amount, round(volume)) + var/to_produce = min(C.get_amount(), round(volume)) var/obj/item/stack/medical/M = C.upgrade_stack(to_produce) - if(M && M.amount) + if(M && M.get_amount()) holder.my_atom.visible_message("\The [packname] bubbles.") remove_self(to_produce) @@ -1501,3 +1501,22 @@ metabolism = REM * 0.002 overdose = REAGENTS_OVERDOSE * 0.25 scannable = 1 + +/datum/reagent/earthsblood + name = "Earthsblood" + id = "earthsblood" + description = "A rare plant extract with immense, almost magical healing capabilities. Induces a potent psychoactive state, damaging neurons with prolonged use." + taste_description = "honey and sunlight" + reagent_state = LIQUID + color = "#ffb500" + overdose = REAGENTS_OVERDOSE * 0.50 + + +/datum/reagent/earthsblood/affect_blood(var/mob/living/carbon/M, var/alien, var/removed) + M.heal_organ_damage (4 * removed, 4 * removed) + M.adjustOxyLoss(-10 * removed) + M.adjustToxLoss(-4 * removed) + M.adjustCloneLoss(-2 * removed) + M.druggy = max(M.druggy, 20) + M.hallucination = max(M.hallucination, 3) + M.adjustBrainLoss(1 * removed) //your life for your mind. The Earthmother's Tithe. \ No newline at end of file diff --git a/code/modules/reagents/reagents/other_vr.dm b/code/modules/reagents/reagents/other_vr.dm index f0286667df..eba5c5cbbe 100644 --- a/code/modules/reagents/reagents/other_vr.dm +++ b/code/modules/reagents/reagents/other_vr.dm @@ -47,7 +47,7 @@ var/obj/item/device/nif/nif = H.nif //L o c a l if(nif.stat == NIF_TEMPFAIL) nif.stat = NIF_INSTALLING - nif.durability = min(nif.durability + removed, initial(nif.durability)) + nif.repair(removed) /datum/reagent/firefighting_foam name = "Firefighting Foam" @@ -120,7 +120,7 @@ var/obj/item/device/nif/nif = H.nif //L o c a l if(nif.stat == NIF_TEMPFAIL) nif.stat = NIF_INSTALLING - nif.durability = min(nif.durability + removed*0.1, initial(nif.durability)) + nif.repair(removed*0.1) //Special toxins for solargrubs /datum/reagent/grubshock diff --git a/code/modules/reagents/reagents/toxins.dm b/code/modules/reagents/reagents/toxins.dm index b59be5c7d1..be7a25b680 100644 --- a/code/modules/reagents/reagents/toxins.dm +++ b/code/modules/reagents/reagents/toxins.dm @@ -75,6 +75,8 @@ skin_danger = 0.4 /datum/reagent/toxin/neurotoxic_protein/affect_blood(var/mob/living/carbon/M, var/alien, var/removed) + if(alien == IS_CHIMERA) + return ..() if(alien != IS_DIONA) if(M.canmove && !M.restrained() && istype(M.loc, /turf/space)) diff --git a/code/modules/recycling/recycling.dm b/code/modules/recycling/recycling.dm index 26eab561e2..37a6081de9 100644 --- a/code/modules/recycling/recycling.dm +++ b/code/modules/recycling/recycling.dm @@ -188,8 +188,8 @@ var/stacktype = M.stack_type var/turf/T = get_step(src, dir) var/obj/item/stack/S = locate(stacktype) in T - if(S) - S.amount++ + if(S && S.get_amount() < S.max_amount) + S.add(1) else new stacktype(T) diff --git a/code/modules/research/circuitprinter.dm b/code/modules/research/circuitprinter.dm index f793c0318a..9cf8d4d338 100644 --- a/code/modules/research/circuitprinter.dm +++ b/code/modules/research/circuitprinter.dm @@ -100,8 +100,7 @@ using metal and glass, it uses glass and reagents (usually sulphuric acid). if(materials[f] >= SHEET_MATERIAL_AMOUNT) var/path = getMaterialType(f) if(path) - var/obj/item/stack/S = new path(loc) - S.amount = round(materials[f] / SHEET_MATERIAL_AMOUNT) + new path(loc, round(materials[f] / SHEET_MATERIAL_AMOUNT)) ..() /obj/machinery/r_n_d/circuit_imprinter/attackby(var/obj/item/O as obj, var/mob/user as mob) diff --git a/code/modules/research/designs/bag_of_holding.dm b/code/modules/research/designs/bag_of_holding.dm index 07fb6a8fff..23d075c19d 100644 --- a/code/modules/research/designs/bag_of_holding.dm +++ b/code/modules/research/designs/bag_of_holding.dm @@ -49,3 +49,22 @@ build_path = /obj/item/weapon/storage/pouch/holding sort_string = "QAAAD" + +/datum/design/item/boh/belt_holding_med + name = "Medical Belt of Holding" + desc = "A belt that uses localized bluespace pockets to hold more items than expected!" + id = "belt_holding_med" + req_tech = list(TECH_BLUESPACE = 4, TECH_MATERIAL = 6) + materials = list("gold" = 3000, "diamond" = 2000, "titanium" = 500) + build_path = /obj/item/weapon/storage/belt/medical/holding + sort_string = "QAAAE" + +/datum/design/item/boh/belt_holding_utility + name = "Tool-Belt of Holding" + desc = "A belt that uses localized bluespace pockets to hold more items than expected!" + id = "belt_holding_utility" + req_tech = list(TECH_BLUESPACE = 4, TECH_MATERIAL = 6) + materials = list("gold" = 3000, "diamond" = 2000, "titanium" = 500) + build_path = /obj/item/weapon/storage/belt/utility/holding + sort_string = "QAAAF" + \ No newline at end of file diff --git a/code/modules/research/designs/circuits/circuits.dm b/code/modules/research/designs/circuits/circuits.dm index c4c0825a2e..cd28842f00 100644 --- a/code/modules/research/designs/circuits/circuits.dm +++ b/code/modules/research/designs/circuits/circuits.dm @@ -36,14 +36,21 @@ CIRCUITS BELOW id = "oriontrail" req_tech = list(TECH_DATA = 1) build_path = /obj/item/weapon/circuitboard/arcade/orion_trail - sort_string = "MAAAZ" // Duplicate string, really need to redo this whole thing + sort_string = "MAAAB" + +/datum/design/circuit/clawmachine + name = "grab-a-gift arcade machine" + id = "clawmachine" + req_tech = list(TECH_DATA = 1) + build_path = /obj/item/weapon/circuitboard/arcade/clawmachine + sort_string = "MAAAC" /datum/design/circuit/jukebox name = "jukebox" id = "jukebox" req_tech = list(TECH_MAGNET = 2, TECH_DATA = 1) build_path = /obj/item/weapon/circuitboard/jukebox - sort_string = "MAAAB" + sort_string = "MAAAO" /datum/design/circuit/seccamera name = "security camera monitor" @@ -427,6 +434,13 @@ CIRCUITS BELOW build_path = /obj/item/weapon/circuitboard/skills sort_string = "LAAAC" +/datum/design/circuit/arf_generator + name = "atmospheric field generator" + id = "arf_generator" + req_tech = list(TECH_MAGNET = 4, TECH_POWER = 4, TECH_BIO = 3) + build_path = /obj/item/weapon/circuitboard/arf_generator + sort_string = "LAAAD" + /datum/design/circuit/mecha req_tech = list(TECH_DATA = 3) diff --git a/code/modules/research/designs/engineering.dm b/code/modules/research/designs/engineering.dm index 5c496fdc4f..bf55cdd788 100644 --- a/code/modules/research/designs/engineering.dm +++ b/code/modules/research/designs/engineering.dm @@ -40,6 +40,15 @@ build_path = /obj/item/weapon/pipe_dispenser sort_string = "NAAAD" +/datum/design/item/tool/qpad_booster + name = "Quantum Pad Particle Booster" + desc = "A deceptively simple interface for increasing the mass of objects a quantum pad is capable of teleporting, at the cost of increased power draw." + id = "qpad_booster" + req_tech = list(TECH_ENGINEERING = 7, TECH_MATERIAL = 7, TECH_BLUESPACE = 6) + materials = list(MAT_STEEL = 4000, MAT_GLASS = 2000, MAT_SILVER = 2000, MAT_GOLD = 2000, MAT_VERDANTIUM = 1000) + build_path = /obj/item/device/quantum_pad_booster + sort_string = "NAAAF" + // Other devices /datum/design/item/engineering/AssembleDesignName() diff --git a/code/modules/research/designs/stock_parts.dm b/code/modules/research/designs/stock_parts.dm index f8a03b1604..20c09f7900 100644 --- a/code/modules/research/designs/stock_parts.dm +++ b/code/modules/research/designs/stock_parts.dm @@ -200,6 +200,42 @@ sort_string = "AAAEE" +// part bundles, because i HATE queues and i don't want to rewrite it for stack-printing +/datum/design/item/stock_part/bundle/t1 + id = "parts_bundle_t1" + req_tech = list(TECH_MATERIAL = 1, TECH_DATA = 1, TECH_POWER = 1, TECH_MAGNET = 1) + materials = list(MAT_STEEL = 1100, MAT_GLASS = 450) + build_path = /obj/effect/spawner/parts/t1 + sort_string = "AAAFA" + +/datum/design/item/stock_part/bundle/t2 + id = "parts_bundle_t2" + req_tech = list(TECH_MATERIAL = 3, TECH_DATA = 2, TECH_POWER = 3, TECH_MAGNET = 3) + materials = list(MAT_STEEL = 1100, MAT_GLASS = 450) + build_path = /obj/effect/spawner/parts/t2 + sort_string = "AAAFB" + +/datum/design/item/stock_part/bundle/t3 + id = "parts_bundle_t3" + req_tech = list(TECH_MATERIAL = 5, TECH_DATA = 2, TECH_POWER = 5, TECH_MAGNET = 5) + materials = list(MAT_STEEL = 1100, MAT_GLASS = 450, MAT_SILVER = 50, MAT_GOLD = 100, MAT_URANIUM = 50) + build_path = /obj/effect/spawner/parts/t3 + sort_string = "AAAFC" + +/datum/design/item/stock_part/bundle/t4 + id = "parts_bundle_t4" + req_tech = list(TECH_MATERIAL = 6, TECH_DATA = 3, TECH_POWER = 6, TECH_MAGNET = 6, TECH_ARCANE = 2) + materials = list(MAT_STEEL = 4250, MAT_GLASS = 700, MAT_SILVER = 250, MAT_URANIUM = 150, MAT_DURASTEEL = 1450, MAT_VERDANTIUM = 900) + build_path = /obj/effect/spawner/parts/t4 + sort_string = "AAAFD" + +/datum/design/item/stock_part/bundle/t5 + id = "parts_bundle_t5" + req_tech = list(TECH_MATERIAL = 7, TECH_DATA = 4, TECH_POWER = 7, TECH_MAGNET = 7, TECH_PRECURSOR = 2) + materials = list(MAT_STEEL = 45000, MAT_PLASTEEL = 5500, MAT_GLASS = 11250, MAT_SILVER = 2500, MAT_URANIUM = 10000, MAT_DIAMOND = 5000, MAT_DURASTEEL = 2500, MAT_MORPHIUM = 2050) + build_path = /obj/effect/spawner/parts/t5 + sort_string = "AAAFE" + // RPEDs /datum/design/item/stock_part/RPED @@ -213,9 +249,20 @@ /datum/design/item/stock_part/ARPED name = "Advanced Rapid Part Exchange Device" - desc = "Special mechanical module made to store, sort, and apply standard machine parts. This one has a greatly upgraded storage capacity." + desc = "Special mechanical module made to store, sort, and apply standard machine parts. This one has a greatly upgraded storage capacity, \ + and the ability to manipulate beakers." id = "arped" req_tech = list(TECH_ENGINEERING = 5, TECH_MATERIAL = 5) materials = list(MAT_STEEL = 30000, MAT_GLASS = 10000) build_path = /obj/item/weapon/storage/part_replacer/adv + sort_string = "ABAAB" + +/datum/design/item/stock_part/PBRPED + name = "Prototype Bluespace Rapid Part Exchange Device" + desc = "Special mechanical module made to store, sort, and apply standard machine parts. This one has a remarkably upgraded storage capacity, \ + and the ability to manipulate beakers." + id = "pbrped" + req_tech = list(TECH_ENGINEERING = 7, TECH_MATERIAL = 7, TECH_BLUESPACE = 5) + materials = list(MAT_STEEL = 30000, MAT_GLASS = 10000, MAT_SILVER = 5000, MAT_GOLD = 5000, MAT_DIAMOND = 1000) + build_path = /obj/item/weapon/storage/part_replacer/adv/discount_bluespace sort_string = "ABAAB" \ No newline at end of file diff --git a/code/modules/research/mechfab_designs.dm b/code/modules/research/mechfab_designs.dm index d83b404a0b..2480bda5c6 100644 --- a/code/modules/research/mechfab_designs.dm +++ b/code/modules/research/mechfab_designs.dm @@ -761,6 +761,22 @@ materials = list(MAT_STEEL = 10000, MAT_SILVER = 1000, MAT_GOLD = 1000) build_path = /obj/item/mecha_parts/mecha_equipment/speedboost +/datum/design/item/mecha/auxstorage + name = "Auxillary Exosuit Storage Bay" + desc = "An auxillary storage compartment, for attaching to exosuits." + id = "mech_storage" + req_tech = list(TECH_MATERIAL = 4) + materials = list(MAT_STEEL = 10000) + build_path = /obj/item/mecha_parts/mecha_equipment/storage + +/datum/design/item/mecha/bsauxstorage + name = "Auxillary Exosuit Storage Wormhole" + desc = "An auxillary storage wormhole, for attaching to exosuits." + id = "mech_storage_bs" + req_tech = list(TECH_MATERIAL = 4) + materials = list(MAT_PLASTEEL = 10000, MAT_GRAPHITE = 8000, MAT_OSMIUM = 6000, MAT_PHORON = 6000, MAT_SILVER = 4000, MAT_GOLD = 4000) + build_path = /obj/item/mecha_parts/mecha_equipment/storage/bluespace + /datum/design/item/synthetic_flash name = "Synthetic Flash" id = "sflash" @@ -1041,6 +1057,30 @@ materials = list(MAT_DURASTEEL = 5000, MAT_GRAPHITE = 3000, MAT_MORPHIUM = 1500, MAT_OSMIUM = 1500, MAT_PHORON = 1750, MAT_VERDANTIUM = 3000, MAT_SUPERMATTER = 2000) build_path = /obj/item/rig_module/teleporter +/datum/design/item/mechfab/rigsuit/radshield + name = "hardsuit radiation absorption device" + desc = "A miniaturized radiation absorption array, for use in hardsuits and providing full radiation protection." + id = "rig_component_radshield" + req_tech = list(TECH_MATERIAL = 5, TECH_ENGINEERING = 3, TECH_MAGNET = 4, TECH_POWER = 3, TECH_BLUESPACE = 4) + materials = list(MAT_STEEL = 8000, MAT_GRAPHITE = 3000, MAT_OSMIUM = 1500, MAT_PHORON = 2250, MAT_SILVER = 1500, MAT_GOLD = 1500) + build_path = /obj/item/rig_module/rad_shield + +/datum/design/item/mechfab/rigsuit/radshield_adv + name = "hardsuit advanced radiation absorption device" + desc = "An optimized, miniaturized radiation absorption array, for use in hardsuits and providing full radiation protection. Reduced power draw." + id = "rig_component_radshield_adv" + req_tech = list(TECH_MATERIAL = 7, TECH_ENGINEERING = 5, TECH_MAGNET = 5, TECH_POWER = 6, TECH_BLUESPACE = 4) + materials = list(MAT_PLASTEEL = 8000, MAT_GRAPHITE = 4000, MAT_OSMIUM = 2000, MAT_PHORON = 3250, MAT_SILVER = 2250, MAT_GOLD = 2250) + build_path = /obj/item/rig_module/rad_shield/advanced + +/datum/design/item/mechfab/rigsuit/atmosshield + name = "hardsuit atmospheric protection enhancement suite" + desc = "An advanced atmospheric protection suite, providing protection against both pressure and heat. At the cost of concerningly high power draw." + id = "rig_component_atmosshield" + req_tech = list(TECH_MATERIAL = 7, TECH_ENGINEERING = 5, TECH_MAGNET = 5, TECH_POWER = 6, TECH_BLUESPACE = 4) + materials = list(MAT_PLASTEEL = 8000, MAT_DURASTEEL = 4000, MAT_GRAPHITE = 8000, MAT_OSMIUM = 6000, MAT_PHORON = 6000, MAT_SILVER = 4000, MAT_GOLD = 4000) + build_path = /obj/item/rig_module/atmos_shield + /datum/design/item/mechfab/uav/basic name = "UAV - Recon Skimmer" id = "recon_skimmer" diff --git a/code/modules/research/prosfab_designs.dm b/code/modules/research/prosfab_designs.dm index 6f29e26ebb..d4ab887d98 100644 --- a/code/modules/research/prosfab_designs.dm +++ b/code/modules/research/prosfab_designs.dm @@ -268,6 +268,13 @@ time = 15 materials = list(MAT_STEEL = 2000, MAT_GLASS = 750, MAT_PLASTIC = 500) +/datum/design/item/prosfab/pros/internal/stomach + name = "Prosthetic Stomach" + id = "pros_stomach" + build_path = /obj/item/organ/internal/stomach + time = 15 + materials = list(MAT_STEEL = 5625, MAT_GLASS = 1000) + //////////////////// Cyborg Parts //////////////////// /datum/design/item/prosfab/cyborg category = list("Cyborg Parts") diff --git a/code/modules/research/protolathe.dm b/code/modules/research/protolathe.dm index 11c44f3e15..7a5b17dca4 100644 --- a/code/modules/research/protolathe.dm +++ b/code/modules/research/protolathe.dm @@ -233,27 +233,44 @@ new_item.matter[i] = new_item.matter[i] * mat_efficiency /obj/machinery/r_n_d/protolathe/proc/eject_materials(var/material, var/amount) // 0 amount = 0 means ejecting a full stack; -1 means eject everything - var/recursive = amount == -1 ? 1 : 0 - material = lowertext(material) - var/obj/item/stack/material/mattype - var/datum/material/MAT = get_material_by_name(material) + var/recursive = amount == -1 ? TRUE : FALSE + var/matstring = lowertext(material) - if(!MAT) + // 0 or null, nothing to eject + if(!materials[matstring]) + return + // Problem, fix problem and abort + if(materials[matstring] < 0) + warning("[src] tried to eject material '[material]', which it has 'materials[matstring]' of!") + materials[matstring] = 0 return - mattype = MAT.stack_type - - if(!mattype) + // Find the material datum for our material + var/datum/material/M = get_material_by_name(matstring) + if(!M) + warning("[src] tried to eject material '[matstring]', which didn't match any known material datum!") + return + // Find what type of sheets it makes + var/obj/item/stack/material/S = M.stack_type + if(!S) + warning("[src] tried to eject material '[matstring]', which didn't have a stack_type!") return - var/obj/item/stack/material/S = new mattype(loc) + // If we were passed -1, then it's recursive ejection and we should eject all we can if(amount <= 0) - amount = S.max_amount - var/ejected = min(round(materials[material] / S.perunit), amount) - S.amount = min(ejected, amount) - if(S.amount <= 0) - qdel(S) + amount = initial(S.max_amount) + // Smaller of what we have left, or the desired amount (note the amount is in sheets, but the array stores perunit values) + var/ejected = min(round(materials[matstring] / initial(S.perunit)), amount) + + // Place a sheet + S = M.place_sheet(get_turf(src), ejected) + if(!istype(S)) + warning("[src] tried to eject material '[material]', which didn't generate a proper stack when asked!") return - materials[material] -= ejected * S.perunit - if(recursive && materials[material] >= S.perunit) - eject_materials(material, -1) + + // Reduce our amount stored + materials[matstring] -= ejected * S.perunit + + // Recurse if we have enough left for more sheets + if(recursive && materials[matstring] >= S.perunit) + eject_materials(matstring, -1) diff --git a/code/modules/research/rdmachines.dm b/code/modules/research/rdmachines.dm index 76bbe9d167..885ba75297 100644 --- a/code/modules/research/rdmachines.dm +++ b/code/modules/research/rdmachines.dm @@ -38,6 +38,5 @@ eject = amount == -1 ? eject : min(eject, amount) if(eject < 1) return - var/obj/item/stack/material/S = new sheetType(loc) - S.amount = eject + new sheetType(loc, eject) materials[material] -= eject * perUnit diff --git a/code/modules/research/research.dm b/code/modules/research/research.dm index 81ee392a8b..4fda3725df 100644 --- a/code/modules/research/research.dm +++ b/code/modules/research/research.dm @@ -181,8 +181,8 @@ GLOBAL_LIST_INIT(design_datums, list()) id = TECH_DATA /datum/tech/syndicate - name = "Illegal Technologies Research" - desc = "The study of technologies that violate standard government regulations." + name = "Transgressive Technologies Research" + desc = "The study of technologies that sit on the very boundaries of legality and ethics." id = TECH_ILLEGAL level = 0 diff --git a/code/modules/resleeving/infomorph.dm b/code/modules/resleeving/infomorph.dm index 584ea22aac..15cedfb1f6 100644 --- a/code/modules/resleeving/infomorph.dm +++ b/code/modules/resleeving/infomorph.dm @@ -1,25 +1,25 @@ var/list/infomorph_emotions = list( - "Happy" = "pai-happy", - "Cat" = "pai-cat", - "Extremely Happy" = "pai-extremely-happy", - "Face" = "pai-face", - "Laugh" = "pai-laugh", - "Off" = "pai-off", - "Sad" = "pai-sad", - "Angry" = "pai-angry", - "What" = "pai-what", - "Neutral" = "pai-neutral", - "Silly" = "pai-silly", - "Nose" = "pai-nose", - "Smirk" = "pai-smirk", - "Exclamation Points" = "pai-exclamation", - "Question Mark" = "pai-question" + "Happy" = 1, + "Cat" = 2, + "Extremely Happy" = 3, + "Face" = 4, + "Laugh" = 5, + "Off" = 6, + "Sad" = 7, + "Angry" = 8, + "What" = 9, + "Neutral" = 10, + "Silly" = 11, + "Nose" = 12, + "Smirk" = 13, + "Exclamation Points" = 14, + "Question Mark" = 15 ) /mob/living/silicon/infomorph name = "sleevecard" //Has the same name as the card for consistency, but this is the MOB in the card. - icon = 'icons/mob/pai.dmi' - icon_state = "repairbot" + icon = 'icons/mob/pai_vr.dmi' //Changed to the virgo icon, giving more sprite options. + icon_state = "pai-repairbot" emote_type = 2 // pAIs emotes are heard, not seen, so they can be seen through a container (eg. person) pass_flags = 1 @@ -39,13 +39,31 @@ var/list/infomorph_emotions = list( var/obj/item/device/sleevecard/card // The card we inhabit var/obj/item/device/radio/sleevecard/radio // Our primary radio var/obj/item/device/universal_translator/translator - + // This was ripped from PAI code, this is to fix the broken sprites for sleevecards and to give sleevecards the same options as PAIs for chassis var/chassis = null // A record of your chosen chassis. var/global/list/possible_chassis = list( - "Spiderbot" = "repairbot", - "RoboCat" = "cat", - "MechaMouse" = "mouse", - "CyberMonkey" = "monkey" + "Drone" = "pai-repairbot", + "Cat" = "pai-cat", + "Mouse" = "pai-mouse", + "Monkey" = "pai-monkey", + "Corgi" = "pai-borgi", + "Fox" = "pai-fox", + "Parrot" = "pai-parrot", + "Rabbit" = "pai-rabbit", + //VOREStation Addition Start + "Bear" = "pai-bear", + "Fennec" = "pai-fen", + "Type Zero" = "pai-typezero", + "Raccoon" = "pai-raccoon", + "Raptor" = "pai-raptor", + "Corgi" = "pai-corgi", + "Bat" = "pai-bat", + "Butterfly" = "pai-butterfly", + "Hawk" = "pai-hawk", + "Duffel" = "pai-duffel", + "Rat" = "rat", + "Panther" = "panther" + //VOREStation Addition End ) var/global/list/possible_say_verbs = list( @@ -53,7 +71,9 @@ var/list/infomorph_emotions = list( "Natural" = list("says","yells","asks"), "Beep" = list("beeps","beeps loudly","boops"), "Chirp" = list("chirps","chirrups","cheeps"), - "Feline" = list("purrs","yowls","meows") + "Feline" = list("purrs","yowls","meows"), + "Canine" = list("yaps","barks","woofs"), + "Rodent" = list("squeaks", "SQUEAKS", "sqiks") //VOREStation Edit ) var/obj/item/weapon/pai_cable/cable // The cable we produce and use when door or camera jacking @@ -476,7 +496,7 @@ var/global/list/default_infomorph_software = list() /mob/living/silicon/infomorph/tgui_data(mob/user, datum/tgui/ui, datum/tgui_state/state) var/list/data = ..() - + // Software we have bought var/list/bought_software = list() // Software we have not bought diff --git a/code/modules/resleeving/machines_vr.dm b/code/modules/resleeving/machine_subtypes.dm similarity index 91% rename from code/modules/resleeving/machines_vr.dm rename to code/modules/resleeving/machine_subtypes.dm index b9f7c81aa6..405bcef141 100644 --- a/code/modules/resleeving/machines_vr.dm +++ b/code/modules/resleeving/machine_subtypes.dm @@ -1,12 +1,12 @@ -/obj/machinery/transhuman/resleever/abductor - icon = 'icons/obj/abductor_vr.dmi' - icon_state = "implantchair" - -/obj/machinery/computer/transhuman/resleeving/abductor - icon = 'icons/obj/abductor.dmi' - icon_state = "console" - -/obj/machinery/clonepod/transhuman/full/abductor - icon = 'icons/obj/abductor_vr.dmi' - icon_state = "pod_0" +/obj/machinery/transhuman/resleever/abductor + icon = 'icons/obj/abductor_vr.dmi' + icon_state = "implantchair" + +/obj/machinery/computer/transhuman/resleeving/abductor + icon = 'icons/obj/abductor.dmi' + icon_state = "console" + +/obj/machinery/clonepod/transhuman/full/abductor + icon = 'icons/obj/abductor_vr.dmi' + icon_state = "pod_0" name = "clonepod" \ No newline at end of file diff --git a/code/modules/resleeving/machines.dm b/code/modules/resleeving/machines.dm index 81f9542381..bb17833e35 100644 --- a/code/modules/resleeving/machines.dm +++ b/code/modules/resleeving/machines.dm @@ -388,9 +388,9 @@ var/amnt = S.perunit if(stored_material[S.material.name] + amnt <= max_res_amount) - if(S && S.amount >= 1) + if(S && S.get_amount() >= 1) var/count = 0 - while(stored_material[S.material.name] + amnt <= max_res_amount && S.amount >= 1) + while(stored_material[S.material.name] + amnt <= max_res_amount && S.get_amount() >= 1) stored_material[S.material.name] += amnt S.use(1) count++ @@ -589,8 +589,9 @@ //Re-supply a NIF if one was backed up with them. if(MR.nif_path) var/obj/item/device/nif/nif = new MR.nif_path(occupant,null,MR.nif_savedata) - for(var/path in MR.nif_software) - new path(nif) + spawn(0) //Delay to not install software before NIF is fully installed + for(var/path in MR.nif_software) + new path(nif) nif.durability = MR.nif_durability //Restore backed up durability after restoring the softs. // If it was a custom sleeve (not owned by anyone), update namification sequences @@ -612,7 +613,7 @@ occupant.confused = max(occupant.confused, confuse_amount) // Apply immedeate effects occupant.eye_blurry = max(occupant.eye_blurry, blur_amount) - + // Vore deaths get a fake modifier labeled as such if(!occupant.mind) log_debug("[occupant] didn't have a mind to check for vore_death, which may be problematic.") diff --git a/code/modules/resleeving/sleevecard.dm b/code/modules/resleeving/sleevecard.dm index b6f1e9a7be..9f21e6e4d5 100644 --- a/code/modules/resleeving/sleevecard.dm +++ b/code/modules/resleeving/sleevecard.dm @@ -89,7 +89,22 @@ /obj/item/device/sleevecard/proc/setEmotion(var/emotion) if(infomorph && emotion) cut_overlays() - add_overlay(emotion) + switch(emotion) + if(1) add_overlay("pai-happy") + if(2) add_overlay("pai-cat") + if(3) add_overlay("pai-extremely-happy") + if(4) add_overlay("pai-face") + if(5) add_overlay("pai-laugh") + if(6) add_overlay("pai-off") + if(7) add_overlay("pai-sad") + if(8) add_overlay("pai-angry") + if(9) add_overlay("pai-what") + if(10) add_overlay("pai-neutral") + if(11) add_overlay("pai-silly") + if(12) add_overlay("pai-nose") + if(13) add_overlay("pai-smirk") + if(14) add_overlay("pai-exclamation") + if(15) add_overlay("pai-question") current_emotion = emotion /obj/item/device/sleevecard/emp_act(severity) diff --git a/code/modules/shieldgen/directional_shield.dm b/code/modules/shieldgen/directional_shield.dm index 2677a56536..209dc9ca9a 100644 --- a/code/modules/shieldgen/directional_shield.dm +++ b/code/modules/shieldgen/directional_shield.dm @@ -103,7 +103,7 @@ if(always_on) create_shields() GLOB.moved_event.register(src, src, .proc/moved_event) - ..() + return ..() /obj/item/shield_projector/Destroy() destroy_shields() diff --git a/code/modules/surgery/robotics.dm b/code/modules/surgery/robotics.dm index 6ed7dad69d..9c210652c2 100644 --- a/code/modules/surgery/robotics.dm +++ b/code/modules/surgery/robotics.dm @@ -475,11 +475,9 @@ if(clean_name) var/okay = tgui_alert(target,"New name will be '[clean_name]', ok?", "Confirmation",list("Cancel","Ok")) if(okay == "Ok") - new_name = clean_name - - new_name = sanitizeName(new_name, allow_numbers = TRUE) - target.name = new_name - target.real_name = target.name + target.name = new_name + target.real_name = target.name + return /datum/surgery_step/robotics/install_mmi/fail_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool) user.visible_message("[user]'s hand slips.", \ diff --git a/code/modules/tables/flipping.dm b/code/modules/tables/flipping.dm index 23d862d66d..e7029e3c6d 100644 --- a/code/modules/tables/flipping.dm +++ b/code/modules/tables/flipping.dm @@ -50,7 +50,7 @@ L.Add(turn(src.dir,90)) for(var/new_dir in L) var/obj/structure/table/T = locate() in get_step(src.loc,new_dir) - if(T && T.material.name == material.name) + if(T && T.material && T.material.name == material.name) if(T.flipped == 1 && T.dir == src.dir && !T.unflipping_check(new_dir)) return 0 return 1 diff --git a/code/modules/tables/interactions.dm b/code/modules/tables/interactions.dm index aeb899cf82..779bb76d5f 100644 --- a/code/modules/tables/interactions.dm +++ b/code/modules/tables/interactions.dm @@ -1,7 +1,7 @@ /obj/structure/table/CanPass(atom/movable/mover, turf/target) if(istype(mover,/obj/item/projectile)) return (check_cover(mover,target)) - if (flipped) + if(flipped == 1) if(get_dir(mover, target) == reverse_dir[dir]) // From elsewhere to here, can't move against our dir return !density return TRUE @@ -10,12 +10,12 @@ if(locate(/obj/structure/table/bench) in get_turf(mover)) return FALSE var/obj/structure/table/table = locate(/obj/structure/table) in get_turf(mover) - if(table && !table.flipped) + if(table && !(table.flipped == 1)) return TRUE return FALSE /obj/structure/table/climb_to(mob/living/mover) - if(flipped && mover.loc == loc) + if(flipped == 1 && mover.loc == loc) var/turf/T = get_step(src, dir) if(T.Enter(mover)) return T @@ -23,7 +23,7 @@ return ..() /obj/structure/table/Uncross(atom/movable/mover, turf/target) - if(flipped && (get_dir(mover, target) == dir)) // From here to elsewhere, can't move in our dir + if(flipped == 1 && (get_dir(mover, target) == dir)) // From here to elsewhere, can't move in our dir return !density return TRUE @@ -60,14 +60,30 @@ return 1 return 1 -/obj/structure/table/MouseDrop_T(obj/O as obj, mob/user as mob) +/obj/structure/table/MouseDrop_T(obj/O, mob/user, src_location, over_location, src_control, over_control, params) + if(ismob(O.loc)) //If placing an item + if(!isitem(O) || user.get_active_hand() != O) + return ..() + if(isrobot(user)) + return + user.drop_item() + if(O.loc != src.loc) + step(O, get_dir(O, src)) - if ((!( istype(O, /obj/item/weapon) ) || user.get_active_hand() != O)) - return ..() - if(isrobot(user)) - return - user.unEquip(O, 0, src.loc) - return + else if(isturf(O.loc) && isitem(O)) //If pushing an item on the tabletop + var/obj/item/I = O + if(I.anchored) + return + + if((isliving(user)) && (Adjacent(user)) && !(user.incapacitated())) + if(O.w_class <= user.can_pull_size) + O.forceMove(loc) + auto_align(I, params, TRUE) + else + to_chat(user, SPAN_WARNING("\The [I] is too big for you to move!")) + return + + return ..() /obj/structure/table/attackby(obj/item/W as obj, mob/user as mob, var/hit_modifier, var/click_parameters) diff --git a/code/modules/tables/presets.dm b/code/modules/tables/presets.dm index e5ebae70fd..9e45df2117 100644 --- a/code/modules/tables/presets.dm +++ b/code/modules/tables/presets.dm @@ -75,6 +75,14 @@ reinforced = get_material_by_name(MAT_STEEL) ..() +/obj/structure/table/hardwoodtable + icon_state = "stone_preview" + color = "#42291a" + +/obj/structure/table/hardwoodtable/Initialize(mapload) + material = get_material_by_name("hardwood") + return ..() + /obj/structure/table/gamblingtable icon_state = "gamble_preview" diff --git a/code/modules/tables/tables.dm b/code/modules/tables/tables.dm index f428033848..9a71cbdba7 100644 --- a/code/modules/tables/tables.dm +++ b/code/modules/tables/tables.dm @@ -331,6 +331,8 @@ var/list/table_icon_cache = list() return FALSE if(istype(src,/obj/structure/table/bench) && !istype(S,/obj/structure/table/bench)) return FALSE + if(istype(S,/obj/structure/table/rack) && !istype(src,/obj/structure/table/rack)) + return FALSE if(istype(src,/obj/structure/table/rack) && !istype(S,/obj/structure/table/rack)) return FALSE if(istype(S,/obj/structure/table)) diff --git a/code/modules/telesci/quantum_pad.dm b/code/modules/telesci/quantum_pad.dm index 6f1381a191..1ca5dfbf4e 100644 --- a/code/modules/telesci/quantum_pad.dm +++ b/code/modules/telesci/quantum_pad.dm @@ -13,6 +13,7 @@ var/last_teleport //to handle the cooldown var/teleporting = 0 //if it's in the process of teleporting var/power_efficiency = 1 + var/boosted = 0 // do we teleport mecha? var/obj/machinery/power/quantumpad/linked_pad //mapping @@ -32,6 +33,18 @@ mapped_quantum_pads -= map_pad_id return ..() +/obj/machinery/power/quantumpad/examine(mob/user) + . = ..() + . += "It is [linked_pad ? "currently" : "not"] linked to another pad." + if(world.time < last_teleport + teleport_cooldown) + . += "[src] is recharging power. A timer on the side reads [round((last_teleport + teleport_cooldown - world.time)/10)] seconds." + if(boosted) + . += SPAN_NOTICE("There appears to be a booster haphazardly jammed into the side of [src]. That looks unsafe.") + if(!panel_open) + . += "The panel is screwed in, obstructing the linking device." + else + . += "The linking device is now able to be scanned with a multitool." + /obj/machinery/power/quantumpad/RefreshParts() var/E = 0 for(var/obj/item/weapon/stock_parts/manipulator/M in component_parts) @@ -52,6 +65,11 @@ return if(istype(I, /obj/item/device/multitool)) + //VOREStation Addition Start + if(istype(get_area(src), /area/shuttle)) + to_chat(user, "This is too unstable a platform for \the [src] to operate on!") + return + //VOREStation Addition End if(panel_open) var/obj/item/device/multitool/M = I M.connectable = src @@ -64,6 +82,14 @@ to_chat(user, "You link [src] to the one in [I]'s buffer.") update_icon() return 1 + + if(istype(I, /obj/item/device/quantum_pad_booster)) + var/obj/item/device/quantum_pad_booster/booster = I + visible_message("[user] violently jams [booster] into the side of [src]. [src] beeps, quietly.", \ + "You hear the sound of a device being improperly installed in sensitive machinery, then subsequent beeping.", runemessage = "beep!") + playsound(src, 'sound/items/rped.ogg', 25, 1) + boosted = TRUE + qdel(I) if(default_part_replacement(user, I)) return @@ -107,6 +133,10 @@ if(istype(get_area(src), /area/shuttle)) to_chat(user, "This is too unstable a platform for \the [src] to operate on!") + //VOREStation Addition Start + if(linked_pad) + linked_pad.linked_pad = null + //VOREStation Addition End return if(!powernet) @@ -154,6 +184,11 @@ update_icon() if(!linked_pad) return + //VOREStation Addition Start + if(istype(get_area(src), /area/shuttle)) + to_chat(user, "This is too unstable a platform for \the [src] to operate on!") + return + //VOREStation Addition End playsound(src, 'sound/weapons/flash.ogg', 25, 1) teleporting = 1 @@ -213,6 +248,8 @@ // Otherwise we'll need a powernet var/power_to_use = 10000 / power_efficiency + if(boosted) + power_to_use *= 5 if(draw_power(power_to_use) != power_to_use) return FALSE return TRUE @@ -220,7 +257,10 @@ /obj/machinery/power/quantumpad/proc/transport_objects(turf/destination) for(var/atom/movable/ROI in get_turf(src)) // if is anchored, don't let through - if(ROI.anchored) + if(ROI.anchored && !ismecha(ROI)) + if(ismecha(ROI)) + if(boosted) + continue if(isliving(ROI)) var/mob/living/L = ROI if(L.buckled) @@ -229,7 +269,7 @@ continue else continue - else if(!isobserver(ROI)) + else if(!isobserver(ROI) && !isEye(ROI)) continue do_teleport(ROI, destination, local = FALSE) @@ -262,3 +302,13 @@ to_chat(user, "You feel yourself pulled in different directions, before ending up not far from where you started.") flick("qpad-beam-out", src) transport_objects(get_turf(dest)) + +/obj/item/device/quantum_pad_booster + icon = 'icons/obj/device_vr.dmi' + name = "quantum pad particle booster" + desc = "A deceptively simple interface for increasing the mass of objects a quantum pad is capable of teleporting, at the cost of increased power draw." + description_info = "The three prongs at the base of the tool are not, in fact, for show." + force = 9 + sharp = TRUE + item_state = "analyzer" + icon_state = "hacktool" \ No newline at end of file diff --git a/code/modules/vchat/css/ss13styles.css b/code/modules/vchat/css/ss13styles.css index fd2ca74569..79a1ddce59 100644 --- a/code/modules/vchat/css/ss13styles.css +++ b/code/modules/vchat/css/ss13styles.css @@ -176,6 +176,7 @@ h1.alert, h2.alert {color: #000000;} .interface {color: #330033;} .spacer {color: #9c660b;} /* VOREStation Add */ .blob {color: #ff950d; font-weight: bold; font-style: italic;} +.tavan {color: #f54298; font-family: Arial} .black {color: #000000;} .darkgray {color: #808080;} diff --git a/code/modules/vchat/vchat_client.dm b/code/modules/vchat/vchat_client.dm index b2cd9df758..a918c94cde 100644 --- a/code/modules/vchat/vchat_client.dm +++ b/code/modules/vchat/vchat_client.dm @@ -139,14 +139,15 @@ GLOBAL_DATUM_INIT(iconCache, /savefile, new("data/iconCache.sav")) //Cache of ic set waitfor = FALSE // Only send them the number of buffered messages, instead of the ENTIRE log var/list/results = vchat_get_messages(owner.ckey, message_buffer) //If there's bad performance on reconnects, look no further - for(var/i in results.len to 1 step -1) - var/list/message = results[i] - var/count = 10 - to_chat_immediate(owner, message["time"], message["message"]) - count++ - if(count >= 10) - count = 0 - CHECK_TICK + if(islist(results)) + for(var/i in results.len to 1 step -1) + var/list/message = results[i] + var/count = 10 + to_chat_immediate(owner, message["time"], message["message"]) + count++ + if(count >= 10) + count = 0 + CHECK_TICK //It din work /datum/chatOutput/proc/become_broken() @@ -417,4 +418,4 @@ var/to_chat_src if(!fdel(o_file)) spawn(1 MINUTE) if(!fdel(o_file)) - log_debug("Warning: [ckey]'s chatlog could not be deleted one minute after file transfer was initiated. It is located at 'data/chatlog_tmp/[ckey]_chat_log' and will need to be manually removed.") \ No newline at end of file + log_debug("Warning: [ckey]'s chatlog could not be deleted one minute after file transfer was initiated. It is located at 'data/chatlog_tmp/[ckey]_chat_log' and will need to be manually removed.") diff --git a/code/modules/virus2/effect.dm b/code/modules/virus2/effect.dm index 5e3e955574..df3cf32347 100644 --- a/code/modules/virus2/effect.dm +++ b/code/modules/virus2/effect.dm @@ -121,19 +121,6 @@ var/mob/living/carbon/human/h = mob h.monkeyize() -/datum/disease2/effect/suicide - name = "Windpipe Contraction" - stage = 4 - badness = 3 - -/datum/disease2/effect/suicide/activate(var/mob/living/carbon/mob,var/multiplier) - var/datum/gender/TM = gender_datums[mob.get_visible_gender()] - mob.suiciding = 30 - //instead of killing them instantly, just put them at -175 health and let 'em gasp for a while - to_chat(viewers(mob),"[mob.name] is holding [TM.his] breath. It looks like [TM.he] [TM.is] trying to commit suicide.") - mob.adjustOxyLoss(175 - mob.getToxLoss() - mob.getFireLoss() - mob.getBruteLoss() - mob.getOxyLoss()) - mob.updatehealth() - /datum/disease2/effect/killertoxins name = "Autoimmune Response" stage = 4 diff --git a/code/modules/vore/eating/belly_obj_vr.dm b/code/modules/vore/eating/belly_obj_vr.dm index 09df3a64e2..10d1dd44f3 100644 --- a/code/modules/vore/eating/belly_obj_vr.dm +++ b/code/modules/vore/eating/belly_obj_vr.dm @@ -28,12 +28,15 @@ var/digestchance = 0 // % Chance of stomach beginning to digest if prey struggles var/absorbchance = 0 // % Chance of stomach beginning to absorb if prey struggles var/escapechance = 0 // % Chance of prey beginning to escape if prey struggles. - var/transferchance = 0 // % Chance of prey being + var/transferchance = 0 // % Chance of prey being trasnsfered, goes from 0-100% + var/transferchance_secondary = 0 // % Chance of prey being transfered to transferchance_secondary, also goes 0-100% var/can_taste = FALSE // If this belly prints the flavor of prey when it eats someone. var/bulge_size = 0.25 // The minimum size the prey has to be in order to show up on examine. var/display_absorbed_examine = FALSE // Do we display absorption examine messages for this belly at all? + var/absorbed_desc // Desc shown to absorbed prey. Defaults to regular if left empty. var/shrink_grow_size = 1 // This horribly named variable determines the minimum/maximum size it will shrink/grow prey to. var/transferlocation // Location that the prey is released if they struggle and get dropped off. + var/transferlocation_secondary // Secondary location that prey is released to. var/release_sound = "Splatter" // Sound for letting someone out. Replaced from True/false var/mode_flags = 0 // Stripping, numbing, etc. var/fancy_vore = FALSE // Using the new sounds? @@ -89,6 +92,16 @@ "You jostle %pred's %belly with movement.", "You squirm inside of %pred's %belly, making it wobble around.") + var/list/absorbed_struggle_messages_outside = list( + "%pred's %belly wobbles, seemingly on its own.", + "%pred's %belly jiggles without apparent cause.", + "%pred's %belly seems to shake for a second without an obvious reason.") + + var/list/absorbed_struggle_messages_inside = list( + "You try and resist %pred's %belly, but only cause it to jiggle slightly.", + "Your fruitless mental struggles only shift %pred's %belly a tiny bit.", + "You can't make any progress freeing yourself from %pred's %belly.") + var/list/digest_messages_owner = list( "You feel %prey's body succumb to your digestive system, which breaks it apart into soft slurry.", "You hear a lewd glorp as your %belly muscles grind %prey into a warm pulp.", @@ -113,6 +126,18 @@ "%pred's %belly kneads on every fiber of your body, softening you down into mush to fuel their next hunt.", "%pred's %belly churns you down into a hot slush. Your nutrient-rich remains course through their digestive track with a series of long, wet glorps.") + var/list/absorb_messages_owner = list( + "You feel %prey becoming part of you.") + + var/list/absorb_messages_prey = list( + "Your feel yourself becoming part of %pred's %belly!") + + var/list/unabsorb_messages_owner = list( + "You feel %prey reform into a recognizable state again.") + + var/list/unabsorb_messages_prey = list( + "You are released from being part of %pred's %belly.") + var/list/examine_messages = list( "They have something solid in their %belly!", "It looks like they have something in their %belly!") @@ -135,6 +160,7 @@ return ..() + list( "name", "desc", + "absorbed_desc", "vore_sound", "vore_verb", "human_prey_swallow_time", @@ -152,14 +178,22 @@ "absorbchance", "escapechance", "transferchance", + "transferchance_secondary", "transferlocation", + "transferlocation_secondary", "bulge_size", "display_absorbed_examine", "shrink_grow_size", "struggle_messages_outside", "struggle_messages_inside", + "absorbed_struggle_messages_outside", + "absorbed_struggle_messages_inside", "digest_messages_owner", "digest_messages_prey", + "absorb_messages_owner", + "absorb_messages_prey", + "unabsorb_messages_owner", + "unabsorb_messages_prey", "examine_messages", "examine_messages_absorbed", "emote_lists", @@ -215,8 +249,22 @@ //Messages if it's a mob if(isliving(thing)) var/mob/living/M = thing - if(desc) - to_chat(M, "[desc]") + M.updateVRPanel() + var/raw_desc //Let's use this to avoid needing to write the reformat code twice + if(absorbed_desc && M.absorbed) + raw_desc = absorbed_desc + else if(desc) + raw_desc = desc + + //Was there a description text? If so, it's time to format it! + if(raw_desc) + //Replace placeholder vars + var/formatted_desc + formatted_desc = replacetext(raw_desc, "%belly", lowertext(name)) //replace with this belly's name + formatted_desc = replacetext(formatted_desc, "%pred", owner) //replace with this belly's owner + formatted_desc = replacetext(formatted_desc, "%prey", M) //replace with whatever mob entered into this belly + to_chat(M, "[formatted_desc]") + var/taste if(can_taste && (taste = M.get_taste_message(FALSE))) to_chat(owner, "[M] tastes of [taste].") @@ -244,6 +292,8 @@ /obj/belly/proc/vore_fx(mob/living/L) if(!istype(L)) return + if(!L.client) + return if(!L.show_vore_fx) L.clear_fullscreen("belly") return @@ -304,6 +354,10 @@ if (!(M in contents)) return 0 // They weren't in this belly anyway + if(istype(M, /mob/living/simple_mob/vore/hostile/morph/dominated_prey)) + var/mob/living/simple_mob/vore/hostile/morph/dominated_prey/p = M + p.undo_prey_takeover(FALSE) + return 0 for(var/mob/living/L in M.contents) L.muffled = 0 for(var/obj/item/weapon/holder/H in M.contents) @@ -324,6 +378,7 @@ ML.muffled = 0 if(ML.absorbed) ML.absorbed = FALSE + handle_absorb_langs(ML, owner) if(ishuman(M) && ishuman(OW)) var/mob/living/carbon/human/Prey = M var/mob/living/carbon/human/Pred = OW @@ -426,7 +481,7 @@ // This is useful in customization boxes and such. The delimiter right now is \n\n so // in message boxes, this looks nice and is easily delimited. /obj/belly/proc/get_messages(type, delim = "\n\n") - ASSERT(type == "smo" || type == "smi" || type == "dmo" || type == "dmp" || type == "em" || type == "ema" || type == "im_digest" || type == "im_hold" || type == "im_absorb" || type == "im_heal" || type == "im_drain" || type == "im_steal" || type == "im_egg" || type == "im_shrink" || type == "im_grow" || type == "im_unabsorb") + ASSERT(type == "smo" || type == "smi" || type == "asmo" || type == "asmi" || type == "dmo" || type == "dmp" || type == "amo" || type == "amp" || type == "uamo" || type == "uamp" || type == "em" || type == "ema" || type == "im_digest" || type == "im_hold" || type == "im_holdabsorbed" || type == "im_absorb" || type == "im_heal" || type == "im_drain" || type == "im_steal" || type == "im_egg" || type == "im_shrink" || type == "im_grow" || type == "im_unabsorb") var/list/raw_messages switch(type) @@ -434,6 +489,10 @@ raw_messages = struggle_messages_outside if("smi") raw_messages = struggle_messages_inside + if("asmo") + raw_messages = absorbed_struggle_messages_outside + if("asmi") + raw_messages = absorbed_struggle_messages_inside if("dmo") raw_messages = digest_messages_owner if("dmp") @@ -442,10 +501,20 @@ raw_messages = examine_messages if("ema") raw_messages = examine_messages_absorbed + if("amo") + raw_messages = absorb_messages_owner + if("amp") + raw_messages = absorb_messages_prey + if("uamo") + raw_messages = unabsorb_messages_owner + if("uamp") + raw_messages = unabsorb_messages_prey if("im_digest") raw_messages = emote_lists[DM_DIGEST] if("im_hold") raw_messages = emote_lists[DM_HOLD] + if("im_holdabsorbed") + raw_messages = emote_lists[DM_HOLD_ABSORBED] if("im_absorb") raw_messages = emote_lists[DM_ABSORB] if("im_heal") @@ -471,7 +540,7 @@ // replacement strings and linebreaks as delimiters (two \n\n by default). // They also sanitize the messages. /obj/belly/proc/set_messages(raw_text, type, delim = "\n\n") - ASSERT(type == "smo" || type == "smi" || type == "dmo" || type == "dmp" || type == "em" || type == "ema" || type == "im_digest" || type == "im_hold" || type == "im_absorb" || type == "im_heal" || type == "im_drain" || type == "im_steal" || type == "im_egg" || type == "im_shrink" || type == "im_grow" || type == "im_unabsorb") + ASSERT(type == "smo" || type == "smi" || type == "asmo" || type == "asmi" || type == "dmo" || type == "dmp" || type == "amo" || type == "amp" || type == "uamo" || type == "uamp" || type == "em" || type == "ema" || type == "im_digest" || type == "im_hold" || type == "im_holdabsorbed" || type == "im_absorb" || type == "im_heal" || type == "im_drain" || type == "im_steal" || type == "im_egg" || type == "im_shrink" || type == "im_grow" || type == "im_unabsorb") var/list/raw_list = splittext(html_encode(raw_text),delim) if(raw_list.len > 10) @@ -479,10 +548,10 @@ log_debug("[owner] tried to set [lowertext(name)] with 11+ messages") for(var/i = 1, i <= raw_list.len, i++) - if((length(raw_list[i]) > 160 || length(raw_list[i]) < 10) && !(type == "im_digest" || type == "im_hold" || type == "im_absorb" || type == "im_heal" || type == "im_drain" || type == "im_steal" || type == "im_egg" || type == "im_shrink" || type == "im_grow" || type == "im_unabsorb")) //160 is fudged value due to htmlencoding increasing the size + if((length(raw_list[i]) > 160 || length(raw_list[i]) < 10) && !(type == "im_digest" || type == "im_hold" || type == "im_holdabsorbed" || type == "im_absorb" || type == "im_heal" || type == "im_drain" || type == "im_steal" || type == "im_egg" || type == "im_shrink" || type == "im_grow" || type == "im_unabsorb")) //160 is fudged value due to htmlencoding increasing the size raw_list.Cut(i,i) log_debug("[owner] tried to set [lowertext(name)] with >121 or <10 char message") - else if((type == "im_digest" || type == "im_hold" || type == "im_absorb" || type == "im_heal" || type == "im_drain" || type == "im_steal" || type == "im_egg" || type == "im_shrink" || type == "im_grow" || type == "im_unabsorb") && (length(raw_list[i]) > 510 || length(raw_list[i]) < 10)) + else if((type == "im_digest" || type == "im_hold" || type == "im_holdabsorbed" || type == "im_absorb" || type == "im_heal" || type == "im_drain" || type == "im_steal" || type == "im_egg" || type == "im_shrink" || type == "im_grow" || type == "im_unabsorb") && (length(raw_list[i]) > 510 || length(raw_list[i]) < 10)) raw_list.Cut(i,i) log_debug("[owner] tried to set [lowertext(name)] idle message with >501 or <10 char message") else @@ -497,10 +566,22 @@ struggle_messages_outside = raw_list if("smi") struggle_messages_inside = raw_list + if("asmo") + absorbed_struggle_messages_outside = raw_list + if("asmi") + absorbed_struggle_messages_inside = raw_list if("dmo") digest_messages_owner = raw_list if("dmp") digest_messages_prey = raw_list + if("amo") + absorb_messages_owner = raw_list + if("amp") + absorb_messages_prey = raw_list + if("uamo") + unabsorb_messages_owner = raw_list + if("uamp") + unabsorb_messages_prey = raw_list if("em") examine_messages = raw_list if("ema") @@ -509,6 +590,8 @@ emote_lists[DM_DIGEST] = raw_list if("im_hold") emote_lists[DM_HOLD] = raw_list + if("im_holdabsorbed") + emote_lists[DM_HOLD_ABSORBED] = raw_list if("im_absorb") emote_lists[DM_ABSORB] = raw_list if("im_heal") @@ -578,9 +661,33 @@ // Handle a mob being absorbed /obj/belly/proc/absorb_living(mob/living/M) - M.absorbed = 1 - to_chat(M, "[owner]'s [lowertext(name)] absorbs your body, making you part of them.") - to_chat(owner, "Your [lowertext(name)] absorbs [M]'s body, making them part of you.") + var/absorb_alert_owner = pick(absorb_messages_owner) + var/absorb_alert_prey = pick(absorb_messages_prey) + + var/absorbed_count = 0 + for(var/mob/living/L in contents) + if(L.absorbed) + absorbed_count++ + + //Replace placeholder vars + absorb_alert_owner = replacetext(absorb_alert_owner, "%pred", owner) + absorb_alert_owner = replacetext(absorb_alert_owner, "%prey", M) + absorb_alert_owner = replacetext(absorb_alert_owner, "%belly", lowertext(name)) + absorb_alert_owner = replacetext(absorb_alert_owner, "%countprey", absorbed_count) + + absorb_alert_prey = replacetext(absorb_alert_prey, "%pred", owner) + absorb_alert_prey = replacetext(absorb_alert_prey, "%prey", M) + absorb_alert_prey = replacetext(absorb_alert_prey, "%belly", lowertext(name)) + absorb_alert_prey = replacetext(absorb_alert_prey, "%countprey", absorbed_count) + + M.absorbed = TRUE + if(M.ckey) + owner.temp_language_sources += M + M.temp_language_sources += owner + handle_absorb_langs(M, owner) + + to_chat(M, "[absorb_alert_prey]") + to_chat(owner, "[absorb_alert_owner]") if(M.noisy) //Mute drained absorbee hunger if enabled. M.noisy = FALSE @@ -608,11 +715,87 @@ if(Mm.absorbed) absorb_living(Mm) + + if(absorbed_desc) + //Replace placeholder vars + var/formatted_abs_desc + formatted_abs_desc = replacetext(absorbed_desc, "%belly", lowertext(name)) //replace with this belly's name + formatted_abs_desc = replacetext(formatted_abs_desc, "%pred", owner) //replace with this belly's owner + formatted_abs_desc = replacetext(formatted_abs_desc, "%prey", M) //replace with whatever mob entered into this belly + to_chat(M, "[formatted_abs_desc]") + //Update owner owner.updateVRPanel() if(isanimal(owner)) owner.update_icon() +// Handle a mob being unabsorbed +/obj/belly/proc/unabsorb_living(mob/living/M) + var/unabsorb_alert_owner = pick(unabsorb_messages_owner) + var/unabsorb_alert_prey = pick(unabsorb_messages_prey) + + var/absorbed_count = 0 + for(var/mob/living/L in contents) + if(L.absorbed) + absorbed_count++ + + //Replace placeholder vars + unabsorb_alert_owner = replacetext(unabsorb_alert_owner, "%pred", owner) + unabsorb_alert_owner = replacetext(unabsorb_alert_owner, "%prey", M) + unabsorb_alert_owner = replacetext(unabsorb_alert_owner, "%belly", lowertext(name)) + unabsorb_alert_owner = replacetext(unabsorb_alert_owner, "%countprey", absorbed_count) + + unabsorb_alert_prey = replacetext(unabsorb_alert_prey, "%pred", owner) + unabsorb_alert_prey = replacetext(unabsorb_alert_prey, "%prey", M) + unabsorb_alert_prey = replacetext(unabsorb_alert_prey, "%belly", lowertext(name)) + unabsorb_alert_prey = replacetext(unabsorb_alert_prey, "%countprey", absorbed_count) + + M.absorbed = FALSE + handle_absorb_langs(M, owner) + to_chat(M, "[unabsorb_alert_prey]") + to_chat(owner, "[unabsorb_alert_owner]") + + if(desc) + to_chat(M, "[desc]") + + //Update owner + owner.updateVRPanel() + if(isanimal(owner)) + owner.update_icon() + +///////////////////////////////////////////////////////////////////////// +/obj/belly/proc/handle_absorb_langs(var/mob/living/prey, var/mob/living/pred) + for(var/mob/living/p in pred.temp_language_sources) //Let's look at the pred's sources + if (!p.absorbed) + for(var/L in pred.temp_languages) + if(L in p.languages) + pred.languages -= L + pred.temp_languages -= L + pred.temp_language_sources -= p + else + for(var/L in p.languages) + if(L in pred.languages) + continue + pred.languages += L + pred.temp_languages += L + + for(var/mob/living/P in prey.temp_language_sources) //Let's look at the prey's sources + if (!prey.absorbed) + for(var/L in prey.temp_languages) + if(L in P.languages) + prey.languages -= L + prey.temp_languages -= L + prey.temp_language_sources -= P + else + for(var/L in P.languages) + if(L in prey.languages) + continue + prey.languages += L + prey.temp_languages += L + +//////////////////////////////////////////////////////////////////////// + + //Digest a single item //Receives a return value from digest_act that's how much nutrition //the item should be worth @@ -724,7 +907,7 @@ for(var/mob/M in hearers(4, owner)) M.show_message("[C] suddenly slips out of [owner]'s [lowertext(name)]!", 2) return - if((escapable) && (R.loc == src) && !R.absorbed) //Does the owner still have escapable enabled? + if(escapable && (R.loc == src) && !R.absorbed) //Does the owner still have escapable enabled? release_specific_contents(R) to_chat(R,"You climb out of \the [lowertext(name)].") to_chat(owner,"[R] climbs out of your [lowertext(name)]!") @@ -759,6 +942,27 @@ transfer_contents(R, dest_belly) return + else if(prob(transferchance_secondary) && transferlocation_secondary) //After the first potential mess getting into, run the secondary one which might be even bigger of a mess. + var/obj/belly/dest_belly + for(var/obj/belly/B as anything in owner.vore_organs) + if(B.name == transferlocation_secondary) + dest_belly = B + break + + if(!dest_belly) + to_chat(owner, "Something went wrong with your belly transfer settings. Your [lowertext(name)] has had it's transfer chance and transfer location cleared as a precaution.") + transferchance_secondary = 0 + transferlocation_secondary = null + return + + to_chat(R, "Your attempt to escape [lowertext(name)] has failed and your struggles only results in you sliding into [owner]'s [transferlocation_secondary]!") + to_chat(owner, "Someone slid into your [transferlocation_secondary] due to their struggling inside your [lowertext(name)]!") + if(C) + transfer_contents(C, dest_belly) + return + transfer_contents(R, dest_belly) + return + else if(prob(absorbchance) && digest_mode != DM_ABSORB) //After that, let's have it run the absorb chance. to_chat(R, "In response to your struggling, \the [lowertext(name)] begins to cling more tightly...") to_chat(owner, "You feel your [lowertext(name)] start to cling onto its contents...") @@ -776,6 +980,50 @@ to_chat(owner, "Your prey appears to be unable to make any progress in escaping your [lowertext(name)].") return + +/obj/belly/proc/relay_absorbed_resist(mob/living/R) + if (!(R in contents) || !R.absorbed) + return // User is not in this belly or isn't actually absorbed + + R.setClickCooldown(50) + + var/struggle_outer_message = pick(absorbed_struggle_messages_outside) + var/struggle_user_message = pick(absorbed_struggle_messages_inside) + + var/absorbed_count = 0 + for(var/mob/living/L in contents) + if(L.absorbed) + absorbed_count++ + + struggle_outer_message = replacetext(struggle_outer_message, "%pred", owner) + struggle_outer_message = replacetext(struggle_outer_message, "%prey", R) + struggle_outer_message = replacetext(struggle_outer_message, "%belly", lowertext(name)) + struggle_outer_message = replacetext(struggle_outer_message, "%countprey", absorbed_count) + + struggle_user_message = replacetext(struggle_user_message, "%pred", owner) + struggle_user_message = replacetext(struggle_user_message, "%prey", R) + struggle_user_message = replacetext(struggle_user_message, "%belly", lowertext(name)) + struggle_user_message = replacetext(struggle_user_message, "%countprey", absorbed_count) + + struggle_outer_message = "[struggle_outer_message]" + struggle_user_message = "[struggle_user_message]" + + for(var/mob/M in hearers(4, owner)) + M.show_message(struggle_outer_message, 2) // hearable + to_chat(R, struggle_user_message) + + var/sound/struggle_snuggle + var/sound/struggle_rustle = sound(get_sfx("rustle")) + + if(is_wet) + if(!fancy_vore) + struggle_snuggle = sound(get_sfx("classic_struggle_sounds")) + else + struggle_snuggle = sound(get_sfx("fancy_prey_struggle")) + playsound(src, struggle_snuggle, vary = 1, vol = 75, falloff = VORE_SOUND_FALLOFF, preference = /datum/client_preference/digestion_noises, volume_channel = VOLUME_CHANNEL_VORE) + else + playsound(src, struggle_rustle, vary = 1, vol = 75, falloff = VORE_SOUND_FALLOFF, preference = /datum/client_preference/digestion_noises, volume_channel = VOLUME_CHANNEL_VORE) + /obj/belly/proc/get_mobs_and_objs_in_belly() var/list/see = list() var/list/belly_mobs = list() @@ -832,6 +1080,7 @@ //// Non-object variables dupe.name = name dupe.desc = desc + dupe.absorbed_desc = absorbed_desc dupe.vore_sound = vore_sound dupe.vore_verb = vore_verb dupe.human_prey_swallow_time = human_prey_swallow_time @@ -849,7 +1098,9 @@ dupe.absorbchance = absorbchance dupe.escapechance = escapechance dupe.transferchance = transferchance + dupe.transferchance_secondary = transferchance_secondary dupe.transferlocation = transferlocation + dupe.transferlocation_secondary = transferlocation_secondary dupe.bulge_size = bulge_size dupe.shrink_grow_size = shrink_grow_size dupe.mode_flags = mode_flags @@ -878,6 +1129,16 @@ for(var/I in struggle_messages_inside) dupe.struggle_messages_inside += I + //absorbed_struggle_messages_outside - strings + dupe.absorbed_struggle_messages_outside.Cut() + for(var/I in absorbed_struggle_messages_outside) + dupe.absorbed_struggle_messages_outside += I + + //absorbed_struggle_messages_inside - strings + dupe.absorbed_struggle_messages_inside.Cut() + for(var/I in absorbed_struggle_messages_inside) + dupe.absorbed_struggle_messages_inside += I + //digest_messages_owner - strings dupe.digest_messages_owner.Cut() for(var/I in digest_messages_owner) @@ -888,12 +1149,32 @@ for(var/I in digest_messages_prey) dupe.digest_messages_prey += I + //absorb_messages_owner - strings + dupe.absorb_messages_owner.Cut() + for(var/I in absorb_messages_owner) + dupe.absorb_messages_owner += I + + //absorb_messages_prey - strings + dupe.absorb_messages_prey.Cut() + for(var/I in absorb_messages_prey) + dupe.absorb_messages_prey += I + + //unabsorb_messages_owner - strings + dupe.unabsorb_messages_owner.Cut() + for(var/I in unabsorb_messages_owner) + dupe.unabsorb_messages_owner += I + + //unabsorb_messages_prey - strings + dupe.unabsorb_messages_prey.Cut() + for(var/I in unabsorb_messages_prey) + dupe.unabsorb_messages_prey += I + //examine_messages - strings dupe.examine_messages.Cut() for(var/I in examine_messages) dupe.examine_messages += I - //examine_messages - strings + //examine_messages_absorbed - strings dupe.examine_messages_absorbed.Cut() for(var/I in examine_messages_absorbed) dupe.examine_messages_absorbed += I diff --git a/code/modules/vore/eating/bellymodes_datum_vr.dm b/code/modules/vore/eating/bellymodes_datum_vr.dm index df7b22897c..1833b17cfc 100644 --- a/code/modules/vore/eating/bellymodes_datum_vr.dm +++ b/code/modules/vore/eating/bellymodes_datum_vr.dm @@ -22,6 +22,7 @@ GLOBAL_LIST_INIT(digest_modes, list()) noise_chance = 50 /datum/digest_mode/digest/process_mob(obj/belly/B, mob/living/L) + var/oldstat = L.stat //Pref protection! if(!L.digestable || L.absorbed) return null @@ -59,6 +60,8 @@ GLOBAL_LIST_INIT(digest_modes, list()) B.owner.adjust_nutrition(offset*(4.5 * (damage_gain) / difference)) //4.5 nutrition points per health point. Normal same size 100+100 health prey with average weight would give 900 points if the digestion was instant. With all the size/weight offset taxes plus over time oxyloss+hunger taxes deducted with non-instant digestion, this should be enough to not leave the pred starved. else B.owner.adjust_nutrition(4.5 * (damage_gain) / difference) + if(L.stat != oldstat) + return list("to_update" = TRUE) /datum/digest_mode/absorb id = DM_ABSORB @@ -77,10 +80,8 @@ GLOBAL_LIST_INIT(digest_modes, list()) /datum/digest_mode/unabsorb/process_mob(obj/belly/B, mob/living/L) if(L.absorbed && B.owner.nutrition >= 100) - L.absorbed = FALSE - to_chat(L, "You suddenly feel solid again.") - to_chat(B.owner,"You feel like a part of you is missing.") B.owner.adjust_nutrition(-100) + B.unabsorb_living(L) return list("to_update" = TRUE) /datum/digest_mode/drain @@ -120,6 +121,7 @@ GLOBAL_LIST_INIT(digest_modes, list()) noise_chance = 50 //Wet heals! The secret is you can leave this on for gurgle noises for fun. /datum/digest_mode/heal/process_mob(obj/belly/B, mob/living/L) + var/oldstat = L.stat if(L.stat == DEAD) return null // Can't heal the dead with healbelly if(B.owner.nutrition > 90 && (L.health < L.maxHealth)) @@ -134,6 +136,8 @@ GLOBAL_LIST_INIT(digest_modes, list()) else if(B.owner.nutrition > 90 && (L.nutrition <= 400)) B.owner.adjust_nutrition(-1) L.adjust_nutrition(1) + if(L.stat != oldstat) + return list("to_update" = TRUE) // E G G /datum/digest_mode/egg @@ -172,7 +176,7 @@ GLOBAL_LIST_INIT(digest_modes, list()) B.ownegg.update_transform() egg_contents -= I B.ownegg = null - return + return list("to_update" = TRUE) if(isliving(C)) var/mob/living/M = C var/mob_holder_type = M.holder_type || /obj/item/weapon/holder @@ -186,7 +190,7 @@ GLOBAL_LIST_INIT(digest_modes, list()) if(B.ownegg.w_class > 4) B.ownegg.slowdown = B.ownegg.w_class - 4 B.ownegg = null - return + return list("to_update" = TRUE) C.forceMove(B.ownegg) if(isitem(C)) var/obj/item/I = C @@ -194,10 +198,11 @@ GLOBAL_LIST_INIT(digest_modes, list()) B.ownegg.calibrate_size() B.ownegg.orient2hud() B.ownegg.w_class = clamp(B.ownegg.w_class * 0.25, 1, 8) //A total w_class of 16 will result in a backpack sized egg. - B.ownegg.icon_scale_x = 0.25 * B.ownegg.w_class - B.ownegg.icon_scale_y = 0.25 * B.ownegg.w_class + B.ownegg.icon_scale_x = clamp(0.25 * B.ownegg.w_class, 0.25, 1) + B.ownegg.icon_scale_y = clamp(0.25 * B.ownegg.w_class, 0.25, 1) B.ownegg.update_transform() if(B.ownegg.w_class > 4) B.ownegg.slowdown = B.ownegg.w_class - 4 B.ownegg = null + return list("to_update" = TRUE) return diff --git a/code/modules/vore/eating/bellymodes_vr.dm b/code/modules/vore/eating/bellymodes_vr.dm index 15099c56f5..e4e358d3c4 100644 --- a/code/modules/vore/eating/bellymodes_vr.dm +++ b/code/modules/vore/eating/bellymodes_vr.dm @@ -63,10 +63,9 @@ SEND_SOUND(M, prey_digest) play_sound = pred_digest - if(to_update) - updateVRPanels() - if(!LAZYLEN(touchable_mobs)) + if(to_update) + updateVRPanels() if(play_sound) for(var/mob/M in hearers(VORE_SOUND_RANGE, get_turf(owner))) //so we don't fill the whole room with the sound effect if(!M.is_preference_enabled(/datum/client_preference/digestion_noises)) @@ -107,23 +106,40 @@ if(emote_active) var/list/EL = emote_lists[digest_mode] - if(LAZYLEN(EL) && next_emote <= world.time) + if((LAZYLEN(EL) || LAZYLEN(emote_lists[DM_HOLD_ABSORBED]) || (digest_mode == DM_DIGEST && LAZYLEN(emote_lists[DM_HOLD]))) && next_emote <= world.time) var/living_count = 0 + var/absorbed_count = 0 for(var/mob/living/L in contents) living_count++ + if(L.absorbed) + absorbed_count++ next_emote = world.time + (emote_time SECONDS) for(var/mob/living/M in contents) - if(digest_mode == DM_DIGEST && !M.digestable) - continue // don't give digesty messages to indigestible people + if(M.absorbed) + EL = emote_lists[DM_HOLD_ABSORBED] - var/raw_message = pick(EL) - var/formatted_message - formatted_message = replacetext(raw_message, "%belly", lowertext(name)) - formatted_message = replacetext(formatted_message, "%pred", owner) - formatted_message = replacetext(formatted_message, "%prey", english_list(contents)) - formatted_message = replacetext(formatted_message, "%countprey", living_count) - formatted_message = replacetext(formatted_message, "%count", contents.len) - to_chat(M, "[formatted_message]") + var/raw_message = pick(EL) + var/formatted_message + formatted_message = replacetext(raw_message, "%belly", lowertext(name)) + formatted_message = replacetext(formatted_message, "%pred", owner) + formatted_message = replacetext(formatted_message, "%prey", M) + formatted_message = replacetext(formatted_message, "%countprey", absorbed_count) + to_chat(M, "[formatted_message]") + else + if(digest_mode == DM_DIGEST && !M.digestable) + EL = emote_lists[DM_HOLD] // Use Hold's emote list if we're indigestible + + var/raw_message = pick(EL) + var/formatted_message + formatted_message = replacetext(raw_message, "%belly", lowertext(name)) + formatted_message = replacetext(formatted_message, "%pred", owner) + formatted_message = replacetext(formatted_message, "%prey", M) + formatted_message = replacetext(formatted_message, "%countprey", living_count) + formatted_message = replacetext(formatted_message, "%count", contents.len) + to_chat(M, "[formatted_message]") + + if(to_update) + updateVRPanels() /obj/belly/proc/handle_touchable_atoms(list/touchable_atoms) @@ -233,7 +249,9 @@ /obj/belly/proc/handle_digestion_death(mob/living/M) var/digest_alert_owner = pick(digest_messages_owner) var/digest_alert_prey = pick(digest_messages_prey) - var/compensation = M.getOxyLoss() //How much of the prey's damage was caused by passive crit oxyloss to compensate the lost nutrition. + var/compensation = M.maxHealth / 5 //Dead body bonus. + if(ishuman(M)) + compensation += M.getOxyLoss() //How much of the prey's damage was caused by passive crit oxyloss to compensate the lost nutrition. var/living_count = 0 for(var/mob/living/L in contents) @@ -261,14 +279,11 @@ digestion_death(M) if(!ishuman(owner)) owner.update_icons() - if(compensation == 0) //Slightly sloppy way at making sure certain mobs don't give ZERO nutrition (fish and so on) - compensation = 21 //This reads as 20*4.5 due to the calculations afterward, making the backup nutrition value 94.5 per mob. Not op compared to regular prey. - if(compensation > 0) - if(isrobot(owner)) - var/mob/living/silicon/robot/R = owner - R.cell.charge += 25*compensation*(nutrition_percent / 100) - else - owner.adjust_nutrition((nutrition_percent / 100)*4.5*compensation) + if(isrobot(owner)) + var/mob/living/silicon/robot/R = owner + R.cell.charge += (nutrition_percent / 100) * compensation * 25 + else + owner.adjust_nutrition((nutrition_percent / 100) * compensation * 4.5) /obj/belly/proc/steal_nutrition(mob/living/L) if(L.nutrition >= 100) diff --git a/code/modules/vore/eating/digest_act_vr.dm b/code/modules/vore/eating/digest_act_vr.dm index d480a89ce3..741d7e0941 100644 --- a/code/modules/vore/eating/digest_act_vr.dm +++ b/code/modules/vore/eating/digest_act_vr.dm @@ -9,6 +9,8 @@ var/obj/item/device/pda/P = src if(P.id) P.id = null + for(var/mob/living/M in contents)//Drop mobs from objects(shoes) before deletion + M.forceMove(item_storage) for(var/obj/item/O in contents) if(istype(O, /obj/item/weapon/storage/internal)) //Dump contents from dummy pockets. for(var/obj/item/SO in O) @@ -37,6 +39,8 @@ var/obj/item/device/pda/P = src if(P.id) P.id = null + for(var/mob/living/M in contents)//Drop mobs from objects(shoes) before deletion + M.forceMove(item_storage) for(var/obj/item/O in contents) if(istype(O,/obj/item/weapon/storage/internal)) //Dump contents from dummy pockets. for(var/obj/item/SO in O) @@ -45,7 +49,15 @@ qdel(O) else if(item_storage) O.forceMove(item_storage) - qdel(src) + if(istype(src,/obj/item/stack)) + var/obj/item/stack/S = src + if(S.get_amount() <= 1) + qdel(src) + else + S.use(1) + digest_stage = w_class + else + qdel(src) if(g_damage > w_class) return w_class return g_damage @@ -110,8 +122,7 @@ /obj/item/organ/digest_act(atom/movable/item_storage = null) if((. = ..())) if(isbelly(item_storage)) - var/obj/belly/B = item_storage - . += 2 * (B.digest_brute + B.digest_burn + (B.digest_oxy)/2) + . *= 3 else . += 30 //Organs give a little more @@ -128,6 +139,10 @@ //Replace this with a VORE setting so all types of posibrains can/can't be digested on a whim return FALSE +/obj/item/organ/internal/nano/digest_act(atom/movable/item_storage = null) + //Make proteans recoverable too + return FALSE + // Gradual damage measurement /obj/item var/digest_stage = null diff --git a/code/modules/vore/eating/inbelly_spawn.dm b/code/modules/vore/eating/inbelly_spawn.dm new file mode 100644 index 0000000000..39c09554e0 --- /dev/null +++ b/code/modules/vore/eating/inbelly_spawn.dm @@ -0,0 +1,177 @@ +/mob/observer/dead/verb/spawn_in_belly() + set category = "Ghost" + set name = "Spawn In Belly" + set desc = "Spawn in someone's belly." + + if(!client) + return + + // If any ghost-side restrictions are desired, they'll go here + + tgui_alert(src,{" +This verb allows you to spawn inside someone's belly when they are in round. +Make sure you to coordinate with your predator OOCly as well as roleplay approprietly. +You are considered to have been in the belly entire time the predator was around and are not added to crew lists. +This is not intended to be used for mechanical advantage or providing assistance, but for facilitating longterm scenes. +Please do not abuse this ability. +"},"OOC Warning") // Warning. + + var/list/eligible_targets = list() + + for(var/mob/living/pred in living_mob_list) + if(!istype(pred) || !pred.client) // Ignore preds that aren't living mobs or player controlled + continue + if(pred.no_vore) // No vore, no bellies, no inbelly spawning + continue + if(!(get_z(pred) in using_map.station_levels)) // No explo reinforcements + continue + if(ishuman(pred)) + var/mob/living/carbon/human/H = pred + if(!H.allow_inbelly_spawning) + continue + eligible_targets += H + continue + if(issilicon(pred)) + var/mob/living/silicon/S = pred + if(isAI(S)) + continue // Sorry, AI buddies. Your vore works too differently. + if(!S.allow_inbelly_spawning) + continue + eligible_targets += S + continue + if(istype(pred, /mob/living/simple_mob)) + var/mob/living/simple_mob/SM = pred + if(!SM.vore_active) // No vore, no bellies, no inbelly spawning + continue + if(!SM.allow_inbelly_spawning) + continue + eligible_targets += SM + continue + + // Only humans, simple_mobs and non-AI silicons are included. Obscure stuff like bots is skipped. + + if(!eligible_targets.len) + to_chat(src, "No eligible preds were found.") // :( + return + + var/mob/living/target = tgui_input_list(src, "Please specify which character you want to spawn inside of.", "Predator", eligible_targets) // Offer the list of things we gathered. + + if(!target || !client) // Did out target cease to exist? Or did we? + return + + // Notify them that its now pred's turn + to_chat(src, "Inbelly spawn request sent to predator.") + target.inbelly_spawn_prompt(client) // Hand reins over to them + +/mob/living/proc/inbelly_spawn_prompt(client/potential_prey) + if(!potential_prey || !istype(potential_prey)) // Did our prey cease to exist? + return + + // Are we cool with this prey spawning in at all? + var/answer = tgui_alert(src, "[potential_prey.ckey] (as [potential_prey.prefs.real_name]) wants to spawn in one of your bellies. Do you accept?", "Inbelly Spawning", list("Yes", "No")) + if(answer != "Yes") + to_chat(potential_prey, "Your request was turned down.") + return + + // Let them know so that they don't spam it. + to_chat(potential_prey, "Predator agreed to your request. Wait a bit while they choose a belly.") + + // Where we dropping? + var/obj/belly/belly_choice = tgui_input_list(src, "Choose Target Belly", "Belly Choice", src.vore_organs) + + // Wdym nowhere? + if(!belly_choice || !istype(belly_choice)) + to_chat(potential_prey, "Something went wrong with predator selecting a belly. Try again?") + to_chat(src, "No valid belly selected. Inbelly spawn cancelled.") + return + + // Extra caution never hurts + if(belly_choice.digest_mode == DM_DIGEST) + var/digest_answer = tgui_alert(src, "[belly_choice] is currently set to Digest. Are you sure you want to spawn prey there?", "Inbelly Spawning", list("Yes", "No")) + if(digest_answer != "Yes") + to_chat(potential_prey, "Something went wrong with predator selecting a belly. Try again?") + to_chat(src, "Inbelly spawn cancelled.") + + // Are they already fat (and/or appropriate equivalent)? + var/absorbed = FALSE + var/absorbed_answer = tgui_alert(src, "Do you want them to start absorbed?", "Inbelly Spawning", list("Yes", "No")) + + if(absorbed_answer == "Yes") + absorbed = TRUE + + // They disappeared? + if(!potential_prey) + to_chat(src, "No prey found. Something went wrong!") + return + + // Final confirmation for pred + var/confirmation_pred = tgui_alert(src, "Are you certain that you want [potential_prey.prefs.real_name] spawned in your [belly_choice][absorbed ? ", absorbed" : ""]?", "Inbelly Spawning", list("Yes", "No")) + + if(confirmation_pred != "Yes") + to_chat(potential_prey, "Your pred couldn't finish selection. Try again?") + to_chat(src, "Inbelly spawn cancelled.") + return + + to_chat(src, "Waiting for prey's confirmation...") + + // And final confirmation for prey + var/confirmation_prey = tgui_alert(potential_prey, "Are you certain that you to spawn in [src]'s [belly_choice][absorbed ? ", absorbed" : ""]?", "Inbelly Spawning", list("Yes", "No")) + + if(confirmation_prey == "Yes" && potential_prey && src && belly_choice) + //Now we finally spawn them in! + if(!is_alien_whitelisted(potential_prey, GLOB.all_species[potential_prey.prefs.species])) + to_chat(potential_prey, "You are not whitelisted to play as currently selected character.") + to_chat(src, "Prey accepted the confirmation, but something went wrong with spawning their character.") + return + inbelly_spawn(potential_prey, src, belly_choice, absorbed) + else + to_chat(potential_prey, "Inbelly spawn cancelled.") + to_chat(src, "Prey cancelled their inbelly spawn request.") + return + +/proc/inbelly_spawn(client/prey, mob/living/pred, obj/belly/target_belly, var/absorbed = FALSE) + // All this is basically admin late spawn-in, but skipping all parts related to records and equipment and with predteremined location + var/player_key = prey.key + var/picked_ckey = prey.ckey + var/picked_slot = prey.prefs.default_slot + var/mob/living/carbon/human/new_character + + new_character = new(null) // Spawn them in nullspace first. Can't have "Defaultname Defaultnameson slides into your Stomach". + + if(!new_character) + return + + prey.prefs.copy_to(new_character) + if(new_character.dna) + new_character.dna.ResetUIFrom(new_character) + new_character.sync_organ_dna() + new_character.key = player_key + if(new_character.mind) + var/datum/antagonist/antag_data = get_antag_data(new_character.mind.special_role) + if(antag_data) + antag_data.add_antagonist(new_character.mind) + antag_data.place_mob(new_character) + + if(new_character.mind) + new_character.mind.loaded_from_ckey = picked_ckey + new_character.mind.loaded_from_slot = picked_slot + + for(var/lang in prey.prefs.alternate_languages) + var/datum/language/chosen_language = GLOB.all_languages[lang] + if(chosen_language) + if(is_lang_whitelisted(prey,chosen_language) || (new_character.species && (chosen_language.name in new_character.species.secondary_langs))) + new_character.add_language(lang) + + new_character.regenerate_icons() + + new_character.update_transform() + + new_character.forceMove(target_belly) // Now that they're all setup and configured, send them to their destination. + + if(absorbed) + target_belly.absorb_living(new_character) // Glorp. + + log_admin("[prey] (as [new_character.real_name] has spawned inside one of [pred]'s bellies.") // Log it. Avoid abuse. + message_admins("[prey] (as [new_character.real_name] has spawned inside one of [pred]'s bellies.", 1) + + return new_character // incase its ever needed \ No newline at end of file diff --git a/code/modules/vore/eating/living_vr.dm b/code/modules/vore/eating/living_vr.dm index 23dd3eea55..7a9cab7a2b 100644 --- a/code/modules/vore/eating/living_vr.dm +++ b/code/modules/vore/eating/living_vr.dm @@ -7,10 +7,13 @@ var/resizable = TRUE // Can other people resize you? (Usually ignored for self-resizes) var/digest_leave_remains = FALSE // Will this mob leave bones/skull/etc after the melty demise? var/allowmobvore = TRUE // Will simplemobs attempt to eat the mob? + var/allow_inbelly_spawning = FALSE // Will we even bother with attempts of someone to spawn in in one of our bellies? var/showvoreprefs = TRUE // Determines if the mechanical vore preferences button will be displayed on the mob or not. var/obj/belly/vore_selected // Default to no vore capability. var/list/vore_organs = list() // List of vore containers inside a mob var/absorbed = FALSE // If a mob is absorbed into another + var/list/temp_language_sources = list() //VOREStation Addition - Absorbs add languages to the pred + var/list/temp_languages = list() //VOREStation Addition - Absorbs add languages to the pred var/weight = 137 // Weight for mobs for weightgain system var/weight_gain = 1 // How fast you gain weight var/weight_loss = 0.5 // How fast you lose weight @@ -143,9 +146,7 @@ if(is_vore_predator(src)) for(var/mob/living/M in H.contents) if(attacker.eat_held_mob(attacker, M, src)) - if(H.held_mob == M) - H.held_mob = null - return TRUE //return TRUE to exit upper procs + return TRUE //return TRUE to exit upper procs else log_debug("[attacker] attempted to feed [H.contents] to [src] ([type]) but it failed.") @@ -224,6 +225,7 @@ P.show_vore_fx = src.show_vore_fx P.can_be_drop_prey = src.can_be_drop_prey P.can_be_drop_pred = src.can_be_drop_pred + P.allow_inbelly_spawning = src.allow_inbelly_spawning P.allow_spontaneous_tf = src.allow_spontaneous_tf P.step_mechanics_pref = src.step_mechanics_pref P.pickup_pref = src.pickup_pref @@ -259,6 +261,7 @@ show_vore_fx = P.show_vore_fx can_be_drop_prey = P.can_be_drop_prey can_be_drop_pred = P.can_be_drop_pred + allow_inbelly_spawning = P.allow_inbelly_spawning allow_spontaneous_tf = P.allow_spontaneous_tf step_mechanics_pref = P.step_mechanics_pref pickup_pref = P.pickup_pref @@ -402,6 +405,11 @@ //You're in a belly! if(isbelly(loc)) + //You've been taken over by a morph + if(istype(src, /mob/living/simple_mob/vore/hostile/morph/dominated_prey)) + var/mob/living/simple_mob/vore/hostile/morph/dominated_prey/s = src + s.undo_prey_takeover(TRUE) + return var/obj/belly/B = loc var/confirm = tgui_alert(src, "You're in a mob. Don't use this as a trick to get out of hostile animals. This is for escaping from preference-breaking and if you're otherwise unable to escape from endo (pred AFK for a long time).", "Confirmation", list("Okay", "Cancel")) if(confirm != "Okay" || loc != B) @@ -435,6 +443,13 @@ holo.drop_prey() //Easiest way log_and_message_admins("[key_name(src)] used the OOC escape button to get out of [key_name(holo.master)] (AI HOLO) ([holo ? "JMP" : "null"])") + //You're in a capture crystal! ((It's not vore but close enough!)) + else if(iscapturecrystal(loc)) + var/obj/item/capture_crystal/crystal = loc + crystal.unleash() + crystal.bound_mob = null + crystal.bound_mob = capture_crystal = 0 + log_and_message_admins("[key_name(src)] used the OOC escape button to get out of [crystal] owned by [crystal.owner]. [ADMIN_FLW(src)]") //Don't appear to be in a vore situation else to_chat(src,"You aren't inside anyone, though, is the thing.") @@ -518,7 +533,16 @@ user.visible_message(success_msg) // Actually shove prey into the belly. - belly.nom_mob(prey, user) + if(istype(prey.loc, /obj/item/weapon/holder)) + var/obj/item/weapon/holder/H = prey.loc + for(var/mob/living/M in H.contents) + belly.nom_mob(M, user) + if(M.loc == H) // In case nom_mob failed somehow. + M.forceMove(get_turf(src)) + H.held_mob = null + qdel(H) + else + belly.nom_mob(prey, user) if(!ishuman(user)) user.update_icons() @@ -536,11 +560,23 @@ /obj/belly/return_air() return return_air_for_internal_lifeform() -/obj/belly/return_air_for_internal_lifeform() +/obj/belly/return_air_for_internal_lifeform(var/mob/living/lifeform) //Free air until someone wants to code processing it for reals from predbreaths - var/datum/gas_mixture/belly_air/air = new(1000) + var/air_type = /datum/gas_mixture/belly_air + if(istype(lifeform)) // If this doesn't succeed, then 'lifeform' is actually a bag or capture crystal with someone inside + air_type = lifeform.get_perfect_belly_air_type() // Without any overrides/changes, its gonna be /datum/gas_mixture/belly_air + + var/air = new air_type(1000) return air +/mob/living/proc/get_perfect_belly_air_type() + return /datum/gas_mixture/belly_air + +/mob/living/carbon/human/get_perfect_belly_air_type() + if(species) + return species.get_perfect_belly_air_type() + return ..() + // This is about 0.896m^3 of atmosphere /datum/gas_mixture/belly_air volume = 2500 @@ -553,6 +589,27 @@ "oxygen" = 21, "nitrogen" = 79) +/datum/gas_mixture/belly_air/vox + volume = 2500 + temperature = 293.150 + total_moles = 104 + +/datum/gas_mixture/belly_air/vox/New() + . = ..() + gas = list( + "phoron" = 100) + +/datum/gas_mixture/belly_air/zaddat + volume = 2500 + temperature = 293.150 + total_moles = 300 + +/datum/gas_mixture/belly_air/zaddat/New() + . = ..() + gas = list( + "oxygen" = 100) + + /mob/living/proc/feed_grabbed_to_self_falling_nom(var/mob/living/user, var/mob/living/prey) var/belly = user.vore_selected return perform_the_nom(user, prey, user, belly, delay = 1) //1/10th of a second is probably fine. @@ -631,7 +688,11 @@ if(S.holding) to_chat(src, "There's something inside!") return - + if(iscapturecrystal(I)) + var/obj/item/capture_crystal/C = I + if(!C.bound_mob.devourable) + to_chat(src, "That doesn't seem like a good idea. (\The [C.bound_mob]'s prefs don't allow it.)") + return drop_item() I.forceMove(vore_selected) updateVRPanel() @@ -685,6 +746,13 @@ else if (istype(I,/obj/item/clothing/accessory/collar)) visible_message("[src] demonstrates their voracious capabilities by swallowing [I] whole!") to_chat(src, "You can taste the submissiveness in the wearer of [I]!") + else if(iscapturecrystal(I)) + var/obj/item/capture_crystal/C = I + if(C.bound_mob && (C.bound_mob in C.contents)) + if(isbelly(C.loc)) + var/obj/belly/B = C.loc + to_chat(C.bound_mob, "Outside of your crystal, you can see; [B.desc]") + to_chat(src, "You can taste the the power of command.") else to_chat(src, "You can taste the flavor of garbage. Delicious.") return @@ -853,6 +921,7 @@ dispvoreprefs += "Healbelly permission: [permit_healbelly ? "Allowed" : "Disallowed"]
" dispvoreprefs += "Spontaneous vore prey: [can_be_drop_prey ? "Enabled" : "Disabled"]
" dispvoreprefs += "Spontaneous vore pred: [can_be_drop_pred ? "Enabled" : "Disabled"]
" + dispvoreprefs += "Inbelly Spawning: [allow_inbelly_spawning ? "Allowed" : "Disallowed"]
" dispvoreprefs += "Spontaneous transformation: [allow_spontaneous_tf ? "Enabled" : "Disabled"]
" dispvoreprefs += "Can be stepped on/over: [step_mechanics_pref ? "Allowed" : "Disallowed"]
" dispvoreprefs += "Can be picked up: [pickup_pref ? "Allowed" : "Disallowed"]
" @@ -875,6 +944,7 @@ var/obj/belly/B = belly to_chat(src, "Belly name: [B.name]") to_chat(src, "Belly desc: [B.desc]") + to_chat(src, "Belly absorbed desc: [B.absorbed_desc]") to_chat(src, "Vore verb: [B.vore_verb]") to_chat(src, "Struggle messages (outside):") for(var/msg in B.struggle_messages_outside) @@ -882,12 +952,30 @@ to_chat(src, "Struggle messages (inside):") for(var/msg in B.struggle_messages_inside) to_chat(src, "[msg]") + to_chat(src, "Absorbed struggle messages (outside):") + for(var/msg in B.absorbed_struggle_messages_outside) + to_chat(src, "[msg]") + to_chat(src, "Absorbed struggle messages (inside):") + for(var/msg in B.absorbed_struggle_messages_inside) + to_chat(src, "[msg]") to_chat(src, "Digest messages (owner):") for(var/msg in B.digest_messages_owner) to_chat(src, "[msg]") to_chat(src, "Digest messages (prey):") for(var/msg in B.digest_messages_prey) to_chat(src, "[msg]") + to_chat(src, "Absorb messages:") + for(var/msg in B.absorb_messages_owner) + to_chat(src, "[msg]") + to_chat(src, "Absorb messages (prey):") + for(var/msg in B.absorb_messages_prey) + to_chat(src, "[msg]") + to_chat(src, "Unabsorb messages:") + for(var/msg in B.unabsorb_messages_owner) + to_chat(src, "[msg]") + to_chat(src, "Unabsorb messages (prey):") + for(var/msg in B.unabsorb_messages_prey) + to_chat(src, "[msg]") to_chat(src, "Examine messages:") for(var/msg in B.examine_messages) to_chat(src, "[msg]") diff --git a/code/modules/vore/eating/vore_vr.dm b/code/modules/vore/eating/vore_vr.dm index e3e7b9befa..4163277462 100644 --- a/code/modules/vore/eating/vore_vr.dm +++ b/code/modules/vore/eating/vore_vr.dm @@ -49,6 +49,7 @@ V::::::V V::::::VO:::::::OOO:::::::ORR:::::R R:::::REE::::::EEEEEE var/feeding = TRUE var/can_be_drop_prey = FALSE var/can_be_drop_pred = FALSE + var/allow_inbelly_spawning = FALSE var/allow_spontaneous_tf = FALSE var/digest_leave_remains = FALSE var/allowmobvore = TRUE @@ -137,6 +138,7 @@ V::::::V V::::::VO:::::::OOO:::::::ORR:::::R R:::::REE::::::EEEEEE show_vore_fx = json_from_file["show_vore_fx"] can_be_drop_prey = json_from_file["can_be_drop_prey"] can_be_drop_pred = json_from_file["can_be_drop_pred"] + allow_inbelly_spawning = json_from_file["allow_inbelly_spawning"] allow_spontaneous_tf = json_from_file["allow_spontaneous_tf"] step_mechanics_pref = json_from_file["step_mechanics_pref"] pickup_pref = json_from_file["pickup_pref"] @@ -165,6 +167,8 @@ V::::::V V::::::VO:::::::OOO:::::::ORR:::::R R:::::REE::::::EEEEEE can_be_drop_prey = FALSE if(isnull(can_be_drop_pred)) can_be_drop_pred = FALSE + if(isnull(allow_inbelly_spawning)) + allow_inbelly_spawning = FALSE if(isnull(allow_spontaneous_tf)) allow_spontaneous_tf = FALSE if(isnull(step_mechanics_pref)) @@ -196,6 +200,7 @@ V::::::V V::::::VO:::::::OOO:::::::ORR:::::R R:::::REE::::::EEEEEE "show_vore_fx" = show_vore_fx, "can_be_drop_prey" = can_be_drop_prey, "can_be_drop_pred" = can_be_drop_pred, + "allow_inbelly_spawning"= allow_inbelly_spawning, "allow_spontaneous_tf" = allow_spontaneous_tf, "step_mechanics_pref" = step_mechanics_pref, "pickup_pref" = pickup_pref, diff --git a/code/modules/vore/eating/vorepanel_vr.dm b/code/modules/vore/eating/vorepanel_vr.dm index d823ad8bae..d83744547d 100644 --- a/code/modules/vore/eating/vorepanel_vr.dm +++ b/code/modules/vore/eating/vorepanel_vr.dm @@ -51,6 +51,7 @@ if(!ui) ui = new(user, src, "VorePanel", "Vore Panel") ui.open() + ui.set_autoupdate(FALSE) // This looks weird, but all tgui_host is used for is state checking // So this allows us to use the self_state just fine. @@ -94,11 +95,26 @@ var/obj/belly/inside_belly = hostloc var/mob/living/pred = inside_belly.owner + var/inside_desc = "No description." + if(host.absorbed && inside_belly.absorbed_desc) + inside_desc = inside_belly.absorbed_desc + else if(inside_belly.desc) + inside_desc = inside_belly.desc + + //I'd rather not copy-paste this code twice into the previous if-statement + //Technically we could just format the text anyway, but IDK how demanding unnecessary text-replacements are + if((host.absorbed && inside_belly.absorbed_desc) || (inside_belly.desc)) + var/formatted_desc + formatted_desc = replacetext(inside_desc, "%belly", lowertext(inside_belly.name)) //replace with this belly's name + formatted_desc = replacetext(formatted_desc, "%pred", pred) //replace with the pred of this belly + formatted_desc = replacetext(formatted_desc, "%prey", host) //replace with whoever's reading this + inside_desc = formatted_desc + inside = list( "absorbed" = host.absorbed, "belly_name" = inside_belly.name, "belly_mode" = inside_belly.digest_mode, - "desc" = inside_belly.desc || "No description.", + "desc" = inside_desc, "pred" = pred, "ref" = "\ref[inside_belly]", ) @@ -148,6 +164,7 @@ "item_mode" = selected.item_digest_mode, "verb" = selected.vore_verb, "desc" = selected.desc, + "absorbed_desc" = selected.absorbed_desc, "fancy" = selected.fancy_vore, "sound" = selected.vore_sound, "release_sound" = selected.release_sound, @@ -187,6 +204,8 @@ selected_list["interacts"]["escapetime"] = selected.escapetime selected_list["interacts"]["transferchance"] = selected.transferchance selected_list["interacts"]["transferlocation"] = selected.transferlocation + selected_list["interacts"]["transferchance_secondary"] = selected.transferchance_secondary + selected_list["interacts"]["transferlocation_secondary"] = selected.transferlocation_secondary selected_list["interacts"]["absorbchance"] = selected.absorbchance selected_list["interacts"]["digestchance"] = selected.digestchance @@ -225,6 +244,7 @@ "show_vore_fx" = host.show_vore_fx, "can_be_drop_prey" = host.can_be_drop_prey, "can_be_drop_pred" = host.can_be_drop_pred, + "allow_inbelly_spawning" = host.allow_inbelly_spawning, "allow_spontaneous_tf" = host.allow_spontaneous_tf, "step_mechanics_active" = host.step_mechanics_pref, "pickup_mechanics_active" = host.pickup_pref, @@ -303,7 +323,7 @@ return set_attr(usr, params) if("saveprefs") - if(!ishuman(host) && !issilicon(host)) + if(host.real_name != host.client.prefs.real_name || (!ishuman(host) && !issilicon(host))) var/choice = tgui_alert(usr, "Warning: Saving your vore panel while playing what is very-likely not your normal character will overwrite whatever character you have loaded in character setup. Maybe this is your 'playing a simple mob' slot, though. Are you SURE you want to overwrite your current slot with these vore bellies?", "WARNING!", list("No, abort!", "Yes, save.")) if(choice != "Yes, save.") return TRUE @@ -359,6 +379,12 @@ host.client.prefs_vr.can_be_drop_prey = host.can_be_drop_prey unsaved_changes = TRUE return TRUE + if("toggle_allow_inbelly_spawning") + host.allow_inbelly_spawning = !host.allow_inbelly_spawning + if(host.client.prefs_vr) + host.client.prefs_vr.allow_inbelly_spawning = host.allow_inbelly_spawning + unsaved_changes = TRUE + return TRUE if("toggle_allow_spontaneous_tf") host.allow_spontaneous_tf = !host.allow_spontaneous_tf if(host.client.prefs_vr) @@ -514,6 +540,9 @@ to_chat(user,"You manage to [lowertext(TB.vore_verb)] [M] into your [lowertext(TB.name)]!") to_chat(M,"[host] manages to [lowertext(TB.vore_verb)] you into their [lowertext(TB.name)]!") to_chat(OB.owner,"Someone inside you has eaten someone else!") + if(M.absorbed) + M.absorbed = FALSE + OB.handle_absorb_langs(M, OB.owner) TB.nom_mob(M) /datum/vore_look/proc/pick_from_outside(mob/user, params) @@ -637,6 +666,7 @@ return FALSE host.vore_selected.digest_mode = new_mode + host.vore_selected.updateVRPanels() . = TRUE if("b_addons") var/list/menu_list = host.vore_selected.mode_flag_list.Copy() @@ -682,7 +712,7 @@ host.vore_selected.egg_type = new_egg_type . = TRUE if("b_desc") - var/new_desc = html_encode(input(usr,"Belly Description ([BELLIES_DESC_MAX] char limit):","New Description",host.vore_selected.desc) as message|null) + var/new_desc = html_encode(input(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) as message|null) if(new_desc) new_desc = readd_quotes(new_desc) @@ -691,9 +721,19 @@ return FALSE host.vore_selected.desc = new_desc . = TRUE + if("b_absorbed_desc") + var/new_desc = html_encode(input(usr,"Belly Description for absorbed prey, '%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.absorbed_desc) as message|null) + + if(new_desc) + new_desc = readd_quotes(new_desc) + if(length(new_desc) > BELLIES_DESC_MAX) + tgui_alert_async(usr, "Entered belly desc too long. [BELLIES_DESC_MAX] character limit.","Error") + return FALSE + host.vore_selected.absorbed_desc = new_desc + . = TRUE if("b_msgs") tgui_alert(user,"Setting abusive or deceptive messages will result in a ban. Consider this your warning. Max 150 characters per message (500 for idle messages), max 10 messages per topic.","Really, don't.") // Should remain tgui_alert() (blocking) - var/help = " Press enter twice to separate messages. '%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. '%count' will be replaced with the number of anything in your belly (will not work for absorbed examine). '%countprey' will be replaced with the number of living prey in your belly (or absorbed prey for absorbed examine)." + var/help = " Press enter twice to separate messages. '%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. '%count' will be replaced with the number of anything in your belly. '%countprey' will be replaced with the number of living prey in your belly." switch(params["msgtype"]) if("dmp") var/new_message = input(user,"These are sent to prey when they expire. Write them in 2nd person ('you feel X'). Avoid using %prey in this type."+help,"Digest Message (to prey)",host.vore_selected.get_messages("dmp")) as message @@ -705,6 +745,26 @@ if(new_message) host.vore_selected.set_messages(new_message,"dmo") + if("amp") + var/new_message = input(user,"These are sent to prey when their absorption finishes. Write them in 2nd person ('you feel X'). Avoid using %prey in this type. %count will not work for this type, and %countprey will only count absorbed victims."+help,"Digest Message (to prey)",host.vore_selected.get_messages("amp")) as message + if(new_message) + host.vore_selected.set_messages(new_message,"amp") + + if("amo") + var/new_message = input(user,"These are sent to you when prey's absorption finishes. Write them in 2nd person ('you feel X'). Avoid using %pred in this type. %count will not work for this type, and %countprey will only count absorbed victims."+help,"Digest Message (to you)",host.vore_selected.get_messages("amo")) as message + if(new_message) + host.vore_selected.set_messages(new_message,"amo") + + if("uamp") + var/new_message = input(user,"These are sent to prey when their unnabsorption finishes. Write them in 2nd person ('you feel X'). Avoid using %prey in this type. %count will not work for this type, and %countprey will only count absorbed victims."+help,"Digest Message (to prey)",host.vore_selected.get_messages("uamp")) as message + if(new_message) + host.vore_selected.set_messages(new_message,"uamp") + + if("uamo") + var/new_message = input(user,"These are sent to you when prey's unabsorption finishes. Write them in 2nd person ('you feel X'). Avoid using %pred in this type. %count will not work for this type, and %countprey will only count absorbed victims."+help,"Digest Message (to you)",host.vore_selected.get_messages("uamo")) as message + if(new_message) + host.vore_selected.set_messages(new_message,"uamo") + if("smo") var/new_message = input(user,"These are sent to those nearby when prey struggles. Write them in 3rd person ('X's Y bulges')."+help,"Struggle Message (outside)",host.vore_selected.get_messages("smo")) as message if(new_message) @@ -715,13 +775,23 @@ if(new_message) host.vore_selected.set_messages(new_message,"smi") + if("asmo") + var/new_message = input(user,"These are sent to those nearby when absorbed prey struggles. Write them in 3rd person ('X's Y bulges'). %count will not work for this type, and %countprey will only count absorbed victims."+help,"Struggle Message (outside)",host.vore_selected.get_messages("asmo")) as message + if(new_message) + host.vore_selected.set_messages(new_message,"asmo") + + if("asmi") + var/new_message = input(user,"These are sent to absorbed prey when they struggle. Write them in 2nd person ('you feel X'). Avoid using %prey in this type. %count will not work for this type, and %countprey will only count absorbed victims."+help,"Struggle Message (inside)",host.vore_selected.get_messages("asmi")) as message + if(new_message) + host.vore_selected.set_messages(new_message,"asmi") + if("em") var/new_message = input(user,"These are sent to people who examine you when this belly has contents. Write them in 3rd person ('Their %belly is bulging')."+help,"Examine Message (when full)",host.vore_selected.get_messages("em")) as message if(new_message) host.vore_selected.set_messages(new_message,"em") if("ema") - var/new_message = input(user,"These are sent to people who examine you when this belly has absorbed victims. Write them in 3rd person ('Their %belly is larger')."+help,"Examine Message (with absorbed victims)",host.vore_selected.get_messages("ema")) as message + var/new_message = input(user,"These are sent to people who examine you when this belly has absorbed victims. Write them in 3rd person ('Their %belly is larger'). %count will not work for this type, and %countprey will only count absorbed victims."+help,"Examine Message (with absorbed victims)",host.vore_selected.get_messages("ema")) as message if(new_message) host.vore_selected.set_messages(new_message,"ema") @@ -735,6 +805,11 @@ if(new_message) host.vore_selected.set_messages(new_message,"im_hold") + if("im_holdabsorbed") + var/new_message = input(user,"These are sent to prey every minute when you are absorbed. Write them in 2nd person ('%pred's %belly squishes down on you.') %count will not work for this type, and %countprey will only count absorbed victims."+help,"Idle Message (Hold Absorbed)",host.vore_selected.get_messages("im_holdabsorbed")) as message + if(new_message) + host.vore_selected.set_messages(new_message,"im_holdabsorbed") + if("im_absorb") var/new_message = input(user,"These are sent to prey every minute when you are on Absorb mode. Write them in 2nd person ('%pred's %belly squishes down on you.')"+help,"Idle Message (Absorb)",host.vore_selected.get_messages("im_absorb")) as message if(new_message) @@ -780,8 +855,14 @@ if(confirm == "DELETE") host.vore_selected.digest_messages_prey = initial(host.vore_selected.digest_messages_prey) host.vore_selected.digest_messages_owner = initial(host.vore_selected.digest_messages_owner) + host.vore_selected.absorb_messages_prey = initial(host.vore_selected.absorb_messages_prey) + host.vore_selected.absorb_messages_owner = initial(host.vore_selected.absorb_messages_owner) + host.vore_selected.unabsorb_messages_prey = initial(host.vore_selected.unabsorb_messages_prey) + host.vore_selected.unabsorb_messages_owner = initial(host.vore_selected.unabsorb_messages_owner) host.vore_selected.struggle_messages_outside = initial(host.vore_selected.struggle_messages_outside) host.vore_selected.struggle_messages_inside = initial(host.vore_selected.struggle_messages_inside) + host.vore_selected.absorbed_struggle_messages_outside = initial(host.vore_selected.absorbed_struggle_messages_outside) + host.vore_selected.absorbed_struggle_messages_inside = initial(host.vore_selected.absorbed_struggle_messages_inside) host.vore_selected.examine_messages = initial(host.vore_selected.examine_messages) host.vore_selected.examine_messages_absorbed = initial(host.vore_selected.examine_messages_absorbed) host.vore_selected.emote_lists = initial(host.vore_selected.emote_lists) @@ -946,6 +1027,21 @@ else host.vore_selected.transferlocation = choice.name . = TRUE + if("b_transferchance_secondary") + var/transfer_secondary_chance_input = input(user, "Set secondary belly transfer chance on resist (as %). You must also set the location for this to have any effect.", "Prey Escape Time") as num|null + if(!isnull(transfer_secondary_chance_input)) + host.vore_selected.transferchance_secondary = sanitize_integer(transfer_secondary_chance_input, 0, 100, initial(host.vore_selected.transferchance_secondary)) + . = TRUE + if("b_transferlocation_secondary") + var/obj/belly/choice_secondary = tgui_input_list(usr, "Where do you want your [lowertext(host.vore_selected.name)] to alternately lead if prey resists?","Select Belly", (host.vore_organs + "None - Remove" - host.vore_selected)) + + if(!choice_secondary) //They cancelled, no changes + return FALSE + else if(choice_secondary == "None - Remove") + host.vore_selected.transferlocation_secondary = null + else + host.vore_selected.transferlocation_secondary = choice_secondary.name + . = TRUE if("b_absorbchance") var/absorb_chance_input = input(user, "Set belly absorb mode chance on resist (as %)", "Prey Absorb Chance") as num|null if(!isnull(absorb_chance_input)) @@ -975,6 +1071,10 @@ dest_for = B.name failure_msg += "This is the destiantion for at least '[dest_for]' belly transfers. Remove it as the destination from any bellies before deleting it. " break + if(B.transferlocation_secondary == host.vore_selected) + dest_for = B.name + failure_msg += "This is the destiantion for at least '[dest_for]' secondary belly transfers. Remove it as the destination from any bellies before deleting it. " + break if(host.vore_selected.contents.len) failure_msg += "You cannot delete bellies with contents! " //These end with spaces, to be nice looking. Make sure you do the same. diff --git a/code/modules/vore/fluffstuff/custom_clothes_vr.dm b/code/modules/vore/fluffstuff/custom_clothes_vr.dm index cbe9bb6419..12fd69166e 100644 --- a/code/modules/vore/fluffstuff/custom_clothes_vr.dm +++ b/code/modules/vore/fluffstuff/custom_clothes_vr.dm @@ -625,6 +625,40 @@ else return 1 +//scree:Avida +/obj/item/clothing/under/skirt/outfit/fluff/avida + name = "purple dress" + desc = "A clingy purple dress with red lacework, with a hole at the back for a tail." + icon = 'icons/vore/custom_clothes_vr.dmi' + icon_state = "avidadress" + item_state = "avidadress" + item_icons = list( + slot_l_hand_str = 'icons/vore/custom_clothes_left_hand_vr.dmi', + slot_r_hand_str = 'icons/vore/custom_clothes_right_hand_vr.dmi', + slot_w_uniform_str = 'icons/vore/custom_onmob_vr.dmi' + ) + +//scree:Avida +/obj/item/clothing/head/fluff/avida + name = "purple witch hat" + desc = "A pointy purple hat with a wide brim, with a red hatband. It appears to have ear-holes in it." + icon = 'icons/vore/custom_clothes_vr.dmi' + icon_state = "avidahat" + item_state = "avidahat" + item_icons = list( + slot_l_hand_str = 'icons/vore/custom_clothes_left_hand_vr.dmi', + slot_r_hand_str = 'icons/vore/custom_clothes_right_hand_vr.dmi', + slot_head_str = 'icons/vore/custom_onmob_32x48_vr.dmi' + ) + +/obj/item/clothing/head/fluff/avida/mob_can_equip(var/mob/living/carbon/human/H, slot, disable_warning = 0) + if(..()) + if(H.ear_style.name == "Bnnuy Ears"||H.ear_style.name == "Bnnuy Ears 2") //check if wearer's ear sprite is compatible with trimmed icon + item_state = initial(src.item_state) + else //if not, just use a generic icon + item_state = "avidahatnoears" + return TRUE + //natje:Pumila /obj/item/clothing/under/fluff/aluranevines name = "Pumila's vines" @@ -645,27 +679,6 @@ else return 1 -/obj/item/clothing/under/fluff/screesuit - name = "Scree's feathers" - desc = "A mop of fluffy blue feathers, the honkmother only knows what kind of bird they originally came from." - - icon = 'icons/vore/custom_clothes_vr.dmi' - icon_state = "screesuit" - - icon_override = 'icons/vore/custom_clothes_vr.dmi' - item_state = "screesuit_mob" - -/obj/item/clothing/under/fluff/screesuit/mob_can_equip(var/mob/living/carbon/human/H, slot, disable_warning = 0) - if(..()) - if(H.ckey != "scree") - to_chat(H, "Are you just going to tape them on or what? This isn't gonna work.") - return 0 - else - return 1 - -/obj/item/clothing/under/fluff/screesuit/digest_act(var/atom/movable/item_storage = null) - return FALSE - //HOS Hardsuit /obj/item/clothing/suit/space/void/security/fluff/hos // ToDo: Rig version. name = "\improper prototype voidsuit" @@ -2296,6 +2309,72 @@ Departamental Swimsuits, for general use colorswap(usr) +//PastelPrinceDan: Masumi Maki & Hatterhat: Harold Robinson +/obj/item/clothing/under/fluff/mechanic_overalls + name = "mechanic overalls" + desc = "A set of white and blue overalls, paired with a yellow shirt." + icon = 'icons/vore/custom_clothes_vr.dmi' + icon_state = "mechaoveralls" + item_state = "mechaoveralls" + icon_override = 'icons/vore/custom_onmob_vr.dmi' + +//PastelPrinceDan: Masumi Maki & Hatterhat: Harold Robinson +/obj/item/clothing/suit/storage/hooded/wintercoat/fluff/mechanic + name = "mechanic winter coat" + desc = "A blue and yellow winter coat, worn only by overachievers." + icon = 'icons/vore/custom_clothes_vr.dmi' + icon_state = "mechacoat" + + icon_override = 'icons/vore/custom_onmob_vr.dmi' + item_state = "mechacoat_mob" + hoodtype = /obj/item/clothing/head/hood/winter/fluff/mechanic + +/obj/item/clothing/head/hood/winter/fluff/mechanic + name = "mechanic winter hood" + desc = "A blue and yellow winter coat's hood." + icon = 'icons/vore/custom_clothes_vr.dmi' + icon_state = "mechahood" + + icon_override = 'icons/vore/custom_onmob_vr.dmi' + item_state = "mechahood_mob" + +/obj/item/clothing/suit/storage/hooded/wintercoat/fluff/mechanic/ui_action_click() + ToggleHood_mechacoat() + +/obj/item/clothing/suit/storage/hooded/wintercoat/fluff/mechanic/equipped(mob/user, slot) + if(slot != slot_wear_suit) + RemoveHood_mechacoat() + ..() + +/obj/item/clothing/suit/storage/hooded/wintercoat/fluff/mechanic/proc/RemoveHood_mechacoat() + icon_state = "mechacoat" + item_state = "mechacoat_mob" + hood_up = 0 + if(ishuman(hood.loc)) + var/mob/living/carbon/H = hood.loc + H.unEquip(hood, 1) + H.update_inv_wear_suit() + hood.loc = src + +/obj/item/clothing/suit/storage/hooded/wintercoat/fluff/mechanic/proc/ToggleHood_mechacoat() + if(!hood_up) + if(ishuman(loc)) + var/mob/living/carbon/human/H = loc + if(H.wear_suit != src) + to_chat(H, "You must be wearing [src] to put up the hood!") + return + if(H.head) + to_chat(H, "You're already wearing something on your head!") + return + else + H.equip_to_slot_if_possible(hood,slot_head,0,0,1) + hood_up = 1 + icon_state = "mechacoat_t" + item_state = "mechacoat_mob_t" + H.update_inv_wear_suit() + else + RemoveHood_mechacoat() + //Pandora029 : Evelyn Tareen /obj/item/clothing/suit/storage/hooded/wintercoat/security/fluff/evelyn name = "warden's navy winter coat" @@ -2352,4 +2431,12 @@ Departamental Swimsuits, for general use item_state = "evelyncoat_mob_t" H.update_inv_wear_suit() else - RemoveHood_evelyn() \ No newline at end of file + RemoveHood_evelyn() + +//Uncle_Fruit_VEVO - Bradley Khatibi +/obj/item/clothing/shoes/fluff/airjordans + name = "A pair of Air Jordan 1 Mid 'Black Gym Red's" + desc = "Appearing in a classic Jordan Brand colorway, the Air Jordan 1 Mid 'Black Gym Red' released in May 2021. Built with leather, the shoe's upper sports a white base, contrasted by black on the overlays and highlighted by Gym Red on the padded collar, 'Wings' logo and Swoosh branding. A breathable nylon tongue and perforated toe box support the fit, while underfoot, a standard rubber cupsole with Air in the heel anchors the build." + icon_state = "airjordans" + icon = 'icons/vore/custom_clothes_vr.dmi' + icon_override = 'icons/vore/custom_onmob_vr.dmi' \ No newline at end of file diff --git a/code/modules/vore/fluffstuff/custom_items_vr.dm b/code/modules/vore/fluffstuff/custom_items_vr.dm index 79b061004d..ba6d7976ef 100644 --- a/code/modules/vore/fluffstuff/custom_items_vr.dm +++ b/code/modules/vore/fluffstuff/custom_items_vr.dm @@ -1078,13 +1078,6 @@ add_fingerprint(user) return -/obj/item/weapon/melee/fluffstuff/suicide_act(mob/user) - var/tempgender = "[user.gender == MALE ? "he's" : user.gender == FEMALE ? "she's" : "they are"]" - if(active) - user.visible_message(pick("\The [user] is slitting \his stomach open with \the [src]! It looks like [tempgender] trying to commit seppuku.",\ - "\The [user] is falling on \the [src]! It looks like [tempgender] trying to commit suicide.")) - return (BRUTELOSS|FIRELOSS) - /obj/item/weapon/melee/fluffstuff/wolfgirlsword name = "Wolfgirl Sword Replica" desc = "A replica of a large, scimitar-like sword with a dull edge. Ceremonial... until it isn't." @@ -1404,4 +1397,56 @@ hold.can_hold = list(/obj/item/weapon/material/knife, /obj/item/weapon/reagent_containers/glass/bottle) new /obj/item/weapon/material/knife/machete/hatchet/unathiknife/fluff/antoinette(hold) - new /obj/item/weapon/reagent_containers/glass/bottle/poppy(hold) \ No newline at end of file + new /obj/item/weapon/reagent_containers/glass/bottle/poppy(hold) + + +//Hunterbirk - Amaryll +//This is a 'technical item' which basically is meant to represent rippiing things up with bare claws. +/obj/item/weapon/surgical/scalpel/amaryll_claws + name = "Amaryll's Claws" + desc = "This doesn't quite look like what it really is." + icon = 'icons/vore/custom_items_vr.dmi' + icon_state = "claws" + drop_sound = null + pickup_sound = null + origin_tech = null + matter = null + +//Coolcrow420 - Jade Davis +/obj/item/weapon/stamp/fluff/jade_horror + name = "Council of Mid Horror rubber stamp" + icon = 'icons/vore/custom_items_vr.dmi' + icon_state = "stamp-midhorror" + stamptext = "This paper has been certified by The Council of Mid Horror" + +//thedavestdave Lucky +///I know this is pretty bodgey but if it stupid and it works it isn't stupid +/obj/item/clothing/suit/storage/hooded/explorer/lucky + icon = 'icons/vore/custom_clothes_vr.dmi' + icon_state = "luck" + icon_override = 'icons/vore/custom_clothes_vr.dmi' + item_state = "luck" + name = "Lucky's armor" + desc = "A chain mail suit with a badly drawn one eared cat on the front." + + +/obj/item/device/modkit_conversion/crusader_luck + skip_content_check = TRUE + name = "Lucky's armor" + desc = "A chain mail suit with a badly drawn one eared cat on the front." + icon = 'icons/vore/custom_items_vr.dmi' + icon_state = "modkit" + from_suit = /obj/item/clothing/suit/storage/hooded/explorer + to_suit = /obj/item/clothing/suit/storage/hooded/explorer/lucky + +//RevolverEloise - Revolver Eloise +/obj/item/weapon/sword/fluff/revolver + name = "Catnip" + desc = "A steel claymore with what appears to be a teppi engraved into the hilt and a finely forged metal cuboid for a pommel. The blade is honed and balanced to an unusually high degree and has clearly been meticulously cared for." + icon = 'icons/vore/custom_items_vr.dmi' + icon_state = "revclaymore" + icon_override = 'icons/vore/custom_items_vr.dmi' + item_state = "revclaymoremob" + force = 1 + sharp = TRUE + edge = TRUE \ No newline at end of file diff --git a/code/modules/vore/resizing/resize_vr.dm b/code/modules/vore/resizing/resize_vr.dm index ec2aead7de..083e12a544 100644 --- a/code/modules/vore/resizing/resize_vr.dm +++ b/code/modules/vore/resizing/resize_vr.dm @@ -173,7 +173,7 @@ var/mob/living/simple_mob/SA = M if(!SA.has_hands) return 0 - if(size_diff >= 0.50 || mob_size < MOB_SMALL) + if(size_diff >= 0.50 || mob_size < MOB_SMALL || size_diff >= get_effective_size()) if(buckled) to_chat(usr,"You have to unbuckle \the [src] before you pick them up.") return 0 diff --git a/code/modules/vore/resizing/sizegun_vr.dm b/code/modules/vore/resizing/sizegun_vr.dm index cb9b6f80aa..20db6e308e 100644 --- a/code/modules/vore/resizing/sizegun_vr.dm +++ b/code/modules/vore/resizing/sizegun_vr.dm @@ -7,8 +7,8 @@ desc = "A highly advanced ray gun with a knob on the side to adjust the size you desire. Warning: Do not insert into mouth." icon = 'icons/obj/gun_vr.dmi' icon_override = 'icons/obj/gun_vr.dmi' - icon_state = "sizegun-shrink100" - item_state = "sizegun-shrink" + icon_state = "sizegun" + item_state = "sizegun" fire_sound = 'sound/weapons/wave.ogg' charge_cost = 240 projectile_type = /obj/item/projectile/beam/sizelaser @@ -42,7 +42,6 @@ set category = "Object" set src in view(1) - var/prev_size = size_set_to var/size_select = input(usr, "Put the desired size (25-200%), (1-600%) in dormitory areas.", "Set Size", size_set_to * 100) as num|null if(!size_select) return //cancelled @@ -52,22 +51,39 @@ to_chat(usr, "You set the size to [size_select]%") if(size_set_to < RESIZE_MINIMUM || size_set_to > RESIZE_MAXIMUM) to_chat(usr, "Note: Resizing limited to 25-200% automatically while outside dormatory areas.") //hint that we clamp it in resize - - if(size_set_to >= 1 && prev_size < 1) - item_state = modifystate = "sizegun-grow" - update_icon() - - else if(size_set_to < 1 && prev_size >= 1) - item_state = modifystate = "sizegun-shrink" - update_icon() + +/obj/item/weapon/gun/energy/sizegun/update_icon(var/ignore_inhands) + var/grow_mode = "shrink" + if(size_set_to > 1) + grow_mode = "grow" + if(charge_meter) + var/ratio = power_supply.charge / power_supply.maxcharge + + //make sure that rounding down will not give us the empty state even if we have charge for a shot left. + if(power_supply.charge < charge_cost) + ratio = 0 + else + ratio = max(round(ratio, 0.25) * 100, 25) + + icon_state = "[initial(icon_state)]-[grow_mode][ratio]" + item_state = "[initial(icon_state)]-[grow_mode]" + + if(!ignore_inhands) update_held_icon() /obj/item/weapon/gun/energy/sizegun/examine(mob/user) . = ..() . += "It is currently set at [size_set_to*100]%" +/obj/item/weapon/gun/energy/sizegun/old + desc = "A highly advanced ray gun with a knob on the side to adjust the size you desire. This one seems to be an older model, but still functional. Warning: Do not insert into mouth." + icon_state = "sizegun-old" + item_state = "sizegun-old" + /obj/item/weapon/gun/energy/sizegun/admin name = "modified size gun" - desc = "Sizegun, without limits on minimum/maximum size, and with unlimited charge. Time to show 'em that size does matter." + desc = "An older model sizegun, modified to be without limits on minimum/maximum size, and have an unlimited charge. Time to show 'em that size does matter." + icon_state = "sizegun_admin" + item_state = "sizegun_admin" charge_cost = 0 projectile_type = /obj/item/projectile/beam/sizelaser/admin @@ -111,8 +127,12 @@ /obj/item/projectile/beam/sizelaser/on_hit(var/atom/target) var/mob/living/M = target var/ignoring_prefs = (target == firer ? TRUE : FALSE) // Resizing yourself - if(istype(M)) + if(ishuman(M)) + var/mob/living/carbon/human/H = M + if(istype(H.gloves, /obj/item/clothing/gloves/bluespace)) + M.visible_message("\The [H]'s bracelet flashes and absorbs the beam!","Your bracelet flashes and absorbs the beam!") + return if(!M.resize(set_size, uncapped = M.has_large_resize_bounds(), ignore_prefs = ignoring_prefs)) to_chat(M, "The beam fires into your body, changing your size!") M.updateicon() @@ -121,7 +141,7 @@ /obj/item/projectile/beam/sizelaser/admin/on_hit(var/atom/target) var/mob/living/M = target - + if(istype(M)) var/can_be_big = M.has_large_resize_bounds() @@ -131,7 +151,7 @@ to_chat(firer, "[M] will lose this size upon moving into an area where this size is not allowed.") else if(very_big) // made an extreme size in an area that doesn't allow it, assume adminbuse to_chat(firer, "[M] will retain this normally unallowed size outside this area.") - + M.resize(set_size, uncapped = TRUE, ignore_prefs = TRUE) // Always ignores prefs, caution is advisable to_chat(M, "The beam fires into your body, changing your size!") diff --git a/code/modules/xenoarcheaology/effects/vampire.dm b/code/modules/xenoarcheaology/effects/vampire.dm index cf0ae9a246..e5a069b935 100644 --- a/code/modules/xenoarcheaology/effects/vampire.dm +++ b/code/modules/xenoarcheaology/effects/vampire.dm @@ -30,7 +30,8 @@ DoEffectAura() /datum/artifact_effect/vampire/DoEffectAura() - nearby_mobs.Cut() + if (nearby_mobs.len) + nearby_mobs.Cut() var/turf/T = get_turf(holder) diff --git a/code/modules/xenoarcheaology/tools/equipment.dm b/code/modules/xenoarcheaology/tools/equipment.dm index 2cdc3e5d0e..cd4a3278f2 100644 --- a/code/modules/xenoarcheaology/tools/equipment.dm +++ b/code/modules/xenoarcheaology/tools/equipment.dm @@ -33,3 +33,21 @@ icon_state = "cespace_helmet" item_state = "cespace_helmet" armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 100, rad = 100) + +//VOREStation Add Start +/obj/item/clothing/suit/space/anomaly/heat + name = "Heat Adapted Excavation suit" + desc = "A pressure resistant excavation suit partially capable of insulating against exotic alien energies and heat." + heat_protection = UPPER_TORSO|LOWER_TORSO|LEGS|FEET|ARMS|HANDS + max_heat_protection_temperature = FIRESUIT_MAX_HEAT_PROTECTION_TEMPERATURE+1000 + min_pressure_protection = 0 * ONE_ATMOSPHERE + max_pressure_protection = 5* ONE_ATMOSPHERE + +/obj/item/clothing/head/helmet/space/anomaly/heat + name = "Heat Adapted Excavation hood" + desc = "A pressure resistant excavation hood partially capable of insulating against exotic alien energies and heat." + heat_protection = HEAD|FACE|EYES + max_heat_protection_temperature = FIRE_HELMET_MAX_HEAT_PROTECTION_TEMPERATURE+1000 + min_pressure_protection = 0 * ONE_ATMOSPHERE + max_pressure_protection = 5* ONE_ATMOSPHERE +//VOREStation Add End \ No newline at end of file diff --git a/code/modules/xenoarcheaology/tools/suspension_generator.dm b/code/modules/xenoarcheaology/tools/suspension_generator.dm index 08d41fc121..2f2c87954e 100644 --- a/code/modules/xenoarcheaology/tools/suspension_generator.dm +++ b/code/modules/xenoarcheaology/tools/suspension_generator.dm @@ -13,6 +13,15 @@ /obj/machinery/suspension_gen/Initialize() . = ..() cell = new /obj/item/weapon/cell/high(src) + power_change() + +/obj/machinery/suspension_gen/power_change() + var/oldstat = stat + if(cell) + stat &= ~NOPOWER + else + stat |= NOPOWER + return (stat != oldstat) /obj/machinery/suspension_gen/process() if(suspension_field) @@ -56,7 +65,7 @@ /obj/machinery/suspension_gen/tgui_data(mob/user, datum/tgui/ui, datum/tgui_state/state) var/list/data = ..() - + data["cell"] = cell data["cellCharge"] = cell?.charge data["cellMaxCharge"] = cell?.maxcharge diff --git a/code/unit_tests/zas_tests.dm b/code/unit_tests/zas_tests.dm index d946f35870..842cc88abd 100644 --- a/code/unit_tests/zas_tests.dm +++ b/code/unit_tests/zas_tests.dm @@ -61,6 +61,7 @@ test_result["result"] = 1 test_result["msg"] = "Checked [GM_checked.len] zones" else + test_result["result"] = 1 // VOREStation Add - Why MUST we map in every area? test_result["msg"] = "No zones checked." return test_result diff --git a/config/alienwhitelist.txt b/config/alienwhitelist.txt index ed7eca790c..2e9994be80 100644 --- a/config/alienwhitelist.txt +++ b/config/alienwhitelist.txt @@ -1,3 +1,4 @@ +1062aphelion - Protean admiraldragon - Vox aetherelemental - Daemon alphaprime1 - Protean @@ -8,43 +9,53 @@ arokha - Protean aruis - Diona aruis - Protean aruis - Xenochimera +auraribbon - Black-Eyed Shadekin azmodan412 - Xenochimera beyondmylife - Protean bothnevarbackwards - Diona bricker98 - Protean camanis - Protean cgr - Protean +chaosdoomsday - Black-Eyed Shadekin chargae - Protean chemlight - Xenochimera chillyfang - Black-Eyed Shadekin comradenitro - Protean +coolcrow420 - Black-Eyed Shadekin crossexonar - Protean detectivegoogle - Protean +digi5 - Protean digitalsquirrel95 - Black-Eyed Shadekin digitalsquirrel95 - Protean draycu - Vox +falloutdog3 - Black-Eyed Shadekin flaktual - Vox flurriee - Protean funnyman2003 - Xenochimera greennyy - Protean +h0lysquirr3l - Protean hawkerthegreat - Vox +heroman3003 - Xenochimera hollifex - Diona huenererschrecker - Xenochimera +hunterbirk - Protean hunterbirk - Xenochimera -h0lysquirr3l - Protean idcaboutaname - Protean inuzari - Diona jademanique - Black-Eyed Shadekin +jademanique - Teppi jademanique - Xenochimera joltze - Black-Eyed Shadekin khanivore - Protean killjaden - Protean ktccd - Diona -liache - Black-Eyed Shadekin +lillianfyre - Xenochimera lizehrd - Xenochimera lordlag - Black-Eyed Shadekin +lorgenz - Protean losstinspess - Xenochimera magpiemayhem - Vox +magpiemayhem - Xenochimera marcobarko - Protean mewchild - Diona mewchild - Vox @@ -54,12 +65,14 @@ natje - Xenochimera nerdass - Protean newyorks - Protean oneofmanynames385 - Protean +ontejbjoav - Black-Eyed Shadekin ontejbjoav - Diona oreganovulgaris - Xenochimera owwy - Black-Eyed Shadekin oxenfree - Protean paradoxspace - Xenochimera pastelprincedan - Black-Eyed Shadekin +pastelprincedan - Protean pearlprophet - Protean pemdesos - Protean phoenixx0 - Vox @@ -67,46 +80,53 @@ qrocakes - Black-Eyed Shadekin radiantaurora - Protean residentcody - Black-Eyed Shadekin residentcody - Protean +revolvereloise - Protean rikaru19xjenkins - Xenochimera rixunie - Diona rubyflamewing - Protean rykkastormheart - Xenochimera ryumi - Protean ryumi - Xenochimera +satinisle - Black-Eyed Shadekin scoutisafolflol - Xenochimera seiga - Vox sepulchre - Vox -stobarico - Protean silvertalismen - Diona silvertalismen - Vox silvertalismen - Xenochimera skylarks - Black-Eyed Shadekin +spirit1299 - Black-Eyed Shadekin stackerrobot - Protean storesund97 - Protean syzygyrior - Black-Eyed Shadekin +tankthebirb - Black-Eyed Shadekin tastypred - Black-Eyed Shadekin -tastypred - Xenochimera tastypred - Protean -terrestris - Vox +tastypred - Xenochimera terrestris - Common Skrellian terrestris - High Skrellian -timidvi - Diona +terrestris - Vox thedavestdave - Protean +timidvi - Diona trifireblade - Protean trikonei - Protean +umbraferros - Black-Eyed Shadekin +umbraferros - Protean umbrenos - Black-Eyed Shadekin varonis - Xenochimera verkister - Xenochimera verysoft - Black-Eyed Shadekin +verysoft - Teppi vitoras - Protean voidalynx - Black-Eyed Shadekin voidalynx - Protean wickedtemp - Shadekin Empathy xioen - Diona -xioen - Xenochimera xioen - Protean +xioen - Xenochimera xonkon - Protean +yecrowbarman - Protean +yeehawguvnah - Protean zalvine - Shadekin Empathy zammyman215 - Vox zeracyfr - Xenochimera -spirit1299 - Black-Eyed Shadekin diff --git a/config/example/config.txt b/config/example/config.txt index 30b9cd6c20..6eac0e822f 100644 --- a/config/example/config.txt +++ b/config/example/config.txt @@ -588,4 +588,9 @@ DEFIB_TIMER 60 # SUGGESTED: artist (str), genre (str) # OPTIONAL: secret (bool), lobby (bool) #JUKEBOX_TRACK_FILES config/jukebox.json;config/jukebox_private.json -JUKEBOX_TRACK_FILES config/jukebox.json \ No newline at end of file +JUKEBOX_TRACK_FILES config/jukebox.json + +# Suggested BYOND client version (major component, e.g. 514) +#SUGGESTED_BYOND_VERSION 514 +# Suggested BYOND client build (minor component, e.g. 1560) +#SUGGESTED_BYOND_BUILD 1561 \ No newline at end of file diff --git a/config/jobwhitelist.txt b/config/jobwhitelist.txt index ac4a862fba..b547a78176 100644 --- a/config/jobwhitelist.txt +++ b/config/jobwhitelist.txt @@ -1,17 +1,22 @@ # Job whitelist in format ckey - jobname # Like arokha - clown -awkwarddryad - mime akram - clown amshaegaar - mime +auraribbon - clown +awkwarddryad - mime +chargae - mime +h0lysquirr3l - clown +joey4298 - mime +pastelprincedan - mime +pastelprincedan - clown +radishfriend - clown seiga - mime +sgtryder - mime +siennaathens - clown silvertalismen - clown suicidalpickles - mime -joey4298 - mime -whiskyrose - clown tinybear16 - clown -chargae - mime -verkister - clown -H0lySquirr3l - clown -sgtryder - mime tygertac - clown -radishfriend - clown +verkister - clown +whiskyrose - clown +yecrowbarman - mime \ No newline at end of file diff --git a/icons/_nanomaps/sd_deck1.png b/icons/_nanomaps/sd_deck1.png new file mode 100644 index 0000000000..835180e331 Binary files /dev/null and b/icons/_nanomaps/sd_deck1.png differ diff --git a/icons/_nanomaps/sd_deck2.png b/icons/_nanomaps/sd_deck2.png new file mode 100644 index 0000000000..08673c8a94 Binary files /dev/null and b/icons/_nanomaps/sd_deck2.png differ diff --git a/icons/_nanomaps/sd_deck3.png b/icons/_nanomaps/sd_deck3.png new file mode 100644 index 0000000000..bc46e8a5b0 Binary files /dev/null and b/icons/_nanomaps/sd_deck3.png differ diff --git a/icons/_nanomaps/tether_nanomap_z1.png b/icons/_nanomaps/tether_nanomap_z1.png index e8510b3a4d..1ad2755b7c 100644 Binary files a/icons/_nanomaps/tether_nanomap_z1.png and b/icons/_nanomaps/tether_nanomap_z1.png differ diff --git a/icons/_nanomaps/tether_nanomap_z2.png b/icons/_nanomaps/tether_nanomap_z2.png index a2d478b413..d30a99906b 100644 Binary files a/icons/_nanomaps/tether_nanomap_z2.png and b/icons/_nanomaps/tether_nanomap_z2.png differ diff --git a/icons/_nanomaps/tether_nanomap_z3.png b/icons/_nanomaps/tether_nanomap_z3.png index 15893675cf..3c55412116 100644 Binary files a/icons/_nanomaps/tether_nanomap_z3.png and b/icons/_nanomaps/tether_nanomap_z3.png differ diff --git a/icons/_nanomaps/tether_nanomap_z4.png b/icons/_nanomaps/tether_nanomap_z4.png index 510d22b3d6..c2623219ee 100644 Binary files a/icons/_nanomaps/tether_nanomap_z4.png and b/icons/_nanomaps/tether_nanomap_z4.png differ diff --git a/icons/_nanomaps/tether_nanomap_z5.png b/icons/_nanomaps/tether_nanomap_z5.png index 6a368871fd..0e85f1c55a 100644 Binary files a/icons/_nanomaps/tether_nanomap_z5.png and b/icons/_nanomaps/tether_nanomap_z5.png differ diff --git a/icons/inventory/accessory/item.dmi b/icons/inventory/accessory/item.dmi index 61e8c36841..766a661e79 100644 Binary files a/icons/inventory/accessory/item.dmi and b/icons/inventory/accessory/item.dmi differ diff --git a/icons/inventory/accessory/item_vr.dmi b/icons/inventory/accessory/item_vr.dmi index c39fad3292..2f4624f1cf 100644 Binary files a/icons/inventory/accessory/item_vr.dmi and b/icons/inventory/accessory/item_vr.dmi differ diff --git a/icons/inventory/accessory/mob.dmi b/icons/inventory/accessory/mob.dmi index e3edb23202..b6e325e2d8 100644 Binary files a/icons/inventory/accessory/mob.dmi and b/icons/inventory/accessory/mob.dmi differ diff --git a/icons/inventory/back/item_vr.dmi b/icons/inventory/back/item_vr.dmi index 942813b127..cbeb1b0bc8 100644 Binary files a/icons/inventory/back/item_vr.dmi and b/icons/inventory/back/item_vr.dmi differ diff --git a/icons/inventory/back/mob_vr.dmi b/icons/inventory/back/mob_vr.dmi index bfede208b8..62b4e68d05 100644 Binary files a/icons/inventory/back/mob_vr.dmi and b/icons/inventory/back/mob_vr.dmi differ diff --git a/icons/inventory/belt/item.dmi b/icons/inventory/belt/item.dmi index 9fd819307a..bde59b458b 100644 Binary files a/icons/inventory/belt/item.dmi and b/icons/inventory/belt/item.dmi differ diff --git a/icons/inventory/belt/mob.dmi b/icons/inventory/belt/mob.dmi index c3f0f0d956..a8e2aaacd7 100644 Binary files a/icons/inventory/belt/mob.dmi and b/icons/inventory/belt/mob.dmi differ diff --git a/icons/inventory/belt/mob_teshari.dmi b/icons/inventory/belt/mob_teshari.dmi index fa68573c10..54741b82c0 100644 Binary files a/icons/inventory/belt/mob_teshari.dmi and b/icons/inventory/belt/mob_teshari.dmi differ diff --git a/icons/inventory/ears/mob.dmi b/icons/inventory/ears/mob.dmi index 174ed17469..95ec0e9c8a 100644 Binary files a/icons/inventory/ears/mob.dmi and b/icons/inventory/ears/mob.dmi differ diff --git a/icons/inventory/eyes/item.dmi b/icons/inventory/eyes/item.dmi index b4ba37ad39..a465f414c3 100644 Binary files a/icons/inventory/eyes/item.dmi and b/icons/inventory/eyes/item.dmi differ diff --git a/icons/inventory/eyes/mob.dmi b/icons/inventory/eyes/mob.dmi index 70113e3d8c..f2fdd8a45f 100644 Binary files a/icons/inventory/eyes/mob.dmi and b/icons/inventory/eyes/mob.dmi differ diff --git a/icons/inventory/face/item.dmi b/icons/inventory/face/item.dmi index 5bde3b32d4..fb8c950859 100644 Binary files a/icons/inventory/face/item.dmi and b/icons/inventory/face/item.dmi differ diff --git a/icons/inventory/face/item_vr.dmi b/icons/inventory/face/item_vr.dmi index 78230b3e59..f959366a0f 100644 Binary files a/icons/inventory/face/item_vr.dmi and b/icons/inventory/face/item_vr.dmi differ diff --git a/icons/inventory/face/mob.dmi b/icons/inventory/face/mob.dmi index fd1af6e950..83095f8a10 100644 Binary files a/icons/inventory/face/mob.dmi and b/icons/inventory/face/mob.dmi differ diff --git a/icons/inventory/face/mob_teshari.dmi b/icons/inventory/face/mob_teshari.dmi index 9d9b6afb77..c8c4004ebd 100644 Binary files a/icons/inventory/face/mob_teshari.dmi and b/icons/inventory/face/mob_teshari.dmi differ diff --git a/icons/inventory/face/mob_vr.dmi b/icons/inventory/face/mob_vr.dmi index ec49d3cdb7..6cb60f47c5 100644 Binary files a/icons/inventory/face/mob_vr.dmi and b/icons/inventory/face/mob_vr.dmi differ diff --git a/icons/inventory/face/mob_vr_teshari.dmi b/icons/inventory/face/mob_vr_teshari.dmi index 3914b57a13..5a549885c7 100644 Binary files a/icons/inventory/face/mob_vr_teshari.dmi and b/icons/inventory/face/mob_vr_teshari.dmi differ diff --git a/icons/inventory/feet/item.dmi b/icons/inventory/feet/item.dmi index 12f1e8bc4a..5da36d908a 100644 Binary files a/icons/inventory/feet/item.dmi and b/icons/inventory/feet/item.dmi differ diff --git a/icons/inventory/feet/mob.dmi b/icons/inventory/feet/mob.dmi index 585b658f99..f89178cc90 100644 Binary files a/icons/inventory/feet/mob.dmi and b/icons/inventory/feet/mob.dmi differ diff --git a/icons/inventory/hands/item.dmi b/icons/inventory/hands/item.dmi index 9949cefb10..556cfcfb56 100644 Binary files a/icons/inventory/hands/item.dmi and b/icons/inventory/hands/item.dmi differ diff --git a/icons/inventory/hands/item_vr.dmi b/icons/inventory/hands/item_vr.dmi index 749d4df189..302f4be618 100644 Binary files a/icons/inventory/hands/item_vr.dmi and b/icons/inventory/hands/item_vr.dmi differ diff --git a/icons/inventory/hands/mob.dmi b/icons/inventory/hands/mob.dmi index 32008f190b..e3912aa269 100644 Binary files a/icons/inventory/hands/mob.dmi and b/icons/inventory/hands/mob.dmi differ diff --git a/icons/inventory/hands/mob_vr.dmi b/icons/inventory/hands/mob_vr.dmi index 3a8806e48c..8aed1c166d 100644 Binary files a/icons/inventory/hands/mob_vr.dmi and b/icons/inventory/hands/mob_vr.dmi differ diff --git a/icons/inventory/hands/mob_vr_teshari.dmi b/icons/inventory/hands/mob_vr_teshari.dmi new file mode 100644 index 0000000000..2d79a8ac14 Binary files /dev/null and b/icons/inventory/hands/mob_vr_teshari.dmi differ diff --git a/icons/inventory/hands/mob_vr_vox.dmi b/icons/inventory/hands/mob_vr_vox.dmi new file mode 100644 index 0000000000..405ce4b76f Binary files /dev/null and b/icons/inventory/hands/mob_vr_vox.dmi differ diff --git a/icons/inventory/hands/mob_vr_werebeast.dmi b/icons/inventory/hands/mob_vr_werebeast.dmi index 7b14f5bf96..f117406623 100644 Binary files a/icons/inventory/hands/mob_vr_werebeast.dmi and b/icons/inventory/hands/mob_vr_werebeast.dmi differ diff --git a/icons/inventory/head/item.dmi b/icons/inventory/head/item.dmi index bc1ad569c2..76b8118409 100644 Binary files a/icons/inventory/head/item.dmi and b/icons/inventory/head/item.dmi differ diff --git a/icons/inventory/head/item_skrell.dmi b/icons/inventory/head/item_skrell.dmi index 3977261932..86844d8526 100644 Binary files a/icons/inventory/head/item_skrell.dmi and b/icons/inventory/head/item_skrell.dmi differ diff --git a/icons/inventory/head/item_tajaran.dmi b/icons/inventory/head/item_tajaran.dmi index b4fd4241e0..b649db2403 100644 Binary files a/icons/inventory/head/item_tajaran.dmi and b/icons/inventory/head/item_tajaran.dmi differ diff --git a/icons/inventory/head/item_unathi.dmi b/icons/inventory/head/item_unathi.dmi index a3a6bf1fff..96ae1725cd 100644 Binary files a/icons/inventory/head/item_unathi.dmi and b/icons/inventory/head/item_unathi.dmi differ diff --git a/icons/inventory/head/item_vr.dmi b/icons/inventory/head/item_vr.dmi index c80a9e2927..54a988a2b7 100644 Binary files a/icons/inventory/head/item_vr.dmi and b/icons/inventory/head/item_vr.dmi differ diff --git a/icons/inventory/head/item_vr_akula.dmi b/icons/inventory/head/item_vr_akula.dmi index 3fd5294057..cf2ea23141 100644 Binary files a/icons/inventory/head/item_vr_akula.dmi and b/icons/inventory/head/item_vr_akula.dmi differ diff --git a/icons/inventory/head/item_vr_sergal.dmi b/icons/inventory/head/item_vr_sergal.dmi index 48908b9e39..e9536d2ecc 100644 Binary files a/icons/inventory/head/item_vr_sergal.dmi and b/icons/inventory/head/item_vr_sergal.dmi differ diff --git a/icons/inventory/head/item_vr_vulpkanin.dmi b/icons/inventory/head/item_vr_vulpkanin.dmi index b83b041501..c3be906c44 100644 Binary files a/icons/inventory/head/item_vr_vulpkanin.dmi and b/icons/inventory/head/item_vr_vulpkanin.dmi differ diff --git a/icons/inventory/head/mob.dmi b/icons/inventory/head/mob.dmi index 4fe11e11f9..0917a414bd 100644 Binary files a/icons/inventory/head/mob.dmi and b/icons/inventory/head/mob.dmi differ diff --git a/icons/inventory/head/mob_skrell.dmi b/icons/inventory/head/mob_skrell.dmi index e862a0730e..ab3267b937 100644 Binary files a/icons/inventory/head/mob_skrell.dmi and b/icons/inventory/head/mob_skrell.dmi differ diff --git a/icons/inventory/head/mob_tajaran.dmi b/icons/inventory/head/mob_tajaran.dmi index 84f3982c2d..3527c445b7 100644 Binary files a/icons/inventory/head/mob_tajaran.dmi and b/icons/inventory/head/mob_tajaran.dmi differ diff --git a/icons/inventory/head/mob_unathi.dmi b/icons/inventory/head/mob_unathi.dmi index c48827c6bf..d78cf385aa 100644 Binary files a/icons/inventory/head/mob_unathi.dmi and b/icons/inventory/head/mob_unathi.dmi differ diff --git a/icons/inventory/head/mob_vox.dmi b/icons/inventory/head/mob_vox.dmi index a0b81bfbd0..346ea9b7d1 100644 Binary files a/icons/inventory/head/mob_vox.dmi and b/icons/inventory/head/mob_vox.dmi differ diff --git a/icons/inventory/head/mob_vr.dmi b/icons/inventory/head/mob_vr.dmi index dff6cb7eab..2c417cdd25 100644 Binary files a/icons/inventory/head/mob_vr.dmi and b/icons/inventory/head/mob_vr.dmi differ diff --git a/icons/inventory/head/mob_vr_akula.dmi b/icons/inventory/head/mob_vr_akula.dmi index a952c48923..6ea289d7f7 100644 Binary files a/icons/inventory/head/mob_vr_akula.dmi and b/icons/inventory/head/mob_vr_akula.dmi differ diff --git a/icons/inventory/head/mob_vr_sergal.dmi b/icons/inventory/head/mob_vr_sergal.dmi index d1c60634b2..eb67a6dc5c 100644 Binary files a/icons/inventory/head/mob_vr_sergal.dmi and b/icons/inventory/head/mob_vr_sergal.dmi differ diff --git a/icons/inventory/head/mob_vr_teshari.dmi b/icons/inventory/head/mob_vr_teshari.dmi index bed3f6532f..4ebb53d2d8 100644 Binary files a/icons/inventory/head/mob_vr_teshari.dmi and b/icons/inventory/head/mob_vr_teshari.dmi differ diff --git a/icons/inventory/head/mob_vr_unathi.dmi b/icons/inventory/head/mob_vr_unathi.dmi index 730be5905f..fd9a2904ca 100644 Binary files a/icons/inventory/head/mob_vr_unathi.dmi and b/icons/inventory/head/mob_vr_unathi.dmi differ diff --git a/icons/inventory/head/mob_vr_vulpkanin.dmi b/icons/inventory/head/mob_vr_vulpkanin.dmi index bff1c5f81b..d829c51711 100644 Binary files a/icons/inventory/head/mob_vr_vulpkanin.dmi and b/icons/inventory/head/mob_vr_vulpkanin.dmi differ diff --git a/icons/inventory/suit/item.dmi b/icons/inventory/suit/item.dmi index 7bef5fc417..e5d75cd19e 100644 Binary files a/icons/inventory/suit/item.dmi and b/icons/inventory/suit/item.dmi differ diff --git a/icons/inventory/suit/item_skrell.dmi b/icons/inventory/suit/item_skrell.dmi index d0ac340426..6e7e1a49f5 100644 Binary files a/icons/inventory/suit/item_skrell.dmi and b/icons/inventory/suit/item_skrell.dmi differ diff --git a/icons/inventory/suit/item_tajaran.dmi b/icons/inventory/suit/item_tajaran.dmi index 6b12d49204..1b36db164d 100644 Binary files a/icons/inventory/suit/item_tajaran.dmi and b/icons/inventory/suit/item_tajaran.dmi differ diff --git a/icons/inventory/suit/item_unathi.dmi b/icons/inventory/suit/item_unathi.dmi index e9870c4f97..d99bc1a683 100644 Binary files a/icons/inventory/suit/item_unathi.dmi and b/icons/inventory/suit/item_unathi.dmi differ diff --git a/icons/inventory/suit/item_vr.dmi b/icons/inventory/suit/item_vr.dmi index 30fc466955..0261f8b6a3 100644 Binary files a/icons/inventory/suit/item_vr.dmi and b/icons/inventory/suit/item_vr.dmi differ diff --git a/icons/inventory/suit/item_vr_akula.dmi b/icons/inventory/suit/item_vr_akula.dmi index 4804ce6e4a..1cc43648d4 100644 Binary files a/icons/inventory/suit/item_vr_akula.dmi and b/icons/inventory/suit/item_vr_akula.dmi differ diff --git a/icons/inventory/suit/item_vr_sergal.dmi b/icons/inventory/suit/item_vr_sergal.dmi index 1c30a0b6af..2af20ae433 100644 Binary files a/icons/inventory/suit/item_vr_sergal.dmi and b/icons/inventory/suit/item_vr_sergal.dmi differ diff --git a/icons/inventory/suit/item_vr_vulpkanin.dmi b/icons/inventory/suit/item_vr_vulpkanin.dmi index feeb780f60..6dbafa8c48 100644 Binary files a/icons/inventory/suit/item_vr_vulpkanin.dmi and b/icons/inventory/suit/item_vr_vulpkanin.dmi differ diff --git a/icons/inventory/suit/mob.dmi b/icons/inventory/suit/mob.dmi index 29a4aa79c9..0eb7b2b6e1 100644 Binary files a/icons/inventory/suit/mob.dmi and b/icons/inventory/suit/mob.dmi differ diff --git a/icons/inventory/suit/mob_skrell.dmi b/icons/inventory/suit/mob_skrell.dmi index 45b47bb1df..6e369c2071 100644 Binary files a/icons/inventory/suit/mob_skrell.dmi and b/icons/inventory/suit/mob_skrell.dmi differ diff --git a/icons/inventory/suit/mob_tajaran.dmi b/icons/inventory/suit/mob_tajaran.dmi index 22afb1bd85..0ae85bd0c4 100644 Binary files a/icons/inventory/suit/mob_tajaran.dmi and b/icons/inventory/suit/mob_tajaran.dmi differ diff --git a/icons/inventory/suit/mob_unathi.dmi b/icons/inventory/suit/mob_unathi.dmi index 1fd3aaba97..1926142454 100644 Binary files a/icons/inventory/suit/mob_unathi.dmi and b/icons/inventory/suit/mob_unathi.dmi differ diff --git a/icons/inventory/suit/mob_vox.dmi b/icons/inventory/suit/mob_vox.dmi index b1fc525399..529cb62831 100644 Binary files a/icons/inventory/suit/mob_vox.dmi and b/icons/inventory/suit/mob_vox.dmi differ diff --git a/icons/inventory/suit/mob_vr.dmi b/icons/inventory/suit/mob_vr.dmi index 4288fd0326..d5e2082d0e 100644 Binary files a/icons/inventory/suit/mob_vr.dmi and b/icons/inventory/suit/mob_vr.dmi differ diff --git a/icons/inventory/suit/mob_vr_akula.dmi b/icons/inventory/suit/mob_vr_akula.dmi index 3ab9c20220..3de3f4b632 100644 Binary files a/icons/inventory/suit/mob_vr_akula.dmi and b/icons/inventory/suit/mob_vr_akula.dmi differ diff --git a/icons/inventory/suit/mob_vr_sergal.dmi b/icons/inventory/suit/mob_vr_sergal.dmi index 66ed483095..9cc66a352f 100644 Binary files a/icons/inventory/suit/mob_vr_sergal.dmi and b/icons/inventory/suit/mob_vr_sergal.dmi differ diff --git a/icons/inventory/suit/mob_vr_vulpkanin.dmi b/icons/inventory/suit/mob_vr_vulpkanin.dmi index 7d0e5376bd..aa79c164a5 100644 Binary files a/icons/inventory/suit/mob_vr_vulpkanin.dmi and b/icons/inventory/suit/mob_vr_vulpkanin.dmi differ diff --git a/icons/inventory/uniform/item.dmi b/icons/inventory/uniform/item.dmi index f0e5d69092..8188b08848 100644 Binary files a/icons/inventory/uniform/item.dmi and b/icons/inventory/uniform/item.dmi differ diff --git a/icons/inventory/uniform/item_vr.dmi b/icons/inventory/uniform/item_vr.dmi index e3242dda79..6b7566f888 100644 Binary files a/icons/inventory/uniform/item_vr.dmi and b/icons/inventory/uniform/item_vr.dmi differ diff --git a/icons/inventory/uniform/mob.dmi b/icons/inventory/uniform/mob.dmi index e5f028c969..4e0bb00389 100644 Binary files a/icons/inventory/uniform/mob.dmi and b/icons/inventory/uniform/mob.dmi differ diff --git a/icons/inventory/uniform/mob_rolled_down.dmi b/icons/inventory/uniform/mob_rolled_down.dmi index 7c7afd8594..01da7ea4a3 100644 Binary files a/icons/inventory/uniform/mob_rolled_down.dmi and b/icons/inventory/uniform/mob_rolled_down.dmi differ diff --git a/icons/inventory/uniform/mob_sleeves_rolled.dmi b/icons/inventory/uniform/mob_sleeves_rolled.dmi index 5803d1a3a1..88ccb64ad1 100644 Binary files a/icons/inventory/uniform/mob_sleeves_rolled.dmi and b/icons/inventory/uniform/mob_sleeves_rolled.dmi differ diff --git a/icons/inventory/uniform/mob_vr.dmi b/icons/inventory/uniform/mob_vr.dmi index 3dc58ffd2c..2230061fce 100644 Binary files a/icons/inventory/uniform/mob_vr.dmi and b/icons/inventory/uniform/mob_vr.dmi differ diff --git a/icons/mecha/mecha_equipment_vr.dmi b/icons/mecha/mecha_equipment_vr.dmi index ec23292b90..068953a893 100644 Binary files a/icons/mecha/mecha_equipment_vr.dmi and b/icons/mecha/mecha_equipment_vr.dmi differ diff --git a/icons/misc/loading.dmi b/icons/misc/loading.dmi index 8001b413fb..4935d5c71a 100644 Binary files a/icons/misc/loading.dmi and b/icons/misc/loading.dmi differ diff --git a/icons/misc/random_spawners.dmi b/icons/misc/random_spawners.dmi new file mode 100644 index 0000000000..27e55fc9ec Binary files /dev/null and b/icons/misc/random_spawners.dmi differ diff --git a/icons/misc/title_vr.dmi b/icons/misc/title_vr.dmi index 7089d239e1..88b593faa4 100644 Binary files a/icons/misc/title_vr.dmi and b/icons/misc/title_vr.dmi differ diff --git a/icons/mob/alien.dmi b/icons/mob/alien.dmi index 8f49d078a8..40990afe12 100644 Binary files a/icons/mob/alien.dmi and b/icons/mob/alien.dmi differ diff --git a/icons/mob/alienanimals_x32.dmi b/icons/mob/alienanimals_x32.dmi index 0f46897c7b..b187ad5873 100644 Binary files a/icons/mob/alienanimals_x32.dmi and b/icons/mob/alienanimals_x32.dmi differ diff --git a/icons/mob/animal.dmi b/icons/mob/animal.dmi index fd99eed3f0..def737dcc3 100644 Binary files a/icons/mob/animal.dmi and b/icons/mob/animal.dmi differ diff --git a/icons/mob/animal_vr.dmi b/icons/mob/animal_vr.dmi index 12b65c71c8..5d29e60511 100644 Binary files a/icons/mob/animal_vr.dmi and b/icons/mob/animal_vr.dmi differ diff --git a/icons/mob/hud_jobs_vr.dmi b/icons/mob/hud_jobs_vr.dmi index 8d8561c080..4a52481088 100644 Binary files a/icons/mob/hud_jobs_vr.dmi and b/icons/mob/hud_jobs_vr.dmi differ diff --git a/icons/mob/human_face.dmi b/icons/mob/human_face.dmi index bcd4736913..7d433c9f41 100644 Binary files a/icons/mob/human_face.dmi and b/icons/mob/human_face.dmi differ diff --git a/icons/mob/human_face_m.dmi b/icons/mob/human_face_m.dmi index 0841388673..0fbb422fd3 100644 Binary files a/icons/mob/human_face_m.dmi and b/icons/mob/human_face_m.dmi differ diff --git a/icons/mob/human_face_vr.dmi b/icons/mob/human_face_vr.dmi index 15b9d3eaf9..1c00c166ce 100644 Binary files a/icons/mob/human_face_vr.dmi and b/icons/mob/human_face_vr.dmi differ diff --git a/icons/mob/human_face_vr_add.dmi b/icons/mob/human_face_vr_add.dmi index bdbfe16ff7..d99aec1497 100644 Binary files a/icons/mob/human_face_vr_add.dmi and b/icons/mob/human_face_vr_add.dmi differ diff --git a/icons/mob/human_races/markings.dmi b/icons/mob/human_races/markings.dmi index f9f91da90b..de0dcafb7c 100644 Binary files a/icons/mob/human_races/markings.dmi and b/icons/mob/human_races/markings.dmi differ diff --git a/icons/mob/human_races/sprite_accessories/ears.dmi b/icons/mob/human_races/sprite_accessories/ears.dmi index 243b901e8e..b3e21ecead 100644 Binary files a/icons/mob/human_races/sprite_accessories/ears.dmi and b/icons/mob/human_races/sprite_accessories/ears.dmi differ diff --git a/icons/mob/human_races/sprite_accessories/tails.dmi b/icons/mob/human_races/sprite_accessories/tails.dmi index 5e4a27597f..960a44d5e2 100644 Binary files a/icons/mob/human_races/sprite_accessories/tails.dmi and b/icons/mob/human_races/sprite_accessories/tails.dmi differ diff --git a/icons/mob/items/lefthand.dmi b/icons/mob/items/lefthand.dmi index 7a3adca781..17b80b78a5 100644 Binary files a/icons/mob/items/lefthand.dmi and b/icons/mob/items/lefthand.dmi differ diff --git a/icons/mob/items/lefthand_balls_vr.dmi b/icons/mob/items/lefthand_balls_vr.dmi index 2f65e0969a..70455d01c2 100644 Binary files a/icons/mob/items/lefthand_balls_vr.dmi and b/icons/mob/items/lefthand_balls_vr.dmi differ diff --git a/icons/mob/items/lefthand_guns_vr.dmi b/icons/mob/items/lefthand_guns_vr.dmi index 0d8acb4fbb..fcf529ee98 100644 Binary files a/icons/mob/items/lefthand_guns_vr.dmi and b/icons/mob/items/lefthand_guns_vr.dmi differ diff --git a/icons/mob/items/lefthand_holder.dmi b/icons/mob/items/lefthand_holder.dmi index aad27da53a..aa7e7807cc 100644 Binary files a/icons/mob/items/lefthand_holder.dmi and b/icons/mob/items/lefthand_holder.dmi differ diff --git a/icons/mob/items/lefthand_melee.dmi b/icons/mob/items/lefthand_melee.dmi index 1aca98f66f..e965d64b43 100644 Binary files a/icons/mob/items/lefthand_melee.dmi and b/icons/mob/items/lefthand_melee.dmi differ diff --git a/icons/mob/items/lefthand_storage.dmi b/icons/mob/items/lefthand_storage.dmi index d69025101e..c8f275f173 100644 Binary files a/icons/mob/items/lefthand_storage.dmi and b/icons/mob/items/lefthand_storage.dmi differ diff --git a/icons/mob/items/righthand.dmi b/icons/mob/items/righthand.dmi index 4098221f59..f8b95c18bc 100644 Binary files a/icons/mob/items/righthand.dmi and b/icons/mob/items/righthand.dmi differ diff --git a/icons/mob/items/righthand_balls_vr.dmi b/icons/mob/items/righthand_balls_vr.dmi index ba2bccac38..286540595d 100644 Binary files a/icons/mob/items/righthand_balls_vr.dmi and b/icons/mob/items/righthand_balls_vr.dmi differ diff --git a/icons/mob/items/righthand_guns_vr.dmi b/icons/mob/items/righthand_guns_vr.dmi index 73ee95c0a3..5554423acb 100644 Binary files a/icons/mob/items/righthand_guns_vr.dmi and b/icons/mob/items/righthand_guns_vr.dmi differ diff --git a/icons/mob/items/righthand_holder.dmi b/icons/mob/items/righthand_holder.dmi index 0015ff061b..bad25f481b 100644 Binary files a/icons/mob/items/righthand_holder.dmi and b/icons/mob/items/righthand_holder.dmi differ diff --git a/icons/mob/items/righthand_melee.dmi b/icons/mob/items/righthand_melee.dmi index b4a1a9f341..3fee6cb6bd 100644 Binary files a/icons/mob/items/righthand_melee.dmi and b/icons/mob/items/righthand_melee.dmi differ diff --git a/icons/mob/items/righthand_storage.dmi b/icons/mob/items/righthand_storage.dmi index b2160603b8..d8ce049aa5 100644 Binary files a/icons/mob/items/righthand_storage.dmi and b/icons/mob/items/righthand_storage.dmi differ diff --git a/icons/mob/phorous.dmi b/icons/mob/phorous.dmi deleted file mode 100644 index 074f6e9786..0000000000 Binary files a/icons/mob/phorous.dmi and /dev/null differ diff --git a/icons/mob/robots_vr.dmi b/icons/mob/robots_vr.dmi index 2e34ed66d5..a05fa9c79f 100644 Binary files a/icons/mob/robots_vr.dmi and b/icons/mob/robots_vr.dmi differ diff --git a/icons/mob/snake_vr.dmi b/icons/mob/snake_vr.dmi index 42631b85de..6802aecc47 100644 Binary files a/icons/mob/snake_vr.dmi and b/icons/mob/snake_vr.dmi differ diff --git a/icons/mob/species/teshari/back.dmi b/icons/mob/species/teshari/back.dmi new file mode 100644 index 0000000000..cdf3c6e559 Binary files /dev/null and b/icons/mob/species/teshari/back.dmi differ diff --git a/icons/mob/species/teshari/head.dmi b/icons/mob/species/teshari/head.dmi new file mode 100644 index 0000000000..0bb0637c4e Binary files /dev/null and b/icons/mob/species/teshari/head.dmi differ diff --git a/icons/mob/species/teshari/masks.dmi b/icons/mob/species/teshari/masks.dmi new file mode 100644 index 0000000000..6fde2b8e38 Binary files /dev/null and b/icons/mob/species/teshari/masks.dmi differ diff --git a/icons/mob/species/teshari/suit.dmi b/icons/mob/species/teshari/suit.dmi new file mode 100644 index 0000000000..09d72fa461 Binary files /dev/null and b/icons/mob/species/teshari/suit.dmi differ diff --git a/icons/mob/species/teshari/uniform.dmi b/icons/mob/species/teshari/uniform.dmi new file mode 100644 index 0000000000..37fcf0c76b Binary files /dev/null and b/icons/mob/species/teshari/uniform.dmi differ diff --git a/icons/mob/uniform.dmi b/icons/mob/uniform.dmi new file mode 100644 index 0000000000..6bf14c70ec Binary files /dev/null and b/icons/mob/uniform.dmi differ diff --git a/icons/mob/vagrant_vr.dmi b/icons/mob/vagrant_vr.dmi deleted file mode 100644 index 6dc35c866f..0000000000 Binary files a/icons/mob/vagrant_vr.dmi and /dev/null differ diff --git a/icons/mob/vore.dmi b/icons/mob/vore.dmi index 141a2c6ae8..92396f6cff 100644 Binary files a/icons/mob/vore.dmi and b/icons/mob/vore.dmi differ diff --git a/icons/mob/vore/ears_32x64.dmi b/icons/mob/vore/ears_32x64.dmi new file mode 100644 index 0000000000..a661c9e3c7 Binary files /dev/null and b/icons/mob/vore/ears_32x64.dmi differ diff --git a/icons/mob/vore/ears_uneven.dmi b/icons/mob/vore/ears_uneven.dmi new file mode 100644 index 0000000000..f0c7aef81e Binary files /dev/null and b/icons/mob/vore/ears_uneven.dmi differ diff --git a/icons/mob/vore/tails_vr.dmi b/icons/mob/vore/tails_vr.dmi index 0643fbd932..d5a4d7ad57 100644 Binary files a/icons/mob/vore/tails_vr.dmi and b/icons/mob/vore/tails_vr.dmi differ diff --git a/icons/mob/vore/taurs_vr.dmi b/icons/mob/vore/taurs_vr.dmi index 54e865150b..8772db082a 100644 Binary files a/icons/mob/vore/taurs_vr.dmi and b/icons/mob/vore/taurs_vr.dmi differ diff --git a/icons/mob/vore/wings_vr.dmi b/icons/mob/vore/wings_vr.dmi index 40f5f02d92..4dac461599 100644 Binary files a/icons/mob/vore/wings_vr.dmi and b/icons/mob/vore/wings_vr.dmi differ diff --git a/icons/mob/widerobot_eng_vr.dmi b/icons/mob/widerobot_eng_vr.dmi index b5c55b53c8..df678f433e 100644 Binary files a/icons/mob/widerobot_eng_vr.dmi and b/icons/mob/widerobot_eng_vr.dmi differ diff --git a/icons/obj/32x64.dmi b/icons/obj/32x64.dmi index 7b8c00eef8..493b337ad6 100644 Binary files a/icons/obj/32x64.dmi and b/icons/obj/32x64.dmi differ diff --git a/icons/obj/Cryogenic2_vr.dmi b/icons/obj/Cryogenic2_vr.dmi index 69d24bc15e..e4b88cb635 100644 Binary files a/icons/obj/Cryogenic2_vr.dmi and b/icons/obj/Cryogenic2_vr.dmi differ diff --git a/icons/obj/abductor.dmi b/icons/obj/abductor.dmi index 20c744e0a0..99362c782d 100644 Binary files a/icons/obj/abductor.dmi and b/icons/obj/abductor.dmi differ diff --git a/icons/obj/ammo_boxes.dmi b/icons/obj/ammo_boxes.dmi new file mode 100644 index 0000000000..3706970041 Binary files /dev/null and b/icons/obj/ammo_boxes.dmi differ diff --git a/icons/obj/atm_fieldgen.dmi b/icons/obj/atm_fieldgen.dmi new file mode 100644 index 0000000000..0c30371196 Binary files /dev/null and b/icons/obj/atm_fieldgen.dmi differ diff --git a/icons/obj/balls_vr.dmi b/icons/obj/balls_vr.dmi index 994be4ab97..e85f4cab05 100644 Binary files a/icons/obj/balls_vr.dmi and b/icons/obj/balls_vr.dmi differ diff --git a/icons/obj/boxes.dmi b/icons/obj/boxes.dmi new file mode 100644 index 0000000000..dad29a40a2 Binary files /dev/null and b/icons/obj/boxes.dmi differ diff --git a/icons/obj/capture_crystal_vr.dmi b/icons/obj/capture_crystal_vr.dmi new file mode 100644 index 0000000000..7cd9208b2b Binary files /dev/null and b/icons/obj/capture_crystal_vr.dmi differ diff --git a/icons/obj/card_alt_vr.dmi b/icons/obj/card_alt_vr.dmi index a82caf9bc4..d18adbb882 100644 Binary files a/icons/obj/card_alt_vr.dmi and b/icons/obj/card_alt_vr.dmi differ diff --git a/icons/obj/closet.dmi b/icons/obj/closet.dmi index b8b832471d..1ee1f2fc1f 100644 Binary files a/icons/obj/closet.dmi and b/icons/obj/closet.dmi differ diff --git a/icons/obj/clothing/knights_vr.dmi b/icons/obj/clothing/knights_vr.dmi index eb4c1a6074..969b7530bb 100644 Binary files a/icons/obj/clothing/knights_vr.dmi and b/icons/obj/clothing/knights_vr.dmi differ diff --git a/icons/obj/clothing/uniforms.dmi b/icons/obj/clothing/uniforms.dmi new file mode 100644 index 0000000000..c153951397 Binary files /dev/null and b/icons/obj/clothing/uniforms.dmi differ diff --git a/icons/obj/computer.dmi b/icons/obj/computer.dmi index 5b58a84313..8ae5c06b72 100644 Binary files a/icons/obj/computer.dmi and b/icons/obj/computer.dmi differ diff --git a/icons/obj/device_vr.dmi b/icons/obj/device_vr.dmi index b75163e881..3c4a3c5d09 100644 Binary files a/icons/obj/device_vr.dmi and b/icons/obj/device_vr.dmi differ diff --git a/icons/obj/doors/DoorHazardHidden_shuttle.dmi b/icons/obj/doors/DoorHazardHidden_shuttle.dmi new file mode 100644 index 0000000000..2aa9056837 Binary files /dev/null and b/icons/obj/doors/DoorHazardHidden_shuttle.dmi differ diff --git a/icons/obj/doors/rapid_pdoor.dmi b/icons/obj/doors/rapid_pdoor.dmi index 01ab429f32..eb72f0521d 100644 Binary files a/icons/obj/doors/rapid_pdoor.dmi and b/icons/obj/doors/rapid_pdoor.dmi differ diff --git a/icons/obj/drinks.dmi b/icons/obj/drinks.dmi index 24e8b94966..c138e6093e 100644 Binary files a/icons/obj/drinks.dmi and b/icons/obj/drinks.dmi differ diff --git a/icons/obj/food_canned.dmi b/icons/obj/food_canned.dmi index 606ca9f6e4..1a4be5b506 100644 Binary files a/icons/obj/food_canned.dmi and b/icons/obj/food_canned.dmi differ diff --git a/icons/obj/food_vr.dmi b/icons/obj/food_vr.dmi index 9adbcc00c5..64b55a6b26 100644 Binary files a/icons/obj/food_vr.dmi and b/icons/obj/food_vr.dmi differ diff --git a/icons/obj/forensics.dmi b/icons/obj/forensics.dmi index 24fa86d642..c3e6d2cf82 100644 Binary files a/icons/obj/forensics.dmi and b/icons/obj/forensics.dmi differ diff --git a/icons/obj/furniture.dmi b/icons/obj/furniture.dmi index 098fc4461c..64227b0b20 100644 Binary files a/icons/obj/furniture.dmi and b/icons/obj/furniture.dmi differ diff --git a/icons/obj/gun.dmi b/icons/obj/gun.dmi index c94a289290..9de92931db 100644 Binary files a/icons/obj/gun.dmi and b/icons/obj/gun.dmi differ diff --git a/icons/obj/gun_toy.dmi b/icons/obj/gun_toy.dmi new file mode 100644 index 0000000000..bee6bcc49d Binary files /dev/null and b/icons/obj/gun_toy.dmi differ diff --git a/icons/obj/gun_vr.dmi b/icons/obj/gun_vr.dmi index 54d468b886..7f44ea9802 100644 Binary files a/icons/obj/gun_vr.dmi and b/icons/obj/gun_vr.dmi differ diff --git a/icons/obj/hydroponics_growing.dmi b/icons/obj/hydroponics_growing.dmi index 52146b3793..0a0a96aa6f 100644 Binary files a/icons/obj/hydroponics_growing.dmi and b/icons/obj/hydroponics_growing.dmi differ diff --git a/icons/obj/hydroponics_products.dmi b/icons/obj/hydroponics_products.dmi index cb0e503692..fd04428843 100644 Binary files a/icons/obj/hydroponics_products.dmi and b/icons/obj/hydroponics_products.dmi differ diff --git a/icons/obj/items.dmi b/icons/obj/items.dmi index d1a5f7ba5b..97ee06a906 100644 Binary files a/icons/obj/items.dmi and b/icons/obj/items.dmi differ diff --git a/icons/obj/lighting.dmi b/icons/obj/lighting.dmi index 84fdd7be13..ededfc4b50 100644 Binary files a/icons/obj/lighting.dmi and b/icons/obj/lighting.dmi differ diff --git a/icons/obj/machines/fitness_machines_vr.dmi b/icons/obj/machines/fitness_machines_vr.dmi index 07d6893532..87918fb98c 100644 Binary files a/icons/obj/machines/fitness_machines_vr.dmi and b/icons/obj/machines/fitness_machines_vr.dmi differ diff --git a/icons/obj/magazine.dmi b/icons/obj/magazine.dmi new file mode 100644 index 0000000000..62b385510c Binary files /dev/null and b/icons/obj/magazine.dmi differ diff --git a/icons/obj/objects_vr.dmi b/icons/obj/objects_vr.dmi index 467297775f..0cfacc4fd0 100644 Binary files a/icons/obj/objects_vr.dmi and b/icons/obj/objects_vr.dmi differ diff --git a/icons/obj/overmap.dmi b/icons/obj/overmap.dmi index 67cd9314c5..cef405461a 100644 Binary files a/icons/obj/overmap.dmi and b/icons/obj/overmap.dmi differ diff --git a/icons/obj/overmap_vr.dmi b/icons/obj/overmap_vr.dmi index b31599d5a6..44ea512b34 100644 Binary files a/icons/obj/overmap_vr.dmi and b/icons/obj/overmap_vr.dmi differ diff --git a/icons/obj/playing_cards.dmi b/icons/obj/playing_cards.dmi index 04e7af96fe..0195f8e6f4 100644 Binary files a/icons/obj/playing_cards.dmi and b/icons/obj/playing_cards.dmi differ diff --git a/icons/obj/refill_cartridges.dmi b/icons/obj/refill_cartridges.dmi new file mode 100644 index 0000000000..61818e977c Binary files /dev/null and b/icons/obj/refill_cartridges.dmi differ diff --git a/icons/obj/rig_modules.dmi b/icons/obj/rig_modules.dmi index a63fcc23a8..841733ee72 100644 Binary files a/icons/obj/rig_modules.dmi and b/icons/obj/rig_modules.dmi differ diff --git a/icons/obj/robot_component.dmi b/icons/obj/robot_component.dmi index 108a111fa9..ae3b250c0f 100644 Binary files a/icons/obj/robot_component.dmi and b/icons/obj/robot_component.dmi differ diff --git a/icons/obj/seeds.dmi b/icons/obj/seeds.dmi index 2ed8360e95..f7d75f25b6 100644 Binary files a/icons/obj/seeds.dmi and b/icons/obj/seeds.dmi differ diff --git a/icons/obj/sofas.dmi b/icons/obj/sofas.dmi index 9864a923ac..b8ef1d5c0a 100644 Binary files a/icons/obj/sofas.dmi and b/icons/obj/sofas.dmi differ diff --git a/icons/obj/stationobjs_vr.dmi b/icons/obj/stationobjs_vr.dmi index 74732a334a..aa6df06395 100644 Binary files a/icons/obj/stationobjs_vr.dmi and b/icons/obj/stationobjs_vr.dmi differ diff --git a/icons/obj/stock_parts.dmi b/icons/obj/stock_parts.dmi index 64184432c7..1f203a1e8f 100644 Binary files a/icons/obj/stock_parts.dmi and b/icons/obj/stock_parts.dmi differ diff --git a/icons/obj/storage_vr.dmi b/icons/obj/storage_vr.dmi index 07d87323ad..25d8e14772 100644 Binary files a/icons/obj/storage_vr.dmi and b/icons/obj/storage_vr.dmi differ diff --git a/icons/obj/structures.dmi b/icons/obj/structures.dmi index 565190a6dd..d1c5a38ff1 100644 Binary files a/icons/obj/structures.dmi and b/icons/obj/structures.dmi differ diff --git a/icons/obj/surgery.dmi b/icons/obj/surgery.dmi index 0f22fa82cd..cee44a9070 100644 Binary files a/icons/obj/surgery.dmi and b/icons/obj/surgery.dmi differ diff --git a/icons/obj/tools.dmi b/icons/obj/tools.dmi index dbc403ce40..f81d8a42d6 100644 Binary files a/icons/obj/tools.dmi and b/icons/obj/tools.dmi differ diff --git a/icons/obj/tools_vr.dmi b/icons/obj/tools_vr.dmi index c49a991ff9..05de9a423a 100644 Binary files a/icons/obj/tools_vr.dmi and b/icons/obj/tools_vr.dmi differ diff --git a/icons/obj/toy.dmi b/icons/obj/toy.dmi index b7235b7e58..98519ef659 100644 Binary files a/icons/obj/toy.dmi and b/icons/obj/toy.dmi differ diff --git a/icons/obj/toy_vr.dmi b/icons/obj/toy_vr.dmi index 3ad106945b..9b3ca4d9d0 100644 Binary files a/icons/obj/toy_vr.dmi and b/icons/obj/toy_vr.dmi differ diff --git a/icons/obj/trash.dmi b/icons/obj/trash.dmi index 98b6c9b60f..f9c1ce7400 100644 Binary files a/icons/obj/trash.dmi and b/icons/obj/trash.dmi differ diff --git a/icons/obj/vending.dmi b/icons/obj/vending.dmi index a1fbfc9479..91285fd3a1 100755 Binary files a/icons/obj/vending.dmi and b/icons/obj/vending.dmi differ diff --git a/icons/obj/vending_job.dmi b/icons/obj/vending_job.dmi index 77d22e3dd1..b0398272ff 100644 Binary files a/icons/obj/vending_job.dmi and b/icons/obj/vending_job.dmi differ diff --git a/icons/obj/wall_frame_bay.dmi b/icons/obj/wall_frame_bay.dmi index 628a002edb..c3f14c5f48 100644 Binary files a/icons/obj/wall_frame_bay.dmi and b/icons/obj/wall_frame_bay.dmi differ diff --git a/icons/obj/weapons.dmi b/icons/obj/weapons.dmi index a8b57870bf..2e9090c763 100644 Binary files a/icons/obj/weapons.dmi and b/icons/obj/weapons.dmi differ diff --git a/icons/skybox/anomaly.dmi b/icons/skybox/anomaly.dmi new file mode 100644 index 0000000000..dc66ce6591 Binary files /dev/null and b/icons/skybox/anomaly.dmi differ diff --git a/icons/skybox/virgo2.dmi b/icons/skybox/virgo2.dmi new file mode 100644 index 0000000000..cc08c095a9 Binary files /dev/null and b/icons/skybox/virgo2.dmi differ diff --git a/icons/skybox/virgo4.dmi b/icons/skybox/virgo4.dmi new file mode 100644 index 0000000000..cdb4e592c6 Binary files /dev/null and b/icons/skybox/virgo4.dmi differ diff --git a/icons/turf/areas_vr.dmi b/icons/turf/areas_vr.dmi index dc58966d83..bd8547cd30 100644 Binary files a/icons/turf/areas_vr.dmi and b/icons/turf/areas_vr.dmi differ diff --git a/icons/turf/fancy_shuttles/_fancy_helpers.dmi b/icons/turf/fancy_shuttles/_fancy_helpers.dmi index 8b7fcb5eaf..2ddcb7fb06 100644 Binary files a/icons/turf/fancy_shuttles/_fancy_helpers.dmi and b/icons/turf/fancy_shuttles/_fancy_helpers.dmi differ diff --git a/icons/turf/fancy_shuttles/medbus.dmi b/icons/turf/fancy_shuttles/medbus.dmi new file mode 100644 index 0000000000..68f0fb96e6 Binary files /dev/null and b/icons/turf/fancy_shuttles/medbus.dmi differ diff --git a/icons/turf/fancy_shuttles/medbus_preview.dmi b/icons/turf/fancy_shuttles/medbus_preview.dmi new file mode 100644 index 0000000000..61a3093728 Binary files /dev/null and b/icons/turf/fancy_shuttles/medbus_preview.dmi differ diff --git a/icons/turf/fancy_shuttles/medical.dmi b/icons/turf/fancy_shuttles/medical.dmi deleted file mode 100644 index dc1833cc55..0000000000 Binary files a/icons/turf/fancy_shuttles/medical.dmi and /dev/null differ diff --git a/icons/turf/fancy_shuttles/medical_preview.dmi b/icons/turf/fancy_shuttles/medical_preview.dmi deleted file mode 100644 index 1b688eb8f0..0000000000 Binary files a/icons/turf/fancy_shuttles/medical_preview.dmi and /dev/null differ diff --git a/icons/turf/fancy_shuttles/sd_shuttle.dmi b/icons/turf/fancy_shuttles/sd_shuttle.dmi new file mode 100644 index 0000000000..856a771d80 Binary files /dev/null and b/icons/turf/fancy_shuttles/sd_shuttle.dmi differ diff --git a/icons/turf/fancy_shuttles/sd_shuttle_preview.dmi b/icons/turf/fancy_shuttles/sd_shuttle_preview.dmi new file mode 100644 index 0000000000..7d6177b164 Binary files /dev/null and b/icons/turf/fancy_shuttles/sd_shuttle_preview.dmi differ diff --git a/icons/turf/fancy_shuttles/secbus.dmi b/icons/turf/fancy_shuttles/secbus.dmi new file mode 100644 index 0000000000..d47f5fc552 Binary files /dev/null and b/icons/turf/fancy_shuttles/secbus.dmi differ diff --git a/icons/turf/fancy_shuttles/secbus_preview.dmi b/icons/turf/fancy_shuttles/secbus_preview.dmi new file mode 100644 index 0000000000..cfc42fb2e2 Binary files /dev/null and b/icons/turf/fancy_shuttles/secbus_preview.dmi differ diff --git a/icons/turf/fancy_shuttles/security.dmi b/icons/turf/fancy_shuttles/security.dmi deleted file mode 100644 index 70fdbfbc65..0000000000 Binary files a/icons/turf/fancy_shuttles/security.dmi and /dev/null differ diff --git a/icons/turf/fancy_shuttles/security_preview.dmi b/icons/turf/fancy_shuttles/security_preview.dmi deleted file mode 100644 index d0017da2a4..0000000000 Binary files a/icons/turf/fancy_shuttles/security_preview.dmi and /dev/null differ diff --git a/icons/turf/fancy_shuttles/tether_cargo.dmi b/icons/turf/fancy_shuttles/tether_cargo.dmi new file mode 100644 index 0000000000..b65e9a0e6c Binary files /dev/null and b/icons/turf/fancy_shuttles/tether_cargo.dmi differ diff --git a/icons/turf/fancy_shuttles/tether_cargo_preview.dmi b/icons/turf/fancy_shuttles/tether_cargo_preview.dmi new file mode 100644 index 0000000000..48ef0cb78f Binary files /dev/null and b/icons/turf/fancy_shuttles/tether_cargo_preview.dmi differ diff --git a/icons/turf/fancy_shuttles/tourbus.dmi b/icons/turf/fancy_shuttles/tourbus.dmi index beb0b4b30d..c9e1d4d5e1 100644 Binary files a/icons/turf/fancy_shuttles/tourbus.dmi and b/icons/turf/fancy_shuttles/tourbus.dmi differ diff --git a/icons/turf/fancy_shuttles/tourbus_preview.dmi b/icons/turf/fancy_shuttles/tourbus_preview.dmi index 56e5b6d455..e174aec5b7 100644 Binary files a/icons/turf/fancy_shuttles/tourbus_preview.dmi and b/icons/turf/fancy_shuttles/tourbus_preview.dmi differ diff --git a/icons/turf/flooring/decals_vr.dmi b/icons/turf/flooring/decals_vr.dmi index 29a4bb508f..af18f8d6c5 100644 Binary files a/icons/turf/flooring/decals_vr.dmi and b/icons/turf/flooring/decals_vr.dmi differ diff --git a/icons/turf/flooring/weird_vr.dmi b/icons/turf/flooring/weird_vr.dmi new file mode 100644 index 0000000000..b8e10ec136 Binary files /dev/null and b/icons/turf/flooring/weird_vr.dmi differ diff --git a/icons/turf/transit_vr.dmi b/icons/turf/transit_vr.dmi index 4b7339548e..b4bdfc1953 100644 Binary files a/icons/turf/transit_vr.dmi and b/icons/turf/transit_vr.dmi differ diff --git a/icons/turf/walls.dmi b/icons/turf/walls.dmi index e3fc2202e9..86243a853f 100644 Binary files a/icons/turf/walls.dmi and b/icons/turf/walls.dmi differ diff --git a/icons/vore/custom_clothes_left_hand_vr.dmi b/icons/vore/custom_clothes_left_hand_vr.dmi index ec5dd4b55a..17ac4c3a7e 100644 Binary files a/icons/vore/custom_clothes_left_hand_vr.dmi and b/icons/vore/custom_clothes_left_hand_vr.dmi differ diff --git a/icons/vore/custom_clothes_right_hand_vr.dmi b/icons/vore/custom_clothes_right_hand_vr.dmi index 2fc3bdb14f..d77e0fa248 100644 Binary files a/icons/vore/custom_clothes_right_hand_vr.dmi and b/icons/vore/custom_clothes_right_hand_vr.dmi differ diff --git a/icons/vore/custom_clothes_vr.dmi b/icons/vore/custom_clothes_vr.dmi index ac30e18a67..cc7b242670 100644 Binary files a/icons/vore/custom_clothes_vr.dmi and b/icons/vore/custom_clothes_vr.dmi differ diff --git a/icons/vore/custom_items_vr.dmi b/icons/vore/custom_items_vr.dmi index b8fe78c759..3c05eb5d57 100644 Binary files a/icons/vore/custom_items_vr.dmi and b/icons/vore/custom_items_vr.dmi differ diff --git a/icons/vore/custom_onmob_32x48_vr.dmi b/icons/vore/custom_onmob_32x48_vr.dmi index 2889db5cc0..827ab1fb47 100644 Binary files a/icons/vore/custom_onmob_32x48_vr.dmi and b/icons/vore/custom_onmob_32x48_vr.dmi differ diff --git a/icons/vore/custom_onmob_vr.dmi b/icons/vore/custom_onmob_vr.dmi index cfbd9d305c..e90afae8d4 100644 Binary files a/icons/vore/custom_onmob_vr.dmi and b/icons/vore/custom_onmob_vr.dmi differ diff --git a/maps/cynosure/cynosure-1.dmm b/maps/cynosure/cynosure-1.dmm new file mode 100644 index 0000000000..61b5d30ceb --- /dev/null +++ b/maps/cynosure/cynosure-1.dmm @@ -0,0 +1,89668 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/mining_main) +"ac" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/maintenance{ + req_one_access = list(5,12,47) + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/research/east) +"ad" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 8 + }, +/obj/machinery/cryopod/robot, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/engineering/drone_fabrication) +"af" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/purple/border, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology) +"ag" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/item/stack/tile/floor, +/turf/simulated/floor/plating, +/area/surface/station/hallway/primary/bmt/north) +"ah" = ( +/turf/simulated/floor/plating, +/area/surface/station/construction/bmt/construction4) +"ai" = ( +/turf/simulated/floor/tiled/dark, +/area/surface/station/hallway/primary/bmt/east) +"aj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ + dir = 1 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/zone_divider, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/anomaly) +"ak" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/engineering/bmt) +"al" = ( +/obj/structure/closet/crate/engineering, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/maintenance/engineering, +/turf/simulated/floor/plating, +/area/surface/station/construction/basement) +"am" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/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 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/east) +"an" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/bmt) +"ao" = ( +/obj/machinery/floodlight, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/engineering/north) +"ap" = ( +/obj/effect/floor_decal/techfloor{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + id_tag = "eng_ug_airlock"; + pixel_y = 25; + req_one_access = list(11,24) + }, +/obj/machinery/airlock_sensor{ + id_tag = "eng_ug_airlock_sensor"; + pixel_x = -11; + pixel_y = 25 + }, +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/engineering/hallway/bmt) +"ar" = ( +/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/tiled/dark, +/area/surface/station/hallway/primary/bmt/west) +"at" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 6 + }, +/obj/effect/floor_decal/rust/part_rusted2, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/auxiliary_engineering) +"au" = ( +/obj/machinery/portable_atmospherics/canister, +/obj/effect/floor_decal/techfloor/orange{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/rnd/mixing) +"aw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/auxiliary_engineering) +"ay" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/north) +"az" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/medical/hallway/bmt) +"aA" = ( +/obj/machinery/atmospherics/omni/atmos_filter{ + tag_east = 2; + tag_north = 6; + tag_west = 1 + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/surface/station/rnd/mixing) +"aB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/analysis) +"aC" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/door/airlock/glass_research{ + name = "Anomalous Materials"; + req_one_access = list(65) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/research/xenoarcheology/anomaly) +"aD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/meter, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/medical/south) +"aF" = ( +/obj/machinery/door/airlock/maintenance/engi{ + icon_state = "door_locked"; + id_tag = "elevator_main2_access"; + locked = 1; + name = "Emergency Access NO ENTRY"; + req_one_access = list() + }, +/obj/machinery/button/remote/airlock{ + dir = 1; + id = "elevator_main2_access"; + name = "Elevator Hatch Release"; + pixel_y = -24; + specialfunctions = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/construction/elevator) +"aG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/camera/network/basement{ + c_tag = "Basement - North Hallway 2"; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/station/hallway/primary/bmt/north) +"aH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/bordercorner{ + dir = 1 + }, +/obj/structure/sign/directions/security{ + dir = 4; + pixel_y = 38 + }, +/obj/structure/sign/directions/engineering{ + dir = 4; + pixel_y = 32 + }, +/obj/structure/sign/directions/medical{ + dir = 4; + pixel_y = 26 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/north) +"aI" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/hologram/holopad, +/obj/effect/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/tiled/monofloor, +/area/surface/station/mining_main/locker) +"aJ" = ( +/obj/machinery/r_n_d/server/robotics, +/turf/simulated/floor/bluegrid{ + nitrogen = 100; + oxygen = 0; + temperature = 73 + }, +/area/surface/station/rnd/server) +"aK" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/green/border, +/obj/machinery/ai_status_display{ + pixel_y = -32 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/bmt/eaststairwell) +"aL" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/bmt) +"aM" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/medical/hallway/bmt) +"aN" = ( +/obj/structure/closet/excavation, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/research/xenoarcheology/exp_prep) +"aQ" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/phoronreinforced/full, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/surface/station/rnd/mixing) +"aR" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/mining_main/refinery) +"aS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/engineering/north) +"aT" = ( +/obj/machinery/floodlight, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/bar) +"aV" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "main_ug_airlock_inner"; + locked = 1; + name = "Internal Access" + }, +/obj/effect/map_helper/airlock/door/int_door, +/obj/machinery/access_button/airlock_interior{ + dir = 1; + master_tag = "main_ug_airlock"; + pixel_x = 35 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/hallway/primary/bmt/south) +"aW" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/research/xenoarcheology/smes) +"aX" = ( +/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/surface/outpost/research/xenoarcheology) +"aY" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/maintenance/substation/research/bmt) +"aZ" = ( +/obj/machinery/mineral/processing_unit_console{ + density = 0; + pixel_x = -32 + }, +/obj/machinery/camera/network/mining{ + c_tag = "CRG - Mining Processing"; + dir = 4 + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/surface/station/mining_main/refinery) +"ba" = ( +/obj/machinery/radiocarbon_spectrometer, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/research/xenoarcheology/analysis) +"bb" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/glass_research{ + name = "Outpost Hallway" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology) +"bc" = ( +/turf/simulated/wall, +/area/surface/station/hallway/primary/bmt/west) +"bd" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning/dust/corner, +/obj/effect/floor_decal/rust, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor; + outdoors = 0 + }, +/area/surface/station/rnd/hallway/bmt) +"be" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/bmt) +"bf" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/engineering/south) +"bg" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/research/xenoarcheology/restroom) +"bh" = ( +/obj/structure/table/rack, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/random/maintenance/engineering, +/obj/random/maintenance/engineering, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/engineering/south) +"bk" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/engineering/bmt) +"bl" = ( +/obj/structure/cable/heavyduty{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/smes) +"bn" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/research/east) +"bo" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/brown/bordercorner, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/west) +"bp" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1; + frequency = 1379; + id_tag = "arc2_airlock_pump" + }, +/obj/effect/floor_decal/techfloor{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/outpost/research/xenoarcheology) +"bq" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + 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 = 24 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/bmt) +"br" = ( +/obj/structure/ladder/up, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/cargo/bmt) +"bs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/research/east) +"bt" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloorwhite/corner, +/obj/effect/floor_decal/corner/purple/bordercorner, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/bmt) +"bu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/medical/south) +"bw" = ( +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 21 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/bmt/eaststairwell) +"bx" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/mining_main) +"by" = ( +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/surface/outpost/research/xenoarcheology/anomaly) +"bA" = ( +/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" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/west) +"bB" = ( +/obj/machinery/atmospherics/pipe/zpipe/up/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + d1 = 16; + d2 = 0; + icon_state = "16-0" + }, +/obj/item/weapon/storage/box/lights/mixed, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/storage/emergency/bmtswest) +"bC" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/bmt) +"bD" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/security) +"bE" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning/dust/corner{ + dir = 1 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor; + outdoors = 0 + }, +/area/surface/station/engineering/hallway/bmt) +"bF" = ( +/obj/effect/catwalk_plated/dark, +/obj/structure/closet/hydrant{ + pixel_x = -32 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/medbay/bmt) +"bG" = ( +/obj/machinery/portable_atmospherics/powered/pump/filled, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/bar) +"bH" = ( +/obj/effect/floor_decal/industrial/warning/dust/corner, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor; + outdoors = 0 + }, +/area/surface/station/medical/hallway/bmt) +"bI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/incinerator) +"bJ" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/table/glass, +/obj/machinery/reagentgrinder, +/obj/effect/floor_decal/borderfloorwhite, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/effect/floor_decal/corner/beige/border, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/analysis) +"bK" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/research/south) +"bL" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/cable{ + d1 = 16; + d2 = 0; + icon_state = "16-0" + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/zpipe/up/supply{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/storage/emergency/bmtseast) +"bN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + 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/station/mining_main/locker) +"bQ" = ( +/obj/structure/closet/hydrant{ + pixel_x = -32 + }, +/obj/item/clothing/glasses/meson, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/storage/emergency/bmtseast) +"bS" = ( +/obj/effect/floor_decal/techfloor{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + frequency = 1379; + id_tag = "min_ug_airlock_pump" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera/network/mining{ + c_tag = "CRG - Mining Airlock" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/mining_main) +"bT" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/reinforced/airless{ + name = "reinforced floor" + }, +/area/surface/station/rnd/mixing) +"bU" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/machinery/light, +/obj/machinery/camera/network/medbay{ + c_tag = "MED - Hallway Lower South West"; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/medical/hallway/bmt) +"bV" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "mining_external" + }, +/obj/structure/plasticflaps/mining, +/obj/machinery/mineral/input, +/turf/simulated/floor/plating, +/area/space) +"bW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/medical/south) +"bX" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/research/east) +"bY" = ( +/obj/structure/table/rack, +/obj/item/weapon/circuitboard/rdconsole{ + pixel_x = 4; + pixel_y = -4 + }, +/obj/item/weapon/circuitboard/destructive_analyzer{ + pixel_x = 2; + pixel_y = -2 + }, +/obj/item/weapon/circuitboard/protolathe, +/obj/item/weapon/circuitboard/rdserver{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/storage/tech) +"bZ" = ( +/obj/machinery/door/airlock/maintenance/engi{ + icon_state = "door_locked"; + id_tag = "elevator_west_access"; + locked = 1; + name = "Emergency Access NO ENTRY"; + req_one_access = list() + }, +/obj/machinery/button/remote/airlock{ + dir = 8; + id = "elevator_west_access"; + name = "Elevator Hatch Release"; + pixel_x = 24; + specialfunctions = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/hallway/primary/bmt/west/elevator) +"ca" = ( +/obj/machinery/optable, +/turf/simulated/floor/plating, +/area/surface/station/construction/genetics) +"cb" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/mining) +"cc" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/anomaly) +"cd" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/engineering/south) +"cf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/catwalk_plated/white, +/turf/simulated/floor/plating, +/area/surface/station/rnd/hallway/bmt) +"cg" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/maintenance{ + name = "Construction Area Access"; + req_one_access = list(12) + }, +/turf/simulated/floor/plating, +/area/surface/station/construction/bmt/construction5) +"ch" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/south) +"ci" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/sign/warning/fire, +/turf/simulated/wall, +/area/surface/station/maintenance/incinerator) +"cj" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/purple/border, +/obj/structure/table/standard, +/obj/machinery/light, +/turf/simulated/floor/tiled/neutral, +/area/surface/outpost/research/xenoarcheology/entrance) +"ck" = ( +/turf/simulated/floor/plating, +/area/surface/station/storage/tech) +"cl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/surface/station/mining_main/locker) +"cn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/floor_decal/rust, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "min_ug_airlock_inner"; + locked = 1; + name = "Mining Internal Access" + }, +/obj/effect/map_helper/airlock/door/int_door, +/obj/machinery/access_button/airlock_interior{ + dir = 4; + master_tag = "min_ug_airlock"; + pixel_y = 35; + req_one_access = list(48) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/mining_main) +"co" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/maintenance{ + name = "Disposal Access" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/maintenance/incinerator) +"cp" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/maintenance{ + name = "Construction Area Access"; + req_one_access = list(12) + }, +/turf/simulated/floor/plating, +/area/surface/station/construction/bmt/construction6) +"cr" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology) +"cs" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating, +/area/surface/station/construction/basement) +"ct" = ( +/obj/machinery/computer/security/engineering{ + dir = 4; + name = "Drone Monitoring Cameras"; + network = list("Engineering") + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/drone_fabrication) +"cu" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/table/standard, +/obj/structure/noticeboard/anomaly{ + pixel_y = 28 + }, +/obj/item/weapon/paper_bin, +/obj/item/weapon/clipboard, +/obj/item/weapon/pen, +/obj/item/device/taperecorder, +/obj/item/weapon/folder, +/obj/item/weapon/stamp, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/outpost/research/xenoarcheology/entrance) +"cv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/green/bordercorner, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/station/hallway/primary/bmt/east) +"cx" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/reinforced/airless{ + name = "reinforced floor" + }, +/area/surface/station/rnd/mixing) +"cz" = ( +/obj/machinery/camera/network/research{ + c_tag = "SCI - Toxins Test Chamber North"; + network = list("Research","Toxins Test Area") + }, +/obj/machinery/light/spot{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor; + outdoors = 0 + }, +/area/surface/station/rnd/test_area) +"cA" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/porta_turret/industrial/teleport_defense, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/vault) +"cB" = ( +/turf/simulated/wall, +/area/surface/station/construction/bmt/construction1) +"cE" = ( +/turf/simulated/wall, +/area/surface/station/maintenance/medical/south) +"cF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/hallway/primary/bmt/south) +"cH" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "mining_north" + }, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 9 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor; + outdoors = 0 + }, +/area/surface/station/maintenance/medical/west) +"cJ" = ( +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "arc1_airlock_outer"; + locked = 1; + name = "Xenoarch External Access" + }, +/obj/effect/map_helper/airlock/door/ext_door, +/obj/machinery/access_button/airlock_exterior{ + master_tag = "arc1_airlock"; + pixel_x = 35; + req_one_access = list(47) + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/research/xenoarcheology/entrance) +"cK" = ( +/obj/machinery/atmospherics/binary/passive_gate{ + icon_state = "on"; + unlocked = 1 + }, +/obj/effect/floor_decal/industrial/warning/full, +/obj/effect/catwalk_plated, +/obj/machinery/airlock_sensor/airlock_interior{ + dir = 8; + id_tag = "eng_ug_airlock_int_sensor"; + master_tag = "eng_ug_airlock"; + pixel_x = 31; + pixel_y = -24; + req_one_access = list(11,24) + }, +/obj/effect/map_helper/airlock/sensor/int_sensor, +/turf/simulated/floor/plating, +/area/surface/station/engineering/hallway/bmt) +"cL" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/techfloor{ + dir = 10 + }, +/obj/item/weapon/circuitboard/borgupload{ + pixel_x = -4 + }, +/obj/item/weapon/circuitboard/aiupload{ + pixel_y = -3 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/storage/tech) +"cM" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/machinery/light_switch{ + pixel_x = 12; + pixel_y = 24 + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/portable_atmospherics/powered/scrubber, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/medical/south) +"cN" = ( +/turf/simulated/wall, +/area/surface/station/construction/elevator) +"cP" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/map_helper/airlock/door/ext_door, +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "main_ug_airlock_outer"; + locked = 1; + name = "External Access" + }, +/obj/machinery/access_button/airlock_exterior{ + master_tag = "main_ug_airlock"; + pixel_x = 35 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/hallway/primary/bmt/south) +"cQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/glass{ + name = "Hallway" + }, +/obj/machinery/door/firedoor/border_only, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/hallway/primary/bmt/east) +"cS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/rust, +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/surface/station/mining_main) +"cT" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 4 + }, +/obj/machinery/meter, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/engineering/north) +"cU" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/machinery/ai_status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/rnd/storage) +"cV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/purple{ + dir = 4 + }, +/turf/simulated/wall/r_wall, +/area/surface/station/rnd/mixing) +"cW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/surface/station/mining_main) +"cX" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/ladder/up, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/storage/emergency/bmtseast) +"cY" = ( +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/obj/random/obstruction, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/weststairwell/bmt) +"da" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/research/xenoarcheology/longtermstorage) +"db" = ( +/obj/machinery/power/breakerbox/activated{ + RCon_tag = "Research Outpost Connection" + }, +/turf/simulated/floor/plating, +/area/surface/station/rnd/hallway/bmt) +"dc" = ( +/turf/simulated/floor/tiled/old_tile/gray, +/area/surface/station/medical/morgue) +"de" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/item/clothing/head/cone, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/north) +"dg" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/medical/south) +"dh" = ( +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/disposaloutlet{ + dir = 8 + }, +/turf/simulated/floor/reinforced, +/area/surface/station/maintenance/incinerator) +"dj" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/smes) +"dk" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/rnd/server) +"dl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/catwalk_plated/dark, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/medbay/bmt) +"dn" = ( +/obj/vehicle/train/engine{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor; + outdoors = 0 + }, +/area/surface/station/mining_main/exterior) +"do" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/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/borderfloorwhite, +/obj/effect/floor_decal/corner/purple/border, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/bmt) +"dp" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor; + outdoors = 0 + }, +/area/surface/station/maintenance/medical/west) +"dq" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/medical/south) +"dr" = ( +/obj/machinery/ai_status_display, +/turf/simulated/wall, +/area/surface/outpost/research/xenoarcheology/smes) +"ds" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/rnd/server) +"dt" = ( +/obj/structure/curtain/open/shower{ + color = "#800080" + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/obj/machinery/door/window/northright{ + name = "shower" + }, +/obj/machinery/shower{ + dir = 8; + pixel_x = -5; + pixel_y = -1 + }, +/turf/simulated/floor/tiled/eris, +/area/surface/outpost/research/xenoarcheology/restroom) +"du" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/maintenance{ + req_one_access = list(5,12,47) + }, +/turf/simulated/floor/plating, +/area/surface/station/hallway/secondary/bmt/eaststairwell) +"dv" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/maintenance{ + req_one_access = list(12) + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/security) +"dw" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/light, +/obj/item/device/radio/intercom{ + pixel_y = -21 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/research/xenoarcheology/longtermstorage) +"dx" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = 30 + }, +/obj/effect/zone_divider, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/surface/outpost/research/xenoarcheology/anomaly) +"dy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/medical/storage/second_storage) +"dz" = ( +/obj/machinery/button/remote/airlock{ + dir = 8; + id = "elevator_eng_access"; + name = "Elevator Hatch Release"; + pixel_x = 24; + specialfunctions = 4 + }, +/obj/machinery/door/airlock/maintenance/engi{ + icon_state = "door_locked"; + id_tag = "elevator_eng_access"; + locked = 1; + name = "Emergency Access NO ENTRY"; + req_one_access = list() + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/hallway/bmt) +"dA" = ( +/obj/structure/bed, +/turf/simulated/floor/reinforced, +/area/surface/outpost/research/xenoarcheology/isolation_a) +"dB" = ( +/turf/simulated/wall, +/area/surface/station/rnd/toxins_launch) +"dC" = ( +/obj/structure/table/rack, +/obj/item/weapon/circuitboard/secure_data{ + pixel_x = -4; + pixel_y = 3 + }, +/obj/item/weapon/circuitboard/security, +/obj/item/weapon/circuitboard/skills{ + pixel_x = 4; + pixel_y = -3 + }, +/turf/simulated/floor/plating, +/area/surface/station/storage/tech) +"dD" = ( +/obj/effect/floor_decal/rust, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor; + outdoors = 0 + }, +/area/surface/station/rnd/test_area) +"dE" = ( +/turf/simulated/wall, +/area/surface/station/hallway/secondary/bmt/weststairwell) +"dF" = ( +/obj/effect/floor_decal/industrial/warning/dust, +/obj/structure/ore_box, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor; + outdoors = 0 + }, +/area/surface/station/mining_main/exterior) +"dG" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/bmt) +"dI" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "crglockdown"; + layer = 3.3; + name = "Cargo Lockdown" + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/mining_main/locker) +"dK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ + dir = 1 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/zone_divider, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/anomaly) +"dL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/research/south) +"dM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/purple/border, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/camera/network/research_outpost{ + c_tag = "OPR - Xenoarch Crew Area"; + dir = 1 + }, +/obj/item/device/radio/intercom{ + pixel_y = -21 + }, +/obj/structure/flora/pottedplant/flower, +/turf/simulated/floor/tiled/neutral, +/area/surface/outpost/research/xenoarcheology/entrance) +"dN" = ( +/obj/item/stack/tile/floor, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/surface/station/construction/basement) +"dO" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/storage/emergency/bmtswest) +"dP" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/construction/elevator) +"dQ" = ( +/obj/structure/closet/emcloset, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 6 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 6 + }, +/obj/machinery/newscaster{ + pixel_y = -26 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/bmt) +"dR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/west) +"dS" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/west) +"dT" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/bordercorner2{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/east) +"dU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/medical/west) +"dX" = ( +/turf/simulated/wall, +/area/surface/station/hallway/primary/bmt/east) +"dY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/mining) +"ea" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/hallway/secondary/bmt/weststairwell) +"ec" = ( +/obj/machinery/door/blast/regular/open{ + id = "medbayquar"; + layer = 3.3; + name = "Medbay Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/medical/morgue) +"ee" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating/sif/planetuse{ + icon_state = "asteroidplating2"; + outdoors = 0 + }, +/area/surface/cave/explored/normal) +"ef" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 8 + }, +/obj/effect/floor_decal/rust, +/obj/structure/cable/heavyduty{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor; + outdoors = 0 + }, +/area/surface/cave/explored/normal) +"eg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/obj/structure/cable/heavyduty{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/catwalk_plated/white, +/turf/simulated/floor/plating, +/area/surface/station/rnd/hallway/bmt) +"eh" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite/corner, +/obj/effect/floor_decal/corner/purple/bordercorner, +/obj/item/device/radio/intercom{ + pixel_y = -21 + }, +/obj/machinery/camera/network/research{ + c_tag = "SCI - Stairwell Lower"; + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/bmt) +"ej" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/bmt/eaststairwell) +"ek" = ( +/obj/machinery/door/blast/regular{ + dir = 4; + id = "disvent"; + name = "Incinerator Vent" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/incinerator) +"en" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/surface/station/maintenance/incinerator) +"ep" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/obj/effect/floor_decal/rust, +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "eng_ug_airlock_inner"; + locked = 1; + name = "Engineering Internal Access" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/map_helper/airlock/door/int_door, +/obj/machinery/access_button/airlock_interior{ + dir = 8; + master_tag = "eng_ug_airlock"; + pixel_y = -35; + req_one_access = list(11,24) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/engineering/hallway/bmt) +"eq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/anomaly) +"er" = ( +/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{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/surface/station/hallway/primary/bmt/west) +"es" = ( +/obj/effect/floor_decal/industrial/warning/dust, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor; + outdoors = 0 + }, +/area/surface/outpost/research/xenoarcheology/exp_prep) +"eu" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/item/stack/tile/floor, +/turf/simulated/floor/plating, +/area/surface/station/hallway/primary/bmt/east) +"ew" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/mining_main/storage) +"ex" = ( +/turf/simulated/floor/plating/sif/planetuse{ + outdoors = 0 + }, +/area/surface/station/engineering/reactor_room) +"ey" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/structure/cable/heavyduty{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 21 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/bmt) +"ez" = ( +/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_decals_central1{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central4{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/engineering/hallway/bmt) +"eB" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1; + frequency = 1379; + id_tag = "main_ug_airlock_pump" + }, +/obj/effect/floor_decal/techfloor{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/hallway/primary/bmt/south) +"eC" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 8 + }, +/obj/machinery/meter, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/station/engineering/auxiliary_engineering) +"eF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/outpost/research/xenoarcheology/entrance) +"eG" = ( +/obj/machinery/atmospherics/omni/atmos_filter{ + tag_east = 1; + tag_north = 3; + tag_south = 4; + tag_west = 2 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/surface/outpost/research/xenoarcheology/anomaly) +"eH" = ( +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/bmt) +"eI" = ( +/obj/item/weapon/tool/wrench, +/turf/simulated/floor/tiled/old_tile/gray, +/area/surface/station/rnd/mixing) +"eL" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/west) +"eM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/surface/station/hallway/primary/bmt/east) +"eO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/bmt) +"eP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/hallway/primary/bmt/north) +"eQ" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor/orange{ + dir = 8 + }, +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/engineering/drone_fabrication) +"eR" = ( +/obj/structure/loot_pile/maint/technical, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/eaststairwell) +"eT" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table/rack{ + layer = 2.6 + }, +/obj/machinery/door/window/northright{ + name = "EVA Suits" + }, +/obj/machinery/light, +/obj/item/weapon/storage/belt/archaeology, +/obj/item/clothing/suit/space/anomaly, +/obj/item/clothing/head/helmet/space/anomaly, +/obj/effect/floor_decal/spline/plain{ + dir = 5 + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/surface/outpost/research/xenoarcheology/exp_prep) +"eU" = ( +/obj/random/crate{ + dir = 4 + }, +/obj/item/weapon/storage/mre/random, +/obj/item/weapon/storage/mre/random, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/turf/simulated/floor/plating, +/area/surface/station/medical/hallway/bmt) +"eW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/green/border, +/obj/effect/floor_decal/steeldecal/steel_decals_central7, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -12; + pixel_y = -24 + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/north) +"eX" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/rnd/hallway/bmt) +"eY" = ( +/turf/simulated/wall, +/area/surface/station/maintenance/research/east) +"eZ" = ( +/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" + }, +/obj/effect/floor_decal/industrial/warning, +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/station/hallway/primary/bmt/east) +"fa" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/research/east) +"fb" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4; + frequency = 1379; + id_tag = "tox_ug_airlock_pump" + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + id_tag = "tox_ug_airlock"; + pixel_y = 24 + }, +/obj/machinery/airlock_sensor{ + id_tag = "tox_ug_airlock_sensor"; + pixel_x = -11; + pixel_y = 25 + }, +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/obj/machinery/light/small, +/obj/effect/floor_decal/industrial/warning/full, +/obj/structure/sign/warning/cold{ + layer = 3.3; + pixel_y = -32 + }, +/turf/simulated/floor/tiled, +/area/surface/station/rnd/toxins_launch) +"fc" = ( +/obj/machinery/atmospherics/unary/heat_exchanger{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/steel/danger, +/area/surface/station/rnd/mixing) +"fd" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/ladder/up, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/security) +"fe" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/hallway/secondary/bmt/eaststairwell) +"ff" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/disposalpipe/up, +/obj/structure/cable{ + d1 = 16; + d2 = 0; + icon_state = "16-0" + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/railing, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/medical/south) +"fg" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/medical/hallway/bmt) +"fh" = ( +/turf/simulated/floor/tiled/dark, +/area/surface/station/construction/warehouse) +"fi" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 8 + }, +/obj/effect/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/bmt) +"fj" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/maintenance/research/east) +"fk" = ( +/obj/structure/sign/warning/lethal_turrets, +/turf/simulated/wall/r_wall, +/area/surface/station/vault) +"fl" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/station/medical/hallway/bmt) +"fm" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 5 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/computer/general_air_control{ + dir = 4; + frequency = 1430; + name = "Mixing Chamber Monitor"; + sensors = list("toxins_mixing_exterior" = "Mixing Chamber - Exterior", "toxins_mixing_interior" = "Mixing Chamber - Interior") + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/surface/station/rnd/mixing) +"fn" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/research/xenoarcheology/isolation_c) +"fo" = ( +/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/surface/station/maintenance/bar) +"fp" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/bmt) +"fq" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/mining) +"fr" = ( +/turf/simulated/wall, +/area/surface/station/hallway/primary/bmt/north) +"fs" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/obj/structure/table/steel_reinforced, +/obj/machinery/cell_charger, +/obj/item/weapon/cell/high, +/obj/item/weapon/tool/screwdriver, +/obj/item/weapon/tool/wrench, +/obj/item/weapon/tool/crowbar, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor; + outdoors = 0 + }, +/area/surface/station/mining_main/exterior) +"ft" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/eaststairwell) +"fu" = ( +/obj/structure/sign/warning/secure_area, +/turf/simulated/wall/r_wall, +/area/surface/station/rnd/hallway/bmt) +"fv" = ( +/obj/structure/safe, +/obj/item/weapon/material/sword/katana, +/obj/item/weapon/melee/chainofcommand, +/obj/item/weapon/disk/nuclear, +/obj/item/weapon/moneybag/vault, +/obj/item/weapon/coin/diamond, +/obj/item/weapon/coin/diamond, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/vault) +"fw" = ( +/obj/machinery/mineral/output, +/obj/machinery/conveyor{ + dir = 8; + id = "mining_internal" + }, +/turf/simulated/floor/plating, +/area/surface/station/mining_main/refinery) +"fx" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/maintenance/storage/emergency/bmtswest) +"fy" = ( +/turf/simulated/floor/tiled/dark, +/area/surface/station/construction/bar) +"fA" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/anomaly) +"fB" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/surface/station/mining_main/refinery) +"fC" = ( +/obj/structure/sign/warning/compressed_gas, +/turf/simulated/wall, +/area/surface/station/rnd/toxins_launch) +"fD" = ( +/turf/simulated/wall, +/area/surface/outpost/research/xenoarcheology/entrance) +"fE" = ( +/obj/machinery/airlock_sensor/airlock_exterior{ + id_tag = "arc1_ext_sensor"; + master_tag = "arc1_airlock"; + pixel_x = 24; + pixel_y = 31; + req_one_access = list(47) + }, +/obj/effect/map_helper/airlock/sensor/ext_sensor, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/dust, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor; + outdoors = 0 + }, +/area/surface/outpost/research/xenoarcheology/entrance) +"fF" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/medical/hallway/bmt) +"fG" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/construction/genetics) +"fI" = ( +/obj/structure/sign/warning/high_voltage, +/turf/simulated/wall, +/area/surface/station/engineering/auxiliary_engineering) +"fJ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/engineering/south) +"fK" = ( +/obj/structure/table/steel, +/obj/item/device/defib_kit/loaded, +/obj/item/weapon/storage/toolbox/emergency, +/turf/simulated/floor/tiled/dark, +/area/surface/station/medical/storage/second_storage) +"fL" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/smes) +"fM" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/eaststairwell) +"fN" = ( +/obj/random/obstruction, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/bar) +"fO" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/research/east) +"fR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/structure/sign/warning/cold{ + layer = 3.3; + pixel_x = -32 + }, +/turf/simulated/floor/tiled, +/area/surface/station/mining_main) +"fT" = ( +/obj/effect/floor_decal/rust, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "eng_ug_airlock_outer"; + locked = 1; + name = "Engineering External Access" + }, +/obj/effect/map_helper/airlock/door/ext_door, +/obj/machinery/access_button/airlock_exterior{ + dir = 4; + master_tag = "eng_ug_airlock"; + pixel_y = -24; + req_one_access = list(11,24) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/engineering/hallway/bmt) +"fU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 9 + }, +/obj/structure/closet/crate, +/obj/item/stack/material/phoron{ + amount = 25 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/smes) +"fV" = ( +/obj/effect/decal/cleanable/cobweb2, +/obj/random/junk, +/turf/simulated/floor/tiled/dark, +/area/surface/station/hallway/primary/bmt/south) +"fW" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 1 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/auxiliary_engineering) +"fX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/cell_charger, +/obj/structure/table/steel_reinforced, +/obj/item/weapon/cell/high, +/obj/item/weapon/storage/belt/utility, +/obj/item/weapon/pickaxe, +/turf/simulated/floor/tiled, +/area/surface/station/mining_main/storage) +"fY" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/station/hallway/primary/bmt/east) +"fZ" = ( +/obj/structure/sign/warning/bomb_range{ + name = "\improper SM Eject Site" + }, +/turf/simulated/wall/r_wall, +/area/surface/cave/explored/normal) +"ga" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/maintenance{ + req_one_access = list(5,12,47) + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/medical/south) +"gc" = ( +/obj/item/stack/rods{ + icon_state = "rods-1" + }, +/turf/simulated/floor/plating, +/area/surface/station/construction/genetics) +"gd" = ( +/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/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/maintenance{ + req_one_access = list(12) + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/engineering/south) +"ge" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/security) +"gf" = ( +/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/rnd/storage) +"gg" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/entrance) +"gh" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/drone_fabrication) +"gj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance{ + req_one_access = list(12,25,27,28,35) + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/storage/emergency/bmtswest) +"gk" = ( +/obj/structure/sign/directions/cargo/refinery, +/turf/simulated/wall, +/area/surface/station/mining_main) +"gl" = ( +/obj/structure/cable/cyan{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24; + pixel_y = -12 + }, +/obj/structure/table/standard, +/obj/item/device/flashlight/lamp, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/surface/outpost/research/xenoarcheology/isolation_b) +"gm" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/engineering/south) +"gn" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/light, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/surface/station/medical/morgue) +"gp" = ( +/obj/structure/bed, +/turf/simulated/floor/reinforced, +/area/surface/outpost/research/xenoarcheology/isolation_b) +"gq" = ( +/obj/effect/floor_decal/techfloor{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4; + frequency = 1379; + id_tag = "med_ug_airlock_pump" + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/medical/hallway/bmt) +"gr" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/drone_fabrication) +"gt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 9 + }, +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/smes) +"gv" = ( +/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/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/engineering/south) +"gw" = ( +/obj/random/multiple/corp_crate/no_weapons, +/turf/simulated/floor/tiled/dark, +/area/surface/station/hallway/primary/bmt/west) +"gx" = ( +/obj/machinery/airlock_sensor/airlock_interior{ + dir = 1; + id_tag = "arc1_airlock_int_sensor"; + master_tag = "arc1_airlock"; + pixel_x = 24; + pixel_y = -31; + req_one_access = list(47) + }, +/obj/effect/map_helper/airlock/sensor/int_sensor, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/obj/effect/catwalk_plated/white, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/entrance) +"gy" = ( +/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/tiled/dark, +/area/surface/station/hallway/primary/bmt/south) +"gz" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/maintenance{ + name = "Medbay Maintenance Access"; + req_access = list(5) + }, +/turf/simulated/floor/plating, +/area/surface/station/medical/hallway/bmt) +"gA" = ( +/turf/simulated/floor/plating, +/area/surface/station/maintenance/research/south) +"gB" = ( +/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/surface/station/rnd/storage) +"gC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/border_only, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/hallway/primary/bmt/west/elevator) +"gD" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/obj/machinery/floodlight, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor; + outdoors = 0 + }, +/area/surface/station/mining_main/exterior) +"gE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/purple/border, +/obj/item/device/radio/intercom{ + pixel_y = -21 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology) +"gF" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/mining_main/storage) +"gG" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/research/bmt) +"gH" = ( +/obj/machinery/atmospherics/binary/pump/on{ + dir = 1; + target_pressure = 315 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/table/steel, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/random/tool, +/obj/random/tool, +/obj/item/weapon/storage/briefcase/inflatable, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/smes) +"gI" = ( +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "medbayquar"; + layer = 3.3; + name = "Medbay Lockdown" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/medbay/bmt) +"gJ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/engineering/south) +"gK" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/maintenance{ + req_one_access = list(5,12,47) + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/research/east) +"gL" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/station/hallway/primary/bmt/south) +"gM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/station/hallway/primary/bmt/east) +"gN" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/auxiliary_engineering) +"gO" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 10 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled/old_tile/white, +/area/surface/station/rnd/mixing) +"gP" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/surface/station/maintenance/incinerator) +"gQ" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/surface/outpost/research/xenoarcheology/anomaly) +"gS" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/hallway/primary/bmt/west) +"gT" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/green/border, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/north) +"gU" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/hallway/primary/bmt/west) +"gW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/item/weapon/tool/crowbar, +/turf/simulated/floor/plating, +/area/surface/station/hallway/primary/bmt/east) +"gX" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/bmt) +"gY" = ( +/turf/simulated/wall, +/area/surface/station/engineering/drone_fabrication) +"ha" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/mining_main/storage) +"hc" = ( +/turf/simulated/wall, +/area/surface/station/mining_main/refinery) +"hd" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning/dust/corner{ + dir = 1 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor; + outdoors = 0 + }, +/area/surface/station/engineering/reactor_room) +"he" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/station/rnd/storage) +"hf" = ( +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -12; + pixel_y = -24 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7, +/obj/machinery/computer/station_alert{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/station/engineering/auxiliary_engineering) +"hg" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/hallway/primary/bmt/west) +"hh" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/maintenance/research/south) +"hi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/research/east) +"hj" = ( +/obj/structure/closet/crate/medical, +/obj/random/medical, +/obj/random/medical, +/obj/random/firstaid, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/medical/south) +"hk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/mining) +"hl" = ( +/obj/effect/floor_decal/industrial/warning/dust, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor; + outdoors = 0 + }, +/area/surface/station/mining_main/exterior) +"hm" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/storage/tech) +"hn" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology) +"ho" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/yellow/border, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/bmt) +"hp" = ( +/obj/structure/ladder/up, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/medbay/bmt) +"hq" = ( +/obj/structure/closet/firecloset, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/research/east) +"hr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/bmt/eaststairwell) +"hs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/east) +"ht" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/warning/moving_parts, +/turf/simulated/wall, +/area/surface/station/maintenance/incinerator) +"hu" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/bordercorner{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/mining_main/locker) +"hv" = ( +/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/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/incineratormaint) +"hx" = ( +/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, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled, +/area/surface/station/medical/hallway/bmt) +"hy" = ( +/obj/structure/cable{ + 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/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/bmt/weststairwell) +"hz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner{ + dir = 4 + }, +/obj/effect/floor_decal/rust/steel_decals_rusted1, +/obj/effect/floor_decal/rust/part_rusted1{ + dir = 1 + }, +/obj/effect/floor_decal/rust/color_rustedcorner{ + dir = 4 + }, +/obj/structure/sign/warning/cold{ + layer = 3.3; + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/surface/station/medical/hallway/bmt) +"hA" = ( +/turf/simulated/floor/plating, +/area/surface/station/maintenance/engineering/south) +"hB" = ( +/obj/machinery/status_display, +/turf/simulated/wall, +/area/surface/outpost/research/xenoarcheology/smes) +"hC" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/west/elevator) +"hE" = ( +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/monofloor, +/area/surface/station/mining_main/storage) +"hF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/surface/station/rnd/toxins_launch) +"hG" = ( +/obj/structure/cable/cyan{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/cyan{ + d1 = 16; + d2 = 0; + icon_state = "16-0" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/zpipe/up/supply, +/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/smes) +"hH" = ( +/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" + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/bar) +"hI" = ( +/obj/machinery/mineral/output, +/obj/machinery/conveyor{ + backwards = null; + dir = 10; + forwards = null; + id = "mining_internal" + }, +/turf/simulated/floor/plating, +/area/surface/station/mining_main/refinery) +"hJ" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/maintenance{ + name = "Medbay Maintenance Access"; + req_access = list(5) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/medical/morgue) +"hK" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/purple/bordercorner{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/bmt) +"hL" = ( +/obj/machinery/suspension_gen, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 9 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 21 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/research/xenoarcheology/exp_prep) +"hM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/security) +"hN" = ( +/turf/simulated/wall, +/area/surface/station/storage/tech) +"hP" = ( +/obj/structure/closet/hydrant{ + pixel_x = -32 + }, +/obj/item/clothing/glasses/meson, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/cargo/bmt) +"hR" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/requests_console{ + department = "Cargo Bay"; + departmentType = 2; + dir = 1; + name = "Cargo RC"; + pixel_y = -24 + }, +/turf/simulated/floor/tiled, +/area/surface/station/mining_main/locker) +"hT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/anomaly) +"hU" = ( +/obj/structure/table/steel, +/obj/item/device/flashlight, +/obj/item/device/flashlight{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/device/flash{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/device/flash, +/turf/simulated/floor/plating, +/area/surface/station/storage/tech) +"hV" = ( +/obj/machinery/atmospherics/binary/pump, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 8 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/anomaly_container, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/smes) +"hX" = ( +/obj/machinery/door/airlock/science{ + name = "Genetics" + }, +/obj/machinery/door/firedoor/border_only, +/turf/simulated/floor/plating, +/area/surface/station/construction/genetics) +"hY" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/ladder/up, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/weststairwell/bmt) +"hZ" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/west) +"ia" = ( +/obj/machinery/power/breakerbox{ + RCon_tag = "Auxiliary Bypass" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/auxiliary_engineering) +"ib" = ( +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/anomaly) +"ic" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor; + outdoors = 0 + }, +/area/surface/cave/explored/normal) +"ie" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/research/bmt) +"if" = ( +/obj/effect/floor_decal/industrial/warning/full, +/obj/machinery/atmospherics/binary/pump{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/anomaly) +"ig" = ( +/obj/structure/disposalpipe/junction, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/research/east) +"ih" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/obj/effect/floor_decal/rust/color_rusted{ + dir = 1 + }, +/obj/effect/floor_decal/rust/steel_decals_rusted1{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/mining_main) +"ii" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 4 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/mining_main) +"ij" = ( +/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/surface/station/medical/hallway/bmt) +"ik" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -21 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/station/hallway/primary/bmt/south) +"il" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/west) +"im" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/rust, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor; + outdoors = 0 + }, +/area/surface/cave/explored/normal) +"io" = ( +/obj/item/modular_computer/console/preset/engineering{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/station/engineering/auxiliary_engineering) +"ip" = ( +/obj/structure/loot_pile/maint/junk, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/bar) +"iq" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/powered/pump, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/old_tile/white, +/area/surface/station/rnd/mixing) +"ir" = ( +/obj/machinery/atmospherics/tvalve/digital/mirrored, +/turf/simulated/floor/tiled/old_tile/gray, +/area/surface/station/maintenance/incinerator) +"it" = ( +/obj/structure/cable{ + 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 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/engineering/south) +"iv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/medical/south) +"iw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger/corner{ + dir = 8 + }, +/obj/machinery/meter, +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + id_tag = "incinerator_access_control"; + name = "Incinerator Access Console"; + pixel_y = 24; + req_one_access = list(12); + tag_exterior_door = "incinerator_airlock_exterior"; + tag_interior_door = "incinerator_airlock_interior" + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/surface/station/maintenance/incinerator) +"ix" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/wall, +/area/surface/station/maintenance/incinerator) +"iz" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/research/xenoarcheology/longtermstorage) +"iA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/east) +"iB" = ( +/obj/structure/cable/green, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -12; + pixel_y = -24 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7, +/turf/simulated/floor/tiled/dark, +/area/surface/station/rnd/server) +"iC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/glass{ + name = "Hallway" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/hallway/secondary/bmt/eaststairwell) +"iD" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/hallway/primary/bmt/west/elevator) +"iF" = ( +/turf/simulated/wall, +/area/surface/station/engineering/hallway/bmt) +"iG" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -21 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/north) +"iI" = ( +/obj/structure/table/steel, +/obj/item/device/suit_cooling_unit{ + pixel_x = 4; + pixel_y = -2 + }, +/obj/item/device/suit_cooling_unit{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/device/gps/science{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/device/gps/science{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/device/gps/science, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/purple/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/research/xenoarcheology/exp_prep) +"iJ" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/disposalpipe/up, +/obj/structure/cable{ + d1 = 16; + d2 = 0; + icon_state = "16-0" + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/research/east) +"iK" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/surface/station/medical/morgue) +"iL" = ( +/obj/structure/table/rack{ + layer = 2.6 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/item/clothing/suit/bio_suit/anomaly, +/obj/item/clothing/head/bio_hood/anomaly, +/obj/item/clothing/mask/breath, +/obj/item/clothing/glasses/science, +/obj/item/clothing/gloves/sterile/latex, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/surface/outpost/research/xenoarcheology) +"iM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/south) +"iN" = ( +/obj/item/stack/tile/floor, +/turf/simulated/floor/plating, +/area/surface/station/construction/genetics) +"iO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/danger/corner{ + dir = 4 + }, +/obj/machinery/meter, +/obj/machinery/button/ignition{ + id = "Incinerator"; + pixel_y = 34 + }, +/obj/machinery/button/remote/blast_door{ + id = "disvent"; + name = "Incinerator Vent Control"; + pixel_y = 24; + req_one_access = list(7) + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/surface/station/maintenance/incinerator) +"iP" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/dust/corner{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/dust/corner{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor; + outdoors = 0 + }, +/area/surface/outpost/research/xenoarcheology) +"iQ" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/surface/station/rnd/mixing) +"iR" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/north) +"iS" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/surface/station/vault) +"iT" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/maintenance{ + name = "Research Maintenance Access"; + req_access = list(47) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/rnd/hallway/bmt) +"iU" = ( +/obj/structure/morgue{ + dir = 2 + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/surface/station/medical/morgue) +"iY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance{ + name = "Research Maintenance Access"; + req_access = list(47) + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/research/bmt) +"iZ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/station/hallway/primary/bmt/south) +"jb" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 8; + external_pressure_bound = 0; + external_pressure_bound_default = 0; + icon_state = "map_vent_in"; + initialize_directions = 1; + internal_pressure_bound = 4000; + internal_pressure_bound_default = 4000; + pressure_checks = 2; + pressure_checks_default = 2; + pump_direction = 0; + use_power = 1 + }, +/turf/simulated/floor/bluegrid{ + nitrogen = 100; + oxygen = 0; + temperature = 73 + }, +/area/surface/station/rnd/server) +"jc" = ( +/obj/structure/filingcabinet/medical, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/surface/station/vault) +"jd" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology) +"je" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/catwalk_plated/dark, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/research/east) +"jf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/catwalk_plated/white, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/light, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/anomaly) +"jg" = ( +/obj/structure/ore_box, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/bordercorner{ + dir = 1 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/mining_main/storage) +"jj" = ( +/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{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/west) +"jl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/medical/hallway/bmt) +"jn" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/hallway/primary/bmt/west) +"jo" = ( +/obj/machinery/artifact_harvester, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/surface/outpost/research/xenoarcheology/isolation_a) +"jp" = ( +/obj/structure/cable/heavyduty{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor; + outdoors = 0 + }, +/area/surface/cave/explored/normal) +"jr" = ( +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -12; + pixel_y = -24 + }, +/obj/structure/cable, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/bar) +"js" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/research/xenoarcheology/isolation_a) +"jt" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/monofloor{ + dir = 8 + }, +/area/surface/station/hallway/primary/bmt/west/elevator) +"ju" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "anolongstorage2" + }, +/obj/structure/plasticflaps/mining, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/longtermstorage) +"jv" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/bmt) +"jw" = ( +/turf/simulated/wall, +/area/surface/station/maintenance/medical/west) +"jx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/monofloor{ + dir = 4 + }, +/area/surface/station/rnd/toxins_launch) +"jy" = ( +/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/firedoor/glass, +/obj/machinery/door/airlock/glass_research{ + name = "Expedition Prep"; + req_one_access = list(65) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/research/xenoarcheology/exp_prep) +"jz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology) +"jA" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/old_tile/gray, +/area/surface/station/mining_main) +"jB" = ( +/obj/vehicle/train/trolley{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor; + outdoors = 0 + }, +/area/surface/station/mining_main/exterior) +"jC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/west) +"jD" = ( +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 4 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/machinery/light_switch{ + pixel_x = 12; + pixel_y = 24 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor; + outdoors = 0 + }, +/area/surface/station/mining_main/exterior) +"jE" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 8 + }, +/obj/machinery/newscaster{ + pixel_x = -26 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/entrance) +"jF" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled/dark, +/area/surface/station/rnd/hallway/bmt) +"jH" = ( +/obj/structure/table/rack, +/obj/random/maintenance/cargo, +/obj/random/maintenance/cargo, +/obj/random/maintenance/clean, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/bar) +"jI" = ( +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "englockdown"; + layer = 3.3; + name = "Engineering Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/drone_fabrication) +"jK" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/maintenance/substation/cargo/bmt) +"jL" = ( +/turf/simulated/wall, +/area/surface/station/construction/bmt/construction4) +"jN" = ( +/obj/structure/table/rack{ + layer = 2.6 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/bordercorner{ + dir = 4 + }, +/obj/item/clothing/gloves/sterile/latex, +/obj/item/clothing/glasses/science, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/entrance) +"jO" = ( +/obj/structure/closet/crate{ + dir = 8 + }, +/obj/item/weapon/storage/belt/champion, +/obj/item/stack/material/gold{ + pixel_x = -5; + pixel_y = -2 + }, +/obj/item/stack/material/gold{ + pixel_x = -3 + }, +/obj/item/stack/material/gold{ + pixel_x = -1; + pixel_y = -2 + }, +/obj/item/stack/material/gold{ + pixel_x = 1 + }, +/obj/item/stack/material/gold{ + pixel_x = 3; + pixel_y = -2 + }, +/obj/item/stack/material/gold{ + pixel_x = 5 + }, +/obj/item/stack/material/gold{ + pixel_x = 7; + pixel_y = -2 + }, +/obj/item/stack/material/gold{ + pixel_x = 9 + }, +/obj/item/stack/material/silver{ + pixel_x = 6; + pixel_y = 2 + }, +/obj/item/stack/material/silver{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/stack/material/silver{ + pixel_x = 2 + }, +/obj/item/stack/material/silver{ + pixel_y = 2 + }, +/obj/item/stack/material/silver{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/stack/material/silver{ + pixel_x = 4; + pixel_y = 2 + }, +/obj/item/stack/material/silver{ + pixel_x = 6; + pixel_y = 2 + }, +/obj/item/stack/material/silver{ + pixel_x = 8; + pixel_y = 2 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/surface/station/vault) +"jP" = ( +/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/effect/zone_divider, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/engineering/south) +"jQ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/surface/outpost/research/xenoarcheology/isolation_a) +"jR" = ( +/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/research/xenoarcheology/exp_prep) +"jS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/effect/catwalk_plated, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/surface/station/medical/hallway/bmt) +"jV" = ( +/obj/machinery/ai_status_display, +/turf/simulated/wall/r_wall, +/area/surface/outpost/research/xenoarcheology/longtermstorage) +"jW" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning/dust/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor; + outdoors = 0 + }, +/area/surface/cave/explored/normal) +"jX" = ( +/obj/structure/closet/crate/engineering, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/maintenance/engineering, +/obj/random/maintenance/engineering, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/eaststairwell) +"jY" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/surface/station/medical/morgue) +"jZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/catwalk_plated/dark, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/research/bmt) +"ka" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/engineering/south) +"kb" = ( +/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary, +/obj/effect/floor_decal/techfloor/orange{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/rnd/mixing) +"kc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/medical/storage/second_storage) +"kd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/old_tile/white, +/area/surface/station/medical/morgue) +"ke" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/west) +"kf" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/drone_fabrication) +"kg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/west) +"kj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "eng_ug_airlock_inner"; + locked = 1; + name = "Engineering Internal Access" + }, +/obj/effect/floor_decal/rust, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/map_helper/airlock/door/int_door, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/engineering/hallway/bmt) +"kl" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/medical/south) +"km" = ( +/obj/effect/decal/cleanable/cobweb2, +/obj/machinery/space_heater, +/turf/simulated/floor/tiled/dark, +/area/surface/station/hallway/primary/bmt/north) +"ko" = ( +/obj/machinery/status_display, +/turf/simulated/wall, +/area/surface/station/engineering/hallway/bmt) +"kr" = ( +/turf/simulated/floor/plating, +/area/surface/station/construction/elevator) +"ks" = ( +/turf/simulated/wall, +/area/surface/station/hallway/secondary/bmt/eaststairwell) +"ku" = ( +/obj/machinery/portable_atmospherics/canister/empty, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/surface/outpost/research/xenoarcheology/anomaly) +"kv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 8 + }, +/turf/simulated/wall/r_wall, +/area/surface/station/rnd/mixing) +"kw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/bordercorner{ + dir = 4 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/station/hallway/primary/bmt/south) +"kx" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/hallway/primary/bmt/west) +"ky" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/glass{ + name = "Hallway" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/hallway/primary/bmt/south) +"kA" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/medical/south) +"kB" = ( +/obj/effect/floor_decal/industrial/warning/dust/corner{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 5 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor; + outdoors = 0 + }, +/area/surface/station/medical/hallway/bmt) +"kC" = ( +/obj/machinery/suspension_gen, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/research/xenoarcheology/exp_prep) +"kD" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/bar) +"kE" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/west) +"kF" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/research/xenoarcheology/longtermstorage) +"kG" = ( +/obj/random/crate{ + dir = 8 + }, +/obj/random/maintenance/cargo, +/obj/random/maintenance/cargo, +/obj/random/maintenance/cargo, +/obj/random/maintenance/cargo, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/eaststairwell) +"kH" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/purple/border, +/obj/machinery/light, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology) +"kI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/mining_main) +"kJ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + req_one_access = list(12) + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/bar) +"kK" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/medbay/bmt) +"kL" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/exp_prep) +"kN" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/north) +"kO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 10 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/old_cargo/white, +/area/surface/station/rnd/mixing) +"kP" = ( +/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/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/research{ + name = "Long Term Storage"; + req_one_access = list(65) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/research/xenoarcheology/longtermstorage) +"kQ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/engineering/north) +"kR" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/red, +/obj/structure/closet/bombcloset, +/obj/machinery/light, +/turf/simulated/floor/tiled/old_tile/white, +/area/surface/station/rnd/mixing) +"kS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/meter, +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/eaststairwell) +"kT" = ( +/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/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/bar) +"kU" = ( +/obj/structure/table/rack, +/obj/item/weapon/circuitboard/message_monitor, +/turf/simulated/floor/plating, +/area/surface/station/storage/tech) +"kW" = ( +/obj/machinery/camera/network/command{ + c_tag = "COM - Vault" + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/vault) +"kZ" = ( +/obj/structure/closet/l3closet/medical, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/medical/storage/second_storage) +"lb" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/yellow, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/catwalk_plated/white, +/obj/effect/zone_divider, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/anomaly) +"lc" = ( +/obj/machinery/atmospherics/unary/vent_scrubber{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/camera/network/research_outpost{ + c_tag = "OPR - Isolation Cell A"; + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/surface/outpost/research/xenoarcheology/isolation_a) +"le" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 5 + }, +/obj/effect/zone_divider, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor; + outdoors = 0 + }, +/area/surface/station/rnd/test_area) +"lf" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/medical/hallway/bmt) +"lg" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 5 + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/surface/station/rnd/mixing) +"lh" = ( +/obj/structure/filingcabinet/security, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/surface/station/vault) +"li" = ( +/obj/effect/floor_decal/industrial/loading{ + dir = 4 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/tiled/old_tile/yellow, +/area/surface/station/mining_main/refinery) +"lj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/green/border, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/station/hallway/primary/bmt/east) +"lm" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/disposal/deliveryChute{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/medical/west) +"ln" = ( +/obj/item/stack/cable_coil/green, +/turf/simulated/floor/plating, +/area/surface/station/construction/genetics) +"lo" = ( +/obj/structure/table/glass, +/obj/machinery/chemical_dispenser/full, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 6 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/analysis) +"lq" = ( +/obj/machinery/status_display, +/turf/simulated/wall, +/area/surface/station/medical/hallway/bmt) +"lt" = ( +/obj/effect/floor_decal/techfloor{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/hallway/primary/bmt/south) +"lu" = ( +/obj/structure/cable{ + 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 = 24 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/vault) +"lv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/purple/bordercorner, +/obj/machinery/camera/network/basement{ + c_tag = "Basement - Research Access"; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/west/elevator) +"lw" = ( +/obj/effect/floor_decal/industrial/warning/dust, +/obj/structure/ore_box, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor; + outdoors = 0 + }, +/area/surface/station/mining_main/exterior) +"lx" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/tiled/dark, +/area/surface/station/hallway/primary/bmt/south) +"ly" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/east) +"lz" = ( +/obj/structure/table/rack, +/obj/item/device/analyzer/plant_analyzer, +/obj/item/device/healthanalyzer, +/obj/item/device/analyzer{ + pixel_x = 2; + pixel_y = -2 + }, +/obj/item/device/analyzer, +/turf/simulated/floor/plating, +/area/surface/station/storage/tech) +"lA" = ( +/obj/structure/closet/emcloset, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/engineering/hallway/bmt) +"lB" = ( +/obj/structure/closet/firecloset, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/rnd/storage) +"lC" = ( +/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" + }, +/obj/effect/floor_decal/industrial/warning, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/storage/tech) +"lD" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/purple/border, +/obj/machinery/light, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology) +"lE" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/bmt) +"lF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/floor_decal/rust, +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "tox_ug_airlock_inner"; + locked = 1; + name = "Toxins Internal Access" + }, +/obj/machinery/access_button/airlock_interior{ + dir = 4; + master_tag = "tox_ug_airlock"; + pixel_y = -24; + req_one_access = list(7) + }, +/obj/effect/map_helper/airlock/door/int_door, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/rnd/toxins_launch) +"lG" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/station/rnd/storage) +"lH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/wall/r_wall, +/area/surface/station/maintenance/incinerator) +"lI" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/research/south) +"lJ" = ( +/obj/structure/dispenser, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/mining_main/storage) +"lK" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/drone_fabricator, +/turf/simulated/floor/plating, +/area/surface/station/engineering/drone_fabrication) +"lL" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "isoa"; + layer = 3.3; + name = "Isolation Shutter" + }, +/obj/effect/wingrille_spawn/reinforced, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/isolation_a) +"lM" = ( +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/bmt) +"lN" = ( +/obj/machinery/ai_status_display, +/turf/simulated/wall/r_wall, +/area/surface/station/construction/warehouse) +"lO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/green/border, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/station/hallway/primary/bmt/east) +"lP" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/bordercorner{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/bmt) +"lQ" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/outpost/research/xenoarcheology/entrance) +"lR" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/catwalk_plated/dark, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/mining) +"lS" = ( +/obj/effect/floor_decal/rust, +/obj/structure/fence/door{ + dir = 4 + }, +/turf/simulated/floor/plating/sif/planetuse{ + outdoors = 0 + }, +/area/surface/cave/explored/normal) +"lT" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + 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 = 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/station/engineering/auxiliary_engineering) +"lV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/west) +"lW" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/powered/pump/filled, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/engineering/auxiliary_engineering) +"lX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/shield_diffuser, +/obj/machinery/door/blast/regular{ + dir = 4; + id = "disvent"; + name = "Incinerator Vent" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/incinerator) +"lZ" = ( +/obj/structure/table/steel, +/obj/item/device/integrated_electronics/debugger{ + pixel_x = -4 + }, +/obj/item/device/integrated_electronics/wirer{ + pixel_x = 6 + }, +/turf/simulated/floor/plating, +/area/surface/station/storage/tech) +"ma" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/purple/bordercorner{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/bmt) +"mb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/cyan{ + 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 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/research/xenoarcheology/restroom) +"mc" = ( +/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/item/device/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/station/hallway/primary/bmt/east) +"md" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/maintenance{ + req_one_access = list(12,25,27,28,35) + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/mining) +"mf" = ( +/obj/item/weapon/stool, +/turf/simulated/floor/plating, +/area/surface/station/engineering/drone_fabrication) +"mg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 9 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/smes) +"mh" = ( +/obj/structure/fence/door/locked{ + dir = 4 + }, +/turf/simulated/floor/plating/sif/planetuse{ + outdoors = 0 + }, +/area/surface/cave/explored/normal) +"mi" = ( +/turf/simulated/wall, +/area/surface/outpost/research/xenoarcheology/restroom) +"mj" = ( +/obj/structure/table/glass, +/obj/item/weapon/towel{ + color = "#B19CD9"; + name = "light purple"; + pixel_x = 1; + pixel_y = 4 + }, +/obj/item/weapon/towel{ + color = "#B19CD9"; + name = "light purple"; + pixel_y = 2 + }, +/obj/item/weapon/towel{ + color = "#B19CD9"; + name = "light purple"; + pixel_x = -1 + }, +/obj/random/soap, +/obj/random/soap, +/obj/structure/cable/cyan{ + 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 = 24 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 1 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/research/xenoarcheology/restroom) +"mm" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/vault) +"mo" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/station/hallway/primary/bmt/south) +"mp" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/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 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/north) +"mq" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/computer/message_monitor, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/dark, +/area/surface/station/rnd/server) +"mr" = ( +/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/outpost/research/xenoarcheology/anomaly) +"ms" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/mining_main/storage) +"mt" = ( +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/bmt) +"mu" = ( +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "arc1_airlock_inner"; + locked = 1; + name = "Xenoarch Internal Access" + }, +/obj/effect/map_helper/airlock/door/int_door, +/obj/machinery/access_button/airlock_interior{ + dir = 1; + master_tag = "arc1_airlock"; + pixel_x = 35; + req_one_access = list(47) + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/research/xenoarcheology/entrance) +"mv" = ( +/obj/structure/table/steel, +/obj/item/weapon/storage/excavation, +/obj/item/weapon/pickaxe, +/obj/item/weapon/tool/wrench, +/obj/item/device/measuring_tape, +/obj/item/stack/flag/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/exp_prep) +"mw" = ( +/obj/machinery/atmospherics/omni/atmos_filter{ + tag_east = 2; + tag_north = 5; + tag_west = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/smes) +"mx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/west/elevator) +"my" = ( +/obj/machinery/atmospherics/unary/heat_exchanger{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/tiled/eris/steel/danger, +/area/surface/station/rnd/mixing) +"mz" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/entrance) +"mA" = ( +/obj/structure/cable/cyan{ + 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 = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/entrance) +"mB" = ( +/obj/structure/sign/science, +/turf/simulated/wall/r_wall, +/area/surface/station/rnd/hallway/bmt) +"mC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/engineering/north) +"mF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/camera/network/basement{ + c_tag = "Basement - East Hallway 2"; + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/hallway/primary/bmt/east) +"mG" = ( +/obj/structure/stairs/spawner/east, +/obj/structure/railing, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/rnd/hallway/bmt) +"mI" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + id = "biohazard"; + layer = 3.3; + name = "Biohazard Shutter" + }, +/turf/simulated/floor/plating, +/area/surface/station/rnd/toxins_launch) +"mJ" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 2; + name = "Research Access"; + req_one_access = list(47) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/rnd/hallway/bmt) +"mK" = ( +/turf/simulated/floor/tiled/dark, +/area/surface/station/vault) +"mL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/catwalk_plated/white, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology) +"mM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/conveyor{ + dir = 4; + id = "mining_north" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/medical/west) +"mN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/west/elevator) +"mO" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/zone_divider, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/surface/outpost/research/xenoarcheology/anomaly) +"mP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/research/east) +"mR" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/bmt) +"mT" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 6 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/bmt) +"mU" = ( +/obj/machinery/newscaster{ + pixel_y = 26 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/engineering/hallway/bmt) +"mV" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/mining_main/exterior) +"mW" = ( +/obj/structure/table/steel, +/obj/item/weapon/anodevice{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/anodevice, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/machinery/button/remote/blast_door{ + id = "isob"; + name = "Isolation Shutters"; + pixel_y = 24; + req_one_access = list(47) + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 1 + }, +/obj/machinery/button/remote/blast_door{ + id = "ventisob"; + name = "Isolation Room Vent"; + pixel_y = 36; + req_one_access = list(47) + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/anomaly) +"mX" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled/dark, +/area/surface/station/hallway/primary/bmt/north) +"mY" = ( +/obj/structure/closet/crate, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/surface/station/mining_main/refinery) +"na" = ( +/obj/machinery/disposal/deliveryChute{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/plating, +/area/surface/station/mining_main/refinery) +"nb" = ( +/turf/simulated/wall, +/area/surface/station/maintenance/incineratormaint) +"nc" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/green/border, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -12; + pixel_y = -24 + }, +/obj/structure/cable, +/obj/effect/floor_decal/steeldecal/steel_decals_central7, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/bmt/eaststairwell) +"nd" = ( +/obj/machinery/mineral/input, +/obj/machinery/conveyor{ + dir = 1; + id = "mining_internal" + }, +/turf/simulated/floor/plating, +/area/surface/station/mining_main/refinery) +"ne" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/green/border, +/obj/machinery/status_display{ + pixel_y = -32 + }, +/obj/machinery/camera/network/basement{ + c_tag = "Basement - East Stairwell"; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/bmt/eaststairwell) +"nf" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + id = "biohazard"; + layer = 3.3; + name = "Biohazard Shutter" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/surface/station/rnd/toxins_launch) +"ng" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/surface/outpost/research/xenoarcheology/isolation_b) +"nh" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/surface/station/rnd/mixing) +"ni" = ( +/obj/structure/door_assembly/door_assembly_med, +/turf/simulated/floor/plating, +/area/surface/station/medical/hallway/bmt) +"nj" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/table/steel, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/random/toolbox, +/obj/random/maintenance/clean, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -21 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/drone_fabrication) +"nl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 8 + }, +/turf/simulated/wall/r_wall, +/area/surface/station/rnd/mixing) +"nm" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/crate/nanotrasen{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/vault) +"nn" = ( +/obj/structure/curtain/open/shower{ + color = "#800080" + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/obj/structure/window/basic{ + dir = 8; + layer = 2.8 + }, +/obj/machinery/door/window/northleft{ + name = "shower" + }, +/obj/machinery/shower{ + dir = 4; + pixel_x = 5; + pixel_y = -1 + }, +/turf/simulated/floor/tiled/eris, +/area/surface/outpost/research/xenoarcheology/restroom) +"no" = ( +/obj/structure/plasticflaps/mining, +/obj/machinery/ai_status_display{ + pixel_y = -32 + }, +/obj/machinery/conveyor{ + dir = 8; + id = "mining_internal" + }, +/turf/simulated/floor/plating, +/area/surface/station/mining_main/refinery) +"np" = ( +/obj/structure/plasticflaps/mining, +/obj/machinery/mineral/unloading_machine, +/turf/simulated/floor/plating/sif/planetuse{ + outdoors = 0 + }, +/area/surface/station/maintenance/medical/west) +"nr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 1 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology) +"ns" = ( +/obj/effect/floor_decal/rust, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor; + outdoors = 0 + }, +/area/surface/cave/explored/normal) +"nu" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/engineering/bmt) +"nv" = ( +/obj/structure/sign/warning/nosmoking_2, +/turf/simulated/wall/r_wall, +/area/surface/outpost/research/xenoarcheology/longtermstorage) +"nx" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/obj/machinery/floodlight, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/storage/emergency/bmtseast) +"nA" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/glass{ + name = "Hallway" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/hallway/primary/bmt/south) +"nC" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/medical/south) +"nD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/engineering/north) +"nE" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Engineering Maintenance Access"; + req_one_access = list(11,24) + }, +/obj/machinery/door/firedoor/border_only, +/turf/simulated/floor/plating, +/area/surface/station/engineering/drone_fabrication) +"nF" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/engineering/north) +"nG" = ( +/obj/effect/floor_decal/borderfloor, +/obj/structure/loot_pile/maint/boxfort, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/station/maintenance/bar) +"nH" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/surface/station/rnd/mixing) +"nI" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/medical/south) +"nJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/binary/pump{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/cee{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/surface/station/rnd/mixing) +"nK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/surface/station/rnd/mixing) +"nL" = ( +/obj/machinery/atmospherics/pipe/tank/air, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/smes) +"nN" = ( +/obj/machinery/door/window/westright{ + name = "EVA Suit"; + req_one_access = list(43) + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/analysis) +"nQ" = ( +/obj/item/weapon/ore/iron{ + pixel_x = -3; + pixel_y = 9 + }, +/obj/item/weapon/ore/slag, +/obj/random/multiple/ore_pile, +/turf/simulated/floor/tiled/dark, +/area/surface/station/hallway/primary/bmt/west) +"nR" = ( +/obj/structure/cable, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -12; + pixel_y = -24 + }, +/obj/effect/catwalk_plated/dark, +/obj/structure/closet/firecloset, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/incineratormaint) +"nS" = ( +/obj/machinery/mech_recharger, +/turf/simulated/floor/tiled/dark, +/area/surface/station/mining_main) +"nT" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 10 + }, +/obj/effect/floor_decal/rust/mono_rusted3, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/auxiliary_engineering) +"nU" = ( +/obj/effect/floor_decal/borderfloorwhite/corner, +/obj/effect/floor_decal/corner/purple/bordercorner, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology) +"nV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/green/border, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/bmt/weststairwell) +"nW" = ( +/obj/effect/floor_decal/techfloor, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/obj/structure/cable/heavyduty{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/rnd/hallway/bmt) +"nY" = ( +/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, +/obj/machinery/door/airlock/maintenance{ + req_one_access = list(12) + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/incineratormaint) +"nZ" = ( +/obj/structure/sign/warning/bomb_range, +/turf/simulated/wall/r_wall, +/area/surface/station/rnd/toxins_launch) +"oa" = ( +/obj/machinery/suit_cycler/mining, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/mining_main/storage) +"ob" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/catwalk_plated/dark, +/obj/structure/closet/hydrant{ + pixel_x = 32 + }, +/obj/item/clothing/glasses/meson, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/weststairwell/bmt) +"oc" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/space_heater, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/station/engineering/auxiliary_engineering) +"od" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor; + outdoors = 0 + }, +/area/surface/cave/explored/normal) +"oe" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/turf/simulated/floor/tiled/dark, +/area/surface/station/rnd/storage) +"og" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/vault) +"oh" = ( +/obj/random/crate{ + dir = 4 + }, +/obj/random/maintenance/medical, +/obj/random/maintenance/medical, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/medical/south) +"oi" = ( +/obj/effect/landmark{ + name = "JoinLateCyborg" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/drone_fabrication) +"oj" = ( +/obj/structure/sign/directions/cargo/mining, +/turf/simulated/wall, +/area/surface/station/mining_main/locker) +"ok" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/bmt) +"om" = ( +/turf/simulated/wall, +/area/surface/station/maintenance/incinerator) +"op" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/rnd/server) +"oq" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/floor_decal/rust, +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "min_ug_airlock_outer"; + locked = 1; + name = "Mining External Access" + }, +/obj/effect/map_helper/airlock/door/ext_door, +/obj/machinery/access_button/airlock_exterior{ + dir = 8; + master_tag = "min_ug_airlock"; + pixel_y = 24; + req_one_access = list(48) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/mining_main) +"or" = ( +/obj/effect/floor_decal/techfloor{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4; + frequency = 1379; + id_tag = "arc1_airlock_pump" + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/machinery/camera/network/research_outpost{ + c_tag = "OPR - Xenoarch Airlock South"; + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/outpost/research/xenoarcheology/entrance) +"os" = ( +/obj/item/toy/plushie/carp/ice{ + name = "Carp!" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/mining) +"ot" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/station/hallway/primary/bmt/south) +"ov" = ( +/obj/machinery/status_display, +/turf/simulated/wall, +/area/surface/station/medical/morgue) +"ow" = ( +/obj/machinery/mineral/equipment_vendor, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/bordercorner{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/tiled, +/area/surface/station/mining_main/locker) +"oy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/research/south) +"oz" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/purple/border, +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology) +"oA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 8 + }, +/turf/simulated/wall/r_wall, +/area/surface/station/rnd/mixing) +"oB" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/machinery/newscaster{ + pixel_x = -26 + }, +/obj/structure/sign/directions/medical/morgue{ + pixel_y = -26 + }, +/turf/simulated/floor/tiled, +/area/surface/station/medical/hallway/bmt) +"oC" = ( +/obj/effect/floor_decal/industrial/warning/dust/corner, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 9 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor; + outdoors = 0 + }, +/area/surface/station/mining_main) +"oD" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/bmt) +"oE" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/structure/table/rack, +/obj/item/weapon/pickaxe, +/obj/item/weapon/tool/wrench, +/obj/item/weapon/tool/crowbar, +/obj/item/weapon/shovel, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/station/mining_main/storage) +"oG" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/maintenance/incinerator) +"oH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/west) +"oJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/west/elevator) +"oK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/maintenance{ + name = "Research Maintenance Access"; + req_access = list(47) + }, +/turf/simulated/floor/plating, +/area/surface/station/rnd/hallway/bmt) +"oL" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/zpipe/up/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 16; + d2 = 0; + icon_state = "16-0" + }, +/obj/structure/disposalpipe/up{ + dir = 8 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/medbay/bmt) +"oM" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/dust, +/obj/effect/floor_decal/rust, +/obj/machinery/airlock_sensor/airlock_exterior{ + dir = 1; + id_tag = "med_ug_airlock_ext_sensor"; + master_tag = "med_ug_airlock"; + pixel_x = -35; + pixel_y = -31; + req_one_access = list(5) + }, +/obj/effect/map_helper/airlock/sensor/ext_sensor, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor; + outdoors = 0 + }, +/area/surface/station/medical/hallway/bmt) +"oN" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/hallway/primary/bmt/south) +"oO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/west) +"oP" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 4 + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/surface/station/rnd/mixing) +"oQ" = ( +/obj/machinery/atmospherics/valve/shutoff{ + name = "Research automatic shutoff valve" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/research/south) +"oR" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = 30 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/machinery/camera/network/research{ + c_tag = "SCI - Toxins Launch Room"; + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/surface/station/rnd/toxins_launch) +"oS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/surface/station/hallway/primary/bmt/west) +"oU" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/medbay/bmt) +"oW" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/eaststairwell) +"oX" = ( +/obj/structure/morgue{ + dir = 1 + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/surface/station/medical/morgue) +"oY" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 8 + }, +/obj/machinery/camera/network/mining{ + c_tag = "CRG - Mining Exterior West"; + dir = 10 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor; + outdoors = 0 + }, +/area/surface/station/mining_main/exterior) +"pa" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/medical/south) +"pb" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/maintenance{ + req_one_access = list(12,25,27,28,35) + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/mining) +"pc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/surface/station/hallway/primary/bmt/north) +"pd" = ( +/turf/simulated/wall, +/area/surface/station/construction/bmt/construction6) +"pe" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/computer/security/telescreen{ + name = "Bomb Range Monitor"; + network = list("Toxins Test Area"); + pixel_x = -32; + pixel_y = -3 + }, +/turf/simulated/floor/tiled, +/area/surface/station/rnd/toxins_launch) +"pf" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/bar) +"pg" = ( +/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/station/maintenance/bar) +"ph" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/drone_fabrication) +"pi" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/green/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/east) +"pj" = ( +/turf/simulated/wall, +/area/surface/station/medical/morgue) +"pl" = ( +/obj/machinery/mineral/unloading_machine, +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/plating, +/area/surface/station/mining_main/refinery) +"pm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/security) +"pn" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/light, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/bmt) +"pp" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 9 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/disposal, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/surface/station/rnd/hallway/bmt) +"pq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/turf/simulated/floor/reinforced, +/area/surface/outpost/research/xenoarcheology/isolation_a) +"pr" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/north) +"ps" = ( +/obj/machinery/status_display, +/turf/simulated/wall, +/area/surface/station/construction/bmt/construction1) +"pt" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/floor_decal/rust, +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "med_ug_airlock_outer"; + locked = 1; + name = "Medbay External Access" + }, +/obj/effect/map_helper/airlock/door/ext_door, +/obj/machinery/access_button/airlock_exterior{ + dir = 1; + master_tag = "med_ug_airlock"; + pixel_x = -24; + req_one_access = list(5) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/medical/hallway/bmt) +"pu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ + dir = 8 + }, +/obj/effect/zone_divider, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/anomaly) +"pv" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/incineratormaint) +"pw" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/map_helper/airlock/door/ext_door, +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "main_ug_airlock_outer"; + locked = 1; + name = "External Access" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/hallway/primary/bmt/south) +"px" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/research/east) +"py" = ( +/turf/simulated/floor/plating, +/area/surface/station/maintenance/eaststairwell) +"pz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/bordercorner{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + dir = 1; + pixel_y = 30 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/station/hallway/primary/bmt/east) +"pA" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/surface/station/rnd/mixing) +"pC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/station/medical/hallway/bmt) +"pD" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/industrial/danger, +/obj/effect/floor_decal/rust/color_rusted, +/obj/effect/floor_decal/rust/steel_decals_rusted1, +/turf/simulated/floor/tiled, +/area/surface/station/mining_main) +"pE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/anomaly) +"pF" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/construction/bmt/construction6) +"pG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/surface/station/hallway/primary/bmt/west) +"pH" = ( +/obj/structure/cable, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -12; + pixel_y = -24 + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/research/south) +"pJ" = ( +/obj/structure/table/rack, +/obj/random/maintenance/medical, +/obj/random/medical, +/obj/random/maintenance/clean, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/medical/south) +"pK" = ( +/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" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/station/medical/hallway/bmt) +"pL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/yellow/border, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/bmt) +"pM" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/mining_main/storage) +"pO" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/anomaly) +"pP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/maintenance{ + req_one_access = list(5,12,47) + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/eaststairwell) +"pQ" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning/dust/corner{ + dir = 1 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor; + outdoors = 0 + }, +/area/surface/outpost/research/xenoarcheology/entrance) +"pR" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 1 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/structure/bookcase/manuals/xenoarchaeology, +/turf/simulated/floor/tiled/neutral, +/area/surface/outpost/research/xenoarcheology/entrance) +"pS" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/medical/hallway/bmt) +"pU" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/medical/south) +"pV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/security) +"pY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/rnd/hallway/bmt) +"pZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/bmt) +"qa" = ( +/turf/simulated/wall, +/area/surface/station/hallway/primary/bmt/south) +"qb" = ( +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/machinery/light_switch{ + pixel_x = 12; + pixel_y = 24 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 1 + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/surface/station/mining_main/refinery) +"qd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/station/rnd/storage) +"qf" = ( +/obj/structure/sign/warning/bomb_range, +/turf/simulated/wall/r_wall, +/area/surface/cave/explored/normal) +"qg" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/hallway/primary/bmt/west/elevator) +"qh" = ( +/obj/structure/cable, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/storage/tech) +"qj" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/anomaly) +"qk" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/bmt) +"ql" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/structure/table/rack, +/obj/random/maintenance/clean, +/obj/random/maintenance/engineering, +/obj/random/maintenance/engineering, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/engineering/south) +"qm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/west/elevator) +"qn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/west/elevator) +"qo" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/mob/living/simple_mob/animal/passive/mouse/brown/Tom, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/storage/tech) +"qp" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/west/elevator) +"qq" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 9 + }, +/obj/effect/floor_decal/rust/mono_rusted2, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/auxiliary_engineering) +"qr" = ( +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/machinery/light_switch{ + pixel_x = 12; + pixel_y = 24 + }, +/obj/effect/catwalk_plated/dark, +/obj/structure/table/steel, +/obj/machinery/cell_charger, +/obj/item/weapon/cell/high, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/medbay/bmt) +"qs" = ( +/obj/structure/largecrate, +/turf/simulated/floor/tiled/dark, +/area/surface/station/hallway/primary/bmt/west) +"qu" = ( +/obj/structure/railing, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/rnd/hallway/bmt) +"qv" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/portable_atmospherics/canister/phoron, +/turf/simulated/floor/tiled/dark, +/area/surface/station/rnd/storage) +"qw" = ( +/obj/structure/morgue{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/surface/station/medical/morgue) +"qx" = ( +/obj/structure/table/rack, +/obj/random/maintenance/cargo, +/obj/random/maintenance/cargo, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/incineratormaint) +"qz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/turretid/stun{ + control_area = "\improper Vault"; + name = "Vault turret control"; + pixel_y = -24; + req_access = list(19) + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 21 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/hallway/primary/bmt/west) +"qA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/surface/station/rnd/mixing) +"qC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/research/east) +"qD" = ( +/obj/structure/closet/crate/engineering{ + dir = 8 + }, +/obj/item/stack/tile/floor/steel_dirty, +/obj/item/stack/tile/floor/steel_dirty, +/obj/item/stack/tile/floor/steel_dirty, +/obj/item/stack/tile/floor/steel_dirty, +/obj/item/stack/tile/floor/steel_dirty, +/obj/item/stack/tile/floor/steel_dirty, +/obj/item/stack/tile/floor/steel_dirty, +/obj/item/stack/cable_coil{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/stack/cable_coil, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/bar) +"qE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/rust, +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating/sif/planetuse{ + icon_state = "asteroidplating2"; + outdoors = 0 + }, +/area/surface/cave/explored/normal) +"qF" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor; + outdoors = 0 + }, +/area/surface/station/mining_main/exterior) +"qG" = ( +/turf/simulated/floor/plating, +/area/surface/station/maintenance/research/east) +"qH" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/station/hallway/primary/bmt/south) +"qI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/eaststairwell) +"qK" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/west/elevator) +"qM" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/green/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/west) +"qN" = ( +/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_medical{ + name = "Medbay Hallway" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/medical/hallway/bmt) +"qO" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/obj/structure/table/bench/padded, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/mining_main/locker) +"qP" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/device/radio/intercom{ + pixel_y = -21 + }, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/dark, +/area/surface/station/rnd/server) +"qQ" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/mining_main) +"qS" = ( +/obj/structure/closet/crate/medical, +/obj/random/contraband, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/random/firstaid, +/turf/simulated/floor/plating, +/area/surface/station/medical/hallway/bmt) +"qU" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/maintenance/security) +"qV" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/mining_main/locker) +"qW" = ( +/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 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/east) +"qY" = ( +/obj/item/weapon/camera_assembly, +/turf/simulated/floor/tiled/white, +/area/surface/station/construction/genetics) +"qZ" = ( +/obj/structure/table/rack, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/maintenance/engineering, +/obj/random/maintenance/engineering, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/engineering/north) +"ra" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 8 + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/surface/station/rnd/mixing) +"rc" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/incinerator) +"rd" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/storage/emergency/bmtswest) +"re" = ( +/obj/machinery/floodlight, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/bordercorner{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/research/xenoarcheology/exp_prep) +"rf" = ( +/obj/machinery/vending/assist{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/storage/tech) +"rg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/smes) +"rh" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/green/border, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -12; + pixel_y = -24 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/bmt/weststairwell) +"ri" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/old_tile/white, +/area/surface/station/rnd/mixing) +"rj" = ( +/obj/effect/floor_decal/techfloor{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4; + frequency = 1379; + id_tag = "med_ug_airlock_pump" + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + dir = 4; + id_tag = "med_ug_airlock"; + pixel_x = -24 + }, +/obj/machinery/airlock_sensor{ + dir = 4; + id_tag = "med_ug_airlock_sensor"; + pixel_x = -25; + pixel_y = -11 + }, +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/medical/hallway/bmt) +"rk" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/surface/station/mining_main/refinery) +"rl" = ( +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "medbayquar"; + layer = 3.3; + name = "Medbay Lockdown" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/medbay/bmt) +"rm" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/glass_mining{ + name = "Mining Gear Storage" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/mining_main/storage) +"rn" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/green/border, +/obj/machinery/camera/network/basement{ + c_tag = "Basement - East Hallway 4"; + dir = 1 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/station/hallway/primary/bmt/east) +"ro" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1; + frequency = 1379; + id_tag = "arc2_airlock_pump" + }, +/obj/effect/floor_decal/techfloor, +/obj/effect/floor_decal/industrial/warning, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/outpost/research/xenoarcheology) +"rq" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/blue/bordercorner, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/west) +"rr" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/bmt) +"rs" = ( +/obj/machinery/atmospherics/pipe/tank/air{ + dir = 8; + start_pressure = 4559.63 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/surface/station/engineering/auxiliary_engineering) +"rt" = ( +/turf/simulated/floor/tiled/old_tile/gray, +/area/surface/station/rnd/mixing) +"rv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/turf/simulated/floor/reinforced, +/area/surface/outpost/research/xenoarcheology/isolation_b) +"rw" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/research/xenoarcheology/longtermstorage) +"ry" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner{ + dir = 1 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/camera/network/medbay{ + c_tag = "MED - Hallway Lower North"; + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/medical/hallway/bmt) +"rz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/mining_main/locker) +"rA" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/engineering/south) +"rB" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "isob"; + layer = 3.3; + name = "Isolation Shutter" + }, +/obj/effect/wingrille_spawn/reinforced, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/isolation_b) +"rC" = ( +/obj/structure/table/steel, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/item/weapon/autopsy_scanner, +/obj/item/weapon/surgical/scalpel, +/obj/item/weapon/surgical/cautery, +/obj/machinery/requests_console{ + department = "Medbay"; + departmentType = 1; + dir = 8; + name = "Medbay RC"; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/surface/station/medical/morgue) +"rD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/obj/machinery/door/firedoor/border_only, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/research{ + name = "Isolation Room B"; + req_one_access = list(65) + }, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "isob"; + layer = 3.3; + name = "Isolation Shutter" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/research/xenoarcheology/isolation_b) +"rE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/medical/south) +"rG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/research/south) +"rJ" = ( +/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 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/station/hallway/primary/bmt/east) +"rK" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/engineering/north) +"rL" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 8; + icon_state = "map_vent_out"; + use_power = 1 + }, +/turf/simulated/floor/bluegrid{ + nitrogen = 100; + oxygen = 0; + temperature = 73 + }, +/area/surface/station/rnd/server) +"rM" = ( +/obj/structure/cable/green{ + 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 = 24 + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/engineering/bmt) +"rN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/west/elevator) +"rO" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -12; + pixel_y = -24 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/catwalk_plated/dark, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/weststairwell/bmt) +"rP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/station/hallway/primary/bmt/east) +"rQ" = ( +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/analysis) +"rR" = ( +/turf/simulated/floor/tiled, +/area/surface/station/medical/hallway/bmt) +"rS" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/glass{ + name = "Hallway" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/hallway/primary/bmt/north) +"rU" = ( +/obj/machinery/portable_atmospherics/powered/scrubber, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/smes) +"rV" = ( +/obj/effect/floor_decal/industrial/warning/dust/corner{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor; + outdoors = 0 + }, +/area/surface/station/mining_main) +"rW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/blast/regular/open{ + id = "biohazard"; + layer = 3.3; + name = "Biohazard Shutter" + }, +/turf/simulated/floor/plating, +/area/surface/station/rnd/hallway/bmt) +"rX" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 5 + }, +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = 30 + }, +/turf/simulated/floor/tiled, +/area/surface/station/medical/hallway/bmt) +"rY" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/bordercorner{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/bmt) +"sc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/glass{ + name = "Hallway" + }, +/turf/simulated/floor/plating, +/area/surface/station/hallway/primary/bmt/east) +"sd" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/research/bmt) +"se" = ( +/obj/structure/cable/heavyduty{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor; + outdoors = 0 + }, +/area/surface/cave/explored/normal) +"sf" = ( +/obj/machinery/alarm/server{ + dir = 8; + pixel_x = 22 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark{ + nitrogen = 100; + oxygen = 0; + temperature = 73 + }, +/area/surface/station/rnd/server) +"sg" = ( +/obj/structure/cable/heavyduty{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor; + outdoors = 0 + }, +/area/surface/cave/explored/normal) +"sh" = ( +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/engineering/south) +"sk" = ( +/obj/effect/floor_decal/techfloor{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1379; + id_tag = "med_ug_airlock_pump" + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/medical/hallway/bmt) +"sl" = ( +/obj/structure/closet/secure_closet/freezer/money, +/obj/item/weapon/storage/secure/briefcase/money, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/surface/station/vault) +"sm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/medical/storage/second_storage) +"sn" = ( +/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{ + name = "Research Restroom" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/research/xenoarcheology/restroom) +"sp" = ( +/obj/effect/floor_decal/rust, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "med_ug_airlock_inner"; + locked = 1; + name = "Medbay Internal Access" + }, +/obj/effect/map_helper/airlock/door/int_door, +/obj/machinery/access_button/airlock_interior{ + master_tag = "med_ug_airlock"; + pixel_x = -24; + req_one_access = list(5) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/medical/hallway/bmt) +"sq" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/camera/network/medbay{ + c_tag = "MED - Morgue" + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/surface/station/medical/morgue) +"ss" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/east) +"st" = ( +/turf/simulated/wall, +/area/surface/outpost/research/xenoarcheology/smes) +"su" = ( +/turf/simulated/wall, +/area/surface/station/hallway/primary/bmt/west/elevator) +"sv" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/medical/west) +"sw" = ( +/obj/structure/table/rack, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/random/maintenance/security, +/obj/random/maintenance/security, +/obj/random/medical, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/security) +"sx" = ( +/obj/machinery/mineral/processing_unit, +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/plating, +/area/surface/station/mining_main/refinery) +"sz" = ( +/obj/machinery/atmospherics/valve/digital, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/research/south) +"sB" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/analysis) +"sC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/mirror{ + pixel_y = 32 + }, +/obj/structure/sink{ + pixel_y = 17 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/research/xenoarcheology/restroom) +"sD" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/research/xenoarcheology/analysis) +"sE" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 8 + }, +/obj/machinery/camera/network/research{ + c_tag = "SCI - Research Hallway Lower Centre"; + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/bmt) +"sG" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/rnd/storage) +"sH" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 21 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/medical/hallway/bmt) +"sI" = ( +/obj/structure/cable/cyan{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -24; + pixel_y = 12 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/entrance) +"sJ" = ( +/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/zpipe/up/supply{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 16; + d2 = 0; + icon_state = "16-0" + }, +/obj/structure/cable/green, +/obj/structure/disposalpipe/up{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/research/bmt) +"sK" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/computer/drone_control{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/drone_fabrication) +"sL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner{ + dir = 1 + }, +/obj/item/device/radio/intercom/department/medbay{ + pixel_y = 21 + }, +/turf/simulated/floor/tiled, +/area/surface/station/medical/hallway/bmt) +"sM" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/cee{ + dir = 1 + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/surface/station/rnd/mixing) +"sN" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/purple/border, +/turf/simulated/floor/tiled, +/area/surface/outpost/research/xenoarcheology/exp_prep) +"sO" = ( +/obj/structure/cable/yellow{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/yellow, +/obj/machinery/power/sensor{ + name = "Powernet Sensor - Auxiliary Subgrid"; + name_tag = "Auxiliary Subgrid" + }, +/obj/structure/table/steel, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/item/stack/material/steel{ + amount = 50 + }, +/obj/item/stack/material/glass{ + amount = 50; + pixel_x = 2; + pixel_y = -2 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/engineering/auxiliary_engineering) +"sP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/turf/simulated/floor/tiled, +/area/surface/station/mining_main) +"sQ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 8 + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/surface/station/rnd/mixing) +"sR" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 10 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/vault) +"sS" = ( +/obj/machinery/atmospherics/pipe/manifold/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/station/hallway/primary/bmt/west/elevator) +"sT" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/surface/station/mining_main/refinery) +"sU" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/hallway/secondary/bmt/weststairwell) +"sV" = ( +/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/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/glass_research{ + name = "Sample Preparation"; + req_one_access = list(65) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/research/xenoarcheology/analysis) +"sX" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/mining_main) +"sY" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 4 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/surface/station/mining_main/locker) +"sZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/west) +"ta" = ( +/obj/machinery/atmospherics/unary/outlet_injector{ + use_power = 1 + }, +/turf/simulated/floor/reinforced, +/area/surface/station/maintenance/incinerator) +"tb" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/loot_pile/maint/junk, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/medical/west) +"tc" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/surface/station/hallway/primary/bmt/north) +"td" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 21 + }, +/turf/simulated/floor/reinforced, +/area/surface/outpost/research/xenoarcheology/isolation_a) +"te" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/analysis) +"tf" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/computer/rdservercontrol, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/rnd/server) +"tg" = ( +/obj/machinery/artifact_analyser, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/surface/outpost/research/xenoarcheology/isolation_b) +"th" = ( +/obj/structure/disposalpipe/segment, +/obj/random/obstruction, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/weststairwell/bmt) +"ti" = ( +/obj/machinery/door/airlock/engineering{ + name = "Engineering Access"; + req_one_access = list(10,11,24) + }, +/obj/machinery/door/firedoor/border_only, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/engineering/hallway/bmt) +"tj" = ( +/obj/structure/closet/firecloset, +/obj/item/clothing/mask/gas, +/obj/item/weapon/tank/oxygen/red, +/turf/simulated/floor/tiled/dark, +/area/surface/station/rnd/hallway/bmt) +"tk" = ( +/obj/machinery/mineral/unloading_machine, +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/tiled/dark, +/area/surface/station/mining_main/refinery) +"tl" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/hologram/holopad, +/obj/machinery/door/window/eastleft{ + name = "Server Room"; + req_one_access = list(30) + }, +/obj/machinery/door/window/westleft{ + name = "Server Room"; + req_one_access = list(30) + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/surface/station/rnd/server) +"to" = ( +/obj/structure/closet/hydrant{ + pixel_x = 32 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/item/clothing/glasses/meson, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/research/bmt) +"tp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/obj/machinery/door/firedoor/border_only, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/research{ + name = "Isolation Room C"; + req_one_access = list(65) + }, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "isoc"; + layer = 3.3; + name = "Isolation Shutter" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/research/xenoarcheology/isolation_c) +"tq" = ( +/obj/random/crate{ + dir = 8 + }, +/obj/random/maintenance/cargo, +/obj/random/maintenance/cargo, +/obj/random/maintenance/clean, +/obj/random/contraband, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/mining) +"ts" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/north) +"tt" = ( +/obj/structure/ladder/up, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/medical/south) +"tv" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/north) +"tx" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/machinery/camera/network/basement{ + c_tag = "Basement - South Hallway 1"; + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/south) +"ty" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner{ + dir = 1 + }, +/obj/machinery/camera/network/medbay{ + c_tag = "MED - Hallway Lower South East" + }, +/obj/structure/sign/directions/medical/morgue{ + dir = 8; + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/surface/station/medical/hallway/bmt) +"tz" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 4 + }, +/obj/machinery/space_heater, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/entrance) +"tA" = ( +/obj/machinery/mineral/input, +/obj/machinery/conveyor{ + backwards = null; + dir = 6; + forwards = null; + id = "mining_internal" + }, +/turf/simulated/floor/plating, +/area/surface/station/mining_main/refinery) +"tB" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/glass_research{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "tox_airlock_interior"; + locked = 1; + name = "Mixing Room Interior Airlock"; + req_one_access = list(7) + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/rnd/mixing) +"tC" = ( +/obj/structure/ladder/up, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/engineering/north) +"tE" = ( +/obj/structure/stairs/spawner/west, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/bmt) +"tF" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/research/east) +"tG" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + pixel_y = -21 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/station/engineering/auxiliary_engineering) +"tI" = ( +/obj/machinery/atmospherics/binary/pump, +/obj/effect/floor_decal/industrial/warning/cee{ + dir = 8 + }, +/turf/simulated/floor/reinforced, +/area/surface/station/maintenance/incinerator) +"tJ" = ( +/obj/item/weapon/material/shard, +/turf/simulated/floor/plating, +/area/surface/station/construction/genetics) +"tK" = ( +/obj/machinery/atmospherics/pipe/tank/air, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/smes) +"tM" = ( +/obj/structure/sign/warning/compressed_gas, +/turf/simulated/wall/r_wall, +/area/surface/station/rnd/storage) +"tN" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/station/engineering/auxiliary_engineering) +"tO" = ( +/obj/effect/floor_decal/corner_steel_grid{ + dir = 9 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central4{ + dir = 4 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/rnd/hallway/bmt) +"tP" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/eaststairwell) +"tQ" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/cable{ + 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/plating, +/area/surface/station/maintenance/bar) +"tR" = ( +/turf/simulated/wall, +/area/surface/station/maintenance/security) +"tS" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/east) +"tT" = ( +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable, +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/storage/tech) +"tU" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock/glass{ + name = "Stairwell" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/hallway/secondary/bmt/weststairwell) +"tV" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/obj/effect/catwalk_plated, +/obj/effect/floor_decal/rust, +/obj/machinery/airlock_sensor/airlock_interior{ + dir = 4; + id_tag = "sci_ug_airlock_int_sensor"; + master_tag = "sci_ug_airlock"; + pixel_x = -31; + pixel_y = -35; + req_one_access = list(7) + }, +/obj/effect/map_helper/airlock/sensor/int_sensor, +/turf/simulated/floor/plating, +/area/surface/station/rnd/toxins_launch) +"tW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/table/steel, +/obj/item/weapon/storage/toolbox/mechanical, +/obj/random/maintenance/clean, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/smes) +"tX" = ( +/turf/simulated/floor/tiled/dark, +/area/surface/station/engineering/hallway/bmt) +"tY" = ( +/obj/structure/table/reinforced, +/obj/machinery/cell_charger, +/obj/item/weapon/tool/screwdriver, +/obj/item/weapon/melee/baton/loaded, +/obj/item/device/multitool, +/obj/item/clothing/head/welding, +/obj/item/device/radio/intercom{ + pixel_y = -21 + }, +/obj/machinery/camera/network/research_outpost{ + c_tag = "OPR - Anomalous Materials East"; + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/anomaly) +"tZ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/zone_divider, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/anomaly) +"ua" = ( +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/storage/tech) +"ub" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 8 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor; + outdoors = 0 + }, +/area/surface/station/engineering/hallway/bmt) +"uc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/obj/structure/table/reinforced, +/obj/item/weapon/tape_roll, +/obj/item/device/geiger, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/anomaly) +"ud" = ( +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "englockdown"; + layer = 3.3; + name = "Engineering Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/engineering/bmt) +"uf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/research/xenoarcheology/restroom) +"ug" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/bordercorner{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/camera/network/basement{ + c_tag = "Basement - West Stairwell Access"; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/bmt/weststairwell) +"uh" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/south) +"uk" = ( +/turf/simulated/floor/tiled, +/area/surface/station/mining_main/storage) +"ul" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/eaststairwell) +"un" = ( +/obj/item/frame/light, +/turf/simulated/floor/tiled/white, +/area/surface/station/construction/genetics) +"uo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/eaststairwell) +"up" = ( +/obj/structure/cable, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -12; + pixel_y = -24 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/storage/emergency/bmtseast) +"us" = ( +/obj/turbolift_map_holder/cynosure/engineering, +/turf/unsimulated/mask, +/area/surface/station/engineering/hallway/bmt) +"ut" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/bmt/eaststairwell) +"uu" = ( +/obj/structure/closet/crate/nanotrasen, +/obj/random/maintenance/cargo, +/obj/random/maintenance/cargo, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/incineratormaint) +"uv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/binary/passive_gate{ + dir = 8 + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/surface/station/rnd/mixing) +"uw" = ( +/obj/machinery/floodlight, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/medical/south) +"ux" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/research/xenoarcheology/longtermstorage) +"uz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/storage/tech) +"uA" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/sign/directions/ladder_up{ + pixel_y = -26 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/mining) +"uB" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/rnd/storage) +"uC" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/medical/storage/second_storage) +"uD" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/mining) +"uE" = ( +/obj/effect/floor_decal/borderfloorwhite/corner, +/obj/effect/floor_decal/corner/purple/bordercorner, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/entrance) +"uF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/catwalk_plated, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/hallway/bmt) +"uG" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/sign/directions/command{ + dir = 4; + pixel_y = 38 + }, +/obj/structure/sign/directions/evac{ + dir = 4; + pixel_y = 32 + }, +/obj/structure/sign/directions/cryo{ + dir = 4; + pixel_y = 26 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/north) +"uH" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/glass_research{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "tox_airlock_exterior"; + locked = 1; + name = "Mixing Room Exterior Airlock"; + req_one_access = list(7) + }, +/turf/simulated/floor/reinforced, +/area/surface/station/rnd/mixing) +"uJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/obj/effect/floor_decal/rust, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/bmt) +"uK" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/research/xenoarcheology/exp_prep) +"uL" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/surface/station/rnd/storage) +"uM" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/portable_atmospherics/canister/nitrogen, +/turf/simulated/floor/tiled/dark, +/area/surface/station/rnd/storage) +"uN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/blast/regular/open{ + id = "crglockdown"; + layer = 3.3; + name = "Cargo Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/cargo/bmt) +"uO" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/turf/simulated/floor/tiled, +/area/surface/station/mining_main/storage) +"uP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology) +"uQ" = ( +/turf/simulated/wall, +/area/surface/station/maintenance/substation/medbay/bmt) +"uS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/obj/effect/landmark/start{ + name = "Shaft Miner" + }, +/turf/simulated/floor/tiled, +/area/surface/station/mining_main/locker) +"uU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/maintenance{ + req_one_access = list(5,12,47) + }, +/obj/machinery/door/firedoor/border_only, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/medical/south) +"uV" = ( +/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/table/standard, +/obj/item/weapon/storage/firstaid/regular, +/obj/item/weapon/extinguisher{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/weapon/extinguisher, +/obj/machinery/requests_console{ + department = "Science"; + departmentType = 2; + name = "Science RC"; + pixel_y = 24 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology) +"uW" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/eaststairwell) +"uX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/mining) +"uZ" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/research/xenoarcheology/entrance) +"va" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/medical/south) +"vb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/bordercorner{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/east) +"vd" = ( +/turf/simulated/wall, +/area/surface/station/maintenance/mining) +"ve" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/obj/machinery/light/small, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor; + outdoors = 0 + }, +/area/surface/station/medical/hallway/bmt) +"vf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/bmt/eaststairwell) +"vg" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/floodlight, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/research/east) +"vh" = ( +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/bordercorner{ + dir = 4 + }, +/obj/machinery/computer/guestpass{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/entrance) +"vj" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/engineering/bmt) +"vk" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/item/device/radio/intercom{ + pixel_y = -21 + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/surface/station/medical/morgue) +"vl" = ( +/obj/effect/zone_divider, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor; + outdoors = 0 + }, +/area/surface/station/rnd/test_area) +"vm" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor; + outdoors = 0 + }, +/area/surface/cave/explored/normal) +"vn" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 21 + }, +/turf/simulated/floor/reinforced, +/area/surface/outpost/research/xenoarcheology/isolation_c) +"vo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/bmt) +"vq" = ( +/obj/structure/bed, +/turf/simulated/floor/reinforced, +/area/surface/outpost/research/xenoarcheology/isolation_c) +"vr" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/research/south) +"vt" = ( +/obj/structure/closet/excavation, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/research/xenoarcheology/exp_prep) +"vu" = ( +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/purple/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/entrance) +"vv" = ( +/obj/structure/cable/heavyduty{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor; + outdoors = 0 + }, +/area/surface/cave/explored/normal) +"vw" = ( +/obj/effect/catwalk_plated/dark, +/obj/structure/cable/heavyduty{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/surface/station/rnd/hallway/bmt) +"vx" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/zpipe/up/supply, +/obj/structure/cable{ + d1 = 16; + d2 = 0; + icon_state = "16-0" + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/security) +"vy" = ( +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + dir = 4; + id_tag = "main_ug_airlock"; + pixel_x = -24 + }, +/obj/machinery/airlock_sensor{ + dir = 4; + id_tag = "main_ug_airlock_sensor"; + pixel_x = -25; + pixel_y = -11 + }, +/obj/effect/floor_decal/techfloor{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1; + frequency = 1379; + id_tag = "main_ug_airlock_pump" + }, +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/hallway/primary/bmt/south) +"vz" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/surface/station/mining_main) +"vB" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/engineering/hallway/bmt) +"vC" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/medical/hallway/bmt) +"vD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/research/south) +"vF" = ( +/turf/simulated/floor/tiled/dark, +/area/surface/station/medical/storage/second_storage) +"vG" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/rnd/server) +"vJ" = ( +/obj/effect/map_helper/airlock/door/ext_door, +/obj/effect/floor_decal/rust, +/obj/machinery/access_button/airlock_exterior{ + dir = 8; + master_tag = "tox_ug_airlock"; + pixel_y = -24; + req_one_access = list(7) + }, +/obj/machinery/door/airlock/external/glass{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "tox_ug_airlock_outer"; + locked = 1; + name = "Toxins External Access" + }, +/turf/simulated/floor/plating, +/area/surface/station/rnd/toxins_launch) +"vK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/purple/border, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/west/elevator) +"vL" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/bmt/weststairwell) +"vM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + 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 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/station/hallway/primary/bmt/east) +"vO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/incineratormaint) +"vP" = ( +/obj/structure/table/rack, +/obj/item/weapon/storage/toolbox/electrical, +/obj/item/device/multitool, +/obj/item/clothing/glasses/meson, +/obj/item/device/t_scanner, +/obj/item/clothing/gloves/yellow, +/turf/simulated/floor/plating, +/area/surface/station/storage/tech) +"vQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/obj/effect/floor_decal/techfloor{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/outpost/research/xenoarcheology) +"vR" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/engineering/south) +"vS" = ( +/obj/structure/railing, +/turf/simulated/floor/tiled/dark, +/area/surface/station/hallway/secondary/bmt/eaststairwell) +"vT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/north) +"vU" = ( +/obj/effect/floor_decal/techfloor{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/machinery/camera/network/engineering{ + c_tag = "ENG - Airlock Lower"; + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/engineering/hallway/bmt) +"vV" = ( +/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/machinery/firealarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/north) +"vW" = ( +/turf/simulated/floor/tiled/old_cargo/gray, +/area/surface/station/maintenance/incinerator) +"vX" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/dust, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor; + outdoors = 0 + }, +/area/surface/station/hallway/primary/bmt/south) +"vY" = ( +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/entrance) +"vZ" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/west) +"wa" = ( +/obj/structure/table/rack, +/obj/item/weapon/extinguisher, +/obj/item/clothing/head/hardhat/red, +/obj/item/clothing/mask/gas, +/obj/item/device/flashlight, +/obj/item/clothing/glasses/meson, +/obj/random/maintenance/clean, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/research/east) +"wb" = ( +/obj/structure/table/glass, +/obj/effect/floor_decal/borderfloorwhite, +/obj/item/device/radio/intercom{ + pixel_y = -21 + }, +/obj/item/weapon/storage/box/beakers, +/obj/item/weapon/reagent_containers/glass/beaker/large, +/obj/item/weapon/reagent_containers/dropper, +/obj/effect/floor_decal/corner/beige/border, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/analysis) +"wd" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/medical/hallway/bmt) +"we" = ( +/obj/machinery/atmospherics/unary/vent_scrubber{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/camera/network/research_outpost{ + c_tag = "OPR - Isolation Cell C"; + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/surface/outpost/research/xenoarcheology/isolation_c) +"wf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/yellow/border, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + pixel_y = -21 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/bmt) +"wi" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/wall, +/area/surface/station/maintenance/medical/west) +"wj" = ( +/obj/structure/sign/warning/caution, +/turf/simulated/wall/r_wall, +/area/surface/cave/explored/normal) +"wk" = ( +/obj/structure/closet/crate, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/turf/simulated/floor/tiled/dark, +/area/surface/station/hallway/primary/bmt/west) +"wl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/engineering{ + name = "Xenoarchelogy Maintenance"; + req_one_access = list(11,24,47) + }, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/smes) +"wm" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/machinery/vending/wallmed1{ + pixel_x = 26 + }, +/turf/simulated/floor/tiled, +/area/surface/station/medical/hallway/bmt) +"wn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/paleblue/bordercorner, +/turf/simulated/floor/tiled, +/area/surface/station/medical/hallway/bmt) +"wo" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/loot_pile/maint/trash, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/research/east) +"wp" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/industrial/danger/corner, +/obj/effect/floor_decal/rust/color_rustedcorner, +/turf/simulated/floor/tiled, +/area/surface/station/mining_main) +"wq" = ( +/obj/structure/closet/toolcloset, +/turf/simulated/floor/plating, +/area/surface/station/construction/basement) +"wr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/camera/network/basement{ + c_tag = "Basement - East Hallway 1"; + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/east) +"ws" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/smes) +"wt" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/rnd/toxins_launch) +"wu" = ( +/turf/simulated/floor/tiled/dark{ + nitrogen = 100; + oxygen = 0; + temperature = 73 + }, +/area/surface/station/rnd/server) +"wv" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/bordercorner{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/west) +"ww" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/storage/tech) +"wx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/catwalk_plated/dark, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/incineratormaint) +"wy" = ( +/obj/machinery/atmospherics/valve/digital, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/mining) +"wz" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 21 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/surface/station/rnd/mixing) +"wA" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/research{ + name = "Toxins Launch Room"; + req_one_access = list(7) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/rnd/toxins_launch) +"wB" = ( +/obj/machinery/status_display, +/turf/simulated/wall/r_wall, +/area/surface/outpost/research/xenoarcheology/longtermstorage) +"wC" = ( +/obj/structure/ladder/up, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/research/east) +"wD" = ( +/obj/effect/floor_decal/techfloor{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1379; + id_tag = "sci_ug_airlock_pump" + }, +/obj/structure/sign/directions/science/xenoarch{ + dir = 1; + pixel_x = 32 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/rnd/hallway/bmt) +"wF" = ( +/obj/machinery/ai_status_display, +/turf/simulated/wall, +/area/surface/station/engineering/drone_fabrication) +"wH" = ( +/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" + }, +/obj/machinery/door/firedoor/border_only, +/obj/effect/catwalk_plated/dark, +/obj/machinery/door/airlock/highsecurity{ + name = "Secure Tech Storage"; + req_one_access = list(19,23) + }, +/turf/simulated/floor/plating, +/area/surface/station/storage/tech) +"wI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/border_only, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/medical/south) +"wJ" = ( +/obj/machinery/mining/brace, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor; + outdoors = 0 + }, +/area/surface/station/mining_main/exterior) +"wK" = ( +/obj/structure/cable/cyan{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24; + pixel_y = -12 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 4 + }, +/obj/structure/sink/generic{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/analysis) +"wL" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/research/xenoarcheology/exp_prep) +"wM" = ( +/obj/random/crate, +/turf/simulated/floor/tiled/dark, +/area/surface/station/hallway/primary/bmt/west) +"wN" = ( +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/disposal, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/surface/station/medical/morgue) +"wP" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/engineering/south) +"wR" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 21 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/bmt) +"wS" = ( +/obj/machinery/artifact_scanpad, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/surface/outpost/research/xenoarcheology/isolation_b) +"wU" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/mining_main/storage) +"wV" = ( +/obj/structure/sign/warning/secure_area, +/turf/simulated/wall/r_wall, +/area/surface/station/engineering/hallway/bmt) +"wW" = ( +/obj/machinery/mech_recharger, +/obj/machinery/ai_status_display{ + pixel_y = 32 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/mining_main) +"wX" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/drone_fabrication) +"wY" = ( +/obj/structure/anomaly_container, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/research/xenoarcheology/longtermstorage) +"wZ" = ( +/obj/machinery/status_display, +/turf/simulated/wall, +/area/surface/station/mining_main/refinery) +"xa" = ( +/turf/simulated/floor/tiled, +/area/surface/outpost/research/xenoarcheology/exp_prep) +"xb" = ( +/obj/machinery/mineral/stacking_machine, +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/plating, +/area/surface/station/mining_main/refinery) +"xc" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/security) +"xe" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/engineering/south) +"xf" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/phoronreinforced/full, +/obj/structure/grille, +/obj/machinery/status_display, +/turf/simulated/floor/plating, +/area/surface/station/rnd/mixing) +"xg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/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/borderfloor, +/obj/effect/floor_decal/corner/paleblue/border, +/turf/simulated/floor/tiled, +/area/surface/station/medical/hallway/bmt) +"xh" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/door/airlock/glass_external{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "incinerator_airlock_interior"; + locked = 1; + name = "Mixing Room Interior Airlock"; + req_one_access = list(12) + }, +/obj/machinery/access_button/airlock_interior{ + master_tag = "incinerator_access_control"; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/maintenance/incinerator) +"xi" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/west) +"xj" = ( +/obj/random/obstruction, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/research/south) +"xl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/cyan{ + 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/surface/outpost/research/xenoarcheology) +"xm" = ( +/obj/structure/sign/directions/engineering/solars{ + dir = 1 + }, +/turf/simulated/wall/r_wall, +/area/surface/station/maintenance/security) +"xn" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "isob"; + layer = 3.3; + name = "Isolation Shutter" + }, +/obj/effect/wingrille_spawn/reinforced, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/isolation_b) +"xo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/medical/south) +"xp" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/bmt/weststairwell) +"xq" = ( +/obj/machinery/camera/network/research{ + c_tag = "SCI - Toxins Test Chamber South"; + dir = 1; + network = list("Research","Toxins Test Area") + }, +/obj/machinery/light/spot, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor; + outdoors = 0 + }, +/area/surface/station/rnd/test_area) +"xu" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/surface/station/medical/hallway/bmt) +"xv" = ( +/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{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/surface/station/hallway/primary/bmt/west) +"xw" = ( +/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/engineering{ + name = "Cargo Substation"; + req_one_access = list(11,24,50) + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/cargo/bmt) +"xx" = ( +/obj/effect/floor_decal/industrial/warning/dust/corner{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor; + outdoors = 0 + }, +/area/surface/station/mining_main/exterior) +"xz" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/mining) +"xB" = ( +/obj/structure/table/steel, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 6 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 6 + }, +/obj/item/weapon/paper_bin, +/obj/item/weapon/pen/blue, +/obj/item/weapon/pen/red{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/item/device/camera{ + name = "Autopsy Camera"; + pixel_y = 8 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/surface/station/medical/morgue) +"xD" = ( +/obj/structure/sign/warning/moving_parts, +/turf/simulated/wall, +/area/surface/station/mining_main/refinery) +"xE" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor; + outdoors = 0 + }, +/area/surface/station/rnd/test_area) +"xF" = ( +/obj/structure/sign/warning/hot_exhaust, +/turf/simulated/wall/r_wall, +/area/surface/station/rnd/mixing) +"xG" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/medical/west) +"xI" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/engineering/south) +"xJ" = ( +/obj/effect/floor_decal/industrial/warning/dust, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor; + outdoors = 0 + }, +/area/surface/station/mining_main/exterior) +"xK" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/obj/machinery/camera/network/basement{ + c_tag = "Basement - West Hallway 2" + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/west) +"xL" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/west/elevator) +"xM" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 1 + }, +/obj/machinery/vending/snack, +/turf/simulated/floor/tiled/neutral, +/area/surface/outpost/research/xenoarcheology/entrance) +"xN" = ( +/obj/machinery/atmospherics/pipe/tank/carbon_dioxide, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/smes) +"xO" = ( +/obj/machinery/space_heater, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/smes) +"xP" = ( +/obj/structure/cable/cyan{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24; + pixel_y = -12 + }, +/obj/structure/table/standard, +/obj/item/device/flashlight/lamp, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/surface/outpost/research/xenoarcheology/isolation_a) +"xQ" = ( +/obj/structure/table/steel, +/obj/machinery/cell_charger, +/obj/item/weapon/cell/high, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/research/bmt) +"xT" = ( +/obj/machinery/status_display, +/turf/simulated/wall/r_wall, +/area/surface/station/hallway/primary/bmt/west/elevator) +"xU" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central4, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 5 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/medical/hallway/bmt) +"xV" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/west) +"xW" = ( +/turf/simulated/mineral/floor/ignore_mapgen/sif, +/area/surface/cave/explored/deep) +"xX" = ( +/obj/effect/zone_divider, +/turf/simulated/mineral/floor/ignore_mapgen/sif, +/area/surface/cave/explored/normal) +"xY" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/anomaly) +"ya" = ( +/obj/structure/table/rack, +/obj/item/weapon/circuitboard/unary_atmos/cooler, +/obj/item/weapon/circuitboard/unary_atmos/heater{ + pixel_x = 4; + pixel_y = -3 + }, +/turf/simulated/floor/plating, +/area/surface/station/storage/tech) +"yc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/station_map{ + dir = 4; + pixel_x = -32 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/east) +"ye" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/surface/outpost/research/xenoarcheology/isolation_c) +"yf" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/research/bmt) +"yh" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 1 + }, +/obj/structure/sign/directions/engineering/engeqp{ + dir = 1; + pixel_y = 38 + }, +/obj/structure/sign/directions/engineering/reactor{ + dir = 1; + pixel_y = 32 + }, +/obj/structure/sign/directions/engineering/atmospherics{ + dir = 1; + pixel_y = 26 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/bmt) +"yi" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 5 + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/surface/station/maintenance/incinerator) +"yj" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 9 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/research/east) +"yk" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/mining_main/locker) +"yl" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "biohazard"; + layer = 3.3; + name = "Biohazard Shutter" + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/rnd/hallway/bmt) +"ym" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/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/borderfloorwhite/corner, +/obj/effect/floor_decal/corner/purple/bordercorner, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/bmt) +"yn" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/bmt) +"yo" = ( +/obj/machinery/atmospherics/binary/pump, +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/anomaly) +"yp" = ( +/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/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/research/xenoarcheology/longtermstorage) +"yq" = ( +/obj/machinery/door/firedoor/border_only, +/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/airlock/research{ + name = "Toxins Storage"; + req_one_access = list(8) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/rnd/storage) +"yr" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/old_tile/gray, +/area/surface/station/mining_main/refinery) +"ys" = ( +/obj/structure/cable/heavyduty{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/machinery/power/port_gen/pacman{ + anchored = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/smes) +"yt" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/landmark/start{ + name = "Shaft Miner" + }, +/turf/simulated/floor/tiled, +/area/surface/station/mining_main/locker) +"yu" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/table/steel, +/obj/machinery/cell_charger, +/obj/item/weapon/cell/high, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/storage/emergency/bmtswest) +"yv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/anomaly) +"yw" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/rnd/toxins_launch) +"yx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/medbay/bmt) +"yy" = ( +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/disposal/deliveryChute, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/incinerator) +"yz" = ( +/obj/machinery/artifact_harvester, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/surface/outpost/research/xenoarcheology/isolation_c) +"yA" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/smes) +"yB" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/bmt/eaststairwell) +"yC" = ( +/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 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/north) +"yD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/cyan, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24; + pixel_y = -12 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/smes) +"yE" = ( +/turf/simulated/floor/plating, +/area/surface/station/construction/genetics) +"yF" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/surface/station/maintenance/incinerator) +"yG" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 4 + }, +/obj/machinery/camera/network/research_outpost{ + c_tag = "OPR - Xenoarch Hallway North"; + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology) +"yH" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/camera/network/engineering{ + c_tag = "ENG - Drone Fabrication" + }, +/obj/machinery/drone_fabricator, +/turf/simulated/floor/plating, +/area/surface/station/engineering/drone_fabrication) +"yI" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/station/hallway/primary/bmt/south) +"yK" = ( +/obj/structure/table/steel, +/obj/item/weapon/anobattery{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/weapon/anobattery{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/anobattery, +/obj/item/weapon/anobattery{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/machinery/button/remote/blast_door{ + id = "isoa"; + name = "Isolation Shutters"; + pixel_y = 24; + req_one_access = list(47) + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 1 + }, +/obj/machinery/button/remote/blast_door{ + id = "ventisoa"; + name = "Isolation Room Vent"; + pixel_y = 36; + req_one_access = list(47) + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/anomaly) +"yM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/paleblue/border, +/turf/simulated/floor/tiled, +/area/surface/station/medical/hallway/bmt) +"yN" = ( +/turf/simulated/wall, +/area/surface/station/engineering/auxiliary_engineering) +"yO" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/green/border, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/bmt/eaststairwell) +"yQ" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/maintenance{ + name = "Mining Maintenance"; + req_access = list(48) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/turf/simulated/floor/plating, +/area/surface/station/mining_main) +"yR" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/rnd/storage) +"yS" = ( +/obj/random/obstruction, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/medical/west) +"yT" = ( +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/structure/table/rack, +/obj/item/weapon/stock_parts/matter_bin{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/item/weapon/stock_parts/matter_bin{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/weapon/stock_parts/matter_bin, +/obj/item/weapon/stock_parts/manipulator, +/obj/item/weapon/stock_parts/console_screen, +/turf/simulated/floor/plating, +/area/surface/station/storage/tech) +"yV" = ( +/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/machinery/door/firedoor/border_only, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/hallway/primary/bmt/north) +"yW" = ( +/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/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/station/hallway/primary/bmt/east) +"yX" = ( +/obj/structure/stairs/spawner/west, +/obj/structure/railing, +/turf/simulated/floor/tiled/dark, +/area/surface/station/hallway/secondary/bmt/eaststairwell) +"yY" = ( +/obj/structure/table/steel, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/item/weapon/storage/box/bodybags{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/weapon/storage/box/bodybags, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24; + pixel_y = -12 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 4 + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/surface/station/medical/morgue) +"yZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/research/east) +"za" = ( +/obj/structure/cable{ + 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 = 24 + }, +/obj/machinery/space_heater, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/engineering/north) +"zc" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled/dark, +/area/surface/station/hallway/primary/bmt/south) +"zd" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/engineering/north) +"ze" = ( +/obj/effect/wingrille_spawn/reinforced, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating/sif/planetuse{ + outdoors = 0 + }, +/area/surface/station/rnd/test_area) +"zf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/medical/south) +"zg" = ( +/turf/simulated/wall, +/area/surface/station/maintenance/research/south) +"zh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/zone_divider, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/anomaly) +"zj" = ( +/obj/structure/sign/science, +/turf/simulated/wall/r_wall, +/area/surface/outpost/research/xenoarcheology/entrance) +"zk" = ( +/obj/effect/decal/cleanable/cobweb2{ + icon_state = "cobweb1" + }, +/obj/random/junk, +/turf/simulated/floor/tiled/dark, +/area/surface/station/hallway/primary/bmt/east) +"zl" = ( +/turf/simulated/floor/plating/sif/planetuse{ + icon_state = "asteroidplating2"; + outdoors = 0 + }, +/area/surface/station/mining_main/exterior) +"zn" = ( +/obj/effect/floor_decal/techfloor{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1379; + id_tag = "arc1_airlock_pump" + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + dir = 8; + id_tag = "arc1_airlock"; + pixel_x = 24 + }, +/obj/machinery/airlock_sensor{ + dir = 8; + id_tag = "arc1_airlock_sensor"; + pixel_x = 25; + pixel_y = 11 + }, +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/outpost/research/xenoarcheology/entrance) +"zq" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/yellow/border, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/bmt) +"zt" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/purple/border, +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -12; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology) +"zu" = ( +/obj/machinery/ai_status_display, +/turf/simulated/wall, +/area/surface/station/storage/tech) +"zv" = ( +/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" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/storage/tech) +"zw" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/purple/border, +/obj/structure/bed/chair/sofa/beige/left{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/outpost/research/xenoarcheology/entrance) +"zx" = ( +/obj/structure/sign/directions/science/xenobiology{ + dir = 1; + pixel_y = 6 + }, +/obj/structure/sign/directions/science/xenoflora{ + dir = 1 + }, +/obj/structure/sign/directions/science/exploration{ + dir = 1; + pixel_y = -6 + }, +/turf/simulated/wall/r_wall, +/area/surface/station/rnd/hallway/bmt) +"zz" = ( +/obj/structure/ladder/up, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/medical/west) +"zA" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/west) +"zB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/catwalk_plated, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/surface/station/medical/hallway/bmt) +"zC" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/ladder/up, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/smes) +"zD" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/engineering{ + name = "Drone Fabrication"; + req_one_access = list(11,24) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/drone_fabrication) +"zG" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/station/hallway/primary/bmt/east) +"zH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/medical/south) +"zJ" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/research/xenoarcheology/restroom) +"zK" = ( +/obj/machinery/iv_drip, +/turf/simulated/floor/tiled/dark, +/area/surface/station/medical/storage/second_storage) +"zL" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/maintenance/weststairwell/bmt) +"zM" = ( +/turf/simulated/floor/plating, +/area/surface/station/maintenance/bar) +"zN" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/mining_main/storage) +"zO" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/maintenance{ + name = "Construction Area Access"; + req_one_access = list(12) + }, +/turf/simulated/floor/plating, +/area/surface/station/construction/bmt/construction2) +"zQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/surface/station/mining_main/storage) +"zR" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/west) +"zT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/floor_decal/industrial/warning, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/surface/station/maintenance/incinerator) +"zU" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/station_map{ + dir = 4; + pixel_x = -32 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/hallway/primary/bmt/west/elevator) +"zV" = ( +/obj/item/stack/tile/floor, +/turf/simulated/floor/plating, +/area/surface/station/hallway/primary/bmt/east) +"zW" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark, +/area/surface/station/hallway/primary/bmt/north) +"zX" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/research/xenoarcheology/restroom) +"zY" = ( +/obj/machinery/door/blast/regular/open{ + id = "biohazard"; + layer = 3.3; + name = "Biohazard Shutter" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/rnd/hallway/bmt) +"zZ" = ( +/obj/effect/floor_decal/rust, +/obj/structure/cable/heavyduty{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor; + outdoors = 0 + }, +/area/surface/cave/explored/normal) +"Aa" = ( +/obj/machinery/portable_atmospherics/powered/scrubber, +/turf/simulated/floor/tiled/dark, +/area/surface/station/hallway/primary/bmt/north) +"Ab" = ( +/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/effect/floor_decal/corner/white{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central5, +/turf/simulated/floor/tiled/neutral, +/area/surface/outpost/research/xenoarcheology) +"Ad" = ( +/obj/machinery/mineral/stacking_unit_console{ + density = 0; + pixel_y = -32 + }, +/obj/machinery/conveyor_switch/oneway{ + convdir = -1; + id = "mining_internal" + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/surface/station/mining_main/refinery) +"Ae" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/bmt/weststairwell) +"Af" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/glass{ + name = "Stairwell" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/hallway/secondary/bmt/weststairwell) +"Ag" = ( +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable, +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/storage/tech) +"Ah" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/research/xenoarcheology/longtermstorage) +"Ai" = ( +/obj/random/crate{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/hallway/primary/bmt/east) +"Aj" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/anomaly_container, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/smes) +"Ak" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/purple/border, +/obj/structure/bed/chair/sofa/beige/right{ + dir = 1 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/outpost/research/xenoarcheology/entrance) +"Al" = ( +/obj/machinery/door/airlock/maintenance/engi{ + icon_state = "door_locked"; + id_tag = "elevator_SCI_access"; + locked = 1; + name = "Emergency Access NO ENTRY"; + req_one_access = list() + }, +/obj/machinery/button/remote/blast_door{ + dir = 1; + id = "elevator_sci_access"; + name = "Elevator Hatch Release"; + pixel_y = -24 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/entrance) +"Am" = ( +/obj/random/obstruction, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/medical/south) +"An" = ( +/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 = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/bmt) +"Ao" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/research/xenoarcheology/longtermstorage) +"Ap" = ( +/obj/machinery/door/blast/regular/open{ + id = "englockdown"; + layer = 3.3; + name = "Engineering Lockdown" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark, +/area/surface/station/engineering/hallway/bmt) +"Aq" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/medical/hallway/bmt) +"Ar" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/plating, +/area/surface/station/hallway/primary/bmt/east) +"As" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/surface/station/hallway/primary/bmt/north) +"At" = ( +/obj/structure/table/steel, +/obj/item/weapon/storage/excavation, +/obj/item/weapon/pickaxe, +/obj/item/weapon/tool/wrench, +/obj/item/device/measuring_tape, +/obj/item/stack/flag/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/research/xenoarcheology/exp_prep) +"Av" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloorwhite/corner, +/obj/effect/floor_decal/corner/purple/bordercorner, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/bmt) +"Aw" = ( +/obj/structure/toilet{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/turf/simulated/floor/tiled/eris, +/area/surface/outpost/research/xenoarcheology/restroom) +"Ax" = ( +/obj/structure/table/steel_reinforced, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 8 + }, +/obj/machinery/cell_charger, +/obj/structure/cable/green{ + 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 = 24 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 1 + }, +/obj/item/weapon/cell/high, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/mining_main) +"Az" = ( +/turf/simulated/wall, +/area/surface/station/maintenance/storage/emergency/bmtseast) +"AB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/outpost/research/xenoarcheology/entrance) +"AC" = ( +/obj/machinery/ai_status_display, +/turf/simulated/wall, +/area/surface/station/mining_main/storage) +"AD" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/mining) +"AE" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/mining_main) +"AF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/bmt/weststairwell) +"AH" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/bmt) +"AI" = ( +/obj/structure/table/steel, +/obj/item/weapon/cane/crutch{ + pixel_y = -4 + }, +/obj/item/weapon/cane/crutch, +/obj/item/weapon/storage/box/gloves{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/storage/box/rxglasses, +/turf/simulated/floor/tiled/dark, +/area/surface/station/medical/storage/second_storage) +"AJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/analysis) +"AK" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/surface/station/rnd/mixing) +"AL" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/bmt) +"AM" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor; + outdoors = 0 + }, +/area/surface/station/rnd/test_area) +"AP" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/surface/station/rnd/hallway/bmt) +"AQ" = ( +/turf/unsimulated/wall/planetary/sif{ + icon_state = "rock-dark" + }, +/area/surface/cave/unexplored/deep) +"AR" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/cyan{ + 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/effect/floor_decal/industrial/outline/grey, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 10 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/neutral, +/area/surface/outpost/research/xenoarcheology/entrance) +"AS" = ( +/obj/structure/table/steel, +/obj/item/device/aicard, +/obj/item/weapon/aiModule/reset, +/turf/simulated/floor/plating, +/area/surface/station/storage/tech) +"AT" = ( +/turf/simulated/floor/plating, +/area/surface/station/construction/bmt/construction6) +"AU" = ( +/obj/machinery/portable_atmospherics/powered/pump/filled, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/smes) +"AW" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging, +/turf/simulated/floor/reinforced/airless{ + name = "reinforced floor" + }, +/area/surface/station/rnd/mixing) +"AX" = ( +/obj/effect/floor_decal/techfloor{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1379; + id_tag = "arc1_airlock_pump" + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/outpost/research/xenoarcheology/entrance) +"AY" = ( +/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/station/hallway/primary/bmt/east) +"AZ" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "main_ug_airlock_inner"; + locked = 1; + name = "Internal Access" + }, +/obj/effect/map_helper/airlock/door/int_door, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/hallway/primary/bmt/south) +"Ba" = ( +/obj/structure/closet/crate, +/obj/item/weapon/grenade/chem_grenade, +/obj/item/weapon/grenade/chem_grenade, +/obj/item/weapon/grenade/chem_grenade, +/obj/item/weapon/grenade/chem_grenade, +/obj/item/device/assembly/igniter, +/obj/item/device/assembly/igniter, +/obj/item/device/assembly/igniter, +/obj/item/device/assembly/timer, +/obj/item/device/assembly/timer, +/obj/item/device/assembly/timer, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/medical/storage/second_storage) +"Bb" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 8 + }, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/surface/station/engineering/auxiliary_engineering) +"Bc" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/smes) +"Bd" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ + dir = 1 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/smes) +"Be" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/maintenance{ + name = "Auxiliary Engineering Station"; + req_one_access = list(11,24) + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/surface/station/engineering/auxiliary_engineering) +"Bf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/green/border, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/north) +"Bg" = ( +/obj/machinery/atmospherics/valve/digital, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/medical/south) +"Bh" = ( +/obj/machinery/status_display, +/turf/simulated/wall, +/area/surface/station/mining_main/storage) +"Bi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/bordercorner{ + dir = 4 + }, +/obj/machinery/camera/network/mining{ + c_tag = "CRG - Mining Hallway South"; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/mining_main) +"Bj" = ( +/turf/unsimulated/mask, +/area/surface/outpost/research/xenoarcheology/entrance) +"Bk" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/catwalk_plated, +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/surface/station/engineering/hallway/bmt) +"Bl" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/door/airlock/glass_research{ + name = "Anomalous Materials"; + req_one_access = list(65) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/research/xenoarcheology/anomaly) +"Bm" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 5 + }, +/obj/structure/closet/firecloset, +/obj/machinery/camera/network/research{ + c_tag = "SCI - Toxins Lab South"; + dir = 10 + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/surface/station/rnd/mixing) +"Bn" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "mining_internal" + }, +/turf/simulated/floor/plating, +/area/surface/station/mining_main/refinery) +"Bo" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/obj/machinery/camera/network/mining{ + c_tag = "CRG - Mining Exterior East"; + dir = 8 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor; + outdoors = 0 + }, +/area/surface/station/mining_main/exterior) +"Bp" = ( +/obj/effect/floor_decal/borderfloor, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable, +/obj/effect/floor_decal/corner/brown/border, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -12; + pixel_y = -24 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/west) +"Bq" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/engineering/south) +"Br" = ( +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/table/steel, +/obj/item/device/suit_cooling_unit{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/device/suit_cooling_unit, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24; + pixel_y = -12 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/mining_main/storage) +"Bs" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable, +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/storage/tech) +"Bt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/incineratormaint) +"Bu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/table/reinforced, +/obj/effect/floor_decal/steeldecal/steel_decals_central5, +/obj/effect/floor_decal/corner/white{ + dir = 5 + }, +/obj/machinery/computer/atmoscontrol/laptop{ + monitored_alarm_ids = list("isolation_one","isolation_two","isolation_three"); + req_access = null + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/outpost/research/xenoarcheology/anomaly) +"Bv" = ( +/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/effect/catwalk_plated/white, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology) +"Bw" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/entrance) +"Bx" = ( +/obj/structure/extinguisher_cabinet{ + dir = 1; + pixel_y = 30 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/camera/network/research{ + c_tag = "SCI - Toxins Lab North"; + dir = 6 + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/surface/station/rnd/mixing) +"By" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/rnd/toxins_launch) +"BA" = ( +/turf/simulated/wall, +/area/surface/station/maintenance/bar) +"BB" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/north) +"BC" = ( +/obj/machinery/artifact_scanpad, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/surface/outpost/research/xenoarcheology/isolation_a) +"BF" = ( +/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/surface/station/maintenance/engineering/south) +"BG" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/camera/network/engineering{ + c_tag = "ENG - Stairwell Lower"; + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/bmt) +"BI" = ( +/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 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/entrance) +"BJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 6 + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/incineratormaint) +"BK" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor; + outdoors = 0 + }, +/area/surface/station/mining_main/exterior) +"BL" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/green/border, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/west/elevator) +"BM" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "isoc"; + layer = 3.3; + name = "Isolation Shutter" + }, +/obj/effect/wingrille_spawn/reinforced, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/isolation_c) +"BN" = ( +/obj/machinery/door/blast/regular{ + dir = 4; + id = "ventisob"; + name = "Isolation Room Vent" + }, +/turf/simulated/floor/reinforced, +/area/surface/outpost/research/xenoarcheology/isolation_b) +"BO" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/dust, +/obj/machinery/airlock_sensor/airlock_exterior{ + id_tag = "main_ug_airlock_ext_sensor"; + master_tag = "main_ug_airlock"; + pixel_x = 24; + pixel_y = 31 + }, +/obj/effect/map_helper/airlock/sensor/ext_sensor, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor; + outdoors = 0 + }, +/area/surface/station/hallway/primary/bmt/south) +"BR" = ( +/turf/simulated/floor/plating, +/area/surface/station/maintenance/engineering/north) +"BT" = ( +/obj/structure/table/steel, +/obj/structure/bedsheetbin, +/obj/random/firstaid, +/obj/random/firstaid, +/obj/structure/extinguisher_cabinet{ + dir = 1; + pixel_y = 30 + }, +/obj/random/medical, +/obj/random/medical, +/turf/simulated/floor/tiled/dark, +/area/surface/station/medical/storage/second_storage) +"BU" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/medical/south) +"BV" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance{ + req_one_access = list(12) + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/weststairwell/bmt) +"BW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/research/east) +"BY" = ( +/obj/machinery/conveyor{ + id = "mining_north" + }, +/turf/simulated/floor/plating, +/area/surface/station/mining_main/refinery) +"BZ" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/turf/simulated/floor/tiled/dark, +/area/surface/station/engineering/hallway/bmt) +"Ca" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/west) +"Cb" = ( +/obj/machinery/door/blast/regular/open{ + id = "medbayquar"; + layer = 3.3; + name = "Medbay Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/medical/hallway/bmt) +"Cc" = ( +/turf/simulated/floor/tiled/dark, +/area/surface/station/rnd/storage) +"Cd" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/research/east) +"Ce" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/zone_divider, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/anomaly) +"Cg" = ( +/turf/simulated/floor/plating, +/area/surface/station/construction/bmt/construction1) +"Ch" = ( +/obj/effect/map_effect/portal/line/side_b{ + dir = 1 + }, +/turf/simulated/mineral/floor/ignore_mapgen/sif, +/area/surface/cave/explored/deep) +"Ci" = ( +/obj/effect/floor_decal/industrial/warning/dust/corner{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 10 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor; + outdoors = 0 + }, +/area/surface/station/hallway/primary/bmt/south) +"Cj" = ( +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/disposal, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/drone_fabrication) +"Ck" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/storage/tech) +"Cl" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/research/east) +"Cm" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/engineering/hallway/bmt) +"Cn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/item/stack/tile/floor, +/turf/simulated/floor/plating, +/area/surface/station/hallway/primary/bmt/north) +"Co" = ( +/obj/machinery/status_display, +/turf/simulated/wall/r_wall, +/area/surface/outpost/research/xenoarcheology/analysis) +"Cp" = ( +/obj/structure/table/rack{ + layer = 2.6 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/mask/muzzle, +/turf/simulated/floor/tiled/dark, +/area/surface/station/medical/storage/second_storage) +"Cr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals_central5, +/turf/simulated/floor/tiled/old_tile/white, +/area/surface/station/medical/morgue) +"Cs" = ( +/obj/structure/sign/warning/nosmoking_2, +/turf/simulated/wall/r_wall, +/area/surface/outpost/research/xenoarcheology/exp_prep) +"Ct" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/research/xenoarcheology/longtermstorage) +"Cu" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/bar) +"Cw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/bordercorner{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/camera/network/research{ + c_tag = "SCI - Research Hallway Lower South"; + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/bmt) +"Cx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/zone_divider, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/anomaly) +"Cy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/anomaly) +"Cz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/medical/south) +"CA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance{ + req_one_access = list(5,12,47) + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/research/south) +"CB" = ( +/obj/structure/table/rack, +/obj/random/maintenance/medical, +/obj/random/maintenance/clean, +/obj/random/maintenance/security, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/medical/south) +"CC" = ( +/obj/structure/table/rack{ + layer = 2.6 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/window/northright{ + name = "Rig Suit"; + req_one_access = list(48) + }, +/obj/item/clothing/mask/breath, +/obj/item/weapon/rig/industrial/equipped, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/mining_main/storage) +"CD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/door/airlock/glass_external{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "incinerator_airlock_exterior"; + locked = 1; + name = "Mixing Room Exterior Airlock"; + req_one_access = list(12) + }, +/obj/machinery/access_button/airlock_exterior{ + dir = 1; + master_tag = "incinerator_access_control"; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/maintenance/incinerator) +"CE" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/obj/machinery/floodlight, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor; + outdoors = 0 + }, +/area/surface/station/mining_main/exterior) +"CF" = ( +/obj/effect/floor_decal/corner_steel_grid{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central4{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/bmt/weststairwell) +"CG" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/old_tile/white, +/area/surface/station/rnd/mixing) +"CH" = ( +/obj/structure/ladder/up, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/research/bmt) +"CI" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/surface/station/mining_main) +"CJ" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/button/remote/blast_door{ + id = "isoc"; + name = "Isolation Shutters"; + pixel_y = 24; + req_one_access = list(47) + }, +/obj/machinery/button/remote/blast_door{ + id = "ventisoc"; + name = "Isolation Room Vent"; + pixel_y = 36; + req_one_access = list(47) + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/surface/outpost/research/xenoarcheology/anomaly) +"CL" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/surface/station/medical/morgue) +"CM" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 4 + }, +/obj/effect/floor_decal/rust, +/obj/machinery/airlock_sensor/airlock_exterior{ + dir = 8; + id_tag = "tox_ug_airlock_ext_sensor"; + master_tag = "tox_ug_airlock"; + pixel_x = 31; + pixel_y = -34; + req_one_access = list(7) + }, +/obj/effect/map_helper/airlock/sensor/ext_sensor, +/turf/simulated/floor/plating/sif/planetuse{ + outdoors = 0 + }, +/area/surface/station/rnd/toxins_launch) +"CP" = ( +/obj/machinery/atmospherics/binary/dp_vent_pump/high_volume{ + dir = 1; + frequency = 1379; + id = "tox_airlock_pump" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/air_sensor{ + frequency = 1430; + id_tag = "toxins_mixing_interior"; + output = 63; + pixel_y = 18 + }, +/turf/simulated/floor/reinforced, +/area/surface/station/rnd/mixing) +"CR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 5 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/table/steel, +/obj/machinery/cell_charger, +/obj/random/powercell, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/smes) +"CT" = ( +/obj/effect/floor_decal/borderfloorwhite/corner, +/obj/effect/floor_decal/corner/purple/bordercorner, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology) +"CU" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/anomaly) +"CV" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/rnd/storage) +"CW" = ( +/obj/effect/decal/cleanable/cobweb2{ + icon_state = "cobweb1" + }, +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/tiled/dark, +/area/surface/station/hallway/primary/bmt/west) +"CX" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning/dust/corner{ + dir = 8 + }, +/obj/effect/floor_decal/rust, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor; + outdoors = 0 + }, +/area/surface/station/engineering/hallway/bmt) +"CY" = ( +/obj/structure/table, +/turf/simulated/floor/plating, +/area/surface/station/construction/genetics) +"CZ" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled/dark, +/area/surface/station/medical/hallway/bmt) +"Da" = ( +/obj/structure/sign/warning/engineering_access, +/turf/simulated/wall/r_wall, +/area/surface/station/engineering/hallway/bmt) +"Dc" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/hallway/primary/bmt/west/elevator) +"De" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_mining{ + name = "Production Area" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/mining_main/refinery) +"Df" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/station/hallway/primary/bmt/east) +"Dg" = ( +/obj/machinery/door/blast/regular{ + dir = 4; + id = "ventisoa"; + name = "Isolation Room Vent" + }, +/turf/simulated/floor/reinforced, +/area/surface/outpost/research/xenoarcheology/isolation_a) +"Dh" = ( +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/research/xenoarcheology/restroom) +"Di" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/west) +"Dj" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/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/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/surface/station/medical/morgue) +"Dk" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/rnd/hallway/bmt) +"Dl" = ( +/obj/structure/cable{ + 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 = 24 + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/research/east) +"Dm" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/medical{ + name = "Secondary Storage" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/medical/storage/second_storage) +"Dn" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/maintenance{ + name = "Medbay Maintenance Access"; + req_access = list(5) + }, +/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/steel_grid, +/area/surface/station/maintenance/substation/medbay/bmt) +"Do" = ( +/obj/structure/table/rack{ + layer = 2.6 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/entrance) +"Dp" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/yellow/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/yellow/bordercorner2, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/bmt) +"Dq" = ( +/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" + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/engineering{ + name = "Tech Storage"; + req_one_access = list(23) + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/storage/tech) +"Dr" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/structure/table/rack, +/obj/item/weapon/extinguisher, +/obj/item/clothing/head/hardhat/red, +/obj/item/clothing/mask/gas, +/obj/item/device/flashlight, +/obj/item/clothing/glasses/meson, +/obj/random/maintenance/clean, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/engineering/north) +"Ds" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/surface/outpost/research/xenoarcheology/anomaly) +"Dt" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/green/border, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/north) +"Du" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/anomaly) +"Dw" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/surface/station/construction/basement) +"Dx" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/engineering{ + name = "Medbay Substation Lower"; + req_one_access = list(5,11,24) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/medbay/bmt) +"Dy" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "biohazard"; + layer = 3.3; + name = "Biohazard Shutter" + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/maintenance/substation/research/bmt) +"Dz" = ( +/obj/structure/closet/wardrobe/genetics_white, +/turf/simulated/floor/tiled, +/area/surface/station/construction/genetics) +"DA" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/hallway/primary/bmt/west) +"DB" = ( +/obj/item/device/radio/beacon, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor; + outdoors = 0 + }, +/area/surface/station/rnd/test_area) +"DE" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/medical/south) +"DF" = ( +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/entrance) +"DH" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/bmt/eaststairwell) +"DI" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/mining) +"DJ" = ( +/obj/effect/zone_divider, +/turf/simulated/wall/r_wall, +/area/surface/outpost/research/xenoarcheology/anomaly) +"DK" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 1 + }, +/obj/machinery/vending/coffee, +/turf/simulated/floor/tiled/neutral, +/area/surface/outpost/research/xenoarcheology/entrance) +"DL" = ( +/obj/effect/floor_decal/rust, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "eng_ug_airlock_outer"; + locked = 1; + name = "Engineering External Access" + }, +/obj/effect/map_helper/airlock/door/ext_door, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/engineering/hallway/bmt) +"DM" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/west) +"DN" = ( +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24; + pixel_y = -12 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/station/rnd/storage) +"DO" = ( +/obj/structure/table/rack, +/obj/random/toolbox, +/obj/item/device/analyzer, +/obj/random/tech_supply, +/obj/random/cigarettes, +/obj/random/tool, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/research/east) +"DP" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/zone_divider, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/anomaly) +"DQ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/engineering/north) +"DR" = ( +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/storage/tech) +"DS" = ( +/obj/structure/table/rack, +/obj/item/weapon/circuitboard/cloning{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/item/weapon/circuitboard/clonescanner, +/obj/item/weapon/circuitboard/clonepod{ + pixel_x = 3; + pixel_y = -2 + }, +/obj/item/weapon/circuitboard/scan_consolenew{ + pixel_x = 6; + pixel_y = -4 + }, +/obj/item/weapon/circuitboard/med_data{ + pixel_x = 9; + pixel_y = -6 + }, +/turf/simulated/floor/plating, +/area/surface/station/storage/tech) +"DT" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/surface/station/maintenance/incinerator) +"DV" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/engineering/south) +"DX" = ( +/obj/effect/catwalk_plated/dark, +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/medbay/bmt) +"DZ" = ( +/obj/machinery/space_heater, +/obj/effect/zone_divider, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/engineering/south) +"Ea" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/mining_main) +"Eb" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/research/east) +"Ec" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology) +"Ee" = ( +/obj/machinery/optable{ + name = "Morgue Table" + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/item/device/radio/intercom/department/medbay{ + dir = 8; + pixel_x = 21 + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/surface/station/medical/morgue) +"Ef" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/mining_main/storage) +"Eg" = ( +/obj/machinery/door/firedoor/border_only, +/obj/effect/wingrille_spawn/reinforced_phoron, +/obj/structure/window/phoronreinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/rnd/mixing) +"Eh" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/engineering{ + name = "Research Substation"; + req_one_access = list(11,24,47) + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/research/bmt) +"Ei" = ( +/obj/effect/decal/cleanable/cobweb2{ + icon_state = "cobweb1" + }, +/obj/structure/ore_box, +/turf/simulated/floor/tiled/dark, +/area/surface/station/hallway/primary/bmt/south) +"Ej" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/mining_main/locker) +"Ek" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/green/bordercorner, +/obj/item/clothing/head/cone, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/station/hallway/primary/bmt/east) +"El" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor; + outdoors = 0 + }, +/area/surface/station/rnd/test_area) +"Em" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/glass{ + name = "Hallway" + }, +/turf/simulated/floor/plating, +/area/surface/station/hallway/primary/bmt/east) +"En" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/green/border, +/obj/machinery/door/firedoor/border_only, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/hallway/primary/bmt/north) +"Eo" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/cee, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/surface/station/rnd/mixing) +"Ep" = ( +/obj/effect/floor_decal/rust, +/obj/structure/cable/heavyduty{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor; + outdoors = 0 + }, +/area/surface/cave/explored/normal) +"Eq" = ( +/obj/structure/dispenser/oxygen, +/obj/structure/cable/cyan, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -12; + pixel_y = -24 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7, +/turf/simulated/floor/tiled, +/area/surface/outpost/research/xenoarcheology/exp_prep) +"Er" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/hallway/primary/bmt/north) +"Es" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/dust/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor; + outdoors = 0 + }, +/area/surface/outpost/research/xenoarcheology) +"Et" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/engineering/north) +"Ev" = ( +/obj/structure/closet/crate/nanotrasen, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/mining_main/storage) +"Ew" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/engineering/south) +"Ex" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/eaststairwell) +"Ey" = ( +/obj/machinery/pipedispenser, +/turf/simulated/floor/tiled/old_tile/gray, +/area/surface/station/rnd/mixing) +"Ez" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/surface/station/rnd/mixing) +"EA" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/maintenance/substation/medbay/bmt) +"EB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/catwalk_plated, +/obj/effect/floor_decal/rust, +/obj/structure/table/steel, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/maintenance/engineering, +/obj/random/maintenance/engineering, +/obj/item/weapon/storage/briefcase/inflatable, +/turf/simulated/floor/plating, +/area/surface/station/engineering/auxiliary_engineering) +"EC" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/red, +/obj/machinery/meter, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/auxiliary_engineering) +"ED" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor; + outdoors = 0 + }, +/area/surface/station/rnd/test_area) +"EE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/green/border, +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/north) +"EF" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 5 + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/surface/station/maintenance/incinerator) +"EG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/closet/secure_closet/miner, +/obj/item/clothing/shoes/boots/winter/mining, +/obj/item/clothing/suit/storage/hooded/wintercoat/miner, +/obj/item/clothing/head/hardhat/orange, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/mining_main/locker) +"EH" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "isoa"; + layer = 3.3; + name = "Isolation Shutter" + }, +/obj/effect/wingrille_spawn/reinforced, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/isolation_a) +"EJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/purple{ + dir = 5 + }, +/turf/simulated/wall/r_wall, +/area/surface/station/rnd/mixing) +"EK" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/eaststairwell) +"EL" = ( +/obj/structure/table/rack, +/obj/random/maintenance/cargo, +/obj/random/maintenance/cargo, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/mining) +"EM" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/research/east) +"EN" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/vault) +"EO" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor; + outdoors = 0 + }, +/area/surface/cave/explored/normal) +"EP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/maintenance{ + req_one_access = list(12) + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/engineering/north) +"EQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/maintenance{ + req_one_access = list(5,12,47) + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/research/south) +"ER" = ( +/obj/machinery/atmospherics/binary/passive_gate{ + icon_state = "on"; + unlocked = 1 + }, +/obj/machinery/airlock_sensor/airlock_interior{ + dir = 1; + id_tag = "main_ug_airlock_int_sensor"; + master_tag = "main_ug_airlock"; + pixel_x = 24; + pixel_y = -31 + }, +/obj/effect/catwalk_plated, +/obj/effect/floor_decal/industrial/warning/full, +/obj/effect/map_helper/airlock/sensor/int_sensor, +/turf/simulated/floor/plating, +/area/surface/station/hallway/primary/bmt/south) +"ES" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/green/bordercorner, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/station/hallway/primary/bmt/east) +"ET" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/techfloor{ + dir = 10 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1; + frequency = 1379; + id_tag = "min_ug_airlock_pump" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/mining_main) +"EU" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/construction/basement) +"EV" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/green/border, +/obj/machinery/light/small, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/north) +"EW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/green/border, +/obj/item/device/radio/intercom{ + pixel_y = -21 + }, +/obj/machinery/camera/network/basement{ + c_tag = "Basement - North Hallway 3"; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/north) +"EX" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/research/xenoarcheology/anomaly) +"EZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/effect/catwalk_plated/dark, +/obj/structure/closet/crate/science{ + dir = 1 + }, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/technology_scanner, +/obj/item/device/integrated_circuit_printer, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/research/south) +"Fc" = ( +/obj/item/weapon/storage/box/lights/tubes, +/turf/simulated/floor/plating, +/area/surface/station/construction/genetics) +"Fd" = ( +/obj/machinery/atmospherics/binary/passive_gate{ + dir = 4; + icon_state = "on"; + unlocked = 1 + }, +/obj/effect/catwalk_plated/white, +/obj/structure/sign/warning/cold{ + layer = 3.3; + pixel_y = -32 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/entrance) +"Fe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/binary/pump{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/cee, +/turf/simulated/floor/reinforced, +/area/surface/station/rnd/mixing) +"Ff" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/valve, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/engineering/north) +"Fg" = ( +/obj/machinery/conveyor_switch{ + id = "anolongstorage2"; + req_one_access = list(65) + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/research/xenoarcheology/longtermstorage) +"Fh" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/green/border, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/north) +"Fi" = ( +/obj/effect/floor_decal/techfloor{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1; + frequency = 1379; + id_tag = "min_ug_airlock_pump" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/mining_main) +"Fj" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/bmt) +"Fk" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden, +/turf/simulated/floor/tiled/dark, +/area/surface/station/engineering/hallway/bmt) +"Fl" = ( +/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/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/engineering{ + name = "Auxiliary Engineering Station"; + req_one_access = list(11,24) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/engineering/auxiliary_engineering) +"Fm" = ( +/obj/machinery/artifact_harvester, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/surface/outpost/research/xenoarcheology/isolation_b) +"Fn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/west/elevator) +"Fq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/bordercorner{ + dir = 1 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/station/hallway/primary/bmt/south) +"Fr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/surface/station/hallway/primary/bmt/west) +"Fs" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/rnd/hallway/bmt) +"Ft" = ( +/obj/structure/sign/warning/server_room, +/turf/simulated/wall/r_wall, +/area/surface/station/rnd/server) +"Fu" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor; + outdoors = 0 + }, +/area/surface/station/mining_main/exterior) +"Fw" = ( +/obj/machinery/ai_status_display, +/turf/simulated/wall, +/area/surface/station/maintenance/substation/medbay/bmt) +"FA" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "anolongstorage" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/exp_prep) +"FC" = ( +/obj/machinery/floodlight, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/camera/network/research_outpost{ + c_tag = "OPR - Expedition Prep" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/research/xenoarcheology/exp_prep) +"FD" = ( +/obj/structure/cable/yellow, +/obj/machinery/power/smes/buildable{ + RCon_tag = "Auxiliary - Main"; + charge = 1e+007; + cur_coils = 4; + input_level = 500000; + output_level = 500000 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/auxiliary_engineering) +"FE" = ( +/obj/structure/cable, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -12; + pixel_y = -24 + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/storage/emergency/bmtswest) +"FG" = ( +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "crglockdown"; + layer = 3.3; + name = "Cargo Lockdown" + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/turf/simulated/floor/plating, +/area/surface/station/mining_main) +"FH" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled, +/area/surface/station/rnd/storage) +"FI" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/maintenance{ + name = "Construction Area Access"; + req_one_access = list(12) + }, +/turf/simulated/floor/plating, +/area/surface/station/construction/bar) +"FJ" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/railing, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 16; + d2 = 0; + icon_state = "16-0" + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/weststairwell/bmt) +"FK" = ( +/obj/structure/closet/crate/nanotrasen, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/mining_main) +"FL" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/medical/hallway/bmt) +"FM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/west/elevator) +"FO" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/research/xenoarcheology/exp_prep) +"FP" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/south) +"FQ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/station/rnd/storage) +"FR" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/empty, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/engineering/auxiliary_engineering) +"FS" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/surface/station/medical/morgue) +"FT" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/medical/south) +"FV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor/border_only, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/hallway/primary/bmt/west/elevator) +"FX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/turf/simulated/floor/tiled, +/area/surface/station/mining_main) +"FY" = ( +/obj/structure/disposalpipe/segment, +/obj/item/clothing/shoes/boots/combat, +/obj/structure/closet/wardrobe/black, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/research/east) +"Gb" = ( +/obj/structure/closet/crate/nanotrasen, +/turf/simulated/floor/tiled/dark, +/area/surface/station/mining_main) +"Gc" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/north) +"Gd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/closet/emcloset, +/obj/structure/sign/warning/cold{ + layer = 3.3; + pixel_y = 32 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/rnd/hallway/bmt) +"Ge" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/surface/station/construction/basement) +"Gf" = ( +/obj/structure/closet/crate/science, +/obj/item/frame/apc, +/obj/item/weapon/module/power_control, +/turf/simulated/floor/plating, +/area/surface/station/construction/genetics) +"Gg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/surface/station/hallway/primary/bmt/west) +"Gh" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled/old_tile/white, +/area/surface/station/rnd/mixing) +"Gi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/mining_main) +"Gj" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/medical/south) +"Gk" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/phoronreinforced/full, +/obj/structure/grille, +/obj/machinery/ai_status_display, +/turf/simulated/floor/plating, +/area/surface/station/rnd/mixing) +"Gl" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/bmt) +"Gm" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/engineering/hallway/bmt) +"Gn" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/entrance) +"Go" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/surface/station/engineering/hallway/bmt) +"Gp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/yellow/bordercorner, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/bmt) +"Gq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/turf/simulated/floor/plating, +/area/surface/station/hallway/primary/bmt/east) +"Gr" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/structure/table/steel, +/obj/random/cigarettes, +/obj/random/maintenance/engineering, +/obj/random/maintenance/engineering, +/obj/random/maintenance/clean, +/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{ + dir = 4; + pixel_x = -24; + pixel_y = 12 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/drone_fabrication) +"Gs" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/access_button/airlock_exterior{ + dir = 4; + master_tag = "arc2_airlock"; + pixel_y = 35; + req_one_access = list(47) + }, +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "arc2_airlock_outer"; + locked = 1; + name = "Xenoarch External Access" + }, +/obj/effect/map_helper/airlock/door/ext_door, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/research/xenoarcheology) +"Gt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 8 + }, +/obj/machinery/atmospherics/portables_connector, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/turf/simulated/floor/tiled/techmaint, +/area/surface/outpost/research/xenoarcheology) +"Gu" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 8 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor; + outdoors = 0 + }, +/area/surface/station/engineering/reactor_room) +"Gv" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/bmt) +"Gx" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "garbage" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/incinerator) +"Gy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/engineering/north) +"Gz" = ( +/obj/effect/floor_decal/techfloor{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1379; + id_tag = "med_ug_airlock_pump" + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/machinery/camera/network/medbay{ + c_tag = "MED - Airlock Lower"; + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/medical/hallway/bmt) +"GB" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/west) +"GC" = ( +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/west) +"GD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/research/south) +"GE" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/dark, +/area/surface/station/vault) +"GF" = ( +/obj/effect/zone_divider, +/turf/simulated/wall/r_wall, +/area/surface/station/rnd/test_area) +"GG" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/medical/hallway/bmt) +"GH" = ( +/obj/structure/sign/warning/hot_exhaust, +/turf/simulated/wall, +/area/surface/station/maintenance/incinerator) +"GI" = ( +/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light, +/turf/simulated/floor/tiled/dark, +/area/surface/station/rnd/storage) +"GJ" = ( +/obj/structure/ladder/up, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/engineering/bmt) +"GK" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/maintenance{ + req_one_access = list(5,12,47) + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/eaststairwell) +"GL" = ( +/obj/structure/table/steel, +/obj/item/device/integrated_circuit_printer, +/turf/simulated/floor/plating, +/area/surface/station/storage/tech) +"GM" = ( +/obj/structure/table/steel, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/maintenance/engineering, +/turf/simulated/floor/tiled, +/area/surface/station/construction/basement) +"GN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/medical/west) +"GO" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "mining_internal" + }, +/turf/simulated/floor/plating, +/area/surface/station/mining_main/refinery) +"GP" = ( +/obj/machinery/portable_atmospherics/powered/pump/filled, +/turf/simulated/floor/tiled/dark, +/area/surface/station/hallway/primary/bmt/north) +"GQ" = ( +/turf/simulated/floor/plating, +/area/surface/station/medical/hallway/bmt) +"GR" = ( +/obj/machinery/atmospherics/pipe/manifold/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/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/medical/hallway/bmt) +"GT" = ( +/obj/machinery/floodlight, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/storage/emergency/bmtswest) +"GU" = ( +/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/cable{ + 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 = 24 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/station/hallway/primary/bmt/east) +"GV" = ( +/obj/random/crate, +/obj/random/contraband, +/obj/random/contraband, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/medical/south) +"GW" = ( +/obj/machinery/button/remote/airlock{ + dir = 4; + id = "reactor_ev"; + name = "Door Bolt Control"; + pixel_x = -24; + req_access = list(10); + specialfunctions = 4 + }, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning/dust/corner{ + dir = 8 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor; + outdoors = 0 + }, +/area/surface/station/engineering/reactor_room) +"Ha" = ( +/obj/machinery/r_n_d/server/core, +/turf/simulated/floor/bluegrid{ + nitrogen = 100; + oxygen = 0; + temperature = 73 + }, +/area/surface/station/rnd/server) +"Hb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/purple{ + dir = 10 + }, +/turf/simulated/wall/r_wall, +/area/surface/station/rnd/mixing) +"Hf" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/surface/outpost/research/xenoarcheology/anomaly) +"Hg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/catwalk_plated, +/obj/structure/table/steel, +/obj/machinery/cell_charger, +/turf/simulated/floor/plating, +/area/surface/station/engineering/auxiliary_engineering) +"Hi" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/wall, +/area/surface/station/maintenance/incinerator) +"Hj" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/hallway/primary/bmt/west) +"Hl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/medical/south) +"Hm" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_research{ + name = "Sample Preparation"; + req_one_access = list(65) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/research/xenoarcheology/analysis) +"Ho" = ( +/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/old_tile/gray, +/area/surface/station/mining_main/refinery) +"Hp" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/outpost/research/xenoarcheology/entrance) +"Hq" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/incineratormaint) +"Hr" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/red{ + dir = 8 + }, +/obj/machinery/meter, +/obj/effect/floor_decal/rust/mono_rusted2, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/auxiliary_engineering) +"Hs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/west/elevator) +"Ht" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/cable/heavyduty{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/bmt) +"Hu" = ( +/obj/machinery/camera/network/research{ + c_tag = "SCI - Toxins Test Chamber West"; + dir = 4; + network = list("Research","Toxins Test Area") + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor; + outdoors = 0 + }, +/area/surface/station/rnd/test_area) +"Hv" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/research{ + name = "Long Term Storage"; + req_one_access = list(65) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/research/xenoarcheology/longtermstorage) +"Hw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/valve{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/machinery/button/ignition{ + id = "mixingsparker"; + pixel_x = -34 + }, +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "mixvent"; + name = "Mixing Room Vent Control"; + pixel_x = -24; + req_one_access = list(7) + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/surface/station/rnd/mixing) +"Hx" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/analysis) +"Hy" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/station/rnd/storage) +"Hz" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/red, +/turf/simulated/floor/tiled/old_tile/white, +/area/surface/station/rnd/mixing) +"HA" = ( +/turf/simulated/wall, +/area/surface/station/construction/warehouse) +"HB" = ( +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "crglockdown"; + layer = 3.3; + name = "Cargo Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/mining_main) +"HC" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/structure/sign/warning/cold{ + layer = 3.3; + pixel_y = 32 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/outpost/research/xenoarcheology) +"HD" = ( +/obj/machinery/atmospherics/binary/passive_gate{ + dir = 1; + icon_state = "on"; + unlocked = 1 + }, +/obj/effect/floor_decal/industrial/warning/full, +/obj/effect/catwalk_plated, +/obj/machinery/airlock_sensor/airlock_interior{ + id_tag = "med_ug_airlock_int_sensor"; + master_tag = "med_ug_airlock"; + pixel_x = -35; + pixel_y = 31; + req_one_access = list(5) + }, +/obj/effect/map_helper/airlock/sensor/int_sensor, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 8 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/surface/station/medical/hallway/bmt) +"HE" = ( +/turf/simulated/mineral/sif, +/area/surface/cave/unexplored/normal) +"HG" = ( +/obj/effect/wingrille_spawn/reinforced, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor; + outdoors = 0 + }, +/area/surface/station/rnd/test_area) +"HH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/research/south) +"HL" = ( +/obj/effect/floor_decal/techfloor{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + frequency = 1379; + id_tag = "min_ug_airlock_pump" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + id_tag = "min_ug_airlock"; + pixel_y = 24 + }, +/obj/machinery/airlock_sensor{ + id_tag = "min_ug_airlock_sensor"; + pixel_x = -11; + pixel_y = 25 + }, +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/mining_main) +"HM" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/camera/network/research{ + c_tag = "SCI - Server Room"; + dir = 1 + }, +/obj/machinery/atmospherics/unary/freezer{ + dir = 1; + set_temperature = 73; + use_power = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/rnd/server) +"HN" = ( +/obj/item/frame/light, +/turf/simulated/floor/tiled, +/area/surface/station/construction/genetics) +"HO" = ( +/obj/machinery/recharge_station, +/obj/effect/floor_decal/techfloor/orange{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/engineering/drone_fabrication) +"HP" = ( +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor; + outdoors = 0 + }, +/area/surface/station/mining_main/exterior) +"HQ" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/wall/r_wall, +/area/surface/station/maintenance/weststairwell/bmt) +"HS" = ( +/obj/effect/decal/cleanable/cobweb2, +/obj/machinery/floodlight, +/turf/simulated/floor/tiled/dark, +/area/surface/station/hallway/primary/bmt/east) +"HT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/old_tile/gray, +/area/surface/station/maintenance/incinerator) +"HU" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/obj/machinery/access_button/airlock_interior{ + dir = 8; + master_tag = "arc2_airlock"; + pixel_y = 24; + req_one_access = list(47) + }, +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "arc2_airlock_inner"; + locked = 1; + name = "Xenoarch Internal Access" + }, +/obj/effect/map_helper/airlock/door/int_door, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/research/xenoarcheology) +"HV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/binary/pump{ + dir = 8 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/surface/station/maintenance/incinerator) +"HW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/station/hallway/primary/bmt/east) +"HX" = ( +/turf/simulated/wall, +/area/surface/station/medical/storage/second_storage) +"HY" = ( +/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/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/incineratormaint) +"Ia" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/mining_main/storage) +"Ib" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/west/elevator) +"Ic" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology) +"Ie" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/west) +"If" = ( +/obj/machinery/artifact_analyser, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/surface/outpost/research/xenoarcheology/isolation_c) +"Ig" = ( +/obj/structure/sign/warning/high_voltage, +/turf/simulated/wall/r_wall, +/area/surface/station/maintenance/substation/medbay/bmt) +"Ih" = ( +/obj/structure/disposalpipe/segment{ + 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/borderfloor, +/obj/effect/floor_decal/corner/paleblue/border, +/turf/simulated/floor/tiled, +/area/surface/station/medical/hallway/bmt) +"Ii" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/glass{ + name = "Hallway" + }, +/obj/structure/sign/directions/security{ + dir = 8; + pixel_y = 38 + }, +/obj/structure/sign/directions/engineering{ + dir = 8; + pixel_y = 32 + }, +/obj/structure/sign/directions/medical{ + dir = 8; + pixel_y = 26 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/hallway/primary/bmt/west) +"Il" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/techfloor{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/storage/tech) +"Im" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/engineering{ + name = "Engineering Substation"; + req_one_access = list(11,24) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/engineering/bmt) +"Io" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "mining_north" + }, +/obj/machinery/mineral/output, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/medical/west) +"Ip" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/bordercorner{ + dir = 1 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/station/hallway/primary/bmt/east) +"Is" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/extinguisher_cabinet{ + dir = 8; + pixel_x = -30 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/east) +"It" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/west) +"Iu" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/surface/station/maintenance/incinerator) +"Iv" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/station/hallway/primary/bmt/east) +"Iw" = ( +/obj/machinery/atmospherics/omni/atmos_filter{ + tag_east = 2; + tag_north = 6; + tag_west = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/smes) +"Ix" = ( +/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{ + dir = 10 + }, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/surface/station/engineering/auxiliary_engineering) +"Iy" = ( +/obj/structure/ladder/up, +/turf/simulated/floor/plating/sif/planetuse{ + icon_state = "asteroidplating2" + }, +/area/surface/cave/explored/normal) +"Iz" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/bmt) +"IA" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "anolongstorage2" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/longtermstorage) +"ID" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/vault) +"IE" = ( +/turf/simulated/floor/tiled, +/area/surface/station/mining_main) +"IG" = ( +/obj/structure/sign/warning/secure_area, +/turf/simulated/wall/r_wall, +/area/surface/station/storage/tech) +"II" = ( +/obj/structure/ore_box, +/turf/simulated/floor/tiled/dark, +/area/surface/station/hallway/primary/bmt/west) +"IK" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + 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/reinforced, +/area/surface/station/maintenance/incinerator) +"IL" = ( +/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/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/effect/catwalk_plated/dark, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/medbay/bmt) +"IM" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/mining_main) +"IN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/reinforced, +/area/surface/station/maintenance/incinerator) +"IO" = ( +/turf/simulated/floor/plating, +/area/surface/station/construction/bmt/construction5) +"IQ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/mining{ + name = "Mining" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/mining_main/locker) +"IR" = ( +/obj/structure/table/steel, +/obj/item/weapon/storage/box/cdeathalarm_kit, +/obj/item/bodybag/cryobag{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/bodybag/cryobag{ + pixel_x = 4; + pixel_y = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/medical/storage/second_storage) +"IT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/hallway/primary/bmt/west/elevator) +"IV" = ( +/turf/simulated/wall/r_wall, +/area/surface/cave/explored/normal) +"IX" = ( +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/purple/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology) +"IY" = ( +/obj/effect/zone_divider, +/turf/simulated/mineral/floor/ignore_mapgen/sif, +/area/surface/cave/explored/deep) +"IZ" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/west) +"Ja" = ( +/obj/machinery/door/firedoor/border_only, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/bmt) +"Jb" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/north) +"Jc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/tiled, +/area/surface/station/rnd/toxins_launch) +"Jd" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/table/steel, +/obj/item/weapon/storage/box/lights/mixed, +/obj/random/maintenance/engineering, +/obj/random/maintenance/cargo, +/obj/random/maintenance/clean, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/cargo/bmt) +"Je" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/research/xenoarcheology/isolation_b) +"Jg" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/rnd/storage) +"Jh" = ( +/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/zpipe/up/supply{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/disposalpipe/up{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 16; + d2 = 0; + icon_state = "16-0" + }, +/obj/structure/cable/green, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/cargo/bmt) +"Ji" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/west) +"Jk" = ( +/turf/simulated/mineral/floor/ignore_mapgen/sif{ + outdoors = 1 + }, +/area/surface/cave/explored/normal) +"Jm" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/closet/crate, +/obj/item/device/flashlight/color/red, +/obj/item/device/flashlight/color/red, +/obj/item/device/radio{ + frequency = 1485; + icon_state = "med_walkietalkie"; + name = "Medbay Emergency Radio Link"; + pixel_y = 4 + }, +/obj/item/device/radio{ + frequency = 1485; + icon_state = "med_walkietalkie"; + name = "Medbay Emergency Radio Link"; + pixel_y = 4 + }, +/obj/item/weapon/tool/crowbar/red, +/obj/item/weapon/tool/crowbar/red, +/obj/item/weapon/storage/box/lights/mixed, +/obj/item/device/radio/intercom/department/medbay{ + dir = 8; + pixel_x = 21 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/medical/storage/second_storage) +"Jn" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/station/construction/genetics) +"Jo" = ( +/obj/structure/table/rack, +/obj/item/weapon/storage/toolbox/electrical{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/device/multitool, +/obj/item/clothing/glasses/meson, +/turf/simulated/floor/plating, +/area/surface/station/storage/tech) +"Jp" = ( +/obj/machinery/door/firedoor/border_only, +/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" + }, +/obj/machinery/door/airlock/maintenance{ + req_one_access = list(5,12,47) + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/research/south) +"Jq" = ( +/obj/machinery/mineral/input, +/obj/effect/floor_decal/industrial/loading{ + dir = 8 + }, +/obj/effect/floor_decal/rust, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 21 + }, +/turf/simulated/floor/tiled/old_tile/yellow, +/area/surface/station/mining_main/refinery) +"Jr" = ( +/obj/machinery/atmospherics/pipe/tank/air, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/engineering/north) +"Js" = ( +/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/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/command{ + id_tag = null; + name = "Server Room"; + req_one_access = list(30) + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/rnd/server) +"Jt" = ( +/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/borderfloorwhite, +/obj/effect/floor_decal/corner/purple/border, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/bmt) +"Jv" = ( +/turf/simulated/floor/plating, +/area/surface/station/maintenance/security) +"Jy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/security) +"JA" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/research/east) +"JB" = ( +/obj/machinery/atmospherics/valve/shutoff{ + name = "Medical automatic shutoff valve" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/medical/south) +"JC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/analysis) +"JD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/station/medical/hallway/bmt) +"JE" = ( +/obj/structure/sign/science, +/turf/simulated/wall/r_wall, +/area/surface/station/rnd/toxins_launch) +"JF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/turf/simulated/wall/r_wall, +/area/surface/station/engineering/hallway/bmt) +"JG" = ( +/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/surface/station/maintenance/mining) +"JH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/bordercorner{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/sign/directions/cargo{ + dir = 8; + pixel_y = -26 + }, +/obj/structure/sign/directions/science{ + dir = 8; + pixel_y = -32 + }, +/obj/structure/sign/directions/elevator{ + dir = 8; + pixel_y = -38 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/north) +"JI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/bmt/eaststairwell) +"JJ" = ( +/obj/structure/table/rack{ + layer = 2.6 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/weapon/storage/box/syringegun, +/obj/item/weapon/gun/launcher/syringe, +/turf/simulated/floor/tiled/dark, +/area/surface/station/medical/storage/second_storage) +"JK" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/rnd/storage) +"JL" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/maintenance/substation/engineering/bmt) +"JM" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/techfloor, +/obj/item/weapon/circuitboard/crew{ + pixel_x = -8; + pixel_y = 3 + }, +/obj/item/weapon/circuitboard/card{ + pixel_x = -4 + }, +/obj/item/weapon/circuitboard/communications{ + pixel_y = -3 + }, +/obj/machinery/light/small, +/obj/machinery/camera/network/engineering{ + c_tag = "ENG - Secure Technical Storage"; + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/storage/tech) +"JN" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 8 + }, +/obj/machinery/camera/network/research{ + c_tag = "SCI - Research Hallway Lower North"; + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/bmt) +"JO" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/purple/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/rnd/toxins_launch) +"JR" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/monotile, +/area/surface/outpost/research/xenoarcheology/anomaly) +"JS" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/closet/hydrant{ + pixel_x = -32 + }, +/obj/item/clothing/glasses/meson, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/storage/emergency/bmtswest) +"JT" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/bordercorner{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/west) +"JU" = ( +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/west/elevator) +"JV" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/rnd/hallway/bmt) +"JW" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/cee{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/surface/station/maintenance/incinerator) +"JX" = ( +/obj/item/frame, +/turf/simulated/floor/tiled/white, +/area/surface/station/construction/genetics) +"JY" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/bar) +"JZ" = ( +/obj/machinery/door/blast/regular/open{ + id = "crglockdown"; + layer = 3.3; + name = "Cargo Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/cargo/bmt) +"Kb" = ( +/obj/turbolift_map_holder/cynosure/west, +/turf/unsimulated/mask, +/area/surface/station/hallway/primary/bmt/west/elevator) +"Kc" = ( +/obj/structure/stairs/spawner/south, +/turf/simulated/floor/tiled/dark, +/area/surface/station/medical/hallway/bmt) +"Kd" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/outpost/research/xenoarcheology/entrance) +"Ke" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/surface/station/mining_main/refinery) +"Kf" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 8 + }, +/obj/machinery/camera/network/basement{ + c_tag = "Basement - West Elevator Access"; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/west/elevator) +"Kg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/obj/structure/table/reinforced, +/obj/item/weapon/paper_bin, +/obj/item/weapon/folder/white, +/obj/item/weapon/pen, +/obj/item/device/camera, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/anomaly) +"Kh" = ( +/obj/machinery/atmospherics/pipe/manifold/visible, +/obj/machinery/meter, +/turf/simulated/floor/tiled/old_tile/gray, +/area/surface/station/rnd/mixing) +"Kj" = ( +/turf/simulated/mineral/floor/ignore_mapgen/sif, +/area/surface/cave/explored/normal) +"Kk" = ( +/obj/effect/floor_decal/rust, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/station/engineering/auxiliary_engineering) +"Kl" = ( +/turf/simulated/floor/plating, +/area/surface/station/construction/bar) +"Km" = ( +/obj/machinery/atmospherics/binary/passive_gate{ + dir = 1; + icon_state = "on"; + unlocked = 1 + }, +/obj/effect/catwalk_plated, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/surface/station/rnd/toxins_launch) +"Kn" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/station/mining_main) +"Ko" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/mining) +"Kp" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/portables_connector, +/obj/effect/floor_decal/rust, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/structure/railing/grey{ + dir = 4 + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/surface/station/mining_main) +"Kq" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/surface/station/rnd/hallway/bmt) +"Kr" = ( +/obj/structure/table/steel, +/obj/item/stack/flag/green{ + pixel_x = -4 + }, +/obj/item/stack/flag/red, +/obj/item/stack/flag/yellow{ + pixel_x = 4 + }, +/obj/item/stack/flag/blue{ + pixel_x = 7 + }, +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = 30 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/mining_main/locker) +"Kt" = ( +/obj/item/device/gps/mining{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/device/gps/mining, +/obj/item/device/gps/mining{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/structure/table/steel, +/turf/simulated/floor/tiled/dark, +/area/surface/station/mining_main/locker) +"Ku" = ( +/obj/machinery/vending/phoronresearch{ + dir = 8 + }, +/obj/effect/floor_decal/techfloor/orange{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/rnd/mixing) +"Kv" = ( +/obj/structure/sign/warning/high_voltage, +/turf/simulated/wall, +/area/surface/station/maintenance/engineering/south) +"Kw" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "mining_internal" + }, +/turf/simulated/floor/plating, +/area/surface/station/mining_main/refinery) +"Kx" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/computer/drone_control{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/drone_fabrication) +"Ky" = ( +/obj/structure/table/rack, +/obj/item/weapon/stock_parts/manipulator, +/obj/item/weapon/stock_parts/matter_bin{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/weapon/stock_parts/matter_bin, +/obj/item/weapon/stock_parts/capacitor{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/weapon/stock_parts/capacitor, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/station/storage/tech) +"Kz" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/station/hallway/primary/bmt/south) +"KA" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/west) +"KB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/north) +"KC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/eaststairwell) +"KD" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/research/south) +"KE" = ( +/turf/simulated/wall, +/area/surface/station/rnd/hallway/bmt) +"KF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/anomaly) +"KG" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/dust, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor; + outdoors = 0 + }, +/area/surface/outpost/research/xenoarcheology/longtermstorage) +"KH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 8 + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/surface/station/rnd/mixing) +"KJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 4 + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/surface/station/rnd/mixing) +"KK" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/station/mining_main/storage) +"KM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/brown/bordercorner, +/turf/simulated/floor/tiled, +/area/surface/station/mining_main) +"KN" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor; + outdoors = 0 + }, +/area/surface/station/mining_main/exterior) +"KO" = ( +/turf/simulated/wall, +/area/surface/station/construction/bar) +"KP" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/machinery/light/small, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/west) +"KQ" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "garbage" + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/incinerator) +"KR" = ( +/obj/structure/cable{ + 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 = 24 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 1 + }, +/obj/structure/closet/firecloset, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/west/elevator) +"KS" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_mining{ + name = "Production Area" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/mining_main/refinery) +"KT" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/hallway/primary/bmt/west/elevator) +"KU" = ( +/obj/machinery/conveyor_switch{ + id = "anolongstorage"; + req_one_access = list(65) + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = 30 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/research/xenoarcheology/exp_prep) +"KV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/hallway/primary/bmt/west/elevator) +"KW" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/bmt) +"KX" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/item/weapon/ore/lead{ + pixel_x = 7; + pixel_y = 2 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/hallway/primary/bmt/west) +"KZ" = ( +/turf/simulated/floor/plating, +/area/surface/station/construction/bmt/construction3) +"La" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 4 + }, +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/outpost/research/xenoarcheology) +"Lb" = ( +/obj/machinery/portable_atmospherics/canister/phoron, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/surface/outpost/research/xenoarcheology/anomaly) +"Le" = ( +/obj/structure/dispenser, +/obj/effect/floor_decal/techfloor/orange{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/rnd/mixing) +"Lf" = ( +/obj/item/device/radio/intercom{ + pixel_y = -21 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/plating, +/area/surface/station/storage/tech) +"Lg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/east) +"Lh" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/medical/west) +"Li" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/surface/outpost/research/xenoarcheology/anomaly) +"Lk" = ( +/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/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/mining) +"Ll" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/security) +"Ln" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/bmt) +"Lo" = ( +/obj/structure/table/steel, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/maintenance/engineering, +/turf/simulated/floor/tiled, +/area/surface/station/construction/basement) +"Lp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/exp_prep) +"Lq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/obj/structure/sign/warning/compressed_gas{ + pixel_x = 32 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/smes) +"Ls" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/yellow/border, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/obj/machinery/camera/network/engineering{ + c_tag = "ENG - Hallway Lower"; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/bmt) +"Lt" = ( +/obj/machinery/atmospherics/pipe/tank/air{ + start_pressure = 4559.63 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/research/east) +"Lu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/surface/station/rnd/toxins_launch) +"Lv" = ( +/obj/machinery/portable_atmospherics/powered/pump/filled, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/medical/south) +"Lw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/analysis) +"Lx" = ( +/obj/machinery/atmospherics/pipe/tank/air{ + dir = 8; + start_pressure = 4559.63 + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/surface/station/engineering/auxiliary_engineering) +"Ly" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/purple{ + dir = 8 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled/old_tile/white, +/area/surface/station/rnd/mixing) +"Lz" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/medical/south) +"LA" = ( +/obj/machinery/door/airlock/maintenance/engi{ + icon_state = "door_locked"; + id_tag = "elevator_med_access"; + locked = 1; + name = "Emergency Access NO ENTRY"; + req_one_access = list() + }, +/obj/machinery/button/remote/airlock{ + dir = 8; + id = "elevator_med_access"; + name = "Elevator Hatch Release"; + pixel_x = 24; + specialfunctions = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/medical/hallway/bmt) +"LB" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/research/east) +"LC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/entrance) +"LD" = ( +/obj/item/stack/tile/floor, +/turf/simulated/floor/plating, +/area/surface/station/construction/basement) +"LE" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/engineering/reactor_room) +"LF" = ( +/turf/simulated/wall, +/area/surface/station/maintenance/eaststairwell) +"LG" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/bmt) +"LH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 8 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/smes) +"LI" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_mining{ + name = "Mining Gear Storage" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/mining_main/storage) +"LK" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12 + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/surface/station/medical/morgue) +"LL" = ( +/obj/structure/table/rack{ + layer = 2.6 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/window/westleft{ + name = "Suit Storage"; + req_access = list(48) + }, +/obj/item/clothing/mask/breath, +/obj/random/multiple/voidsuit/mining, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/mining_main/storage) +"LO" = ( +/obj/machinery/mineral/output, +/obj/machinery/conveyor{ + dir = 1; + id = "mining_internal" + }, +/turf/simulated/floor/plating, +/area/surface/station/mining_main/refinery) +"LP" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 4 + }, +/obj/machinery/airlock_sensor/airlock_exterior{ + dir = 8; + id_tag = "min_ug_airlock_ext_sensor"; + master_tag = "min_ug_airlock"; + pixel_x = 31; + pixel_y = 35; + req_one_access = list(48) + }, +/obj/effect/map_helper/airlock/sensor/ext_sensor, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor; + outdoors = 0 + }, +/area/surface/station/mining_main) +"LQ" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/surface/station/mining_main) +"LR" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/surface/station/construction/basement) +"LS" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/hallway/primary/bmt/west) +"LT" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/obj/structure/table/steel_reinforced, +/obj/machinery/cell_charger, +/obj/item/weapon/cell/high, +/obj/item/weapon/cell/high{ + pixel_y = -4 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor; + outdoors = 0 + }, +/area/surface/station/mining_main/exterior) +"LU" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/research{ + name = "Toxins Storage"; + req_one_access = list(8) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/rnd/storage) +"LV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -24; + pixel_y = 12 + }, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/incinerator) +"LX" = ( +/obj/effect/floor_decal/industrial/warning/dust/corner{ + dir = 1 + }, +/obj/effect/floor_decal/rust, +/obj/structure/cable/heavyduty{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor; + outdoors = 0 + }, +/area/surface/cave/explored/normal) +"LY" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/maintenance{ + name = "Disposal Access"; + req_one_access = list(12) + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/incinerator) +"LZ" = ( +/obj/machinery/atmospherics/pipe/tank/air{ + dir = 8; + start_pressure = 4559.63 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/surface/station/engineering/auxiliary_engineering) +"Mb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/west/elevator) +"Mc" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/mining_main/storage) +"Md" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -24; + pixel_y = 12 + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/medical/west) +"Me" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/engineering/north) +"Mf" = ( +/obj/machinery/atmospherics/omni/atmos_filter{ + tag_east = 2; + tag_north = 7; + tag_west = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/smes) +"Mg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/obj/effect/catwalk_plated, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/surface/station/medical/hallway/bmt) +"Mi" = ( +/obj/item/clothing/head/cone, +/turf/simulated/mineral/floor/ignore_mapgen/sif, +/area/surface/cave/explored/normal) +"Mj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/bmt) +"Mk" = ( +/turf/simulated/wall, +/area/surface/station/maintenance/engineering/south) +"Ml" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/green/border, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/north) +"Mm" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/station/hallway/primary/bmt/east) +"Mn" = ( +/turf/simulated/floor/tiled/white, +/area/surface/station/construction/genetics) +"Mo" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/station/rnd/storage) +"Mp" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/engineering{ + name = "Construction Area"; + req_one_access = list(32) + }, +/turf/simulated/floor/plating, +/area/surface/station/construction/basement) +"Mq" = ( +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating/sif/planetuse{ + icon_state = "asteroidplating2"; + outdoors = 0 + }, +/area/surface/station/rnd/test_area) +"Mr" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/purple/border, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/closet/secure_closet/xenoarchaeologist, +/obj/item/clothing/suit/storage/hooded/wintercoat/science, +/turf/simulated/floor/tiled/neutral, +/area/surface/outpost/research/xenoarcheology/entrance) +"Ms" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/outpost/research/xenoarcheology/entrance) +"Mt" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/glass{ + name = "Hallway" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/hallway/primary/bmt/west/elevator) +"Mu" = ( +/turf/simulated/floor/plating, +/area/surface/station/maintenance/medical/south) +"Mv" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/construction/warehouse) +"Mw" = ( +/obj/machinery/conveyor_switch{ + id = "anolongstorage2"; + req_one_access = list(65) + }, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/dust, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor; + outdoors = 0 + }, +/area/surface/outpost/research/xenoarcheology/longtermstorage) +"Mx" = ( +/turf/simulated/floor/tiled/old_tile/white, +/area/surface/station/rnd/mixing) +"My" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 6 + }, +/obj/effect/zone_divider, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor; + outdoors = 0 + }, +/area/surface/station/rnd/test_area) +"Mz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/station/hallway/primary/bmt/east) +"MB" = ( +/obj/structure/disposalpipe/segment{ + 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/borderfloor, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/item/device/radio/intercom{ + pixel_y = -21 + }, +/turf/simulated/floor/tiled, +/area/surface/station/medical/hallway/bmt) +"MC" = ( +/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/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/maintenance{ + req_one_access = list(12) + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/storage/emergency/bmtseast) +"MD" = ( +/obj/machinery/artifact_analyser, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/surface/outpost/research/xenoarcheology/isolation_a) +"ME" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/effect/catwalk_plated/dark, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/storage/emergency/bmtseast) +"MF" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/closet/crate/large/nanotrasen, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/research/east) +"MG" = ( +/obj/structure/cable/cyan{ + 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/neutral, +/area/surface/outpost/research/xenoarcheology/entrance) +"MH" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/west/elevator) +"MJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/storage/emergency/bmtswest) +"MK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/east) +"ML" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "anolongstorage" + }, +/obj/structure/plasticflaps/mining, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/exp_prep) +"MM" = ( +/turf/simulated/floor/tiled, +/area/surface/station/construction/genetics) +"MN" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/green/border, +/obj/machinery/camera/network/basement{ + c_tag = "Basement - East Hallway 3"; + dir = 1 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/station/hallway/primary/bmt/east) +"MO" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/wall, +/area/surface/station/mining_main/refinery) +"MP" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/purple/border, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/bmt) +"MQ" = ( +/obj/structure/table/standard, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/recharger, +/obj/item/device/camera_film, +/obj/item/device/camera, +/obj/item/weapon/tape_roll, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/outpost/research/xenoarcheology/entrance) +"MR" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/structure/sign/directions/evac{ + dir = 8; + pixel_y = 32 + }, +/obj/structure/sign/directions/cryo{ + dir = 8; + pixel_y = 26 + }, +/obj/structure/sign/directions/command{ + dir = 8; + pixel_y = 38 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/west) +"MV" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology) +"MW" = ( +/obj/machinery/status_display, +/turf/simulated/wall/r_wall, +/area/surface/station/maintenance/substation/cargo/bmt) +"MX" = ( +/obj/structure/closet/secure_closet/miner, +/obj/item/clothing/shoes/boots/winter/mining, +/obj/item/clothing/suit/storage/hooded/wintercoat/miner, +/obj/item/clothing/head/hardhat/orange, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -21 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/mining_main/locker) +"MY" = ( +/obj/structure/closet/crate, +/obj/item/weapon/coin/gold{ + pixel_x = -6; + pixel_y = -4 + }, +/obj/item/weapon/coin/gold{ + pixel_x = -4; + pixel_y = -3 + }, +/obj/item/weapon/coin/gold{ + pixel_x = -2; + pixel_y = -4 + }, +/obj/item/weapon/coin/gold{ + pixel_y = -3 + }, +/obj/item/weapon/coin/gold{ + pixel_x = 3; + pixel_y = -4 + }, +/obj/item/weapon/coin/gold{ + pixel_x = 4 + }, +/obj/item/weapon/coin/gold{ + pixel_x = -4 + }, +/obj/item/weapon/coin/gold, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/surface/station/vault) +"MZ" = ( +/obj/effect/floor_decal/rust, +/obj/structure/extinguisher_cabinet{ + dir = 8; + pixel_x = -30 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/station/engineering/auxiliary_engineering) +"Na" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/engineering/hallway/bmt) +"Nb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/research/south) +"Nc" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/green/bordercorner, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/south) +"Nd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/airlock_sensor/airlock_interior{ + dir = 8; + id_tag = "arc2_airlock_int_sensor"; + master_tag = "arc2_airlock"; + pixel_x = 31; + pixel_y = 35; + req_one_access = list(47) + }, +/obj/effect/map_helper/airlock/sensor/int_sensor, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology) +"Ne" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/security) +"Nh" = ( +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/smes) +"Ni" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "crglockdown"; + layer = 3.3; + name = "Cargo Lockdown" + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/mining_main/locker) +"Nj" = ( +/turf/unsimulated/mask, +/area/surface/station/hallway/primary/bmt/west/elevator) +"Nk" = ( +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/research/xenoarcheology/longtermstorage) +"Nl" = ( +/obj/structure/sign/redcross{ + desc = "The Star of Life, a symbol of Medical Aid."; + icon_state = "lifestar" + }, +/turf/simulated/wall/r_wall, +/area/surface/station/medical/hallway/bmt) +"Nn" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/vault) +"No" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/table/steel_reinforced, +/obj/machinery/recharger, +/obj/effect/floor_decal/steeldecal/steel_decals_central5, +/turf/simulated/floor/tiled, +/area/surface/station/mining_main/storage) +"Np" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/empty, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/engineering/auxiliary_engineering) +"Nq" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/drone_fabrication) +"Nr" = ( +/turf/simulated/floor/plating, +/area/surface/station/engineering/drone_fabrication) +"Nt" = ( +/turf/unsimulated/mask, +/area/surface/station/engineering/hallway/bmt) +"Nu" = ( +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor; + outdoors = 0 + }, +/area/surface/station/rnd/test_area) +"Nv" = ( +/turf/simulated/floor/plating, +/area/surface/station/maintenance/mining) +"Nw" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/bar) +"Nx" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/closet/hydrant{ + pixel_x = -32 + }, +/obj/item/clothing/glasses/meson, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/research/east) +"Ny" = ( +/obj/machinery/atmospherics/pipe/tank/air, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/engineering/north) +"Nz" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/structure/sign/directions/cargo/mining{ + dir = 8; + pixel_y = -32 + }, +/obj/structure/sign/directions/dorms{ + dir = 8; + pixel_y = -26 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/west) +"NA" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "garbage" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/incinerator) +"NB" = ( +/obj/structure/closet/crate/nanotrasen, +/obj/item/weapon/weldpack, +/obj/item/stack/nanopaste, +/obj/item/stack/nanopaste, +/obj/item/stack/nanopaste, +/obj/item/weapon/reagent_containers/glass/bucket, +/obj/effect/floor_decal/borderfloorwhite/corner, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/floor_decal/corner/beige/bordercorner, +/obj/machinery/light, +/obj/machinery/camera/network/research_outpost{ + c_tag = "OPR - Sample Preparation"; + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/analysis) +"ND" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/construction/bmt/construction4) +"NE" = ( +/obj/structure/morgue{ + dir = 2 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/surface/station/medical/morgue) +"NF" = ( +/obj/effect/floor_decal/industrial/warning/dust, +/obj/machinery/conveyor_switch{ + id = "mining_external" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor; + outdoors = 0 + }, +/area/surface/station/mining_main/exterior) +"NG" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "mining_external" + }, +/turf/simulated/floor/plating/sif/planetuse{ + icon_state = "asteroidplating2"; + outdoors = 0 + }, +/area/surface/station/mining_main/exterior) +"NH" = ( +/obj/machinery/atmospherics/pipe/tank/oxygen{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/surface/station/maintenance/incinerator) +"NI" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/box/glasses/square, +/obj/item/weapon/hand_labeler, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 1 + }, +/obj/machinery/requests_console{ + department = "Science"; + departmentType = 2; + name = "Science RC"; + pixel_y = 24 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/outpost/research/xenoarcheology/entrance) +"NJ" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/bmt) +"NK" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/analysis) +"NM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/security) +"NN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/tvalve/bypass{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + dir = 4; + id_tag = "tox_airlock_control"; + pixel_x = -22; + tag_airpump = "tox_airlock_pump"; + tag_chamber_sensor = "tox_airlock_sensor"; + tag_exterior_door = "tox_airlock_exterior"; + tag_interior_door = "tox_airlock_interior" + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/surface/station/rnd/mixing) +"NP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/mining_main) +"NQ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/purple{ + dir = 4 + }, +/obj/structure/table/steel, +/obj/item/weapon/storage/toolbox/mechanical, +/turf/simulated/floor/tiled/old_tile/white, +/area/surface/station/rnd/mixing) +"NR" = ( +/turf/simulated/wall/solidrock, +/area/surface/cave/explored/deep) +"NS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/analysis) +"NT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/security) +"NV" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/bordercorner{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -21 + }, +/turf/simulated/floor/tiled, +/area/surface/station/mining_main) +"NW" = ( +/obj/effect/floor_decal/techfloor{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4; + frequency = 1379; + id_tag = "sci_ug_airlock_pump" + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/machinery/airlock_sensor{ + dir = 4; + id_tag = "sci_ug_airlock_sensor"; + pixel_x = -25; + pixel_y = -11 + }, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + dir = 4; + id_tag = "sci_ug_airlock"; + pixel_x = -24 + }, +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/rnd/hallway/bmt) +"NY" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/mining_main/refinery) +"Oa" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/surface/station/medical/morgue) +"Ob" = ( +/obj/structure/ore_box, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -21 + }, +/obj/machinery/camera/network/mining{ + c_tag = "CRG - Mining Gear Storage"; + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/station/mining_main/storage) +"Oc" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/machinery/atmospherics/valve{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/powered/scrubber, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/incineratormaint) +"Od" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/bordercorner{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/west) +"Oe" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/engineering/north) +"Of" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/obj/structure/cable/heavyduty{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/rnd/hallway/bmt) +"Og" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/surface/station/mining_main/refinery) +"Oh" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark, +/area/surface/station/hallway/primary/bmt/west) +"Oi" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology) +"Oj" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/effect/catwalk_plated/dark, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24; + pixel_y = -12 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/engineering/south) +"Ok" = ( +/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/structure/disposalpipe/segment, +/obj/machinery/door/airlock/engineering{ + name = "Engineering Substation"; + req_one_access = list(11,24) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/maintenance/substation/engineering/bmt) +"Ol" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning/dust/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor; + outdoors = 0 + }, +/area/surface/cave/explored/normal) +"Om" = ( +/obj/machinery/atmospherics/unary/vent_scrubber{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/camera/network/research_outpost{ + c_tag = "OPR - Isolation Cell B"; + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/surface/outpost/research/xenoarcheology/isolation_b) +"On" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/auxiliary_engineering) +"Oo" = ( +/obj/machinery/door/firedoor/border_only, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/eaststairwell) +"Op" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/research/south) +"Oq" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/obj/effect/catwalk_plated, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/surface/station/engineering/auxiliary_engineering) +"Or" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite/corner, +/obj/effect/floor_decal/corner/purple/bordercorner, +/obj/structure/sign/directions/science/xenoarch{ + dir = 1; + pixel_x = 32 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/bmt) +"Os" = ( +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor; + outdoors = 0 + }, +/area/surface/station/rnd/test_area) +"Ot" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 9 + }, +/obj/machinery/camera/network/basement{ + c_tag = "Basement - North Hallway 1"; + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/north) +"Ou" = ( +/obj/structure/closet/hydrant{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/smes) +"Ov" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/station/rnd/storage) +"Ow" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 5 + }, +/obj/machinery/meter, +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/incineratormaint) +"Oy" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/anomaly_container, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/smes) +"Oz" = ( +/turf/simulated/floor/tiled/monotile, +/area/surface/station/mining_main/storage) +"OA" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/wall, +/area/surface/station/maintenance/research/east) +"OB" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/engineering/south) +"OC" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/green{ + d1 = 16; + d2 = 0; + icon_state = "16-0" + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/zpipe/up/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/up{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/engineering/bmt) +"OD" = ( +/obj/structure/table/steel, +/obj/item/clothing/suit/radiation, +/obj/item/clothing/head/radiation, +/obj/random/medical, +/turf/simulated/floor/tiled/dark, +/area/surface/station/medical/storage/second_storage) +"OE" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/purple, +/turf/simulated/wall/r_wall, +/area/surface/station/rnd/mixing) +"OF" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/purple/border, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/research/xenoarcheology/exp_prep) +"OG" = ( +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/bed/chair/wheelchair, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24; + pixel_y = -12 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/medical/storage/second_storage) +"OH" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/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 + }, +/turf/simulated/floor/tiled, +/area/surface/station/mining_main/locker) +"OI" = ( +/obj/random/crate{ + dir = 8 + }, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/random/maintenance/cargo, +/obj/random/maintenance/cargo, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/bar) +"OJ" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/anomaly) +"OK" = ( +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology) +"OL" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/west) +"OM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/mining_main) +"ON" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/storage/tech) +"OO" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/catwalk_plated/white, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/entrance) +"OQ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/machinery/computer/cryopod/robot{ + pixel_x = 32 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/drone_fabrication) +"OS" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/glass{ + name = "Hallway" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/hallway/primary/bmt/north) +"OT" = ( +/obj/machinery/atmospherics/unary/freezer{ + dir = 1 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techmaint, +/area/surface/outpost/research/xenoarcheology/anomaly) +"OU" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/research/xenoarcheology) +"OV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/drone_fabrication) +"OW" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/old_tile/gray, +/area/surface/station/mining_main/refinery) +"OY" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 8 + }, +/obj/effect/floor_decal/rust, +/obj/machinery/airlock_sensor/airlock_exterior{ + dir = 4; + id_tag = "eng_ug_airlock_ext_sensor"; + master_tag = "eng_ug_airlock"; + pixel_x = -31; + pixel_y = -35; + req_one_access = list(11,24) + }, +/obj/effect/map_helper/airlock/sensor/ext_sensor, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor; + outdoors = 0 + }, +/area/surface/station/engineering/hallway/bmt) +"OZ" = ( +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -24; + pixel_y = 12 + }, +/obj/structure/table/steel, +/obj/item/weapon/mining_scanner{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/mining_scanner, +/obj/item/weapon/mining_scanner{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/obj/machinery/camera/network/mining{ + c_tag = "CRG - Mining Locker Room"; + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/mining_main/locker) +"Pa" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24; + pixel_y = -12 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/effect/catwalk_plated/dark, +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/eaststairwell) +"Pb" = ( +/turf/simulated/floor/tiled, +/area/surface/station/construction/basement) +"Pd" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + external_pressure_bound = 140; + external_pressure_bound_default = 140 + }, +/turf/simulated/floor/plating/sif/planetuse{ + icon_state = "asteroidplating2"; + outdoors = 0 + }, +/area/surface/station/maintenance/incinerator) +"Pe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/security) +"Pf" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/engineering/drone_fabrication) +"Pg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 1 + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/incineratormaint) +"Ph" = ( +/turf/simulated/floor/tiled/dark, +/area/surface/station/medical/hallway/bmt) +"Pi" = ( +/obj/structure/table/steel, +/obj/machinery/cell_charger, +/obj/item/device/multitool, +/obj/item/weapon/cell/high, +/obj/item/stack/cable_coil{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/stack/cable_coil, +/turf/simulated/floor/plating, +/area/surface/station/storage/tech) +"Pj" = ( +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/machinery/light_switch{ + pixel_x = 12; + pixel_y = 24 + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/research/bmt) +"Pk" = ( +/obj/structure/ladder/up, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/storage/emergency/bmtswest) +"Pl" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 5 + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/surface/outpost/research/xenoarcheology/anomaly) +"Pm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/vault) +"Pn" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/bar) +"Po" = ( +/obj/machinery/atmospherics/trinary/mixer{ + dir = 1 + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/surface/station/maintenance/incinerator) +"Pp" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/research/xenoarcheology/exp_prep) +"Pq" = ( +/obj/structure/disposalpipe/broken{ + dir = 4 + }, +/obj/effect/zone_divider, +/turf/simulated/floor/plating/sif/planetuse{ + icon_state = "asteroidplating2"; + outdoors = 0 + }, +/area/surface/station/rnd/test_area) +"Ps" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/medical/south) +"Pt" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/hallway/primary/bmt/west/elevator) +"Pu" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/bmt) +"Pv" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/machinery/camera/network/basement{ + c_tag = "Basement - West Hallway 1"; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/west) +"Pw" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/medical/west) +"Py" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ + dir = 8 + }, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/smes) +"Pz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/wall, +/area/surface/station/maintenance/research/east) +"PA" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/valve/shutoff{ + name = "Cargo automatic shutoff valve" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/mining) +"PB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/research/south) +"PC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/mining) +"PD" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -24; + pixel_y = 12 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/station/hallway/primary/bmt/south) +"PE" = ( +/obj/machinery/doppler_array{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 8 + }, +/obj/machinery/status_display{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled, +/area/surface/station/rnd/toxins_launch) +"PF" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/research{ + name = "Research Division Access"; + req_one_access = list(47) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/rnd/hallway/bmt) +"PH" = ( +/obj/machinery/power/smes/buildable/outpost_substation{ + RCon_tag = "Outpost - Xenoarch"; + charge = 5e+006; + input_attempt = 1; + input_level = 150000; + output_level = 150000 + }, +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/smes) +"PJ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + id_tag = "arc2_airlock"; + pixel_y = 24 + }, +/obj/machinery/airlock_sensor{ + id_tag = "arc2_airlock_sensor"; + pixel_x = -11; + pixel_y = 25 + }, +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/obj/machinery/camera/network/research_outpost{ + c_tag = "OPR - Xenoarch Airlock East" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/outpost/research/xenoarcheology) +"PL" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + id = "biohazard"; + layer = 3.3; + name = "Biohazard Shutter" + }, +/turf/simulated/floor/plating, +/area/surface/station/rnd/toxins_launch) +"PN" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet{ + dir = 1; + pixel_y = 30 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/west) +"PO" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology) +"PP" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1379; + id_tag = "eng_ug_airlock_pump" + }, +/obj/effect/floor_decal/techfloor{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/structure/sign/warning/cold{ + layer = 3.3; + pixel_y = 32 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/engineering/hallway/bmt) +"PQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/mining) +"PR" = ( +/obj/structure/plasticflaps/mining, +/obj/machinery/mineral/output, +/obj/machinery/conveyor{ + dir = 4; + id = "mining_internal" + }, +/turf/simulated/floor/plating, +/area/surface/station/mining_main/refinery) +"PS" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/purple/border, +/obj/structure/closet/medical_wall{ + pixel_y = -32 + }, +/obj/item/roller, +/obj/item/bodybag/cryobag, +/obj/item/weapon/storage/firstaid, +/obj/item/weapon/storage/pill_bottle/spaceacillin, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology) +"PT" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/station/hallway/primary/bmt/east) +"PU" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology) +"PV" = ( +/obj/structure/cable, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/storage/tech) +"PW" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/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/industrial/warning{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/bmt) +"PY" = ( +/obj/structure/cable/cyan{ + 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_decals_central5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/entrance) +"Qa" = ( +/obj/structure/closet/l3closet/medical, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -21 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/medical/storage/second_storage) +"Qb" = ( +/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/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/east) +"Qc" = ( +/obj/structure/table/rack, +/obj/item/weapon/circuitboard/powermonitor{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/item/weapon/circuitboard/stationalert_engineering{ + pixel_x = -1; + pixel_y = -1 + }, +/obj/item/weapon/circuitboard/security/engineering{ + pixel_x = 2; + pixel_y = -2 + }, +/obj/item/weapon/circuitboard/atmos_alert{ + pixel_x = 4; + pixel_y = -5 + }, +/turf/simulated/floor/plating, +/area/surface/station/storage/tech) +"Qd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/west) +"Qe" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/tiled/old_tile/white, +/area/surface/station/rnd/mixing) +"Qf" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/station/mining_main) +"Qg" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/eaststairwell) +"Qh" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/table/rack{ + layer = 2.6 + }, +/obj/machinery/door/window/northleft{ + name = "EVA Suits" + }, +/obj/item/weapon/storage/belt/archaeology, +/obj/item/clothing/suit/space/anomaly, +/obj/item/clothing/head/helmet/space/anomaly, +/obj/effect/floor_decal/spline/plain{ + dir = 9 + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/surface/outpost/research/xenoarcheology/exp_prep) +"Qi" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 10 + }, +/turf/simulated/floor/reinforced/airless{ + name = "reinforced floor" + }, +/area/surface/station/rnd/mixing) +"Ql" = ( +/obj/machinery/ai_status_display, +/turf/simulated/wall/r_wall, +/area/surface/outpost/research/xenoarcheology/analysis) +"Qo" = ( +/obj/structure/sign/warning/fire, +/turf/simulated/wall/r_wall, +/area/surface/station/rnd/mixing) +"Qp" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/maintenance{ + req_one_access = list(5,12,47) + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/research/east) +"Qq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/meter, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/research/south) +"Qr" = ( +/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_one_access = list(7) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/rnd/mixing) +"Qs" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "isoc"; + layer = 3.3; + name = "Isolation Shutter" + }, +/obj/effect/wingrille_spawn/reinforced, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/isolation_c) +"Qt" = ( +/obj/structure/loot_pile/maint/technical, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/research/east) +"Qu" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/analysis) +"Qv" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1379; + id_tag = "eng_ug_airlock_pump" + }, +/obj/effect/floor_decal/techfloor{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/machinery/light/small, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/engineering/hallway/bmt) +"Qw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/research/xenoarcheology/longtermstorage) +"Qx" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/anomaly) +"Qy" = ( +/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/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/vault/bolted, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/vault) +"Qz" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/east) +"QA" = ( +/obj/structure/loot_pile/maint/technical, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/engineering/south) +"QB" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/zpipe/up/supply{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 16; + d2 = 0; + icon_state = "16-0" + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/engineering/north) +"QC" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/incineratormaint) +"QD" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/surface/station/hallway/primary/bmt/north) +"QE" = ( +/obj/machinery/atmospherics/omni/mixer{ + tag_east = 2; + tag_north = 1; + tag_north_con = 0.5; + tag_west = 1; + tag_west_con = 0.5 + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/surface/station/rnd/mixing) +"QF" = ( +/obj/structure/closet/excavation, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/research/xenoarcheology/exp_prep) +"QG" = ( +/turf/unsimulated/mask, +/area/surface/station/medical/hallway/bmt) +"QH" = ( +/obj/structure/cable/green, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24; + pixel_y = -12 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/rnd/toxins_launch) +"QI" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/item/device/radio/intercom/department/medbay{ + dir = 8; + pixel_x = 21 + }, +/turf/simulated/floor/tiled, +/area/surface/station/medical/hallway/bmt) +"QJ" = ( +/turf/simulated/floor/plating, +/area/surface/station/construction/bmt/construction2) +"QK" = ( +/obj/structure/table/steel, +/obj/machinery/light{ + dir = 4 + }, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/maintenance/engineering, +/turf/simulated/floor/tiled, +/area/surface/station/construction/basement) +"QM" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled, +/area/surface/station/medical/hallway/bmt) +"QN" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/machinery/floodlight, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/cargo/bmt) +"QO" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/bar) +"QP" = ( +/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" + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/bar) +"QQ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/medical/south) +"QR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/research/east) +"QS" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/turf/simulated/floor/tiled/dark, +/area/surface/station/rnd/storage) +"QT" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/mining_main/storage) +"QU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/wall/r_wall, +/area/surface/station/mining_main/locker) +"QV" = ( +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/floor_decal/industrial/warning/full, +/obj/machinery/power/emitter{ + anchored = 1; + dir = 8; + id = null; + state = 2 + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/surface/outpost/research/xenoarcheology/anomaly) +"QW" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning/dust/corner{ + dir = 4 + }, +/obj/effect/floor_decal/rust, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor; + outdoors = 0 + }, +/area/surface/outpost/research/xenoarcheology/entrance) +"QX" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/maintenance{ + req_one_access = list(12) + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/engineering/north) +"QY" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/engineering/north) +"QZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/green/bordercorner, +/obj/item/clothing/head/cone, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/station/hallway/primary/bmt/east) +"Rb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/floor_decal/industrial/warning, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/station/hallway/primary/bmt/south) +"Rc" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating/sif/planetuse{ + icon_state = "asteroidplating2"; + outdoors = 0 + }, +/area/surface/station/mining_main/exterior) +"Rf" = ( +/turf/simulated/wall, +/area/surface/station/mining_main/storage) +"Rg" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/station/storage/tech) +"Rh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/east) +"Ri" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/medical/hallway/bmt) +"Rj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/obj/machinery/meter, +/obj/structure/closet/crate/science{ + dir = 1 + }, +/obj/random/bomb_supply, +/obj/random/bomb_supply, +/obj/random/bomb_supply, +/obj/random/tech_supply, +/obj/random/technology_scanner, +/obj/random/tool, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/research/south) +"Rk" = ( +/obj/machinery/atmospherics/binary/passive_gate{ + dir = 1; + icon_state = "on"; + unlocked = 1 + }, +/obj/machinery/airlock_sensor/airlock_interior{ + id_tag = "sci_ug_airlock_int_sensor"; + master_tag = "sci_ug_airlock"; + pixel_x = -35; + pixel_y = 31; + req_one_access = list(47) + }, +/obj/effect/map_helper/airlock/sensor/int_sensor, +/obj/structure/cable/heavyduty{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/catwalk_plated/white, +/turf/simulated/floor/plating, +/area/surface/station/rnd/hallway/bmt) +"Rl" = ( +/turf/simulated/wall, +/area/surface/station/medical/hallway/bmt) +"Rm" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/research/xenoarcheology/restroom) +"Rn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 4 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24; + pixel_y = -12 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/bmt) +"Ro" = ( +/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/effect/catwalk_plated/dark, +/obj/effect/floor_decal/industrial/warning, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/cargo/bmt) +"Rp" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/hallway/primary/bmt/west) +"Rq" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/medical/west) +"Rr" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/cyan, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/smes) +"Rs" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 9 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 21 + }, +/turf/simulated/floor/tiled, +/area/surface/station/rnd/toxins_launch) +"Rt" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/maintenance{ + req_one_access = list(12) + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/medical/south) +"Ru" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/yellow, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/anomaly) +"Rw" = ( +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology) +"Rx" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/medical/west) +"Ry" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/monofloor{ + dir = 4 + }, +/area/surface/station/hallway/primary/bmt/west) +"Rz" = ( +/obj/structure/reagent_dispensers/beerkeg/fakenuke, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/vault) +"RA" = ( +/obj/effect/floor_decal/industrial/warning/dust, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor; + outdoors = 0 + }, +/area/surface/station/mining_main/exterior) +"RB" = ( +/obj/turbolift_map_holder/cynosure/medbay, +/turf/unsimulated/mask, +/area/surface/station/medical/hallway/bmt) +"RC" = ( +/obj/machinery/atmospherics/pipe/tank/nitrous_oxide, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/smes) +"RD" = ( +/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, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/entrance) +"RF" = ( +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/disposaloutlet{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/incinerator) +"RG" = ( +/obj/machinery/atmospherics/pipe/tank/air{ + start_pressure = 4559.63 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/research/east) +"RH" = ( +/obj/machinery/atmospherics/binary/passive_gate{ + dir = 4; + icon_state = "on"; + unlocked = 1 + }, +/obj/effect/catwalk_plated/white, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology) +"RI" = ( +/obj/machinery/atmospherics/binary/pump/high_power/on{ + dir = 1; + name = "Pump station in"; + target_pressure = 4500 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/station/engineering/auxiliary_engineering) +"RJ" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/purple{ + dir = 8 + }, +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled/old_tile/white, +/area/surface/station/rnd/mixing) +"RK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/station/hallway/primary/bmt/south) +"RL" = ( +/obj/machinery/atmospherics/unary/outlet_injector{ + dir = 4; + use_power = 1 + }, +/obj/machinery/sparker{ + id = "mixingsparker"; + pixel_x = 18 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/reinforced/airless{ + name = "reinforced floor" + }, +/area/surface/station/rnd/mixing) +"RM" = ( +/obj/structure/sign/warning/high_voltage, +/turf/simulated/wall, +/area/surface/outpost/research/xenoarcheology/smes) +"RN" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/medical/hallway/bmt) +"RO" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/extinguisher_cabinet{ + dir = 1; + pixel_y = 30 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/storage/tech) +"RP" = ( +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/bordercorner2{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 5 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/west) +"RQ" = ( +/turf/simulated/mineral/sif, +/area/surface/cave/unexplored/deep) +"RR" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/west) +"RS" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/engineering/north) +"RU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/north) +"RY" = ( +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24; + pixel_y = -12 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/medical/hallway/bmt) +"RZ" = ( +/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" + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/maintenance{ + req_one_access = list(12) + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/bar) +"Sb" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/cyan{ + 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/white, +/area/surface/outpost/research/xenoarcheology/entrance) +"Sc" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/mining_main) +"Sd" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/engineering/hallway/bmt) +"Se" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 10 + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/incineratormaint) +"Sf" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/shield_diffuser, +/obj/machinery/door/blast/regular{ + id = "mixvent"; + name = "Mixer Room Vent" + }, +/turf/simulated/floor/reinforced/airless{ + name = "reinforced floor" + }, +/area/surface/station/rnd/mixing) +"Sg" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/table/glass, +/obj/item/weapon/reagent_containers/glass/beaker/sulphuric{ + pixel_x = 2; + pixel_y = 6 + }, +/obj/item/weapon/reagent_containers/glass/bottle/toxin, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/analysis) +"Sh" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/monofloor{ + dir = 1 + }, +/area/surface/outpost/research/xenoarcheology/exp_prep) +"Si" = ( +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -24; + pixel_y = 12 + }, +/obj/effect/catwalk_plated/dark, +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/security) +"Sj" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals_central5, +/turf/simulated/floor/tiled, +/area/surface/station/mining_main/locker) +"Sl" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite/corner, +/obj/effect/floor_decal/corner/purple/bordercorner, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 21 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/bmt) +"Sm" = ( +/obj/structure/anomaly_container, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/research/xenoarcheology/longtermstorage) +"Sn" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/surface/station/mining_main/locker) +"So" = ( +/turf/simulated/floor/reinforced, +/area/surface/station/maintenance/incinerator) +"Sp" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/engineering/north) +"Sr" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = 30 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/west/elevator) +"Ss" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/zone_divider, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/surface/outpost/research/xenoarcheology/anomaly) +"St" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/west) +"Su" = ( +/obj/structure/sign/warning/secure_area, +/turf/simulated/wall, +/area/surface/station/storage/tech) +"Sv" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1; + frequency = 1379; + id_tag = "arc2_airlock_pump" + }, +/obj/effect/floor_decal/techfloor{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/outpost/research/xenoarcheology) +"Sw" = ( +/obj/structure/table/rack{ + layer = 2.6 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/window/westright{ + name = "Suit Storage"; + req_access = list(48) + }, +/obj/item/clothing/mask/breath, +/obj/random/multiple/voidsuit/mining, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/mining_main/storage) +"Sy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/station/rnd/toxins_launch) +"Sz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/green/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/item/clothing/head/cone, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/north) +"SA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology) +"SB" = ( +/obj/structure/stairs/spawner/east, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/hallway/secondary/bmt/weststairwell) +"SC" = ( +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/monofloor, +/area/surface/station/engineering/hallway/bmt) +"SD" = ( +/turf/simulated/wall, +/area/surface/cave/explored/normal) +"SF" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/security) +"SH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/maintenance{ + name = "Mining Maintenance"; + req_access = list(48) + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/cargo/bmt) +"SI" = ( +/obj/structure/sign/warning/secure_area, +/turf/simulated/wall/r_wall, +/area/surface/station/vault) +"SJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/medical/south) +"SK" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/computer/area_atmos/area{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/anomaly) +"SL" = ( +/obj/machinery/status_display, +/turf/simulated/wall, +/area/surface/station/storage/tech) +"SM" = ( +/obj/machinery/atmospherics/pipe/tank/phoron{ + dir = 8 + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/surface/station/maintenance/incinerator) +"SO" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/maintenance/medical/south) +"SQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/engineering/south) +"SR" = ( +/obj/machinery/atmospherics/pipe/tank/phoron, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/smes) +"SS" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/surface/station/rnd/mixing) +"SU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/turf/simulated/floor/reinforced, +/area/surface/outpost/research/xenoarcheology/isolation_c) +"SV" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 6 + }, +/obj/effect/zone_divider, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/surface/outpost/research/xenoarcheology/anomaly) +"SW" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 10 + }, +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/surface/station/mining_main/refinery) +"SX" = ( +/obj/machinery/conveyor_switch{ + id = "anolongstorage"; + req_one_access = list(65) + }, +/obj/effect/floor_decal/industrial/warning/dust, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor; + outdoors = 0 + }, +/area/surface/outpost/research/xenoarcheology/exp_prep) +"SZ" = ( +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "englockdown"; + layer = 3.3; + name = "Engineering Lockdown" + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/engineering/bmt) +"Ta" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/rnd/server) +"Tb" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/west) +"Td" = ( +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24; + pixel_y = -12 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 4 + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/surface/station/rnd/mixing) +"Te" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/smes) +"Tf" = ( +/obj/structure/table/rack, +/obj/random/maintenance/medical, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/medical/south) +"Tg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/glass{ + name = "Hallway" + }, +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/hallway/primary/bmt/east) +"Ti" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/incineratormaint) +"To" = ( +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/station/hallway/primary/bmt/east) +"Tp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/research/xenoarcheology/restroom) +"Tr" = ( +/obj/machinery/door/blast/regular/open{ + id = "biohazard"; + layer = 3.3; + name = "Biohazard Shutter" + }, +/turf/simulated/floor/plating, +/area/surface/station/rnd/hallway/bmt) +"Ts" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/item/weapon/stool/padded, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/analysis) +"Tt" = ( +/obj/machinery/air_sensor{ + frequency = 1430; + id_tag = "toxins_mixing_exterior"; + output = 63 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/reinforced/airless{ + name = "reinforced floor" + }, +/area/surface/station/rnd/mixing) +"Tu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/glass{ + name = "Hallway" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/hallway/secondary/bmt/eaststairwell) +"Tw" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/effect/catwalk_plated/white, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/table/standard, +/obj/item/weapon/storage/box/gloves, +/obj/item/weapon/storage/box/monkeycubes, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology) +"Ty" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/incinerator) +"Tz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/machinery/meter, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/mining) +"TB" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/surface/station/medical/hallway/bmt) +"TC" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/bmt) +"TD" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/eaststairwell) +"TF" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 6 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/effect/floor_decal/rust, +/obj/machinery/space_heater, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/station/engineering/auxiliary_engineering) +"TG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/mining_main/locker) +"TH" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/west) +"TI" = ( +/obj/effect/floor_decal/techfloor, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/manifold/hidden, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/outpost/research/xenoarcheology/entrance) +"TJ" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/portable_atmospherics/canister/phoron, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/rnd/storage) +"TK" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/powered/scrubber, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/engineering/auxiliary_engineering) +"TL" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/techfloor{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/storage/tech) +"TM" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central5, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/bmt) +"TN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/medical/storage/second_storage) +"TO" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/floor/tiled/dark, +/area/surface/station/rnd/storage) +"TP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/obj/machinery/meter, +/obj/structure/ore_box, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/mining) +"TQ" = ( +/turf/simulated/wall, +/area/surface/station/construction/bmt/construction5) +"TR" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/floor_decal/rust, +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "sci_ug_airlock_inner"; + locked = 1; + name = "Research Internal Access" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/obj/effect/map_helper/airlock/door/int_door, +/obj/structure/cable/heavyduty{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/access_button/airlock_interior{ + master_tag = "sci_ug_airlock"; + pixel_x = -24; + req_one_access = list(47) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/rnd/hallway/bmt) +"TS" = ( +/obj/structure/sink{ + pixel_y = 17 + }, +/obj/structure/mirror{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/outpost/research/xenoarcheology/restroom) +"TV" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/bmt/eaststairwell) +"TW" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_research{ + name = "Expedition Prep"; + req_one_access = list(65) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/research/xenoarcheology/exp_prep) +"TY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/station/hallway/primary/bmt/east) +"TZ" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/eaststairwell) +"Ua" = ( +/obj/machinery/artifact_scanpad, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/surface/outpost/research/xenoarcheology/isolation_c) +"Ub" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/eaststairwell) +"Uc" = ( +/obj/structure/closet/crate{ + dir = 8 + }, +/obj/item/weapon/coin/silver{ + pixel_x = -6; + pixel_y = -4 + }, +/obj/item/weapon/coin/silver{ + pixel_x = -4; + pixel_y = -3 + }, +/obj/item/weapon/coin/silver{ + pixel_x = -2; + pixel_y = -4 + }, +/obj/item/weapon/coin/silver{ + pixel_y = -3 + }, +/obj/item/weapon/coin/silver{ + pixel_x = 2; + pixel_y = -4 + }, +/obj/item/weapon/coin/silver{ + pixel_x = 4; + pixel_y = -3 + }, +/obj/item/weapon/coin/silver{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/weapon/coin/silver, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/surface/station/vault) +"Ue" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/green/border, +/obj/machinery/portable_atmospherics/powered/scrubber, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/station/maintenance/bar) +"Ug" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/medical/south) +"Ui" = ( +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -24; + pixel_y = 12 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/cargo/bmt) +"Uj" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/surface/station/hallway/primary/bmt/east) +"Uk" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/bordercorner{ + dir = 4 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/west) +"Ul" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/eaststairwell) +"Uo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/eaststairwell) +"Up" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/surface/station/rnd/toxins_launch) +"Ur" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/green/bordercorner, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/east) +"Us" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/medical/hallway/bmt) +"Ut" = ( +/obj/machinery/camera/network/research_outpost{ + c_tag = "OPR - Long Term Storage"; + dir = 1 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/research/xenoarcheology/longtermstorage) +"Uu" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/rnd/test_area) +"Uv" = ( +/obj/structure/table/rack{ + layer = 2.6 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/item/clothing/suit/bio_suit/anomaly, +/obj/item/clothing/head/bio_hood/anomaly, +/obj/item/clothing/mask/breath, +/obj/item/clothing/glasses/science, +/obj/item/clothing/gloves/sterile/latex, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/surface/outpost/research/xenoarcheology) +"Uw" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/surface/station/rnd/mixing) +"Ux" = ( +/obj/structure/closet/crate/nanotrasen, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/cable/cyan, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -24; + pixel_y = 12 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/research/xenoarcheology/longtermstorage) +"Uy" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/obj/effect/landmark/start{ + name = "Shaft Miner" + }, +/turf/simulated/floor/tiled, +/area/surface/station/mining_main/locker) +"Uz" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 4 + }, +/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/station/rnd/toxins_launch) +"UA" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/machinery/conveyor_switch/oneway{ + id = "garbage" + }, +/obj/machinery/camera/network/civilian{ + c_tag = "CIV - Waste Disposal"; + dir = 1 + }, +/obj/item/device/radio/intercom{ + pixel_y = -21 + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/surface/station/maintenance/incinerator) +"UB" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/west/elevator) +"UC" = ( +/obj/structure/table/rack, +/obj/random/technology_scanner, +/obj/random/tech_supply, +/obj/random/tech_supply, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/research/east) +"UD" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/effect/catwalk_plated/dark, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/engineering/bmt) +"UE" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/medical/morgue) +"UF" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/west/elevator) +"UH" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 9 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 9 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/bmt) +"UI" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/maintenance{ + name = "Construction Area Access"; + req_one_access = list(32) + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/surface/station/construction/basement) +"UK" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/maintenance{ + name = "Construction Area Access"; + req_one_access = list(12) + }, +/turf/simulated/floor/plating, +/area/surface/station/construction/bmt/construction3) +"UL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/bmt) +"UN" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 21 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/west) +"UO" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/bmt) +"UP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + 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/station/medical/hallway/bmt) +"UQ" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/research/xenoarcheology/anomaly) +"UR" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/tvalve/mirrored/bypass{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/auxiliary_engineering) +"US" = ( +/obj/effect/floor_decal/industrial/warning/dust/corner, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating/sif/planetuse{ + outdoors = 0 + }, +/area/surface/station/rnd/toxins_launch) +"UU" = ( +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 21 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/vault) +"UV" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 8 + }, +/obj/machinery/airlock_sensor/airlock_exterior{ + dir = 4; + id_tag = "arc2_ext_sensor"; + master_tag = "arc2_airlock"; + pixel_x = -31; + pixel_y = 24; + req_one_access = list(47) + }, +/obj/effect/map_helper/airlock/sensor/ext_sensor, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor; + outdoors = 0 + }, +/area/surface/outpost/research/xenoarcheology) +"UW" = ( +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/vault) +"UX" = ( +/obj/machinery/door/blast/regular{ + dir = 4; + id = "ventisoc"; + name = "Isolation Room Vent" + }, +/turf/simulated/floor/reinforced, +/area/surface/outpost/research/xenoarcheology/isolation_c) +"UZ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/north) +"Va" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/bmt) +"Vb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/station/hallway/primary/bmt/south) +"Vc" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/purple/border, +/obj/structure/closet/secure_closet/xenoarchaeologist, +/obj/item/clothing/suit/storage/hooded/wintercoat/science, +/turf/simulated/floor/tiled/neutral, +/area/surface/outpost/research/xenoarcheology/entrance) +"Vd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/engineering/north) +"Ve" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "anolongstorage2" + }, +/turf/simulated/floor/plating/sif/planetuse{ + outdoors = 0 + }, +/area/surface/outpost/research/xenoarcheology/longtermstorage) +"Vf" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/valve, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/research/east) +"Vg" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/security) +"Vi" = ( +/obj/machinery/ai_status_display, +/turf/simulated/wall, +/area/surface/station/hallway/primary/bmt/west) +"Vj" = ( +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/machinery/light_switch{ + pixel_x = 12; + pixel_y = 24 + }, +/obj/structure/table/steel, +/obj/item/weapon/module/power_control, +/obj/item/weapon/airlock_electronics, +/turf/simulated/floor/plating, +/area/surface/station/storage/tech) +"Vk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/station/hallway/primary/bmt/east) +"Vm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/glass_mining{ + name = "Mining Locker Room" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/mining_main/locker) +"Vn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/west) +"Vp" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/engineering/south) +"Vq" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/table/steel, +/obj/machinery/recharger, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/weststairwell/bmt) +"Vs" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/anomaly) +"Vt" = ( +/turf/simulated/wall, +/area/surface/station/maintenance/weststairwell/bmt) +"Vu" = ( +/obj/effect/floor_decal/techfloor{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1379; + id_tag = "sci_ug_airlock_pump" + }, +/obj/machinery/camera/network/research{ + c_tag = "SCI - Research Airlock"; + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/rnd/hallway/bmt) +"Vv" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/closet/crate/science, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/research/east) +"Vw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/research/south) +"Vx" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/station/hallway/primary/bmt/east) +"Vy" = ( +/turf/simulated/wall, +/area/surface/station/maintenance/substation/engineering/bmt) +"Vz" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/mining) +"VA" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/brown/bordercorner, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/west) +"VB" = ( +/obj/structure/disposalpipe/segment{ + 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, +/area/surface/station/mining_main) +"VC" = ( +/turf/simulated/wall, +/area/surface/station/maintenance/substation/cargo/bmt) +"VE" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor; + outdoors = 0 + }, +/area/surface/station/mining_main/exterior) +"VF" = ( +/obj/structure/sign/warning/fire, +/turf/simulated/wall/r_wall, +/area/surface/station/maintenance/incinerator) +"VH" = ( +/obj/machinery/space_heater, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/smes) +"VI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/research/east) +"VJ" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology) +"VK" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/station/storage/tech) +"VL" = ( +/obj/machinery/portable_atmospherics/canister/empty, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/sign/warning/compressed_gas{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/surface/outpost/research/xenoarcheology/anomaly) +"VM" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/obj/effect/floor_decal/rust, +/obj/structure/cable/heavyduty{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor; + outdoors = 0 + }, +/area/surface/cave/explored/normal) +"VN" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/reinforced/airless{ + name = "reinforced floor" + }, +/area/surface/station/rnd/mixing) +"VO" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/glass{ + name = "Hallway" + }, +/obj/structure/sign/directions/cargo{ + dir = 8; + pixel_y = -26 + }, +/obj/structure/sign/directions/science{ + dir = 8; + pixel_y = -32 + }, +/obj/structure/sign/directions/elevator{ + dir = 8; + pixel_y = -38 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/hallway/primary/bmt/west) +"VP" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/outpost/research/xenoarcheology/entrance) +"VQ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/research/xenoarcheology/exp_prep) +"VS" = ( +/turf/simulated/wall, +/area/surface/station/construction/bmt/construction3) +"VU" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/medical/west) +"VW" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/rnd/server) +"VX" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/closet/crate/engineering{ + dir = 2 + }, +/obj/item/stack/tile/floor/white{ + amount = 23 + }, +/obj/item/weapon/tool/crowbar, +/obj/random/tech_supply, +/obj/random/tech_supply, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/medical/south) +"VY" = ( +/obj/structure/closet/crate/nanotrasen, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/research/xenoarcheology/longtermstorage) +"VZ" = ( +/obj/machinery/chem_master, +/obj/effect/floor_decal/borderfloorwhite/corner, +/obj/effect/floor_decal/corner/beige/bordercorner, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/analysis) +"Wa" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/disposal, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 10 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled, +/area/surface/station/rnd/toxins_launch) +"Wb" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/green/bordercorner, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/north) +"Wc" = ( +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/purple/bordercorner{ + dir = 8 + }, +/obj/machinery/camera/network/research_outpost{ + c_tag = "OPR - Xenoarch Hallway East"; + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology) +"Wd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating/sif/planetuse{ + icon_state = "asteroidplating2"; + outdoors = 0 + }, +/area/surface/station/rnd/test_area) +"We" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/research/south) +"Wf" = ( +/obj/machinery/door/firedoor/border_only, +/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/borderfloorwhite, +/obj/effect/floor_decal/corner/purple/border, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/bmt) +"Wg" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/random/maintenance/cargo, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/incineratormaint) +"Wh" = ( +/obj/structure/sign/warning/high_voltage, +/turf/simulated/wall/r_wall, +/area/surface/station/storage/tech) +"Wk" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/anomaly) +"Wl" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 4 + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/surface/station/maintenance/incinerator) +"Wm" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/turf/simulated/floor/tiled/old_tile/gray, +/area/surface/station/maintenance/incinerator) +"Wn" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/north) +"Wo" = ( +/obj/machinery/atmospherics/pipe/tank/air{ + dir = 1; + start_pressure = 4559.63 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/incineratormaint) +"Wp" = ( +/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/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/research{ + name = "Toxins Storage"; + req_one_access = list(8) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/rnd/toxins_launch) +"Wr" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/floor_decal/rust, +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "sci_ug_airlock_outer"; + locked = 1; + name = "Research External Access" + }, +/obj/effect/map_helper/airlock/door/ext_door, +/obj/structure/cable/heavyduty{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/access_button/airlock_exterior{ + dir = 1; + master_tag = "sci_ug_airlock"; + pixel_x = -24; + req_one_access = list(47) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/rnd/hallway/bmt) +"Ws" = ( +/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/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/north) +"Wt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/maintenance{ + req_one_access = list(12) + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/security) +"Wu" = ( +/obj/machinery/mining/drill, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor; + outdoors = 0 + }, +/area/surface/station/mining_main/exterior) +"Wv" = ( +/obj/effect/floor_decal/techfloor{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4; + frequency = 1379; + id_tag = "sci_ug_airlock_pump" + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/rnd/hallway/bmt) +"Ww" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/medical/west) +"Wx" = ( +/obj/structure/disposalpipe/segment{ + 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/industrial/warning/corner, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/medical/hallway/bmt) +"Wy" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/blue/bordercorner, +/obj/machinery/camera/network/basement{ + c_tag = "Basement - West Hallway 3"; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/west) +"Wz" = ( +/obj/machinery/door/airlock/maintenance/common{ + icon_state = "door_locked"; + id_tag = "reactor_ev"; + locked = 1; + name = "Reactor Vent Access NO ENTRY"; + req_access = list(10) + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"WB" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular{ + id = "mixvent"; + name = "Mixer Room Vent" + }, +/turf/simulated/floor/reinforced/airless{ + name = "reinforced floor" + }, +/area/surface/station/rnd/mixing) +"WD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/research/south) +"WE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/bordercorner{ + dir = 1 + }, +/obj/machinery/camera/network/mining{ + c_tag = "CRG - Mining Hallway North" + }, +/turf/simulated/floor/tiled, +/area/surface/station/mining_main) +"WG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/effect/catwalk_plated, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/surface/station/medical/hallway/bmt) +"WH" = ( +/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/surface/station/hallway/primary/bmt/west) +"WI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/structure/sign/directions/science/robotics{ + dir = 1; + pixel_y = -32 + }, +/obj/structure/sign/directions/science/rnd{ + dir = 1; + pixel_y = -26 + }, +/obj/structure/sign/directions/stairs_up{ + dir = 1; + pixel_y = -38 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/bmt) +"WJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/station/hallway/primary/bmt/south) +"WK" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/north) +"WL" = ( +/obj/structure/table/rack, +/obj/random/maintenance/engineering, +/obj/random/maintenance/engineering, +/obj/random/maintenance/engineering, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/eaststairwell) +"WM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/west) +"WN" = ( +/obj/machinery/atmospherics/valve/digital, +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/anomaly) +"WO" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/effect/floor_decal/rust/mono_rusted3, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/powered/pump/filled, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/engineering/auxiliary_engineering) +"WQ" = ( +/obj/effect/floor_decal/industrial/warning/dust/corner{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor; + outdoors = 0 + }, +/area/surface/station/hallway/primary/bmt/south) +"WS" = ( +/obj/effect/zone_divider, +/turf/simulated/mineral/sif, +/area/surface/cave/unexplored/normal) +"WT" = ( +/obj/structure/table/rack, +/obj/random/contraband, +/obj/random/maintenance/medical, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/medical/south) +"WU" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/research/xenoarcheology/restroom) +"WV" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/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{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/surface/station/hallway/primary/bmt/west) +"WW" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/station/mining_main/storage) +"WX" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/catwalk_plated/dark, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/research/east) +"WY" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/bar) +"WZ" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/plating, +/area/surface/station/rnd/mixing) +"Xa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/station/medical/hallway/bmt) +"Xb" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/outpost/research/xenoarcheology/entrance) +"Xc" = ( +/obj/structure/table/rack, +/obj/item/weapon/pickaxe, +/obj/item/weapon/tool/wrench, +/obj/item/weapon/tool/crowbar, +/obj/item/weapon/shovel, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -2 + }, +/turf/simulated/floor/tiled, +/area/surface/station/mining_main/storage) +"Xg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/wall/r_wall, +/area/surface/station/maintenance/incinerator) +"Xh" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/anomaly) +"Xi" = ( +/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/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/catwalk_plated/dark, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/cargo/bmt) +"Xj" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/smes) +"Xl" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/engineering/south) +"Xm" = ( +/obj/effect/floor_decal/techfloor{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4; + frequency = 1379; + id_tag = "arc1_airlock_pump" + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/outpost/research/xenoarcheology/entrance) +"Xo" = ( +/obj/structure/table/rack, +/obj/random/maintenance/medical, +/obj/random/maintenance/clean, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/medical/south) +"Xp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/bmt/weststairwell) +"Xq" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 4 + }, +/obj/machinery/space_heater, +/obj/machinery/camera/network/research_outpost{ + c_tag = "OPR - Xenoarch Hallway South"; + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/entrance) +"Xr" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 4; + 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 + }, +/obj/machinery/sparker{ + id = "mixingsparker"; + pixel_x = 18 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/reinforced/airless{ + name = "reinforced floor" + }, +/area/surface/station/rnd/mixing) +"Xs" = ( +/obj/effect/floor_decal/techfloor, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/medical/hallway/bmt) +"Xt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/research/xenoarcheology/longtermstorage) +"Xv" = ( +/turf/simulated/floor/plating, +/area/surface/station/construction/basement) +"Xx" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/incinerator) +"Xy" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/techfloor{ + dir = 6 + }, +/obj/item/weapon/circuitboard/mecha_control{ + pixel_x = -4 + }, +/obj/item/weapon/circuitboard/robotics{ + pixel_y = -3 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/storage/tech) +"Xz" = ( +/obj/effect/zone_divider, +/turf/simulated/mineral/sif, +/area/surface/cave/unexplored/deep) +"XA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/surface/station/hallway/primary/bmt/east) +"XB" = ( +/obj/effect/floor_decal/rust, +/obj/structure/fence/door, +/turf/simulated/floor/plating/sif/planetuse{ + outdoors = 0 + }, +/area/surface/cave/explored/normal) +"XD" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/surface/station/maintenance/incinerator) +"XE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/incineratormaint) +"XF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/bmt) +"XG" = ( +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/green/bordercorner, +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/hallway/primary/bmt/north) +"XH" = ( +/obj/random/crate{ + dir = 4 + }, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/random/maintenance/security, +/obj/random/maintenance/security, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/security) +"XI" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/purple/border, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology) +"XL" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/mining_main/refinery) +"XM" = ( +/obj/structure/sign/warning/caution, +/turf/simulated/wall/r_wall, +/area/surface/station/rnd/mixing) +"XN" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/medical{ + name = "Morgue"; + req_one_access = list(4,6) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/medical/morgue) +"XO" = ( +/obj/structure/table/rack, +/obj/random/maintenance/security, +/obj/random/maintenance/clean, +/obj/random/toolbox, +/obj/item/weapon/storage/belt/utility, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/security) +"XP" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/outpost/research/xenoarcheology/entrance) +"XQ" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/west) +"XR" = ( +/turf/simulated/wall, +/area/surface/station/construction/bmt/construction2) +"XS" = ( +/obj/machinery/sparker{ + id = "Incinerator"; + pixel_x = -18 + }, +/turf/simulated/floor/reinforced, +/area/surface/station/maintenance/incinerator) +"XT" = ( +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/bmt/eaststairwell) +"XU" = ( +/turf/simulated/wall, +/area/surface/station/maintenance/engineering/north) +"XV" = ( +/turf/simulated/mineral/ignore_mapgen/sif, +/area/surface/cave/unexplored/normal) +"XW" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/surface/station/rnd/mixing) +"XX" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/bar) +"XY" = ( +/obj/machinery/atmospherics/binary/pump/on{ + target_pressure = 700 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/smes) +"Ya" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 4 + }, +/obj/machinery/hologram/holopad, +/obj/item/weapon/stool/padded{ + dir = 1 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/outpost/research/xenoarcheology/anomaly) +"Yb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/medical/south) +"Yc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/south) +"Yd" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology) +"Ye" = ( +/obj/effect/floor_decal/techfloor{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/structure/sign/warning/cold{ + layer = 3.3; + pixel_x = -32 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/hallway/primary/bmt/south) +"Yf" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/surface/station/rnd/mixing) +"Yg" = ( +/obj/structure/sign/warning/high_voltage, +/turf/simulated/wall, +/area/surface/station/hallway/primary/bmt/west) +"Yh" = ( +/obj/structure/table/steel_reinforced, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 8 + }, +/obj/machinery/cell_charger, +/obj/item/device/radio/intercom{ + pixel_y = -21 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/mining_main) +"Yi" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/closet/hydrant{ + pixel_x = -32 + }, +/obj/item/clothing/glasses/meson, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/engineering/bmt) +"Yj" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/smes) +"Yk" = ( +/obj/machinery/atmospherics/unary/heater{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/camera/network/research_outpost{ + c_tag = "OPR - Anomalous Materials West"; + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/outpost/research/xenoarcheology/anomaly) +"Ym" = ( +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -12; + pixel_y = -24 + }, +/obj/structure/cable, +/obj/effect/floor_decal/steeldecal/steel_decals_central7, +/turf/simulated/floor/tiled, +/area/surface/station/construction/basement) +"Yn" = ( +/obj/effect/floor_decal/industrial/warning/dust, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor; + outdoors = 0 + }, +/area/surface/station/mining_main/exterior) +"Yp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/rust, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/atmospherics/binary/passive_gate{ + dir = 8; + icon_state = "on"; + unlocked = 1 + }, +/obj/effect/catwalk_plated, +/obj/machinery/airlock_sensor/airlock_interior{ + dir = 4; + id_tag = "min_ug_airlock_int_sensor"; + master_tag = "min_ug_airlock"; + pixel_x = -31; + pixel_y = 24; + req_one_access = list(48) + }, +/obj/effect/map_helper/airlock/sensor/int_sensor, +/turf/simulated/floor/plating, +/area/surface/station/mining_main) +"Yq" = ( +/obj/structure/reagent_dispensers/coolanttank, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/outpost/research/xenoarcheology/analysis) +"Yt" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/space_heater, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/surface/outpost/research/xenoarcheology/anomaly) +"Yu" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/dust, +/obj/effect/floor_decal/rust, +/obj/machinery/airlock_sensor/airlock_exterior{ + dir = 1; + id_tag = "sci_ug_airlock_ext_sensor"; + master_tag = "sci_ug_airlock"; + pixel_x = -35; + pixel_y = -31; + req_one_access = list(47) + }, +/obj/effect/map_helper/airlock/sensor/ext_sensor, +/obj/structure/cable/heavyduty{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor; + outdoors = 0 + }, +/area/surface/station/rnd/hallway/bmt) +"Yv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/anomaly) +"Yw" = ( +/turf/simulated/floor/plating/sif/planetuse{ + icon_state = "asteroidplating2"; + outdoors = 0 + }, +/area/surface/cave/explored/normal) +"Yx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/purple/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/west/elevator) +"Yz" = ( +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/purple/bordercorner{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/bmt) +"YA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating/sif/planetuse{ + icon_state = "asteroidplating2"; + outdoors = 0 + }, +/area/surface/cave/explored/normal) +"YC" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/surface/station/rnd/storage) +"YE" = ( +/obj/machinery/atmospherics/binary/pump, +/turf/simulated/floor/tiled/old_tile/white, +/area/surface/station/rnd/mixing) +"YF" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/anomaly) +"YG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/bmt) +"YI" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/bar) +"YL" = ( +/obj/machinery/conveyor{ + id = "mining_north" + }, +/obj/machinery/mineral/input, +/turf/simulated/floor/plating/sif/planetuse{ + outdoors = 0 + }, +/area/surface/station/maintenance/medical/west) +"YM" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ + dir = 1 + }, +/turf/simulated/floor/reinforced/airless{ + name = "reinforced floor" + }, +/area/surface/station/rnd/mixing) +"YN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/bmt) +"YO" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor; + outdoors = 0 + }, +/area/surface/station/mining_main/exterior) +"YP" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/green/border, +/obj/machinery/space_heater, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/station/maintenance/bar) +"YQ" = ( +/turf/simulated/floor/plating, +/area/surface/station/construction/warehouse) +"YR" = ( +/turf/simulated/floor/plating, +/area/surface/station/hallway/primary/bmt/east) +"YT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/obj/machinery/door/firedoor/border_only, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/research{ + name = "Isolation Room A"; + req_one_access = list(65) + }, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "isoa"; + layer = 3.3; + name = "Isolation Shutter" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/outpost/research/xenoarcheology/isolation_a) +"YU" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 1 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/machinery/camera/network/research_outpost{ + c_tag = "OPR - Xenoarch Hallway West" + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology) +"YV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/medical/hallway/bmt) +"YX" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/maintenance{ + req_one_access = list(5,12,47) + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/medical/south) +"YY" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/construction/genetics) +"YZ" = ( +/obj/structure/sign/directions/science/xenoarch{ + dir = 1; + pixel_y = 6 + }, +/obj/structure/sign/directions/science/toxins{ + dir = 8; + icon_state = "direction_toxins" + }, +/turf/simulated/wall/r_wall, +/area/surface/station/rnd/mixing) +"Za" = ( +/obj/effect/zone_divider, +/turf/simulated/wall, +/area/surface/station/maintenance/engineering/south) +"Zb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/obj/machinery/camera/network/basement{ + c_tag = "Basement - South Hallway 2"; + dir = 8 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/station/hallway/primary/bmt/south) +"Ze" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/north) +"Zf" = ( +/turf/simulated/floor/plating, +/area/surface/station/maintenance/medical/west) +"Zg" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "anolongstorage" + }, +/turf/simulated/floor/plating/sif/planetuse{ + outdoors = 0 + }, +/area/surface/outpost/research/xenoarcheology/exp_prep) +"Zh" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/engineering/south) +"Zi" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/research/east) +"Zj" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/dust/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor; + outdoors = 0 + }, +/area/surface/outpost/research/xenoarcheology) +"Zk" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning/dust/corner{ + dir = 8 + }, +/obj/effect/floor_decal/rust, +/obj/structure/cable/heavyduty{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor; + outdoors = 0 + }, +/area/surface/station/rnd/hallway/bmt) +"Zl" = ( +/obj/structure/anomaly_container, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/outpost/research/xenoarcheology/longtermstorage) +"Zm" = ( +/obj/structure/closet/crate, +/turf/simulated/floor/tiled/old_tile/gray, +/area/surface/station/mining_main/refinery) +"Zn" = ( +/obj/structure/table/bench/padded, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/brown/bordercorner, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/machinery/newscaster{ + pixel_x = 26 + }, +/turf/simulated/floor/tiled, +/area/surface/station/mining_main/locker) +"Zo" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/dust/corner{ + dir = 4 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating/sif/planetuse{ + outdoors = 0 + }, +/area/surface/station/rnd/toxins_launch) +"Zp" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/purple{ + dir = 1 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled/old_tile/white, +/area/surface/station/rnd/mixing) +"Zq" = ( +/obj/structure/closet/secure_closet/miner, +/obj/item/clothing/shoes/boots/winter/mining, +/obj/item/clothing/suit/storage/hooded/wintercoat/miner, +/obj/item/clothing/head/hardhat/orange, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/mining_main/locker) +"Zr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/paleblue/border, +/turf/simulated/floor/tiled, +/area/surface/station/medical/hallway/bmt) +"Zs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/purple/border, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/west/elevator) +"Zu" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/flame/lighter/random, +/obj/item/weapon/reagent_containers/dropper, +/obj/item/weapon/tool/crowbar, +/obj/item/weapon/weldingtool, +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -12; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/white, +/area/surface/outpost/research/xenoarcheology/anomaly) +"Zv" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/mining_main/locker) +"Zw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = 30 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/bmt/south) +"Zx" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/weststairwell/bmt) +"Zy" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/research/east) +"Zz" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/bordercorner{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/bmt) +"ZA" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/rnd/mixing) +"ZB" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 21 + }, +/turf/simulated/floor/reinforced, +/area/surface/outpost/research/xenoarcheology/isolation_b) +"ZC" = ( +/obj/machinery/computer/area_atmos{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/device/radio/intercom{ + pixel_y = -21 + }, +/obj/machinery/camera/network/research{ + c_tag = "SCI - Toxins Gas Storage"; + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/rnd/storage) +"ZE" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/structure/table/rack, +/obj/item/weapon/circuitboard/autolathe{ + pixel_x = 6; + pixel_y = -6 + }, +/obj/item/weapon/circuitboard/autolathe{ + pixel_x = 4; + pixel_y = -4 + }, +/obj/item/weapon/circuitboard/security/mining, +/obj/machinery/camera/network/engineering{ + c_tag = "ENG - Technical Storage" + }, +/turf/simulated/floor/plating, +/area/surface/station/storage/tech) +"ZF" = ( +/turf/simulated/wall, +/area/surface/station/construction/basement) +"ZH" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/turf/simulated/floor/tiled, +/area/surface/station/mining_main) +"ZI" = ( +/obj/structure/cable/cyan{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24; + pixel_y = -12 + }, +/obj/structure/table/standard, +/obj/item/device/flashlight/lamp, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/surface/outpost/research/xenoarcheology/isolation_c) +"ZK" = ( +/obj/structure/cable, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -12; + pixel_y = -24 + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/mining) +"ZM" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor; + outdoors = 0 + }, +/area/surface/cave/explored/normal) +"ZN" = ( +/obj/effect/map_effect/portal/master/side_b/caves_to_plains{ + dir = 1 + }, +/turf/simulated/mineral/floor/ignore_mapgen/sif, +/area/surface/cave/explored/deep) +"ZO" = ( +/obj/structure/reagent_dispensers/coolanttank, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/structure/sign/warning/compressed_gas{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/outpost/research/xenoarcheology/analysis) +"ZP" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/engineering/hallway/bmt) +"ZQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/yellow/border, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/bmt) +"ZR" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/bmt) +"ZS" = ( +/obj/item/weapon/material/shard{ + icon_state = "medium" + }, +/turf/simulated/floor/plating, +/area/surface/station/construction/genetics) +"ZT" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/hallway/primary/bmt/west/elevator) +"ZU" = ( +/obj/machinery/conveyor{ + backwards = 4; + dir = 6; + forwards = 2; + id = "garbage" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/incinerator) +"ZV" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/danger/corner{ + dir = 1 + }, +/obj/effect/floor_decal/rust/color_rustedcorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/mining_main) +"ZX" = ( +/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/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/hallway/primary/bmt/west/elevator) +"ZY" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock/glass_mining{ + name = "Mining Locker Room" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/mining_main/locker) +"ZZ" = ( +/obj/turbolift_map_holder/cynosure/sci, +/turf/unsimulated/mask, +/area/surface/outpost/research/xenoarcheology/entrance) + +(1,1,1) = {" +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +"} +(2,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(3,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(4,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(5,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(6,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(7,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(8,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(9,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(10,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(11,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(12,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(13,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(14,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(15,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(16,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(17,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(18,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(19,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(20,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(21,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(22,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(23,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(24,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(25,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(26,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(27,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(28,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(29,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(30,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(31,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(32,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(33,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(34,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(35,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(36,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(37,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(38,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(39,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(40,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(41,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(42,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(43,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(44,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(45,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(46,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(47,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(48,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(49,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(50,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(51,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(52,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(53,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(54,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(55,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Uu +Uu +Uu +Uu +Uu +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(56,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Uu +Uu +Uu +Os +HG +Os +Uu +Uu +Uu +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(57,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Uu +Uu +Os +Os +Os +Hu +Os +Os +Os +Uu +Uu +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(58,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Uu +Uu +Os +Os +Os +Os +Os +Os +Os +Os +Os +Uu +Uu +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(59,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Uu +Uu +Os +Os +Os +Os +Os +Os +Os +Os +Os +Os +Os +Uu +Uu +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(60,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Uu +Os +Os +Os +AM +Os +Os +Os +Os +Os +ED +Os +Os +Os +Uu +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(61,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Uu +Uu +Os +Os +Os +Os +AM +Os +Os +Os +ED +Os +Os +Os +Os +Uu +Uu +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(62,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Uu +Os +Os +Os +Os +Os +Os +AM +HG +ED +Os +Os +Os +Os +Os +Os +Uu +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(63,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Uu +HG +cz +Os +Os +Os +Os +Os +DB +Os +Os +Os +Os +Os +xq +HG +Uu +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(64,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Uu +Os +Os +Os +Os +Os +Os +xE +Os +El +Os +Os +Os +Os +Os +Os +Uu +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(65,1,1) = {" +AQ +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +GF +GF +vl +vl +vl +vl +le +vl +Pq +vl +My +vl +vl +vl +vl +GF +GF +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +AQ +"} +(66,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Uu +Os +Os +Os +xE +Os +Os +Wd +Os +Os +El +Os +Os +Os +Uu +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(67,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Uu +Uu +dD +Os +Os +Os +Os +Wd +Os +Os +Os +Os +Os +Uu +Uu +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +WS +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(68,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Uu +dD +dD +Os +Os +Os +Wd +Os +Os +dD +dD +Uu +Uu +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +WS +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(69,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Kj +Uu +Mq +Uu +Os +Os +Os +Wd +Os +Os +dD +Uu +Uu +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +WS +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(70,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Kj +Kj +Kj +Uu +Uu +Uu +Os +Wd +Os +Uu +Uu +Uu +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +WS +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(71,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Kj +Kj +Kj +Kj +Nu +Uu +Uu +ze +Uu +Uu +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +IV +HE +HE +HE +HE +Kj +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +WS +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(72,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Kj +Kj +Kj +Kj +ZM +vm +vm +ee +Kj +Kj +Kj +HE +HE +HE +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +wj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +HE +HE +HE +HE +mV +BK +BK +BK +BK +BK +oY +mV +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +WS +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(73,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Kj +Kj +Kj +Kj +Kj +Kj +YA +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +XB +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +HE +CE +HP +wJ +HP +wJ +HP +wJ +lw +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +WS +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(74,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Kj +Kj +Kj +Kj +Kj +Kj +YA +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +qf +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +HE +LT +HP +Wu +HP +Wu +HP +Wu +Yn +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +WS +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(75,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Kj +Kj +Kj +Kj +Kj +Kj +YA +Kj +Kj +Kj +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +IV +HE +HE +HE +HE +HE +Kj +Kj +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +HE +fs +HP +wJ +HP +wJ +HP +wJ +Yn +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +WS +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(76,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Kj +Kj +Kj +Kj +Kj +YA +Kj +Kj +Kj +HE +HE +HE +HE +XV +XV +XV +XV +XV +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Mi +Kj +gD +HP +HP +HP +HP +HP +HP +hl +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +WS +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(77,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +YA +Kj +Kj +Kj +HE +HE +XV +XV +XV +IV +IV +IV +XV +XV +XV +XV +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Mi +Kj +Kj +mV +jD +VE +VE +VE +VE +VE +mV +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +WS +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(78,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +YA +Kj +Kj +Kj +HE +HE +XV +IV +IV +IV +Iy +IV +IV +Kj +Yw +XV +XV +HE +HE +HE +HE +om +om +om +om +om +om +om +om +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +Kj +Rc +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +WS +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(79,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +YA +Kj +Kj +Kj +HE +HE +XV +IV +Kj +Jk +Jk +Jk +Kj +Kj +Yw +IV +XV +HE +HE +HE +HE +om +yy +Gx +KQ +Gx +Gx +ZU +om +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +Kj +Rc +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +WS +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(80,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +Kj +Kj +Kj +Kj +HE +HE +Kj +Kj +Kj +YA +Kj +Kj +Kj +HE +HE +XV +IV +Kj +Jk +Jk +Jk +Kj +Kj +Kj +GH +oG +oG +oG +oG +VF +oG +ht +Xx +Xx +co +Xx +NA +om +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +mV +qF +zl +Fu +BK +BK +BK +mV +Kj +HE +Kj +Kj +Kj +Kj +Kj +HE +HE +HE +HE +WS +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(81,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +Kj +Kj +Kj +YA +Kj +Kj +Kj +HE +XV +XV +IV +Kj +Jk +Jk +Jk +Kj +Kj +Kj +ek +So +XS +IK +Xg +tI +Xg +iO +ir +Wm +yi +Xx +NA +om +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +KN +RA +NG +YO +dn +HP +HP +lw +Kj +HE +Kj +Kj +Kj +Kj +Kj +HE +HE +HE +HE +WS +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(82,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +Kj +Kj +Kj +YA +Kj +Kj +Kj +XV +XV +IV +IV +IV +Kj +Kj +Kj +IV +Kj +Pd +lX +IN +IN +IN +CD +zT +xh +HT +Ty +vW +UA +om +RF +om +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +YO +NF +NG +YO +jB +HP +HP +dF +HE +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +HE +WS +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(83,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +HE +Kj +Kj +Kj +YA +Kj +Kj +Kj +XV +IV +IV +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +ek +So +dh +ta +Xg +JW +Xg +iw +Po +EF +yF +om +ix +om +nb +nb +nb +nb +nb +HE +oC +LP +rV +xx +xJ +NG +Bo +jB +HP +HP +dF +HE +HE +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +WS +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(84,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +HE +Kj +Kj +Kj +YA +Kj +Kj +Kj +XV +IV +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +GH +oG +lH +oG +oG +VF +oG +HV +gP +gP +Wl +LV +bI +LY +Ti +Ti +HY +vO +nb +Sc +Sc +oq +CI +NY +NY +bV +NY +jB +HP +HP +dF +HE +HE +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +WS +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(85,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +HE +Kj +Kj +Kj +YA +Kj +Kj +Kj +XV +IV +Kj +Kj +xF +WB +Sf +WB +xF +Kj +Kj +HE +HE +rc +HQ +th +cY +Hi +DT +SM +NH +XD +Iu +en +ci +Hq +QC +Hq +Bt +qx +Sc +HL +NP +ET +MO +na +pl +NY +NY +NY +NY +NY +NY +NY +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +WS +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(86,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +HE +HE +Kj +Kj +Kj +YA +Kj +Kj +Kj +XV +IV +Kj +Kj +ZA +bT +VN +cx +EJ +Kj +Kj +Kj +HE +HE +zL +Vq +rO +om +dE +dE +dE +KT +KT +KT +KT +KT +KT +KT +XE +qx +Sc +bS +kI +Fi +hc +BY +hI +Bn +nd +sx +LO +Bn +tA +NY +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +WS +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(87,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +HE +Kj +Kj +Kj +Kj +qE +Kj +Kj +Kj +HE +IV +Kj +Kj +ZA +Qi +AW +YM +OE +Kj +Kj +Kj +Kj +HE +zL +hY +Zx +BV +hy +xp +rh +KT +Nj +Nj +Nj +Nj +Kb +KT +XE +uu +Sc +Sc +cn +LQ +hc +hc +GO +XL +XL +NY +XL +XL +xb +NY +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +WS +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(88,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +IV +qf +lS +wj +IV +HE +HE +HE +US +CM +Zo +ns +im +od +od +ic +wt +ZA +Eg +Eg +ZA +Xr +Tt +RL +cV +Eg +Eg +ZA +ZA +HE +zL +FJ +ob +Vt +CF +vL +nV +xT +Nj +Nj +Nj +Nj +Nj +bZ +wx +nR +Sc +Kp +Yp +fR +jA +hc +GO +NY +qb +aZ +Ad +NY +fw +NY +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +WS +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(89,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +HE +JE +vJ +wt +PL +nf +PL +dB +mI +wt +Ey +rt +AK +ZA +nl +uH +nl +Hb +RJ +Ly +lg +ZA +HE +zL +zL +zL +Vt +sU +Xp +ug +KT +Nj +Nj +Nj +Nj +Nj +KT +BJ +Wo +Sc +ii +cS +wp +bx +hc +PR +XL +yr +Ke +mY +XL +Kw +NY +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +WS +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(90,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +HE +wt +fb +wt +Rs +pe +Uz +PE +Wa +wt +eI +nh +QE +Qo +nJ +CP +Fe +Qo +fc +oP +ra +ZA +HE +HE +HE +HE +dE +SB +AF +Ae +KT +Nj +Nj +Nj +Nj +Nj +KT +Pg +Wo +Sc +wW +ih +pD +nS +wZ +tk +XL +sT +SW +Zm +XL +no +NY +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +WS +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(91,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +wt +nZ +lF +wt +yw +Sy +jx +Lu +JO +wt +rt +nh +Kh +ZA +oA +tB +kv +ZA +my +sQ +CG +ZA +HE +HE +HE +HE +dE +ea +tU +Af +KT +Nj +Nj +Nj +Nj +Nj +KT +Se +Ow +Sc +Ax +Gi +ZV +Yh +hc +Jq +rk +Ho +fB +Og +OW +li +NY +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +WS +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(92,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +wt +Up +tV +Km +Jc +oR +hF +QH +By +wA +nH +nh +aA +SS +Hw +Ez +NN +fm +NQ +gO +Bm +ZA +aY +aY +aY +HE +su +KR +rN +oJ +KT +KT +iD +qg +ZT +KT +KT +XE +Oc +Sc +Sc +WE +sX +gk +hc +xD +hc +De +aR +KS +hc +NY +NY +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +WS +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(93,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +wt +wt +wt +wt +dB +dB +Wp +dB +fC +wt +Bx +rt +Uw +pA +Gh +kO +nK +uv +KJ +WZ +kR +ZA +xQ +CH +aY +aY +aY +Ib +mN +Hs +Pt +xL +UF +JU +BL +zU +nb +XE +pv +FG +yQ +sP +vz +IM +aa +qQ +NV +Kn +cW +Qf +FK +Sc +HE +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +WS +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(94,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +uB +qv +qv +Ov +Hy +gf +uB +XW +XW +XW +Yf +ri +KH +Gh +Gh +Zp +YE +Hz +ZA +yf +ie +sd +Eh +Dy +Dc +mx +Fn +gC +FM +hC +jt +qp +KV +nY +hv +Wg +HB +Sc +VB +ZH +KM +OM +AE +Bi +Ea +FX +IE +Gb +Sc +HE +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +WS +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(95,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +uB +TJ +qv +FQ +FH +Jg +LU +iQ +Mx +Mx +Td +Qe +qA +sM +wz +Eo +Mx +iq +ZA +Pj +gG +to +aY +Dy +Dc +UB +qn +FV +qm +sS +Kf +Mb +IT +qV +qV +QU +qV +qV +Vm +ZY +Rf +Rf +Rf +Rf +wU +LI +wU +Rf +ha +HE +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +WS +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(96,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +uB +TO +TO +uL +YC +ZC +uB +kb +kb +Le +ZA +aQ +Qr +aQ +ZA +Ku +au +au +ZA +jZ +sJ +aY +aY +aY +mB +qK +lv +kx +bc +Mt +ZX +Mt +oj +qV +Zq +EG +MX +OZ +bN +Zv +AC +oE +Xc +Ob +jg +gF +uO +Mc +ha +HE +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +WS +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(97,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +uB +CV +TO +JK +lG +GI +uB +ZA +Gk +aQ +XM +an +An +MP +YZ +aQ +xf +ZA +ZA +iY +aY +JV +jF +JV +yl +MH +vK +bc +wk +KA +Vn +xi +Ni +qV +yt +uS +Uy +hu +rz +hR +wU +ms +Oz +Ef +uk +Oz +uO +zN +ha +HE +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +WS +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(98,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +uB +uM +uM +sG +he +Cc +uB +UH +XF +Ln +sE +qk +cf +hK +KW +AL +fi +Pu +rY +jv +Yz +mt +LG +PF +yl +MH +Zs +bc +qs +XQ +Ji +Tb +dI +IQ +Ej +cl +Sj +aI +Sn +OH +rm +KK +zQ +fX +No +hE +uO +Ev +ha +HE +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +WS +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(99,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +WS +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +uB +cU +oe +yR +Mo +lB +uB +lM +ym +YG +Zz +PW +Sl +Rn +lP +vo +fp +bt +Cw +NJ +Av +wR +AH +fu +yl +Sr +Yx +bc +gw +OL +kg +hZ +Ni +qV +ow +TG +Zn +qO +yk +sY +wU +pM +ew +ew +QT +ew +WW +CC +ha +HE +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +WS +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(100,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +WS +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +aW +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +uB +QS +QS +DN +qd +gB +uB +an +Jt +pp +Ft +Js +ds +ds +Dk +eX +mJ +zx +JV +oK +JV +JV +JV +JV +JV +hh +EQ +hh +Vi +zR +xv +VA +MW +jK +jK +SH +VC +VC +Kr +Kt +Bh +Br +Ia +lJ +Sw +LL +oa +ha +ha +HE +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +WS +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(101,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +WS +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +aW +hG +xO +VH +rU +AU +yA +ws +Te +gH +tW +CR +aW +aW +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +Kj +Kj +HE +HE +JV +JV +JV +JV +uB +uB +uB +yq +tM +uB +Ja +Wf +ds +ds +dk +iB +ds +tO +pZ +WI +JV +Tr +rW +Tr +KE +EZ +Rj +oQ +rG +GD +zg +wM +zR +er +Bp +jK +hP +Ui +Xi +Jd +jK +qV +qV +ha +ha +ha +ha +ha +ha +ha +ha +HE +HE +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +WS +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(102,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +WS +HE +HE +HE +sD +sD +sD +sD +sD +sD +OU +OU +OU +HE +aW +zC +Xj +fL +Ou +rg +dj +yD +Lq +XY +Py +hV +Aj +aW +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +bd +JV +NW +Wv +JV +Gv +Gv +UL +TC +ma +JN +eO +do +ds +tf +op +qP +ds +qu +bC +eh +JV +lI +HH +WD +dL +vD +Vw +sz +Qq +vr +Jp +ar +bA +oS +xV +jK +QN +br +Ro +Jh +jK +Nv +os +vd +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +WS +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(103,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +UQ +UQ +DJ +UQ +UQ +UQ +sD +ba +NK +ZO +Yq +sD +Uv +iL +uZ +uZ +uZ +uZ +Al +uZ +uZ +RM +wl +st +st +RC +Mf +LH +Oy +aW +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Yu +Wr +Of +nW +TR +Rk +eg +ey +Ht +YN +Or +Mj +mT +ds +mq +Ta +HM +ds +mG +ok +dQ +JV +PB +KD +gA +yN +yN +yN +yN +yN +yN +yN +yN +JT +oH +Pv +jK +jK +jK +xw +jK +jK +Nv +Nv +vd +HE +HE +HE +HE +HE +fx +fx +fx +fx +fx +HE +HE +Kj +Kj +Kj +HE +HE +HE +WS +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(104,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +UQ +VL +mO +by +Hf +Yt +Co +ba +JC +Hx +Qu +Hm +jd +XI +uZ +Bj +Bj +Bj +Bj +ZZ +uZ +xM +AB +Vc +dr +xN +mw +LH +Bc +aW +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +SD +VM +Ep +se +se +se +se +se +se +se +se +se +se +se +se +se +se +se +se +se +Zk +Fs +wD +Vu +AP +Gd +Kq +KE +vw +db +KE +tj +pY +ds +VW +tl +vG +ds +JV +JV +JV +JV +PB +yN +Be +yN +WO +lW +TK +TK +io +hf +yN +UN +jj +xV +II +VC +JZ +uN +JZ +VC +vd +vd +vd +vd +vd +vd +vd +vd +fx +Pk +JS +dO +fx +HE +HE +Kj +Kj +Kj +HE +HE +HE +WS +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(105,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +js +js +js +js +js +ku +Ss +Ds +Lb +Yt +sB +ba +NS +rQ +NB +sD +OK +oz +uZ +Bj +Bj +Bj +Bj +Bj +uZ +DK +eF +Mr +st +SR +Iw +Bd +fU +aW +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +ef +LX +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +HE +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +HE +mB +JV +JV +JV +JV +JV +JV +JV +JV +JV +JV +iT +ds +jb +wu +rL +ds +xj +Nb +bK +bK +Op +yN +Kk +MZ +fW +qq +nT +EC +gN +tG +yN +RR +pG +TH +KX +pb +xz +PQ +hk +PA +PC +uX +cb +cb +cb +cb +Lk +AD +gj +MJ +rd +FE +fx +HE +HE +Kj +Kj +Kj +HE +HE +HE +WS +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(106,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +Dg +jo +lc +dA +lL +Xh +DP +YF +fA +YF +sB +Sg +Lw +nN +bJ +sD +Ec +kH +uZ +Bj +Bj +Bj +Bj +Bj +uZ +pR +MG +cj +st +tK +Rr +mg +Nh +aW +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +zZ +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +JV +Tr +zY +ds +Ha +sf +aJ +ds +xj +oy +pH +zg +zg +yN +TF +RI +Oq +EB +Hg +Bb +Ix +lT +Fl +eL +Gg +xV +nQ +vd +fq +Ko +Tz +wy +TP +dY +vd +vd +vd +vd +Nv +uA +fx +bB +yu +GT +fx +HE +HE +Kj +Kj +Kj +HE +HE +HE +WS +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(107,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +Dg +BC +jQ +pq +YT +WN +pu +hT +pE +pO +Hm +te +aB +Ts +wb +sD +Ec +PS +uZ +Bj +Bj +Bj +Bj +Bj +uZ +NI +MG +zw +st +tK +Yj +PH +ys +aW +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +zZ +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +fj +Eb +Cd +ds +ds +ds +ds +ds +hh +PB +zg +zg +HE +yN +oc +eC +tN +at +Hr +UR +On +aw +fI +DM +jj +KP +bc +vd +Nv +Nv +Mv +Mv +Mv +Mv +Mv +HE +HE +vd +vd +JG +fx +fx +fx +fx +fx +HE +HE +Kj +Kj +Kj +HE +HE +HE +WS +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(108,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +Dg +MD +td +xP +EH +Vs +Ce +if +Qx +Yk +sD +wK +AJ +VZ +lo +Ql +Ec +af +uZ +Bj +Bj +Bj +Bj +Bj +uZ +cu +lQ +Ak +hB +nL +gt +aW +bl +aW +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +sg +jp +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +fj +fO +mP +fG +ca +CY +CY +JX +fG +PB +zg +HE +HE +yN +rs +Lx +LZ +Np +FR +ia +sO +FD +yN +PN +jj +Od +Mv +Mv +Mv +HA +Mv +YQ +YQ +YQ +Mv +HE +HE +HE +vd +JG +DI +vd +HE +HE +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +WS +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(109,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +Je +Je +Je +Je +Je +yK +Cx +EX +eq +OT +UQ +sD +sV +sB +sD +sD +YU +gE +uZ +uZ +Kd +Ms +Xb +uZ +uZ +MQ +XP +dM +uZ +fD +fD +zj +vv +se +se +se +se +se +se +se +se +se +se +se +se +se +se +se +se +se +se +jp +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +eY +eY +eY +fj +qG +qC +fG +Gf +Fc +yE +JX +fG +PB +zg +HE +HE +yN +cB +cB +cB +cB +cB +cB +cB +cB +cB +Uk +Fr +hZ +Oh +Mv +YQ +YQ +YQ +YQ +YQ +YQ +Mv +HE +HE +HE +vd +JG +uD +vd +HE +HE +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +WS +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(110,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +xW +BN +Fm +Om +gp +xn +Du +dK +Kg +CU +yv +aC +jd +uP +IX +PU +hn +Rw +aX +PO +Gn +vY +DF +vu +jE +sI +vY +BI +Fd +Bw +Xm +or +Bw +QW +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +eY +wC +Nx +gK +qG +mP +hX +yE +yE +yE +Mn +fG +We +zg +HE +HE +HE +cB +Cg +Cg +Cg +Cg +Cg +Cg +Cg +cB +xK +xv +hZ +Oh +HA +YQ +YQ +YQ +YQ +YQ +YQ +Mv +HE +HE +HE +vd +JG +tq +vd +HE +HE +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +WS +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(111,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +xW +BN +wS +ng +rv +rD +WN +lb +Bu +Ya +jf +cc +uV +Tw +mL +Bv +Ab +La +MV +bb +Sb +LC +AR +RD +gg +mz +RD +OO +gx +mu +VP +TI +cJ +fE +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +eY +iJ +LB +fj +px +mP +fG +yE +yE +Mn +un +fG +PB +zg +HE +HE +HE +cB +Cg +Cg +Cg +Cg +Cg +Cg +Cg +cB +kE +xv +hZ +Oh +Mv +YQ +YQ +YQ +YQ +YQ +YQ +Mv +HE +HE +HE +vd +JG +EL +vd +HE +HE +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +WS +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(112,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +xW +BN +tg +ZB +gl +rB +Vs +aj +uc +yo +Yv +Bl +jd +xl +nU +yG +cr +SA +CT +PO +Do +jN +PY +uE +tz +Xq +vh +mA +Hp +uZ +AX +zn +uZ +pQ +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +eY +eY +Pz +fj +fj +tF +fG +ln +yE +Mn +qY +fG +PB +zg +HE +HE +HE +cB +Cg +Cg +Cg +Cg +Cg +Cg +Cg +cB +dS +lV +bo +Mv +Mv +YQ +YQ +YQ +YQ +YQ +YQ +Mv +HE +HE +HE +vd +JG +Vz +vd +HE +HE +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +WS +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(113,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +fn +fn +fn +fn +fn +mW +Cx +JR +ib +Zu +UQ +Ao +kP +Ao +nv +Ao +nr +zt +FO +kL +kL +jy +kL +kL +Cs +WU +sn +WU +WU +uZ +uZ +uZ +HE +HE +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +eY +Lt +BW +eY +Qt +Cl +fG +gc +yE +YY +Mn +fG +PB +zg +zg +HE +HE +cB +Cg +Cg +Cg +Cg +Cg +Cg +Cg +cB +GC +ke +IZ +Mv +YQ +YQ +YQ +YQ +YQ +YQ +YQ +Mv +HE +HE +HE +vd +lR +ZK +vd +HE +HE +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +WS +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(114,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +UX +yz +we +vq +BM +Du +Cx +xY +ib +tY +Ao +Ct +yp +Ux +VY +wB +Oi +lD +FO +hL +kC +wL +iI +Eq +FO +mj +mb +zJ +WU +HE +HE +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +eY +RG +yZ +bX +Vf +yj +fG +ZS +yE +Jn +Jn +fG +PB +gA +zg +HE +HE +cB +Cg +Cg +Cg +Cg +Cg +Cg +Cg +cB +MR +RP +Nz +Mv +YQ +YQ +YQ +YQ +YQ +YQ +YQ +Mv +HE +HE +HE +vd +JG +Nv +vd +HE +HE +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +WS +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(115,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +UX +Ua +ye +SU +tp +WN +zh +Ru +KF +Wk +Hv +iz +Qw +ux +rw +Hv +jz +Wc +kL +re +xa +Lp +xa +sN +FO +sC +Tp +nn +WU +HE +HE +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +eY +eY +eY +eY +hq +QR +fG +tJ +MM +yE +yE +fG +PB +gA +zg +HE +HE +cB +Cg +Cg +Cg +Cg +Cg +Cg +cB +cB +Ii +WV +VO +Mv +YQ +fh +fh +YQ +YQ +YQ +YQ +Mv +HE +HE +vd +vd +md +vd +vd +HE +HE +HE +HE +HE +Kj +Kj +Kj +Kj +HE +HE +WS +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(116,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +UX +If +vn +ZI +Qs +qj +tZ +Cy +OJ +SK +Ao +Zl +Xt +Nk +dw +Ao +RH +Yd +TW +jR +Sh +At +Pp +Qh +FO +TS +uf +dt +WU +HE +HE +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +eY +wa +QR +fG +iN +MM +MM +MM +fG +CA +zg +zg +eY +fr +cB +cB +cB +cB +cB +cB +ps +cB +CW +vZ +sZ +vZ +Mv +lN +Mv +Mv +Mv +Mv +Mv +Mv +Mv +qa +qa +qa +Ei +gy +lx +qa +oN +oN +oN +oN +oN +Ci +Kj +Kj +Kj +HE +HE +WS +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(117,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +fn +fn +fn +fn +fn +CJ +SV +eG +Pl +mr +Ao +wY +kF +Ah +Ut +Ao +Gt +Nd +kL +FC +uK +mv +xa +eT +FO +bg +zX +mi +WU +HE +HE +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +eY +eY +QR +fG +MM +HN +MM +Dz +fG +QR +UC +DO +eY +mX +Ot +UZ +iG +WK +Jb +OS +GB +wv +qM +It +Ry +il +Ie +Qd +oO +nA +ch +uh +tx +iM +WJ +PD +mo +ik +WJ +Kz +RK +Fq +Rb +AZ +vy +Ye +pw +vX +Kj +Kj +Kj +Kj +Kj +WS +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(118,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +RQ +RQ +RQ +RQ +UQ +QV +dx +gQ +Li +mr +jV +Sm +Sm +da +IA +Ao +VJ +HU +FO +FA +VQ +xa +xa +OF +FO +Rm +Dh +Aw +WU +HE +HE +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +cE +cE +cE +eY +eY +eY +Dl +VI +fG +fG +fG +fG +fG +fG +je +hi +EM +Qp +zW +Gc +Wb +Wn +ts +kN +rS +zA +rq +WH +Di +Ca +Wy +St +jC +dR +ky +Yc +Nc +FP +Zw +ot +qH +iZ +gL +Vb +yI +Zb +kw +ER +aV +eB +lt +cP +BO +Kj +Kj +Kj +Kj +Kj +WS +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(119,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +RQ +RQ +RQ +RQ +UQ +UQ +DJ +UQ +UQ +UQ +Ao +Sm +Sm +Fg +IA +Ao +HC +Sv +FO +FA +KU +QF +aN +vt +FO +WU +WU +WU +WU +HE +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +cE +xo +VX +OA +wo +wo +EM +bs +vg +fa +MF +Vv +FY +EM +bn +Zy +qG +eY +km +Ze +gT +GP +fr +fr +fr +Yg +DA +gU +gS +WM +LS +hg +jn +Yg +qa +qa +qa +qa +qa +fV +cF +zc +qa +qa +qa +qa +qa +oN +oN +oN +oN +oN +WQ +Kj +Kj +Kj +Kj +Kj +xX +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(120,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +xW +RQ +RQ +RQ +RQ +RQ +WS +HE +HE +HE +Ao +Ao +Ao +Ao +ju +Ao +PJ +ro +FO +ML +FO +FO +FO +FO +FO +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +jw +jw +cE +cE +cE +cE +cE +cE +cE +cE +cE +cE +cE +Cz +rE +ac +Zi +Zi +Zi +ig +Zi +WX +Zi +Zi +Zi +Zi +JA +XR +XR +XR +XR +Ze +Dt +fr +fr +HE +HE +Kj +Kj +Kj +Rp +Vn +Rp +Kj +Kj +Kj +HE +HE +HE +HE +BA +BA +kJ +BA +BA +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +xX +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(121,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +xW +xW +xW +RQ +RQ +RQ +WS +HE +HE +HE +HE +HE +HE +KG +Ve +Ao +vQ +bp +FO +Zg +es +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +jw +jw +dU +Ps +Ps +Ps +Gj +Ps +kl +nC +Lz +nC +YX +Ps +FT +iv +eY +eY +eY +eY +eY +eY +eY +eY +XR +XR +zO +XR +XR +QJ +QJ +XR +de +EE +fr +HE +HE +HE +Kj +Kj +Kj +Hj +Vn +Hj +Kj +Kj +Kj +HE +HE +HE +HE +HE +BA +fo +zM +BA +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +xX +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(122,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +xW +xW +xW +RQ +RQ +WS +HE +HE +HE +HE +HE +HE +Mw +Ve +Ao +Ic +Gs +FO +Zg +SX +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +jw +jw +jw +jw +HE +HE +HE +jw +yS +GN +Us +Us +Us +Us +Us +Us +ec +ec +ec +pj +Mu +Mu +Ug +cE +HE +HE +HE +HE +HE +HE +HE +XR +QJ +QJ +QJ +QJ +QJ +QJ +XR +Ze +eP +fr +HE +HE +HE +Kj +Kj +fk +kx +qz +kx +SI +Kj +Kj +HE +HE +HE +HE +HE +BA +Pn +zM +BA +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +xX +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(123,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +xW +xW +xW +IY +HE +HE +HE +HE +HE +HE +jW +EO +Es +Zj +UV +iP +EO +Ol +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +YL +np +Io +jw +jw +jw +jw +jw +tb +GN +Us +QG +QG +QG +RB +Us +UE +hJ +UE +UE +UE +nI +Ug +cE +HE +HE +HE +HE +HE +HE +HE +XR +QJ +QJ +QJ +QJ +QJ +QJ +XR +tv +ag +fr +HE +HE +HE +Kj +EN +EN +EN +Qy +EN +EN +EN +Kj +HE +HE +HE +HE +HE +BA +XX +Nw +BA +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +xX +Kj +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(124,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +xW +xW +IY +xW +xW +xW +xW +xW +xW +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +cH +sv +mM +wi +Lh +Md +Rq +Rx +xG +Ww +LA +QG +QG +QG +QG +Us +iU +Oa +LK +oX +UE +pa +Ug +cE +HE +HE +HE +HE +HE +HE +HE +XR +QJ +QJ +QJ +QJ +QJ +QJ +QJ +Er +As +fr +HE +HE +HE +EN +EN +EN +lu +og +Nn +EN +EN +EN +HE +HE +HE +HE +HE +BA +XX +YI +KO +KO +KO +KO +KO +KO +KO +KO +KO +KO +HE +HE +HE +HE +HE +HE +WS +HE +Kj +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(125,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +IY +xW +xW +xW +xW +xW +xW +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +dp +jw +lm +jw +zz +Pw +Zf +jw +VU +VU +Us +QG +QG +QG +QG +Us +iU +dc +dc +oX +UE +oh +Ug +cE +HE +HE +HE +HE +HE +HE +HE +XR +QJ +QJ +QJ +QJ +QJ +QJ +XR +Er +aG +fr +HE +HE +HE +EN +EN +sl +GE +Pm +mm +nm +EN +EN +HE +HE +HE +HE +HE +BA +XX +Cu +KO +Kl +Kl +Kl +Kl +Kl +Kl +Kl +Kl +KO +KO +HE +HE +HE +HE +HE +WS +HE +Kj +Kj +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(126,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +ve +Nl +Us +Us +Us +Us +Us +Us +Cb +Cb +Us +QG +QG +QG +QG +Us +NE +FS +FS +qw +UE +hj +Ug +cE +HE +HE +HE +HE +HE +HE +HE +XR +QJ +QJ +QJ +QJ +QJ +QJ +XR +Cn +eP +fr +HE +HE +HE +EN +EN +MY +mK +sR +mK +jO +EN +EN +HE +HE +HE +HE +HE +BA +fo +OI +KO +Kl +Kl +Kl +Kl +Kl +Kl +Kl +Kl +Kl +KO +HE +HE +HE +HE +HE +WS +HE +HE +Kj +Kj +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(127,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +xW +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +bH +Us +rj +gq +Us +xu +CZ +Rl +gz +Us +Us +Us +vC +fF +Us +Us +ov +sq +gn +pj +UE +uw +zf +cE +HE +HE +HE +HE +HE +HE +HE +XR +QJ +QJ +QJ +QJ +QJ +QJ +XR +Er +Bf +fr +HE +HE +HE +EN +EN +kW +cA +Rz +cA +UW +EN +EN +HE +HE +HE +HE +HE +BA +XX +nG +KO +Kl +Kl +Kl +Kl +Kl +Kl +Kl +Kl +Kl +KO +HE +HE +HE +HE +HE +WS +HE +HE +HE +Kj +Kj +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(128,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +xW +xW +RQ +RQ +RQ +RQ +RQ +RQ +Kj +Kj +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +oM +pt +Aq +Xs +sp +HD +Mg +ry +JD +az +lf +FL +RN +az +oB +pj +wN +CL +iK +jY +UE +dg +Ug +cE +HE +HE +HE +HE +HE +VS +VS +VS +VS +VS +VS +VS +VS +VS +VS +yV +En +fr +HE +HE +HE +EN +EN +lh +mK +UW +mK +Uc +EN +EN +HE +HE +HE +HE +HE +BA +XX +YP +KO +Kl +Kl +Kl +Kl +Kl +Kl +fy +Kl +Kl +KO +HE +HE +HE +HE +HE +WS +HE +HE +HE +HE +Kj +Kj +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(129,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +xW +xW +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +kB +wd +Gz +sk +TB +hz +rR +Xa +WG +pC +qN +ij +jS +zB +pK +XN +Dj +Cr +kd +vk +UE +cM +iv +cE +HE +HE +HE +HE +HE +VS +KZ +KZ +KZ +KZ +KZ +KZ +KZ +KZ +VS +Ws +Sz +fr +HE +HE +HE +EN +EN +jc +mK +UW +mK +iS +EN +EN +HE +HE +HE +HE +HE +BA +QO +Ue +KO +Kl +Kl +Kl +Kl +Kl +Kl +fy +Kl +Kl +KO +HE +HE +HE +HE +HE +WS +HE +HE +HE +HE +HE +Kj +Kj +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(130,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +xW +xW +xW +xW +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +Kj +Us +Us +Us +Us +fl +QI +sH +QM +wm +lf +RY +jl +wn +bU +pj +yY +rC +Ee +xB +UE +Lv +Ug +cE +HE +HE +HE +HE +HE +VS +KZ +KZ +KZ +KZ +KZ +KZ +KZ +KZ +VS +yC +Bf +fr +HE +HE +HE +EN +EN +EN +UU +fv +ID +EN +EN +EN +HE +HE +HE +HE +HE +BA +fo +bG +KO +Kl +Kl +Kl +Kl +Kl +Kl +Kl +Kl +Kl +KO +HE +HE +HE +HE +HE +WS +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(131,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +xW +xW +xW +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +Kj +HE +HE +HE +uC +HX +HX +HX +HX +HX +HX +HX +aM +Zr +lq +pj +pj +pj +pj +UE +UE +pU +Ug +cE +HE +HE +HE +HE +HE +VS +KZ +KZ +KZ +KZ +KZ +KZ +KZ +KZ +VS +yC +Ml +fr +HE +HE +HE +HE +EN +EN +EN +EN +EN +EN +EN +HE +HE +HE +HE +HE +HE +BA +XX +zM +FI +Kl +Kl +Kl +Kl +Kl +Kl +Kl +Kl +Kl +KO +HE +HE +HE +HE +HE +WS +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(132,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +xW +xW +xW +xW +xW +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +HE +uC +BT +Qa +kZ +Cp +JJ +OD +HX +sL +MB +Rl +qS +eU +GQ +Mu +cE +Tf +Mu +Ug +cE +HE +HE +HE +HE +HE +VS +KZ +KZ +KZ +KZ +KZ +KZ +KZ +KZ +KZ +mp +EV +fr +HE +HE +HE +HE +HE +EN +EN +EN +EN +EN +HE +HE +HE +HE +HE +HE +HE +BA +XX +zM +KO +Kl +Kl +Kl +Kl +Kl +Kl +Kl +Kl +Kl +KO +HE +HE +HE +HE +HE +WS +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(133,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +xW +xW +xW +xW +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +HE +uC +IR +vF +sm +kc +TN +dy +Dm +GR +yM +Rl +Rl +Rl +ni +Am +cE +WT +Mu +Ug +cE +HE +HE +HE +HE +HE +VS +KZ +KZ +KZ +KZ +KZ +KZ +KZ +KZ +VS +yC +Bf +fr +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +BA +XX +qD +KO +Kl +Kl +Kl +Kl +Kl +Kl +Kl +Kl +Kl +KO +HE +HE +HE +HE +HE +WS +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(134,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +xW +xW +xW +xW +xW +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +HE +uC +AI +fK +Ba +Jm +zK +OG +HX +YV +Ih +pS +CZ +Rl +Us +SO +SO +SO +cE +wI +cE +HE +HE +HE +HE +HE +VS +KZ +KZ +KZ +KZ +KZ +KZ +KZ +KZ +VS +yC +EW +fr +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +BA +fo +fN +KO +Kl +Kl +Kl +Kl +Kl +Kl +Kl +Kl +Kl +KO +HE +HE +HE +HE +HE +WS +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(135,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +xW +xW +xW +xW +xW +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +HE +uC +ND +jL +jL +jL +jL +jL +jL +fg +xg +xU +Ph +Kc +Us +Am +GV +cE +Mu +Ug +cE +HE +HE +HE +HE +HE +VS +KZ +KZ +VS +VS +UK +VS +VS +VS +VS +vV +Fh +fr +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +BA +pf +jr +KO +Kl +Kl +Kl +Kl +Kl +Kl +Kl +Kl +Kl +KO +HE +HE +HE +HE +HE +WS +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(136,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +xW +xW +xW +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +Kj +HE +HE +HE +HE +ND +ah +ah +ah +ah +ah +jL +ty +Ih +Fw +uQ +uQ +EA +uQ +cE +cE +Mu +bu +cE +cE +cE +cE +cE +cE +VS +VS +VS +VS +kS +qI +Uo +Uo +pP +pc +tc +QD +fr +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +BA +fo +zM +KO +Kl +Kl +Kl +Kl +Kl +Kl +Kl +Kl +Kl +KO +HE +HE +HE +HE +HE +WS +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(137,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +xW +xW +xW +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +Kj +HE +HE +HE +HE +ND +ah +ah +ah +ah +ah +jL +UP +Wx +uQ +qr +bF +Ig +rl +aD +JB +Hl +bW +va +va +va +Yb +Yb +Yb +va +va +va +uU +uo +KC +Qg +py +LF +Aa +yC +eW +fr +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +BA +kD +BA +KO +Kl +Kl +Kl +Kl +Kl +Kl +Kl +Kl +Kl +KO +HE +HE +HE +HE +HE +WS +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(138,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +IY +xW +xW +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +Kj +Kj +HE +HE +HE +ND +ah +ah +ah +ah +ah +jL +Ri +hx +Dn +IL +yx +Dx +gI +SJ +Bg +Hl +zH +cE +cE +cE +cE +cE +cE +cE +cE +cE +cE +LF +LF +LF +py +LF +fr +aH +JH +fr +dX +dX +dX +dX +dX +dX +dX +dX +dX +dX +dX +dX +dX +dX +dX +BA +BA +BA +fo +ip +KO +KO +Kl +Kl +Kl +Kl +Kl +Kl +Kl +KO +KO +HE +HE +HE +HE +HE +WS +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(139,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +IY +xW +xW +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +Kj +HE +HE +HE +ND +ND +ND +ND +ND +ND +ND +rX +GG +uQ +dl +DX +EA +uQ +cE +cE +cE +wI +cE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +LF +Ex +eR +fr +uG +KB +iR +Tg +ly +vb +yc +Lg +wr +Is +ss +Mm +HW +Ar +Mz +eu +mF +AY +RZ +pg +pg +WY +jH +fN +KO +KO +KO +KO +KO +KO +KO +KO +KO +HE +HE +HE +HE +HE +HE +WS +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(140,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +xW +IY +xW +xW +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +Us +Us +Us +EA +oL +oU +EA +HE +HE +cE +Mu +Ug +cE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +LF +py +kG +fr +ay +BB +pr +cQ +tS +hs +Ur +Rh +Rh +iA +MK +Qz +QZ +rP +XA +gW +Uj +zV +BA +aT +zM +tQ +pg +QP +hH +kT +JY +JY +gd +rA +gm +Mk +HE +HE +HE +HE +HE +HE +HE +WS +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(141,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +xW +xW +IY +xW +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +EA +hp +kK +EA +HE +HE +cE +Mu +Ug +cE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +LF +py +py +fr +RU +vT +XG +dX +HS +dT +pi +Ai +TQ +TQ +TQ +IO +TQ +TQ +YR +eM +Gq +pd +pd +pd +cp +pd +BA +BA +BA +BA +BA +BA +Mk +SQ +gJ +Mk +HE +HE +HE +HE +HE +HE +HE +WS +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(142,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +xW +xW +IY +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +EA +EA +EA +EA +HE +HE +cE +Am +Ug +cE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +LF +py +ks +ks +iC +Tu +fe +dP +dP +cN +cN +dP +dP +IO +IO +IO +IO +TQ +TQ +sc +Em +pd +AT +AT +AT +pd +HE +HE +HE +HE +HE +HE +Mk +Mk +OB +Mk +HE +HE +HE +HE +HE +HE +HE +WS +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(143,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +xW +xW +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +cE +Xo +Ug +cE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +LF +py +ks +yX +JI +ej +ne +dP +kr +kr +kr +kr +dP +IO +IO +IO +IO +IO +TQ +gM +TY +pd +AT +AT +AT +pd +HE +HE +HE +HE +HE +HE +HE +Mk +OB +Mk +HE +HE +HE +HE +HE +HE +HE +WS +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(144,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +xW +xW +xW +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +cE +pJ +zf +cE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +LF +Oo +ks +vS +vf +hr +nc +dP +kr +kr +kr +kr +dP +IO +IO +IO +IO +IO +TQ +pz +Ek +pd +AT +AT +AT +pd +HE +HE +HE +HE +HE +HE +HE +Mk +OB +Mk +Mk +HE +HE +HE +HE +HE +HE +WS +HE +Az +Az +Az +Az +HE +HE +Kj +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(145,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +xW +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +cE +cE +cE +cE +CB +Ug +cE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +LF +LF +py +ks +bw +DH +TV +yO +dP +kr +kr +kr +kr +dP +IO +IO +IO +IO +IO +TQ +GU +Iv +pd +AT +AT +AT +pd +HE +HE +HE +HE +HE +HE +HE +Mk +BF +ql +Mk +Mk +Mk +Mk +Mk +Mk +Mk +Za +Mk +Az +bL +bQ +Az +HE +HE +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(146,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +xW +xW +xW +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +cE +ff +QQ +ga +BU +kA +cE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +LF +TZ +py +ks +yB +ut +XT +aK +dP +kr +kr +kr +kr +dP +IO +IO +IO +IO +IO +TQ +Qb +vM +AT +AT +AT +AT +pd +HE +HE +HE +HE +HE +HE +HE +Mk +it +Vp +ka +ka +gv +gv +gv +ka +ka +jP +ka +MC +ME +up +Az +HE +HE +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(147,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +xW +xW +xW +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +cE +tt +DE +cE +dq +Mu +cE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +LF +uW +py +ks +ks +ks +du +ks +dP +dP +aF +dP +dP +dP +TQ +TQ +cg +TQ +TQ +TQ +qW +cv +pd +AT +AT +AT +pd +HE +HE +HE +HE +HE +HE +HE +Mk +bf +Oj +Mk +Mk +Mk +Mk +Mk +Mk +Mk +DZ +hA +Az +cX +nx +Az +HE +HE +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(148,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +xW +xW +xW +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +cE +cE +cE +cE +Rt +cE +cE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +LF +WL +py +fM +TD +Ub +oW +Ub +TD +TD +TD +Ul +ft +py +py +py +py +py +LF +zk +am +MN +pF +pF +pF +pF +pF +HE +HE +HE +HE +HE +HE +HE +Mk +wP +Mk +Mk +HE +HE +HE +HE +HE +Mk +Za +Mk +Az +Az +Az +Az +HE +HE +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(149,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +xW +xW +xW +xW +xW +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +tR +xc +SF +tR +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +LF +LF +py +Pa +LF +LF +LF +LF +LF +LF +py +ul +WL +LF +LF +LF +Qg +py +GK +ai +rJ +lj +Su +vP +Pi +rf +ww +ww +HE +HE +Kj +Kj +HE +HE +Mk +bf +xI +Mk +HE +HE +HE +HE +HE +HE +WS +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(150,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +xW +xW +xW +xW +xW +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +tR +Jv +Ll +tR +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +LF +LF +LF +LF +HE +HE +HE +HE +LF +LF +EK +LF +LF +HE +LF +LF +LF +LF +dX +rJ +lO +hN +Jo +ck +ck +dC +ww +Kj +Kj +Kj +Kj +Kj +HE +Mk +bf +hA +Mk +HE +HE +HE +HE +HE +HE +WS +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(151,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +xW +xW +xW +xW +xW +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +tR +tR +Ll +tR +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +LF +EK +LF +HE +HE +HE +HE +HE +HE +dX +rJ +lj +zu +bY +ck +hm +ya +Wh +Kj +Kj +Kj +Kj +Kj +HE +Mk +bf +Mk +Mk +HE +HE +HE +HE +HE +HE +WS +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(152,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +xW +xW +xW +xW +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +tR +Ll +tR +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +LF +EK +LF +HE +HE +HE +HE +HE +HE +dX +rJ +lj +hN +hN +Vj +uz +Qc +DR +Ag +tT +PV +Kj +Kj +HE +Kv +bf +Mk +HE +HE +HE +HE +HE +HE +HE +WS +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(153,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +xW +xW +xW +xW +xW +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +tR +Ll +tR +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +LF +ul +LF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +mc +Vk +Vx +hN +RO +uz +Lf +ww +Il +cL +ua +Kj +Kj +Kj +Zh +xe +Mk +HE +HE +HE +HE +HE +HE +HE +WS +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(154,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +xW +xW +xW +xW +xW +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +tR +Ll +tR +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +LF +ul +jX +ZF +Xv +LD +EU +Pb +Pb +ZF +yW +PT +eZ +Dq +zv +qo +lC +wH +ON +JM +ua +Kj +Kj +Kj +vR +hA +Mk +HE +HE +HE +HE +HE +HE +HE +WS +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(155,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +xW +xW +xW +xW +xW +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +tR +Ll +tR +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +LF +tP +TD +UI +Dw +dN +LR +LR +Ym +ZF +Ip +ES +Df +hN +ZE +Ck +VK +ww +TL +Xy +ua +Kj +Kj +Kj +DV +hA +Mk +HE +HE +HE +HE +HE +HE +HE +WS +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(156,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +xW +xW +xW +xW +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +tR +Ll +tR +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +LF +ul +py +ZF +Xv +Xv +LD +LD +Pb +Mp +To +rn +hN +hN +yT +Ck +DS +DR +Bs +tT +qh +Kj +Kj +Kj +Mk +hA +Mk +HE +HE +HE +HE +HE +HE +HE +WS +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(157,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +xW +xW +xW +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +tR +Ll +tR +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +LF +ul +ZF +ZF +al +Xv +LD +Pb +Pb +ZF +To +fY +SL +Ky +ck +Rg +kU +IG +Kj +Kj +Kj +Kj +Kj +HE +Mk +Xl +Mk +HE +HE +HE +HE +HE +HE +HE +WS +HE +HE +HE +HE +HE +Kj +Kj +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(158,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +xW +xW +xW +xW +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +tR +ge +tR +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +XU +QX +ZF +cs +Xv +Xv +Xv +Pb +GM +ZF +zG +zG +hN +AS +ck +ck +lz +ww +Kj +Kj +Kj +Kj +Kj +HE +Mk +hA +Mk +HE +HE +HE +HE +HE +HE +HE +WS +HE +HE +HE +HE +Kj +Kj +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(159,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +xW +xW +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +tR +Ll +tR +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +XU +Me +ZF +Ge +Xv +Xv +Pb +Pb +Lo +Na +Ap +Ap +wV +hU +lZ +GL +ww +ww +Kj +Kj +HE +HE +HE +HE +Mk +hA +Mk +HE +HE +HE +HE +HE +HE +HE +WS +HE +HE +HE +Kj +Kj +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(160,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +xW +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +tR +Ll +tR +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +XU +DQ +ZF +wq +Xv +Pb +QK +GM +GM +Na +Da +ti +Na +ww +ww +ww +ww +HE +HE +HE +HE +HE +HE +HE +Mk +hA +Mk +HE +HE +HE +HE +HE +HE +HE +WS +HE +HE +Kj +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(161,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +xW +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +tR +Ll +tR +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +XU +DQ +Na +Na +Na +Na +Na +Na +Na +Na +yh +lE +Na +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Mk +Mk +hA +Mk +HE +HE +HE +HE +HE +HE +HE +WS +HE +Kj +Kj +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(162,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +xW +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +tR +Ll +tR +tR +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +XU +XU +DQ +Na +Nt +Nt +Nt +Nt +us +Na +mU +Va +Dp +Na +Pf +Pf +Pf +Pf +Pf +gY +Mk +Mk +Mk +Mk +Mk +sh +hA +Mk +HE +HE +HE +HE +HE +HE +HE +WS +HE +Kj +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(163,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +xW +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +tR +Ll +XO +tR +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +XU +BR +Me +Na +Nt +Nt +Nt +Nt +Nt +ZP +yn +be +gX +Iz +gY +Cj +nj +Gr +Pf +jI +cd +hA +hA +hA +hA +hA +hA +Mk +HE +HE +HE +HE +HE +HE +HE +xX +Kj +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(164,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +xW +xW +xW +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +tR +Ll +Jv +tR +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +XU +BR +Me +dz +Nt +Nt +Nt +Nt +Nt +Sd +TM +SC +uF +mR +zD +Nq +OV +gr +nE +jI +fJ +hA +Bq +Ew +bh +QA +Mk +Mk +HE +HE +HE +HE +HE +HE +Kj +xX +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(165,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +xW +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +tR +Ll +Jv +tR +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +XU +XU +DQ +Na +Nt +Nt +Nt +Nt +Nt +Cm +UO +dG +Gp +aL +gY +sK +ph +Kx +Pf +gY +Mk +Mk +Mk +Mk +Mk +Mk +Mk +HE +HE +HE +HE +HE +HE +HE +Kj +xX +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(166,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +xW +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +qU +qU +tR +dv +tR +tR +tR +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +XU +DQ +Na +Nt +Nt +Nt +Nt +Nt +Na +tX +ZR +ho +gY +gY +yH +Nr +lK +Pf +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +xX +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(167,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +xW +xW +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +qU +fd +bD +Vg +Jv +Si +tR +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +XU +DQ +Na +Na +Na +Na +Na +Na +Na +iF +bq +Ls +gY +ct +gh +Nr +kf +Pf +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +xX +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(168,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +qU +xm +vx +hM +Jy +NM +tR +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +XU +XU +XU +Me +JL +GJ +ak +Yi +Vy +iF +lA +ko +oD +pL +wF +mf +oi +wX +OQ +Pf +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +xX +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(169,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +xW +RQ +xW +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +qU +tR +tR +qU +Wt +tR +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +XU +Ny +Et +RS +JL +JL +nu +OC +Vy +tE +pn +Go +Gl +wf +gY +HO +ad +eQ +Pf +Pf +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +xX +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(170,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +xW +xW +xW +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +tR +Jv +Ne +tR +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +XU +Jr +cT +Ff +SZ +Im +bk +vj +Vy +eH +BG +vB +Fj +ZQ +gY +Pf +Pf +Pf +Pf +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +Kj +Kj +Kj +WS +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(171,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +xW +xW +xW +xW +xW +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +tR +Jv +Ne +tR +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +XU +za +nF +rK +ud +JL +rM +UD +Ok +ez +rr +Gm +Bk +zq +BZ +Na +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +Kj +Kj +HE +HE +WS +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(172,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +xW +xW +RQ +xW +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +tR +XH +Ne +tR +tR +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +XU +ao +Me +XU +JL +JL +JL +JL +JL +Na +Na +Na +uJ +cK +Fk +Na +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +Kj +Kj +HE +HE +WS +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(173,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +xW +xW +xW +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +tR +sw +Ne +Jv +tR +tR +tR +tR +tR +tR +XU +XU +XU +XU +XU +XU +XU +XU +XU +XU +XU +BR +Me +XU +HE +HE +HE +HE +HE +HE +HE +Na +kj +ep +JF +Na +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +Kj +Kj +Kj +HE +HE +HE +WS +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(174,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +xW +xW +xW +xW +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +tR +tR +NT +pV +pm +pV +Pe +Pe +Pe +pV +EP +Vd +Gy +Gy +Gy +Vd +Vd +nD +mC +QY +QY +QY +kQ +XU +HE +HE +HE +HE +HE +HE +HE +Na +PP +Qv +Na +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +Kj +Kj +Kj +Kj +HE +HE +HE +WS +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(175,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +xW +xW +xW +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +tR +tR +tR +tR +tR +tR +tR +tR +tR +XU +XU +XU +XU +XU +XU +Dr +Oe +aS +Sp +zd +qZ +XU +XU +HE +HE +HE +HE +HE +HE +HE +Na +ap +vU +Na +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +HE +HE +HE +HE +HE +WS +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(176,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +xW +xW +xW +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +XU +XU +tC +QB +XU +XU +XU +XU +HE +HE +HE +HE +HE +HE +HE +HE +Da +DL +fT +Na +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +WS +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(177,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +xW +xW +xW +xW +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +XU +XU +XU +XU +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +CX +ub +OY +bE +HE +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +WS +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(178,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +xW +xW +xW +xW +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +WS +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(179,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +xW +xW +xW +xW +xW +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +Kj +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +WS +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(180,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +xW +xW +xW +xW +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +Kj +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +WS +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(181,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +xW +xW +xW +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +HE +HE +HE +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +WS +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(182,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +xW +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +WS +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(183,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +xW +xW +xW +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +WS +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(184,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +xW +xW +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +WS +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(185,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +xW +xW +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +WS +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(186,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +xW +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +WS +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(187,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +xW +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +WS +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(188,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +xW +xW +xW +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +WS +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(189,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +xW +xW +xW +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(190,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +xW +xW +xW +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(191,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +xW +xW +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(192,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +xW +xW +xW +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(193,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +xW +xW +xW +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(194,1,1) = {" +AQ +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +IY +Xz +IY +IY +IY +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +xX +xX +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +WS +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +Xz +AQ +"} +(195,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +xW +xW +xW +xW +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(196,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +xW +xW +xW +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(197,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +xW +xW +xW +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(198,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +xW +xW +xW +xW +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(199,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +xW +xW +xW +xW +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(200,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +RQ +xW +xW +xW +xW +xW +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(201,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +xW +xW +xW +xW +xW +xW +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(202,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +xW +xW +xW +xW +xW +xW +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(203,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +xW +xW +xW +xW +xW +xW +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(204,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +xW +xW +xW +xW +xW +xW +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(205,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +xW +xW +xW +xW +xW +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(206,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +xW +xW +xW +xW +xW +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(207,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +xW +xW +xW +xW +xW +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(208,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +xW +xW +xW +xW +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +fZ +mh +wj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +LE +LE +LE +LE +LE +LE +LE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(209,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +xW +xW +xW +xW +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +LE +LE +LE +LE +LE +LE +LE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(210,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +xW +xW +xW +xW +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +LE +LE +LE +LE +LE +LE +LE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(211,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +xW +xW +xW +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +LE +LE +LE +ex +LE +LE +LE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(212,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +xW +xW +xW +xW +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +LE +LE +ex +LE +LE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(213,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +xW +xW +xW +xW +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +LE +Wz +LE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(214,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +xW +xW +xW +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +GW +Gu +hd +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(215,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +xW +xW +xW +xW +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(216,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +RQ +xW +xW +xW +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(217,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +xW +xW +xW +xW +xW +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(218,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +xW +xW +xW +xW +xW +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(219,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +xW +xW +xW +xW +xW +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(220,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +xW +xW +xW +xW +xW +xW +xW +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +Kj +Kj +Kj +Kj +Kj +Kj +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(221,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +xW +xW +xW +xW +xW +xW +xW +xW +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(222,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +xW +xW +xW +RQ +RQ +xW +xW +xW +xW +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(223,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +xW +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(224,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(225,1,1) = {" +AQ +xW +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +HE +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(226,1,1) = {" +AQ +xW +xW +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(227,1,1) = {" +AQ +xW +xW +xW +xW +RQ +RQ +RQ +RQ +RQ +xW +xW +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(228,1,1) = {" +AQ +xW +xW +xW +xW +RQ +RQ +xW +xW +xW +xW +xW +NR +NR +NR +NR +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(229,1,1) = {" +AQ +xW +RQ +RQ +xW +xW +xW +xW +RQ +RQ +xW +xW +xW +xW +ZN +NR +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(230,1,1) = {" +AQ +RQ +RQ +RQ +RQ +xW +xW +RQ +RQ +RQ +xW +xW +xW +xW +Ch +NR +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(231,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +xW +xW +xW +Ch +NR +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(232,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +NR +NR +NR +NR +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(233,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(234,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(235,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(236,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(237,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(238,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(239,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(240,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(241,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(242,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(243,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(244,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(245,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(246,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(247,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(248,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(249,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(250,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(251,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(252,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(253,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(254,1,1) = {" +AQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +Xz +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +RQ +AQ +"} +(255,1,1) = {" +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +"} diff --git a/maps/cynosure/cynosure-2.dmm b/maps/cynosure/cynosure-2.dmm new file mode 100644 index 0000000000..d723bb4373 --- /dev/null +++ b/maps/cynosure/cynosure-2.dmm @@ -0,0 +1,118950 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aaT" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/gnd) +"abA" = ( +/obj/machinery/ai_status_display, +/turf/simulated/wall, +/area/surface/station/engineering/atmos) +"abF" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/camera/network/civilian{ + c_tag = "CIV - Bar Backroom"; + dir = 1 + }, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/bar) +"ack" = ( +/obj/structure/noticeboard{ + pixel_y = 30 + }, +/obj/structure/table/woodentable, +/obj/item/weapon/storage/photo_album{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/weapon/storage/photo_album, +/obj/item/device/camera_film, +/obj/item/device/camera_film, +/obj/item/device/camera{ + desc = "A polaroid camera. 30 photos left."; + name = "detectives camera"; + pictures_left = 30; + pictures_max = 30; + pixel_x = 4; + pixel_y = -4 + }, +/obj/item/device/camera{ + desc = "A polaroid camera. 30 photos left."; + name = "detectives camera"; + pictures_left = 30; + pictures_max = 30 + }, +/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; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning{ + 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/machinery/light/small, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/east/gnd) +"acC" = ( +/obj/effect/floor_decal/spline/plain, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -21 + }, +/turf/simulated/floor/wood/sif, +/area/surface/station/chapel/main) +"acH" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/cable/green, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/window/reinforced/polarized/full{ + id = "secpro" + }, +/obj/machinery/status_display, +/turf/simulated/floor/plating, +/area/surface/station/security/processing) +"adA" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/solars/northeast) +"adQ" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/green/border, +/obj/machinery/station_map{ + dir = 1; + pixel_y = -32 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/north) +"aeh" = ( +/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/machinery/light/small, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/east/gnd) +"aeD" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/gnd) +"afr" = ( +/obj/machinery/clonepod/full, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/purple/border, +/obj/machinery/button/remote/airlock{ + dir = 4; + id = "GeneticsDoor"; + name = "Door Control"; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/cloning) +"afT" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/closet/secure_closet/personal/patient, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/machinery/newscaster{ + pixel_y = -28 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/ward) +"agk" = ( +/obj/machinery/atmospherics/binary/pump/on{ + name = "Ports to Waste" + }, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/structure/extinguisher_cabinet{ + dir = 8; + pixel_x = -30 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"agl" = ( +/obj/structure/sign/warning/high_voltage, +/turf/simulated/wall/r_wall, +/area/surface/station/security/briefing_room) +"agr" = ( +/obj/machinery/door/airlock/hatch{ + icon_state = "door_locked"; + id_tag = "engine_access_hatch"; + locked = 1; + name = "Reactor Access Hatch"; + req_access = list(11); + req_one_access = null + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/engineering/reactor_room) +"agu" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/machinery/camera/network/ground_floor{ + c_tag = "Ground Floor - Garage"; + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/garage) +"aie" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/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 = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/turf/simulated/floor/tiled, +/area/surface/station/arrivals/cynosure) +"aif" = ( +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/solar, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "steel_dirty"; + initial_flooring = /decl/flooring/tiling/steel_dirty + }, +/area/surface/outside/station/solar/northeastsolar) +"ajl" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/structure/closet/secure_closet/medical1, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/etc) +"ajt" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 8 + }, +/obj/effect/floor_decal/rust/steel_decals_rusted2{ + dir = 8 + }, +/obj/effect/floor_decal/rust/steel_decals_rusted1{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/storage) +"ajN" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/old_tile/gray, +/area/surface/station/janitor) +"akg" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/cafeteria) +"aln" = ( +/obj/machinery/smartfridge/secure/extract, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/rnd/xenobiology) +"als" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/hydro, +/area/surface/station/rnd/xenobiology/xenoflora) +"alv" = ( +/obj/structure/sink/kitchen{ + dir = 4; + pixel_x = -12 + }, +/turf/simulated/floor/outdoors/dirt/sif{ + outdoors = 0 + }, +/area/surface/outside/plains/station) +"alK" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled/dark, +/area/surface/station/engineering/hallway/reactor) +"amb" = ( +/obj/effect/floor_decal/industrial/warning/dust/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor + }, +/area/surface/outside/plains/station) +"amF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/navbeacon/patrol{ + location = "SH1"; + next_patrol = "PK5" + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central6, +/obj/effect/floor_decal/steeldecal/steel_decals_central2, +/obj/structure/noticeboard{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/south) +"amJ" = ( +/obj/structure/catwalk, +/obj/effect/floor_decal/spline/plain{ + dir = 9 + }, +/turf/simulated/floor/water/deep{ + has_fish = 0 + }, +/area/surface/outside/station/reactorpond) +"amW" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/rnd/misc_lab) +"ane" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/hallway/primary/groundfloor/south) +"anI" = ( +/obj/structure/disposalpipe/trunk, +/obj/structure/disposaloutlet{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/station/quartermaster/delivery) +"anP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/xenobiology) +"aop" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/briefing_room) +"aoK" = ( +/obj/structure/shuttle/engine/propulsion/burst/left{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/shuttle/large_escape_pod1/station) +"apb" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/dust, +/obj/machinery/airlock_sensor/airlock_exterior{ + id_tag = "msouth_airlock_ext_sensor"; + master_tag = "msouth_airlock"; + pixel_x = 24; + pixel_y = 31 + }, +/obj/effect/map_helper/airlock/sensor/ext_sensor, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor + }, +/area/surface/station/hallway/primary/groundfloor/south) +"apd" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "hop_office" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable/green, +/turf/simulated/floor/plating, +/area/surface/station/crew_quarters/heads/hop) +"apr" = ( +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "englockdown"; + layer = 3.3; + name = "Engineering Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/workshop) +"apM" = ( +/obj/structure/table/standard, +/obj/item/device/assembly/igniter, +/turf/simulated/floor/reinforced, +/area/surface/station/rnd/misc_lab) +"apV" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"aql" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/lino, +/area/surface/station/security/detectives_office) +"aqn" = ( +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outside/plains/station) +"aqK" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/station/solar/northeastsolar) +"arp" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/foyer) +"arr" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + id = "biohazard"; + layer = 3.3; + name = "Biohazard Shutter" + }, +/turf/simulated/floor/plating, +/area/surface/station/rnd/exploration) +"arT" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/border_only, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/north/gnd) +"asC" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/north/gnd) +"asP" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/north/gnd) +"asQ" = ( +/turf/simulated/wall, +/area/surface/station/maintenance/solars/northeast) +"asW" = ( +/obj/item/weapon/stool/padded{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lime/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled/hydro, +/area/surface/station/hydroponics) +"ata" = ( +/obj/structure/cable/cyan{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/cyan{ + d1 = 16; + d2 = 0; + icon_state = "16-0" + }, +/obj/machinery/power/sensor{ + name = "Powernet Sensor - Reactor Power"; + name_tag = "Reactor Power" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/zpipe/up/supply{ + dir = 1 + }, +/obj/effect/zone_divider, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_airlock) +"atd" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/north/gnd) +"ate" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 5 + }, +/turf/simulated/floor/tiled/asteroid_steel, +/area/surface/outside/plains/station) +"atU" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/east) +"aug" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/cable{ + d1 = 16; + d2 = 0; + icon_state = "16-0" + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/zpipe/up/supply{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/kitchen) +"aul" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/hallway/primary/groundfloor/north) +"auU" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/firstaid/fire, +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/weapon/extinguisher, +/obj/item/weapon/tool/crowbar, +/obj/random/medical/lite, +/obj/machinery/light, +/turf/simulated/shuttle/floor/white, +/area/shuttle/large_escape_pod1/station) +"avb" = ( +/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/structure/disposalpipe/segment{ + dir = 4 + }, +/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/door/airlock/command{ + id_tag = "HoSdoor"; + name = "Head of Security"; + req_access = list(58); + req_one_access = list() + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/crew_quarters/heads/hos) +"ave" = ( +/obj/machinery/power/breakerbox/activated{ + RCon_tag = "Cargo Substation Bypass" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/cargo/gnd) +"avp" = ( +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/rnd/xenobiology/xenoflora_isolation) +"avT" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -21 + }, +/obj/item/weapon/paper_bin, +/obj/item/weapon/folder/red, +/obj/item/weapon/folder/blue{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/pen, +/obj/item/weapon/pen/multi{ + pixel_x = 2; + pixel_y = 2 + }, +/turf/simulated/floor/tiled, +/area/surface/station/crew_quarters/heads/hop) +"awB" = ( +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/machinery/light_switch{ + pixel_x = 12; + pixel_y = 24 + }, +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/white/diagonal, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 1 + }, +/obj/item/weapon/towel/random{ + pixel_x = -3; + pixel_y = -4 + }, +/obj/item/weapon/towel/random{ + pixel_x = -1; + pixel_y = -2 + }, +/obj/item/weapon/towel/random{ + pixel_x = -1 + }, +/obj/item/weapon/towel/random{ + pixel_x = 1; + pixel_y = 2 + }, +/obj/item/weapon/towel/random{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/item/weapon/towel/random{ + pixel_x = 5; + pixel_y = 6 + }, +/obj/item/weapon/soap/nanotrasen, +/obj/item/weapon/soap/nanotrasen, +/turf/simulated/floor/tiled/white, +/area/surface/station/crew_quarters/locker) +"awS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/grass, +/area/surface/station/hydroponics/garden) +"axx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/catwalk_plated/dark, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/kitchen) +"axR" = ( +/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" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "steel_dirty"; + initial_flooring = /decl/flooring/tiling/steel_dirty + }, +/area/surface/outside/plains/station) +"axV" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 9 + }, +/obj/structure/railing, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/simulated/floor/water/deep{ + has_fish = 0 + }, +/area/surface/outside/station/reactorpond) +"ayh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 4 + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/surface/station/janitor) +"ayn" = ( +/obj/structure/closet/secure_closet/explorer, +/obj/structure/window/reinforced, +/obj/item/weapon/pickaxe, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/rnd/exploration) +"ayF" = ( +/obj/structure/bookcase/bookcart, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/wood, +/area/surface/station/library) +"ayH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/vehicle/train/trolley{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/quartermaster/storage) +"ayP" = ( +/obj/structure/bed/chair, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = 30 + }, +/turf/simulated/floor/tiled, +/area/surface/station/arrivals/cynosure) +"ayX" = ( +/obj/structure/stairs/spawner/north, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/hallway/secondary/groundfloor/civilian) +"azs" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/fullgrass, +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/grass, +/area/surface/station/park) +"aBf" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/turf/simulated/floor/tiled/techmaint, +/area/surface/outpost/research/xenoarcheology/surface) +"aBU" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/atmos) +"aBW" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/light, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/open, +/area/surface/station/engineering/hallway) +"aCh" = ( +/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/steeldecal/steel_decals_central5, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/ward) +"aCw" = ( +/obj/structure/table/bench/sifwooden/padded, +/obj/machinery/atm{ + pixel_y = -32 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/turf/simulated/floor/tiled, +/area/surface/station/security/lobby) +"aCy" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/gnd) +"aCE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/south) +"aCQ" = ( +/obj/machinery/sleeper{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 5 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/medical/etc) +"aDc" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/cafeteria) +"aDA" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + id = "seclockdown"; + layer = 3.3; + name = "Security Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/security/lobby) +"aDE" = ( +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/yellow/bordercorner, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/storage/primarytool) +"aDU" = ( +/turf/simulated/floor/tiled/monotile, +/area/surface/station/security/briefing_room) +"aDX" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/engineering/storage) +"aDZ" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 6 + }, +/obj/structure/catwalk, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/water/deep{ + has_fish = 0 + }, +/area/surface/outside/station/reactorpond) +"aEj" = ( +/obj/structure/ladder, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/plating, +/area/surface/station/garage) +"aEn" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/security/lobby) +"aEE" = ( +/obj/structure/cliff/automatic/corner, +/turf/simulated/floor/outdoors/mask, +/area/surface/outside/plains/plateau) +"aFa" = ( +/obj/effect/floor_decal/techfloor{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4; + frequency = 1379; + id_tag = "marrivals_airlock_pump" + }, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + dir = 4; + id_tag = "marrivals_airlock"; + pixel_x = -24 + }, +/obj/machinery/airlock_sensor{ + dir = 4; + id_tag = "marrivals_airlock_sensor"; + pixel_x = -25; + pixel_y = -11 + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/arrivals/cynosure) +"aFo" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/green/bordercorner, +/turf/simulated/floor/tiled, +/area/surface/station/park) +"aFB" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/solars/west) +"aFI" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/station/crew_quarters/pool) +"aFP" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/green{ + dir = 8 + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -21 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"aFV" = ( +/obj/structure/sign/directions/security{ + dir = 5; + pixel_y = 6 + }, +/obj/structure/sign/directions/stairs_down{ + dir = 4; + pixel_y = -6 + }, +/obj/structure/sign/directions/cargo/mining{ + dir = 4 + }, +/turf/simulated/wall, +/area/surface/station/hallway/primary/groundfloor/east) +"aFZ" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/security/detectives_office) +"aGF" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/structure/closet, +/obj/item/clothing/shoes/boots/winter, +/obj/item/clothing/shoes/boots/winter, +/obj/item/clothing/shoes/boots/winter, +/obj/item/clothing/suit/storage/hooded/wintercoat, +/obj/item/clothing/suit/storage/hooded/wintercoat, +/obj/item/clothing/suit/storage/hooded/wintercoat, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 8 + }, +/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{ + dir = 4; + pixel_x = -24; + pixel_y = 12 + }, +/obj/item/weapon/melee/umbrella/random, +/obj/item/weapon/melee/umbrella/random, +/turf/simulated/floor/tiled, +/area/surface/station/arrivals/cynosure) +"aGP" = ( +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/green/bordercorner, +/turf/simulated/floor/tiled, +/area/surface/station/park) +"aGW" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 8 + }, +/obj/machinery/airlock_sensor/airlock_exterior{ + dir = 8; + frequency = 1380; + id_tag = "arrivals_dock_south_intsensor"; + master_tag = null; + pixel_x = 31; + pixel_y = 24 + }, +/obj/effect/map_helper/airlock/sensor/int_sensor, +/turf/simulated/floor/tiled, +/area/surface/station/arrivals/cynosure) +"aHe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/engineering/reactor_smes) +"aHl" = ( +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor/hole/right{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/ai/upload) +"aHm" = ( +/obj/machinery/door/airlock{ + name = "Unit 1" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/crew_quarters/caferestroom) +"aHn" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/requests_console{ + department = "Medbay"; + departmentType = 1; + name = "Medbay RC"; + pixel_y = 24 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/reception) +"aHp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/medical/emt_bay) +"aHr" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 10 + }, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/item/device/radio/intercom{ + pixel_y = -21 + }, +/obj/machinery/newscaster{ + pixel_x = -26 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/storage/primarytool) +"aHG" = ( +/obj/structure/cliff/automatic{ + dir = 9 + }, +/turf/simulated/floor/outdoors/mask, +/area/surface/outside/plains/plateau) +"aHL" = ( +/obj/effect/zone_divider, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/kitchen) +"aIa" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock/engineering{ + name = "Civilian Substation"; + req_one_access = list(11,24) + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/civilian) +"aIr" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/etc) +"aIC" = ( +/obj/structure/table/standard, +/obj/item/weapon/folder/red{ + pixel_x = 2; + pixel_y = 2 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/security/briefing_room) +"aIU" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/surgery) +"aJk" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/etc) +"aJA" = ( +/obj/effect/zone_divider, +/turf/simulated/wall/r_wall, +/area/surface/station/engineering/reactor_airlock) +"aJF" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway) +"aJI" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_waste) +"aJK" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/table/glass, +/obj/item/weapon/towel{ + color = "#B19CD9"; + name = "light purple"; + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/weapon/towel{ + color = "#B19CD9"; + name = "light purple"; + pixel_x = -1 + }, +/obj/item/weapon/towel{ + color = "#B19CD9"; + name = "light purple"; + pixel_y = 2 + }, +/obj/item/weapon/towel{ + color = "#B19CD9"; + name = "light purple"; + pixel_x = 1; + pixel_y = 4 + }, +/obj/random/soap, +/obj/random/soap, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/surface/station/rnd/research_restroom) +"aKd" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/obj/item/weapon/stool/padded, +/turf/simulated/floor/tiled/freezer, +/area/surface/station/crew_quarters/pool) +"aKx" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 21 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/west) +"aKN" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/storage) +"aLh" = ( +/obj/structure/table/glass, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/reagentgrinder, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/obj/machinery/requests_console{ + department = "Science"; + departmentType = 2; + dir = 4; + name = "Science RC"; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/rnd/xenobiology/xenoflora) +"aLm" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/north) +"aMf" = ( +/obj/machinery/atmospherics/unary/cryo_cell, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/medical/etc) +"aMy" = ( +/turf/simulated/floor/lino, +/area/surface/station/crew_quarters/bar) +"aNd" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/outlet_injector{ + dir = 8; + frequency = 1438; + id = "cooling_in"; + name = "Coolant Injector"; + power_rating = 30000; + use_power = 1; + volume_rate = 700 + }, +/turf/simulated/floor/reinforced/supermatter_core, +/area/surface/station/engineering/reactor_room) +"aNe" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/obj/structure/table/glass, +/obj/item/weapon/inflatable_duck, +/turf/simulated/floor/tiled/freezer, +/area/surface/station/crew_quarters/pool) +"aNh" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/obj/effect/floor_decal/rust/color_rusted{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/delivery) +"aNB" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"aNW" = ( +/turf/simulated/floor/water, +/area/surface/outside/river/gautelfr) +"aOd" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 10 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central4{ + dir = 1 + }, +/obj/effect/zone_divider, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/groundfloor/civilian) +"aOr" = ( +/obj/machinery/button/remote/airlock{ + dir = 8; + id = "garage_maintenance"; + name = "Door Bolt Control"; + pixel_x = 24; + specialfunctions = 4 + }, +/obj/machinery/door/airlock/maintenance/engi{ + icon_state = "door_locked"; + id_tag = "garage_maintenance"; + locked = 1; + req_one_access = list() + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/surface/station/garage) +"aOC" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/garage) +"aOF" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/ward) +"aOJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/xenobiology) +"aOW" = ( +/obj/structure/disposalpipe/down{ + dir = 1 + }, +/obj/structure/lattice, +/obj/machinery/door/firedoor/border_only, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 32; + icon_state = "32-1" + }, +/turf/simulated/open, +/area/surface/station/garage) +"aPr" = ( +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/gnd) +"aPP" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/hydro, +/area/surface/station/rnd/xenobiology/xenoflora) +"aQb" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/kitchen) +"aQe" = ( +/obj/effect/floor_decal/industrial/warning/dust/corner, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor + }, +/area/surface/outside/plains/station) +"aQi" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/briefing_room) +"aRo" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/ai/upload) +"aRp" = ( +/obj/machinery/atmospherics/tvalve/digital/mirrored, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"aSc" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"aSp" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/tiled/hydro, +/area/surface/station/rnd/xenobiology/xenoflora_isolation) +"aSI" = ( +/obj/machinery/atmospherics/pipe/zpipe/down/supply{ + dir = 8 + }, +/obj/structure/lattice, +/obj/machinery/door/firedoor/border_only, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 32; + d2 = 8; + icon_state = "32-8" + }, +/turf/simulated/open, +/area/surface/station/maintenance/east/gnd) +"aTi" = ( +/turf/simulated/wall, +/area/surface/station/chapel/office) +"aTx" = ( +/obj/structure/cable/green{ + 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{ + name = "Research Restroom" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/rnd/research_lockerroom) +"aTz" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/lockerroom) +"aTA" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 6 + }, +/obj/machinery/smartfridge/drying_rack, +/turf/simulated/floor/tiled/hydro, +/area/surface/station/park) +"aTC" = ( +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -21 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 9 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/reception) +"aTM" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"aUr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/groundfloor/civilian) +"aUJ" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled, +/area/surface/station/security/range) +"aUL" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/gnd) +"aUN" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 1 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/reactor) +"aVg" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "biohazard"; + layer = 3.3; + name = "Biohazard Shutter" + }, +/turf/simulated/floor/plating, +/area/surface/station/rnd/exploration) +"aVj" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/l3closet/security, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/equiptment_storage/ses) +"aVk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/glass_medical{ + name = "Chemistry"; + req_one_access = list(33) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/medical/chemistry) +"aVq" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/zone_divider, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/groundfloor/civilian) +"aVK" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "hosoffice" + }, +/turf/simulated/floor/plating, +/area/surface/station/crew_quarters/heads/hos) +"aVL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/catwalk_plated/white, +/turf/simulated/floor/plating, +/area/surface/station/rnd/hallway/stairwell) +"aVQ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/gnd) +"aWA" = ( +/obj/machinery/recharge_station, +/obj/structure/window/reinforced, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 21 + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/shuttle/exploration/general) +"aWH" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/cable/cyan{ + 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 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/surface) +"aWJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/park) +"aWM" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/east/gnd) +"aWN" = ( +/obj/structure/table/standard, +/obj/structure/flora/pottedplant{ + pixel_y = 8 + }, +/obj/machinery/newscaster{ + pixel_y = -28 + }, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/cafeteria) +"aWO" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/surface/outpost/research/xenoarcheology/surface) +"aWS" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 6 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"aWW" = ( +/turf/simulated/floor/tiled/asteroid_steel, +/area/surface/outside/plains/station) +"aXC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -12; + pixel_y = -24 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/cargo/gnd) +"aXH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/catwalk_plated, +/obj/effect/landmark/start{ + name = "Security Officer" + }, +/turf/simulated/floor/plating, +/area/surface/station/security/lockerroom) +"aYV" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/hallway/primary/groundfloor/south) +"aZv" = ( +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"aZD" = ( +/obj/structure/sign/directions/engineering/solars{ + pixel_y = 6 + }, +/turf/simulated/wall/r_wall, +/area/surface/station/maintenance/solars/west) +"aZL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/obj/effect/floor_decal/techfloor/corner{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/ai/upload_foyer) +"aZZ" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/bordercorner{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/rnd/xenobiology/xenoflora) +"bac" = ( +/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/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/glass_medical{ + id_tag = "GeneticsDoor"; + name = "Cloning Laboratory"; + req_one_access = list(66) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/medical/cloning) +"bag" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central5, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/storage/primary_storage) +"baq" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"baG" = ( +/obj/structure/cliff/automatic/ramp{ + dir = 9 + }, +/turf/simulated/floor/outdoors/mask, +/area/surface/outside/plains/plateau) +"baV" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 9 + }, +/obj/structure/catwalk, +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/water/deep{ + has_fish = 0 + }, +/area/surface/outside/station/reactorpond) +"baX" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/structure/closet/emcloset, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark, +/area/surface/station/engineering/hallway) +"bbi" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 4 + }, +/obj/structure/table/steel, +/obj/item/weapon/wrapping_paper{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/weapon/wrapping_paper, +/obj/item/weapon/wrapping_paper{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/packageWrap{ + pixel_x = -2; + pixel_y = -4 + }, +/obj/item/weapon/packageWrap{ + pixel_y = -2 + }, +/obj/item/weapon/packageWrap{ + pixel_x = 2 + }, +/obj/item/device/destTagger, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/delivery) +"bbj" = ( +/obj/machinery/portable_atmospherics/canister/empty, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -21 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/reinforced, +/area/surface/station/rnd/misc_lab) +"bbk" = ( +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/brown/bordercorner, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/lockerroom) +"bbH" = ( +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/hallway/gnd) +"bbP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 4 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/reception) +"bbT" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/obj/machinery/door/airlock/engineering{ + name = "West Solar Access"; + req_one_access = list(11,24) + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/solars/west) +"bcj" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/closet/l3closet/general, +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "xenobiodivide"; + name = "Containment Divider"; + pixel_x = -24; + req_one_access = list(55) + }, +/obj/machinery/camera/network/research{ + c_tag = "SCI - Xenobiology West"; + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/rnd/xenobiology) +"bcq" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/workshop) +"bcy" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/maintenance{ + name = "Cargo Maintenance"; + req_access = list(50) + }, +/turf/simulated/floor/plating, +/area/surface/station/quartermaster/storage) +"bcD" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/medical/etc) +"bcQ" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/xenobiology) +"bcX" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"bdd" = ( +/obj/structure/sink/kitchen{ + pixel_y = 28 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/surface/station/crew_quarters/kitchen) +"bdm" = ( +/obj/structure/bed/chair, +/turf/simulated/floor/lino, +/area/surface/station/chapel/office) +"bdy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/gnd) +"bdT" = ( +/obj/structure/closet/secure_closet/scientist, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 1 + }, +/obj/machinery/camera/network/research{ + c_tag = "SCI - Locker Room" + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/rnd/research_lockerroom) +"bef" = ( +/obj/structure/cable{ + 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 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/east/gnd) +"bel" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/surface/station/security/detectives_office) +"ben" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/maintenance/substation/atmospherics) +"bes" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/rnd/misc_lab) +"bfl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/bordercorner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/gnd) +"bfF" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/ward) +"bfG" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"bgp" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/danger, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway) +"bgH" = ( +/obj/item/weapon/bikehorn/rubberducky, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/effect/floor_decal/corner/white/diagonal, +/turf/simulated/floor/tiled/eris, +/area/surface/station/crew_quarters/locker) +"bgJ" = ( +/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, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/surface) +"bhi" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/structure/sign/directions/stairwell{ + dir = 8; + pixel_y = -32 + }, +/obj/structure/sign/directions/elevator{ + dir = 8; + pixel_y = -38 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/west) +"bhB" = ( +/obj/structure/closet/crate/medical, +/obj/random/maintenance/medical, +/obj/random/maintenance/medical, +/obj/random/maintenance, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/surgery) +"bhG" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "hosoffice" + }, +/turf/simulated/floor/plating, +/area/surface/station/crew_quarters/heads/hos) +"bhM" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 5 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 10 + }, +/turf/simulated/floor/water/deep{ + has_fish = 0 + }, +/area/surface/outside/station/reactorpond) +"bhP" = ( +/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/floor_decal/industrial/outline/grey, +/obj/machinery/hologram/holopad, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/monofloor{ + dir = 4 + }, +/area/surface/station/hallway/primary/groundfloor/west/elevator) +"biN" = ( +/obj/machinery/portable_atmospherics/hydroponics/soil, +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/grass, +/area/surface/station/hydroponics/garden) +"biQ" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + id = "medbayquar"; + layer = 3.3; + name = "Medbay Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/medical/etc) +"bjA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/surface/outpost/research/xenoarcheology/surface) +"bjF" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/simulated/floor/water/pool, +/area/surface/station/crew_quarters/pool) +"bjK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 6 + }, +/obj/structure/closet/crate/engineering{ + dir = 2 + }, +/obj/item/weapon/storage/toolbox/mechanical, +/obj/item/stack/material/phoron{ + amount = 25 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/exploration/cargo) +"bjZ" = ( +/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, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/station/solar/westsolar) +"bkk" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/lino, +/area/surface/station/chapel/office) +"bkB" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/engineering/reactor_room) +"bkL" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/bordercorner{ + dir = 4 + }, +/obj/structure/closet, +/obj/item/clothing/shoes/boots/winter, +/obj/item/clothing/shoes/boots/winter, +/obj/item/clothing/shoes/boots/winter, +/obj/item/clothing/suit/storage/hooded/wintercoat, +/obj/item/clothing/suit/storage/hooded/wintercoat, +/obj/item/clothing/suit/storage/hooded/wintercoat, +/obj/item/weapon/melee/umbrella/random{ + pixel_y = -4 + }, +/obj/item/weapon/melee/umbrella/random, +/turf/simulated/floor/tiled, +/area/surface/station/arrivals/cynosure) +"bkP" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/machinery/papershredder, +/turf/simulated/floor/lino, +/area/surface/station/security/detectives_office) +"blm" = ( +/obj/structure/cable/green{ + 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 = 24 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/ward) +"blo" = ( +/obj/structure/stairs/spawner/south, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/ai/upload) +"blP" = ( +/obj/machinery/status_display, +/turf/simulated/wall, +/area/surface/station/security/detectives_office/lab) +"blU" = ( +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -24; + pixel_y = 12 + }, +/obj/machinery/button/windowtint{ + dir = 8; + id = "clocker"; + pixel_x = -23; + pixel_y = -11 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/lockerroom) +"bmd" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 10 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/water/deep{ + has_fish = 0 + }, +/area/surface/outside/station/reactorpond) +"bmf" = ( +/obj/structure/sign/directions/security/seceqp{ + dir = 1 + }, +/turf/simulated/wall/r_wall, +/area/surface/station/security/processing) +"bmn" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/surface/station/rnd/misc_lab) +"bmW" = ( +/turf/simulated/floor/water, +/area/surface/outside/plains/station) +"bno" = ( +/turf/simulated/wall, +/area/surface/station/security/briefing_room) +"bnH" = ( +/obj/effect/floor_decal/techfloor/corner{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/ai/upload) +"bnI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/green/border, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/rnd/xenobiology/xenoflora) +"bnN" = ( +/obj/structure/table/reinforced, +/obj/item/roller{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/roller, +/obj/item/roller{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/item/weapon/cane/crutch{ + pixel_y = -4 + }, +/obj/item/weapon/cane/crutch, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/storage/primary_storage) +"bnR" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/purple/bordercorner2{ + dir = 5 + }, +/obj/machinery/camera/network/ground_floor{ + c_tag = "Ground Floor - West Elevator Access"; + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/west/elevator) +"bot" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/kitchen) +"boy" = ( +/obj/structure/table/glass, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 10 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 10 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/item/tabloid{ + pixel_x = -2; + pixel_y = 8 + }, +/obj/item/roller{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/roller, +/obj/item/roller{ + pixel_x = 3; + pixel_y = 3 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/reception) +"bpc" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/wingrille_spawn/reinforced, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "xenobio4"; + layer = 3.3; + name = "Containment Blast Doors" + }, +/turf/simulated/floor/plating, +/area/surface/station/rnd/xenobiology) +"bpq" = ( +/obj/machinery/chem_master/condimaster, +/obj/structure/extinguisher_cabinet{ + dir = 8; + pixel_x = -30 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/surface/station/crew_quarters/kitchen) +"bpv" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "st2_tint" + }, +/turf/simulated/floor/plating, +/area/surface/station/medical/surgery2) +"bpJ" = ( +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -12; + pixel_y = -24 + }, +/obj/effect/catwalk_plated/dark, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/table/steel, +/obj/random/maintenance/security, +/obj/random/maintenance/engineering, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/east/gnd) +"bql" = ( +/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, +/area/surface/station/park) +"bqP" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/machinery/door/window/eastright{ + name = "Test Chamber"; + req_one_access = list(7,29) + }, +/obj/machinery/door/window/westleft{ + name = "Test Chamber"; + req_one_access = list(7,29) + }, +/obj/machinery/door/blast/regular/open{ + id = "misclab"; + layer = 3.3; + name = "Test Chamber Blast Doors" + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/rnd/misc_lab) +"bqZ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/briefing_room) +"bsh" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "steel_dirty"; + initial_flooring = /decl/flooring/tiling/steel_dirty + }, +/area/surface/outside/plains/station) +"bsn" = ( +/obj/effect/floor_decal/industrial/warning/dust/corner{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 10 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor + }, +/area/surface/station/hallway/primary/groundfloor/south) +"bsq" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/east) +"bsr" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/firstaid/o2{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/storage/firstaid/o2, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/obj/item/device/radio/intercom/department/medbay{ + pixel_y = 21 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 5 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/storage/primary_storage) +"bsy" = ( +/obj/machinery/door/blast/regular/open{ + id = "atmoslockdown"; + layer = 3.3; + name = "Atmospherics Lockdown" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/atmos) +"bsA" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/newscaster{ + pixel_y = 26 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway) +"bsG" = ( +/obj/structure/closet/crate/secure/gear{ + name = "explorer crate"; + req_access = list(43) + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/item/weapon/storage/toolbox/mechanical, +/obj/item/weapon/storage/belt/utility/full, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/rnd/exploration) +"bsN" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/border_only, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/engineering{ + name = "Security Substation"; + req_one_access = list(1,11,24) + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/security/gnd) +"btp" = ( +/obj/structure/cable{ + 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 = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/east/gnd) +"btt" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/cafeteria) +"btA" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 21 + }, +/obj/machinery/camera/network/civilian{ + c_tag = "CIV - Pool North" + }, +/obj/item/weapon/stool/padded{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/station/crew_quarters/pool) +"buJ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/park) +"bvu" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/door/window/westleft{ + name = "EVA Suit"; + req_one_access = list(43) + }, +/obj/structure/table/rack{ + layer = 2.6 + }, +/obj/item/device/suit_cooling_unit{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/device/suit_cooling_unit, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/rnd/exploration) +"bvw" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/rnd/research_lockerroom) +"bvP" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/chapel/office) +"bvY" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/closet/athletic_swimwear, +/turf/simulated/floor/tiled/freezer, +/area/surface/station/crew_quarters/pool) +"bwp" = ( +/obj/effect/floor_decal/corner/pink{ + dir = 10 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/medical/etc) +"bwR" = ( +/obj/structure/stairs/spawner/north, +/turf/simulated/floor/plating, +/area/surface/station/park) +"bwZ" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/corner/white/diagonal, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/zone_divider, +/turf/simulated/floor/tiled/freezer, +/area/surface/station/crew_quarters/pool) +"bxu" = ( +/obj/item/device/radio/intercom/department/medbay{ + dir = 8; + pixel_x = 21 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/reception) +"bxx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/blue{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/monofloor, +/area/surface/station/hallway/primary/groundfloor/south) +"byb" = ( +/obj/effect/catwalk_plated/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 9 + }, +/obj/structure/sign/directions/ladder_down{ + dir = 4; + pixel_x = 32 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/east/gnd) +"byd" = ( +/obj/machinery/power/smes/buildable{ + RCon_tag = "Substation - Medical"; + charge = 2e+006 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/medbay/gnd) +"byq" = ( +/obj/machinery/ai_status_display, +/turf/simulated/wall/r_wall, +/area/surface/station/ai/upload) +"byE" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/yellow/border, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/industrial/danger/corner, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway) +"bzm" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/green{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"bzr" = ( +/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/plating/sif/planetuse, +/area/surface/outside/station/solar/westsolar) +"bzu" = ( +/obj/item/wheelchair, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/storage/primary_storage) +"bzH" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/north) +"bAb" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 8 + }, +/obj/structure/bed/chair/office/dark, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/engineering_monitoring) +"bAe" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/machinery/portable_atmospherics/powered/pump/filled, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/engineering/atmos) +"bAi" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/security/interrogation) +"bAK" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/etc) +"bBp" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"bBs" = ( +/obj/structure/sign/warning/nosmoking_2, +/turf/simulated/wall/r_wall, +/area/surface/station/medical/emt_bay) +"bBP" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/surgery) +"bCh" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/arrivals/cynosure) +"bCx" = ( +/obj/effect/zone_divider, +/turf/simulated/wall, +/area/surface/station/crew_quarters/kitchen) +"bCF" = ( +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/tracker, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/station/solar/westsolar) +"bCI" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/item/weapon/stool/padded{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/station/crew_quarters/pool) +"bCL" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = 30 + }, +/obj/structure/sink/generic{ + dir = 8; + pixel_x = 12; + pixel_y = -4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/chemistry) +"bCZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/blue{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/south) +"bDr" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/arrivals/cynosure) +"bDx" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/danger/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/storage) +"bDy" = ( +/turf/simulated/wall, +/area/surface/station/engineering/workshop) +"bDA" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/zone_divider, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/groundfloor/civilian) +"bDG" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 6 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 6 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/cloning) +"bDH" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/floor_decal/techfloor, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/ai/upload) +"bEh" = ( +/turf/simulated/wall, +/area/surface/station/rnd/hallway/stairwell) +"bEv" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/engineering/hallway/reactor) +"bEM" = ( +/obj/structure/reagent_dispensers/watertank/high, +/obj/item/weapon/extinguisher, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/purple/border, +/obj/machinery/light, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/rnd/xenobiology) +"bEQ" = ( +/obj/effect/floor_decal/techfloor{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/arrivals/cynosure) +"bFw" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced/tinted/frosted{ + dir = 8 + }, +/obj/structure/window/reinforced/tinted/frosted, +/obj/structure/window/reinforced/tinted/frosted{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/security/interrogation) +"bGL" = ( +/obj/machinery/vending/dinnerware{ + dir = 4 + }, +/obj/machinery/button/remote/blast_door{ + id = "kitchen"; + name = "Kitchen Shutters"; + pixel_y = 24 + }, +/obj/machinery/button/holosign{ + dir = 1; + icon_state = "light0"; + id = "cafeopen"; + name = "Cafe Sign"; + pixel_x = 9; + pixel_y = 23 + }, +/obj/machinery/button/holosign{ + dir = 1; + icon_state = "light0"; + id = "baropen"; + name = "Open Sign"; + pixel_x = -8; + pixel_y = 23 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/surface/station/crew_quarters/kitchen) +"bHd" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/station/hydroponics) +"bHg" = ( +/obj/structure/cliff/automatic/ramp, +/turf/simulated/floor/outdoors/mask, +/area/surface/outside/plains/plateau) +"bHr" = ( +/obj/machinery/door/airlock{ + name = "Unit 2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/rnd/research_restroom) +"bHw" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/medical/hallway/gnd) +"bIc" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/workshop) +"bIg" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"bIo" = ( +/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/surface/station/engineering/atmos) +"bIq" = ( +/obj/effect/floor_decal/corner_steel_grid{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/east) +"bIB" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/effect/catwalk_plated, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/atmos) +"bIC" = ( +/turf/simulated/wall, +/area/surface/station/medical/etc) +"bIK" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/airlock_sensor/airlock_interior{ + dir = 1; + id_tag = "arc3_airlock_int_sensor"; + master_tag = "arc3_airlock"; + pixel_x = -35; + pixel_y = -31 + }, +/obj/effect/map_helper/airlock/sensor/int_sensor, +/turf/simulated/floor/tiled, +/area/surface/outpost/research/xenoarcheology/surface) +"bJT" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad2" + }, +/turf/simulated/floor/plating, +/area/surface/station/quartermaster/storage) +"bJZ" = ( +/obj/machinery/camera/network/engineering{ + c_tag = "ENG - Atmospherics South"; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"bKi" = ( +/obj/machinery/shieldgen, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/engineering/storage) +"bKl" = ( +/obj/machinery/computer/atmoscontrol{ + dir = 8 + }, +/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/station/engineering/engineering_monitoring) +"bKN" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/border_only, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/reactor) +"bLd" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/cafeteria) +"bLu" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/briefing_room) +"bLB" = ( +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 21 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/ward) +"bLZ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/gnd) +"bMb" = ( +/obj/structure/sign/warning/vent_port, +/obj/machinery/shield_diffuser, +/turf/simulated/wall/r_wall, +/area/surface/outside/plains/station) +"bMs" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/yellow/border, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway) +"bMx" = ( +/turf/simulated/wall, +/area/surface/station/chapel/main) +"bMz" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/zone_divider, +/turf/simulated/floor/tiled/freezer, +/area/surface/station/crew_quarters/kitchen) +"bMK" = ( +/obj/structure/prop/rock/small/water, +/turf/simulated/floor/water, +/area/surface/outside/river/gautelfr) +"bMX" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/structure/table/steel_reinforced, +/obj/item/clothing/glasses/sunglasses/sechud/aviator{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/clothing/glasses/sunglasses, +/obj/item/clothing/glasses/sunglasses{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/clothing/ears/earmuffs{ + pixel_x = 2; + pixel_y = -2 + }, +/obj/item/clothing/ears/earmuffs, +/obj/item/clothing/ears/earmuffs{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/weapon/tool/screwdriver, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/range) +"bNg" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/engineering{ + name = "Engineering Hard Storage"; + req_access = list(11); + req_one_access = list() + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/engineering/storage) +"bNk" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "crglockdown"; + layer = 3.3; + name = "Cargo Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/quartermaster/delivery) +"bOi" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6, +/obj/effect/floor_decal/rust/part_rusted3{ + dir = 8 + }, +/obj/effect/floor_decal/rust/part_rusted1{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/engineering/hallway) +"bOk" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + id = "medbayquar"; + layer = 3.3; + name = "Medbay Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/medical/etc) +"bOo" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/arrivals/cynosure) +"bOp" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/structure/closet/l3closet/scientist, +/obj/item/weapon/extinguisher, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/eris, +/area/surface/station/rnd/xenobiology) +"bOG" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/maintenance/substation/security/gnd) +"bPE" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/monofloor{ + dir = 8 + }, +/area/surface/station/park) +"bPH" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 5 + }, +/obj/effect/floor_decal/corner/pink/border{ + dir = 5 + }, +/obj/item/weapon/reagent_containers/spray/cleaner, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/surgery) +"bPS" = ( +/obj/machinery/atmospherics/pipe/simple/visible/universal{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"bQa" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/arrivals/cynosure) +"bQb" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/ai/upload_foyer) +"bQg" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway) +"bQr" = ( +/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, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/gnd) +"bRl" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/station/crew_quarters/heads/hop) +"bRW" = ( +/obj/structure/table/woodentable, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/item/weapon/paper_bin, +/obj/item/weapon/pen/invisible, +/obj/item/weapon/book/codex/lore/news, +/obj/item/device/tvcamera, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/surface/station/library) +"bRZ" = ( +/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/plating/sif/planetuse, +/area/surface/outside/station/solar/northeastsolar) +"bSm" = ( +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "msouth_airlock_inner"; + locked = 1; + name = "Internal Access" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/floor_decal/rust, +/obj/effect/map_helper/airlock/door/int_door, +/obj/machinery/access_button/airlock_interior{ + dir = 1; + master_tag = "msouth_airlock"; + pixel_x = 35 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/hallway/primary/groundfloor/south) +"bSs" = ( +/obj/random/crate, +/obj/random/maintenance/cargo, +/obj/random/maintenance/cargo, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/effect/zone_divider, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/kitchen) +"bSL" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/quartermaster/storage) +"bSR" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/hallway/primary/groundfloor/east) +"bTe" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/deck/cah{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/weapon/deck/cah/black{ + pixel_x = -4; + pixel_y = 6 + }, +/turf/simulated/floor/carpet, +/area/surface/station/library) +"bUi" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/surface/station/library) +"bUr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/catwalk_plated, +/obj/machinery/atmospherics/pipe/manifold/hidden, +/turf/simulated/floor/plating, +/area/surface/station/arrivals/cynosure) +"bUx" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/purple/border, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/camera/network/research{ + c_tag = "SCI - Research Hallway East"; + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/gnd) +"bUO" = ( +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/surface/station/storage/primarytool) +"bUS" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/machinery/station_map{ + dir = 4; + pixel_x = -32 + }, +/obj/machinery/camera/network/ground_floor{ + c_tag = "Ground Floor - East Hallway 2"; + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/east) +"bUZ" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock{ + name = "Chapel Office"; + req_one_access = list(27) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/chapel/office) +"bVG" = ( +/obj/effect/floor_decal/corner/pink{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/medical/etc) +"bVN" = ( +/obj/structure/cliff/automatic, +/turf/simulated/floor/outdoors/mask, +/area/surface/outside/plains/plateau) +"bWC" = ( +/obj/structure/window/reinforced, +/obj/structure/closet/emcloset, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/shuttle/exploration/general) +"bXN" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/surgery) +"bYc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/north) +"bYm" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/wingrille_spawn/reinforced, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + dir = 2; + id = "xenobio1"; + layer = 3.3; + name = "Containment Blast Doors" + }, +/turf/simulated/floor/plating, +/area/surface/station/rnd/xenobiology) +"bYo" = ( +/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 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/surface/station/crew_quarters/kitchen) +"bYE" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 9 + }, +/obj/structure/reagent_dispensers/water_cooler/full, +/obj/machinery/newscaster{ + pixel_y = 26 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -21 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/surgeryobs) +"bYH" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 5 + }, +/obj/effect/floor_decal/corner/pink/border{ + dir = 5 + }, +/obj/item/weapon/folder/red, +/obj/item/weapon/folder/blue, +/obj/item/weapon/folder/yellow, +/obj/item/weapon/storage/box/swabs, +/obj/structure/extinguisher_cabinet{ + dir = 1; + pixel_y = 30 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/security/detectives_office/lab) +"bZb" = ( +/obj/structure/closet/coffin, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/window/northright{ + name = "Coffin Storage"; + req_access = list(27); + req_one_access = null + }, +/turf/simulated/floor/wood/sif, +/area/surface/station/chapel/main) +"bZp" = ( +/obj/machinery/camera/network/security{ + c_tag = "SEC - Evidence Storage"; + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/evidence_storage) +"bZP" = ( +/obj/structure/closet/crate/engineering, +/obj/item/stack/material/phoron{ + amount = 25 + }, +/obj/machinery/camera/network/engineering{ + c_tag = "ENG - Hard Storage"; + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/engineering/storage) +"bZQ" = ( +/obj/structure/closet/crate/nanotrasen, +/obj/item/weapon/camera_assembly{ + pixel_x = -7; + pixel_y = -6 + }, +/obj/item/weapon/camera_assembly{ + pixel_x = -3; + pixel_y = -4 + }, +/obj/item/weapon/camera_assembly{ + pixel_x = -3; + pixel_y = -2 + }, +/obj/item/weapon/camera_assembly, +/turf/simulated/floor/bluegrid, +/area/surface/station/ai/server_room) +"bZS" = ( +/turf/simulated/floor/tiled/neutral, +/area/surface/station/security/restroom) +"bZV" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/machinery/vending/wallmed1{ + pixel_x = 26 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/ward) +"bZY" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/etc) +"cac" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "steel_dirty"; + initial_flooring = /decl/flooring/tiling/steel_dirty + }, +/area/surface/outpost/research/xenoarcheology/surface) +"cai" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/handrail{ + dir = 1 + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/shuttle/exploration/cockpit) +"cat" = ( +/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" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/equiptment_storage/ses) +"caA" = ( +/turf/simulated/wall, +/area/surface/station/maintenance/north/gnd) +"caC" = ( +/obj/structure/shuttle/engine/propulsion/burst{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/shuttle/large_escape_pod1/station) +"caH" = ( +/obj/structure/table/marble, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/machinery/door/blast/gate/thin{ + dir = 8; + id = "bar2"; + layer = 3.3 + }, +/turf/simulated/floor/lino, +/area/surface/station/crew_quarters/bar) +"caQ" = ( +/obj/structure/closet/secure_closet/guncabinet/phase, +/obj/item/clothing/accessory/holster/hip, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/rnd/exploration) +"caT" = ( +/obj/effect/floor_decal/spline/plain, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/monofloor, +/area/surface/station/crew_quarters/gym) +"cbu" = ( +/obj/structure/cliff/automatic, +/turf/simulated/floor/outdoors/dirt/sif, +/area/surface/outside/plains/plateau) +"cco" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/park) +"ccv" = ( +/obj/structure/cliff/automatic, +/turf/simulated/wall/solidrock, +/area/surface/outside/plains/plateau) +"ccz" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/zone_divider, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/groundfloor/civilian) +"ccK" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/bar) +"ccZ" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/west/elevator) +"cdK" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + id = "seclockdown"; + layer = 3.3; + name = "Security Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/security/range) +"cdW" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/lobby) +"cei" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/industrial/danger, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "steel_dirty"; + initial_flooring = /decl/flooring/tiling/steel_dirty + }, +/area/surface/outside/plains/station) +"cen" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/box/cups{ + pixel_x = 4; + pixel_y = 4 + }, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/gym) +"cfy" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/carpet, +/area/surface/station/chapel/main) +"cfH" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/reactor) +"cfY" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/reception) +"cgI" = ( +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/ward) +"cgM" = ( +/obj/structure/table/glass, +/obj/item/weapon/reagent_containers/food/drinks/britcup, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/medical/hallway/gnd) +"cgV" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "steel_dirty"; + initial_flooring = /decl/flooring/tiling/steel_dirty + }, +/area/surface/station/arrivals/cynosure) +"chf" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "seclockdown"; + layer = 3.3; + name = "Security Lockdown" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/security/equiptment_storage/ses) +"chs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/surface/station/rnd/research_restroom) +"chE" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/tiled, +/area/surface/station/arrivals/cynosure) +"chV" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/border_only, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock{ + name = "Kitchen"; + req_one_access = list(28) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/crew_quarters/kitchen) +"cia" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/bordercorner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/gnd) +"ciJ" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/binary/circulator{ + anchored = 1; + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"ciO" = ( +/obj/structure/table/standard, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/weapon/book/codex/corp_regs, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/security/briefing_room) +"cjr" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4; + id_tag = null + }, +/obj/effect/floor_decal/techfloor{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + cycle_to_external_air = 1; + frequency = 1380; + id_tag = "expshuttle_docker"; + pixel_y = 24 + }, +/obj/machinery/airlock_sensor{ + id_tag = null; + pixel_x = -11; + pixel_y = 25 + }, +/obj/structure/handrail, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/exploration/cargo) +"ckG" = ( +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24; + pixel_y = -12 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled, +/area/surface/outpost/research/xenoarcheology/surface) +"clm" = ( +/obj/machinery/light/small, +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/kitchen) +"clv" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/gnd) +"cmb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/surface/station/park) +"cmJ" = ( +/obj/structure/fence{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "steel_dirty"; + initial_flooring = /decl/flooring/tiling/steel_dirty + }, +/area/surface/outside/plains/station) +"cmZ" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/bed/chair, +/turf/simulated/floor/tiled, +/area/surface/station/arrivals/cynosure) +"cnR" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 5 + }, +/obj/structure/table/steel, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/item/weapon/tool/crowbar{ + pixel_x = 4 + }, +/obj/item/weapon/tool/crowbar, +/obj/item/weapon/storage/toolbox/mechanical, +/obj/item/device/radio{ + frequency = 1487; + icon_state = "med_walkietalkie"; + name = "Medbay Emergency Radio Link"; + pixel_y = 4 + }, +/obj/item/device/radio{ + frequency = 1485; + icon_state = "med_walkietalkie"; + name = "Medbay Emergency Radio Link"; + pixel_y = 4 + }, +/obj/item/device/multitool, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/medical/emt_bay) +"cnU" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/structure/closet/secure_closet/hop2, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/station/crew_quarters/heads/hop) +"cof" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/closet/crate/secure/gear{ + name = "explorer crate"; + req_access = list(43) + }, +/obj/item/weapon/storage/firstaid/adv{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/storage/firstaid/regular, +/obj/item/weapon/storage/pill_bottle/spaceacillin, +/obj/item/bodybag/cryobag, +/obj/item/bodybag/cryobag{ + pixel_x = -3; + pixel_y = -3 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/rnd/exploration) +"cos" = ( +/obj/structure/cliff/automatic{ + dir = 8 + }, +/turf/simulated/floor/outdoors/mask, +/area/surface/outside/plains/plateau) +"cow" = ( +/obj/structure/table/marble, +/obj/machinery/reagentgrinder, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/eris/cafe, +/area/surface/station/crew_quarters/kitchen) +"coN" = ( +/obj/structure/shuttle/engine/heater{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/shuttle/wall/dark/no_join, +/area/shuttle/large_escape_pod1/station) +"cpc" = ( +/obj/structure/table/marble, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "bar"; + layer = 3.1; + name = "Bar Shutters" + }, +/turf/simulated/floor/lino, +/area/surface/station/crew_quarters/bar) +"cpe" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/structure/table/bench/padded, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/surgeryobs) +"cqe" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/glass{ + name = "Hallway" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/park) +"cqi" = ( +/obj/structure/flora/grass/green, +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/grass, +/area/surface/station/hydroponics/garden) +"cqz" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 8 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"crj" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/gnd) +"crs" = ( +/obj/machinery/atmospherics/omni/atmos_filter{ + tag_east = 4; + tag_north = 1; + tag_west = 2; + use_power = 0 + }, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_waste) +"csg" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/arrivals/cynosure/nopower) +"csi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/blue{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/kitchen) +"cte" = ( +/obj/effect/catwalk_plated/dark, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/surface/station/engineering/storage) +"cua" = ( +/obj/structure/table/bench/wooden, +/turf/simulated/floor/wood/sif, +/area/surface/station/chapel/main) +"cub" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 4 + }, +/obj/structure/closet/crate, +/obj/item/weapon/tool/wrench, +/obj/item/weapon/tool/crowbar/red, +/obj/item/device/suit_cooling_unit, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/misc_lab) +"cue" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/engineering/foyer) +"cus" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/storage) +"cuI" = ( +/obj/machinery/status_display/supply_display, +/turf/simulated/wall, +/area/surface/station/quartermaster/storage) +"cuW" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/water/deep{ + has_fish = 0 + }, +/area/surface/outside/station/reactorpond) +"cvr" = ( +/obj/effect/floor_decal/corner/pink{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/etc) +"cvv" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/west) +"cvK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/shuttle/exploration/cockpit) +"cvZ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"cwh" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/monofloor{ + dir = 8 + }, +/area/surface/station/quartermaster/storage) +"cwr" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/red{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/foyer) +"cwH" = ( +/obj/effect/map_effect/portal/master/side_a/plains_to_wilderness, +/turf/simulated/floor/outdoors/grass/sif, +/area/surface/outside/plains/plateau) +"cwR" = ( +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/monofloor, +/area/surface/station/security/range) +"cxc" = ( +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "steel_dirty"; + initial_flooring = /decl/flooring/tiling/steel_dirty + }, +/area/surface/outside/plains/station) +"cxl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/surface/station/security/range) +"cxN" = ( +/obj/machinery/door/blast/regular{ + id = "ReactorVent"; + name = "Reactor Vent" + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"cyd" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/station_map{ + dir = 8; + pixel_x = 32 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/south) +"cyo" = ( +/obj/structure/sign/warning/nosmoking_2, +/turf/simulated/wall, +/area/surface/station/medical/etc) +"cyO" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/catwalk_plated, +/obj/effect/zone_divider, +/turf/simulated/floor/plating, +/area/surface/station/hallway/primary/groundfloor/south) +"czd" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"czl" = ( +/obj/machinery/light/small, +/obj/structure/toilet{ + dir = 1 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/security/restroom) +"czE" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/obj/machinery/atmospherics/binary/pump{ + dir = 8 + }, +/obj/effect/engine_setup/pump_max, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"czN" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/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/blue/bordercorner2{ + dir = 9 + }, +/obj/machinery/portable_atmospherics/powered/pump/filled, +/obj/machinery/ai_status_display{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/foyer) +"cAl" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/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 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/gnd) +"cAF" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/north) +"cAX" = ( +/obj/effect/floor_decal/techfloor{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/medical/emt_bay) +"cBd" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/security/lobby) +"cBo" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/atmos) +"cBz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/wood, +/area/surface/station/library) +"cBX" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"cDi" = ( +/obj/structure/cliff/automatic{ + dir = 5 + }, +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outside/plains/plateau) +"cDl" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/zone_divider, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/groundfloor/civilian) +"cDv" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance_hatch{ + icon_state = "door_locked"; + id_tag = "engine_electrical_maintenance"; + locked = 1; + name = "SMES Access"; + req_access = list(10); + req_one_access = list() + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/engineering/reactor_smes) +"cDH" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/south) +"cDM" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/door/window/brigdoor/southright{ + name = "Containment Pen"; + req_access = list(47) + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/rnd/xenobiology) +"cEh" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/wood/sif, +/area/surface/station/chapel/main) +"cEE" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/hallway/primary/groundfloor/north) +"cFh" = ( +/turf/simulated/wall, +/area/surface/station/rnd/research_restroom) +"cFy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/industrial/danger/corner, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "steel_dirty"; + initial_flooring = /decl/flooring/tiling/steel_dirty + }, +/area/surface/outside/plains/station) +"cFz" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/medical/hallway/gnd) +"cFE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/ward) +"cFP" = ( +/obj/structure/closet/secure_closet/pilot, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 1 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/rnd/exploration) +"cFR" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/green{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"cGb" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/shuttle/floor, +/area/shuttle/large_escape_pod1/station) +"cGc" = ( +/obj/structure/closet/secure_closet/explorer, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/rnd/exploration) +"cGQ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/handrail{ + dir = 1 + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/shuttle/exploration/cockpit) +"cHj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/item/device/radio/beacon, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/park) +"cHm" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/gnd) +"cHr" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{ + dir = 8; + frequency = 1380; + id_tag = "large_escape_pod_1_berth"; + pixel_x = 24; + tag_door = "large_escape_pod_1_berth_hatch" + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/research/xenoarcheology/surface) +"cHN" = ( +/obj/effect/floor_decal/industrial/loading{ + dir = 8 + }, +/obj/effect/floor_decal/rust/mono_rusted3, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/quartermaster/storage) +"cIE" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/engineering{ + name = "Civilian Substation"; + req_one_access = list(11,24) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/civilian) +"cIJ" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner2{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/workshop) +"cJc" = ( +/obj/structure/closet, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/security/evidence_storage) +"cJk" = ( +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/structure/fireaxecabinet{ + pixel_x = -32 + }, +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/obj/machinery/camera/network/medbay{ + c_tag = "MED - EMT Bay"; + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/medical/emt_bay) +"cJq" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + dir = 4; + frequency = 1380; + id_tag = "pad4"; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "steel_dirty"; + initial_flooring = /decl/flooring/tiling/steel_dirty + }, +/area/surface/outpost/research/xenoarcheology/surface) +"cJA" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning/corner{ + 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/station/maintenance/east/gnd) +"cJD" = ( +/obj/machinery/appliance/cooker/fryer, +/turf/simulated/floor/tiled/eris/cafe, +/area/surface/station/crew_quarters/kitchen) +"cJQ" = ( +/obj/structure/cable/yellow{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/solar_control/autostart{ + id = "northeastsolar"; + name = "Northeast Solar Control" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/solars/northeast) +"cJR" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/east/gnd) +"cKh" = ( +/obj/effect/zone_divider, +/turf/simulated/floor/water/deep, +/area/surface/outside/river/gautelfr) +"cKI" = ( +/obj/machinery/navbeacon/patrol{ + location = "PK5"; + next_patrol = "PK6" + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central6, +/obj/effect/floor_decal/steeldecal/steel_decals_central2, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/park) +"cKU" = ( +/obj/machinery/atmospherics/binary/passive_gate{ + dir = 4; + icon_state = "on"; + unlocked = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/floor_decal/industrial/warning/full, +/obj/effect/catwalk_plated/dark, +/obj/machinery/airlock_sensor/airlock_interior{ + dir = 8; + id_tag = "eng_ew2_airlock_int_sensor"; + master_tag = "eng_ew2_airlock"; + pixel_x = 31; + pixel_y = -24; + req_one_access = list(12) + }, +/obj/effect/map_helper/airlock/sensor/int_sensor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/east/gnd) +"cKX" = ( +/obj/structure/table/marble, +/obj/machinery/door/blast/gate/thin{ + dir = 2; + id = "kitchen"; + layer = 3.3 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/surface/station/crew_quarters/kitchen) +"cLb" = ( +/obj/structure/sign/double/barsign, +/turf/simulated/wall/r_wall, +/area/surface/station/crew_quarters/cafeteria) +"cLg" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/rnd/exploration) +"cLm" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central5, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 4 + }, +/obj/structure/table/standard, +/obj/item/device/taperecorder, +/turf/simulated/floor/tiled, +/area/surface/station/security/interrogation) +"cLu" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "xenobio2"; + pixel_x = 3; + pixel_y = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/rnd/xenobiology) +"cLZ" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/obj/effect/zone_divider, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/groundfloor/civilian) +"cMf" = ( +/obj/structure/handrail, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/shuttle/exploration/general) +"cMl" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/range) +"cMV" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/arrivals/cynosure) +"cMW" = ( +/turf/simulated/open, +/area/surface/outside/plains/station) +"cNb" = ( +/obj/structure/table/steel, +/obj/item/weapon/storage/firstaid/regular, +/obj/item/weapon/tape_roll, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 6 + }, +/obj/machinery/newscaster{ + pixel_y = -28 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/lockerroom) +"cNt" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/east) +"cNv" = ( +/obj/item/modular_computer/console/preset/medical{ + dir = 1 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/reception) +"cNU" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/black{ + dir = 1 + }, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_waste) +"cNV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/blue{ + dir = 4 + }, +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 8; + name = "Primary Tool Storage"; + sortType = "Primary Tool Storage" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/south) +"cNX" = ( +/obj/structure/cable/cyan{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -12; + pixel_y = -24 + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/atmospherics) +"cOo" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Cargo Technician" + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/lockerroom) +"cOp" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -21 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/surface/station/crew_quarters/kitchen) +"cOE" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 8 + }, +/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{ + dir = 4; + pixel_x = -24; + pixel_y = 12 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 8 + }, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/storage/primarytool) +"cOO" = ( +/turf/simulated/wall, +/area/surface/station/engineering/engineering_monitoring) +"cPd" = ( +/obj/structure/tanning_rack, +/turf/simulated/floor/outdoors/dirt/sif{ + outdoors = 0 + }, +/area/surface/outside/plains/station) +"cQm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/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" + }, +/obj/item/weapon/bikehorn/rubberducky{ + pixel_x = 6; + pixel_y = -6 + }, +/obj/machinery/camera/network/ground_floor{ + c_tag = "Ground Floor - Park Center"; + dir = 1; + layer = 2.1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/park) +"cQr" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/floodlight, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/engineering/storage) +"cQw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/engineering/atmos) +"cQC" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad" + }, +/obj/machinery/door/airlock/external, +/obj/effect/map_helper/airlock/door/simple, +/turf/simulated/floor/plating, +/area/surface/station/quartermaster/storage) +"cQI" = ( +/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, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/surface/station/park) +"cQJ" = ( +/obj/structure/closet/hydrant{ + pixel_y = -32 + }, +/obj/item/clothing/glasses/meson, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/storage/emergency/sec) +"cQN" = ( +/turf/simulated/floor/water/deep, +/area/surface/outside/plains/plateau) +"cRm" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/greengrid, +/area/surface/station/ai/upload) +"cRp" = ( +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/brown/bordercorner, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/storage) +"cSg" = ( +/turf/simulated/floor/tiled/old_tile/gray, +/area/shuttle/exploration/cockpit) +"cSu" = ( +/obj/effect/floor_decal/techfloor{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4; + frequency = 1379; + id_tag = "marrivals_airlock_pump" + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/arrivals/cynosure) +"cSV" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/ai/upload) +"cTf" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock{ + name = "Garage" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/garage) +"cTj" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/bed/chair/shuttle, +/turf/simulated/shuttle/floor/white, +/area/shuttle/large_escape_pod1/station) +"cTl" = ( +/obj/machinery/vending/engivend{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/workshop) +"cTK" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/solars/west) +"cTU" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 9 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/water/deep{ + has_fish = 0 + }, +/area/surface/outside/station/reactorpond) +"cUh" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -21 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/equiptment_storage/ses) +"cUj" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/green/bordercorner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/green/bordercorner2{ + dir = 5 + }, +/obj/machinery/camera/network/ground_floor{ + c_tag = "Ground Floor - Park East"; + dir = 8 + }, +/obj/machinery/light/spot{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/park) +"cUk" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/camera/network/civilian{ + c_tag = "CIV - Cafeteria West"; + dir = 4 + }, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/cafeteria) +"cUE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/delivery) +"cUG" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/surface/station/janitor) +"cVa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/kitchen) +"cVc" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + frequency = 1379; + id_tag = "northeast_solar_pump" + }, +/obj/effect/floor_decal/industrial/warning/cee{ + dir = 4 + }, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + id_tag = "northeast_solar_airlock"; + pixel_y = 25; + req_one_access = list(11,24) + }, +/obj/machinery/airlock_sensor{ + id_tag = "northeast_solar_airlock_sensor"; + pixel_x = -11; + pixel_y = 25 + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/solars/northeast) +"cVf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/arrivals/cynosure) +"cVk" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/west) +"cVm" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 9 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 9 + }, +/obj/structure/closet/crate, +/obj/item/weapon/storage/backpack/parachute{ + pixel_x = -6; + pixel_y = -6 + }, +/obj/item/weapon/storage/backpack/parachute{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/item/weapon/storage/backpack/parachute{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/weapon/storage/backpack/parachute, +/obj/item/weapon/storage/backpack/parachute{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/backpack/parachute{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/device/spaceflare, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/rnd/exploration) +"cVy" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/arrivals/cynosure/nopower) +"cVI" = ( +/obj/structure/disposalpipe/down{ + dir = 1 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/lattice, +/obj/structure/cable{ + d1 = 32; + icon_state = "32-1" + }, +/obj/machinery/door/firedoor/border_only, +/turf/simulated/open, +/area/surface/station/maintenance/north/gnd) +"cVQ" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/map_helper/airlock/door/ext_door, +/obj/effect/floor_decal/rust, +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "eng_ew2_airlock_outer"; + locked = 1; + name = "External Access" + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/maintenance/east/gnd) +"cVX" = ( +/obj/effect/floor_decal/techfloor{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/ai/server_room) +"cWm" = ( +/obj/structure/sink/kitchen{ + dir = 8; + pixel_x = 12 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/xenobiology) +"cWu" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/light, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/engineering/reactor_smes) +"cWP" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/ward) +"cXj" = ( +/obj/item/device/holowarrant, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 10 + }, +/obj/item/clothing/glasses/hud/security, +/obj/structure/closet/secure_closet/security/cynosure, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/lockerroom) +"cXn" = ( +/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 = "Reactor Access"; + req_one_access = list(11,24) + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/engineering/reactor_airlock) +"cXQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/techfloor{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/ai/upload) +"cXT" = ( +/obj/structure/sign/warning/radioactive, +/turf/simulated/wall, +/area/surface/outside/plains/station) +"cXY" = ( +/obj/structure/cable/cyan{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/effect/floor_decal/techfloor/corner{ + dir = 10 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/closet/radiation, +/obj/item/clothing/glasses/meson, +/obj/item/clothing/glasses/meson, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -12; + pixel_y = -24 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7, +/obj/effect/zone_divider, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/engineering/reactor_airlock) +"cYk" = ( +/turf/simulated/floor/wood/sif/broken, +/area/surface/outside/path/plains) +"cYD" = ( +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/industrial/hatch/yellow, +/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/open{ + dir = 4; + id = "xenobio6"; + layer = 3.3; + name = "Containment Blast Doors" + }, +/obj/machinery/door/window/brigdoor/northleft{ + name = "Containment Pen"; + req_access = list(47) + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/rnd/xenobiology) +"cYW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/wall, +/area/surface/station/hallway/primary/groundfloor/west/elevator) +"cZg" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/machinery/photocopier, +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = 30 + }, +/obj/machinery/camera/network/security{ + c_tag = "SEC - HoS' Office"; + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/crew_quarters/heads/hos) +"cZj" = ( +/obj/machinery/atmospherics/omni/atmos_filter{ + tag_east = 2; + tag_south = 3; + tag_west = 1 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"cZC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/reception) +"cZO" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 1 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/machinery/light_switch{ + pixel_x = 12; + pixel_y = 24 + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/west) +"cZQ" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/engineering/workshop) +"daz" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/arrivals/cynosure) +"daE" = ( +/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/machinery/navbeacon/patrol{ + location = "EH1"; + next_patrol = "EH2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central2, +/obj/effect/floor_decal/steeldecal/steel_decals_central6, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/hallway/primary/groundfloor/east) +"daO" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/medical/surgeryobs) +"daW" = ( +/obj/structure/device/piano, +/obj/effect/zone_divider, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/kitchen) +"dbt" = ( +/obj/machinery/door/firedoor/border_only, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/bordercorner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/gnd) +"dbB" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/xenobiology) +"dbE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "steel_dirty"; + initial_flooring = /decl/flooring/tiling/steel_dirty; + outdoors = 0 + }, +/area/surface/outside/plains/station) +"dbY" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/north) +"dcz" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/machinery/camera/network/security{ + c_tag = "SEC - Hallway Southeast"; + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/gnd) +"dda" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "st1_tint" + }, +/turf/simulated/floor/plating, +/area/surface/station/medical/surgery) +"ddi" = ( +/obj/effect/floor_decal/techfloor{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1379; + id_tag = "msouth_airlock_pump" + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/machinery/camera/network/ground_floor{ + c_tag = "Ground Floor - Main Airlock South"; + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/hallway/primary/groundfloor/south) +"ddt" = ( +/obj/machinery/vending/tool{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/workshop) +"deb" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/air_sensor{ + frequency = 1438; + id_tag = "engine_sensor"; + output = 63 + }, +/turf/simulated/floor/reinforced/supermatter_core, +/area/surface/station/engineering/reactor_room) +"deU" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 6 + }, +/obj/structure/grille, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/station) +"dfb" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/north/gnd) +"dfd" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/engineering/reactor_smes) +"dff" = ( +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/disposalpipe/junction, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/security/gnd) +"dfg" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/blast/gate/thin/open{ + dir = 2; + id = "janitor_blast"; + layer = 3.3 + }, +/obj/machinery/door/window/northleft{ + name = "Janitorial Desk"; + req_one_access = list(26) + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/janitor) +"dfi" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "medbayquar"; + layer = 3.3; + name = "Medbay Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/medical/reception) +"dfk" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/yellow/border, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway) +"dfs" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 8 + }, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/storage/primarytool) +"dgw" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/range) +"dgI" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/maintenance{ + name = "Custodial Maintenance"; + req_access = list(26) + }, +/turf/simulated/floor/plating, +/area/surface/station/janitor) +"dgP" = ( +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/space) +"diu" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/table/rack, +/obj/item/clothing/mask/gas{ + pixel_x = -5; + pixel_y = -5 + }, +/obj/item/clothing/mask/gas{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/gas{ + pixel_y = -5 + }, +/obj/item/clothing/mask/gas{ + pixel_x = 2; + pixel_y = -3 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/equiptment_storage/ses) +"diD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -12; + pixel_y = -24 + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/chapel) +"djc" = ( +/obj/machinery/atmospherics/portables_connector/fuel{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/phoron, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/exploration/cargo) +"djw" = ( +/obj/machinery/atmospherics/valve/digital{ + dir = 4; + name = "Emergency Cooling Valve 1" + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"djO" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/etc) +"djS" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 6 + }, +/obj/machinery/recharger/wallcharger{ + pixel_y = -28 + }, +/obj/item/device/tape/random, +/obj/item/device/taperecorder, +/obj/item/device/megaphone, +/obj/structure/closet/secure_closet/hos/cynosure, +/turf/simulated/floor/tiled/dark, +/area/surface/station/crew_quarters/heads/hos) +"dko" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_medical{ + name = "EMT Bay" + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/medical/emt_bay) +"dkx" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/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/surface/station/rnd/hallway/gnd) +"dkB" = ( +/obj/effect/floor_decal/techfloor, +/obj/effect/floor_decal/techfloor/hole, +/obj/effect/floor_decal/industrial/warning, +/obj/effect/floor_decal/techfloor/corner{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/ai/upload) +"dkO" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/south) +"dlf" = ( +/obj/structure/sign/warning/high_voltage, +/turf/simulated/wall/r_wall, +/area/surface/station/maintenance/substation/cargo/gnd) +"dln" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/sleep_console{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/full{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/medical/etc) +"dlq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/ward) +"dlE" = ( +/turf/simulated/wall, +/area/surface/station/maintenance/substation/atmospherics) +"dlI" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 4 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway) +"dmr" = ( +/obj/effect/floor_decal/rust, +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/east/gnd) +"dmu" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/engineering/hallway) +"dmB" = ( +/obj/structure/table/bench/padded, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite/corner, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 21 + }, +/obj/effect/floor_decal/corner/purple/bordercorner, +/obj/effect/landmark/start{ + name = "Xenobiologist" + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/rnd/research_lockerroom) +"dnf" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/engineering/reactor_smes) +"dns" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/surgery) +"dnx" = ( +/obj/machinery/door/firedoor/border_only, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/kitchen) +"dny" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/security{ + name = "Interrogation Observation"; + req_access = list(63); + req_one_access = null + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/security/interrogation) +"dnF" = ( +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/station) +"dnJ" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/cafeteria) +"dnQ" = ( +/obj/structure/bed/chair/wood{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/cafeteria) +"doc" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/quartermaster/storage) +"dof" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/glass_external{ + frequency = 1380; + icon_state = "door_locked"; + id_tag = "large_escape_pod_1_berth_hatch"; + locked = 1; + name = "Large Escape Pod 1"; + req_access = list(13) + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/outpost/research/xenoarcheology/surface) +"doq" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/gnd) +"doW" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/industrial/danger, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/storage) +"dpu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/etc) +"dpw" = ( +/obj/structure/sign/warning/high_voltage, +/turf/simulated/wall/r_wall, +/area/surface/station/security/equiptment_storage/ses) +"dpB" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "biohazard"; + layer = 3.3; + name = "Biohazard Shutter" + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/rnd/hallway/gnd) +"dpJ" = ( +/obj/effect/floor_decal/borderfloorblack/corner, +/obj/effect/floor_decal/corner/red/bordercorner, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/security/interrogation) +"dpM" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = 30 + }, +/turf/simulated/floor/tiled/hydro, +/area/surface/station/rnd/xenobiology/xenoflora_isolation) +"dpN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/xenobiology) +"dpO" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_airlock) +"dpQ" = ( +/obj/machinery/appliance/cooker/grill, +/turf/simulated/floor/tiled/eris/cafe, +/area/surface/station/crew_quarters/kitchen) +"dpS" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 8 + }, +/obj/structure/table/steel, +/obj/machinery/cell_charger, +/obj/random/powercell, +/turf/simulated/floor/tiled/dark, +/area/surface/station/engineering/hallway) +"dqe" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/obj/machinery/light/spot{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/station/crew_quarters/pool) +"dqB" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/disposal, +/turf/simulated/floor/tiled, +/area/surface/station/crew_quarters/heads/hop) +"drf" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 5 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 5 + }, +/obj/structure/table/standard, +/obj/structure/extinguisher_cabinet{ + dir = 1; + pixel_y = 30 + }, +/obj/item/weapon/storage/box/cups, +/obj/item/device/radio/intercom/department/medbay{ + dir = 8; + pixel_x = 21 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/surgeryobs) +"dry" = ( +/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 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/shuttle/exploration/general) +"drF" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/surface/station/security/briefing_room) +"drL" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/atmospherics) +"dsn" = ( +/obj/machinery/door/firedoor/border_only, +/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/station/rnd/hallway/stairwell) +"dsK" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/obj/item/weapon/reagent_containers/glass/bucket{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/reagent_containers/glass/bucket, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/rnd/xenobiology/xenoflora) +"dsW" = ( +/obj/effect/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/carpet, +/area/surface/station/chapel/main) +"dtf" = ( +/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/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/machinery/button/remote/airlock{ + dir = 4; + id = "Surgery"; + name = "Door Control"; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/ward) +"dti" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"dtl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/kitchen) +"dtm" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning/dust, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor + }, +/area/surface/outside/plains/station) +"dtt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/ward) +"due" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/reactor) +"dux" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/effect/zone_divider, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/south) +"duN" = ( +/obj/structure/sign/directions/evac{ + dir = 8 + }, +/obj/structure/sign/directions/cryo{ + dir = 8; + pixel_y = -6 + }, +/turf/simulated/wall/r_wall, +/area/surface/station/hallway/primary/groundfloor/east) +"duZ" = ( +/obj/machinery/atmospherics/unary/engine{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/exploration/cargo) +"dvA" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/monofloor, +/area/surface/station/security/range) +"dvS" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "steel_dirty"; + initial_flooring = /decl/flooring/tiling/steel_dirty + }, +/area/surface/station/arrivals/cynosure) +"dvT" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/quartermaster/storage) +"dwo" = ( +/obj/structure/sign/directions/security/interrogation{ + dir = 4; + pixel_y = -6 + }, +/turf/simulated/wall/r_wall, +/area/surface/station/security/hallway/gnd) +"dwr" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/security/restroom) +"dwB" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible/black, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "ReactorWasteViewport01"; + layer = 3.3; + name = "Reactor Waste Viewport Shutter" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_waste) +"dwC" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"dwK" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/item/device/radio/intercom{ + pixel_y = -21 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/storage) +"dxu" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/zone_divider, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/kitchen) +"dyq" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/border_only, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock{ + name = "Custodial Closet"; + req_one_access = list(26) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/janitor) +"dyx" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 5 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 5 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/rnd/exploration) +"dyH" = ( +/obj/structure/sign/directions/ladder_down{ + pixel_y = 6 + }, +/turf/simulated/wall, +/area/surface/station/maintenance/north/gnd) +"dyI" = ( +/obj/structure/ladder/up, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/chapel) +"dyN" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/cable/green, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/window/reinforced/polarized/full{ + id = "secpro" + }, +/turf/simulated/floor/plating, +/area/surface/station/security/processing) +"dzj" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/pink/border{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/table/standard, +/obj/item/weapon/storage/firstaid/surgery, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/surgery) +"dzm" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/garage) +"dzz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/carpet, +/area/surface/station/crew_quarters/heads/hop) +"dAm" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/power/generator{ + anchored = 1 + }, +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"dBs" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/engineering/workshop) +"dBJ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/valve/shutoff{ + name = "Engineering automatic shutoff valve" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/engineering/gnd) +"dBM" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/old_tile/blue, +/area/surface/station/arrivals/cynosure/cryo) +"dBO" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/gnd) +"dCd" = ( +/obj/structure/closet/walllocker/emerglocker{ + pixel_y = 32 + }, +/obj/structure/bed/chair/shuttle, +/turf/simulated/shuttle/floor/white, +/area/shuttle/large_escape_pod1/station) +"dCe" = ( +/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/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/maintenance{ + req_one_access = list(12,25,27,28,35) + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/kitchen) +"dCJ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/ward) +"dCY" = ( +/obj/effect/floor_decal/techfloor{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4; + frequency = 1379; + id_tag = "arc3_airlock_pump" + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/outpost/research/xenoarcheology/surface) +"dDa" = ( +/obj/effect/floor_decal/corner/green/full, +/obj/machinery/light/small, +/turf/simulated/floor/reinforced, +/area/surface/station/engineering/atmos) +"dDm" = ( +/obj/item/device/holowarrant, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/item/clothing/glasses/hud/security, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/structure/closet/secure_closet/security/cynosure, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/lockerroom) +"dDp" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 6 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 6 + }, +/obj/item/weapon/paper_bin, +/obj/item/weapon/folder/white, +/obj/item/weapon/folder/white, +/obj/item/weapon/pen, +/obj/item/weapon/reagent_containers/spray/cleaner, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/reception) +"dDF" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/rnd/xenobiology/xenoflora_isolation) +"dDZ" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/station/solar/westsolar) +"dEg" = ( +/obj/structure/closet/secure_closet/hydroponics/sci, +/obj/effect/floor_decal/spline/plain{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/rnd/xenobiology/xenoflora) +"dEk" = ( +/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/catwalk_plated, +/turf/simulated/floor/plating, +/area/surface/station/hallway/primary/groundfloor/west) +"dEr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/foyer) +"dEz" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/door/window/westright{ + name = "EVA Suit"; + req_one_access = list(43) + }, +/obj/structure/table/rack{ + layer = 2.6 + }, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/mask/breath, +/obj/item/clothing/suit/space/void/pilot/alt, +/obj/item/clothing/head/helmet/space/void/pilot/alt, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/rnd/exploration) +"dEV" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/hydro, +/area/surface/station/rnd/xenobiology/xenoflora_isolation) +"dEZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3, +/obj/machinery/hologram/holopad, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/shuttle/exploration/general) +"dFG" = ( +/turf/simulated/wall, +/area/surface/station/engineering/atmos) +"dFY" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning/dust/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor + }, +/area/surface/station/hallway/primary/groundfloor/north) +"dGb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/paleblue/full, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/medical/etc) +"dGA" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central4{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/east) +"dGI" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/storage/primarytool) +"dGU" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock{ + name = "Library Office"; + req_one_access = list(37) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/library) +"dHl" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor, +/obj/effect/floor_decal/industrial/warning, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/ai_slipper, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/ai/upload) +"dHz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_security{ + name = "Forensics"; + req_one_access = list(4) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/security/detectives_office/lab) +"dHA" = ( +/obj/machinery/smartfridge/produce/persistent_lossy, +/turf/simulated/wall, +/area/surface/station/hydroponics) +"dIe" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/engineering/hallway/reactor) +"dIK" = ( +/obj/structure/handrail{ + dir = 4 + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/shuttle/exploration/general) +"dIZ" = ( +/obj/machinery/portable_atmospherics/powered/pump/filled, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/north/gnd) +"dJf" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/west) +"dJy" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow, +/obj/machinery/meter, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"dJU" = ( +/obj/structure/fence/corner{ + dir = 8 + }, +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/mask, +/area/surface/outside/plains/station) +"dKa" = ( +/obj/structure/sign/directions/ladderwell{ + dir = 4; + pixel_x = 32 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/kitchen) +"dKd" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 21 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/hallway/gnd) +"dKh" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/surgery) +"dKr" = ( +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/effect/catwalk_plated/dark, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/research/gnd) +"dKB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 8 + }, +/obj/structure/table/bench/steel, +/obj/effect/landmark/start{ + name = "Explorer" + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/rnd/exploration) +"dKJ" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/dust/corner, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "steel_dirty"; + initial_flooring = /decl/flooring/tiling/steel_dirty; + outdoors = 0 + }, +/area/surface/outside/plains/station) +"dKO" = ( +/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, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/station/solar/westsolar) +"dLs" = ( +/obj/machinery/atmospherics/binary/pump/on{ + dir = 1; + name = "Air to Ports" + }, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"dLD" = ( +/obj/machinery/light, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "steel_dirty"; + initial_flooring = /decl/flooring/tiling/steel_dirty + }, +/area/surface/station/arrivals/cynosure) +"dML" = ( +/obj/effect/floor_decal/corner_techfloor_gray{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/west) +"dMX" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/disposal, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 4 + }, +/obj/machinery/button/ignition{ + id = "Mresearch"; + pixel_x = -4; + pixel_y = 24 + }, +/obj/machinery/button/remote/blast_door{ + id = "misclab"; + pixel_x = 6; + pixel_y = 24; + req_one_access = list(47) + }, +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = 30 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/misc_lab) +"dNC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/ai/upload) +"dNE" = ( +/obj/structure/sign/directions/cargo{ + dir = 10; + pixel_y = 6 + }, +/obj/structure/sign/directions/science{ + dir = 10 + }, +/obj/structure/sign/directions/engineering{ + pixel_y = -6 + }, +/turf/simulated/wall/r_wall, +/area/surface/station/park) +"dNR" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 9 + }, +/turf/simulated/floor/tiled/asteroid_steel, +/area/surface/outside/plains/station) +"dNY" = ( +/obj/machinery/conveyor{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + frequency = null; + icon_state = "door_locked"; + id_tag = null; + locked = 1; + name = "External Access" + }, +/turf/simulated/floor/plating, +/area/surface/station/arrivals/cynosure) +"dNZ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/item/weapon/stool/padded, +/obj/effect/floor_decal/corner/purple/border{ + dir = 10 + }, +/obj/effect/landmark/start{ + name = "Janitor" + }, +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "janitor_blast"; + name = "Janitor Shutter Control"; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/janitor) +"dOF" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/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; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/effect/catwalk_plated/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/civilian) +"dPc" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass{ + name = "Engineering Foyer" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/engineering/foyer) +"dPv" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/obj/machinery/ai_status_display{ + pixel_x = -32 + }, +/obj/machinery/light/spot{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/station/crew_quarters/pool) +"dPw" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/hallway/primary/groundfloor/east) +"dPB" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/north) +"dPG" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner{ + dir = 8 + }, +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 8; + name = "Atmospherics"; + sortType = "Atmospherics" + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway) +"dPI" = ( +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/disposal, +/turf/simulated/floor/lino, +/area/surface/station/chapel/office) +"dQk" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 5 + }, +/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{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/crew_quarters/locker) +"dRK" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"dRM" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/surface/station/hallway/primary/groundfloor/north) +"dRW" = ( +/obj/machinery/computer/operating, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/pink/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/surgery2) +"dRY" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 32; + d2 = 4; + icon_state = "32-4" + }, +/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/zpipe/down/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/down{ + dir = 8 + }, +/obj/structure/lattice, +/obj/machinery/door/firedoor/border_only, +/turf/simulated/open, +/area/surface/station/maintenance/substation/engineering/gnd) +"dSl" = ( +/turf/simulated/wall, +/area/surface/station/medical/cloning) +"dSx" = ( +/obj/structure/ladder, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/surface) +"dTz" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/ai_status_display, +/turf/simulated/floor/plating, +/area/surface/station/medical/emt_bay) +"dTQ" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/arrivals/cynosure/cryo) +"dUv" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/glass_atmos{ + name = "Atmospherics" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/engineering/atmos) +"dUE" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 2; + name = "Stairway Access" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/hallway/primary/groundfloor/east) +"dUH" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/holosign/surgery{ + id = "op1" + }, +/obj/machinery/door/airlock/medical{ + name = "Operating Theatre 1"; + req_one_access = list(45) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/medical/surgery) +"dVd" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"dVn" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/obj/structure/table/glass, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/camera/network/civilian{ + c_tag = "CIV - Pool West"; + dir = 4 + }, +/obj/effect/zone_divider, +/turf/simulated/floor/tiled/freezer, +/area/surface/station/crew_quarters/pool) +"dVp" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/industrial/danger, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/garage) +"dVU" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/valve, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/north/gnd) +"dWF" = ( +/obj/machinery/power/breakerbox/activated{ + RCon_tag = "Research Substation Bypass" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/research/gnd) +"dXk" = ( +/turf/simulated/floor/water, +/area/surface/outside/ocean) +"dXF" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible/yellow, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"dXT" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 10 + }, +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + id = "atmoslockdown"; + layer = 3.3; + name = "Atmospherics Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/atmos) +"dYh" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/maintenance/substation/cargo/gnd) +"dYO" = ( +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 21 + }, +/obj/machinery/computer/shuttle_control/explore/explorer_shuttle, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/shuttle/exploration/cockpit) +"dYT" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/gnd) +"dZA" = ( +/obj/effect/floor_decal/techfloor{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4; + frequency = 1380; + id_tag = "escape_dock_south_starboard_pump" + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/arrivals/cynosure) +"dZT" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/station/crew_quarters/pool) +"dZZ" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/quartermaster/storage) +"eao" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/closet/crate/radiation, +/obj/item/clothing/glasses/meson, +/obj/item/clothing/glasses/meson, +/obj/item/stack/material/lead{ + amount = 30 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/engineering/storage) +"eav" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/north/gnd) +"eaB" = ( +/obj/effect/map_effect/portal/line/side_a, +/turf/simulated/floor/outdoors/dirt/sif, +/area/surface/outside/path/plains) +"ebk" = ( +/obj/effect/catwalk_plated/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/surface/station/engineering/storage) +"ebn" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/old_tile/white, +/area/surface/station/rnd/research_restroom) +"ebH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 2; + name = "Hydroponics"; + sortType = "Hydroponics" + }, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/cafeteria) +"ecm" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/pink/border{ + dir = 1 + }, +/obj/machinery/camera/network/medbay{ + c_tag = "MED - Operating Theatre 2" + }, +/obj/machinery/optable, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/surgery2) +"ecL" = ( +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -12; + pixel_y = -24 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/bordercorner{ + dir = 8 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/machinery/button/windowtint{ + id = "hop_office"; + pixel_x = 11; + pixel_y = -23 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7, +/obj/machinery/keycard_auth{ + pixel_y = -36 + }, +/turf/simulated/floor/tiled, +/area/surface/station/crew_quarters/heads/hop) +"ecV" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/yellow/border, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner2{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway) +"edv" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 9 + }, +/obj/machinery/requests_console{ + department = "Tool Storage"; + dir = 4; + name = "Tool Storage RC"; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/storage/primarytool) +"edA" = ( +/obj/structure/table/wooden_reinforced, +/obj/machinery/button/remote/airlock{ + dir = 8; + id = "detdoor"; + layer = 2.9; + name = "Office Door"; + pixel_x = -5; + pixel_y = 4 + }, +/obj/machinery/button/windowtint{ + dir = 4; + id = "detwest"; + layer = 2.9; + pixel_x = -8; + pixel_y = -6 + }, +/obj/item/weapon/handcuffs, +/obj/item/device/tape/random, +/turf/simulated/floor/carpet, +/area/surface/station/security/detectives_office) +"een" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/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/surface/station/hallway/secondary/groundfloor/civilian) +"eet" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/red, +/obj/effect/catwalk_plated, +/obj/structure/table/steel, +/obj/machinery/cell_charger, +/obj/item/device/multitool, +/obj/item/weapon/tool/wrench, +/turf/simulated/floor/plating, +/area/surface/station/engineering/atmos) +"eez" = ( +/turf/simulated/wall, +/area/surface/station/security/lobby) +"eeB" = ( +/obj/machinery/vending/assist, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/storage/primarytool) +"eeL" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/etc) +"eeQ" = ( +/obj/item/modular_computer/console/preset/command{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/crew_quarters/heads/hop) +"eeU" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/surface/station/chapel/main) +"efa" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"efj" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance{ + req_one_access = list(12,25,27,28,35) + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/kitchen) +"efl" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/kitchen) +"efW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/cargo/gnd) +"egk" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/storage) +"egv" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/etc) +"ehn" = ( +/obj/effect/floor_decal/industrial/outline/blue, +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"ehK" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 4 + }, +/turf/simulated/floor/tiled/asteroid_steel, +/area/surface/outside/plains/station) +"ehL" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/quartermaster/delivery) +"ehO" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "ReactorPoolViewport"; + name = "Reactor Cooling Pond Viewport Shutters"; + pixel_x = 24; + req_one_access = list(11,24) + }, +/obj/machinery/atmospherics/valve/open, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"ehV" = ( +/obj/structure/table/wooden_reinforced, +/obj/item/device/flashlight/lamp/green, +/obj/structure/window/reinforced/polarized{ + dir = 8; + id = "deteast" + }, +/obj/item/device/radio/intercom{ + pixel_y = -21 + }, +/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, +/area/surface/station/park) +"eiB" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/red/bordercorner, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/gnd) +"eiZ" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/pink/border{ + dir = 4 + }, +/obj/item/device/mass_spectrometer/adv, +/obj/item/device/reagent_scanner, +/obj/item/weapon/reagent_containers/syringe, +/obj/machinery/requests_console{ + department = "Security"; + departmentType = 5; + dir = 8; + name = "Security RC"; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/security/detectives_office/lab) +"eje" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/bordercorner{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/hallway/primary/groundfloor/south) +"ekq" = ( +/obj/structure/table/wooden_reinforced, +/obj/item/device/taperecorder, +/turf/simulated/floor/carpet, +/area/surface/station/security/detectives_office) +"ekF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/ai/upload) +"ekI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/blast/regular/open{ + id = "seclockdown"; + layer = 3.3; + name = "Security Lockdown" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/surface/station/security/hallway/gnd) +"ekK" = ( +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/spline/plain{ + icon_state = "spline_plain_full" + }, +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/chapel/main) +"ekM" = ( +/obj/machinery/power/smes/buildable{ + RCon_tag = "Substation - Cargo"; + charge = 2e+006 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/green, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/cargo/gnd) +"ekU" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/engineering_monitoring) +"ekV" = ( +/obj/structure/cable/green{ + 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 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/workshop) +"elp" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/pink/border{ + dir = 8 + }, +/obj/machinery/button/remote/blast_door{ + id = "surgeryobs1"; + name = "Privacy Shutters"; + pixel_x = 1; + pixel_y = 36 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 21 + }, +/obj/item/device/radio/intercom/department/medbay{ + dir = 4; + pixel_x = -21 + }, +/obj/machinery/iv_drip, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/surgery) +"emg" = ( +/obj/item/device/radio/intercom{ + pixel_y = -21 + }, +/obj/structure/table/wooden_reinforced, +/obj/item/device/flashlight/lamp/green, +/obj/structure/window/reinforced/polarized{ + dir = 4; + id = "detwest" + }, +/turf/simulated/floor/carpet, +/area/surface/station/security/detectives_office) +"eml" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/green, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "hosoffice" + }, +/turf/simulated/floor/plating, +/area/surface/station/crew_quarters/heads/hos) +"emw" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/yellow/border, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + pixel_y = -21 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway) +"emF" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/grass, +/area/surface/station/hydroponics/garden) +"enb" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/chapel/main) +"enh" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central5, +/turf/simulated/floor/tiled, +/area/surface/station/park) +"eni" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/obj/structure/window/reinforced, +/obj/structure/closet/athletic_swimwear, +/turf/simulated/floor/tiled/freezer, +/area/surface/station/crew_quarters/pool) +"enM" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 4 + }, +/obj/structure/mopbucket, +/obj/item/weapon/mop, +/obj/item/weapon/reagent_containers/glass/bucket, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/newscaster{ + pixel_x = 26 + }, +/obj/machinery/camera/network/civilian{ + c_tag = "CIV - Custodial Closet"; + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/janitor) +"eoi" = ( +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/mask, +/area/surface/outside/plains/plateau) +"eor" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/hologram/holopad, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/monofloor{ + dir = 4 + }, +/area/surface/station/hallway/primary/groundfloor/east) +"eoN" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/medical/etc) +"eoP" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/obj/item/weapon/stool/barstool/padded{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/south) +"eph" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 4 + }, +/obj/item/device/tape/random, +/obj/item/device/taperecorder, +/turf/simulated/floor/tiled, +/area/surface/station/security/processing) +"epn" = ( +/obj/structure/bookcase{ + name = "bookcase (Reference)" + }, +/obj/item/weapon/book/codex/lore/robutt, +/obj/item/weapon/book/codex/corp_regs, +/turf/simulated/floor/wood, +/area/surface/station/library) +"epo" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 9 + }, +/obj/structure/table/marble, +/obj/item/weapon/reagent_containers/food/condiment/small/sugar, +/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{ + pixel_x = 2 + }, +/obj/item/weapon/reagent_containers/food/condiment/small/peppershaker{ + pixel_x = -4 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/surface/station/crew_quarters/cafeteria) +"epp" = ( +/obj/structure/catwalk, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/water/deep{ + has_fish = 0 + }, +/area/surface/outside/station/reactorpond) +"epw" = ( +/obj/structure/cryofeed{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/cee{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/arrivals/cynosure/cryo) +"epS" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/hydroponics) +"epW" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/reactor) +"eqk" = ( +/obj/structure/window/reinforced, +/obj/machinery/computer/security/telescreen/entertainment{ + icon_state = "frame"; + pixel_x = -32 + }, +/obj/machinery/camera/network/civilian{ + c_tag = "CIV - Library West"; + dir = 4 + }, +/turf/simulated/floor/wood, +/area/surface/station/library) +"eqn" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/machinery/camera/network/security{ + c_tag = "SEC - Hallway North"; + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/gnd) +"eqs" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/hydro, +/area/surface/station/hydroponics) +"eqv" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/sign/directions/cargo{ + dir = 1; + pixel_x = -32; + pixel_y = 6 + }, +/obj/structure/sign/directions/elevator{ + dir = 1; + pixel_x = -32; + pixel_y = -6 + }, +/obj/structure/sign/directions/science{ + dir = 1; + pixel_x = -32 + }, +/turf/simulated/floor/plating, +/area/surface/station/hallway/primary/groundfloor/south) +"eqC" = ( +/obj/machinery/status_display{ + pixel_y = -32 + }, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/gym) +"eqI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/surface/station/crew_quarters/heads/hop) +"erl" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/maintenance/kitchen) +"ero" = ( +/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/borderfloor, +/obj/effect/floor_decal/corner/yellow/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/yellow/bordercorner2, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/reactor) +"erT" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/surface/station/park) +"esl" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/water/pool, +/area/surface/station/crew_quarters/pool) +"esn" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red, +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"esv" = ( +/obj/structure/table/steel_reinforced, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 8 + }, +/obj/machinery/cell_charger, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/garage) +"esD" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/shutters{ + density = 0; + icon_state = "shutter0"; + id = "surgeryobs2"; + layer = 3.3; + name = "Operating Theatre Privacy Shutters"; + opacity = 0; + open_layer = 3.3 + }, +/turf/simulated/floor/plating, +/area/surface/station/medical/surgery2) +"esX" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/exploration/cargo) +"esZ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/north) +"etm" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/purple/border, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/gnd) +"etq" = ( +/obj/machinery/cryopod, +/obj/effect/floor_decal/industrial/warning/cee{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/arrivals/cynosure/cryo) +"etA" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/west) +"euc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/surface/station/library) +"eup" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/power/terminal{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/atmospherics) +"euA" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"euD" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/ai/upload) +"euR" = ( +/obj/structure/bed/chair/shuttle{ + dir = 4 + }, +/turf/simulated/shuttle/floor/white, +/area/shuttle/large_escape_pod1/station) +"evz" = ( +/obj/structure/sign/directions/command{ + dir = 4 + }, +/obj/structure/sign/directions/stairs_up{ + dir = 4; + pixel_y = -6 + }, +/obj/structure/sign/directions/dorms{ + dir = 4; + pixel_y = 6 + }, +/turf/simulated/wall/r_wall, +/area/surface/station/park) +"evA" = ( +/obj/effect/floor_decal/corner_steel_grid{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/camera/network/ground_floor{ + c_tag = "Ground Floor - North Hallway 3"; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/north) +"evM" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/xenobiology) +"evN" = ( +/obj/effect/floor_decal/industrial/outline, +/obj/machinery/portable_atmospherics/canister/nitrogen, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"evO" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/shieldgen, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/engineering/storage) +"evV" = ( +/obj/structure/table/marble, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/machinery/cash_register/civilian{ + dir = 8 + }, +/obj/machinery/door/blast/gate/thin{ + dir = 8; + id = "bar2"; + layer = 3.3 + }, +/turf/simulated/floor/lino, +/area/surface/station/crew_quarters/bar) +"ewa" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"ewh" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 6 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/storage/primarytool) +"ewC" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/hydro, +/area/surface/station/rnd/xenobiology/xenoflora_isolation) +"ewJ" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "west_solar_inner"; + locked = 1; + name = "Solar Internal Access" + }, +/obj/effect/map_helper/airlock/door/int_door, +/obj/machinery/access_button/airlock_interior{ + dir = 4; + master_tag = "west_solar_airlock"; + pixel_y = 35; + req_one_access = list(11,24) + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/solars/west) +"exA" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/surface/station/engineering/atmos) +"exG" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/maintenance{ + name = "Security Maintenance Access"; + req_access = list(1) + }, +/turf/simulated/floor/plating, +/area/surface/station/security/hallway/gnd) +"exY" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/pink/border{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/surgery2) +"eyu" = ( +/obj/effect/floor_decal/corner/blue/full{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/siphon/on/atmos{ + dir = 1; + frequency = 1441; + id_tag = "o2_out"; + initialize_directions = 1; + internal_pressure_bound = 4000; + internal_pressure_bound_default = 4000 + }, +/turf/simulated/floor/reinforced/oxygen, +/area/surface/station/engineering/atmos) +"ezd" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/green{ + dir = 8 + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "atmoslockdown"; + layer = 3.3; + name = "Atmospherics Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/atmos) +"ezk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/north/gnd) +"ezP" = ( +/obj/structure/table/steel, +/obj/random/maintenance/engineering, +/obj/random/maintenance/security, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/east/gnd) +"eAc" = ( +/obj/machinery/power/emitter, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/engineering/storage) +"eAj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 1 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/delivery) +"eAI" = ( +/obj/machinery/ai_status_display{ + pixel_y = -32 + }, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/gym) +"eAR" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/border, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway) +"eBc" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/green, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"eBl" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/cafeteria) +"eBp" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/zpipe/down/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 32; + icon_state = "32-1" + }, +/obj/structure/disposalpipe/down{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only, +/obj/structure/lattice, +/turf/simulated/open, +/area/surface/station/maintenance/substation/research/gnd) +"eBu" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/park) +"eBU" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor/hole/right{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/ai/upload) +"eBV" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/crew_quarters/locker) +"eCk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled, +/area/surface/station/security/range) +"eCn" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/research{ + name = "Research Locker Room"; + req_one_access = list(47) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/rnd/research_lockerroom) +"eCt" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/glass{ + name = "Pasture"; + req_one_access = list(28,35) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/hydroponics/garden) +"eCu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/surface/station/park) +"eCy" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/security/range) +"eCG" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/rnd/xenobiology/xenoflora) +"eCH" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "biohazard"; + layer = 3.3; + name = "Biohazard Shutter" + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/maintenance/substation/research/gnd) +"eCL" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 10 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/water/deep{ + has_fish = 0 + }, +/area/surface/outside/station/reactorpond) +"eCO" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/engineering/hallway) +"eDb" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/portable_atmospherics/canister/empty, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/structure/sign/warning/nosmoking_1{ + pixel_y = 32 + }, +/obj/effect/zone_divider, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_waste) +"eDd" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/light, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/cafeteria) +"eDw" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/purple/border, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/rnd/exploration) +"eDM" = ( +/obj/machinery/door/firedoor/border_only, +/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" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/kitchen) +"eDZ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 8 + }, +/obj/machinery/atmospherics/binary/pump{ + dir = 1; + name = "Air to Mixing" + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"eEj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/security/hallway/gnd) +"eEs" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 1 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -24; + pixel_y = 12 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/item/device/radio/intercom/department/medbay{ + pixel_y = 21 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 1 + }, +/obj/item/weapon/storage/laundry_basket, +/obj/item/weapon/storage/box/bodybags, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/cloning) +"eEB" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/maintenance{ + name = "Security Maintenance Access"; + req_access = list(1) + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/surface/station/security/hallway/gnd) +"eEW" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 5 + }, +/turf/simulated/floor/water/deep{ + has_fish = 0 + }, +/area/surface/outside/station/reactorpond) +"eFw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/surface/station/quartermaster/delivery) +"eFU" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/camera/network/ground_floor{ + c_tag = "Ground Floor - Civilian Hallway 3" + }, +/obj/effect/zone_divider, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/groundfloor/civilian) +"eGc" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/effect/floor_decal/industrial/danger, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway) +"eGf" = ( +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/green/bordercorner, +/obj/machinery/station_map{ + dir = 1; + pixel_y = -32 + }, +/turf/simulated/floor/tiled, +/area/surface/station/arrivals/cynosure) +"eGS" = ( +/obj/structure/table/wooden_reinforced, +/obj/item/weapon/paper_bin, +/obj/item/weapon/pen, +/obj/item/weapon/pen/blue{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/weapon/storage/fancy/markers, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -21 + }, +/turf/simulated/floor/lino, +/area/surface/station/chapel/office) +"eHv" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/station/crew_quarters/pool) +"eHI" = ( +/obj/structure/table/reinforced, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/window/brigdoor/southright, +/turf/simulated/floor/tiled/dark, +/area/surface/station/security/lobby) +"eHW" = ( +/turf/simulated/wall, +/area/surface/station/maintenance/substation/engineering/gnd) +"eIB" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/west/elevator) +"eIH" = ( +/obj/effect/floor_decal/techfloor{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/medical/emt_bay) +"eIP" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/maintenance{ + name = "HoP Maintenance Access"; + req_access = list(57) + }, +/turf/simulated/floor/plating, +/area/surface/station/crew_quarters/heads/hop) +"eJn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/ward) +"eJq" = ( +/obj/machinery/airlock_sensor/airlock_exterior{ + dir = 8; + frequency = 1380; + id_tag = "escape_dock_south_starboard_extsensor"; + master_tag = "escape_dock"; + pixel_x = -1; + pixel_y = 40 + }, +/obj/effect/map_helper/airlock/sensor/ext_sensor, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "steel_dirty"; + initial_flooring = /decl/flooring/tiling/steel_dirty + }, +/area/surface/outside/plains/station) +"eJC" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/sensor{ + name = "Powernet Sensor - Engine Output"; + name_tag = "Engine Output" + }, +/obj/item/device/radio/intercom{ + pixel_y = -21 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/engineering/reactor_smes) +"eJT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/arrivals/cynosure) +"eJU" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/glass_engineering{ + name = "Engineering Workshop"; + req_one_access = list(11,24) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/engineering/workshop) +"eJW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/kitchen) +"eKb" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/material/kitchen/utensil/fork{ + pixel_x = -2 + }, +/obj/item/weapon/material/kitchen/utensil/spoon{ + pixel_x = 2 + }, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/cafeteria) +"eKt" = ( +/obj/structure/stairs/spawner/south, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/etc) +"eKA" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/surface/station/library) +"eKF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/grass, +/area/surface/station/hydroponics/garden) +"eKX" = ( +/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/catwalk_plated, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/security/briefing_room) +"eLc" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/rnd/xenobiology/xenoflora_isolation) +"eLh" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + name = "Medbay Maintenance Access"; + req_access = list(5) + }, +/turf/simulated/floor/plating, +/area/surface/station/medical/etc) +"eLn" = ( +/obj/effect/floor_decal/corner/red/full{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/siphon/on/atmos{ + dir = 1; + frequency = 1441; + id_tag = "n2_out"; + initialize_directions = 1; + internal_pressure_bound = 4000; + internal_pressure_bound_default = 4000 + }, +/turf/simulated/floor/reinforced/nitrogen, +/area/surface/station/engineering/atmos) +"eNi" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/danger/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "steel_dirty"; + initial_flooring = /decl/flooring/tiling/steel_dirty + }, +/area/surface/outside/plains/station) +"eNq" = ( +/obj/structure/table/reinforced, +/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 = 8; + icon_state = "1-8" + }, +/obj/structure/window/reinforced, +/obj/machinery/button/remote/airlock{ + dir = 1; + id = "BrigFoyer"; + layer = 2.9; + name = "Foyer Doors"; + pixel_y = 6 + }, +/obj/item/sticky_pad/random{ + pixel_x = 8; + pixel_y = -1 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/security/lobby) +"eNB" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/park) +"eNC" = ( +/obj/structure/dispenser/oxygen, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/rnd/exploration) +"eNK" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass{ + name = "Hallway" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/hallway/primary/groundfloor/south) +"eOb" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/obj/machinery/atmospherics/binary/pump{ + dir = 1 + }, +/obj/effect/engine_setup/pump_max, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"eOu" = ( +/obj/structure/sign/directions/engineering/solars{ + dir = 1; + pixel_y = -6 + }, +/turf/simulated/wall, +/area/surface/station/maintenance/solars/northeast) +"eOB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/obj/effect/catwalk_plated/dark, +/obj/machinery/meter, +/obj/machinery/portable_atmospherics/powered/pump/filled, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/east/gnd) +"eOD" = ( +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/solar, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/station/solar/northeastsolar) +"eOE" = ( +/obj/structure/cable/green{ + 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 = 24 + }, +/obj/effect/floor_decal/rust/mono_rusted2, +/obj/effect/floor_decal/spline/plain{ + dir = 6 + }, +/obj/effect/floor_decal/rust, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/reagent_containers/glass/bucket{ + pixel_x = 2; + pixel_y = 2 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/station/hydroponics/garden) +"ePb" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/security/interrogation) +"ePG" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_airlock) +"ePT" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 1 + }, +/obj/machinery/newscaster{ + pixel_y = 26 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/west) +"eQc" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 10 + }, +/obj/structure/catwalk, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/simulated/floor/water/deep{ + has_fish = 0 + }, +/area/surface/outside/station/reactorpond) +"eQq" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/storage) +"eQB" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/etc) +"eQE" = ( +/obj/structure/prop/rock/watersharp, +/turf/simulated/floor/water, +/area/surface/outside/river/gautelfr) +"eQL" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/red{ + dir = 1 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"eQV" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/pink/border{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/machinery/microscope, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/security/detectives_office/lab) +"eRj" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/station/arrivals/cynosure) +"eRF" = ( +/obj/structure/bed/chair/shuttle{ + dir = 1 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/old_tile/gray, +/area/shuttle/exploration/general) +"eSb" = ( +/obj/structure/table/marble, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/item/weapon/reagent_containers/food/snacks/mint, +/obj/item/weapon/packageWrap, +/obj/item/weapon/reagent_containers/dropper, +/obj/item/weapon/deskbell, +/turf/simulated/floor/tiled/eris/cafe, +/area/surface/station/crew_quarters/kitchen) +"eSe" = ( +/obj/effect/map_effect/portal/line/side_a, +/turf/simulated/floor/outdoors/grass/sif, +/area/surface/outside/plains/plateau) +"eSh" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway) +"eSk" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/surface/station/storage/primarytool) +"eSo" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/danger/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "steel_dirty"; + initial_flooring = /decl/flooring/tiling/steel_dirty + }, +/area/surface/outside/plains/station) +"eSr" = ( +/turf/simulated/wall/rshull, +/area/shuttle/exploration/general) +"eSv" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/machinery/button/remote/blast_door{ + id = "englockdown"; + name = "Engineering Lockdown"; + pixel_x = -6; + pixel_y = 24; + req_one_access = list(10,24) + }, +/obj/machinery/button/remote/blast_door{ + id = "atmoslockdown"; + name = "Atmospherics Lockdown"; + pixel_x = 6; + pixel_y = 24; + req_one_access = list(10,24) + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/engineering_monitoring) +"eSI" = ( +/turf/simulated/wall/sifwood, +/area/surface/outside/path/plains) +"eSK" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/paper_bin, +/obj/item/weapon/clipboard, +/obj/item/weapon/folder/red{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/item/weapon/folder{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/weapon/folder/blue{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/pen, +/obj/item/weapon/pen/blue{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/weapon/pen/red{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 5 + }, +/obj/machinery/vending/wallmed1{ + pixel_y = 30 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 5 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/rnd/xenobiology) +"eSN" = ( +/turf/simulated/floor/outdoors/snow/sif/planetuse{ + outdoors = 0 + }, +/area/surface/outside/plains/station) +"eSQ" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/gym) +"eSX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/wall, +/area/surface/station/security/hallway/gnd) +"eTc" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/solars/northeast) +"eTg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/hydro, +/area/surface/station/hydroponics) +"eTr" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 10 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 10 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/rnd/xenobiology) +"eTC" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/briefing_room) +"eTX" = ( +/obj/machinery/door/blast/regular/open{ + id = "medbayquar"; + layer = 3.3; + name = "Medbay Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/medical/ward) +"eUh" = ( +/obj/effect/floor_decal/techfloor, +/obj/effect/floor_decal/industrial/warning, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/machinery/ai_slipper, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/ai/upload) +"eUO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/chapel) +"eUP" = ( +/obj/structure/table/steel, +/obj/item/weapon/paper_bin, +/obj/item/weapon/pen, +/obj/item/weapon/reagent_containers/spray/cleaner, +/obj/item/weapon/reagent_containers/spray/cleaner{ + pixel_x = 2; + pixel_y = 2 + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/surface/station/janitor) +"eUX" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals_central5, +/obj/effect/zone_divider, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/south) +"eVu" = ( +/obj/machinery/status_display, +/turf/simulated/wall/r_wall, +/area/surface/station/crew_quarters/heads/hos) +"eVB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/park) +"eVQ" = ( +/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/borderfloor, +/obj/effect/floor_decal/corner/yellow/border, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/reactor) +"eWv" = ( +/obj/structure/mirror{ + pixel_x = 28 + }, +/obj/structure/sink{ + dir = 4; + pixel_x = 12 + }, +/obj/item/device/radio/intercom{ + pixel_y = -21 + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/surface/station/rnd/research_restroom) +"eWU" = ( +/obj/effect/floor_decal/corner_steel_grid{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/gnd) +"eWW" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/green/border, +/obj/item/device/radio/intercom{ + pixel_y = -21 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/north) +"eXm" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/random/crate{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/quartermaster/storage) +"eXu" = ( +/obj/machinery/light, +/obj/structure/closet/chefcloset, +/obj/item/device/retail_scanner/civilian, +/obj/item/weapon/soap/nanotrasen, +/obj/item/device/destTagger, +/obj/item/weapon/packageWrap{ + pixel_x = -2; + pixel_y = -4 + }, +/obj/item/weapon/packageWrap{ + pixel_y = -2 + }, +/obj/item/clothing/gloves/sterile/latex{ + pixel_y = -3 + }, +/obj/item/clothing/gloves/sterile/latex, +/obj/machinery/camera/network/civilian{ + c_tag = "CIV - Kitchen Cold Room"; + dir = 1 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/station/crew_quarters/kitchen) +"eXw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/carpet, +/area/surface/station/chapel/main) +"eXy" = ( +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/medical/emt_bay) +"eXA" = ( +/turf/simulated/floor/outdoors/mask, +/area/surface/outside/plains/plateau) +"eXO" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance/engi{ + icon_state = "door_locked"; + id_tag = "elevator_sci2_access"; + locked = 1; + name = "Emergency Access NO ENTRY"; + req_one_access = list() + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outpost/research/xenoarcheology/surface) +"eXX" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/catwalk_plated/dark, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/chapel) +"eYh" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/floor_decal/corner/white/diagonal, +/obj/structure/extinguisher_cabinet{ + dir = 1; + pixel_y = 30 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/crew_quarters/locker) +"eYi" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/east/gnd) +"eYp" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/structure/bed/chair/wood{ + dir = 1 + }, +/turf/simulated/floor/tiled/hydro, +/area/surface/station/park) +"eYr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/lobby) +"eYt" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera/network/civilian{ + c_tag = "CIV - Cafeteria South"; + dir = 1 + }, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/cafeteria) +"eYZ" = ( +/obj/structure/ladder, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/east/gnd) +"eZo" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/surface) +"eZr" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/turf/simulated/floor/tiled/eris/cafe, +/area/surface/station/crew_quarters/kitchen) +"eZS" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"fao" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"faB" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/item/device/radio/beacon, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/groundfloor/civilian) +"faC" = ( +/obj/machinery/oxygen_pump/mobile/anesthetic, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/pink/border{ + dir = 8 + }, +/obj/structure/closet/secure_closet/medical_wall/anesthetics{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/surgery) +"faD" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "medbayquar"; + layer = 3.3; + name = "Medbay Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/medical/chemistry) +"faV" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/engineering/engineering_monitoring) +"fbb" = ( +/obj/item/device/radio/intercom{ + pixel_y = -21 + }, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/bar) +"fbh" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/tank/air{ + start_pressure = 4559.63 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/east/gnd) +"fbq" = ( +/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/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/storage/primary_storage) +"fbA" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/industrial/warning/dust, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/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{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor + }, +/area/surface/outside/plains/station) +"fcm" = ( +/obj/effect/catwalk_plated/dark, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/storage) +"fcs" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Research Division Access"; + req_one_access = list(47) + }, +/obj/machinery/door/firedoor/border_only, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/rnd/hallway/gnd) +"fdd" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/gnd) +"fdg" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/weststairwell/gnd) +"fdl" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "deteast" + }, +/turf/simulated/floor/plating, +/area/surface/station/security/detectives_office/lab) +"fdq" = ( +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 10 + }, +/obj/effect/zone_divider, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/crew_quarters/pool) +"fdC" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "atmoslockdown"; + layer = 3.3; + name = "Atmospherics Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/atmos) +"feS" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/zone_divider, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/groundfloor/civilian) +"fft" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/door/window/southleft{ + name = "Xenoflora Isolation"; + req_one_access = list(55) + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/rnd/xenobiology/xenoflora_isolation) +"fgg" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/solars/northeast) +"fgw" = ( +/obj/structure/table/woodentable, +/obj/machinery/recharger, +/turf/simulated/floor/wood, +/area/surface/station/library) +"fgG" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/surface/station/crew_quarters/locker) +"fgO" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/obj/random/vendorfood, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/hallway/primary/groundfloor/south) +"fgS" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"fgW" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/effect/catwalk_plated/dark, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/surface/station/medical/etc) +"fhL" = ( +/obj/machinery/light, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "steel_dirty"; + initial_flooring = /decl/flooring/tiling/steel_dirty + }, +/area/surface/outpost/research/xenoarcheology/surface) +"fin" = ( +/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/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 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/hallway/gnd) +"fio" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/hallway/gnd) +"fir" = ( +/obj/structure/bed/chair/office/light, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/reception) +"fis" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/power/emitter, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -21 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/engineering/storage) +"fiw" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/effect/floor_decal/corner/blue/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/crew_quarters/heads/hop) +"fiB" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/etc) +"fiI" = ( +/obj/machinery/airlock_sensor/airlock_exterior{ + dir = 8; + frequency = 1380; + id_tag = "escape_dock_north_starboard_extsensor"; + master_tag = "escape_dock"; + pixel_x = -1; + pixel_y = 40 + }, +/obj/effect/map_helper/airlock/sensor/ext_sensor, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "steel_dirty"; + initial_flooring = /decl/flooring/tiling/steel_dirty + }, +/area/surface/outside/plains/station) +"fja" = ( +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/shieldwallgen{ + anchored = 1; + req_access = list(47) + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/surface/station/rnd/misc_lab) +"fjg" = ( +/obj/structure/table/standard, +/obj/item/weapon/folder/red{ + pixel_x = -2; + pixel_y = -2 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/security/briefing_room) +"fjV" = ( +/obj/machinery/gibber, +/turf/simulated/floor/tiled/freezer, +/area/surface/station/crew_quarters/kitchen) +"fkd" = ( +/obj/effect/floor_decal/industrial/warning/dust, +/turf/simulated/floor/tiled/asteroid_steel, +/area/surface/outside/plains/station) +"fkm" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/surface/station/library) +"fku" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/xenobiology) +"fkX" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/hallway/gnd) +"flp" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway) +"flx" = ( +/obj/structure/stairs/spawner/east, +/turf/simulated/floor/tiled/dark, +/area/surface/station/engineering/hallway/reactor) +"flA" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/border_only, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/purple/bordercorner2{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/gnd) +"flI" = ( +/obj/structure/sign/chemistry, +/turf/simulated/wall, +/area/surface/station/medical/chemistry) +"flJ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"flO" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "steel_dirty"; + initial_flooring = /decl/flooring/tiling/steel_dirty + }, +/area/surface/outside/plains/station) +"flZ" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/east) +"fmb" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/pink/border{ + dir = 4 + }, +/obj/item/weapon/storage/briefcase/crimekit{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/storage/briefcase/crimekit, +/turf/simulated/floor/tiled/white, +/area/surface/station/security/detectives_office/lab) +"fmd" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "seclockdown"; + layer = 3.3; + name = "Security Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/security/gnd) +"fmm" = ( +/obj/structure/sign/directions/medical/cloning{ + dir = 1 + }, +/obj/structure/sign/directions/medical/surgery{ + dir = 1; + pixel_y = 6 + }, +/turf/simulated/wall, +/area/surface/station/medical/storage/primary_storage) +"fmF" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/landmark/start{ + name = "Scientist" + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/rnd/research_lockerroom) +"fmV" = ( +/turf/simulated/floor/tiled, +/area/surface/station/security/briefing_room) +"fnc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/surface/station/library) +"fny" = ( +/obj/effect/floor_decal/borderfloorblack/corner{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/effect/floor_decal/corner/blue/bordercorner{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -21 + }, +/obj/machinery/button/remote/airlock{ + id = "HoSdoor"; + layer = 2.9; + name = "Office Door"; + pixel_x = 6; + pixel_y = -3 + }, +/obj/machinery/button/remote/blast_door{ + id = "seclockdown"; + layer = 2.9; + name = "Security Lockdown"; + pixel_x = -6; + pixel_y = -3; + req_one_access = list(2,4) + }, +/obj/item/device/flashlight/lamp/green{ + pixel_y = 6 + }, +/obj/item/device/radio/off, +/turf/simulated/floor/tiled/dark, +/area/surface/station/crew_quarters/heads/hos) +"fnE" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_waste) +"fnK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/reactor) +"fob" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/surgeryobs) +"fom" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/gnd) +"foE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/blue{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/kitchen) +"foF" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/turf/simulated/floor/tiled, +/area/surface/station/security/lockerroom) +"fpa" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 4 + }, +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/garage) +"fpB" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/medical/hallway/gnd) +"fqt" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/green, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + id = "misclab"; + layer = 3.3; + name = "Test Chamber Blast Doors" + }, +/turf/simulated/floor/plating, +/area/surface/station/rnd/misc_lab) +"fqw" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning/dust, +/obj/effect/floor_decal/industrial/warning/dust/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor + }, +/area/surface/outside/plains/station) +"fqU" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/station/solar/northeastsolar) +"frK" = ( +/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, +/obj/machinery/door/airlock/maintenance{ + req_one_access = list(12,25,27,28,35) + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/kitchen) +"fsk" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/turf/simulated/floor/tiled, +/area/surface/station/security/range) +"fso" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/light, +/obj/effect/floor_decal/corner/white/diagonal, +/turf/simulated/floor/tiled/eris, +/area/surface/station/crew_quarters/locker) +"fsL" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/catwalk_plated/white, +/turf/simulated/floor/plating, +/area/surface/station/rnd/misc_lab) +"fsP" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/machinery/seed_storage/garden{ + dir = 4 + }, +/turf/simulated/floor/tiled/hydro, +/area/surface/station/park) +"fsU" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/workshop) +"ftc" = ( +/obj/machinery/atmospherics/omni/atmos_filter{ + tag_east = 7; + tag_north = 2; + tag_south = 1 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"ftz" = ( +/obj/structure/disposaloutlet{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/plating, +/area/surface/station/rnd/xenobiology) +"ftH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/cafeteria) +"fum" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/surface/station/rnd/xenobiology) +"fus" = ( +/obj/structure/cryofeed, +/obj/effect/floor_decal/industrial/warning/cee{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/arrivals/cynosure/cryo) +"fuz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, +/obj/machinery/meter, +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/chapel) +"fuU" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/station/solar/westsolar) +"fvL" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"fww" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/west/elevator) +"fwH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/reactor) +"fwU" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/obj/machinery/status_display{ + pixel_x = -32 + }, +/obj/machinery/light/spot{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/station/crew_quarters/pool) +"fxa" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/map_helper/airlock/door/ext_door, +/obj/machinery/access_button/airlock_exterior{ + dir = 1; + master_tag = "mnorth_airlock"; + pixel_x = 35 + }, +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "mnorth_airlock_outer"; + locked = 1; + name = "External Access" + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/hallway/primary/groundfloor/north) +"fxr" = ( +/obj/turbolift_map_holder/cynosure/sec, +/turf/unsimulated/mask, +/area/surface/station/security/hallway/gnd) +"fyc" = ( +/turf/simulated/floor/outdoors/dirt/sif, +/area/surface/outside/path/plains) +"fyx" = ( +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/green, +/obj/machinery/power/smes/buildable{ + RCon_tag = "Substation - Security"; + charge = 2e+006 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/security/gnd) +"fyS" = ( +/obj/structure/stairs/spawner/west, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/stairwell) +"fzE" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/quartermaster/delivery) +"fzM" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/station/hydroponics) +"fzQ" = ( +/obj/structure/sign/warning/high_voltage, +/turf/simulated/wall/r_wall, +/area/surface/station/maintenance/substation/research/gnd) +"fzX" = ( +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor/hole{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/ai/upload) +"fzY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/east/gnd) +"fAg" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/closet/l3closet/scientist, +/obj/item/weapon/extinguisher, +/obj/machinery/camera/network/research{ + c_tag = "SCI - Xenobiology Access" + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris, +/area/surface/station/rnd/xenobiology) +"fAk" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/structure/table/standard, +/obj/item/device/tape/random, +/obj/item/device/taperecorder, +/obj/item/device/megaphone, +/obj/item/weapon/packageWrap, +/obj/item/weapon/storage/box, +/obj/machinery/recharger/wallcharger{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/lockerroom) +"fAm" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/table/steel, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/kitchen) +"fAE" = ( +/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/borderfloor/corner2, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/green/bordercorner2, +/obj/effect/floor_decal/corner/green/bordercorner2{ + dir = 9 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/north) +"fAI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 10 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/medical/etc) +"fAU" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 8 + }, +/obj/structure/closet/l3closet/janitor, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/janitor) +"fBt" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite/corner, +/obj/effect/floor_decal/corner/paleblue/bordercorner, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/etc) +"fBM" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red, +/obj/machinery/atmospherics/binary/pump/on{ + dir = 8; + name = "Air to Supply"; + target_pressure = 200 + }, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"fBS" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/lobby) +"fCf" = ( +/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/tiled/monotile, +/area/surface/station/hallway/primary/groundfloor/north) +"fCx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/machinery/camera/network/civilian{ + c_tag = "CIV - Cafeteria East"; + dir = 8 + }, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/cafeteria) +"fCD" = ( +/obj/effect/zone_divider, +/turf/simulated/wall, +/area/surface/station/maintenance/kitchen) +"fCP" = ( +/obj/structure/bed/chair, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/turf/simulated/floor/tiled, +/area/surface/station/security/lobby) +"fCQ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 8 + }, +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + dir = 4; + frequency = 1380; + id_tag = "cargo_bay"; + layer = 3.4; + pixel_x = -22 + }, +/obj/machinery/camera/network/cargo{ + c_tag = "CRG - Cargo Bay West"; + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/storage) +"fDn" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/shuttle/exploration/general) +"fDF" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + id = "englockdown"; + layer = 3.3; + name = "Engineering Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/engineering_monitoring) +"fDL" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/garage) +"fEd" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 21 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/medical/etc) +"fEk" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/engineering{ + name = "Security Substation"; + req_one_access = list(1) + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/security/gnd) +"fEv" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/purple/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/gnd) +"fEB" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/engineering/reactor_waste) +"fEG" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 6 + }, +/obj/machinery/shower{ + dir = 8; + pixel_x = -5; + pixel_y = -1 + }, +/obj/structure/curtain/open/shower{ + color = "#800080" + }, +/obj/machinery/door/window/southright{ + name = "Shower" + }, +/obj/structure/window/basic{ + dir = 4; + layer = 2.8 + }, +/turf/simulated/floor/tiled/eris, +/area/surface/station/rnd/research_restroom) +"fEO" = ( +/obj/effect/floor_decal/corner/red/full{ + dir = 4 + }, +/obj/machinery/air_sensor{ + frequency = 1441; + id_tag = "n2_sensor" + }, +/obj/machinery/camera/network/engineering{ + c_tag = "Atmos Tank - Nitrogen"; + dir = 1 + }, +/turf/simulated/floor/reinforced/nitrogen, +/area/surface/station/engineering/atmos) +"fFa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable, +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/cargo/gnd) +"fFd" = ( +/obj/structure/reagent_dispensers, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/workshop) +"fFw" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/north/gnd) +"fFD" = ( +/obj/structure/table/woodentable, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/item/weapon/book/codex/lore/vir, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/cafeteria) +"fGe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/surface/station/engineering/atmos) +"fGM" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/surface/station/hallway/primary/groundfloor/west) +"fGS" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/janitor) +"fHA" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/chapel/main) +"fHI" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/power/emitter, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/engineering/storage) +"fHJ" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/crew_quarters/pool) +"fHS" = ( +/obj/structure/bookcase{ + name = "bookcase (Non-fiction)" + }, +/turf/simulated/floor/wood, +/area/surface/station/library) +"fId" = ( +/obj/effect/floor_decal/corner_steel_grid{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/reception) +"fIk" = ( +/turf/simulated/floor/outdoors/dirt/sif{ + outdoors = 0 + }, +/area/surface/outside/plains/station) +"fIE" = ( +/obj/structure/closet/crate/hydroponics/exotic, +/obj/machinery/camera/network/research{ + c_tag = "SCI - Xenoflora Isolation" + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/rnd/xenobiology/xenoflora_isolation) +"fIH" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/atmospherics/pipe/simple/hidden/red, +/turf/simulated/floor/plating, +/area/surface/station/engineering/atmos) +"fIL" = ( +/obj/structure/table/reinforced, +/obj/machinery/computer/skills, +/turf/simulated/floor/carpet, +/area/surface/station/crew_quarters/heads/hos) +"fIT" = ( +/obj/item/weapon/storage/secure/safe{ + pixel_x = 5; + pixel_y = 26 + }, +/obj/machinery/photocopier, +/obj/machinery/camera/network/security{ + c_tag = "SEC - Detective Office"; + dir = 6 + }, +/turf/simulated/floor/lino, +/area/surface/station/security/detectives_office) +"fJg" = ( +/obj/effect/floor_decal/techfloor{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4; + frequency = 1379; + id_tag = "msouth_airlock_pump" + }, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + dir = 4; + id_tag = "msouth_airlock"; + pixel_x = -24 + }, +/obj/machinery/airlock_sensor{ + dir = 4; + id_tag = "msouth_airlock_sensor"; + pixel_x = -25; + pixel_y = -11 + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/hallway/primary/groundfloor/south) +"fJq" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock/glass{ + name = "Hallway" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/hallway/secondary/groundfloor/civilian) +"fJT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/effect/floor_decal/steeldecal/steel_decals3, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 10 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/rnd/exploration) +"fKH" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/briefing_room) +"fKR" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/obj/machinery/door/airlock/glass_external{ + frequency = 1380; + icon_state = "door_locked"; + id_tag = "arrivals_dock_south_inner"; + locked = 1; + name = "Internal Access" + }, +/obj/effect/map_helper/airlock/door/int_door, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/arrivals/cynosure/nopower) +"fKS" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/ai/cyborg_station) +"fLf" = ( +/obj/structure/table/standard, +/obj/item/weapon/phone, +/obj/machinery/computer/cryopod/robot{ + pixel_x = 32 + }, +/obj/machinery/camera/network/command{ + c_tag = "AI - Cyborg Station" + }, +/turf/simulated/floor/bluegrid, +/area/surface/station/ai/cyborg_station) +"fLo" = ( +/obj/effect/catwalk_plated/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/storage) +"fLT" = ( +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/surface/station/ai/upload) +"fME" = ( +/obj/structure/table/standard, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/window/northleft{ + name = "Core Modules"; + req_one_access = list(20) + }, +/obj/item/weapon/aiModule/asimov{ + pixel_x = -5; + pixel_y = 6 + }, +/obj/item/weapon/aiModule/freeformcore{ + pixel_x = -4; + pixel_y = 3 + }, +/obj/item/weapon/aiModule/corp{ + pixel_x = -2 + }, +/obj/item/weapon/aiModule/paladin{ + pixel_y = -3 + }, +/obj/item/weapon/aiModule/robocop{ + pixel_x = 2; + pixel_y = -4 + }, +/turf/simulated/floor/greengrid, +/area/surface/station/ai/upload) +"fMR" = ( +/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, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/ward) +"fNb" = ( +/obj/structure/closet/secure_closet/medical_wall{ + name = "O- Blood Locker"; + pixel_x = 32 + }, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/structure/disposalpipe/segment, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/etc) +"fNL" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"fNO" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/machinery/button/remote/blast_door{ + id = "xenobio5"; + pixel_y = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/rnd/xenobiology) +"fOl" = ( +/obj/structure/table/wooden_reinforced, +/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{ + dir = 4; + pixel_x = -24; + pixel_y = 12 + }, +/obj/machinery/button/windowtint{ + dir = 8; + id = "chapel"; + pixel_x = -23; + pixel_y = -11 + }, +/obj/item/weapon/nullrod, +/obj/item/weapon/reagent_containers/food/drinks/bottle/holywater, +/turf/simulated/floor/lino, +/area/surface/station/chapel/office) +"fOW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/effect/catwalk_plated, +/obj/machinery/camera/network/engineering{ + c_tag = "ENG - Atmospherics East"; + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/atmos) +"fPi" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/green{ + dir = 8 + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"fPj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/reception) +"fPH" = ( +/obj/effect/floor_decal/techfloor{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden, +/obj/item/device/radio/intercom{ + pixel_y = -21 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/engineering/reactor_airlock) +"fQb" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 8 + }, +/obj/effect/floor_decal/rust/color_rusted{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/storage) +"fQI" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/door/airlock/glass{ + name = "Stairwell" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/hallway/primary/groundfloor/west/elevator) +"fRm" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/border_only, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/engineering{ + name = "Research Substation"; + req_one_access = list(11,24,47) + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/research/gnd) +"fRp" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/firstaid/adv{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/storage/firstaid/adv, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/storage/primary_storage) +"fRF" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/hallway/primary/groundfloor/east) +"fRI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/greengrid, +/area/surface/station/ai/upload) +"fRK" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/surface/station/hallway/primary/groundfloor/north) +"fRM" = ( +/obj/structure/table/marble, +/obj/machinery/chemical_dispenser/bar_soft/full{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/surface/station/crew_quarters/kitchen) +"fSW" = ( +/obj/machinery/atmospherics/pipe/simple/visible/universal{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"fTi" = ( +/obj/structure/cable{ + 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 = 24 + }, +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/atmos) +"fTj" = ( +/obj/structure/table/wooden_reinforced, +/obj/structure/flora/pottedplant/thinbush, +/obj/structure/extinguisher_cabinet{ + dir = 1; + pixel_y = 30 + }, +/turf/simulated/floor/lino, +/area/surface/station/chapel/office) +"fTv" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/ai/upload) +"fTV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/borderfloorwhite/corner, +/obj/effect/floor_decal/corner/purple/bordercorner, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/gnd) +"fVi" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red, +/obj/machinery/computer/general_air_control/large_tank_control{ + dir = 1; + input_tag = "o2_in"; + name = "Oxygen Tank Control"; + output_tag = "o2_out"; + sensors = list("o2_sensor" = "Tank") + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/blue/bordercorner2, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/engineering/atmos) +"fVP" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/range) +"fWa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/surface/station/storage/primarytool) +"fWH" = ( +/turf/unsimulated/mask, +/area/surface/station/medical/hallway/gnd) +"fWO" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/gnd) +"fWW" = ( +/obj/machinery/door/blast/regular{ + dir = 4; + id = "xenobiodivide"; + name = "Containment Divider" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/rnd/xenobiology) +"fXc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 4; + name = "Medbay"; + sortType = "Medbay" + }, +/obj/machinery/camera/network/medbay{ + c_tag = "MED - Diagnostics East"; + dir = 1 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/etc) +"fXF" = ( +/obj/effect/floor_decal/techfloor{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1379; + id_tag = "eng_ew2_airlock_pump" + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/maintenance/east/gnd) +"fXG" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/power/generator{ + anchored = 1 + }, +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"fXH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/portable_atmospherics/canister/air, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/engineering/atmos) +"fYo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_waste) +"fYJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"fZt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/south) +"fZu" = ( +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -12; + pixel_y = -24 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/purple/bordercorner{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/janitor) +"fZy" = ( +/obj/structure/table/reinforced, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/machinery/door/window/southright{ + name = "Medical Reception"; + req_access = list(5) + }, +/obj/item/sticky_pad/random, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/reception) +"fZI" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/surface/station/arrivals/cynosure) +"gaB" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock{ + name = "Bar"; + req_one_access = list(25) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/crew_quarters/bar) +"gbA" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/atmos) +"gbG" = ( +/obj/structure/sign/warning/high_voltage, +/turf/simulated/wall, +/area/surface/station/maintenance/substation/research/gnd) +"gbK" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/yellow/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/east) +"gci" = ( +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/machinery/light_switch{ + pixel_x = 12; + pixel_y = 24 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 1 + }, +/obj/structure/table/standard, +/obj/machinery/recharger, +/obj/item/weapon/reagent_containers/spray/cleaner, +/obj/structure/noticeboard{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/briefing_room) +"gcD" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/bordercorner{ + dir = 1 + }, +/obj/structure/sink/generic{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/janitor) +"gda" = ( +/obj/structure/table/marble, +/obj/machinery/door/firedoor/border_only, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/window/eastleft{ + name = "Hydroponics"; + req_one_access = list(35,28) + }, +/obj/structure/window/reinforced, +/obj/machinery/door/window/westright{ + name = "Hydroponics" + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/hydroponics) +"gdb" = ( +/obj/item/device/holowarrant, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/item/clothing/glasses/hud/security, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -21 + }, +/obj/structure/closet/secure_closet/security/cynosure, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/lockerroom) +"gdn" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/medical/ward) +"gdR" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/obj/effect/zone_divider, +/turf/simulated/floor/tiled/freezer, +/area/surface/station/crew_quarters/pool) +"gdX" = ( +/obj/effect/floor_decal/rust/part_rusted2{ + dir = 1 + }, +/obj/effect/floor_decal/rust/part_rusted1{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/surface/station/medical/surgery_storage) +"geK" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/xenobiology) +"geL" = ( +/obj/machinery/atmospherics/pipe/cap/visible{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/engineering/atmos) +"gfI" = ( +/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/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/etc) +"gfP" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/station/crew_quarters/kitchen) +"gfY" = ( +/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 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/security/interrogation) +"ggd" = ( +/obj/structure/cryofeed{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/cee{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/arrivals/cynosure/cryo) +"ggk" = ( +/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/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/medical{ + name = "Operating Theatre Storage"; + req_one_access = list(45) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/medical/surgery_storage) +"ggz" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "crglockdown"; + layer = 3.3; + name = "Cargo Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/quartermaster/storage) +"ggK" = ( +/obj/structure/table/marble, +/obj/machinery/microwave, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/surface/station/crew_quarters/kitchen) +"ghl" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/yellow/bordercorner, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/east) +"ghX" = ( +/obj/structure/bed/chair, +/turf/simulated/floor/tiled, +/area/surface/station/security/processing) +"git" = ( +/obj/structure/table/standard, +/obj/item/bodybag/cryobag, +/obj/item/roller{ + pixel_y = 8 + }, +/obj/item/roller{ + pixel_y = 16 + }, +/obj/machinery/status_display{ + layer = 4; + pixel_y = 32 + }, +/turf/simulated/shuttle/floor/white, +/area/shuttle/large_escape_pod1/station) +"giV" = ( +/obj/machinery/vending/cigarette, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/cafeteria) +"gjp" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 8; + name = "Phoron to Connector" + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"gjw" = ( +/obj/machinery/door/airlock{ + name = "Unit 1" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/security/restroom) +"gjB" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 9 + }, +/turf/simulated/wall/r_wall, +/area/surface/station/engineering/reactor_room) +"gjW" = ( +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/station) +"gkB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/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" + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 21 + }, +/turf/simulated/floor/grass, +/area/surface/station/park) +"glE" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/south) +"glT" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/hallway/gnd) +"glU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/etc) +"gmr" = ( +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outside/plains/station) +"gmu" = ( +/obj/structure/table/marble, +/obj/item/weapon/storage/box/donkpockets, +/obj/item/weapon/reagent_containers/glass/beaker, +/obj/item/weapon/reagent_containers/food/condiment/enzyme, +/turf/simulated/floor/tiled/eris/cafe, +/area/surface/station/crew_quarters/kitchen) +"gnA" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/security/detectives_office/lab) +"gnB" = ( +/obj/machinery/door/airlock/hatch{ + icon_state = "door_locked"; + id_tag = "engine_access_hatch"; + locked = 1; + name = "Reactor Access Hatch"; + req_access = list(11); + req_one_access = null + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/engineering/reactor_room) +"gnF" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/effect/wingrille_spawn/reinforced, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "xenobio6"; + layer = 3.3; + name = "Containment Blast Doors" + }, +/turf/simulated/floor/plating, +/area/surface/station/rnd/xenobiology) +"gnG" = ( +/obj/machinery/light, +/turf/simulated/floor/wood/sif, +/area/surface/station/chapel/main) +"gom" = ( +/obj/turbolift_map_holder/cynosure/cargo, +/turf/unsimulated/mask, +/area/surface/station/quartermaster/storage) +"goq" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/east/gnd) +"got" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/industrial/danger, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/storage) +"goE" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/structure/railing, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/stairwell) +"goF" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/purple/bordercorner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/gnd) +"goO" = ( +/obj/effect/floor_decal/industrial/warning/cee{ + dir = 4 + }, +/turf/simulated/floor/reinforced/supermatter_core, +/area/surface/station/engineering/reactor_room) +"gpd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/surface/station/security/hallway/gnd) +"gpi" = ( +/obj/structure/sign/science, +/turf/simulated/wall/r_wall, +/area/surface/station/rnd/exploration) +"gpm" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/obj/machinery/conveyor_switch/oneway{ + convdir = -1; + id = "QMLoad" + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/storage) +"gpz" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"gpH" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/clipboard, +/obj/item/weapon/stamp/hop, +/turf/simulated/floor/carpet, +/area/surface/station/crew_quarters/heads/hop) +"gpJ" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 10 + }, +/obj/structure/catwalk, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/water/deep{ + has_fish = 0 + }, +/area/surface/outside/station/reactorpond) +"gpN" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway) +"gqp" = ( +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "seclockdown"; + layer = 3.3; + name = "Security Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/security/gnd) +"gqA" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/ai/upload) +"grj" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 6 + }, +/obj/effect/floor_decal/corner/pink/border{ + dir = 6 + }, +/obj/item/weapon/forensics/sample_kit/powder, +/obj/item/weapon/forensics/sample_kit, +/obj/item/device/radio/intercom/department/security{ + dir = 8; + pixel_x = 21 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/security/detectives_office/lab) +"grn" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/sink/generic{ + pixel_y = 24 + }, +/turf/simulated/floor/lino, +/area/surface/station/crew_quarters/bar) +"gry" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/hallway/primary/groundfloor/south) +"grC" = ( +/turf/simulated/wall/rshull, +/area/shuttle/exploration/cockpit) +"grK" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/crew_quarters/caferestroom) +"gsb" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 5 + }, +/obj/structure/table/marble, +/obj/item/sticky_pad/random, +/turf/simulated/floor/tiled/eris/cafe, +/area/surface/station/crew_quarters/cafeteria) +"gsu" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/effect/landmark/start{ + name = "Detective" + }, +/turf/simulated/floor/carpet, +/area/surface/station/security/detectives_office) +"gsw" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/camera/network/engineering{ + c_tag = "ENG - Engineering Hallway West" + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway) +"gtg" = ( +/obj/item/weapon/stool/padded{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/hologram/holopad, +/obj/effect/landmark/start{ + name = "Chef" + }, +/turf/simulated/floor/tiled/monofloor{ + dir = 1 + }, +/area/surface/station/crew_quarters/kitchen) +"gtJ" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/empty, +/obj/effect/floor_decal/techfloor, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/rnd/xenobiology/xenoflora_isolation) +"gtX" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass{ + name = "Pasture"; + req_one_access = list(28,35) + }, +/obj/effect/floor_decal/rust/mono_rusted2, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/hydroponics) +"guU" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 9 + }, +/obj/effect/floor_decal/spline/plain, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/station/hydroponics) +"guY" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/zone_divider, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/south) +"gve" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/landmark/start{ + name = "Scientist" + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/rnd/research_lockerroom) +"gvo" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/dice/d20, +/obj/item/weapon/deck/cards, +/turf/simulated/floor/carpet, +/area/surface/station/library) +"gvD" = ( +/obj/machinery/door/firedoor/border_only, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/rust, +/obj/machinery/door/airlock/maintenance{ + name = "Hydroponics Maintenance"; + req_access = list(35) + }, +/turf/simulated/floor/plating, +/area/surface/station/hydroponics/garden) +"gvJ" = ( +/obj/machinery/porta_turret/ai_defense, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/ai/upload) +"gwf" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/station/crew_quarters/kitchen) +"gwo" = ( +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/bordercorner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/green/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/west) +"gwp" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 21 + }, +/obj/machinery/camera/network/medbay{ + c_tag = "MED - Cloning"; + dir = 6 + }, +/obj/item/weapon/stool, +/obj/effect/landmark/start{ + name = "Geneticist" + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/cloning) +"gww" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/ladder, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/kitchen) +"gwH" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 16; + d2 = 0; + icon_state = "16-0" + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/east/gnd) +"gxa" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/green/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/groundfloor/civilian) +"gxe" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/atmospherics) +"gxk" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 10 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"gxR" = ( +/obj/structure/cliff/automatic/corner{ + dir = 9 + }, +/turf/simulated/floor/outdoors/dirt/sif, +/area/surface/outside/plains/plateau) +"gyg" = ( +/obj/effect/catwalk_plated/dark, +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/cable/yellow{ + 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/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_smes) +"gyq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/south) +"gyu" = ( +/obj/effect/zone_divider, +/turf/simulated/floor/water, +/area/surface/outside/ocean) +"gzp" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock{ + name = "Restroom" + }, +/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/station/crew_quarters/caferestroom) +"gzD" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "library_window_tint" + }, +/turf/simulated/floor/plating, +/area/surface/station/library) +"gAF" = ( +/turf/simulated/floor/greengrid, +/area/surface/station/ai/upload) +"gAH" = ( +/obj/structure/cliff/automatic{ + dir = 4 + }, +/turf/simulated/floor/outdoors/mask, +/area/surface/outside/plains/plateau) +"gAJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/turf/simulated/wall/rshull, +/area/shuttle/exploration/cargo) +"gAK" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central4{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/east) +"gAL" = ( +/obj/structure/table/glass, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 1 + }, +/obj/machinery/newscaster{ + pixel_y = 26 + }, +/obj/item/stack/material/phoron{ + pixel_x = -3; + pixel_y = -4 + }, +/obj/item/stack/material/phoron{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/stack/material/phoron{ + pixel_x = -1 + }, +/obj/item/stack/material/phoron{ + pixel_y = 2 + }, +/obj/item/stack/material/phoron{ + pixel_x = 1; + pixel_y = 3 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/chemistry) +"gAR" = ( +/obj/structure/table/glass, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/item/weapon/reagent_containers/blood/empty{ + pixel_x = -6; + pixel_y = -6 + }, +/obj/item/weapon/reagent_containers/blood/empty{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/item/weapon/reagent_containers/blood/empty{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/weapon/reagent_containers/blood/empty, +/obj/item/weapon/reagent_containers/blood/empty{ + pixel_x = 2; + pixel_y = 2 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/etc) +"gAZ" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/ai/upload) +"gBJ" = ( +/obj/structure/fence/end{ + dir = 1 + }, +/turf/simulated/floor/outdoors/mask, +/area/surface/outside/plains/station) +"gBL" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/workshop) +"gCh" = ( +/obj/item/modular_computer/console/preset/engineering{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/engineering/engineering_monitoring) +"gCm" = ( +/obj/effect/floor_decal/techfloor, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/arrivals/cynosure) +"gCp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/hydro, +/area/surface/station/rnd/xenobiology/xenoflora_isolation) +"gCr" = ( +/obj/structure/cable, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24; + pixel_y = -12 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/park) +"gCG" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/surgery) +"gDj" = ( +/obj/machinery/button/remote/airlock{ + dir = 4; + id = "elevator_crg_access"; + name = "Elevator Hatch Release"; + pixel_x = -24; + specialfunctions = 4 + }, +/obj/machinery/door/airlock/maintenance/engi{ + icon_state = "door_locked"; + id_tag = "elevator_crg_access"; + locked = 1; + name = "Emergency Access NO ENTRY"; + req_one_access = list() + }, +/turf/simulated/floor/plating, +/area/surface/station/quartermaster/storage) +"gDq" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/mob/living/bot/secbot/slime/slimesky, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/xenobiology) +"gDr" = ( +/obj/structure/prop/rock/small/wateralt, +/turf/simulated/floor/water, +/area/surface/outside/river/gautelfr) +"gDu" = ( +/obj/structure/sign/directions/cargo/mining{ + dir = 8 + }, +/obj/structure/sign/directions/stairs_down{ + pixel_y = -6 + }, +/turf/simulated/wall/r_wall, +/area/surface/station/hallway/primary/groundfloor/west/elevator) +"gDD" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/reagent_dispensers/watertank/high, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/engineering/atmos) +"gDE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/window/southright{ + name = "Engineering Monitoring"; + req_one_access = list(11,24) + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/engineering_monitoring) +"gDQ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/structure/table/reinforced, +/obj/effect/floor_decal/corner/blue/border{ + dir = 9 + }, +/obj/item/weapon/packageWrap, +/obj/item/weapon/hand_labeler, +/obj/structure/extinguisher_cabinet{ + dir = 1; + pixel_y = 30 + }, +/turf/simulated/floor/tiled, +/area/surface/station/crew_quarters/heads/hop) +"gDR" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/obj/effect/catwalk_plated/dark, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/engineering/gnd) +"gEy" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/east) +"gEA" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/recharger, +/obj/machinery/camera/network/command{ + c_tag = "COM - HoP's Office"; + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/crew_quarters/heads/hop) +"gEG" = ( +/obj/machinery/power/smes/buildable{ +<<<<<<< HEAD + RCon_tag = "Solar - Northeast"; +======= + RCon_tag = "Solar - West"; + cur_coils = 2; +>>>>>>> 339281e2f8d... Merge pull request #8382 from PrismaticGynoid/mapfixes8 + input_attempt = 1; + input_level = 300000; + output_level = 200000 + }, +/obj/structure/cable, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/solars/west) +"gER" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/obj/effect/zone_divider, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/hallway/primary/groundfloor/south) +"gFi" = ( +/obj/structure/table/woodentable, +/obj/item/device/taperecorder, +/obj/item/weapon/book/codex/lore/news, +/obj/item/device/tape/random, +/turf/simulated/floor/wood, +/area/surface/station/library) +"gFo" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/lino, +/area/surface/station/crew_quarters/bar) +"gFr" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atm{ + pixel_x = -28 + }, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/cafeteria) +"gFs" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/pink/border{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/table/standard, +/obj/item/weapon/storage/firstaid/surgery, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/surgery2) +"gFv" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/station/solar/northeastsolar) +"gFH" = ( +/obj/structure/reagent_dispensers/he3, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"gGk" = ( +/obj/machinery/door/firedoor/border_only, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/rnd/hallway/gnd) +"gGp" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/tiled, +/area/surface/station/crew_quarters/gym) +"gGK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/blast/gate/thin{ + dir = 2; + id = "kitchen"; + layer = 3.3 + }, +/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, +/area/surface/station/park) +"gGY" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/obj/machinery/light, +/obj/machinery/camera/network/research{ + c_tag = "SCI - Xenoflora"; + dir = 1 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/rnd/xenobiology/xenoflora) +"gHd" = ( +/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" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/surgeryobs) +"gHT" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/zone_divider, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_waste) +"gHX" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow/border, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/danger/corner{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway) +"gIc" = ( +/obj/machinery/seed_storage/garden{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/hydro, +/area/surface/station/hydroponics) +"gIg" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/rnd/xenobiology/xenoflora) +"gIv" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/cafeteria) +"gIJ" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "library_window_tint" + }, +/turf/simulated/floor/plating, +/area/surface/station/library) +"gIP" = ( +/obj/effect/floor_decal/borderfloorblack/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/hallway/primary/groundfloor/south) +"gIT" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/green/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/station/park) +"gJo" = ( +/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 = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/junction/yjunction{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/gnd) +"gJA" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 5 + }, +/obj/structure/catwalk, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/water/deep{ + has_fish = 0 + }, +/area/surface/outside/station/reactorpond) +"gJI" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/surface/station/hallway/primary/groundfloor/east) +"gKS" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/beige/border, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 21 + }, +/obj/item/weapon/reagent_containers/glass/beaker/large, +/obj/item/weapon/reagent_containers/dropper, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/chemistry) +"gKW" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/yellow/border, +/obj/machinery/newscaster{ + pixel_x = 26 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/reactor) +"gKX" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/cable/green, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -12; + pixel_y = -24 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/storage/emergency/sec) +"gLp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/glass_medical{ + name = "Medbay Equipment" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/medical/storage/primary_storage) +"gLG" = ( +/obj/machinery/power/smes/buildable{ + RCon_tag = "Substation - Civilian"; + charge = 2e+006 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/civilian) +"gLQ" = ( +/obj/structure/stairs/spawner/east, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/hallway/primary/groundfloor/east) +"gMD" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/security/equiptment_storage/ses) +"gMG" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/security/hallway/gnd) +"gMS" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/effect/engine_setup/pump_max, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_waste) +"gNl" = ( +/obj/structure/bed/chair/wood{ + dir = 8 + }, +/obj/effect/landmark/start{ + name = "Assistant" + }, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/cafeteria) +"gNx" = ( +/obj/structure/ladder/up, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/security/gnd) +"gNF" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/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/research/xenoarcheology/surface) +"gNH" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"gNL" = ( +/obj/structure/railing/grey{ + dir = 8 + }, +/turf/simulated/floor/water, +/area/surface/outside/river/gautelfr) +"gNR" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/zone_divider, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/groundfloor/civilian) +"gNX" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/structure/table/woodentable, +/obj/item/device/paicard, +/turf/simulated/floor/tiled/hydro, +/area/surface/station/park) +"gOc" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway) +"gOk" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/engineering/engineering_monitoring) +"gOl" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/glass{ + name = "Library" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/library) +"gPq" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/north/gnd) +"gPr" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/security/briefing_room) +"gPF" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"gPH" = ( +/obj/structure/bookcase{ + name = "bookcase (Fiction)" + }, +/turf/simulated/floor/wood, +/area/surface/station/library) +"gPJ" = ( +/obj/structure/sign/directions/cryo, +/obj/structure/sign/directions/evac{ + dir = 8; + pixel_y = 6 + }, +/turf/simulated/wall/r_wall, +/area/surface/station/arrivals/cynosure/cryo) +"gPO" = ( +/obj/effect/zone_divider, +/turf/simulated/wall, +/area/surface/station/engineering/reactor_room) +"gQu" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/etc) +"gQG" = ( +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/power/terminal, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/effect/catwalk_plated/dark, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/medbay/gnd) +"gQH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/etc) +"gRb" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/security/interrogation) +"gRB" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/storage) +"gRF" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/east/gnd) +"gRW" = ( +/obj/machinery/recharge_station, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/crew_quarters/caferestroom) +"gSf" = ( +/obj/structure/table/woodentable, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/surface/station/chapel/main) +"gSx" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/techfloor{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/outpost/research/xenoarcheology/surface) +"gSR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/surface/station/storage/primarytool) +"gTb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/evidence_storage) +"gTk" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/bordercorner{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/hallway/secondary/groundfloor/civilian) +"gTs" = ( +/turf/simulated/shuttle/wall/no_join{ + base_state = "orange"; + icon = 'icons/turf/shuttle_orange.dmi'; + icon_state = "orange" + }, +/area/shuttle/large_escape_pod1/station) +"gTx" = ( +/obj/structure/fence/corner{ + dir = 8 + }, +/turf/simulated/floor/outdoors/mask, +/area/surface/outside/plains/station) +"gTA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/carpet, +/area/surface/station/crew_quarters/heads/hop) +"gTK" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/medical/hallway/gnd) +"gTN" = ( +/obj/machinery/seed_storage/xenobotany, +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/tiled/dark, +/area/surface/station/rnd/xenobiology/xenoflora) +"gTP" = ( +/obj/structure/sign/bigname/seg_7{ + pixel_y = 32 + }, +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outside/plains/station) +"gUf" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad2" + }, +/obj/machinery/door/airlock/external, +/obj/effect/map_helper/airlock/door/simple, +/turf/simulated/floor/plating, +/area/surface/station/quartermaster/storage) +"gUH" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/item/weapon/paper_bin, +/obj/item/weapon/pen, +/obj/item/device/radio/intercom/department/security{ + dir = 4; + pixel_x = -21 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/processing) +"gUL" = ( +/turf/simulated/wall, +/area/surface/station/hallway/secondary/groundfloor/civilian) +"gUP" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/east/gnd) +"gVb" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/structure/table/reinforced, +/obj/effect/floor_decal/corner/blue/border{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7, +/obj/structure/cable/green, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -12; + pixel_y = -24 + }, +/obj/machinery/button/windowtint{ + id = "hosoffice"; + pixel_x = 11; + pixel_y = -23 + }, +/obj/machinery/photocopier/faxmachine{ + department = "Head of Security" + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/crew_quarters/heads/hos) +"gVF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/yellow/border, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/reactor) +"gVN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/turf/simulated/floor/tiled/hydro, +/area/surface/station/rnd/xenobiology/xenoflora) +"gWo" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/requests_console{ + department = "Cargo Bay"; + departmentType = 2; + dir = 4; + name = "Cargo RC"; + pixel_x = -24 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/quartermaster/lockerroom) +"gWp" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/hallway/primary/groundfloor/west/elevator) +"gWx" = ( +/obj/machinery/power/smes/buildable{ + RCon_tag = "Substation - Atmospherics"; + charge = 2e+006; + input_attempt = 1 + }, +/obj/structure/cable/cyan{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/atmospherics) +"gWQ" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "deteast" + }, +/turf/simulated/floor/plating, +/area/surface/station/security/detectives_office) +"gXv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/storage) +"gXJ" = ( +/obj/structure/toilet{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/surface/station/rnd/research_restroom) +"gXY" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/wingrille_spawn/reinforced, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + dir = 2; + id = "xenobio2"; + layer = 3.3; + name = "Containment Blast Doors" + }, +/turf/simulated/floor/plating, +/area/surface/station/rnd/xenobiology) +"gYe" = ( +/obj/structure/table/reinforced, +/obj/machinery/reagentgrinder, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 6 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 6 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/rnd/xenobiology) +"gYD" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/station/crew_quarters/pool) +"gZg" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled/hydro, +/area/surface/station/hydroponics) +"gZn" = ( +/turf/simulated/floor/water/pool, +/area/surface/station/crew_quarters/pool) +"gZq" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/storage/primarytool) +"gZF" = ( +/obj/effect/floor_decal/techfloor/corner{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/ai/upload) +"gZO" = ( +/obj/effect/floor_decal/techfloor{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1379; + id_tag = "msouth_airlock_pump" + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/hallway/primary/groundfloor/south) +"had" = ( +/obj/structure/table/reinforced, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/item/stack/material/phoron{ + amount = 10 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/purple/border, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/rnd/xenobiology) +"hag" = ( +/obj/machinery/door/blast/regular/open{ + id = "seclockdown"; + layer = 3.3; + name = "Security Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/security/hallway/gnd) +"haB" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/west) +"haN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 8 + }, +/turf/simulated/wall/r_wall, +/area/surface/station/maintenance/solars/west) +"hbn" = ( +/turf/simulated/floor/tiled/old_cargo/gray, +/area/surface/station/storage/primarytool) +"hbo" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 10 + }, +/turf/simulated/floor/tiled/asteroid_steel, +/area/surface/outside/plains/station) +"hby" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/hallway/primary/groundfloor/west/elevator) +"hbD" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/firstaid, +/obj/item/glass_jar{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/glass_jar, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/rnd/xenobiology) +"hbR" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/medical/surgery_storage) +"hcg" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/hallway/primary/groundfloor/east) +"hdo" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/effect/zone_divider, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/kitchen) +"hdD" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/engineering/gnd) +"hdH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/shuttle/exploration/general) +"hdR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/landmark/start, +/turf/simulated/floor/tiled/monofloor{ + dir = 8 + }, +/area/surface/station/arrivals/cynosure) +"hem" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/atmos) +"hez" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/bordercorner{ + dir = 1 + }, +/obj/structure/sign/directions/command{ + dir = 4; + pixel_y = 26 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/west) +"heM" = ( +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/cafeteria) +"heS" = ( +/obj/effect/shuttle_landmark/cynosure/large_escape_pod1/station, +/turf/simulated/shuttle/floor, +/area/shuttle/large_escape_pod1/station) +"heZ" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/hallway/primary/groundfloor/west/elevator) +"hfw" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/crew_quarters/gym) +"hfF" = ( +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "xenobiocontain"; + name = "Containment Lockdown"; + pixel_x = 24; + pixel_y = -6 + }, +/obj/effect/floor_decal/borderfloorwhite/corner, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/bordercorner, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/xenobiology) +"hfX" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/medical/cloning) +"hgd" = ( +/turf/simulated/floor/tiled/old_tile/blue, +/area/surface/station/arrivals/cynosure/cryo) +"hgs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/atmos) +"hgA" = ( +/obj/machinery/navbeacon/patrol{ + location = "PK2"; + next_patrol = "PK3" + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central6, +/obj/effect/floor_decal/steeldecal/steel_decals_central2, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/park) +"hgC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/chapel) +"hgW" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/status_display, +/turf/simulated/floor/plating, +/area/surface/station/storage/primarytool) +"hiw" = ( +/obj/machinery/dna_scannernew, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/purple/border, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/cloning) +"hiG" = ( +/obj/structure/sign/warning/high_voltage, +/turf/simulated/wall/r_wall, +/area/surface/station/security/range) +"hiJ" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway) +"hiL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/lobby) +"hjn" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/medical/hallway/gnd) +"hjp" = ( +/obj/structure/cable/cyan{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/catwalk_plated/dark, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/machinery/light_switch{ + pixel_x = 12; + pixel_y = 24 + }, +/obj/machinery/camera/network/command{ + c_tag = "AI - Upload South" + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/station/ai/upload) +"hjG" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"hjO" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/north/gnd) +"hjZ" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 1 + }, +/turf/simulated/floor/tiled/monofloor, +/area/surface/station/arrivals/cynosure) +"hkO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/structure/handrail{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/exploration/cargo) +"hkX" = ( +/obj/machinery/magnetic_module, +/obj/effect/floor_decal/steeldecal/steel_decals_central6, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/security/range) +"hle" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/surface/station/security/hallway/gnd) +"hll" = ( +/obj/effect/floor_decal/techfloor{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/ai/upload) +"hlJ" = ( +/obj/effect/floor_decal/techfloor/corner{ + dir = 9 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/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; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner_steel_grid, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/gnd) +"hme" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 1 + }, +/obj/machinery/pipedispenser, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"hmX" = ( +/obj/structure/sign/directions/evac, +/obj/structure/sign/directions/cryo{ + pixel_y = -6 + }, +/turf/simulated/wall/r_wall, +/area/surface/station/arrivals/cynosure) +"hny" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/engineering/hallway) +"hnQ" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/east/gnd) +"hnS" = ( +/turf/simulated/floor/tiled/dark, +/area/surface/station/hallway/primary/groundfloor/north) +"hnT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/gnd) +"hof" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/south) +"hoR" = ( +/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers, +/obj/machinery/atmospherics/pipe/zpipe/down/supply, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing, +/obj/structure/cable/green{ + d1 = 32; + d2 = 8; + icon_state = "32-8" + }, +/obj/structure/disposalpipe/down, +/obj/machinery/door/firedoor/border_only, +/turf/simulated/open, +/area/surface/station/maintenance/substation/medbay/gnd) +"hoT" = ( +/obj/effect/floor_decal/borderfloorwhite/corner, +/obj/effect/floor_decal/corner/purple/bordercorner, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/gnd) +"hpn" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/bluegrid, +/area/surface/station/ai/server_room) +"hpy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/cloning) +"hpC" = ( +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24; + pixel_y = -12 + }, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/cafeteria) +"hpH" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/machinery/papershredder, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/crew_quarters/heads/hop) +"hqu" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"hqG" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/gnd) +"hqL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/hydro, +/area/surface/station/rnd/xenobiology/xenoflora_isolation) +"hqO" = ( +/obj/machinery/oxygen_pump/mobile/stabilizer, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/medical/etc) +"hqR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite/corner, +/obj/effect/floor_decal/corner/purple/bordercorner, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/gnd) +"hrd" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/effect/engine_setup/coolant_canister, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"hrv" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/weapon/stool/padded, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/cafeteria) +"hrC" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/groundfloor/civilian) +"hsF" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/obj/structure/table/glass, +/obj/item/device/paicard, +/turf/simulated/floor/tiled/freezer, +/area/surface/station/crew_quarters/pool) +"hsL" = ( +/obj/structure/sign/warning/high_voltage, +/turf/simulated/wall/r_wall, +/area/surface/station/maintenance/solars/west) +"hta" = ( +/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/border_only, +/obj/machinery/door/airlock/engineering{ + name = "Arrivals Substation"; + req_one_access = list(11,24) + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/arrivals) +"htc" = ( +/obj/structure/cliff/automatic{ + dir = 9 + }, +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outside/plains/plateau) +"htd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/south) +"htf" = ( +/obj/effect/overmap/visitable/planet/Sif, +/turf/unsimulated/wall/planetary/sif, +/area/surface/outside/plains/plateau) +"htg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/surface/station/engineering/atmos) +"htt" = ( +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor/hole/right{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/ai/upload_foyer) +"htw" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/east/gnd) +"huo" = ( +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 6 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/library) +"huN" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"huS" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/bordercorner{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/industrial/danger, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/garage) +"hvu" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "steel_dirty"; + initial_flooring = /decl/flooring/tiling/steel_dirty + }, +/area/surface/station/arrivals/cynosure) +"hwa" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/west) +"hwh" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/maintenance/solars/west) +"hwm" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "mnorth_airlock_inner"; + locked = 1; + name = "Internal Access" + }, +/obj/effect/map_helper/airlock/door/int_door, +/obj/machinery/access_button/airlock_interior{ + master_tag = "mnorth_airlock"; + pixel_x = 35 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/hallway/primary/groundfloor/north) +"hwP" = ( +/turf/simulated/floor/tiled/old_tile/white, +/area/surface/station/rnd/research_restroom) +"hxj" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "atmoslockdown"; + layer = 3.3; + name = "Atmospherics Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/atmos) +"hxl" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"hxo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/effect/floor_decal/techfloor{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/ai/upload) +"hxJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/meter, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/east/gnd) +"hys" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/surface) +"hyZ" = ( +/obj/machinery/door/blast/regular/open{ + id = "seclockdown"; + layer = 3.3; + name = "Security Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/security/briefing_room) +"hzg" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/gnd) +"hzh" = ( +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24; + pixel_y = -12 + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/surgery) +"hzr" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/surface/station/crew_quarters/kitchen) +"hzy" = ( +/obj/machinery/chem_master, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/chemistry) +"hzL" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/valve, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/east/gnd) +"hzO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/ai/cyborg_station) +"hAB" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/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/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/atmos) +"hAR" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/arrivals/cynosure) +"hAU" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/surface/station/security/detectives_office/lab) +"hAV" = ( +/obj/structure/railing, +/turf/simulated/open, +/area/surface/station/hallway/primary/groundfloor/east) +"hBh" = ( +/turf/simulated/floor/tiled/dark, +/area/surface/station/hallway/primary/groundfloor/east) +"hBM" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/turf/simulated/floor/tiled/dark, +/area/surface/station/arrivals/cynosure) +"hBW" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/north/gnd) +"hCc" = ( +/obj/effect/map_effect/portal/master/side_a/plains_to_wilderness/river, +/turf/simulated/floor/water, +/area/surface/outside/river/gautelfr) +"hCk" = ( +/obj/effect/floor_decal/corner_steel_grid{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/etc) +"hCr" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/window/reinforced/polarized/full{ + id = "secpro" + }, +/turf/simulated/floor/plating, +/area/surface/station/security/processing) +"hCv" = ( +/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/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/surface/station/hallway/primary/groundfloor/east) +"hCC" = ( +/turf/simulated/floor/tiled/hydro, +/area/surface/station/rnd/xenobiology/xenoflora) +"hCJ" = ( +/obj/structure/bed/chair, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/arrivals/cynosure) +"hCV" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -12; + pixel_y = -24 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/solars/northeast) +"hDm" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"hDr" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/bordercorner{ + dir = 1 + }, +/obj/machinery/newscaster{ + pixel_x = -26 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/briefing_room) +"hDx" = ( +/obj/structure/table/reinforced, +/obj/machinery/computer/skills, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 5 + }, +/obj/machinery/computer/guestpass{ + pixel_y = 24 + }, +/obj/machinery/button/remote/blast_door{ + id = "hop_office_desk"; + name = "Desk Shutter"; + pixel_x = 12; + pixel_y = 24 + }, +/turf/simulated/floor/tiled, +/area/surface/station/crew_quarters/heads/hop) +"hDD" = ( +/obj/effect/zone_divider, +/turf/simulated/floor/reinforced, +/area/surface/station/engineering/atmos) +"hDN" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/structure/table/bench/marble, +/turf/simulated/floor/tiled/white, +/area/surface/station/crew_quarters/locker) +"hDS" = ( +/obj/structure/ladder/up, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/floor_decal/industrial/warning/full, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plating, +/area/surface/station/engineering/atmos) +"hEF" = ( +/obj/structure/disposalpipe/sortjunction{ + dir = 1; + name = "Janitor Closet"; + sortType = "Janitor Closet" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/janitor) +"hEN" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/structure/closet/wardrobe/medic_white, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/ward) +"hET" = ( +/turf/simulated/wall, +/area/surface/station/security/equiptment_storage/ses) +"hEX" = ( +/obj/effect/floor_decal/techfloor{ + dir = 9 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/structure/cable/cyan{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -24; + pixel_y = 12 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/ai/cyborg_station) +"hEY" = ( +/obj/effect/floor_decal/corner_steel_grid{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/north) +"hEZ" = ( +/obj/machinery/mech_recharger, +/turf/simulated/floor/tiled/dark, +/area/surface/station/garage) +"hFe" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"hFC" = ( +/obj/structure/closet/firecloset/full/double, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 6 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 6 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/rnd/xenobiology) +"hFI" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/hallway/primary/groundfloor/north) +"hFV" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/range) +"hGr" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/park) +"hGu" = ( +/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/structure/disposalpipe/segment, +/obj/machinery/door/airlock/engineering{ + name = "Medbay Substation"; + req_one_access = list(5) + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/medbay/gnd) +"hGV" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/glass{ + name = "Hallway" + }, +/obj/effect/zone_divider, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/hallway/secondary/groundfloor/civilian) +"hGY" = ( +/obj/machinery/computer/ship/engines, +/turf/simulated/floor/tiled/kafel_full/gray, +/area/shuttle/exploration/cockpit) +"hHn" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/maintenance{ + name = "Engineering Maintenance Access"; + req_one_access = list(11,24) + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/workshop) +"hHt" = ( +/obj/machinery/atmospherics/valve, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"hHU" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/gnd) +"hId" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/machinery/airlock_sensor/airlock_exterior{ + dir = 4; + id_tag = "northeast_solar_airlock_ext_sensor"; + master_tag = "northeast_solar_airlock"; + pixel_x = -31; + pixel_y = -35; + req_one_access = list(11,24) + }, +/obj/effect/map_helper/airlock/sensor/ext_sensor, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/station/maintenance/solars/northeast) +"hIG" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 1 + }, +/obj/machinery/camera/network/engineering{ + c_tag = "ENG - Reactor Hallway West" + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/reactor) +"hIW" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/surgery) +"hJv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/gnd) +"hJD" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 21 + }, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/yellow/bordercorner, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/workshop) +"hKf" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/arrivals/cynosure) +"hKw" = ( +/obj/structure/fitness/weightlifter, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/simulated/floor/tiled/old_tile/blue, +/area/surface/station/crew_quarters/gym) +"hKN" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"hLj" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/surface/station/quartermaster/storage) +"hLI" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/gnd) +"hLW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/obj/effect/catwalk_plated/dark, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/engineering/gnd) +"hMh" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/machinery/camera/network/research{ + c_tag = "SCI - Stairwell"; + dir = 8 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/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; + id = "aicore1"; + name = "AI Stairs Blast Door Control"; + pixel_y = -24; + req_one_access = list(19) + }, +/obj/machinery/camera/network/command{ + c_tag = "AI - Upload Stairs"; + dir = 1 + }, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/ai/upload) +"hMB" = ( +/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/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/processing) +"hMD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/chapel) +"hME" = ( +/obj/effect/floor_decal/techfloor{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1379; + id_tag = "mnorth_airlock_pump" + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/hallway/primary/groundfloor/north) +"hNc" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/green/border, +/turf/simulated/floor/tiled, +/area/surface/station/park) +"hNy" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/crew_quarters/locker) +"hNH" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/closet/secure_closet/cargotech, +/obj/item/weapon/storage/backpack/dufflebag, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/item/device/radio/intercom{ + pixel_y = -21 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/lockerroom) +"hOm" = ( +/obj/machinery/washing_machine, +/obj/machinery/camera/network/medbay{ + c_tag = "MED - Elevator Hallway"; + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/medical/hallway/gnd) +"hOq" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/outpost/research/xenoarcheology/surface) +"hOP" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/surface/station/library) +"hOX" = ( +/obj/machinery/door/airlock{ + name = "Unit 2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/security/restroom) +"hPc" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + pump_direction = 0; + use_power = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/delivery) +"hPe" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/monofloor{ + dir = 8 + }, +/area/surface/station/quartermaster/storage) +"hPp" = ( +/turf/simulated/wall, +/area/surface/station/security/lockerroom) +"hPW" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/security/lobby) +"hQd" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/park) +"hQy" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/storage/fancy/candle_box, +/turf/simulated/floor/carpet, +/area/surface/station/chapel/main) +"hQF" = ( +/obj/structure/closet/secure_closet/bar, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/bar) +"hQW" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/maintenance{ + req_one_access = list(12,25,27,28,35) + }, +/turf/simulated/floor/plating, +/area/surface/station/storage/primarytool) +"hRo" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/security/interrogation) +"hRr" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/surface/station/chapel/main) +"hRB" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/sign/warning/high_voltage, +/turf/simulated/wall, +/area/surface/station/maintenance/substation/engineering/gnd) +"hSf" = ( +/obj/structure/bed/chair/office/dark, +/turf/simulated/floor/tiled, +/area/surface/station/security/briefing_room) +"hSr" = ( +/obj/structure/sign/warning/high_voltage, +/turf/simulated/wall/r_wall, +/area/surface/station/maintenance/substation/medbay/gnd) +"hSB" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/storage) +"hSM" = ( +/obj/structure/sign/bigname/seg_4{ + pixel_y = 32 + }, +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outside/plains/station) +"hSO" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/east/gnd) +"hSU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/bordercorner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/bordercorner2{ + dir = 10 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/camera/network/ground_floor{ + c_tag = "Ground Floor - West Hallway 1"; + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/west) +"hSW" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/reception) +"hTM" = ( +/obj/structure/table/rack, +/turf/simulated/floor/tiled/dark, +/area/surface/station/quartermaster/storage) +"hUw" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/bordercorner{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet{ + dir = 1; + pixel_y = 30 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/processing) +"hUy" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 10 + }, +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/evidence_storage) +"hUN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/surgery2) +"hVI" = ( +/turf/simulated/floor/carpet, +/area/surface/station/crew_quarters/heads/hop) +"hWg" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/zone_divider, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/station/solar/northeastsolar) +"hWr" = ( +/obj/effect/catwalk_plated/dark, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"hWu" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/glass_medical{ + id_tag = "Medhallway"; + name = "Medbay Hallway" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/medical/hallway/gnd) +"hWz" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/north/gnd) +"hWJ" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/green/border, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/north) +"hXy" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/maintenance/substation/civilian) +"hYa" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/industrial/danger, +/obj/machinery/conveyor_switch/oneway{ + id = "QMLoad2" + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/storage) +"hYx" = ( +/obj/effect/floor_decal/corner/blue/full{ + dir = 4 + }, +/obj/machinery/air_sensor{ + frequency = 1441; + id_tag = "o2_sensor" + }, +/obj/machinery/camera/network/engineering{ + c_tag = "Atmos Tank - Oxygen"; + dir = 1 + }, +/turf/simulated/floor/reinforced/oxygen, +/area/surface/station/engineering/atmos) +"hYJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/wood/sif, +/area/surface/station/chapel/main) +"hYR" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular{ + dir = 4; + id = "xenobiodivide"; + name = "Containment Divider" + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/rnd/xenobiology) +"hZG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning/full, +/obj/structure/fuel_port, +/turf/simulated/floor/tiled/monotile, +/area/shuttle/exploration/cargo) +"iak" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/security/interrogation) +"iaD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/simulated/floor/tiled/hydro, +/area/surface/station/hydroponics) +"iaO" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central6{ + dir = 1 + }, +/obj/vehicle/train/engine/quadbike/random, +/turf/simulated/floor/tiled/monofloor, +/area/surface/station/garage) +"iaZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/industrial/warning, +/obj/structure/window/reinforced, +/obj/structure/closet/firecloset, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"ibk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"ibx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 8 + }, +/turf/simulated/wall/rshull, +/area/shuttle/exploration/cargo) +"ibA" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/structure/closet/crate/medical, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 21 + }, +/obj/effect/floor_decal/rust/part_rusted2{ + dir = 1 + }, +/obj/structure/sink/generic{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/surface/station/medical/surgery_storage) +"icz" = ( +/obj/structure/table/reinforced, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/item/device/radio/intercom/department/security{ + dir = 8; + pixel_x = 21 + }, +/obj/item/tabloid{ + pixel_x = -2 + }, +/obj/item/weapon/book/codex/corp_regs, +/obj/item/weapon/deskbell, +/turf/simulated/floor/tiled, +/area/surface/station/security/lobby) +"icE" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/hologram/holopad, +/obj/effect/landmark/start{ + name = "Cargo Technician" + }, +/turf/simulated/floor/tiled/monofloor{ + dir = 4 + }, +/area/surface/station/quartermaster/lockerroom) +"icH" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/effect/engine_setup/coolant_canister, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"icM" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/south) +"icT" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/turf/simulated/floor/tiled, +/area/surface/station/security/processing) +"ida" = ( +/obj/machinery/portable_atmospherics/hydroponics/soil, +/obj/machinery/light, +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/grass, +/area/surface/station/hydroponics/garden) +"idf" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/hallway/primary/groundfloor/west) +"idj" = ( +/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" + }, +/obj/effect/overlay/snow/floor, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "steel_dirty"; + initial_flooring = /decl/flooring/tiling/steel_dirty; + outdoors = 0 + }, +/area/surface/outside/plains/station) +"idr" = ( +/obj/structure/fence, +/turf/simulated/floor/outdoors/snow/sif/planetuse{ + outdoors = 0 + }, +/area/surface/outside/plains/station) +"idR" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/catwalk_plated/dark, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/civilian) +"idS" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/solars/west) +"ied" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor + }, +/area/surface/outside/plains/station) +"iex" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/maintenance{ + name = "Kitchen Maintenance"; + req_access = list(28) + }, +/turf/simulated/floor/plating, +/area/surface/station/crew_quarters/kitchen) +"ieP" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/north) +"ieS" = ( +/obj/structure/table/standard, +/obj/machinery/recharger, +/obj/item/weapon/tool/wrench, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/gym) +"ifG" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/machinery/airlock_sensor/airlock_exterior{ + dir = 8; + id_tag = "west_solar_airlock_ext_sensor"; + master_tag = "west_solar_airlock"; + pixel_x = 31; + pixel_y = -24; + req_one_access = list(11,24) + }, +/obj/effect/map_helper/airlock/sensor/ext_sensor, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/station/maintenance/solars/west) +"igt" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/window/reinforced/polarized{ + dir = 4; + id = "detwest" + }, +/turf/simulated/floor/carpet, +/area/surface/station/security/detectives_office) +"igv" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/north) +"ihg" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/closet/emcloset, +/obj/item/weapon/storage/toolbox/emergency, +/obj/item/clothing/suit/storage/hooded/wintercoat, +/obj/item/clothing/suit/storage/hooded/wintercoat, +/turf/simulated/floor/tiled/freezer, +/area/surface/station/crew_quarters/pool) +"ihA" = ( +/obj/structure/bed/chair/office/dark, +/obj/effect/landmark/start{ + name = "Head of Personnel" + }, +/turf/simulated/floor/carpet, +/area/surface/station/crew_quarters/heads/hop) +"ihC" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central5, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/machinery/camera/network/medbay{ + c_tag = "MED - Surgery Observation" + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/surgeryobs) +"ihE" = ( +/obj/structure/sign/warning/high_voltage, +/turf/simulated/wall, +/area/surface/station/medical/etc) +"ihO" = ( +/obj/machinery/sleeper{ + dir = 8 + }, +/turf/simulated/shuttle/floor, +/area/shuttle/large_escape_pod1/station) +"iih" = ( +/obj/machinery/holosign/bar{ + id = "baropen" + }, +/turf/simulated/wall, +/area/surface/station/crew_quarters/cafeteria) +"ikq" = ( +/obj/structure/table/woodentable, +/obj/machinery/chemical_dispenser/bar_coffee/full{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/bar) +"ikr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/south) +"ikt" = ( +/obj/machinery/portable_atmospherics/powered/scrubber, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/kitchen) +"ikQ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/obj/machinery/door/airlock/maintenance{ + req_one_access = list(5,12,47) + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/surgery) +"ikV" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/pink/border{ + dir = 1 + }, +/obj/machinery/computer/secure_data, +/turf/simulated/floor/tiled/white, +/area/surface/station/security/detectives_office/lab) +"ilk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/industrial/danger, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "steel_dirty"; + initial_flooring = /decl/flooring/tiling/steel_dirty + }, +/area/surface/outside/plains/station) +"ils" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/station/hydroponics) +"ilu" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/hallway/gnd) +"ilU" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/east) +"img" = ( +/obj/machinery/atmospherics/pipe/tank/air{ + dir = 4; + start_pressure = 4559.63 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/surgery) +"imh" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/machinery/vending/hydronutrients{ + dir = 4 + }, +/turf/simulated/floor/tiled/hydro, +/area/surface/station/park) +"imi" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 10 + }, +/turf/simulated/floor/water/deep/pool, +/area/surface/station/crew_quarters/pool) +"imL" = ( +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/machinery/chemical_dispenser, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/rnd/xenobiology/xenoflora_isolation) +"imM" = ( +/obj/structure/sign/directions/medical{ + dir = 1 + }, +/obj/structure/sign/directions/security{ + dir = 1; + pixel_y = 6 + }, +/obj/structure/sign/directions/engineering{ + dir = 6; + pixel_y = -6 + }, +/turf/simulated/wall/r_wall, +/area/surface/station/park) +"imW" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/quartermaster/lockerroom) +"imX" = ( +/obj/structure/closet/radiation, +/obj/item/clothing/glasses/meson, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/zone_divider, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_waste) +"inb" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/reinforced, +/area/surface/station/rnd/misc_lab) +"inY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/south) +"ion" = ( +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24; + pixel_y = -12 + }, +/obj/effect/floor_decal/corner/white/diagonal, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/station/crew_quarters/pool) +"ioz" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/surface/station/security/briefing_room) +"ioE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/obj/item/weapon/stool/barstool/padded{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/south) +"iph" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/zone_divider, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/groundfloor/civilian) +"ipL" = ( +/obj/machinery/door/blast/regular/open{ + id = "seclockdown"; + layer = 3.3; + name = "Security Lockdown" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/surface/station/security/hallway/gnd) +"ipU" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/workshop) +"iqx" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/surface/station/engineering/workshop) +"iqZ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/ward) +"irl" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green, +/obj/structure/grille, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/station) +"iro" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/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 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/east/gnd) +"irv" = ( +/obj/effect/floor_decal/corner/white/diagonal{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/siphon/on/atmos{ + dir = 8; + frequency = 1441; + id_tag = "n2o_out"; + initialize_directions = 1; + internal_pressure_bound = 4000; + internal_pressure_bound_default = 4000 + }, +/turf/simulated/floor/reinforced/n20, +/area/surface/station/engineering/atmos) +"irA" = ( +/obj/structure/sign/warning/radioactive, +/turf/simulated/wall/r_wall, +/area/surface/station/engineering/reactor_airlock) +"irS" = ( +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/xenobiology) +"irT" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 1 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/shuttle/exploration/general) +"isu" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 1; + name = "N2 to Connector" + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"isI" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 6 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/water/deep{ + has_fish = 0 + }, +/area/surface/outside/station/reactorpond) +"isY" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red, +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"itc" = ( +/obj/machinery/door/airlock/external{ + frequency = 1380; + icon_state = "door_locked"; + id_tag = "large_escape_pod_1_hatch"; + locked = 1; + name = "Large Escape Pod Hatch 1"; + req_access = list(13) + }, +/turf/simulated/shuttle/floor, +/area/shuttle/large_escape_pod1/station) +"itt" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"itw" = ( +/obj/effect/floor_decal/corner/blue/full, +/obj/machinery/light/small, +/turf/simulated/floor/reinforced/oxygen, +/area/surface/station/engineering/atmos) +"ity" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/surface/station/park) +"itG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/blue{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/bordercorner{ + dir = 8 + }, +/obj/structure/sign/directions/cryo{ + dir = 8; + pixel_y = -38 + }, +/obj/structure/sign/directions/evac{ + dir = 8; + pixel_y = -32 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/south) +"iuv" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/obj/structure/table/glass, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -21 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/station/crew_quarters/pool) +"iuI" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/east) +"ivo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/machinery/space_heater, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/engineering/atmos) +"ivq" = ( +/obj/structure/closet/coffin, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/wood/sif, +/area/surface/station/chapel/main) +"ivt" = ( +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/bordercorner{ + dir = 4 + }, +/obj/structure/flora/pottedplant/drooping{ + pixel_y = 10 + }, +/obj/structure/table/standard, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/hallway/secondary/groundfloor/civilian) +"ivx" = ( +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/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 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "steel_dirty"; + initial_flooring = /decl/flooring/tiling/steel_dirty + }, +/area/surface/outside/plains/station) +"iwy" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/firstaid/fire{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/storage/firstaid/fire, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 21 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/storage/primary_storage) +"iwQ" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/medical{ + name = "Observation Room"; + req_one_access = list() + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/medical/surgeryobs) +"iwU" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning/dust/corner, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor + }, +/area/surface/station/arrivals/cynosure) +"ixa" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/briefing_room) +"ixt" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/purple/bordercorner{ + dir = 8 + }, +/obj/machinery/camera/network/research{ + c_tag = "SCI - Research Hallway West"; + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/gnd) +"ixB" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/xenobiology) +"iyI" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/green/border, +/obj/machinery/light, +/obj/machinery/camera/network/ground_floor{ + c_tag = "Ground Floor - North Hallway 2"; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/north) +"iyP" = ( +/obj/machinery/shipsensors, +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/plating/sif/planetuse, +/area/shuttle/exploration/cockpit) +"izq" = ( +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/monofloor{ + dir = 8 + }, +/area/surface/station/engineering/atmos) +"izD" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table/steel_reinforced, +/obj/item/stack/material/glass/phoronglass{ + amount = 20 + }, +/obj/item/stack/material/glass{ + amount = 50 + }, +/obj/item/stack/material/glass{ + amount = 50 + }, +/obj/item/stack/material/glass/reinforced{ + amount = 20 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/workshop) +"izZ" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor + }, +/area/surface/outside/plains/station) +"iBd" = ( +/obj/structure/table/bench/wooden, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/machinery/light, +/turf/simulated/floor/wood/sif, +/area/surface/station/chapel/main) +"iBe" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/processing) +"iBx" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/south) +"iCp" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 5 + }, +/obj/structure/grille, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/station) +"iCU" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/device/gps/explorer{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/device/gps/explorer, +/obj/item/device/gps/explorer{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/device/gps/explorer{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/rnd/exploration) +"iDc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/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, +/obj/random/contraband, +/obj/random/maintenance/security, +/obj/random/maintenance/engineering, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/east/gnd) +"iDC" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + id = "englockdown"; + layer = 3.3; + name = "Engineering Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/engineering_monitoring) +"iEh" = ( +/obj/structure/closet/toolcloset, +/obj/item/device/flashlight, +/obj/item/device/radio, +/obj/item/device/radio, +/obj/item/weapon/storage/toolbox/mechanical, +/obj/item/weapon/storage/toolbox/mechanical, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/workshop) +"iEL" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor + }, +/area/surface/outside/plains/station) +"iFl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/obj/effect/catwalk_plated/dark, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/structure/disposalpipe/sortjunction{ + name = "CE Office"; + sortType = "CE Office" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/engineering/gnd) +"iFx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/danger/corner{ + dir = 1 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "steel_dirty"; + initial_flooring = /decl/flooring/tiling/steel_dirty + }, +/area/surface/outside/plains/station) +"iFX" = ( +/obj/structure/table/glass, +/obj/item/device/radio/phone/medbay{ + name = "Emergency Phone"; + pixel_y = -6 + }, +/obj/random/medical, +/obj/random/medical, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/medical/hallway/gnd) +"iGu" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 4 + }, +/obj/machinery/camera/network/research{ + c_tag = "SCI - Miscellaneous Research"; + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/misc_lab) +"iGD" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/binary/passive_gate{ + dir = 1; + icon_state = "on"; + unlocked = 1 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/solars/northeast) +"iGM" = ( +/turf/simulated/floor/outdoors/dirt/sif/planetuse, +/area/surface/outside/plains/normal) +"iGO" = ( +/turf/simulated/floor/water/deep/pool, +/area/surface/station/crew_quarters/pool) +"iHa" = ( +/obj/effect/floor_decal/corner/green/full{ + dir = 4 + }, +/obj/machinery/air_sensor{ + frequency = 1441; + id_tag = "waste_sensor" + }, +/obj/machinery/camera/network/engineering{ + c_tag = "Atmos Tank - Gas Mixing"; + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/surface/station/engineering/atmos) +"iHN" = ( +/obj/structure/sign/bigname/seg_3{ + pixel_y = 32 + }, +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outside/plains/station) +"iHY" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"iIo" = ( +/obj/effect/map_effect/portal/line/side_a, +/turf/simulated/floor/water/deep, +/area/surface/outside/river/gautelfr) +"iIs" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/material/kitchen/utensil/fork{ + pixel_x = -2 + }, +/obj/item/weapon/material/kitchen/utensil/spoon{ + pixel_x = 2 + }, +/obj/item/weapon/flame/candle, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/cafeteria) +"iIT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/obj/effect/catwalk_plated/dark, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/space_heater, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/east/gnd) +"iJb" = ( +/obj/machinery/button/remote/blast_door{ + id = "xenobiostationext"; + name = "Containment Release Switch Exterior"; + pixel_y = 24; + req_one_access = list(55) + }, +/obj/structure/table/reinforced, +/obj/item/weapon/extinguisher, +/turf/simulated/floor/tiled/dark, +/area/surface/station/rnd/xenobiology) +"iJn" = ( +/obj/structure/table/woodentable, +/obj/machinery/photocopier/faxmachine{ + department = "Public Office" + }, +/obj/machinery/light, +/turf/simulated/floor/wood, +/area/surface/station/library) +"iJs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/east/gnd) +"iJv" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/wood/sif, +/area/surface/station/chapel/main) +"iJJ" = ( +/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, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/gnd) +"iJK" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 4 + }, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/gnd) +"iJV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/shuttle/exploration/general) +"iKi" = ( +/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 = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/cafeteria) +"iKl" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/maintenance{ + name = "Operating Theatre Storage"; + req_access = list(45) + }, +/turf/simulated/floor/plating, +/area/surface/station/medical/surgery_storage) +"iKP" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "marrivals_airlock_inner"; + locked = 1; + name = "Internal Access" + }, +/obj/effect/map_helper/airlock/door/int_door, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/arrivals/cynosure) +"iLa" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/bordercorner{ + dir = 4 + }, +/obj/machinery/camera/network/security{ + c_tag = "SEC - Processing"; + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/processing) +"iLk" = ( +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24; + pixel_y = -12 + }, +/obj/structure/undies_wardrobe, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 4 + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/surface/station/rnd/research_restroom) +"iLI" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/maintenance/north/gnd) +"iMb" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 4 + }, +/obj/machinery/newscaster{ + pixel_x = 26 + }, +/obj/machinery/camera/network/cargo{ + c_tag = "CRG - Cargo Bay East"; + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/storage) +"iMc" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/access_button/airlock_exterior{ + dir = 4; + master_tag = "northeast_solar_airlock"; + pixel_y = -24; + req_one_access = list(11,24) + }, +/obj/effect/map_helper/airlock/door/ext_door, +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "northeast_solar_outer"; + locked = 1; + name = "Solar External Access" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/solars/northeast) +"iMd" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/machinery/door/window/eastleft{ + name = "Bar"; + req_one_access = list(25) + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/lino, +/area/surface/station/crew_quarters/bar) +"iMJ" = ( +/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/techfloor{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/ai/upload_foyer) +"iNb" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/station/crew_quarters/pool) +"iNc" = ( +/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/cold{ + layer = 3.3; + pixel_y = 32 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/hallway/primary/groundfloor/north) +"iNR" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "englockdown"; + layer = 3.3; + name = "Engineering Lockdown" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/engineering/gnd) +"iNX" = ( +/obj/structure/cable/yellow{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/station/solar/westsolar) +"iOa" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/grass, +/area/surface/station/park) +"iPo" = ( +/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 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/security/restroom) +"iPu" = ( +/obj/structure/cable{ + 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 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/east/gnd) +"iPz" = ( +/obj/structure/fence, +/turf/simulated/floor/outdoors/dirt/sif, +/area/surface/outside/plains/station) +"iPA" = ( +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/ai/upload) +"iPB" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/storage) +"iPF" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "eng_ew2_airlock_inner"; + locked = 1; + name = "Internal Access" + }, +/obj/effect/map_helper/airlock/door/int_door, +/obj/machinery/access_button/airlock_interior{ + dir = 8; + master_tag = "eng_ew2_airlock"; + pixel_y = -35; + req_one_access = list(12) + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/maintenance/east/gnd) +"iQk" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/ladder/up, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/east/gnd) +"iQt" = ( +/turf/simulated/wall, +/area/surface/station/security/detectives_office) +"iQT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass{ + name = "Hallway" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/hallway/primary/groundfloor/south) +"iQZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/north/gnd) +"iRQ" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1; + id_tag = null + }, +/obj/effect/floor_decal/techfloor{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/structure/handrail, +/obj/effect/map_helper/airlock/atmos/pump_out_internal, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/exploration/cargo) +"iSh" = ( +/turf/simulated/wall, +/area/surface/station/hallway/primary/groundfloor/east) +"iSG" = ( +/turf/simulated/wall, +/area/surface/station/quartermaster/delivery) +"iSK" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"iTi" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/bordercorner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/gnd) +"iTp" = ( +/obj/machinery/atmospherics/binary/pump, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"iTu" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/foyer) +"iTx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/surface) +"iTH" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/zone_divider, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/south) +"iTP" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/rnd/hallway/gnd) +"iTW" = ( +/obj/machinery/papershredder, +/turf/simulated/floor/wood, +/area/surface/station/library) +"iUi" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/structure/table/woodentable, +/obj/item/device/paicard, +/turf/simulated/floor/tiled/hydro, +/area/surface/station/park) +"iUj" = ( +/obj/structure/closet/secure_closet/pilot, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/rnd/exploration) +"iUK" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 9 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/water/deep{ + has_fish = 0 + }, +/area/surface/outside/station/reactorpond) +"iVb" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/effect/floor_decal/techfloor/corner{ + dir = 9 + }, +/obj/item/device/radio/intercom/locked/ai_private{ + pixel_y = -21 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/ai/upload_foyer) +"iVm" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 6 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/chemistry) +"iVF" = ( +/obj/machinery/space_heater, +/obj/structure/sign/directions/ladder_down{ + dir = 1; + pixel_y = 26 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/north/gnd) +"iVH" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/foyer) +"iVI" = ( +/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{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/navbeacon/patrol{ + location = "WH1"; + next_patrol = "PK4" + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central6, +/obj/effect/floor_decal/steeldecal/steel_decals_central2, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/hallway/primary/groundfloor/west) +"iVW" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/monofloor{ + dir = 4 + }, +/area/surface/station/hallway/primary/groundfloor/south) +"iVY" = ( +/obj/structure/fence/end, +/turf/simulated/floor/outdoors/mask, +/area/surface/outside/plains/station) +"iWb" = ( +/obj/machinery/honey_extractor, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 10 + }, +/turf/simulated/floor/tiled/hydro, +/area/surface/station/hydroponics) +"iWu" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 8 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"iWy" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/workshop) +"iWF" = ( +/obj/structure/table/standard, +/obj/machinery/cell_charger, +/obj/item/weapon/cell/high, +/obj/item/weapon/cell/high{ + pixel_y = -4 + }, +/turf/simulated/floor/reinforced, +/area/surface/station/rnd/misc_lab) +"iWL" = ( +/obj/machinery/status_display, +/turf/simulated/wall, +/area/surface/station/hydroponics) +"iWV" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 6 + }, +/turf/simulated/floor/water/deep{ + has_fish = 0 + }, +/area/surface/outside/station/reactorpond) +"iXd" = ( +/obj/structure/fence/corner{ + dir = 10 + }, +/turf/simulated/floor/outdoors/mask, +/area/surface/outside/plains/station) +"iYA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/hydro, +/area/surface/station/rnd/xenobiology/xenoflora_isolation) +"iZC" = ( +/obj/structure/stairs/spawner/north, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/ai/upload_foyer) +"iZQ" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 2; + name = "Research Access"; + req_one_access = list(47) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/rnd/hallway/stairwell) +"jaW" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/external{ + frequency = 1380; + icon_state = "door_locked"; + id_tag = "escape_dock_north_starboard_outer"; + locked = 1; + name = "External Access" + }, +/obj/effect/map_helper/airlock/door/ext_door, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/arrivals/cynosure) +"jaY" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/cap/visible{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"jaZ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/closet/secure_closet/personal/patient, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/machinery/newscaster{ + pixel_y = -28 + }, +/obj/machinery/camera/network/medbay{ + c_tag = "MED - Patient Ward West"; + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/ward) +"jbg" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/machinery/space_heater, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/engineering/atmos) +"jbt" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green, +/obj/structure/cable/cyan, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -24; + pixel_y = 12 + }, +/obj/machinery/power/apc/super/critical{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"jbw" = ( +/obj/structure/kitchenspike, +/obj/effect/zone_divider, +/turf/simulated/floor/tiled/freezer, +/area/surface/station/crew_quarters/kitchen) +"jbS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 8 + }, +/obj/machinery/camera/network/research{ + c_tag = "SCI - Research Hallway South"; + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/gnd) +"jbX" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera/network/security{ + c_tag = "SEC - Hallway South"; + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/gnd) +"jcU" = ( +/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/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 4 + }, +/obj/machinery/door/airlock/glass_engineering{ + name = "Engineering Hallway" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/engineering/hallway) +"jdw" = ( +/obj/random/crate, +/obj/random/maintenance/cargo, +/obj/random/maintenance/cargo, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/structure/sign/directions/ladderwell{ + pixel_y = -26 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/kitchen) +"jdF" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/effect/floor_decal/steeldecal/steel_decals3, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 10 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/rnd/hallway/gnd) +"jdY" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/north/gnd) +"jes" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/obj/effect/floor_decal/spline/plain{ + dir = 6 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/station/crew_quarters/pool) +"jeS" = ( +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/solar, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "steel_dirty"; + initial_flooring = /decl/flooring/tiling/steel_dirty + }, +/area/surface/outside/station/solar/westsolar) +"jfk" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/west/elevator) +"jfE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/surface/station/hallway/primary/groundfloor/west) +"jfS" = ( +/obj/structure/railing, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/open, +/area/surface/station/rnd/hallway/stairwell) +"jgc" = ( +/obj/structure/table/wooden_reinforced, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/lino, +/area/surface/station/chapel/office) +"jgp" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/park) +"jgs" = ( +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "medbayquar"; + layer = 3.3; + name = "Medbay Lockdown" + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/medical/reception) +"jgt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/bordercorner{ + dir = 1 + }, +/obj/structure/sign/directions/security/seceqp{ + dir = 4; + pixel_x = -32 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/gnd) +"jgB" = ( +/obj/machinery/seed_extractor, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lime/border, +/obj/machinery/light, +/turf/simulated/floor/tiled/hydro, +/area/surface/station/hydroponics) +"jhl" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/tiled/hydro, +/area/surface/station/hydroponics) +"jhm" = ( +/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, +/turf/simulated/floor/tiled/monofloor{ + dir = 4 + }, +/area/surface/station/engineering/atmos) +"jhq" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/hallway/primary/groundfloor/south) +"jhv" = ( +/turf/simulated/floor/outdoors/grass/sif, +/area/surface/outside/plains/plateau) +"jic" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular/open{ + id = "biohazard"; + layer = 3.3; + name = "Biohazard Shutter" + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/rnd/hallway/gnd) +"jij" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "deteast" + }, +/turf/simulated/floor/plating, +/area/surface/station/security/detectives_office) +"jiV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/surface/station/security/lobby) +"jjI" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/west) +"jjJ" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/hallway/primary/groundfloor/north) +"jkk" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = 30 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/hallway/primary/groundfloor/east) +"jkl" = ( +/obj/structure/closet/crate/focalpoint, +/obj/item/weapon/circuitboard/smes, +/obj/item/weapon/circuitboard/smes, +/obj/item/weapon/smes_coil, +/obj/item/weapon/smes_coil, +/obj/item/weapon/smes_coil/super_capacity, +/obj/item/weapon/smes_coil/super_capacity, +/obj/item/weapon/smes_coil/super_io, +/obj/item/weapon/smes_coil/super_io, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/engineering/storage) +"jkH" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/library) +"jkY" = ( +/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/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/station/solar/westsolar) +"jlb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 8 + }, +/obj/machinery/power/solar_control/autostart{ + dir = 4; + id = "westsolar"; + name = "West Solar Control" + }, +/obj/structure/cable/yellow{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/solars/west) +"jlo" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/storage/emergency/sec) +"jlu" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + dir = 8; + frequency = 1380; + id_tag = "pad3"; + pixel_x = 22 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "steel_dirty"; + initial_flooring = /decl/flooring/tiling/steel_dirty + }, +/area/surface/outpost/research/xenoarcheology/surface) +"jlB" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "steel_dirty"; + initial_flooring = /decl/flooring/tiling/steel_dirty + }, +/area/surface/outside/plains/station) +"jlF" = ( +/obj/machinery/mech_recharger, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/medical/emt_bay) +"jlN" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 5 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/hydro, +/area/surface/station/hydroponics) +"jlT" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/cable/green, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/window/reinforced/full, +/obj/machinery/ai_status_display, +/turf/simulated/floor/plating, +/area/surface/station/rnd/xenobiology) +"jmQ" = ( +/obj/structure/reagent_dispensers/watertank/high, +/turf/simulated/floor/tiled/dark, +/area/surface/station/rnd/xenobiology/xenoflora_isolation) +"jmX" = ( +/obj/structure/table/standard, +/turf/simulated/floor/outdoors/dirt/sif{ + outdoors = 0 + }, +/area/surface/outside/plains/station) +"jmY" = ( +/obj/structure/sign/directions/medical{ + dir = 9; + pixel_y = 6 + }, +/obj/structure/sign/directions/evac{ + dir = 10 + }, +/obj/structure/sign/directions/cryo{ + dir = 10; + pixel_y = -6 + }, +/turf/simulated/wall, +/area/surface/station/park) +"jno" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 9 + }, +/obj/structure/catwalk, +/turf/simulated/floor/water/deep{ + has_fish = 0 + }, +/area/surface/outside/station/reactorpond) +"jnC" = ( +/obj/structure/stairs/spawner/south, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/ai/upload) +"jnY" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/surface/station/security/processing) +"jod" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/grey/border, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/tiled, +/area/surface/station/crew_quarters/gym) +"jon" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/old_cargo/white, +/area/surface/station/rnd/research_restroom) +"joM" = ( +/obj/effect/floor_decal/industrial/loading{ + dir = 4 + }, +/obj/effect/floor_decal/rust/mono_rusted2, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/quartermaster/storage) +"joW" = ( +/obj/structure/table/bench/wooden, +/obj/machinery/ai_status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/wood/sif, +/area/surface/station/chapel/main) +"jpl" = ( +/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/access_button/airlock_exterior{ + master_tag = "xenostation_airlock_control"; + name = "Xenobiology Access Button"; + pixel_x = 24; + req_one_access = list(55) + }, +/obj/machinery/door/airlock/research{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "xenostation_airlock_exterior"; + locked = 1; + name = "Xenobiology External Airlock"; + req_one_access = list(55) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/rnd/xenobiology) +"jqp" = ( +/obj/structure/closet/bombcloset, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/purple/border, +/obj/machinery/light, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/rnd/xenobiology) +"jrg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "steel_dirty"; + initial_flooring = /decl/flooring/tiling/steel_dirty + }, +/area/surface/station/arrivals/cynosure) +"jrG" = ( +/obj/effect/floor_decal/techfloor{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/ai/upload) +"jrW" = ( +/obj/structure/window/reinforced, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/arrivals/cynosure) +"jsc" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/shuttle/exploration/general) +"jss" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/obj/item/weapon/stool/padded{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/station/crew_quarters/pool) +"jsF" = ( +/obj/machinery/vending/fitness, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/crew_quarters/gym) +"jtd" = ( +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "seclockdown"; + layer = 3.3; + name = "Security Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/security/hallway/gnd) +"jtq" = ( +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/red/bordercorner, +/obj/structure/table/standard, +/obj/item/weapon/storage/box/evidence, +/obj/item/device/camera, +/obj/machinery/requests_console{ + department = "Security"; + departmentType = 5; + dir = 8; + name = "Security RC"; + pixel_x = 24 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/processing) +"jtu" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/surface/station/crew_quarters/heads/hos) +"jtv" = ( +/obj/structure/showcase/sign{ + icon_state = "wilderness2"; + pixel_y = -6 + }, +/obj/effect/zone_divider, +/turf/simulated/wall, +/area/surface/outside/plains/station) +"jty" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 9 + }, +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "atmoslockdown"; + layer = 3.3; + name = "Atmospherics Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/atmos) +"jtX" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/structure/sign/directions/security{ + dir = 4; + pixel_y = 38 + }, +/obj/structure/sign/directions/engineering{ + dir = 4; + pixel_y = 32 + }, +/obj/structure/sign/directions/medical{ + dir = 4; + pixel_y = 26 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/west) +"juw" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/machinery/camera/network/engine{ + c_tag = "ENG - Reactor Room North"; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"juK" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red, +/obj/machinery/light/spot{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"juT" = ( +/obj/machinery/disposal, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"juV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/arrivals) +"jvk" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 8 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "steel_dirty"; + initial_flooring = /decl/flooring/tiling/steel_dirty + }, +/area/surface/outside/plains/station) +"jvp" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/hallway/primary/groundfloor/south) +"jvS" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_waste) +"jwg" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"jww" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway) +"jwF" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/bordercorner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/gnd) +"jwT" = ( +/obj/effect/floor_decal/techfloor{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4; + frequency = 1380; + id_tag = "escape_dock_south_starboard_pump" + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{ + frequency = 1380; + id_tag = "escape_dock_ssouth_airlock"; + master_tag = "escape_dock"; + pixel_y = 24; + req_access = list(13) + }, +/obj/machinery/airlock_sensor{ + frequency = 1380; + id_tag = "escape_dock_south_starboard_sensor"; + pixel_x = -11; + pixel_y = 25 + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/arrivals/cynosure) +"jxq" = ( +/turf/simulated/floor/greengrid/nitrogen, +/area/surface/station/engineering/reactor_room) +"jxK" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -24; + pixel_y = 12 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/catwalk_plated/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/civilian) +"jxM" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 10 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/medical/etc) +"jxT" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/reinforced, +/area/surface/station/rnd/xenobiology) +"jyf" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/security/processing) +"jyy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 8 + }, +/obj/structure/table/bench/steel, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/landmark/start{ + name = "Explorer" + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/rnd/exploration) +"jyJ" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/maintenance/substation/engineering/gnd) +"jyM" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/catwalk_plated, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/security/briefing_room) +"jyQ" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/arrivals/cynosure) +"jAk" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 6 + }, +/obj/structure/closet/wardrobe/red, +/obj/item/clothing/accessory/badge/holo, +/obj/item/clothing/accessory/badge/holo, +/obj/item/clothing/accessory/badge/holo/cord, +/obj/item/clothing/suit/storage/hazardvest/green, +/obj/item/clothing/suit/storage/hazardvest/green, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/lockerroom) +"jAJ" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/disposalpipe/down{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/zpipe/down/supply{ + dir = 4 + }, +/obj/structure/lattice, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + d1 = 32; + d2 = 4; + icon_state = "32-4" + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/open, +/area/surface/station/maintenance/substation/cargo/gnd) +"jBd" = ( +/obj/structure/closet/crate/hydroponics, +/obj/item/beehive_assembly, +/obj/item/bee_smoker, +/obj/item/honey_frame, +/obj/item/honey_frame, +/obj/item/honey_frame, +/obj/item/honey_frame, +/obj/item/honey_frame, +/obj/item/bee_pack, +/obj/item/weapon/tool/crowbar, +/obj/machinery/atmospherics/tvalve/bypass, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + layer = 2.8 + }, +/turf/simulated/floor/plating, +/area/surface/station/rnd/xenobiology/xenoflora) +"jBw" = ( +/obj/effect/floor_decal/techfloor{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1379; + id_tag = "arc3_airlock_pump" + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/outpost/research/xenoarcheology/surface) +"jBO" = ( +/obj/effect/floor_decal/techfloor{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/maintenance/east/gnd) +"jCb" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/cafeteria) +"jCi" = ( +/obj/structure/handrail{ + dir = 8 + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/shuttle/exploration/general) +"jCP" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/pink/border{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/vending/wallmed1{ + pixel_x = -26 + }, +/obj/structure/sink/generic{ + dir = 4; + pixel_x = -12; + pixel_y = -4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/surgery2) +"jDa" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/binary/circulator{ + anchored = 1; + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"jDj" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/yellow, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/hydro, +/area/surface/station/rnd/xenobiology/xenoflora_isolation) +"jDn" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/pink/border{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/vending/wallmed1{ + pixel_x = 26 + }, +/obj/structure/sink/generic{ + dir = 8; + pixel_x = 12; + pixel_y = -4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/surgery) +"jDu" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/research/xenoarcheology/surface) +"jDv" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/simulated/floor/water/deep/pool, +/area/surface/station/crew_quarters/pool) +"jDy" = ( +/obj/machinery/sleep_console, +/turf/simulated/floor/tiled/old_tile/gray, +/area/shuttle/exploration/general) +"jDG" = ( +/obj/machinery/mech_recharger, +/obj/effect/landmark/robot_platform/cargo, +/turf/simulated/floor/tiled/dark, +/area/surface/station/quartermaster/lockerroom) +"jDW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/navbeacon/patrol{ + location = "PK7"; + next_patrol = "EH1" + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central6, +/obj/effect/floor_decal/steeldecal/steel_decals_central2, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/park) +"jEc" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/glass_medical{ + id_tag = "Surgery"; + name = "Patient Ward" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/medical/ward) +"jEw" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"jEx" = ( +/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 = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 8; + name = "Bar"; + sortType = "Bar" + }, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/cafeteria) +"jFo" = ( +/obj/structure/sign/warning/moving_parts, +/turf/simulated/wall/r_wall, +/area/surface/station/arrivals/cynosure) +"jFv" = ( +/obj/machinery/atmospherics/unary/freezer, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/medical/hallway/gnd) +"jFI" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"jFM" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 8 + }, +/obj/machinery/airlock_sensor/airlock_exterior{ + dir = 4; + id_tag = "eng_ew2_airlock_ext_sensor"; + master_tag = "eng_ew2_airlock"; + pixel_x = -31; + pixel_y = -35; + req_one_access = list(12) + }, +/obj/effect/map_helper/airlock/sensor/ext_sensor, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor + }, +/area/surface/station/maintenance/east/gnd) +"jFP" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24; + pixel_y = -12 + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/security/gnd) +"jGo" = ( +/obj/structure/table/woodentable, +/obj/item/device/taperecorder, +/obj/item/device/tape/random{ + pixel_y = -2 + }, +/obj/item/device/tape/random, +/obj/item/device/camera, +/obj/item/weapon/barcodescanner, +/turf/simulated/floor/wood, +/area/surface/station/library) +"jGI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/surface/station/security/detectives_office) +"jGM" = ( +/obj/structure/reagent_dispensers/beerkeg, +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/bar) +"jHl" = ( +/obj/machinery/message_server, +/obj/machinery/camera/network/command{ + c_tag = "AI - Messaging Server"; + dir = 6 + }, +/turf/simulated/floor/bluegrid, +/area/surface/station/ai/server_room) +"jIc" = ( +/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/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/crew_quarters/heads/hos) +"jIh" = ( +/obj/structure/fence/post, +/turf/simulated/floor/outdoors/mask, +/area/surface/outside/plains/station) +"jIj" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/reactor) +"jIS" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"jIZ" = ( +/obj/structure/stairs/spawner/north, +/turf/simulated/floor/tiled/dark, +/area/surface/station/hallway/secondary/groundfloor/civilian) +"jJc" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor + }, +/area/surface/station/garage) +"jJq" = ( +/obj/machinery/computer/operating{ + dir = 8 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/rnd/xenobiology) +"jJP" = ( +/obj/machinery/atmospherics/unary/heat_exchanger{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_waste) +"jLc" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/hologram/holopad, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/monofloor{ + dir = 8 + }, +/area/surface/station/engineering/workshop) +"jLB" = ( +/obj/effect/floor_decal/techfloor{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/ai/upload) +"jLC" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/engineering/gnd) +"jLM" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/l3closet/security, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/equiptment_storage/ses) +"jLN" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/machinery/camera/network/ground_floor{ + c_tag = "Ground Floor - South Hallway 1"; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/south) +"jMb" = ( +/turf/simulated/wall, +/area/surface/outpost/research/xenoarcheology/surface) +"jMj" = ( +/obj/structure/cryofeed, +/obj/effect/floor_decal/industrial/warning/cee{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/arrivals/cynosure/cryo) +"jMm" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/hand_labeler, +/obj/item/clothing/gloves/sterile/latex, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/rnd/xenobiology) +"jNq" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/sink/kitchen{ + pixel_y = 28 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + 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/effect/floor_decal/borderfloorwhite/corner, +/obj/effect/floor_decal/corner/green/bordercorner, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/rnd/xenobiology/xenoflora) +"jNt" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/dust, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor + }, +/area/surface/station/hallway/primary/groundfloor/south) +"jNy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/ward) +"jOe" = ( +/obj/machinery/camera/network/civilian{ + c_tag = "CIV - Gym"; + dir = 1 + }, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/gym) +"jOf" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 9 + }, +/obj/machinery/iv_drip, +/obj/structure/closet/secure_closet/medical_wall{ + name = "O- Blood Locker"; + pixel_x = -32 + }, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OMinus, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/etc) +"jOo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/structure/sign/warning/compressed_gas{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/engineering/atmos) +"jOp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/surface/station/crew_quarters/heads/hos) +"jOt" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/yellow/border, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/storage/primarytool) +"jOu" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/glass{ + name = "Primary Tool Storage" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/storage/primarytool) +"jPh" = ( +/obj/effect/floor_decal/techfloor/corner{ + dir = 9 + }, +/obj/effect/floor_decal/corner_techfloor_gray{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/item/weapon/banner/virgov, +/turf/simulated/floor/wood/sif, +/area/surface/station/chapel/main) +"jPo" = ( +/obj/effect/floor_decal/corner/purple, +/obj/effect/floor_decal/corner/orange/diagonal{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/reinforced/phoron, +/area/surface/station/engineering/atmos) +"jPx" = ( +/obj/structure/table/bench/steel, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 1 + }, +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 26 + }, +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 18 + }, +/obj/machinery/camera/network/research{ + c_tag = "SCI - Exploration Prep" + }, +/obj/effect/landmark/start{ + name = "Explorer" + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/rnd/exploration) +"jPE" = ( +/turf/simulated/wall, +/area/surface/station/quartermaster/lockerroom) +"jPI" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "deteast" + }, +/turf/simulated/floor/plating, +/area/surface/station/security/detectives_office/lab) +"jQa" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 8 + }, +/obj/structure/table/steel, +/obj/item/weapon/grenade/chem_grenade/cleaner{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/weapon/grenade/chem_grenade/cleaner{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/grenade/chem_grenade/cleaner, +/obj/item/weapon/storage/box/mousetraps, +/obj/item/weapon/storage/box/lights/mixed{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/box/lights/mixed{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/janitor) +"jQj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/landmark{ + name = "Observer-Start" + }, +/turf/simulated/floor/tiled, +/area/surface/station/arrivals/cynosure) +"jQl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/hydro, +/area/surface/station/hydroponics) +"jQn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/glass_centcom{ + name = "Passenger Compartment" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/exploration/general) +"jQE" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3, +/obj/structure/curtain/open/shower/security, +/obj/machinery/shower{ + dir = 8; + pixel_x = -5; + pixel_y = -1 + }, +/obj/machinery/door/window/westright{ + name = "shower" + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/restroom) +"jQJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/turf/simulated/floor/tiled, +/area/surface/station/park) +"jQM" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/structure/table/bench/padded, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/surgeryobs) +"jRb" = ( +/obj/structure/fence, +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/mask, +/area/surface/outside/plains/station) +"jRo" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/surface/station/janitor) +"jRp" = ( +/obj/effect/catwalk_plated/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/surface/station/engineering/storage) +"jRs" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/medical/etc) +"jRA" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/danger/corner{ + dir = 4 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "steel_dirty"; + initial_flooring = /decl/flooring/tiling/steel_dirty + }, +/area/surface/outside/plains/station) +"jRD" = ( +/obj/structure/closet/wardrobe/chemistry_white, +/obj/item/device/radio/headset/headset_med, +/obj/item/weapon/storage/box/pillbottles, +/obj/item/weapon/reagent_containers/spray/cleaner, +/obj/item/weapon/hand_labeler, +/obj/item/weapon/packageWrap, +/obj/effect/floor_decal/borderfloorwhite/corner, +/obj/effect/floor_decal/corner/paleblue/bordercorner, +/obj/machinery/light, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/storage/primary_storage) +"jRQ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 8 + }, +/obj/machinery/atmospherics/binary/pump{ + dir = 1; + name = "N2 to Mixing" + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"jSb" = ( +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/yellow, +/obj/item/weapon/reagent_containers/glass/bucket{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/reagent_containers/glass/bucket, +/obj/structure/table/reinforced, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/rnd/xenobiology/xenoflora_isolation) +"jSe" = ( +/obj/structure/table/glass, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/item/weapon/storage/box/gloves, +/obj/effect/floor_decal/corner/purple/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/rnd/research_lockerroom) +"jSq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/structure/table/marble, +/obj/machinery/cash_register/civilian, +/turf/simulated/floor/tiled/eris/cafe, +/area/surface/station/crew_quarters/cafeteria) +"jSx" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/hallway/primary/groundfloor/south) +"jSy" = ( +/obj/structure/table/rack{ + layer = 2.6 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/window/westright{ + name = "Suit Storage"; + req_access = list(5) + }, +/obj/item/device/suit_cooling_unit, +/obj/item/weapon/tank/oxygen, +/obj/item/clothing/mask/breath, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/medical/emt_bay) +"jSC" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/newscaster{ + pixel_y = 26 + }, +/obj/effect/landmark/start{ + name = "Librarian" + }, +/turf/simulated/floor/wood, +/area/surface/station/library) +"jSN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/station) +"jSY" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/clothing/accessory/armband/science{ + desc = "An armband, worn by the crew to display which department they're assigned to. This one is purple with the white letters TL."; + name = "explorer team leader armband" + }, +/obj/item/weapon/hand_labeler, +/obj/item/device/paicard, +/obj/item/weapon/melee/umbrella/random{ + pixel_y = -4 + }, +/obj/item/weapon/melee/umbrella/random, +/obj/effect/floor_decal/spline/plain{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/rnd/exploration) +"jTw" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/surface) +"jTH" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/vehicle/train/engine{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/quartermaster/storage) +"jTW" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/hallway/primary/groundfloor/east) +"jTX" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/north) +"jUC" = ( +/obj/machinery/airlock_sensor/airlock_exterior{ + dir = 4; + frequency = 1380; + id_tag = "arrivals_dock_south_intsensor"; + master_tag = null; + pixel_x = 1; + pixel_y = 38 + }, +/obj/effect/map_helper/airlock/sensor/ext_sensor, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "steel_dirty"; + initial_flooring = /decl/flooring/tiling/steel_dirty + }, +/area/space) +"jUQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/etc) +"jVh" = ( +/obj/structure/closet/secure_closet/hydroponics, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/surface/station/hydroponics) +"jVx" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/gnd) +"jVy" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/obj/machinery/camera/network/research_outpost{ + c_tag = "OPR - Xenoarch Surface"; + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/research/xenoarcheology/surface) +"jVA" = ( +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + 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, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/gnd) +"jWf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/east/gnd) +"jWj" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor + }, +/area/surface/outside/plains/station) +"jWB" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/green/border, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/hallway/secondary/groundfloor/civilian) +"jWC" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/storage) +"jWD" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"jWN" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/reactor) +"jWP" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/rnd/xenobiology/xenoflora) +"jXg" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/west) +"jXm" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 8 + }, +/obj/machinery/chemical_dispenser/full, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/chemistry) +"jXu" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/security/equiptment_storage/ses) +"jXw" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/hallway/primary/groundfloor/south) +"jXJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/cafeteria) +"jXQ" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/visible/green{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"jXZ" = ( +/turf/simulated/floor/plating, +/area/surface/station/maintenance/surgery) +"jYx" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/zone_divider, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/south) +"jZs" = ( +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/gnd) +"jZP" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/security/evidence_storage) +"jZV" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 9 + }, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/north/gnd) +"kal" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/floodlight, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/surgery) +"kan" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/greengrid, +/area/surface/station/ai/upload) +"kau" = ( +/obj/effect/zone_divider, +/turf/simulated/floor/water/deep/pool, +/area/surface/station/crew_quarters/pool) +"kav" = ( +/obj/structure/ladder/up, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/visible/green, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"kaD" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/maintenance{ + name = "Engineering Maintenance Access"; + req_one_access = list(11,24) + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/surface/station/engineering/hallway) +"kaG" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 8 + }, +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/garage) +"kbd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/techfloor/corner{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/item/device/radio/intercom/locked/ai_private{ + dir = 8; + pixel_x = -21 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/ai/upload) +"kbn" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/window/reinforced/polarized/full{ + id = "chapel" + }, +/turf/simulated/floor/plating, +/area/surface/station/chapel/office) +"kbA" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/xenobiology) +"kbU" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/north) +"kbW" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/glass_mining{ + name = "Delivery Office"; + req_one_access = list(50) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/quartermaster/delivery) +"kcb" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/fuel, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/handrail{ + dir = 1 + }, +/obj/machinery/meter, +/obj/item/weapon/tank/phoron, +/obj/item/weapon/tank/phoron{ + pixel_x = 2; + pixel_y = 2 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/exploration/cargo) +"kcj" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/glass{ + name = "Chapel" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/chapel/main) +"kcu" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/yellow/border, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/machinery/cell_charger, +/obj/random/powercell, +/obj/machinery/light, +/obj/machinery/camera/network/civilian{ + c_tag = "CIV - Primary Tool Storage"; + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/storage/primarytool) +"kcw" = ( +/obj/structure/table/marble, +/obj/machinery/microwave, +/obj/machinery/newscaster{ + pixel_x = 26 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/surface/station/crew_quarters/kitchen) +"kcy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 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/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/briefing_room) +"kda" = ( +/obj/structure/table/woodentable, +/obj/machinery/reagentgrinder, +/obj/item/weapon/packageWrap, +/obj/item/weapon/reagent_containers/food/drinks/shaker, +/obj/structure/sign/securearea{ + desc = "Under the painting a plaque reads: 'Pun Pun I'"; + icon_state = "monkey_painting"; + name = "Pun Pun portrait"; + pixel_y = 24 + }, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/bar) +"kdg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/glass_centcom{ + name = "Cockpit"; + req_one_access = list(43) + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/exploration/cockpit) +"kdw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/bordercorner2{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/park) +"kdH" = ( +/obj/structure/cable{ + d1 = 32; + d2 = 2; + icon_state = "32-2" + }, +/obj/machinery/atmospherics/pipe/zpipe/down/supply, +/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers, +/obj/structure/railing, +/obj/structure/lattice, +/obj/structure/disposalpipe/up, +/turf/simulated/open, +/area/surface/station/maintenance/substation/civilian) +"kdL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/purple/border, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/gnd) +"kee" = ( +/turf/simulated/floor/tiled/monotile, +/area/surface/station/hallway/primary/groundfloor/south) +"keI" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/machinery/airlock_sensor/airlock_exterior{ + dir = 8; + frequency = 1380; + id_tag = "arrivals_dock_north_intsensor"; + pixel_x = 31; + pixel_y = 24 + }, +/obj/effect/map_helper/airlock/sensor/int_sensor, +/turf/simulated/floor/tiled, +/area/surface/station/arrivals/cynosure) +"keP" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/power/sensor{ + name = "Powernet Sensor - Master Grid"; + name_tag = "Master" + }, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/surface/station/engineering/hallway/reactor) +"kfp" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 10 + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "ReactorWasteViewport01"; + layer = 3.3; + name = "Reactor Waste Viewport Shutter" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_waste) +"kfr" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"kgC" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock{ + name = "Locker Room" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/crew_quarters/locker) +"kgJ" = ( +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/solar, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "steel_dirty"; + initial_flooring = /decl/flooring/tiling/steel_dirty + }, +/area/surface/outside/station/solar/westsolar) +"kgK" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 4 + }, +/obj/machinery/meter, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "ReactorWasteHandling01"; + name = "Reactor Waste Handling Access"; + pixel_x = 24; + req_one_access = list(11,24) + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_waste) +"kgL" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/corner/orange/border, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway) +"kgP" = ( +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/north) +"kgZ" = ( +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor + }, +/area/surface/outside/plains/station) +"khd" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/machinery/portable_atmospherics/powered/scrubber, +/obj/machinery/status_display{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/foyer) +"khi" = ( +/obj/machinery/door/airlock{ + name = "Unit 2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/crew_quarters/caferestroom) +"khq" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/machinery/door/window/eastleft{ + name = "Test Chamber"; + req_one_access = list(7,29) + }, +/obj/machinery/door/window/westright{ + name = "Test Chamber"; + req_one_access = list(7,29) + }, +/obj/machinery/door/blast/regular/open{ + id = "misclab"; + layer = 3.3; + name = "Test Chamber Blast Doors" + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/rnd/misc_lab) +"khG" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"khK" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/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 = "Head of Personnel"; + req_access = list(57); + req_one_access = list() + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/crew_quarters/heads/hop) +"kip" = ( +/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/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/storage/primary_storage) +"kir" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/wingrille_spawn/reinforced, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "xenobio6"; + layer = 3.3; + name = "Containment Blast Doors" + }, +/turf/simulated/floor/plating, +/area/surface/station/rnd/xenobiology) +"kiM" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/reception) +"kiU" = ( +/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/engineering{ + name = "Main SMES Access"; + req_one_access = list(11,24) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/engineering/reactor_smes) +"kiY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics Substation" + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/maintenance/substation/atmospherics) +"kjq" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"kjw" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "englockdown"; + layer = 3.3; + name = "Engineering Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/hallway/reactor) +"kjy" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/engineering{ + name = "Medbay Substation"; + req_one_access = list(5,11,24) + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/medbay/gnd) +"kjF" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor + }, +/area/surface/outside/plains/station) +"kko" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/zone_divider, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/groundfloor/civilian) +"kkA" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/engineering/atmos) +"kkG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/reception) +"kkZ" = ( +/obj/structure/disposaloutlet{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + layer = 2.8 + }, +/turf/simulated/floor/plating, +/area/surface/station/rnd/xenobiology) +"klb" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 10 + }, +/obj/structure/railing, +/turf/simulated/floor/water/deep{ + has_fish = 0 + }, +/area/surface/outside/station/reactorpond) +"klk" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 6 + }, +/turf/simulated/floor/water/deep/pool, +/area/surface/station/crew_quarters/pool) +"klv" = ( +/obj/effect/floor_decal/corner/green/full{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/siphon/on/atmos{ + dir = 1; + frequency = 1441; + id_tag = "waste_out"; + initialize_directions = 1; + internal_pressure_bound = 4000; + internal_pressure_bound_default = 4000 + }, +/turf/simulated/floor/reinforced, +/area/surface/station/engineering/atmos) +"klL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/monofloor{ + dir = 1 + }, +/area/surface/station/park) +"klM" = ( +/obj/structure/disposalpipe/broken{ + dir = 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, +/area/surface/station/park) +"kmw" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/catwalk_plated, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/surface/station/security/hallway/gnd) +"kmM" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "steel_dirty"; + initial_flooring = /decl/flooring/tiling/steel_dirty + }, +/area/surface/outpost/research/xenoarcheology/surface) +"knh" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/bordercorner{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/east) +"knp" = ( +/obj/effect/floor_decal/corner_steel_grid, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/east) +"knS" = ( +/obj/structure/disposalpipe/segment, +/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/tiled, +/area/surface/station/hallway/primary/groundfloor/west/elevator) +"kog" = ( +/obj/machinery/optable{ + name = "Xenobiology Operating Table" + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/rnd/xenobiology) +"koV" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/green/border, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/west/elevator) +"koY" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 6 + }, +/obj/machinery/shower{ + dir = 4; + pixel_x = 5; + pixel_y = -1 + }, +/obj/structure/curtain/open/shower{ + color = "#800080" + }, +/obj/machinery/door/window/southleft, +/turf/simulated/floor/tiled/eris, +/area/surface/station/rnd/research_restroom) +"kpx" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 4 + }, +/obj/item/weapon/packageWrap, +/obj/item/weapon/tape_roll, +/obj/item/weapon/hand_labeler, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/engineering_monitoring) +"kpz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/arrivals) +"kpE" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/disposalpipe/segment, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/medical/storage/primary_storage) +"kqa" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 5 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 5 + }, +/obj/machinery/door/window/eastright{ + name = "Medical Reception"; + req_access = list(5) + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/reception) +"kqh" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/ai/server_room) +"kqm" = ( +/obj/machinery/smartfridge/drying_rack, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/green/border, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/rnd/xenobiology/xenoflora) +"kqo" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/garage) +"kqJ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"kqS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/station/arrivals/cynosure) +"krw" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ + dir = 1 + }, +/obj/structure/grille, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/station) +"krN" = ( +/turf/simulated/wall, +/area/surface/station/security/hallway/gnd) +"ksq" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/effect/wingrille_spawn/reinforced, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "xenobio5"; + layer = 3.3; + name = "Containment Blast Doors" + }, +/turf/simulated/floor/plating, +/area/surface/station/rnd/xenobiology) +"ksv" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/hallway/secondary/groundfloor/civilian) +"ksC" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/cafeteria) +"ksL" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 4 + }, +/turf/simulated/floor/tiled/hydro, +/area/surface/station/rnd/xenobiology/xenoflora) +"ksM" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/south) +"ktB" = ( +/obj/effect/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/cafeteria) +"ktI" = ( +/turf/unsimulated/mask, +/area/surface/station/engineering/hallway) +"kuP" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/structure/cable/green{ + 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 = 24 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/rnd/xenobiology/xenoflora_isolation) +"kuR" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/west/elevator) +"kvF" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/misc_lab) +"kvK" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/disposalpipe/up{ + dir = 8 + }, +/obj/effect/overlay/snow/floor, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/station) +"kvY" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway) +"kwc" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/ai/upload) +"kwo" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/mirror{ + pixel_x = 28 + }, +/obj/structure/sink{ + dir = 4; + pixel_x = 12 + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/surface/station/rnd/research_restroom) +"kwE" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/pink/border{ + dir = 8 + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/tiled/white, +/area/surface/station/security/detectives_office/lab) +"kwF" = ( +/obj/effect/floor_decal/corner/red/full, +/obj/machinery/light/small, +/turf/simulated/floor/reinforced/nitrogen, +/area/surface/station/engineering/atmos) +"kwY" = ( +/obj/machinery/computer/security/telescreen/entertainment{ + icon_state = "frame"; + pixel_y = 32 + }, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/cafeteria) +"kxd" = ( +/obj/item/device/radio/intercom{ + pixel_y = -21 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/station/crew_quarters/kitchen) +"kxI" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/crew_quarters/gym) +"kxK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 1 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/medical/emt_bay) +"kxM" = ( +/obj/structure/stairs/spawner/east, +/turf/simulated/floor/tiled/dark, +/area/surface/station/engineering/hallway) +"kyJ" = ( +/obj/structure/bed/chair/shuttle{ + dir = 1 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/shuttle/exploration/general) +"kyY" = ( +/obj/effect/floor_decal/corner_steel_grid, +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/gnd) +"kzh" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table/steel_reinforced, +/obj/item/stack/material/plasteel{ + amount = 15 + }, +/obj/item/stack/material/plasteel{ + amount = 15 + }, +/obj/item/stack/material/steel{ + amount = 50 + }, +/obj/item/stack/material/steel{ + amount = 50 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/workshop) +"kzM" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/rnd/xenobiology) +"kzS" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/west/elevator) +"kAo" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/east) +"kAv" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/engineering{ + name = "Cargo Substation"; + req_one_access = list(50) + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/cargo/gnd) +"kAK" = ( +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/medical/emt_bay) +"kAU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"kAV" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/glass_external{ + frequency = null; + icon_state = "door_locked"; + id_tag = null; + locked = 1; + name = "Internal Access" + }, +/obj/effect/map_helper/airlock/door/int_door, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/exploration/cargo) +"kAY" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "biohazard"; + layer = 3.3; + name = "Biohazard Shutter" + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/maintenance/substation/research/gnd) +"kBa" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/shutters{ + density = 0; + icon_state = "shutter0"; + id = "surgeryobs1"; + layer = 3.3; + name = "Operating Theatre Privacy Shutters"; + opacity = 0; + open_layer = 3.3 + }, +/turf/simulated/floor/plating, +/area/surface/station/medical/surgery) +"kBj" = ( +/obj/structure/sign/bigname{ + pixel_y = 32 + }, +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outside/plains/station) +"kBn" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 5 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/water/deep{ + has_fish = 0 + }, +/area/surface/outside/station/reactorpond) +"kBv" = ( +/turf/simulated/floor/reinforced/n20, +/area/surface/station/engineering/atmos) +"kCu" = ( +/obj/item/device/radio/intercom/interrogation{ + dir = 4; + pixel_x = 21 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/interrogation) +"kCz" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/computer/guestpass{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/cafeteria) +"kCC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/effect/landmark/start{ + name = "Chef" + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/surface/station/crew_quarters/kitchen) +"kCU" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/hallway/primary/groundfloor/east) +"kDr" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular{ + id = "aiuploadblast"; + name = "AI Blast Door" + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/ai/upload_foyer) +"kDt" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/storage/primarytool) +"kDz" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/surface/station/rnd/research_restroom) +"kDA" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/valve/digital, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/engineering/gnd) +"kDP" = ( +/obj/structure/table/standard, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/turf/simulated/floor/tiled/old_tile/gray, +/area/surface/station/storage/primarytool) +"kDX" = ( +/obj/machinery/button/remote/blast_door{ + dir = 1; + id = "elevator_sci2_access"; + name = "Emergency Hatch Release"; + pixel_y = -24 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/surface) +"kEk" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 10 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 10 + }, +/obj/machinery/computer/security/telescreen{ + name = "Test Chamber Monitor"; + network = list("Miscellaneous Reseach"); + pixel_y = -32 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/misc_lab) +"kEr" = ( +/obj/effect/floor_decal/techfloor{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/arrivals/cynosure) +"kEP" = ( +/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{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/hallway/primary/groundfloor/west) +"kFs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/red, +/turf/simulated/wall, +/area/surface/station/engineering/atmos) +"kFv" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 6 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/structure/catwalk, +/turf/simulated/floor/water/deep{ + has_fish = 0 + }, +/area/surface/outside/station/reactorpond) +"kFw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/blue{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/south) +"kFB" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/cafeteria) +"kFF" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"kFO" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/techfloor{ + dir = 10 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/hydroponics/garden) +"kFT" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 6 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/hallway/secondary/groundfloor/civilian) +"kGf" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -12; + pixel_y = -24 + }, +/obj/structure/cable/green, +/obj/structure/table/standard, +/obj/item/weapon/storage/toolbox/emergency, +/obj/item/clothing/suit/storage/hooded/wintercoat, +/obj/effect/floor_decal/steeldecal/steel_decals_central7, +/turf/simulated/floor/tiled/old_tile/blue, +/area/surface/station/arrivals/cynosure/cryo) +"kGi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/quartermaster/storage) +"kGK" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner2{ + dir = 10 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/workshop) +"kHe" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor + }, +/area/surface/outside/plains/station) +"kHo" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/lino, +/area/surface/station/chapel/office) +"kHv" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/airlock_sensor/airlock_interior{ + dir = 4; + id_tag = "west_solar_airlock_int_sensor"; + master_tag = "west_solar_airlock"; + pixel_x = -31; + pixel_y = 24; + req_one_access = list(11,24) + }, +/obj/effect/map_helper/airlock/sensor/int_sensor, +/obj/effect/catwalk_plated/dark, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/solars/west) +"kHQ" = ( +/obj/effect/catwalk_plated/dark, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/engineering/gnd) +"kHU" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/red/bordercorner, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/gnd) +"kIq" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1380; + id_tag = "expshuttle_docker_pump_out_external" + }, +/obj/structure/grille, +/obj/effect/map_helper/airlock/atmos/pump_out_external, +/turf/simulated/floor/plating/sif/planetuse, +/area/shuttle/exploration/cargo) +"kIH" = ( +/obj/effect/floor_decal/industrial/warning/dust/corner{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor + }, +/area/surface/station/garage) +"kIW" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 9 + }, +/turf/simulated/floor/water/pool, +/area/surface/station/crew_quarters/pool) +"kJx" = ( +/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/structure/disposalpipe/segment, +/obj/machinery/door/airlock/research{ + name = "Miscellaneous Reseach"; + req_one_access = list(7,29) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/rnd/misc_lab) +"kKf" = ( +/obj/effect/floor_decal/corner/purple/diagonal, +/obj/effect/floor_decal/corner/orange{ + dir = 4 + }, +/obj/machinery/air_sensor{ + frequency = 1441; + id_tag = "tox_sensor" + }, +/obj/machinery/camera/network/engineering{ + c_tag = "Atmos Tank - Phoron"; + dir = 9 + }, +/turf/simulated/floor/reinforced/phoron, +/area/surface/station/engineering/atmos) +"kKH" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/etc) +"kKR" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/deck/cards, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/cafeteria) +"kKX" = ( +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/machinery/light_switch{ + pixel_x = 12; + pixel_y = 24 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/grey/bordercorner{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/crew_quarters/gym) +"kLh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/hallway/primary/groundfloor/north) +"kLn" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/storage) +"kLr" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/surface/station/crew_quarters/kitchen) +"kLG" = ( +/obj/structure/table/bench/padded, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/reception) +"kMf" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/maintenance{ + name = "Security Maintenance Access"; + req_access = list(1) + }, +/turf/simulated/floor/plating, +/area/surface/station/security/processing) +"kMw" = ( +/obj/machinery/computer/operating, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/pink/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/surgery) +"kMC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/reinforced, +/area/surface/station/rnd/xenobiology) +"kMH" = ( +/turf/simulated/wall, +/area/surface/station/hallway/primary/groundfloor/west/elevator) +"kNd" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/east) +"kNK" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "detwest" + }, +/turf/simulated/floor/plating, +/area/surface/station/security/detectives_office) +"kNO" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "seclockdown"; + layer = 3.3; + name = "Security Lockdown" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/security/equiptment_storage/ses) +"kNS" = ( +/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 + }, +/turf/simulated/floor/tiled/hydro, +/area/surface/station/hydroponics) +"kOR" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/maintenance{ + name = "Hydroponics Maintenance"; + req_access = list(35) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/hydroponics) +"kOT" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/processing) +"kOV" = ( +/obj/structure/table/wooden_reinforced, +/obj/item/weapon/paper_bin, +/obj/item/weapon/pen, +/obj/item/clothing/glasses/sunglasses, +/turf/simulated/floor/carpet, +/area/surface/station/security/detectives_office) +"kPd" = ( +/turf/simulated/wall, +/area/surface/station/garage) +"kPm" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/station/park) +"kPM" = ( +/obj/item/modular_computer/console/preset/security{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -21 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/security/lobby) +"kPY" = ( +/obj/machinery/navbeacon/patrol{ + location = "PK6"; + next_patrol = "PK7" + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central6, +/obj/effect/floor_decal/steeldecal/steel_decals_central2, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/park) +"kQr" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 5 + }, +/obj/structure/table/glass, +/obj/machinery/portable_atmospherics/powered/reagent_distillery, +/obj/effect/floor_decal/corner/beige/border{ + dir = 5 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/obj/item/weapon/reagent_containers/glass/beaker/large, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/chemistry) +"kQu" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/crew_quarters/heads/hop) +"kQR" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/west) +"kRp" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/zone_divider, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/station/solar/westsolar) +"kRH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/surface/station/crew_quarters/bar) +"kRJ" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/interrogation) +"kSe" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 5 + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/obj/machinery/ai_status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/briefing_room) +"kSp" = ( +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/terminal, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/effect/catwalk_plated/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/civilian) +"kSF" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/garage) +"kUe" = ( +/obj/machinery/cryopod{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/cee{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/arrivals/cynosure/cryo) +"kUn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/surgery) +"kUQ" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 8; + icon_state = "shutter0"; + id = "surgeryobs2"; + layer = 3.3; + name = "Operating Theatre Privacy Shutters"; + opacity = 0; + open_layer = 3.3 + }, +/turf/simulated/floor/plating, +/area/surface/station/medical/surgery2) +"kVp" = ( +/obj/structure/closet/emcloset, +/obj/structure/sign/directions/ladder_up{ + dir = 8; + pixel_x = -32 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/hallway/primary/groundfloor/south) +"kVz" = ( +/turf/simulated/floor/reinforced, +/area/surface/station/rnd/misc_lab) +"kVJ" = ( +/obj/machinery/door/airlock{ + name = "Unit 2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/crew_quarters/locker) +"kVO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/lino, +/area/surface/station/security/detectives_office) +"kWC" = ( +/obj/effect/catwalk_plated, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 9 + }, +/obj/structure/table/steel, +/obj/item/stack/material/glass{ + amount = 50; + pixel_x = 2; + pixel_y = -2 + }, +/obj/item/stack/material/steel{ + amount = 50 + }, +/obj/item/clothing/gloves/black, +/obj/item/clothing/gloves/black, +/obj/item/weapon/storage/belt/utility/atmostech, +/obj/item/weapon/storage/belt/utility/atmostech, +/turf/simulated/floor/plating, +/area/surface/station/engineering/atmos) +"kWT" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass{ + name = "Hallway" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/park) +"kWW" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 9 + }, +/obj/effect/floor_decal/techfloor{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/rnd/xenobiology/xenoflora_isolation) +"kXk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/reception) +"kXl" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/surface/station/security/detectives_office) +"kXn" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/storage) +"kXu" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/wall, +/area/surface/station/maintenance/substation/medbay/gnd) +"kXC" = ( +/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/catwalk_plated, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/surface/station/hallway/primary/groundfloor/west) +"kYb" = ( +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "englockdown"; + layer = 3.3; + name = "Engineering Lockdown" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/engineering/gnd) +"kYh" = ( +/obj/structure/table/steel, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/garage) +"kYl" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"kYu" = ( +/obj/structure/table/rack, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/button/windowtint{ + dir = 1; + id = "library_window_tint"; + pixel_x = 12; + pixel_y = 23 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 21 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/obj/item/weapon/storage/briefcase{ + pixel_y = 6 + }, +/obj/item/weapon/storage/briefcase, +/obj/item/clothing/under/suit_jacket/red, +/turf/simulated/floor/wood, +/area/surface/station/library) +"kYA" = ( +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "seclockdown"; + layer = 3.3; + name = "Security Lockdown" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/surface/station/security/hallway/gnd) +"kZe" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/atmospherics/pipe/manifold/hidden, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/solars/northeast) +"kZr" = ( +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/green/border, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/rnd/xenobiology/xenoflora_isolation) +"lag" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/outpost/research/xenoarcheology/surface) +"laO" = ( +/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/border_only, +/obj/machinery/door/airlock/glass_security{ + id_tag = null; + name = "Security Lobby"; + req_access = list(63); + req_one_access = list() + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/security/lobby) +"lbL" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/obj/structure/disposalpipe/trunk, +/obj/machinery/disposal, +/turf/simulated/floor/tiled/freezer, +/area/surface/station/crew_quarters/pool) +"lbR" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/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/effect/zone_divider, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/groundfloor/civilian) +"lcr" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold4w/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 + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 4; + name = "Chemistry"; + sortType = "Chemistry" + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/etc) +"lcA" = ( +/obj/machinery/door/blast/regular/open{ + id = "medbayquar"; + layer = 3.3; + name = "Medbay Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/medical/etc) +"lda" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/surgery) +"ldm" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/east) +"ldo" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/obj/structure/table/glass, +/turf/simulated/floor/tiled/freezer, +/area/surface/station/crew_quarters/pool) +"ldy" = ( +/obj/machinery/iv_drip, +/obj/effect/floor_decal/corner/pink/full{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/medical/etc) +"ldA" = ( +/obj/effect/floor_decal/techfloor{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1379; + id_tag = "eng_ew2_airlock_pump" + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/structure/sign/warning/cold{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/maintenance/east/gnd) +"len" = ( +/obj/structure/extinguisher_cabinet{ + dir = 8; + pixel_x = -30 + }, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/cafeteria) +"lex" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/east) +"leJ" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/engineering/atmos) +"leS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 4 + }, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/surgery) +"leZ" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = 30 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/engineering/storage) +"lfk" = ( +/obj/machinery/door/firedoor/border_only, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/border, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/rnd/hallway/gnd) +"lfF" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/east/gnd) +"lfN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/wood/sif, +/area/surface/station/chapel/main) +"lfO" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/surface/station/crew_quarters/locker) +"lgu" = ( +/obj/effect/zone_divider, +/turf/simulated/wall/r_wall, +/area/surface/station/engineering/reactor_room) +"lgz" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/engineeringatmos{ + name = "Reactor Waste Handling"; + req_one_access = list(10,24) + }, +/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" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/engineering/reactor_waste) +"lgG" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/gnd) +"lgK" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 5 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/structure/flora/pottedplant/subterranean, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/foyer) +"lhB" = ( +/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, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/station/solar/westsolar) +"lhN" = ( +/obj/effect/floor_decal/corner/pink/full{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/medical/etc) +"lhQ" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/machinery/portable_atmospherics/powered/scrubber, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/foyer) +"lhT" = ( +/obj/structure/railing, +/obj/machinery/conveyor{ + dir = 8; + id = "packageSort1" + }, +/turf/simulated/floor/plating, +/area/surface/station/quartermaster/delivery) +"lhX" = ( +/obj/machinery/camera/network/civilian{ + c_tag = "CIV - Chapel"; + dir = 6 + }, +/turf/simulated/floor/wood/sif, +/area/surface/station/chapel/main) +"lip" = ( +/obj/machinery/computer/cloning{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/purple/border, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/cloning) +"liB" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/gnd) +"liP" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 4 + }, +/obj/structure/mopbucket, +/obj/item/weapon/mop, +/obj/item/weapon/reagent_containers/glass/bucket, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/janitor) +"ljP" = ( +/obj/structure/sign/warning/secure_area, +/turf/simulated/wall/r_wall, +/area/surface/station/security/lobby) +"ljV" = ( +/obj/structure/railing, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/open, +/area/surface/station/rnd/hallway/stairwell) +"lkm" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 6 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/water/deep{ + has_fish = 0 + }, +/area/surface/outside/station/reactorpond) +"lkn" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/gnd) +"lkA" = ( +/obj/structure/curtain/open/shower, +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 6 + }, +/obj/machinery/shower{ + dir = 8; + pixel_x = -5; + pixel_y = -1 + }, +/turf/simulated/floor/tiled/eris, +/area/surface/station/crew_quarters/locker) +"lkG" = ( +/obj/structure/closet/crate/freezer, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/effect/zone_divider, +/turf/simulated/floor/tiled/freezer, +/area/surface/station/crew_quarters/kitchen) +"lkL" = ( +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" + }, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/surface/station/quartermaster/delivery) +"llb" = ( +/obj/structure/closet/secure_closet/explorer, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/device/binoculars, +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/tiled/dark, +/area/surface/station/rnd/exploration) +"lls" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 5 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/water/deep{ + has_fish = 0 + }, +/area/surface/outside/station/reactorpond) +"lmq" = ( +/obj/structure/bookcase, +/turf/simulated/floor/wood, +/area/surface/station/library) +"lmE" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + id = "biohazard"; + layer = 3.3; + name = "Biohazard Shutter" + }, +/obj/machinery/ai_status_display, +/turf/simulated/floor/plating, +/area/surface/station/rnd/xenobiology/xenoflora_isolation) +"lmX" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/surface/station/ai/upload_foyer) +"lnm" = ( +/obj/machinery/cryopod, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/arrivals/cynosure/cryo) +"lnM" = ( +/obj/machinery/shieldwallgen, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/engineering/storage) +"lnP" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 4 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/water/deep{ + has_fish = 0 + }, +/area/surface/outside/station/reactorpond) +"lnS" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/turf/simulated/floor/tiled, +/area/surface/station/security/briefing_room) +"lpm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/green/border, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/groundfloor/civilian) +"lpT" = ( +/obj/machinery/atmospherics/valve/open, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/airlock_sensor/airlock_interior{ + id_tag = "eng_al_int_snsr"; + master_tag = "engine_room_airlock"; + pixel_x = -22; + req_access = list(10) + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"lpV" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "seclockdown"; + layer = 3.3; + name = "Security Lockdown" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/security/briefing_room) +"lpY" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/turf/simulated/floor/tiled/white, +/area/surface/station/crew_quarters/locker) +"lqc" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/xenobiology) +"lqE" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"lqW" = ( +/obj/machinery/atmospherics/binary/passive_gate{ + dir = 1; + icon_state = "on"; + unlocked = 1 + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/hallway/primary/groundfloor/north) +"lrn" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/paper_bin, +/obj/item/weapon/folder/yellow, +/obj/item/weapon/pen, +/obj/item/weapon/pen/blue{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/weapon/pen/red{ + pixel_x = 3; + pixel_y = 3 + }, +/turf/simulated/floor/wood, +/area/surface/station/library) +"lrq" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/glass_security{ + name = "Secondary Equipment Storage" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/security/equiptment_storage/ses) +"lrA" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/obj/machinery/door/airlock/engineering{ + name = "Northeast Solar Access"; + req_one_access = list(11,24) + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/solars/northeast) +"lrX" = ( +/obj/machinery/door/blast/regular{ + id = "garage"; + name = "Garage Access" + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/garage) +"lrZ" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/shield_capacitor{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/engineering/storage) +"lsh" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/weapon/reagent_containers/spray/pepper{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/weapon/reagent_containers/spray/pepper, +/obj/item/weapon/reagent_containers/spray/pepper{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/machinery/door/window/northright, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/equiptment_storage/ses) +"lsu" = ( +/turf/simulated/floor/tiled/dark, +/area/surface/station/engineering/hallway) +"lsJ" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 4 + }, +/turf/simulated/floor/water/deep{ + has_fish = 0 + }, +/area/surface/outside/station/reactorpond) +"lsP" = ( +/turf/simulated/floor/reinforced, +/area/surface/station/rnd/xenobiology) +"lsR" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "northeast_solar_inner"; + locked = 1; + name = "Solar Internal Access" + }, +/obj/machinery/access_button/airlock_interior{ + dir = 8; + master_tag = "northeast_solar_airlock"; + pixel_y = -35; + req_one_access = list(11,24) + }, +/obj/effect/map_helper/airlock/door/int_door, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/solars/northeast) +"ltg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/cloning) +"ltl" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/south) +"ltu" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/chemistry) +"ltz" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/spline/plain, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood/sif, +/area/surface/station/chapel/main) +"ltA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/surface/station/engineering/atmos) +"luk" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/catwalk_plated/dark, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/kitchen) +"luo" = ( +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/floor_decal/techfloor/hole/right{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/ai/upload) +"lux" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/garage) +"luz" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + id = "atmoslockdown"; + layer = 3.3; + name = "Atmospherics Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/atmos) +"lvt" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"lvL" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/north/gnd) +"lvN" = ( +/obj/structure/table/bench/wooden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 5 + }, +/turf/simulated/floor/wood/sif, +/area/surface/station/chapel/main) +"lwt" = ( +/obj/machinery/body_scanconsole, +/obj/effect/floor_decal/corner/pink/full{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/medical/etc) +"lwu" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_waste) +"lwH" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/etc) +"lwM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/ai/server_room) +"lxf" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/purple/border, +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/gnd) +"lxx" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"lxE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/station/park) +"lxR" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod{ + frequency = 1380; + id_tag = "large_escape_pod_1"; + pixel_x = -26; + pixel_y = -26; + tag_door = "large_escape_pod_1_hatch" + }, +/turf/simulated/shuttle/floor, +/area/shuttle/large_escape_pod1/station) +"lyg" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/hallway/gnd) +"lyE" = ( +/obj/machinery/power/breakerbox/activated{ + RCon_tag = "Security Substation Bypass" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/security/gnd) +"lyK" = ( +/turf/simulated/floor/tiled/dark, +/area/surface/station/security/hallway/gnd) +"lyT" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "atmoslockdown"; + layer = 3.3; + name = "Atmospherics Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/atmos) +"lze" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/garage) +"lzq" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/turf/simulated/floor/tiled/freezer, +/area/surface/station/crew_quarters/pool) +"lzy" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/manifold/hidden, +/obj/machinery/door/airlock/glass_external{ + frequency = 1380; + icon_state = "door_locked"; + id_tag = "arrivals_dock_north_inner"; + locked = 1; + name = "Internal Access" + }, +/obj/effect/map_helper/airlock/door/int_door, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/arrivals/cynosure/nopower) +"lzA" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/obj/machinery/door/airlock/glass_external{ + frequency = 1380; + icon_state = "door_locked"; + id_tag = "escape_dock_south_starboard_inner"; + locked = 1; + name = "Internal Access" + }, +/obj/effect/map_helper/airlock/door/int_door, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/arrivals/cynosure) +"lzD" = ( +/obj/structure/sink/kitchen{ + pixel_y = 28 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 1 + }, +/obj/item/weapon/stool/padded{ + dir = 8 + }, +/turf/simulated/floor/tiled/hydro, +/area/surface/station/hydroponics) +"lzL" = ( +/obj/effect/floor_decal/industrial/warning/dust, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor + }, +/area/surface/outside/plains/station) +"lAd" = ( +/obj/machinery/newscaster{ + pixel_y = -28 + }, +/turf/simulated/floor/lino, +/area/surface/station/chapel/office) +"lAU" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/black, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_waste) +"lBh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/blue{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/kitchen) +"lBm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/surface/station/hallway/primary/groundfloor/south) +"lBp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/bar) +"lBC" = ( +/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, +/turf/simulated/floor/tiled/monofloor{ + dir = 4 + }, +/area/surface/station/engineering/hallway/reactor) +"lBN" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/cloning) +"lBP" = ( +/turf/simulated/floor/tiled, +/area/surface/station/engineering/foyer) +"lBQ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/binary/passive_gate{ + icon_state = "on"; + unlocked = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/solars/west) +"lCa" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock/glass{ + name = "Pool" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/crew_quarters/pool) +"lCv" = ( +/obj/structure/flora/pottedplant/minitree, +/turf/simulated/floor/wood/sif, +/area/surface/station/chapel/main) +"lCH" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/rnd/xenobiology/xenoflora_isolation) +"lCL" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/east/gnd) +"lDm" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 1 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/rnd/xenobiology/xenoflora_isolation) +"lDr" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/machinery/computer/security/telescreen{ + name = "Observation Screen"; + network = list("Interrogation"); + pixel_x = -32 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/interrogation) +"lDN" = ( +/obj/structure/frame{ + anchored = 1 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/workshop) +"lEt" = ( +/turf/simulated/floor/plating, +/area/surface/station/maintenance/atmos) +"lEH" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/reactor) +"lFu" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/crew_quarters/gym) +"lFz" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/glass{ + name = "Hallway" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/sign/directions/security{ + dir = 5; + pixel_x = -32; + pixel_y = 6 + }, +/obj/structure/sign/directions/engineering{ + dir = 5; + pixel_x = -32 + }, +/obj/structure/sign/directions/medical{ + dir = 5; + pixel_x = -32; + pixel_y = -6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/hallway/primary/groundfloor/south) +"lFD" = ( +/obj/effect/floor_decal/borderfloorblack/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/security/interrogation) +"lFZ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 8 + }, +/obj/machinery/atmospherics/binary/pump{ + dir = 1; + name = "O2 to Mixing" + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"lGd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/camera/network/civilian{ + c_tag = "CIV - Hydroponics"; + dir = 5 + }, +/turf/simulated/floor/tiled/hydro, +/area/surface/station/hydroponics) +"lGt" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 6 + }, +/obj/structure/railing, +/turf/simulated/floor/water/deep{ + has_fish = 0 + }, +/area/surface/outside/station/reactorpond) +"lGu" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/north) +"lGV" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/catwalk_plated, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/surface/station/engineering/hallway) +"lHe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/portable_atmospherics/hydroponics/soil, +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/grass, +/area/surface/station/hydroponics/garden) +"lHj" = ( +/obj/effect/floor_decal/techfloor{ + dir = 9 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/machinery/light_switch{ + pixel_x = 12; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/floor_decal/techfloor/hole{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor/corner{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/medical/emt_bay) +"lHX" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway) +"lIs" = ( +/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{ + dir = 4; + pixel_x = -24; + pixel_y = 12 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/lobby) +"lIJ" = ( +/obj/machinery/computer/aifixer{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/bluegrid, +/area/surface/station/ai/cyborg_station) +"lIW" = ( +/obj/structure/cable/green{ + 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/yellow{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/gnd) +"lJF" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/maintenance/surgery) +"lJN" = ( +/obj/machinery/camera/network/engineering{ + c_tag = "ENG - Engineering Stairwell Middle" + }, +/obj/structure/sign/warning/high_voltage{ + pixel_y = 32 + }, +/turf/simulated/open, +/area/surface/station/engineering/hallway) +"lJQ" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/disposalpipe/segment, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/storage/primarytool) +"lKB" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/bordercorner{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/hallway/secondary/groundfloor/civilian) +"lKU" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 8 + }, +/obj/effect/floor_decal/corner_techfloor_gray{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/hallway/primary/groundfloor/west) +"lLe" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/techfloor{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/engineering/reactor_airlock) +"lLx" = ( +/obj/machinery/oxygen_pump/mobile/anesthetic, +/obj/structure/cable/green, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24; + pixel_y = -12 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 4 + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/surface/station/medical/surgery_storage) +"lLA" = ( +/obj/structure/cable/cyan{ + d1 = 16; + d2 = 0; + icon_state = "16-0" + }, +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers, +/obj/machinery/atmospherics/pipe/zpipe/up/supply, +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/plating, +/area/surface/station/ai/upload) +"lLE" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/machinery/status_display/supply_display, +/turf/simulated/floor/plating, +/area/surface/station/quartermaster/lockerroom) +"lLM" = ( +/obj/machinery/light/small, +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/security/restroom) +"lLN" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/xenobiology) +"lLX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/security{ + name = "Interrogation"; + req_one_access = list(2,4) + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/security/interrogation) +"lMe" = ( +/obj/machinery/blackbox_recorder, +/turf/simulated/floor/bluegrid, +/area/surface/station/ai/server_room) +"lMg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/shuttle/exploration/general) +"lMj" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/machinery/power/sensor{ + name = "Powernet Sensor - Engineering Subgrid"; + name_tag = "Engineering Subgrid" + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/engineering/gnd) +"lMv" = ( +/obj/structure/stairs/spawner/east, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/east) +"lNd" = ( +/obj/structure/table/rack{ + layer = 2.6 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/window/westright{ + name = "Suit Storage"; + req_access = list(5) + }, +/obj/item/weapon/rig/medical/equipped, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/medical/emt_bay) +"lNI" = ( +/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 + }, +/obj/structure/extinguisher_cabinet{ + dir = 1; + pixel_y = 30 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/janitor) +"lNR" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/turf/simulated/floor/tiled/hydro, +/area/surface/station/rnd/xenobiology/xenoflora_isolation) +"lOW" = ( +/obj/structure/ladder, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "steel_dirty"; + initial_flooring = /decl/flooring/tiling/steel_dirty + }, +/area/surface/outside/plains/station) +"lPl" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 12 + }, +/obj/structure/mirror{ + pixel_x = 28 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/crew_quarters/caferestroom) +"lPp" = ( +/obj/machinery/door/airlock{ + name = "Unit 1" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/crew_quarters/locker) +"lPO" = ( +/turf/simulated/floor/tiled/dark, +/area/surface/station/hallway/primary/groundfloor/west/elevator) +"lQf" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "crglockdown"; + layer = 3.3; + name = "Cargo Lockdown" + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/maintenance/substation/cargo/gnd) +"lQi" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway) +"lQo" = ( +/obj/structure/table/standard, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -21 + }, +/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/item/device/flashlight/lamp, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/processing) +"lQz" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/surface/station/security/briefing_room) +"lQC" = ( +/obj/machinery/atmospherics/valve/shutoff{ + name = "Security automatic shutoff valve" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/east/gnd) +"lQK" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/engineering{ + name = "Engineering Substation"; + req_one_access = list(11,24) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/engineering/gnd) +"lQO" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/ai/upload_foyer) +"lQT" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/hallway/primary/groundfloor/east) +"lQW" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 8 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/engineering_monitoring) +"lRd" = ( +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/red/bordercorner, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 21 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/east) +"lRE" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/machinery/ai_status_display{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/range) +"lRO" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/lockerroom) +"lSb" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 5 + }, +/turf/simulated/floor/water/pool, +/area/surface/station/crew_quarters/pool) +"lSf" = ( +/obj/structure/table/wooden_reinforced, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/item/device/flashlight/lamp, +/turf/simulated/floor/lino, +/area/surface/station/chapel/office) +"lSV" = ( +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/range) +"lSY" = ( +/obj/machinery/shieldwallgen, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/engineering/storage) +"lTz" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/zone_divider, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/groundfloor/civilian) +"lUt" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/machinery/photocopier, +/obj/structure/disposalpipe/segment, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 21 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/briefing_room) +"lUv" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/janitor) +"lUw" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner{ + dir = 1 + }, +/obj/machinery/computer/guestpass{ + dir = 4; + pixel_x = -24 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/foyer) +"lUz" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/shuttle/exploration/cockpit) +"lUL" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/rnd/xenobiology/xenoflora_isolation) +"lUS" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor + }, +/area/surface/outside/plains/station) +"lVq" = ( +/obj/machinery/smartfridge/secure/medbay, +/turf/simulated/wall, +/area/surface/station/medical/storage/primary_storage) +"lVt" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/pink/border{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/status_display{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/surgery) +"lVz" = ( +/obj/effect/floor_decal/techfloor{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4; + frequency = 1379; + id_tag = "mnorth_airlock_pump" + }, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + dir = 4; + id_tag = "mnorth_airlock"; + pixel_x = -24 + }, +/obj/machinery/airlock_sensor{ + dir = 4; + id_tag = "mnorth_airlock_sensor"; + pixel_x = -25; + pixel_y = -11 + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/hallway/primary/groundfloor/north) +"lVJ" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/surgery) +"lVK" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 6 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 6 + }, +/obj/structure/morgue{ + dir = 1 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/cloning) +"lWe" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"lWk" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/security/briefing_room) +"lWm" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/bordercorner{ + dir = 8 + }, +/obj/structure/sign/directions/cargo{ + dir = 8; + pixel_x = 32; + pixel_y = -26 + }, +/obj/structure/sign/directions/science{ + dir = 8; + pixel_x = 32; + pixel_y = -32 + }, +/obj/structure/sign/directions/elevator{ + dir = 8; + pixel_x = 32; + pixel_y = -38 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/west) +"lWt" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/east/gnd) +"lWA" = ( +/turf/simulated/wall, +/area/surface/station/library) +"lXA" = ( +/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/item/device/radio/beacon, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/hallway/primary/groundfloor/west) +"lXO" = ( +/turf/simulated/wall, +/area/surface/station/engineering/hallway) +"lYk" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/surface/station/library) +"lYs" = ( +/obj/effect/floor_decal/borderfloorblack/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/bordercorner{ + dir = 4 + }, +/obj/machinery/light_switch{ + pixel_x = 12; + pixel_y = 24 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/security/interrogation) +"lYz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/effect/catwalk_plated/dark, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/plating, +/area/surface/station/medical/etc) +"lYI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/reactor) +"lYJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -12; + pixel_y = -24 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/green/border, +/obj/effect/floor_decal/steeldecal/steel_decals_central7, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/groundfloor/civilian) +"lZf" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/reactor) +"lZh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/glass_security{ + name = "Firing Range" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/security/range) +"lZm" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/kitchen) +"lZp" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/processing) +"lZB" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/arrivals/cynosure) +"lZH" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 9 + }, +/obj/structure/closet/jcloset, +/obj/item/weapon/soap/nanotrasen, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/janitor) +"lZI" = ( +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/ai/upload_foyer) +"lZO" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 5 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/security/interrogation) +"mab" = ( +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -21 + }, +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/surface/station/library) +"mae" = ( +/turf/simulated/floor/reinforced/carbon_dioxide, +/area/surface/station/engineering/atmos) +"mam" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/east/gnd) +"maC" = ( +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -12; + pixel_y = -24 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7, +/obj/machinery/recharger/wallcharger{ + pixel_x = 32 + }, +/obj/structure/table/steel_reinforced, +/obj/item/ammo_magazine/s45/practice, +/obj/item/ammo_magazine/s45/practice, +/obj/item/ammo_magazine/s45/practice, +/obj/item/ammo_magazine/m45/practice, +/obj/item/ammo_magazine/m45/practice, +/obj/item/ammo_magazine/m45/practice, +/obj/item/ammo_magazine/m45/practice, +/obj/item/ammo_magazine/m45/practice, +/obj/item/ammo_magazine/m45/practice, +/obj/item/ammo_magazine/m9mmt/practice, +/obj/item/ammo_magazine/m9mmt/practice, +/obj/item/ammo_magazine/m9mmt/practice, +/obj/item/ammo_magazine/m9mmt/practice, +/obj/item/weapon/storage/box/blanks/large, +/obj/item/weapon/storage/box/blanks/large, +/turf/simulated/floor/tiled, +/area/surface/station/security/range) +"maD" = ( +/obj/structure/closet, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/security/evidence_storage) +"maU" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/zone_divider, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_airlock) +"mbv" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/green/border, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/garage) +"mbD" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/camera/network/command{ + c_tag = "AI - Upload West"; + dir = 8 + }, +/obj/machinery/computer/aiupload{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/ai/upload) +"mbR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 6 + }, +/obj/structure/shuttle/engine/heater, +/turf/simulated/wall/rshull, +/area/shuttle/exploration/cargo) +"mcl" = ( +/obj/structure/disposalpipe/trunk, +/obj/machinery/disposal, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/obj/effect/floor_decal/rust/steel_decals_rusted2{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/delivery) +"mct" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/cafeteria) +"mcL" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/bluegrid, +/area/surface/station/ai/cyborg_station) +"mcO" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled, +/area/surface/station/arrivals/cynosure) +"mcT" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/gnd) +"mdx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/foyer) +"mdC" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/surgery) +"mdG" = ( +/obj/structure/sign/warning/high_voltage, +/turf/simulated/wall, +/area/surface/station/maintenance/substation/civilian) +"meb" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/structure/sign/directions/medical{ + dir = 4; + pixel_x = 32; + pixel_y = 26 + }, +/obj/structure/sign/directions/engineering{ + dir = 4; + pixel_x = 32; + pixel_y = 32 + }, +/obj/structure/sign/directions/security{ + dir = 4; + pixel_x = 32; + pixel_y = 38 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/west/elevator) +"meg" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner{ + dir = 1 + }, +/obj/structure/sign/directions/medical/operating_1{ + dir = 1; + pixel_y = 26 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/ward) +"meH" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 5 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 5 + }, +/obj/structure/closet/crate/medical, +/obj/random/contraband, +/obj/random/contraband, +/obj/random/maintenance/medical, +/obj/random/maintenance/medical, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/cloning) +"mfj" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/zone_divider, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/south) +"mfm" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/engineering/atmos) +"mge" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/chemistry) +"mgk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/effect/landmark/start{ + name = "Librarian" + }, +/turf/simulated/floor/wood, +/area/surface/station/library) +"mgA" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 9 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/xenobiology) +"mgC" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/maintenance/substation/arrivals) +"mgM" = ( +/obj/item/modular_computer/console/preset/security{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/surface/station/security/detectives_office) +"mgR" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/arrivals/cynosure) +"mhn" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/weapon/stool/padded, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/cafeteria) +"mhz" = ( +/obj/machinery/power/tracker, +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/station/solar/northeastsolar) +"miy" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/item/weapon/paper{ + info = "The big blue box recently installed in here is a 'grid checker' which will shut off the power if a dangerous power spike from the engine erupts into the powernet. Shutting everything down protects everything from electrical damage, however the outages can be disruptive to colony operations, so it is designed to restore power after a somewhat significant delay, up to ten minutes or so. The grid checker can be manually hacked in order to end the outage sooner. To do that, you must cut three specific wires which do not cause a red light to shine, then pulse a fourth wire. Electrical protection is highly recommended when doing maintenance on the grid checker."; + name = "grid checker info" + }, +/obj/machinery/light_switch{ + pixel_x = 12; + pixel_y = 24 + }, +/obj/structure/table/steel, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/engineering/gnd) +"miB" = ( +/obj/effect/zone_divider, +/turf/simulated/floor/reinforced/airmix, +/area/surface/station/engineering/atmos) +"miC" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1; + frequency = 1379; + id_tag = "west_solar_pump" + }, +/obj/effect/floor_decal/industrial/warning/cee{ + dir = 4 + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/structure/sign/warning/cold{ + layer = 3.3; + pixel_y = 32 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/solars/west) +"miM" = ( +/obj/machinery/newscaster{ + pixel_x = 28 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/hallway/primary/groundfloor/east) +"miV" = ( +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24; + pixel_y = -12 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 4 + }, +/obj/structure/table/standard, +/obj/item/tabloid, +/obj/item/weapon/deskbell, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/foyer) +"miX" = ( +/obj/structure/sign/redcross{ + desc = "The Star of Life, a symbol of Medical Aid."; + icon_state = "lifestar" + }, +/turf/simulated/wall/r_wall, +/area/surface/station/medical/chemistry) +"mje" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/purple/border, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/organ_printer/flesh/full, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/cloning) +"mjM" = ( +/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/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/station/solar/westsolar) +"mjO" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 4 + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/surface/station/garage) +"mjQ" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/rnd/research_restroom) +"mjW" = ( +/turf/simulated/floor/wood, +/area/surface/station/library) +"mka" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + frequency = 1379; + id_tag = "northeast_solar_pump" + }, +/obj/effect/floor_decal/industrial/warning/cee{ + dir = 8 + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/structure/sign/warning/cold{ + layer = 3.3; + pixel_y = 32 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/solars/northeast) +"mle" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/storage/primary_storage) +"mlg" = ( +/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/maintenance{ + name = "Security Maintenance Access"; + req_access = list(1) + }, +/turf/simulated/floor/plating, +/area/surface/station/security/hallway/gnd) +"mlo" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/storage) +"mmg" = ( +/obj/structure/table/marble, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/item/weapon/reagent_containers/food/condiment/small/sugar, +/obj/item/weapon/storage/box/glasses/coffeemug, +/obj/item/weapon/storage/box/glasses/coffeecup{ + pixel_x = 2; + pixel_y = 2 + }, +/turf/simulated/floor/lino, +/area/surface/station/crew_quarters/bar) +"mmZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/lino, +/area/surface/station/security/detectives_office) +"mnp" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/north) +"mny" = ( +/obj/structure/bed/chair/wood{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Assistant" + }, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/cafeteria) +"mnD" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -24; + pixel_y = 12 + }, +/obj/structure/cable/green, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 1 + }, +/obj/structure/table/glass, +/obj/item/weapon/storage/box/gloves{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/box/masks, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/medical/hallway/gnd) +"mnJ" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"mnX" = ( +/obj/machinery/light/spot{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"mnY" = ( +/obj/machinery/power/breakerbox/activated{ + RCon_tag = "Medical Substation Bypass" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/medbay/gnd) +"moa" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/item/device/radio/intercom{ + pixel_y = -21 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/gnd) +"mos" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "packageSort1" + }, +/obj/random/junk, +/obj/random/junk, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/surface/station/quartermaster/delivery) +"moA" = ( +/obj/machinery/portable_atmospherics/canister/empty, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/engineering/atmos) +"moD" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/storage) +"moL" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/east) +"moM" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock{ + name = "Shower" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/crew_quarters/locker) +"mpy" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/structure/dogbed, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/mob/living/simple_mob/animal/passive/dog/corgi/Ian, +/turf/simulated/floor/tiled, +/area/surface/station/crew_quarters/heads/hop) +"mpN" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 1 + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -24; + pixel_y = 12 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/mirror{ + pixel_y = 32 + }, +/obj/structure/sink{ + pixel_y = 17 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/security/restroom) +"mqb" = ( +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/machinery/light_switch{ + pixel_x = 12; + pixel_y = 24 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/crew_quarters/caferestroom) +"mqd" = ( +/obj/structure/bed/chair, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/lobby) +"mqh" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/crew_quarters/locker) +"mqv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/obj/machinery/camera/network/ground_floor{ + c_tag = "Ground Floor - West Stairwell"; + dir = 9 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/sign/directions/ladderwell{ + dir = 1; + pixel_x = -32; + pixel_y = 26 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/west/elevator) +"mqA" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/park) +"mqH" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "mnorth_airlock_inner"; + locked = 1; + name = "Internal Access" + }, +/obj/effect/map_helper/airlock/door/int_door, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/hallway/primary/groundfloor/north) +"mrh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/green/bordercorner, +/turf/simulated/floor/tiled, +/area/surface/station/park) +"mrO" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/solars/west) +"msl" = ( +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/door/blast/regular/open{ + dir = 2; + id = "xenobio1"; + layer = 3.3; + name = "Containment Blast Doors" + }, +/obj/machinery/door/window/brigdoor/westleft{ + name = "Containment Pen"; + req_access = list(47) + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/rnd/xenobiology) +"msu" = ( +/obj/effect/floor_decal/corner_steel_grid{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central4{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/camera/network/cargo{ + c_tag = "CRG - Cargo Locker Room"; + dir = 9 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/quartermaster/lockerroom) +"msM" = ( +/turf/simulated/floor/tiled/eris/cafe, +/area/surface/station/crew_quarters/kitchen) +"msW" = ( +/obj/structure/sign/directions/security/forensics/alt{ + dir = 1; + pixel_y = -6 + }, +/turf/simulated/wall, +/area/surface/station/security/detectives_office/lab) +"msX" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/storage/primary_storage) +"msY" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/border_only, +/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/station/hallway/primary/groundfloor/east) +"mtC" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/industrial/danger, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/garage) +"mtG" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/iv_drip, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/etc) +"mtL" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 4 + }, +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/garage) +"mtU" = ( +/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{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/kitchen) +"mtW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/park) +"muj" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/effect/catwalk_plated/dark, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/east/gnd) +"muC" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/tiled/dark, +/area/surface/station/engineering/workshop) +"muD" = ( +/obj/structure/table/reinforced, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/window/brigdoor/southleft, +/turf/simulated/floor/tiled/dark, +/area/surface/station/security/lobby) +"muO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/security/restroom) +"mvA" = ( +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/industrial/hatch/yellow, +/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/open{ + dir = 4; + id = "xenobio5"; + layer = 3.3; + name = "Containment Blast Doors" + }, +/obj/machinery/door/window/brigdoor/northleft{ + name = "Containment Pen"; + req_access = list(47) + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/rnd/xenobiology) +"mvE" = ( +/turf/simulated/floor/tiled/dark, +/area/surface/station/hallway/secondary/groundfloor/civilian) +"mvP" = ( +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/rnd/exploration) +"mwl" = ( +/obj/effect/floor_decal/techfloor/corner{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/ai/upload) +"mxf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/etc) +"mxw" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 9 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/water/deep{ + has_fish = 0 + }, +/area/surface/outside/station/reactorpond) +"mxB" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/storage/primary_storage) +"mxK" = ( +/obj/structure/sign/directions/science/toxins{ + dir = 8; + icon_state = "direction_toxins" + }, +/obj/structure/sign/directions/science/xenoarch{ + dir = 8; + pixel_y = 6 + }, +/obj/structure/sign/directions/stairs_down{ + dir = 8; + pixel_y = -6 + }, +/turf/simulated/wall, +/area/surface/station/rnd/hallway/stairwell) +"mxT" = ( +/obj/effect/zone_divider, +/turf/simulated/floor/reinforced/oxygen, +/area/surface/station/engineering/atmos) +"myf" = ( +/obj/machinery/ai_status_display, +/turf/simulated/wall, +/area/surface/station/library) +"myn" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/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/effect/zone_divider, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/groundfloor/civilian) +"myD" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/storage) +"myN" = ( +/turf/simulated/wall, +/area/surface/station/medical/storage/primary_storage) +"mzq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/door/blast/regular/open{ + id = "medbayquar"; + layer = 3.3; + name = "Medbay Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/medbay/gnd) +"mzr" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/xenobiology) +"mzQ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/north) +"mzT" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/machinery/atmospherics/binary/pump{ + dir = 8; + name = "Filters to Waste" + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"mzU" = ( +/obj/effect/floor_decal/techfloor{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1379; + id_tag = "mnorth_airlock_pump" + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 21 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/hallway/primary/groundfloor/north) +"mAl" = ( +/obj/structure/sign/directions/medical/virology{ + dir = 1 + }, +/obj/structure/sign/directions/stairs_up{ + dir = 1; + pixel_y = -6 + }, +/turf/simulated/wall, +/area/surface/station/medical/etc) +"mAq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/purple/border, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/gnd) +"mAt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/chapel) +"mAD" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/external{ + frequency = 1380; + icon_state = "door_locked"; + id_tag = "arrivals_dock_north_outer"; + locked = 1; + name = "External Access" + }, +/obj/effect/map_helper/airlock/door/ext_door, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/arrivals/cynosure/nopower) +"mAO" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/surface/station/hallway/primary/groundfloor/north) +"mAR" = ( +/obj/structure/closet/secure_closet/hydroponics/sci, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/rnd/xenobiology/xenoflora) +"mBh" = ( +/obj/structure/disposalpipe/sortjunction/untagged{ + dir = 1 + }, +/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/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/bordercorner{ + dir = 8 + }, +/obj/machinery/requests_console{ + department = "Cargo Bay"; + departmentType = 2; + dir = 1; + name = "Cargo RC"; + pixel_y = -24 + }, +/obj/machinery/camera/network/cargo{ + c_tag = "CRG - Delivery Office"; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/delivery) +"mBi" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 8 + }, +/obj/effect/floor_decal/rust/part_rusted1, +/obj/effect/floor_decal/rust/part_rusted2{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/engineering/hallway) +"mBm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/arrivals/cynosure) +"mBs" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "biohazard"; + layer = 3.3; + name = "Biohazard Shutter" + }, +/turf/simulated/floor/plating, +/area/surface/station/rnd/xenobiology/xenoflora) +"mBZ" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + id_tag = null + }, +/obj/effect/floor_decal/techfloor{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/machinery/oxygen_pump{ + pixel_y = -32 + }, +/obj/structure/handrail{ + dir = 1 + }, +/obj/effect/map_helper/airlock/atmos/pump_out_internal, +/obj/effect/shuttle_landmark/cynosure/pads/pad4, +/obj/effect/overmap/visitable/ship/landable/explorer_shuttle, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/exploration/cargo) +"mCa" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced/tinted/frosted{ + dir = 8 + }, +/obj/structure/window/reinforced/tinted/frosted{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/security/interrogation) +"mCf" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/turf/simulated/wall/rshull, +/area/shuttle/exploration/cargo) +"mCq" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/station/solar/westsolar) +"mCR" = ( +/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/tiled/techmaint, +/area/surface/station/hallway/primary/groundfloor/east) +"mEg" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/maintenance{ + req_one_access = list(5,12,47) + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/north/gnd) +"mEz" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central4, +/obj/machinery/computer/guestpass{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/etc) +"mEG" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/storage/emergency/sec) +"mFB" = ( +/obj/structure/table/reinforced, +/obj/machinery/cell_charger, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/cyan{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -12; + pixel_y = -24 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/shuttle/exploration/cockpit) +"mFG" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 1 + }, +/obj/structure/curtain/open/shower, +/obj/machinery/shower{ + dir = 8; + pixel_x = -5; + pixel_y = -1 + }, +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + dir = 1; + id_tag = "xenostation_airlock_control"; + name = "Xenobiology Access Console"; + pixel_y = -24; + req_one_access = list(55); + tag_exterior_door = "xenostation_airlock_exterior"; + tag_interior_door = "xenostation_airlock_interior" + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 21 + }, +/turf/simulated/floor/tiled/eris, +/area/surface/station/rnd/xenobiology) +"mFU" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/security/interrogation) +"mFV" = ( +/obj/effect/map_effect/portal/line/side_a, +/turf/simulated/mineral/floor/ignore_mapgen/sif, +/area/surface/outside/plains/plateau) +"mGf" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood, +/area/surface/station/library) +"mGB" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad" + }, +/obj/machinery/door/airlock/glass_external, +/obj/effect/map_helper/airlock/door/simple, +/turf/simulated/floor/plating, +/area/surface/station/quartermaster/storage) +"mGK" = ( +/obj/effect/floor_decal/corner/blue/diagonal, +/obj/effect/floor_decal/corner/white{ + dir = 8 + }, +/obj/machinery/air_sensor{ + frequency = 1443; + id_tag = "air_sensor" + }, +/obj/machinery/camera/network/engineering{ + c_tag = "Atmos Tank - Air"; + dir = 10 + }, +/turf/simulated/floor/reinforced/airmix, +/area/surface/station/engineering/atmos) +"mHs" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible/green, +/obj/machinery/meter, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"mHv" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular/open{ + id = "biohazard"; + layer = 3.3; + name = "Biohazard Shutter" + }, +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/rnd/hallway/gnd) +"mHN" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/map_helper/airlock/door/ext_door, +/obj/machinery/access_button/airlock_exterior{ + dir = 8; + master_tag = "west_solar_airlock"; + pixel_y = -35; + req_one_access = list(11,24) + }, +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "west_solar_outer"; + locked = 1; + name = "Solar External Access" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/solars/west) +"mHP" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 4 + }, +/obj/structure/railing, +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/water/deep{ + has_fish = 0 + }, +/area/surface/outside/station/reactorpond) +"mHU" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/hallway/primary/groundfloor/west/elevator) +"mIc" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 8 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"mIe" = ( +/obj/machinery/atmospherics/unary/freezer, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/medical/etc) +"mIg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/groundfloor/civilian) +"mIj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/glass_medical{ + id_tag = "Surgery"; + name = "Patient Ward" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/medical/ward) +"mJK" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/crew_quarters/gym) +"mJO" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/station) +"mKn" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/carpet, +/area/surface/station/chapel/main) +"mLd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/obj/effect/catwalk_plated/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/east/gnd) +"mLm" = ( +/obj/machinery/media/jukebox, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/cafeteria) +"mLF" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "detwest" + }, +/turf/simulated/floor/plating, +/area/surface/station/security/detectives_office) +"mLH" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/station/solar/westsolar) +"mLL" = ( +/obj/structure/reagent_dispensers, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/garage) +"mMg" = ( +/obj/structure/closet/wardrobe/black, +/obj/random/maintenance/engineering, +/obj/random/maintenance/engineering, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/east/gnd) +"mMm" = ( +/obj/structure/sign/warning/caution{ + name = "\improper CAUTION: FIRING RANGE" + }, +/turf/simulated/wall, +/area/surface/station/security/detectives_office/lab) +"mMn" = ( +/obj/effect/map_effect/portal/line/side_a, +/turf/simulated/floor/outdoors/grass/sif, +/area/surface/outside/plains/normal) +"mMH" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/obj/structure/sign/warning/nosmoking_2{ + pixel_y = 32 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"mNd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/east) +"mNf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/yellow/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/reactor) +"mNq" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/red, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"mNw" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/ai/server_room) +"mNx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/purple/border, +/obj/machinery/light, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/gnd) +"mOt" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/surgery2) +"mOy" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/briefing_room) +"mOK" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/crew_quarters/gym) +"mOM" = ( +/turf/unsimulated/mask, +/area/surface/station/hallway/primary/groundfloor/east) +"mPv" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 10 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 5 + }, +/turf/simulated/floor/water/deep{ + has_fish = 0 + }, +/area/surface/outside/station/reactorpond) +"mPy" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 21 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/misc_lab) +"mPF" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/machinery/newscaster{ + pixel_y = 26 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/hallway/secondary/groundfloor/civilian) +"mPH" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/etc) +"mPQ" = ( +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/dirt/sif/planetuse, +/area/surface/outside/plains/normal) +"mQc" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/wingrille_spawn/reinforced, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + dir = 2; + id = "xenobio3"; + layer = 3.3; + name = "Containment Blast Doors" + }, +/turf/simulated/floor/plating, +/area/surface/station/rnd/xenobiology) +"mQh" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/station) +"mQi" = ( +/obj/effect/floor_decal/techfloor/corner{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/ai/upload) +"mQm" = ( +/obj/structure/cliff/automatic{ + dir = 9 + }, +/obj/structure/cliff/automatic/corner, +/turf/simulated/floor/outdoors/mask, +/area/surface/outside/plains/plateau) +"mQx" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/navbeacon/patrol{ + location = "NH2"; + next_patrol = "PK1" + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central6, +/obj/effect/floor_decal/steeldecal/steel_decals_central2, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/hallway/primary/groundfloor/north) +"mQy" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/maintenance{ + name = "Medbay Maintenance Access"; + req_access = list(5) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/medical/ward) +"mQH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/industrial/warning/full, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/atmos) +"mQI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/foyer) +"mRb" = ( +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/reception) +"mRf" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 1; + name = "O2 to Connector" + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"mRw" = ( +/obj/structure/sign/directions/cargo{ + dir = 4; + pixel_y = -26 + }, +/obj/structure/sign/directions/science{ + dir = 4; + pixel_y = -32 + }, +/obj/structure/sign/directions/command{ + dir = 4; + pixel_y = -38 + }, +/obj/machinery/camera/network/ground_floor{ + c_tag = "Ground Floor - North Hallway 1"; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/north) +"mRC" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/etc) +"mRF" = ( +/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/machinery/navbeacon/patrol{ + location = "EH2"; + next_patrol = "SEC" + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central6, +/obj/effect/floor_decal/steeldecal/steel_decals_central2, +/obj/item/device/radio/beacon, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/hallway/primary/groundfloor/east) +"mRW" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 9 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_waste) +"mSi" = ( +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + pixel_y = -21 + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/surface/station/ai/cyborg_station) +"mSn" = ( +/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/white, +/area/surface/station/medical/etc) +"mSM" = ( +/turf/simulated/floor/outdoors/grass/sif/random{ + tree_chance = 0 + }, +/area/surface/outside/plains/station) +"mSO" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 8 + }, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/machinery/recharger, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/storage/primarytool) +"mSX" = ( +/obj/structure/bed/chair, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/surface/station/crew_quarters/heads/hos) +"mTi" = ( +/obj/machinery/status_display, +/turf/simulated/wall/r_wall, +/area/surface/station/ai/upload) +"mTs" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger/corner{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "steel_dirty"; + initial_flooring = /decl/flooring/tiling/steel_dirty + }, +/area/surface/outside/plains/station) +"mUb" = ( +/turf/simulated/floor/lino, +/area/surface/station/security/detectives_office) +"mUg" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/workshop) +"mUo" = ( +/obj/machinery/requests_console{ + department = "Engineering"; + departmentType = 3; + name = "Engineering RC"; + pixel_y = 24 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/engineering/hallway) +"mUu" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/catwalk_plated/dark, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/research/gnd) +"mUw" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/rnd/hallway/gnd) +"mUN" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/arrivals/cynosure) +"mVf" = ( +/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/station/security/range) +"mVp" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 6 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/water/deep{ + has_fish = 0 + }, +/area/surface/outside/station/reactorpond) +"mVq" = ( +/obj/effect/floor_decal/spline/plain, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/station/crew_quarters/heads/hop) +"mVA" = ( +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/machinery/light_switch{ + pixel_x = 12; + pixel_y = 24 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 1 + }, +/obj/machinery/camera/network/engineering{ + c_tag = "ENG - Atmospherics Northwest" + }, +/obj/machinery/button/remote/blast_door{ + id = "atmoslockdown"; + name = "Atmospherics Lockdown"; + pixel_x = 12; + pixel_y = 34; + req_one_access = list(10,24) + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"mVZ" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 1 + }, +/obj/item/weapon/paper_bin, +/obj/item/weapon/pen, +/turf/simulated/floor/tiled, +/area/surface/station/security/briefing_room) +"mWr" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/surface/station/engineering/atmos) +"mWx" = ( +/obj/structure/table/standard, +/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/catwalk_plated, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/weapon/folder/red, +/turf/simulated/floor/plating, +/area/surface/station/security/briefing_room) +"mXo" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/west/elevator) +"mXF" = ( +/obj/item/weapon/stool/barstool/padded{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/cafeteria) +"mXY" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/ai/upload_foyer) +"mXZ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/cafeteria) +"mYc" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/camera/network/engineering{ + c_tag = "ENG - Solar Northeast"; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/solars/northeast) +"mYo" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/item/weapon/stool/padded, +/turf/simulated/floor/tiled/white, +/area/surface/station/security/detectives_office/lab) +"mYE" = ( +/obj/structure/closet/crate, +/obj/item/target, +/obj/item/target, +/obj/item/target, +/obj/item/target, +/obj/item/target, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/range) +"mZa" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/bordercorner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/recharger/wallcharger{ + pixel_x = -26 + }, +/obj/machinery/recharger/wallcharger{ + pixel_x = -26; + pixel_y = -10 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/gnd) +"mZg" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 6 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/water/deep{ + has_fish = 0 + }, +/area/surface/outside/station/reactorpond) +"mZp" = ( +/obj/machinery/atmospherics/valve/digital/open, +/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/blue/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/engineering/atmos) +"nav" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 10 + }, +/obj/item/weapon/banner/nt, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/hallway/primary/groundfloor/south) +"naO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/etc) +"naV" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet{ + dir = 1; + pixel_y = 30 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/hallway/secondary/groundfloor/civilian) +"nba" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1379; + id_tag = "engine_airlock_pump" + }, +/obj/effect/floor_decal/techfloor{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/embedded_controller/radio/airlock/advanced_airlock_controller{ + id_tag = "engine_room_airlock"; + name = "Reactor Access Airlock"; + pixel_y = -24; + tag_airpump = "engine_airlock_pump"; + tag_chamber_sensor = "eng_al_c_snsr"; + tag_exterior_door = "engine_airlock_exterior"; + tag_exterior_sensor = "eng_al_ext_snsr"; + tag_interior_door = "engine_airlock_interior"; + tag_interior_sensor = "eng_al_int_snsr" + }, +/obj/machinery/airlock_sensor{ + id_tag = "eng_al_c_snsr"; + pixel_x = 22 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/engineering/reactor_airlock) +"nbE" = ( +/obj/effect/floor_decal/industrial/warning/cee{ + dir = 4 + }, +/obj/machinery/camera/network/engine{ + c_tag = "ENG - Reactor Core" + }, +/turf/simulated/floor/reinforced/supermatter_core, +/area/surface/station/engineering/reactor_room) +"nbV" = ( +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/station/shuttle/pad4) +"nck" = ( +/obj/random/obstruction, +/turf/simulated/floor/plating, +/area/surface/station/security/processing) +"ncx" = ( +/obj/structure/grille, +/obj/effect/zone_divider, +/turf/simulated/wall/r_wall, +/area/surface/station/engineering/atmos) +"ncE" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 10 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/water/deep{ + has_fish = 0 + }, +/area/surface/outside/station/reactorpond) +"ncO" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass{ + name = "Gym" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/crew_quarters/gym) +"ncQ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"ncU" = ( +/obj/machinery/processor, +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/rnd/xenobiology) +"ndb" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/obj/structure/table/glass, +/obj/machinery/newscaster{ + pixel_x = -26 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/station/crew_quarters/pool) +"ndV" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ + dir = 1 + }, +/obj/structure/shuttle/engine/heater, +/turf/simulated/wall/rshull, +/area/shuttle/exploration/cargo) +"ndX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/hallway/gnd) +"neE" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/hallway/primary/groundfloor/north) +"neJ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 6 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/engineering/atmos) +"neR" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/surface/station/janitor) +"neZ" = ( +/obj/structure/table/bench/steel, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 1 + }, +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 26 + }, +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 18 + }, +/obj/effect/landmark/start{ + name = "Explorer" + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/rnd/exploration) +"nfl" = ( +/obj/machinery/portable_atmospherics/powered/scrubber, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/north/gnd) +"nfz" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/freezer, +/area/surface/station/crew_quarters/pool) +"nfT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/kitchen) +"ngO" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 1 + }, +/obj/item/weapon/storage/firstaid/regular, +/turf/simulated/floor/tiled, +/area/surface/station/crew_quarters/gym) +"nhb" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/surface/station/chapel/office) +"nhm" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/visible/green, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"nhQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/shuttle/exploration/cargo) +"nib" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/crew_quarters/locker) +"nic" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/cell_charger, +/obj/item/weapon/cell/high, +/obj/item/weapon/tool/wrench, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil{ + pixel_x = 2; + pixel_y = 2 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/workshop) +"nig" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable/green, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + id = "xenobiocontain"; + layer = 3.3; + name = "Containment Blast Doors" + }, +/turf/simulated/floor/plating, +/area/surface/station/rnd/xenobiology) +"nik" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green, +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "atmoslockdown"; + layer = 3.3; + name = "Atmospherics Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/atmos) +"nip" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"niA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/mob/living/simple_mob/animal/passive/opossum/poppy, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/engineering_monitoring) +"niD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/station/park) +"niT" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/map_helper/airlock/door/ext_door, +/obj/machinery/access_button/airlock_exterior{ + dir = 1; + master_tag = "marrivals_airlock"; + pixel_x = -24 + }, +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "marrivals_airlock_outer"; + locked = 1; + name = "External Access" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/arrivals/cynosure) +"niW" = ( +/obj/effect/floor_decal/corner/black/full{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/reinforced/carbon_dioxide, +/area/surface/station/engineering/atmos) +"njz" = ( +/obj/machinery/atmospherics/pipe/manifold/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_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/gnd) +"nkn" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/reinforced, +/area/surface/station/rnd/xenobiology) +"nkt" = ( +/obj/machinery/flasher{ + id = "AIupload1"; + pixel_x = -8 + }, +/turf/simulated/wall/durasteel, +/area/surface/station/ai/upload) +"nkw" = ( +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24; + pixel_y = -12 + }, +/obj/item/clothing/shoes/galoshes, +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/effect/floor_decal/corner/purple/bordercorner{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/xenobiology) +"nkx" = ( +/obj/machinery/vending/giftvendor, +/obj/effect/zone_divider, +/turf/simulated/floor/tiled/dark, +/area/surface/station/hallway/primary/groundfloor/south) +"nlm" = ( +/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/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/storage/primarytool) +"nlq" = ( +/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, +/turf/simulated/floor/tiled, +/area/surface/station/park) +"nlY" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 8 + }, +/obj/item/weapon/folder/yellow, +/obj/item/weapon/clipboard, +/obj/item/weapon/paper_bin, +/obj/item/weapon/pen/blue, +/obj/item/weapon/pen/red{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -21 + }, +/obj/machinery/camera/network/engineering{ + c_tag = "ENG - Foyer"; + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/engineering_monitoring) +"nmp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/item/weapon/gun/energy/taser/xeno, +/obj/item/weapon/melee/baton/slime/loaded, +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 4 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/rnd/xenobiology) +"nmG" = ( +/obj/structure/table/marble, +/obj/item/weapon/material/knife/butch, +/obj/item/weapon/material/kitchen/rollingpin, +/turf/simulated/floor/tiled/eris/cafe, +/area/surface/station/crew_quarters/kitchen) +"nnd" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/water/deep/pool, +/area/surface/station/crew_quarters/pool) +"nnh" = ( +/obj/structure/noticeboard{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/engineering_monitoring) +"nnq" = ( +/obj/machinery/ai_status_display, +/turf/simulated/wall/r_wall, +/area/surface/station/engineering/storage) +"nnu" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/window/eastright{ + name = "Chemistry Desk"; + req_access = list(33) + }, +/obj/machinery/door/window/westright{ + name = "Chemistry Desk" + }, +/obj/machinery/door/blast/gate/thin/open{ + dir = 8; + icon_state = "shutter2_0"; + id = "chemcounter"; + name = "Pharmacy Counter Shutter" + }, +/obj/item/weapon/deskbell, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/chemistry) +"nnX" = ( +/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" + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 5 + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/kitchen) +"nnY" = ( +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/bordercorner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/green/bordercorner2{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/west/elevator) +"noR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/briefing_room) +"npd" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/station/garage) +"npU" = ( +/obj/machinery/atmospherics/unary/heat_exchanger, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_waste) +"nqw" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/hallway/secondary/groundfloor/civilian) +"nqE" = ( +/obj/effect/zone_divider, +/turf/simulated/floor/reinforced/nitrogen, +/area/surface/station/engineering/atmos) +"nry" = ( +/obj/structure/table/reinforced, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/item/weapon/storage/firstaid/toxin{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/storage/firstaid/toxin, +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = 30 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/machinery/camera/network/medbay{ + c_tag = "MED - Equipment Storage"; + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/storage/primary_storage) +"nrL" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/security/hallway/gnd) +"nrX" = ( +/obj/item/clothing/head/cone, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/storage/primarytool) +"nse" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/glass_medical{ + name = "EMT Bay" + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/medical/emt_bay) +"nsB" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 10 + }, +/turf/simulated/floor/water/deep{ + has_fish = 0 + }, +/area/surface/outside/station/reactorpond) +"nsO" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/tape_roll, +/obj/item/weapon/packageWrap{ + pixel_x = -2; + pixel_y = -4 + }, +/obj/item/weapon/book/codex/lore/news, +/turf/simulated/floor/carpet, +/area/surface/station/library) +"nsS" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/park) +"nto" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/park) +"nub" = ( +/turf/simulated/wall, +/area/surface/station/hallway/primary/groundfloor/west) +"nus" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/shuttle/exploration/cockpit) +"nuy" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + id = "atmoslockdown"; + layer = 3.3; + name = "Atmospherics Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/atmos) +"nuY" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/disposalpipe/segment, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "crglockdown"; + layer = 3.3; + name = "Cargo Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/quartermaster/delivery) +"nvK" = ( +/obj/machinery/appliance/mixer/cereal, +/obj/effect/zone_divider, +/turf/simulated/floor/tiled/freezer, +/area/surface/station/crew_quarters/kitchen) +"nvX" = ( +/turf/simulated/floor/plating/sif/planetuse, +/area/shuttle/arrival/station{ + dynamic_lighting = 1 + }) +"nwe" = ( +/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/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/atmos) +"nwG" = ( +/turf/simulated/wall/r_wall, +/area/surface/outpost/research/xenoarcheology/surface) +"nwO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/surface/station/crew_quarters/kitchen) +"nxd" = ( +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/brown/bordercorner, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/west) +"nxr" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/mining{ + name = "Cargo Locker Room"; + req_one_access = list(50) + }, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "crglockdown"; + layer = 3.3; + name = "Cargo Lockdown" + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/quartermaster/lockerroom) +"nxv" = ( +/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{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/hallway/primary/groundfloor/west) +"nxQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/green/bordercorner, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/groundfloor/civilian) +"nxZ" = ( +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/machinery/light_switch{ + pixel_x = 12; + pixel_y = 24 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/engineering_monitoring) +"nyb" = ( +/obj/machinery/smartfridge/drying_rack, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/hydro, +/area/surface/station/hydroponics) +"nyc" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/neonsign/cafe{ + id = "cafeopen" + }, +/turf/simulated/floor/plating, +/area/surface/station/crew_quarters/cafeteria) +"nyj" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "atmoslockdown"; + layer = 3.3; + name = "Atmospherics Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/atmos) +"nyl" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/west) +"nyF" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/workshop) +"nzw" = ( +/obj/structure/bed/chair/shuttle{ + dir = 1 + }, +/turf/simulated/shuttle/floor/white, +/area/shuttle/large_escape_pod1/station) +"nzB" = ( +/obj/item/weapon/stool/barstool/padded, +/turf/simulated/floor/tiled, +/area/surface/station/park) +"nAa" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green, +/obj/structure/extinguisher_cabinet{ + dir = 8; + pixel_x = -30 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"nAp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/south) +"nAA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/exploration/cargo) +"nAI" = ( +/obj/effect/floor_decal/corner/black/full{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/siphon/on/atmos{ + dir = 8; + frequency = 1441; + id_tag = "co2_out"; + initialize_directions = 1; + internal_pressure_bound = 4000; + internal_pressure_bound_default = 4000 + }, +/turf/simulated/floor/reinforced/carbon_dioxide, +/area/surface/station/engineering/atmos) +"nAV" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/yellow/border, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway) +"nBh" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/power/emitter{ + anchored = 1; + dir = 4; + id = "ReactorEmitter"; + state = 2 + }, +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"nBo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/kitchen) +"nBx" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/station/solar/northeastsolar) +"nBA" = ( +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/blue/border, +/obj/structure/filingcabinet, +/obj/item/weapon/storage/secure/safe{ + pixel_x = 5; + pixel_y = -26 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/crew_quarters/heads/hos) +"nCe" = ( +/turf/simulated/floor/outdoors/mask, +/area/surface/outside/plains/station) +"nCg" = ( +/obj/structure/table/marble, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/machinery/door/blast/shutters{ + id = "bar"; + layer = 3.1; + name = "Bar Shutters" + }, +/turf/simulated/floor/lino, +/area/surface/station/crew_quarters/bar) +"nCq" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/regular/open{ + id = "seclockdown"; + layer = 3.3; + name = "Security Lockdown" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/security/lobby) +"nCN" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 1 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"nCO" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular{ + dir = 4; + id = "xenobiostationext"; + name = "Containment Release" + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/rnd/xenobiology) +"nDF" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/rnd/exploration) +"nDO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/catwalk_plated, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/station/arrivals/cynosure) +"nEb" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"nEd" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/techfloor, +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/hallway/primary/groundfloor/north) +"nEm" = ( +/turf/simulated/floor/carpet, +/area/surface/station/chapel/main) +"nEo" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/shower{ + dir = 8; + pixel_x = -5; + pixel_y = -1 + }, +/obj/structure/curtain/open/shower, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/tiled/eris, +/area/surface/station/rnd/xenobiology) +"nEz" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/machinery/chemical_analyzer, +/obj/effect/floor_decal/corner/beige/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/chemistry) +"nEF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/old_cargo/blue, +/area/surface/station/crew_quarters/gym) +"nEL" = ( +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/engineering/atmos) +"nFe" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green, +/obj/effect/wingrille_spawn/reinforced, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + dir = 2; + id = "xenobio1"; + layer = 3.3; + name = "Containment Blast Doors" + }, +/turf/simulated/floor/plating, +/area/surface/station/rnd/xenobiology) +"nFn" = ( +/obj/effect/floor_decal/techfloor{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + pixel_y = -21 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/ai/upload) +"nFp" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/medical/chemistry) +"nFJ" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/border_only, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/gnd) +"nFN" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/south) +"nGa" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/reactor) +"nGz" = ( +/turf/simulated/wall/durasteel, +/area/surface/station/ai/upload) +"nGB" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"nGD" = ( +/turf/unsimulated/mask, +/area/surface/station/quartermaster/storage) +"nHz" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/security/range) +"nHM" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"nIh" = ( +/turf/simulated/wall, +/area/surface/station/storage/primarytool) +"nIi" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/hydro, +/area/surface/station/hydroponics) +"nIl" = ( +/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/techfloor{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor/corner{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/ai/upload_foyer) +"nIt" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/wood/sif, +/area/surface/station/chapel/main) +"nIv" = ( +/obj/structure/table/woodentable, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/item/weapon/storage/box/beanbags, +/obj/item/weapon/gun/projectile/shotgun/doublebarrel, +/obj/item/weapon/tool/screwdriver, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/bar) +"nIE" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 4 + }, +/obj/machinery/camera/network/ground_floor{ + c_tag = "Ground Floor - East Hallway 3"; + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/east) +"nJe" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/rnd/xenobiology/xenoflora_isolation) +"nJg" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/camera/network/research{ + c_tag = "SCI - Research Hallway North"; + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/gnd) +"nJA" = ( +/obj/structure/cable{ + 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/plating, +/area/surface/station/maintenance/east/gnd) +"nJJ" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/white/bordercorner2, +/obj/machinery/portable_atmospherics/powered/pump/filled, +/obj/item/device/radio/intercom{ + pixel_y = -21 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/foyer) +"nKj" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/yellow/border, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner{ + dir = 8 + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 8; + name = "Drone Fabrication"; + sortType = "Drone Fabrication" + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway) +"nKl" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/grey/border, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/tiled, +/area/surface/station/crew_quarters/gym) +"nKF" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible/yellow, +/obj/machinery/meter, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"nKU" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 4 + }, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"nLp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/foyer) +"nLw" = ( +/turf/simulated/floor/plating, +/area/surface/station/maintenance/north/gnd) +"nLM" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/north/gnd) +"nLN" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 8 + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + id = "atmoslockdown"; + layer = 3.3; + name = "Atmospherics Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/atmos) +"nLR" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 2; + name = "Kitchen"; + sortType = "Kitchen" + }, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/cafeteria) +"nLV" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/structure/table/woodentable, +/turf/simulated/floor/tiled/hydro, +/area/surface/station/park) +"nLW" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway) +"nMf" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/ai/upload) +"nMs" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/workshop) +"nME" = ( +/obj/structure/fence/corner, +/turf/simulated/floor/outdoors/mask, +/area/surface/outside/plains/station) +"nMJ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + req_one_access = list(12,25,27,28,35) + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/atmos) +"nMS" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 1 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/machinery/light_switch{ + pixel_x = 12; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway) +"nNo" = ( +/turf/simulated/shuttle/wall, +/area/shuttle/large_escape_pod1/station) +"nNy" = ( +/obj/effect/shuttle_landmark/cynosure/escape/station, +/turf/simulated/floor/plating/sif/planetuse, +/area/shuttle/escape/station{ + dynamic_lighting = 1 + }) +"nNG" = ( +/obj/machinery/door/window/northright{ + name = "Range Access" + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/range) +"nOe" = ( +/turf/simulated/floor/outdoors/grass/sif, +/area/surface/outside/plains/normal) +"nOg" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/monofloor{ + dir = 8 + }, +/area/surface/station/hallway/primary/groundfloor/west) +"nOh" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/machinery/camera/network/security{ + c_tag = "SEC - Firing Range"; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/range) +"nOx" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/machinery/button/remote/blast_door{ + id = "xenobio6"; + pixel_y = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/rnd/xenobiology) +"nOz" = ( +/obj/machinery/botany/editor, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/rnd/xenobiology/xenoflora) +"nOA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/rust/mono_rusted1, +/obj/machinery/light/spot{ + dir = 4 + }, +/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) +"nPJ" = ( +/obj/structure/toilet{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/crew_quarters/caferestroom) +"nQi" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "garage"; + name = "Garage Door Control"; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/garage) +"nQp" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/engineering/hallway) +"nQQ" = ( +/obj/structure/table/glass, +/obj/item/weapon/tool/wrench, +/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = -5 + }, +/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = 5 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 8 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/machinery/light_switch{ + pixel_x = 12; + pixel_y = 24 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/etc) +"nQZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/obj/machinery/camera/network/medbay{ + c_tag = "MED - Diagnostics" + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/etc) +"nRf" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/effect/catwalk_plated, +/obj/effect/zone_divider, +/turf/simulated/floor/plating, +/area/surface/station/hallway/secondary/groundfloor/civilian) +"nRl" = ( +/obj/machinery/atmospherics/unary/outlet_injector{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/surface/station/rnd/misc_lab) +"nRs" = ( +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/monofloor, +/area/surface/station/engineering/hallway) +"nRM" = ( +/obj/machinery/vending/tool, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/storage/primarytool) +"nRU" = ( +/obj/machinery/vending/boozeomat, +/turf/simulated/wall, +/area/surface/station/crew_quarters/bar) +"nRZ" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/closet/wardrobe/grey, +/obj/item/weapon/storage/backpack, +/obj/item/weapon/storage/backpack, +/obj/random/firstaid, +/obj/random/maintenance/security, +/obj/random/maintenance/clean, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/east/gnd) +"nSg" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + id = "biohazard"; + layer = 3.3; + name = "Biohazard Shutter" + }, +/turf/simulated/floor/plating, +/area/surface/station/rnd/xenobiology/xenoflora) +"nSm" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/structure/sign/directions/cargo/mining{ + dir = 8; + pixel_x = -32; + pixel_y = -38 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/west) +"nSq" = ( +/obj/random/obstruction, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/kitchen) +"nSu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/lino, +/area/surface/station/security/detectives_office) +"nSx" = ( +/turf/simulated/wall, +/area/surface/station/medical/reception) +"nSE" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/glass{ + name = "Hallway" + }, +/obj/effect/zone_divider, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/hallway/primary/groundfloor/south) +"nSK" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/surface/station/library) +"nTk" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/camera/network/engineering{ + c_tag = "ENG - Solar Northeast Access"; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/storage/emergency/sec) +"nTG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 4 + }, +/obj/effect/landmark{ + name = "lightsout" + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/foyer) +"nTZ" = ( +/obj/structure/bed/chair/shuttle{ + dir = 1 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/shuttle/exploration/general) +"nUv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/etc) +"nUw" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/maintenance{ + name = "Security Maintenance Access"; + req_access = list(1) + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/security/briefing_room) +"nUW" = ( +/obj/machinery/sleep_console, +/turf/simulated/shuttle/floor, +/area/shuttle/large_escape_pod1/station) +"nVk" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/gnd) +"nVH" = ( +/turf/simulated/floor/wood/sif, +/area/surface/station/chapel/main) +"nWe" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"nWG" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Head of Security's Desk"; + departmentType = 5; + dir = 4; + name = "Head of Security RC"; + pixel_x = -24 + }, +/obj/item/weapon/paper_bin, +/obj/item/weapon/folder/red{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/weapon/folder/red_hos, +/obj/item/weapon/pen/multi, +/turf/simulated/floor/tiled/dark, +/area/surface/station/crew_quarters/heads/hos) +"nWU" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 5 + }, +/obj/effect/landmark/start{ + name = "Botanist" + }, +/turf/simulated/floor/tiled/hydro, +/area/surface/station/hydroponics) +"nXo" = ( +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/floor_decal/techfloor/corner{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/medical/emt_bay) +"nXP" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/surface/station/storage/primarytool) +"nXY" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/station/crew_quarters/pool) +"nZk" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/catwalk_plated, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/surface/station/hallway/primary/groundfloor/north) +"nZD" = ( +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 6 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/crew_quarters/cafeteria) +"nZP" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/cap/visible, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"oam" = ( +/obj/structure/cable/green, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -12; + pixel_y = -24 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7, +/obj/structure/table/standard, +/obj/item/weapon/storage/laundry_basket, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/evidence_storage) +"oar" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/surface) +"oav" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/arrivals/cynosure) +"oay" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/storage) +"oaG" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/park) +"oaV" = ( +/obj/structure/table/woodentable, +/obj/machinery/librarycomp, +/turf/simulated/floor/wood, +/area/surface/station/library) +"obk" = ( +/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/machinery/door/airlock/glass_engineering{ + name = "Engineering Hallway" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/engineering/hallway/reactor) +"obt" = ( +/obj/structure/table/marble, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/item/weapon/book/manual/chef_recipes, +/obj/item/weapon/reagent_containers/food/condiment/small/peppershaker{ + pixel_x = -4 + }, +/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{ + pixel_x = 2 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/surface/station/crew_quarters/kitchen) +"obx" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/kitchen) +"obB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/surface/outpost/research/xenoarcheology/surface) +"obP" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "medbayquar"; + layer = 3.3; + name = "Medbay Lockdown" + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/medical/emt_bay) +"obV" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "seclockdown"; + layer = 3.3; + name = "Security Lockdown" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/security/equiptment_storage/ses) +"ocq" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/cloning) +"ocy" = ( +/turf/simulated/wall, +/area/surface/station/medical/hallway/gnd) +"ode" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/hallway/secondary/groundfloor/civilian) +"odk" = ( +/obj/machinery/atmospherics/omni/atmos_filter{ + tag_east = 5; + tag_north = 2; + tag_south = 4; + tag_west = 1 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"odJ" = ( +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/west) +"odR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/green/bordercorner, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/groundfloor/civilian) +"odW" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/weststairwell/gnd) +"oeb" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/command{ + name = "Head of Security"; + req_access = list(58); + req_one_access = list() + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/crew_quarters/heads/hos) +"oen" = ( +/obj/machinery/icecream_vat, +/obj/effect/zone_divider, +/turf/simulated/floor/tiled/freezer, +/area/surface/station/crew_quarters/kitchen) +"oeu" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/engineering/gnd) +"oey" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/table/steel_reinforced, +/obj/machinery/cell_charger, +/obj/item/device/floor_painter, +/obj/item/weapon/weldingtool, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/quartermaster/lockerroom) +"oeG" = ( +/obj/structure/sign/warning/high_voltage, +/turf/simulated/wall/r_wall, +/area/surface/station/crew_quarters/heads/hop) +"oeY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/hologram/holopad, +/obj/effect/landmark/start{ + name = "Security Officer" + }, +/turf/simulated/floor/tiled/monofloor{ + dir = 1 + }, +/area/surface/station/security/lockerroom) +"ofa" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/kitchen) +"ofm" = ( +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + pixel_y = -21 + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/surface/station/ai/server_room) +"ofN" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/reinforced, +/area/surface/station/rnd/misc_lab) +"ogh" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/yellow/border, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 8 + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 8; + name = "Engineering"; + sortType = "Engineering" + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway) +"ogu" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/storage/primarytool) +"ogP" = ( +/obj/structure/fitness/weightlifter, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/tiled/old_tile/blue, +/area/surface/station/crew_quarters/gym) +"ogY" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"ohn" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/chemistry) +"ohK" = ( +/obj/structure/table/standard, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/weapon/folder/red{ + pixel_x = -2 + }, +/obj/item/sticky_pad/random{ + pixel_x = 8; + pixel_y = -1 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/security/briefing_room) +"oiv" = ( +/obj/structure/cable{ + 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/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/engineering/hallway) +"oiI" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/structure/sign/directions/evac{ + dir = 4; + pixel_y = 38 + }, +/obj/structure/sign/directions/cryo{ + dir = 4; + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/west) +"oiM" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/ladder, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/civilian) +"oiZ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"ojk" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/surface/station/rnd/misc_lab) +"ojP" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/danger/corner{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "steel_dirty"; + initial_flooring = /decl/flooring/tiling/steel_dirty + }, +/area/surface/outside/plains/station) +"oki" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/ai/upload) +"okq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/blue{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock/glass{ + name = "Hallway" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/hallway/primary/groundfloor/south) +"okF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/surface/station/medical/surgery_storage) +"okW" = ( +/obj/machinery/status_display, +/turf/simulated/wall, +/area/surface/station/engineering/atmos) +"okY" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/park) +"olb" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging, +/turf/simulated/floor/water/deep{ + has_fish = 0 + }, +/area/surface/outside/station/reactorpond) +"olc" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/surface/station/park) +"olk" = ( +/turf/simulated/shuttle/wall/hard_corner, +/area/shuttle/large_escape_pod1/station) +"omw" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/hallway/primary/groundfloor/south) +"omM" = ( +/obj/structure/closet/crate/solar, +/obj/machinery/light, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/engineering/storage) +"oni" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 8 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor + }, +/area/surface/station/maintenance/east/gnd) +"ons" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 1 + }, +/obj/effect/landmark/start{ + name = "Security Officer" + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/lockerroom) +"onz" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_research{ + name = "Xenoflora Research"; + req_one_access = list(55) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/rnd/xenobiology/xenoflora) +"onN" = ( +/turf/simulated/wall, +/area/surface/station/crew_quarters/caferestroom) +"onP" = ( +/obj/structure/curtain/open/shower, +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 6 + }, +/obj/machinery/shower{ + dir = 4; + pixel_x = 5; + pixel_y = -1 + }, +/turf/simulated/floor/tiled/eris, +/area/surface/station/crew_quarters/locker) +"onY" = ( +/obj/effect/floor_decal/rust, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "steel_dirty"; + initial_flooring = /decl/flooring/tiling/steel_dirty + }, +/area/surface/outside/plains/station) +"ooa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/machinery/camera/network/medbay{ + c_tag = "MED - Stairwell" + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/sign/directions/stairs_down{ + pixel_x = -32; + pixel_y = 26 + }, +/obj/structure/sign/directions/medical/morgue{ + pixel_x = -32; + pixel_y = 32 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/etc) +"oog" = ( +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/chapel/office) +"oov" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Cargo Technician" + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/lockerroom) +"oow" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/storage) +"ooJ" = ( +/obj/structure/sign/directions/command, +/obj/structure/sign/directions/elevator{ + pixel_y = -6 + }, +/turf/simulated/wall, +/area/surface/station/park) +"ooQ" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/glass_medical{ + id_tag = "Medhallway"; + name = "Medbay Hallway" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/medical/hallway/gnd) +"oph" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 21 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/west/elevator) +"opj" = ( +/obj/machinery/portable_atmospherics/hydroponics/soil, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 21 + }, +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/grass, +/area/surface/station/hydroponics/garden) +"opF" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/reinforced/supermatter_core, +/area/surface/station/engineering/reactor_room) +"opR" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_research{ + name = "Explorer Prep" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/rnd/exploration) +"opT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/machinery/light_switch{ + pixel_x = 12; + pixel_y = 24 + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/solars/west) +"oqn" = ( +/obj/structure/cable/yellow, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/station/solar/westsolar) +"oqv" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable/green{ + d1 = 16; + d2 = 0; + icon_state = "16-0" + }, +/obj/structure/railing, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/zpipe/up/supply, +/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/power/sensor{ + name = "Powernet Sensor - Civilian"; + name_tag = "Civilian Subgrid" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/civilian) +"oqL" = ( +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -12; + pixel_y = -24 + }, +/obj/structure/table/reinforced, +/obj/effect/floor_decal/borderfloorwhite/corner, +/obj/effect/floor_decal/corner/pink/bordercorner, +/obj/item/weapon/reagent_containers/spray/luminol, +/obj/item/device/uv_light, +/obj/item/clothing/gloves/sterile/latex, +/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; + d2 = 4; + icon_state = "1-4" + }, +/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 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/processing) +"ord" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/hallway/primary/groundfloor/west/elevator) +"orl" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central6{ + dir = 1 + }, +/turf/simulated/floor/tiled/monofloor{ + dir = 1 + }, +/area/surface/station/arrivals/cynosure) +"orw" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/disposalpipe/junction/yjunction{ + dir = 1 + }, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/surface/station/hallway/secondary/groundfloor/civilian) +"orQ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/bordercorner{ + dir = 4 + }, +/obj/machinery/camera/network/ground_floor{ + c_tag = "Ground Floor - South Hallway 3"; + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/hallway/primary/groundfloor/south) +"osf" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/gnd) +"osk" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/structure/bed/chair/wood, +/turf/simulated/floor/tiled/hydro, +/area/surface/station/park) +"oso" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/west/elevator) +"osB" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"otg" = ( +/obj/structure/closet/toolcloset, +/obj/item/device/flashlight, +/obj/item/device/radio, +/obj/item/device/radio, +/obj/item/weapon/storage/toolbox/electrical, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 1 + }, +/obj/machinery/camera/network/engineering{ + c_tag = "ENG - Engineering Workshop" + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner2{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/workshop) +"otw" = ( +/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/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 2; + name = "Security"; + sortType = "Security" + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/gnd) +"otx" = ( +/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/monotile, +/area/surface/station/hallway/primary/groundfloor/west) +"otF" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/multi_tile/glass{ + id_tag = "MedbayFoyer"; + name = "Medbay"; + req_access = list(5) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/medical/reception) +"oub" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "steel_dirty"; + initial_flooring = /decl/flooring/tiling/steel_dirty + }, +/area/surface/outside/plains/station) +"oum" = ( +/turf/simulated/floor/water/deep, +/area/surface/outside/river/gautelfr) +"ouz" = ( +/obj/structure/sign/warning/high_voltage, +/turf/simulated/wall, +/area/surface/station/maintenance/substation/cargo/gnd) +"ouC" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway) +"ouU" = ( +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/bar) +"ovl" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/portables_connector, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/solars/northeast) +"ovo" = ( +/obj/effect/floor_decal/industrial/outline/blue, +/obj/machinery/portable_atmospherics/canister/phoron, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"ovt" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 5 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 5 + }, +/obj/machinery/disposal, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/gnd) +"ovA" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 10 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 10 + }, +/obj/item/device/radio/intercom/department/medbay{ + dir = 1; + pixel_y = -21 + }, +/obj/item/weapon/storage/box/beakers, +/obj/item/weapon/reagent_containers/dropper, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/chemistry) +"owc" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock{ + name = "Bar"; + req_one_access = list(25) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/crew_quarters/bar) +"owj" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/obj/machinery/door/airlock/glass_external{ + frequency = 1380; + icon_state = "door_locked"; + id_tag = "escape_dock_north_starboard_inner"; + locked = 1; + name = "Internal Access" + }, +/obj/effect/map_helper/airlock/door/int_door, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/arrivals/cynosure) +"owl" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/cafeteria) +"own" = ( +/obj/effect/floor_decal/industrial/warning/dust, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor + }, +/area/surface/station/hallway/primary/groundfloor/north) +"owp" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway) +"owy" = ( +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/west/elevator) +"owJ" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/green, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/security/lobby) +"owK" = ( +/obj/structure/sign/warning/high_voltage, +/turf/simulated/wall, +/area/surface/station/maintenance/substation/security/gnd) +"owR" = ( +/obj/structure/closet/wardrobe/chaplain_black, +/obj/item/weapon/storage/fancy/blackcandle_box, +/obj/item/weapon/storage/fancy/candle_box, +/obj/item/weapon/storage/fancy/whitecandle_box, +/turf/simulated/floor/lino, +/area/surface/station/chapel/office) +"owZ" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/security/detectives_office) +"oxb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/east/gnd) +"oye" = ( +/obj/structure/table/bench/steel, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/grey/border, +/obj/machinery/computer/security/telescreen/entertainment{ + icon_state = "frame"; + pixel_x = 32 + }, +/obj/effect/floor_decal/spline/plain, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/crew_quarters/gym) +"oyh" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/shuttle/exploration/cockpit) +"oyr" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/bordercorner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/gnd) +"oyH" = ( +/obj/machinery/recharge_station, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/surface/station/rnd/research_restroom) +"oyP" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/door/window/brigdoor/eastleft{ + name = "Containment Pen"; + req_access = list(47) + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/rnd/xenobiology) +"ozd" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central5, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/range) +"ozj" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/hallway/primary/groundfloor/south) +"ozx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/hallway/primary/groundfloor/east) +"ozI" = ( +/obj/structure/closet/coffin, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/wood/sif, +/area/surface/station/chapel/main) +"ozQ" = ( +/obj/structure/sign/warning/secure_area, +/turf/simulated/wall, +/area/surface/station/engineering/foyer) +"oAu" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/hallway/primary/groundfloor/south) +"oBb" = ( +/obj/machinery/atmospherics/pipe/cap/visible{ + dir = 1 + }, +/obj/machinery/meter, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "ReactorWasteViewport01"; + name = "Reactor Waste Viewport Blast Doors"; + pixel_x = 24; + req_one_access = list(11,24) + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_waste) +"oBn" = ( +/obj/machinery/status_display, +/turf/simulated/wall/r_wall, +/area/surface/station/engineering/storage) +"oBt" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/misc_lab) +"oBw" = ( +/obj/structure/curtain/open/shower, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/obj/machinery/shower{ + dir = 4; + pixel_x = 5; + pixel_y = -1 + }, +/turf/simulated/floor/tiled/eris, +/area/surface/station/crew_quarters/locker) +"oBQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/north/gnd) +"oBR" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/obj/machinery/camera/network/civilian{ + c_tag = "CIV - Pool South"; + dir = 1 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/station/crew_quarters/pool) +"oCp" = ( +/obj/effect/zone_divider, +/turf/simulated/floor/water/pool, +/area/surface/station/crew_quarters/pool) +"oCs" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/atmos) +"oCD" = ( +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/medical/emt_bay) +"oCI" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning/dust/corner{ + dir = 8 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor + }, +/area/surface/station/maintenance/east/gnd) +"oCZ" = ( +/obj/structure/reagent_dispensers/watertank/high, +/obj/effect/floor_decal/industrial/warning, +/obj/item/weapon/extinguisher, +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 26 + }, +/obj/machinery/camera/network/research{ + c_tag = "SCI - Xenobiology East"; + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/rnd/xenobiology) +"oDa" = ( +/obj/machinery/power/breakerbox/activated{ + RCon_tag = "Explorer Shuttle Connection" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/surgery) +"oDG" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/gnd) +"oDQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/blue{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/green/border, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/south) +"oDU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/green/border, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/rnd/xenobiology/xenoflora) +"oEe" = ( +/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/carpet, +/area/surface/station/chapel/main) +"oEi" = ( +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/kitchen) +"oEj" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/library) +"oEz" = ( +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/ai/upload) +"oFp" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"oFQ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/atmos) +"oGr" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/structure/table/bench/padded, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/surgeryobs) +"oGP" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/obj/effect/zone_divider, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/station/crew_quarters/pool) +"oGU" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/station/hydroponics) +"oGY" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/effect/catwalk_plated/dark, +/obj/structure/table/rack, +/obj/item/weapon/tank/oxygen/yellow, +/obj/item/weapon/tank/oxygen/yellow, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/atmospherics) +"oHf" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "englockdown"; + layer = 3.3; + name = "Engineering Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/hallway) +"oHA" = ( +/obj/structure/sign/redcross{ + desc = "The Star of Life, a symbol of Medical Aid."; + icon_state = "lifestar" + }, +/turf/simulated/wall/r_wall, +/area/surface/station/medical/emt_bay) +"oHR" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/cafeteria) +"oIb" = ( +/obj/machinery/cryopod/robot, +/turf/simulated/floor/bluegrid, +/area/surface/station/ai/cyborg_station) +"oIf" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/blast/regular/open{ + id = "medbayquar"; + layer = 3.3; + name = "Medbay Lockdown" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/medbay/gnd) +"oIi" = ( +/obj/effect/floor_decal/industrial/hatch{ + color = "#D4D4D4"; + pixel_x = -1 + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/surface/station/hallway/primary/groundfloor/south) +"oIs" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/surface/station/security/hallway/gnd) +"oIB" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/gnd) +"oIK" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/range) +"oJt" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"oKg" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/catwalk_plated, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/station/security/hallway/gnd) +"oKx" = ( +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/solars/northeast) +"oKA" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/north) +"oLb" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/briefing_room) +"oMg" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/ai/upload) +"oMn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/foyer) +"oMB" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "clocker" + }, +/obj/machinery/door/blast/regular/open{ + id = "crglockdown"; + layer = 3.3; + name = "Cargo Lockdown" + }, +/obj/machinery/status_display, +/turf/simulated/floor/plating, +/area/surface/station/quartermaster/lockerroom) +"oMH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/airlock_sensor/airlock_interior{ + dir = 4; + id_tag = null; + master_tag = null; + pixel_x = -31; + pixel_y = 24 + }, +/obj/effect/map_helper/airlock/sensor/int_sensor, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/exploration/cargo) +"oMJ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/quartermaster/delivery) +"oMW" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 8 + }, +/obj/effect/zone_divider, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor + }, +/area/surface/outside/plains/station) +"oNb" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"oNp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/ai/upload) +"oNB" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "hop_office" + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/surface/station/crew_quarters/heads/hop) +"oNG" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/quartermaster/storage) +"oOe" = ( +/obj/effect/floor_decal/corner_steel_grid{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "medbayrecquar"; + layer = 3.3; + name = "Medbay Quarantine Shutters"; + opacity = 0; + open_layer = 3.3 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/reception) +"oOs" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white{ + dir = 10 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/chemistry) +"oOy" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway) +"oOK" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/lockerroom) +"oON" = ( +/obj/structure/ladder, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/surgery) +"oPb" = ( +/obj/effect/floor_decal/techfloor{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4; + frequency = 1379; + id_tag = "msouth_airlock_pump" + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -21 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/hallway/primary/groundfloor/south) +"oPg" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/arrivals/cynosure) +"oPp" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/west) +"oPN" = ( +/obj/structure/closet/coffin, +/turf/simulated/floor/wood/sif, +/area/surface/station/chapel/main) +"oPV" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 4 + }, +/obj/machinery/requests_console{ + department = "Janitorial"; + departmentType = 1; + dir = 8; + name = "Janitorial RC"; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/janitor) +"oQg" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/navbeacon/patrol{ + location = "NH1"; + next_patrol = "NH2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central6, +/obj/effect/floor_decal/steeldecal/steel_decals_central2, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/hallway/primary/groundfloor/north) +"oQh" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 6 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/gnd) +"oRa" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/atmos) +"oRf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/park) +"oRg" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/green, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"oRs" = ( +/obj/structure/closet, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/security/evidence_storage) +"oSl" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/engineering/hallway/reactor) +"oSo" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 8 + }, +/obj/machinery/camera/network/ground_floor{ + c_tag = "Ground Floor - East Hallway 1"; + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/hallway/primary/groundfloor/east) +"oSO" = ( +/obj/effect/floor_decal/industrial/outline{ + color = "#D4D4D4" + }, +/obj/machinery/camera/network/ground_floor{ + c_tag = "Ground Floor - South Hallway 2"; + dir = 4 + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/surface/station/hallway/primary/groundfloor/south) +"oST" = ( +/obj/machinery/atmospherics/binary/passive_gate{ + dir = 1; + icon_state = "on"; + unlocked = 1 + }, +/obj/effect/catwalk_plated/dark, +/obj/structure/closet/emcloset, +/obj/item/weapon/storage/toolbox/emergency, +/obj/item/weapon/storage/toolbox/emergency, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/sign/warning/cold{ + layer = 3.3; + pixel_y = 32 + }, +/turf/simulated/floor/plating, +/area/surface/station/arrivals/cynosure) +"oTb" = ( +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -12; + pixel_y = -24 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7, +/obj/structure/table/bench/padded, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/surgeryobs) +"oTc" = ( +/turf/simulated/wall, +/area/surface/station/maintenance/east/gnd) +"oTe" = ( +/obj/random/crate{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/storage) +"oTg" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 5 + }, +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "atmoslockdown"; + layer = 3.3; + name = "Atmospherics Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/atmos) +"oTk" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/machinery/airlock_sensor/airlock_exterior{ + dir = 4; + frequency = 1380; + id_tag = "escape_dock_north_starboard_intsensor"; + master_tag = "msouth_airlock"; + pixel_x = -31; + pixel_y = 23 + }, +/obj/effect/map_helper/airlock/sensor/int_sensor, +/turf/simulated/floor/tiled, +/area/surface/station/arrivals/cynosure) +"oTs" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/bombclosetsecurity, +/obj/structure/extinguisher_cabinet{ + dir = 8; + pixel_x = -30 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/equiptment_storage/ses) +"oTL" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/exploration/cargo) +"oTS" = ( +/obj/structure/cliff/automatic{ + dir = 6 + }, +/turf/simulated/floor/outdoors/grass/sif, +/area/surface/outside/plains/plateau) +"oTU" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/west/elevator) +"oUi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/park) +"oUm" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced/tinted/frosted{ + dir = 8 + }, +/obj/structure/window/reinforced/tinted/frosted{ + dir = 1 + }, +/obj/structure/window/reinforced/tinted/frosted{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/security/interrogation) +"oUr" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/medical/storage/primary_storage) +"oVa" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/diagonal{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1; + external_pressure_bound = 0; + external_pressure_bound_default = 0; + frequency = 1443; + icon_state = "map_vent_in"; + id_tag = "air_out"; + internal_pressure_bound = 2000; + internal_pressure_bound_default = 2000; + pressure_checks = 2; + pressure_checks_default = 2; + pump_direction = 0; + use_power = 1 + }, +/turf/simulated/floor/reinforced/airmix, +/area/surface/station/engineering/atmos) +"oVm" = ( +/obj/machinery/power/smes/buildable/point_of_interest, +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/exploration/cargo) +"oVr" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/green/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/green/bordercorner2, +/turf/simulated/floor/tiled, +/area/surface/station/park) +"oVD" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/security/interrogation) +"oVI" = ( +/obj/structure/curtain/open/shower, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/obj/machinery/shower{ + dir = 8; + pixel_x = -5; + pixel_y = -1 + }, +/turf/simulated/floor/tiled/eris, +/area/surface/station/crew_quarters/locker) +"oWf" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"oWj" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/quartermaster/storage) +"oWm" = ( +/obj/machinery/disposal, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/button/remote/blast_door{ + dir = 1; + id = "bar2"; + name = "Bar Front Shutters"; + pixel_x = 4; + pixel_y = -24 + }, +/obj/machinery/button/remote/blast_door{ + dir = 1; + id = "bar"; + name = "Bar Shutters"; + pixel_x = -6; + pixel_y = -24 + }, +/obj/machinery/button/holosign{ + icon_state = "light0"; + id = "baropen"; + name = "Open Sign"; + pixel_x = 12; + pixel_y = -23 + }, +/turf/simulated/floor/lino, +/area/surface/station/crew_quarters/bar) +"oWn" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white{ + dir = 10 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/rnd/misc_lab) +"oWy" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/east/gnd) +"oWK" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/glass{ + name = "Hallway" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/park) +"oWO" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/station/park) +"oWU" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/storage) +"oXg" = ( +/obj/structure/reagent_dispensers/watertank/high, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/item/weapon/extinguisher, +/obj/machinery/recharger/wallcharger{ + pixel_x = -26 + }, +/obj/machinery/camera/network/research{ + c_tag = "SCI - Xenobiology South"; + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/rnd/xenobiology) +"oXl" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/medical{ + name = "Cloning Laboratory"; + req_one_access = list(66) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/medical/cloning) +"oXu" = ( +/obj/machinery/sleeper{ + dir = 8 + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/shuttle/exploration/general) +"oXS" = ( +/obj/structure/sign/bigname/seg_6{ + pixel_y = 32 + }, +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outside/plains/station) +"oYh" = ( +/obj/structure/bed/chair/shuttle{ + dir = 1 + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/shuttle/exploration/general) +"oYk" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/cafeteria) +"oYl" = ( +/obj/structure/cliff/automatic{ + dir = 5 + }, +/turf/simulated/floor/outdoors/mask, +/area/surface/outside/plains/plateau) +"oYn" = ( +/obj/structure/reagent_dispensers/water_cooler/full, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/grey/border, +/obj/machinery/newscaster{ + pixel_x = -26 + }, +/obj/effect/floor_decal/spline/plain, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/crew_quarters/gym) +"oYI" = ( +/obj/effect/floor_decal/techfloor, +/obj/effect/floor_decal/techfloor/hole/right, +/obj/effect/floor_decal/industrial/warning, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/ai/upload) +"oZb" = ( +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/reception) +"oZm" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/security/restroom) +"oZE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/arrivals/cynosure) +"oZO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/machinery/light_switch{ + pixel_x = 12; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/catwalk_plated/dark, +/obj/effect/floor_decal/industrial/warning, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/research/gnd) +"oZV" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4; + id_tag = null + }, +/obj/effect/floor_decal/techfloor{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/machinery/oxygen_pump{ + pixel_y = -32 + }, +/obj/structure/handrail{ + dir = 1 + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/exploration/cargo) +"pay" = ( +/obj/effect/floor_decal/borderfloorblack/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/bordercorner{ + dir = 1 + }, +/obj/machinery/camera/network/interrogation{ + c_tag = "SEC - Interrogation"; + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/security/interrogation) +"paD" = ( +/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/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/atmos) +"paJ" = ( +/obj/structure/closet/secure_closet/cargotech, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/lockerroom) +"paX" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_airlock) +"pbb" = ( +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/door/blast/regular/open{ + dir = 2; + id = "xenobio2"; + layer = 3.3; + name = "Containment Blast Doors" + }, +/obj/machinery/door/window/brigdoor/westleft{ + name = "Containment Pen"; + req_access = list(47) + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/rnd/xenobiology) +"pbi" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + id = "seclockdown"; + layer = 3.3; + name = "Security Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/security/range) +"pbo" = ( +/obj/machinery/computer/arcade{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + pixel_y = -21 + }, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/cafeteria) +"pcb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/catwalk_plated, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/surface/station/security/briefing_room) +"pce" = ( +/obj/machinery/smartfridge/drinks, +/turf/simulated/wall, +/area/surface/station/crew_quarters/bar) +"pcB" = ( +/obj/effect/floor_decal/techfloor{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1379; + id_tag = "arc3_airlock_pump" + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/outpost/research/xenoarcheology/surface) +"pdg" = ( +/obj/machinery/atmospherics/valve/shutoff{ + dir = 4; + name = "Civilian automatic shutoff valve" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/chapel) +"pdn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/grass, +/area/surface/station/hydroponics/garden) +"pdU" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/floor_decal/techfloor/corner{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/airlock_sensor/airlock_exterior{ + id_tag = "eng_al_ext_snsr"; + master_tag = "engine_room_airlock"; + pixel_y = 22 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/engineering/reactor_airlock) +"pez" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/gnd) +"peL" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/misc_lab) +"peN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/turf/simulated/floor/tiled/old_tile/blue, +/area/surface/station/arrivals/cynosure/cryo) +"pfh" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/park) +"pfj" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 6 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/dark, +/area/surface/station/security/hallway/gnd) +"pfk" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 1 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/rnd/research_lockerroom) +"pfr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/machinery/portable_atmospherics/powered/pump/filled, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/engineering/atmos) +"pfA" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/turf/simulated/floor/tiled/dark, +/area/surface/station/engineering/workshop) +"pfK" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/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/borderfloor, +/obj/effect/floor_decal/corner/yellow/border, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/reactor) +"pfO" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "atmoslockdown"; + layer = 3.3; + name = "Atmospherics Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/atmos) +"pgK" = ( +/turf/simulated/wall, +/area/surface/station/janitor) +"pgR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/bordercorner{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/groundfloor/civilian) +"phs" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/zone_divider, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/hallway/secondary/groundfloor/civilian) +"phv" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/power/port_gen/pacman, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/engineering/storage) +"phS" = ( +/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/effect/catwalk_plated/dark, +/obj/effect/zone_divider, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/kitchen) +"phY" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/obj/effect/catwalk_plated/dark, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/engineering/gnd) +"pik" = ( +/obj/structure/bed/chair/office/light, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/reception) +"piz" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/plating, +/area/surface/station/garage) +"piD" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -21 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/security/restroom) +"pja" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/status_display, +/turf/simulated/floor/plating, +/area/surface/station/medical/etc) +"pjt" = ( +/obj/effect/floor_decal/corner/purple{ + dir = 1 + }, +/obj/effect/floor_decal/corner/orange/diagonal{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/siphon/on/atmos{ + dir = 8; + frequency = 1441; + id_tag = "tox_out"; + initialize_directions = 1; + internal_pressure_bound = 4000; + internal_pressure_bound_default = 4000 + }, +/turf/simulated/floor/reinforced/phoron, +/area/surface/station/engineering/atmos) +"pkr" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"pkv" = ( +/obj/machinery/atmospherics/omni/atmos_filter{ + tag_east = 4; + tag_south = 1; + tag_west = 2; + use_power = 0 + }, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_waste) +"pky" = ( +/obj/effect/floor_decal/techfloor{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4; + frequency = 1380; + id_tag = "escape_dock_north_starboard_pump" + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/arrivals/cynosure) +"pkO" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/storage/emergency/sec) +"pkX" = ( +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/surgeryobs) +"pla" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/xenobiology) +"pli" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/briefing_room) +"plv" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 8 + }, +/obj/machinery/meter, +/obj/machinery/airlock_sensor/airlock_interior{ + dir = 8; + id_tag = "northeast_solar_airlock_int_sensor"; + master_tag = "northeast_solar_airlock"; + pixel_x = 31; + pixel_y = -24; + req_one_access = list(11,24) + }, +/obj/effect/map_helper/airlock/sensor/int_sensor, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/solars/northeast) +"plA" = ( +/obj/structure/fence/corner, +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/mask, +/area/surface/outside/plains/station) +"plP" = ( +/turf/simulated/wall, +/area/surface/station/maintenance/substation/civilian) +"plR" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/pink/border{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/surgery) +"pml" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/station/crew_quarters/pool) +"pmx" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/cafeteria) +"pmP" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/obj/effect/floor_decal/spline/plain{ + dir = 9 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/station/crew_quarters/pool) +"pmZ" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/crew_quarters/heads/hos) +"pnA" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/iv_drip, +/turf/simulated/floor/tiled/old_tile/gray, +/area/surface/station/medical/surgery_storage) +"pnE" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"pnH" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/lino, +/area/surface/station/security/detectives_office) +"pnJ" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green, +/obj/effect/wingrille_spawn/reinforced, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + dir = 2; + id = "xenobio3"; + layer = 3.3; + name = "Containment Blast Doors" + }, +/turf/simulated/floor/plating, +/area/surface/station/rnd/xenobiology) +"pnP" = ( +/obj/structure/disposalpipe/tagger/partial{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/monofloor{ + dir = 1 + }, +/area/surface/station/quartermaster/delivery) +"poz" = ( +/turf/simulated/wall, +/area/surface/station/security/evidence_storage) +"poU" = ( +/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 = 10 + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/east/gnd) +"poV" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway) +"ppb" = ( +/obj/structure/table/glass, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/recharger, +/obj/item/roller{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/roller, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/medical/etc) +"ppu" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/green, +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + id = "atmoslockdown"; + layer = 3.3; + name = "Atmospherics Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/atmos) +"ppH" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/techfloor{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1379; + id_tag = "engine_airlock_pump" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/engineering/reactor_airlock) +"ppL" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "medbayrecquar"; + layer = 3.3; + name = "Medbay Quarantine Shutters"; + opacity = 0; + open_layer = 3.3 + }, +/obj/effect/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/reception) +"ppO" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/hydroponics/garden) +"ppQ" = ( +/obj/structure/sign/kiddieplaque, +/turf/simulated/wall/durasteel, +/area/surface/station/ai/upload) +"ppT" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 5 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/xenobiology) +"pqe" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/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 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/arrivals/cynosure/nopower) +"pqM" = ( +/obj/machinery/airlock_sensor/airlock_exterior{ + dir = 4; + frequency = 1380; + id_tag = "arrivals_dock_north_intsensor"; + pixel_x = 1; + pixel_y = 38 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 4 + }, +/obj/effect/floor_decal/rust/color_rusted{ + dir = 4 + }, +/obj/effect/map_helper/airlock/sensor/ext_sensor, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "steel_dirty"; + initial_flooring = /decl/flooring/tiling/steel_dirty + }, +/area/surface/outside/plains/station) +"pqY" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/light/small, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/atmos) +"pro" = ( +/obj/effect/floor_decal/techfloor{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/arrivals/cynosure/nopower) +"prA" = ( +/turf/simulated/open, +/area/surface/station/hallway/primary/groundfloor/west/elevator) +"prD" = ( +/obj/effect/floor_decal/borderfloorblack, +/obj/item/modular_computer/console/preset/command{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border, +/obj/machinery/keycard_auth{ + pixel_y = -22 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/crew_quarters/heads/hos) +"prS" = ( +/obj/machinery/power/smes/buildable{ + RCon_tag = "Substation - Engineering"; + charge = 2e+006 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/engineering/gnd) +"prX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/atmospherics) +"psl" = ( +/obj/effect/floor_decal/rust, +/obj/item/stack/tile/floor/white, +/turf/simulated/floor/plating, +/area/surface/station/medical/cloning) +"psr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/park) +"psC" = ( +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/surgery) +"psJ" = ( +/obj/effect/shuttle_landmark/cynosure/arrivals_station, +/turf/simulated/floor/plating/sif/planetuse, +/area/shuttle/arrival/station{ + dynamic_lighting = 1 + }) +"psP" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/maintenance/weststairwell/gnd) +"psX" = ( +/obj/machinery/lapvend, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/storage/primarytool) +"ptk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/surface/outpost/research/xenoarcheology/surface) +"pto" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning/dust/corner{ + dir = 8 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "steel_dirty"; + initial_flooring = /decl/flooring/tiling/steel_dirty + }, +/area/surface/outside/plains/station) +"pts" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/park) +"ptv" = ( +/obj/structure/cliff/automatic{ + dir = 9 + }, +/turf/simulated/floor/outdoors/dirt/sif, +/area/surface/outside/plains/plateau) +"ptB" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"ptC" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/lobby) +"ptQ" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "hosoffice" + }, +/turf/simulated/floor/plating, +/area/surface/station/crew_quarters/heads/hos) +"ptZ" = ( +/obj/structure/sign/pods, +/turf/simulated/wall, +/area/surface/outpost/research/xenoarcheology/surface) +"pun" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/flora/pottedplant/fern, +/obj/effect/catwalk_plated, +/obj/machinery/camera/network/security{ + c_tag = "SEC - Lobby"; + dir = 9 + }, +/obj/effect/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/plating, +/area/surface/station/security/lobby) +"puN" = ( +/obj/machinery/seed_extractor, +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/tiled/dark, +/area/surface/station/rnd/xenobiology/xenoflora) +"puR" = ( +/obj/effect/floor_decal/corner/white{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/diagonal, +/obj/machinery/air_sensor{ + frequency = 1441; + id_tag = "n2o_sensor" + }, +/obj/machinery/camera/network/engineering{ + c_tag = "Atmos Tank - Nitrous Oxide"; + dir = 9 + }, +/turf/simulated/floor/reinforced/n20, +/area/surface/station/engineering/atmos) +"pwl" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"pww" = ( +/obj/structure/bed/chair/shuttle{ + dir = 1 + }, +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -12; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/shuttle/exploration/general) +"pwx" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"pwL" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "xenobiocontain"; + layer = 3.3; + name = "Containment Blast Doors" + }, +/turf/simulated/floor/plating, +/area/surface/station/rnd/xenobiology) +"pxh" = ( +/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/tiled/steel/sif/planetuse{ + icon_state = "steel_dirty"; + initial_flooring = /decl/flooring/tiling/steel_dirty; + outdoors = 0 + }, +/area/surface/outside/plains/station) +"pxm" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular/open{ + id = "englockdown"; + layer = 3.3; + name = "Engineering Lockdown" + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/engineering/foyer) +"pxp" = ( +/obj/machinery/light/small, +/obj/effect/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 10 + }, +/obj/structure/table/standard, +/obj/item/weapon/paper_bin, +/obj/item/weapon/pen, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/interrogation) +"pxZ" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/camera/network/engineering{ + c_tag = "ENG - Engineering Hallway East" + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway) +"pyl" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 2; + name = "Research Division Access"; + req_one_access = list(47) + }, +/obj/machinery/door/firedoor/border_only, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/rnd/hallway/gnd) +"pyv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "steel_dirty"; + initial_flooring = /decl/flooring/tiling/steel_dirty; + outdoors = 0 + }, +/area/surface/outside/plains/station) +"pyz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/carpet, +/area/surface/station/crew_quarters/heads/hop) +"pyA" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "hosoffice" + }, +/turf/simulated/floor/plating, +/area/surface/station/crew_quarters/heads/hos) +"pyB" = ( +/obj/machinery/atmospherics/omni/mixer{ + active_power_usage = 7500; + tag_east = 1; + tag_east_con = 0.79; + tag_south = 1; + tag_south_con = 0.21; + tag_west = 2 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"pyD" = ( +/obj/effect/floor_decal/techfloor{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + id_tag = "eng_ew2_airlock"; + pixel_y = 25; + req_one_access = list(12) + }, +/obj/machinery/airlock_sensor{ + id_tag = "eng_ew2_airlock_sensor"; + pixel_x = -11; + pixel_y = 25 + }, +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/maintenance/east/gnd) +"pyL" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"pzq" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/gnd) +"pzz" = ( +/obj/structure/table/reinforced, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 10 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 10 + }, +/obj/machinery/door/window/southright{ + name = "Medical Reception"; + req_access = list(5) + }, +/obj/item/weapon/reagent_containers/food/drinks/britcup, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/reception) +"pzA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 8 + }, +/turf/simulated/wall/rshull, +/area/shuttle/exploration/general) +"pzZ" = ( +/turf/simulated/floor/plating, +/area/surface/station/maintenance/kitchen) +"pAP" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/structure/disposalpipe/junction/yjunction, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/gnd) +"pBf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24; + pixel_y = -12 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 4 + }, +/obj/structure/table/standard, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 4 + }, +/obj/item/clothing/glasses/science, +/obj/item/clothing/mask/gas, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/misc_lab) +"pBE" = ( +/obj/structure/bed/chair, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/arrivals/cynosure) +"pCl" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/green, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"pCm" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/camera/network/engineering{ + c_tag = "ENG - Reactor Hallway East"; + dir = 8 + }, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/surface/station/engineering/hallway/reactor) +"pCv" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/park) +"pCy" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/north) +"pDw" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + id = "ReactorPoolViewport"; + layer = 3.3; + name = "Reactor Cooling Pond Viewport Shutter" + }, +/obj/machinery/door/firedoor/border_only, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"pDQ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"pEh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/west/elevator) +"pEp" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 6 + }, +/turf/simulated/floor/tiled/asteroid_steel, +/area/surface/outside/plains/station) +"pEt" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/engineering{ + name = "Engineering Substation"; + req_one_access = list(11,24) + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/engineering/gnd) +"pEK" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/green/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/station/park) +"pES" = ( +/obj/machinery/atmospherics/binary/passive_gate{ + dir = 1; + icon_state = "on"; + unlocked = 1 + }, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/surface) +"pEY" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/medical/reception) +"pFg" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central5, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/surface/station/crew_quarters/gym) +"pGM" = ( +/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" + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/kitchen) +"pHa" = ( +/obj/effect/floor_decal/corner/green/full{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/outlet_injector{ + dir = 1; + frequency = 1441; + id = "waste_in"; + use_power = 1 + }, +/turf/simulated/floor/reinforced, +/area/surface/station/engineering/atmos) +"pHu" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/surgery) +"pHD" = ( +/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" + }, +/obj/machinery/button/remote/airlock{ + dir = 8; + id = "Medhallway"; + name = "Door Control"; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/hallway/gnd) +"pHJ" = ( +/obj/machinery/atmospherics/binary/pump, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/green/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/green/bordercorner2, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/engineering/atmos) +"pHX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/arrivals/cynosure) +"pHY" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/surface/station/library) +"pIi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/briefing_room) +"pIj" = ( +/obj/machinery/atmospherics/valve/digital{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/chapel) +"pIz" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/chapel) +"pID" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 4 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/rnd/xenobiology/xenoflora_isolation) +"pIY" = ( +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/camera/network/engineering{ + c_tag = "ENG - Solar West"; + dir = 1 + }, +/obj/effect/catwalk_plated/dark, +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/solars/west) +"pJy" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/conveyor_switch/oneway{ + id = "packageSort1" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/obj/effect/floor_decal/rust/steel_decals_rusted1{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/delivery) +"pKu" = ( +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/lockerroom) +"pKF" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/cafeteria) +"pKH" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/pink/border{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/status_display{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/surgery2) +"pKW" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/outpost/research/xenoarcheology/surface) +"pLf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/rnd/exploration) +"pLr" = ( +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/door/blast/regular/open{ + dir = 2; + id = "xenobio3"; + layer = 3.3; + name = "Containment Blast Doors" + }, +/obj/machinery/door/window/brigdoor/westleft{ + name = "Containment Pen"; + req_access = list(47) + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/rnd/xenobiology) +"pLz" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/surface/station/rnd/xenobiology) +"pLI" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan, +/obj/machinery/power/port_gen/pacman, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/handrail{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/exploration/cargo) +"pMn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/etc) +"pMA" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "atmoslockdown"; + layer = 3.3; + name = "Atmospherics Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/atmos) +"pNa" = ( +/turf/simulated/floor/outdoors/dirt/sif/planetuse, +/area/surface/outside/plains/station) +"pNy" = ( +/turf/simulated/floor/outdoors/sidewalk, +/area/surface/outside/plains/station) +"pNC" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 9 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 6 + }, +/turf/simulated/floor/water/deep{ + has_fish = 0 + }, +/area/surface/outside/station/reactorpond) +"pOh" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/structure/bed/chair/wood{ + dir = 1 + }, +/turf/simulated/floor/tiled/hydro, +/area/surface/station/park) +"pOA" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/research{ + name = "Research Locker Room"; + req_one_access = list(47) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/rnd/research_lockerroom) +"pOC" = ( +/turf/unsimulated/mask, +/area/surface/station/security/hallway/gnd) +"pPn" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/external, +/obj/effect/map_helper/airlock/door/simple, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/quartermaster/storage) +"pPr" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/open, +/area/surface/station/medical/etc) +"pPy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/item/weapon/stool/padded{ + dir = 8 + }, +/turf/simulated/floor/tiled/hydro, +/area/surface/station/rnd/xenobiology/xenoflora) +"pPG" = ( +/turf/simulated/floor/outdoors/sidewalk/slab, +/area/surface/outside/plains/station) +"pPS" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/east) +"pQA" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 8 + }, +/obj/structure/closet/jcloset, +/obj/item/weapon/soap/nanotrasen, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/janitor) +"pRi" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_waste) +"pRz" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/fuel, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/external{ + icon_state = "door_locked"; + id_tag = "expshuttle_door_cargo"; + locked = 1; + name = "Rear Hatch" + }, +/obj/machinery/button/remote/airlock{ + dir = 4; + id = "expshuttle_door_cargo"; + name = "Rear Hatch Release"; + pixel_x = -24; + specialfunctions = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/exploration/cargo) +"pRA" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/machinery/camera/network/medbay{ + c_tag = "MED - Foyer"; + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/reception) +"pRB" = ( +/obj/machinery/ai_status_display, +/turf/simulated/wall, +/area/surface/station/crew_quarters/caferestroom) +"pRP" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/hallway/primary/groundfloor/west/elevator) +"pSK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/park) +"pTc" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/plating, +/area/surface/station/rnd/xenobiology/xenoflora_isolation) +"pTz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/glass{ + name = "Cryogenic Storage" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/arrivals/cynosure/cryo) +"pTC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/etc) +"pUh" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/atmos) +"pUx" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/obj/effect/floor_decal/corner/white/diagonal, +/turf/simulated/floor/tiled/eris, +/area/surface/station/crew_quarters/locker) +"pUD" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/bordercorner{ + dir = 1 + }, +/obj/structure/closet, +/obj/item/clothing/shoes/boots/winter, +/obj/item/clothing/shoes/boots/winter, +/obj/item/clothing/shoes/boots/winter, +/obj/item/clothing/suit/storage/hooded/wintercoat, +/obj/item/clothing/suit/storage/hooded/wintercoat, +/obj/item/clothing/suit/storage/hooded/wintercoat, +/obj/item/weapon/melee/umbrella/random{ + pixel_y = -4 + }, +/obj/item/weapon/melee/umbrella/random, +/turf/simulated/floor/tiled, +/area/surface/station/arrivals/cynosure) +"pVb" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/gnd) +"pVi" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/rnd/xenobiology/xenoflora) +"pWa" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/red/bordercorner, +/obj/structure/table/standard, +/obj/item/device/radio, +/obj/item/device/radio, +/obj/item/device/radio, +/obj/item/device/radio, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/obj/item/weapon/tool/crowbar, +/obj/item/weapon/tool/crowbar, +/obj/item/weapon/tool/crowbar, +/obj/item/weapon/tool/crowbar, +/obj/item/weapon/hand_labeler, +/obj/machinery/recharger/wallcharger{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/lockerroom) +"pWe" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/surface/station/library) +"pWQ" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/hallway/gnd) +"pWW" = ( +/turf/simulated/wall, +/area/surface/station/maintenance/chapel) +"pXt" = ( +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 4; + name = "Sorting Office"; + sortType = "Sorting Office" + }, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/surface/station/quartermaster/delivery) +"pXw" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "marrivals_airlock_inner"; + locked = 1; + name = "Internal Access" + }, +/obj/effect/map_helper/airlock/door/int_door, +/obj/machinery/access_button/airlock_interior{ + master_tag = "marrivals_airlock"; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/arrivals/cynosure) +"pXz" = ( +/obj/structure/fence, +/turf/simulated/floor/outdoors/dirt/sif{ + outdoors = 0 + }, +/area/surface/outside/plains/station) +"pXC" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"pXL" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/catwalk_plated/dark, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/medbay/gnd) +"pYi" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance_hatch{ + frequency = 1379; + id_tag = "engine_airlock_exterior"; + name = "Reactor Access Exterior"; + req_access = list(11); + req_one_access = list() + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/engineering/reactor_airlock) +"pYq" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/evidence_storage) +"pYG" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/obj/machinery/camera/network/engine{ + c_tag = "ENG - Reactor Room South" + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"pZo" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/gnd) +"pZt" = ( +/obj/structure/table/bench/sifwooden/padded, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/machinery/computer/guestpass{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/lobby) +"qae" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/red/bordercorner, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/gnd) +"qai" = ( +/obj/structure/bookcase{ + name = "bookcase (Religious)" + }, +/turf/simulated/floor/wood, +/area/surface/station/library) +"qaq" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/ladder/up, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/kitchen) +"qas" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/rnd/xenobiology/xenoflora) +"qaw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/chemistry) +"qaK" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/etc) +"qaO" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/floor_decal/rust, +/obj/effect/map_helper/airlock/door/ext_door, +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "msouth_airlock_outer"; + locked = 1; + name = "External Access" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/hallway/primary/groundfloor/south) +"qaU" = ( +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/floor_decal/techfloor/hole{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/ai/upload) +"qbj" = ( +/obj/turbolift_map_holder/cynosure/center, +/turf/unsimulated/mask, +/area/surface/station/hallway/primary/groundfloor/east) +"qbC" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/atmos) +"qbK" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/maintenance/command{ + icon_state = "door_locked"; + id_tag = "aicoresecondary"; + locked = 1; + name = "Emergency Access"; + req_one_access = list() + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/ai/upload_foyer) +"qcf" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/danger, +/obj/effect/floor_decal/rust/color_rusted, +/obj/machinery/atmospherics/pipe/simple/hidden/red, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway) +"qcx" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/engineering{ + name = "Cargo Substation"; + req_one_access = list(11,24,50) + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/cargo/gnd) +"qcz" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "arc3_airlock_inner"; + locked = 1; + name = "Internal Access" + }, +/obj/effect/map_helper/airlock/door/int_door, +/obj/machinery/access_button/airlock_interior{ + dir = 1; + master_tag = "arc3_airlock"; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/outpost/research/xenoarcheology/surface) +"qcM" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible/red, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"qdF" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/station/crew_quarters/pool) +"qdT" = ( +/turf/simulated/shuttle/floor, +/area/shuttle/large_escape_pod1/station) +"qew" = ( +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled, +/area/surface/station/garage) +"qeP" = ( +/obj/machinery/atmospherics/tvalve/mirrored/bypass, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"qeT" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/railing, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/stairwell) +"qfd" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/cyan{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/light_switch{ + pixel_x = 12; + pixel_y = 24 + }, +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor/hole{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/ai/upload_foyer) +"qfh" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/xenobiology) +"qfE" = ( +/obj/machinery/newscaster{ + pixel_y = 26 + }, +/obj/structure/closet/wardrobe/detective, +/turf/simulated/floor/lino, +/area/surface/station/security/detectives_office) +"qfG" = ( +/obj/effect/floor_decal/borderfloorblack, +/obj/machinery/computer/secure_data{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border, +/obj/item/device/radio/intercom/department/security{ + dir = 1; + pixel_y = -21 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/dark, +/area/surface/station/crew_quarters/heads/hos) +"qfR" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/obj/structure/disposalpipe/segment, +/obj/item/weapon/stool/padded{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/station/crew_quarters/pool) +"qgI" = ( +/obj/structure/table/bench/wooden, +/obj/effect/floor_decal/techfloor/corner{ + dir = 5 + }, +/obj/effect/floor_decal/corner_techfloor_gray{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/wood/sif, +/area/surface/station/chapel/main) +"qhu" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/light_switch{ + pixel_x = 12; + pixel_y = 24 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 1 + }, +/obj/structure/table/steel, +/obj/item/weapon/paper_bin, +/obj/item/weapon/folder/yellow, +/obj/item/weapon/pen, +/obj/item/weapon/storage/box{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/box, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/delivery) +"qhE" = ( +/turf/simulated/wall, +/area/surface/station/security/processing) +"qhP" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/structure/table/standard, +/obj/item/weapon/storage/box/donut, +/obj/item/device/retail_scanner/security, +/obj/item/device/retail_scanner/security, +/turf/simulated/floor/tiled, +/area/surface/station/security/briefing_room) +"qhW" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/arrivals/cynosure) +"qij" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/bed/chair/shuttle, +/turf/simulated/shuttle/floor/white, +/area/shuttle/large_escape_pod1/station) +"qio" = ( +/obj/structure/cable{ + 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/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/east/gnd) +"qir" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/flora/pottedplant/stoutbush, +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = 30 + }, +/turf/simulated/floor/wood/sif, +/area/surface/station/chapel/main) +"qiC" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/bordercorner{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 21 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/storage) +"qiK" = ( +/obj/structure/table/steel, +/obj/item/device/t_scanner, +/obj/item/device/radio/headset/headset_eng, +/obj/item/weapon/cartridge/atmos, +/obj/item/weapon/cartridge/atmos, +/obj/item/clothing/ears/earmuffs, +/obj/item/clothing/ears/earmuffs, +/obj/item/device/pipe_painter, +/obj/machinery/camera/network/engineering{ + c_tag = "ENG - Atmospherics Northeast" + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"qiR" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/turf/simulated/floor/tiled/freezer, +/area/surface/station/crew_quarters/kitchen) +"qiX" = ( +/obj/machinery/mech_recharger, +/obj/item/device/radio/intercom/department/medbay{ + dir = 4; + pixel_x = -21 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/medical/emt_bay) +"qiZ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/valve/digital{ + dir = 4; + name = "Emergency Cooling Valve 2" + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"qjg" = ( +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/xenobiology) +"qjo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/red, +/obj/effect/catwalk_plated, +/obj/machinery/pipedispenser/disposal, +/turf/simulated/floor/plating, +/area/surface/station/engineering/atmos) +"qkc" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_engineering{ + name = "Engineering Workshop"; + req_one_access = list(11,24) + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/engineering/engineering_monitoring) +"qkh" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/button/remote/blast_door{ + id = "xenobio4"; + pixel_y = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/rnd/xenobiology) +"qkk" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/red/bordercorner, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/gnd) +"qkn" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/visible/black, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_waste) +"qkr" = ( +/turf/simulated/floor/outdoors/sidewalk/side, +/area/surface/outside/plains/station) +"qkt" = ( +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/item/weapon/stool/padded{ + dir = 1 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -24; + pixel_y = 12 + }, +/obj/effect/landmark/start{ + name = "Bartender" + }, +/turf/simulated/floor/lino, +/area/surface/station/crew_quarters/bar) +"qkN" = ( +/obj/machinery/status_display, +/turf/simulated/wall/r_wall, +/area/surface/station/ai/cyborg_station) +"qlH" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white{ + dir = 10 + }, +/obj/structure/disposalpipe/junction/yjunction{ + dir = 4 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/etc) +"qlW" = ( +/obj/structure/table/glass, +/obj/machinery/reagentgrinder, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/chemistry) +"qmm" = ( +/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{ + name = "Locker Room" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/crew_quarters/locker) +"qmG" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/engineering/gnd) +"qmI" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/purple/border, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/cloning) +"qmP" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/security{ + id_tag = "detdoor"; + name = "Detective Office"; + req_access = list(4); + req_one_access = list() + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/security/detectives_office) +"qmQ" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/floor_decal/techfloor/corner{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/camera/network/engine{ + c_tag = "ENG - Reactor Access"; + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/engineering/reactor_airlock) +"qnc" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/surface/station/chapel/main) +"qnJ" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning/dust/corner{ + dir = 1 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor + }, +/area/surface/station/maintenance/east/gnd) +"qnU" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/reactor) +"qoa" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/station) +"qof" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/external{ + frequency = 1380; + icon_state = "door_locked"; + id_tag = "arrivals_dock_south_outer"; + locked = 1; + name = "External Access" + }, +/obj/effect/map_helper/airlock/door/ext_door, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/arrivals/cynosure/nopower) +"qoy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/airlock_sensor/airlock_interior{ + dir = 1; + id_tag = "msouth_airlock_int_sensor"; + master_tag = "msouth_airlock"; + pixel_x = 24; + pixel_y = -31 + }, +/obj/effect/map_helper/airlock/sensor/int_sensor, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/south) +"qoF" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/security/interrogation) +"qpc" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/obj/machinery/airlock_sensor/airlock_interior{ + id_tag = "mnorth_airlock_int_sensor"; + master_tag = "mnorth_airlock"; + pixel_x = 24; + pixel_y = 31 + }, +/obj/effect/map_helper/airlock/sensor/int_sensor, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/north) +"qpj" = ( +/obj/machinery/power/smes/buildable{ + RCon_tag = "Substation - Research"; + charge = 1e+007 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/green, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/research/gnd) +"qpk" = ( +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outside/plains/plateau) +"qpm" = ( +/obj/item/wheelchair, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -24; + pixel_y = 12 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/storage/primary_storage) +"qpp" = ( +/obj/effect/floor_decal/techfloor/corner{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/item/device/radio/intercom/locked/ai_private{ + dir = 4; + pixel_x = 21 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/ai/upload) +"qpK" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/security/interrogation) +"qpQ" = ( +/obj/structure/ladder/updown, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/cargo/gnd) +"qpY" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/box/beakers{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/weapon/storage/box/syringes, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/purple/border, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/rnd/xenobiology) +"qqm" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/structure/table/bench/padded, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/hallway/primary/groundfloor/south) +"qqo" = ( +/obj/machinery/atmospherics/pipe/tank/air{ + start_pressure = 4559.63 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/east/gnd) +"qqq" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "xenobio1"; + pixel_x = 3; + pixel_y = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/rnd/xenobiology) +"qqG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/glass{ + name = "Cryogenic Storage" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/arrivals/cynosure/cryo) +"qqL" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1; + external_pressure_bound = 140; + external_pressure_bound_default = 140; + icon_state = "map_vent_out"; + use_power = 1 + }, +/obj/effect/overlay/snow/floor, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/station/engineering/atmos) +"qqX" = ( +/obj/structure/closet/crate/hydroponics, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lime/border, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/item/beehive_assembly, +/obj/item/bee_smoker, +/obj/item/honey_frame, +/obj/item/honey_frame, +/obj/item/honey_frame, +/obj/item/honey_frame, +/obj/item/honey_frame, +/obj/item/bee_pack, +/obj/item/weapon/tool/crowbar, +/turf/simulated/floor/tiled/hydro, +/area/surface/station/hydroponics) +"qrb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-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/station/security/range) +"qrd" = ( +/turf/simulated/floor/plating, +/area/surface/station/maintenance/east/gnd) +"qrk" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/groundfloor/civilian) +"qrz" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/grey/border, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/tiled, +/area/surface/station/crew_quarters/gym) +"qrK" = ( +/obj/effect/floor_decal/corner_steel_grid{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/north) +"qrZ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = 30 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/storage/primarytool) +"qsg" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/engineering/atmos) +"qsp" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/closet/firecloset, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"qsr" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/gnd) +"qsw" = ( +/obj/structure/bookcase{ + name = "bookcase (Reference)" + }, +/obj/item/weapon/book/codex/lore/vir, +/obj/item/weapon/book/codex/lore/vir, +/turf/simulated/floor/wood, +/area/surface/station/library) +"qsF" = ( +/obj/effect/floor_decal/techfloor/corner{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/effect/zone_divider, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/engineering/reactor_airlock) +"qtl" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "seclockdown"; + layer = 3.3; + name = "Security Lockdown" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/security/briefing_room) +"qtN" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/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/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/bordercorner2{ + dir = 4 + }, +/obj/structure/sign/directions/dorms{ + dir = 1; + pixel_y = 26 + }, +/obj/structure/sign/directions/command{ + dir = 1; + pixel_y = 32 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/zone_divider, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/groundfloor/civilian) +"qtT" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/wall, +/area/surface/station/crew_quarters/gym) +"quw" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular/open{ + id = "biohazard"; + layer = 3.3; + name = "Biohazard Shutter" + }, +/obj/structure/sign/warning/secure_area{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/rnd/hallway/gnd) +"quW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/hallway/primary/groundfloor/south) +"qvb" = ( +/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 = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/reactor) +"qvc" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/crew_quarters/locker) +"qvl" = ( +/obj/machinery/light/spot{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/storage) +"qvN" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/border, +/obj/machinery/newscaster{ + pixel_x = -26 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled, +/area/surface/station/arrivals/cynosure) +"qvR" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/obj/effect/floor_decal/spline/plain{ + dir = 10 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/station/crew_quarters/pool) +"qvY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/etc) +"qwb" = ( +/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/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/glass_mining{ + name = "Cargo Bay"; + req_one_access = list(50) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/quartermaster/lockerroom) +"qwc" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/reinforced/supermatter_core, +/area/surface/station/engineering/reactor_room) +"qwf" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/rnd/hallway/stairwell) +"qwu" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/ward) +"qwH" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/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; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "steel_dirty"; + initial_flooring = /decl/flooring/tiling/steel_dirty + }, +/area/surface/outside/plains/station) +"qxG" = ( +/obj/effect/catwalk_plated/dark, +/obj/structure/cable/cyan{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/cyan{ + d1 = 16; + d2 = 0; + icon_state = "16-0" + }, +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/zpipe/up/supply, +/obj/machinery/button/remote/airlock{ + id = "aicoresecondary"; + name = "Door Bolt Control"; + pixel_x = 6; + pixel_y = 24; + req_access = list(19); + specialfunctions = 4 + }, +/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers, +/obj/machinery/button/remote/blast_door{ + id = "aiuploadblast"; + name = "AI Upload Blast Door Control"; + pixel_x = -6; + pixel_y = 24; + req_one_access = list(19) + }, +/obj/machinery/camera/network/command{ + c_tag = "AI - Upload Foyer Lower" + }, +/turf/simulated/floor/plating, +/area/surface/station/ai/upload_foyer) +"qyi" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + 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/plating, +/area/surface/station/maintenance/east/gnd) +"qyu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/techfloor/corner{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/ai/upload) +"qyR" = ( +/obj/structure/table/woodentable, +/obj/item/device/paicard, +/obj/item/weapon/deck/cah{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/weapon/deck/cah/black{ + pixel_x = -4; + pixel_y = 6 + }, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/cafeteria) +"qzj" = ( +/obj/structure/extinguisher_cabinet{ + dir = 8; + pixel_x = -30 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/range) +"qzv" = ( +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/bordercorner{ + dir = 1 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/landmark/start{ + name = "Geneticist" + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/cloning) +"qzy" = ( +/obj/structure/disposaloutlet{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk, +/obj/effect/decal/warning_stripes{ + layer = 2.8 + }, +/turf/simulated/floor/plating, +/area/surface/station/rnd/xenobiology) +"qzz" = ( +/turf/simulated/floor/water/deep, +/area/surface/outside/ocean) +"qzC" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/ladder/updown, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/weststairwell/gnd) +"qzE" = ( +/obj/effect/floor_decal/techfloor{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1380; + id_tag = "arrivals_dock_north_pump" + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/arrivals/cynosure/nopower) +"qzQ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/surface/station/crew_quarters/kitchen) +"qzX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow/border{ + 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/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/workshop) +"qAm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/surface/station/library) +"qAD" = ( +/obj/machinery/disposal, +/obj/effect/floor_decal/industrial/warning/full, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/xenobiology) +"qAP" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/catwalk_plated/dark, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/surgery) +"qBy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/monofloor{ + dir = 1 + }, +/area/surface/station/security/lobby) +"qBQ" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/turf/simulated/floor/tiled/monofloor{ + dir = 1 + }, +/area/surface/station/garage) +"qCK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/yellow/border, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/reactor) +"qCT" = ( +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/machinery/light_switch{ + pixel_x = 12; + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/surface/station/library) +"qCW" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 8 + }, +/obj/machinery/airlock_sensor/airlock_exterior{ + dir = 4; + frequency = 1380; + id_tag = "escape_dock_south_starboard_intsensor"; + master_tag = "msouth_airlock"; + pixel_x = -31; + pixel_y = 23 + }, +/obj/effect/map_helper/airlock/sensor/int_sensor, +/turf/simulated/floor/tiled, +/area/surface/station/arrivals/cynosure) +"qDq" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/surface/station/security/lobby) +"qDs" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/east/gnd) +"qDx" = ( +/obj/structure/extinguisher_cabinet{ + dir = 1; + pixel_y = 30 + }, +/obj/structure/filingcabinet/chestdrawer, +/turf/simulated/floor/lino, +/area/surface/station/security/detectives_office) +"qDD" = ( +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/ward) +"qEr" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/etc) +"qEz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/zone_divider, +/turf/simulated/wall, +/area/surface/station/engineering/reactor_airlock) +"qEU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 10 + }, +/obj/structure/shuttle/engine/heater, +/turf/simulated/wall/rshull, +/area/shuttle/exploration/cargo) +"qEX" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/machinery/camera/network/command{ + c_tag = "AI - Upload North"; + dir = 1 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/ai/upload) +"qFe" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/solars/northeast) +"qFj" = ( +/obj/machinery/atmospherics/unary/heater{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/rnd/xenobiology/xenoflora_isolation) +"qFm" = ( +/obj/structure/sign/warning/secure_area, +/turf/simulated/wall/r_wall, +/area/surface/station/ai/upload) +"qFo" = ( +/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{ + dir = 4; + pixel_x = -24; + pixel_y = 12 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/table/rack, +/obj/item/weapon/storage/box/seccarts, +/obj/item/weapon/storage/box/handcuffs{ + pixel_x = 2 + }, +/obj/item/weapon/storage/box/flashbangs{ + pixel_x = -3; + pixel_y = -3 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/equiptment_storage/ses) +"qFL" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red, +/obj/machinery/computer/general_air_control/large_tank_control{ + dir = 1; + input_tag = "n2_in"; + name = "Nitrogen Tank Control"; + output_tag = "n2_out"; + sensors = list("n2_sensor" = "Tank") + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/red/bordercorner2, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/engineering/atmos) +"qFX" = ( +/obj/structure/closet/crate/hydroponics/prespawned, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 21 + }, +/obj/item/weapon/material/knife, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/rnd/xenobiology/xenoflora_isolation) +"qGc" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/park) +"qGi" = ( +/obj/machinery/recharge_station, +/obj/effect/floor_decal/corner/white/diagonal, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/white, +/area/surface/station/crew_quarters/locker) +"qGo" = ( +/obj/machinery/mass_driver{ + dir = 4; + id = "enginecore" + }, +/obj/machinery/power/supermatter, +/obj/effect/engine_setup/core, +/turf/simulated/floor/greengrid/nitrogen, +/area/surface/station/engineering/reactor_room) +"qGv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/pink{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/etc) +"qHl" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/engineering{ + name = "Cargo Substation"; + req_one_access = list(50) + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/cargo/gnd) +"qHv" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/engineering/atmos) +"qHD" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor/glass, +/obj/structure/noticeboard{ + pixel_y = 30 + }, +/obj/machinery/door/window/eastleft{ + name = "Head of Personnel's Desk" + }, +/obj/machinery/door/window/westright{ + name = "Head of Personnel's Desk"; + req_one_access = list(57) + }, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 4; + icon_state = "shutter0"; + id = "hop_office_desk"; + layer = 3.3; + name = "HoP Office Desk Shutter"; + opacity = 0; + open_layer = 3.3 + }, +/obj/item/sticky_pad/random, +/obj/item/weapon/deskbell, +/turf/simulated/floor/tiled, +/area/surface/station/crew_quarters/heads/hop) +"qHF" = ( +/obj/structure/closet/secure_closet/freezer/kitchen, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -24; + pixel_y = 12 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/surface/station/crew_quarters/kitchen) +"qHX" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 4 + }, +/turf/simulated/floor/tiled/monofloor, +/area/surface/station/arrivals/cynosure) +"qIh" = ( +/obj/effect/floor_decal/industrial/warning/dust, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/obj/machinery/airlock_sensor/airlock_exterior{ + dir = 1; + id_tag = "marrivals_airlock_ext_sensor"; + master_tag = "marrivals_airlock"; + pixel_x = -35; + pixel_y = -31 + }, +/obj/effect/map_helper/airlock/sensor/ext_sensor, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor + }, +/area/surface/station/arrivals/cynosure) +"qIj" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/etc) +"qIt" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/machinery/camera/network/ground_floor{ + c_tag = "Ground Floor - Arrivals South"; + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/station/arrivals/cynosure) +"qIX" = ( +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/obj/machinery/light/spot{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/engineering/atmos) +"qJk" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/workshop) +"qJq" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/hallway/primary/groundfloor/south) +"qJC" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/purple/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/misc_lab) +"qKg" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/structure/table/bench/padded, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/surgeryobs) +"qKj" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/machinery/papershredder, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/crew_quarters/heads/hos) +"qKp" = ( +/obj/structure/railing, +/turf/simulated/open, +/area/surface/station/hallway/primary/groundfloor/west/elevator) +"qKr" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/corner/orange/border, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway) +"qKv" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/structure/table/bench/padded, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/surgeryobs) +"qKS" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "steel_dirty"; + initial_flooring = /decl/flooring/tiling/steel_dirty + }, +/area/surface/outside/plains/station) +"qLe" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 8; + name = "CO2 to Mixing" + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"qLK" = ( +/obj/item/modular_computer/console/preset/security{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/turf/simulated/floor/tiled, +/area/surface/station/security/lobby) +"qMg" = ( +/obj/machinery/portable_atmospherics/powered/scrubber, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/atmos) +"qMT" = ( +/obj/effect/floor_decal/corner/pink{ + dir = 5 + }, +/obj/structure/bed/roller, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/medical/etc) +"qMW" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 10 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/water/deep{ + has_fish = 0 + }, +/area/surface/outside/station/reactorpond) +"qNs" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 9 + }, +/obj/effect/zone_divider, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor + }, +/area/surface/outside/plains/station) +"qOg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/turf/simulated/floor/tiled/old_tile/gray, +/area/surface/station/medical/surgery_storage) +"qOT" = ( +/obj/machinery/atmospherics/binary/pump, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"qPb" = ( +/obj/structure/cliff/automatic{ + dir = 4 + }, +/turf/simulated/floor/outdoors/grass/sif, +/area/surface/outside/plains/plateau) +"qPc" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 6 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/structure/railing, +/turf/simulated/floor/water/deep{ + has_fish = 0 + }, +/area/surface/outside/station/reactorpond) +"qPk" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/pink/border{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/machinery/dnaforensics, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 21 + }, +/obj/machinery/camera/network/security{ + c_tag = "SEC - Forensics"; + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/security/detectives_office/lab) +"qQd" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/effect/zone_divider, +/turf/simulated/floor/water/pool, +/area/surface/station/crew_quarters/pool) +"qRt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/corner/pink/full{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/medical/etc) +"qRK" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/green/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/east) +"qSj" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/water/deep{ + has_fish = 0 + }, +/area/surface/outside/station/reactorpond) +"qSB" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/surface/station/crew_quarters/kitchen) +"qSF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 9 + }, +/turf/simulated/floor/tiled/hydro, +/area/surface/station/rnd/xenobiology/xenoflora) +"qTb" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/freezer{ + name = "Kitchen Cold Room"; + req_one_access = list(28) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/crew_quarters/kitchen) +"qTk" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/engineering{ + name = "Atmospherics Substation"; + req_one_access = list(11,24) + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/atmospherics) +"qTo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/turf/simulated/wall/r_wall, +/area/surface/station/maintenance/solars/northeast) +"qTC" = ( +/obj/structure/bed/chair/office/dark, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/chemistry) +"qTK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/surface/station/security/equiptment_storage/ses) +"qUj" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/etc) +"qUk" = ( +/obj/structure/table/standard, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 8 + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/surface/station/storage/primarytool) +"qUN" = ( +/obj/machinery/atmospherics/unary/freezer{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/rnd/xenobiology/xenoflora_isolation) +"qVj" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/security/detectives_office) +"qVk" = ( +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "medbayquar"; + layer = 3.3; + name = "Medbay Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/medical/surgery_storage) +"qVD" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "ReactorWasteHandling01"; + name = "Reactor Waste Handling Access"; + pixel_x = -24; + req_one_access = list(11,24) + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"qVL" = ( +/obj/effect/floor_decal/corner/purple/diagonal, +/obj/effect/floor_decal/corner/orange{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/outlet_injector{ + dir = 8; + frequency = 1441; + id = "tox_in"; + use_power = 1 + }, +/turf/simulated/floor/reinforced/phoron, +/area/surface/station/engineering/atmos) +"qVN" = ( +/obj/effect/floor_decal/techfloor{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1380; + id_tag = "arrivals_dock_south_pump" + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/arrivals/cynosure/nopower) +"qVP" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/green{ + dir = 8 + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"qVR" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/pink/border{ + dir = 1 + }, +/obj/machinery/camera/network/medbay{ + c_tag = "MED - Operating Theatre 1" + }, +/obj/machinery/optable, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/surgery) +"qVW" = ( +/obj/effect/floor_decal/techfloor{ + dir = 5 + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/cyan{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24; + pixel_y = -12 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/ai/server_room) +"qVX" = ( +/obj/structure/closet/gmcloset, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/item/device/retail_scanner/civilian{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/device/retail_scanner/civilian, +/obj/item/clothing/head/that, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/bar) +"qWv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/turf/simulated/floor/tiled, +/area/surface/station/park) +"qWD" = ( +/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 = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/hallway/gnd) +"qWO" = ( +/obj/item/device/holowarrant, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/item/clothing/glasses/hud/security, +/obj/structure/closet/secure_closet/security/cynosure, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/lockerroom) +"qWT" = ( +/obj/effect/catwalk_plated/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/storage) +"qWU" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"qXg" = ( +/obj/structure/closet/crate/science, +/obj/item/weapon/surgical/circular_saw, +/obj/item/weapon/surgical/scalpel, +/obj/item/weapon/autopsy_scanner, +/obj/item/weapon/weldingtool, +/obj/item/clothing/head/welding, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/purple/border, +/obj/item/device/radio/intercom{ + pixel_y = -21 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/rnd/xenobiology) +"qXo" = ( +/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/corner/white/diagonal, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled/eris, +/area/surface/station/crew_quarters/locker) +"qXD" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/chapel) +"qXG" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/lattice, +/obj/structure/railing, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 32; + d2 = 2; + icon_state = "32-2" + }, +/turf/simulated/open, +/area/surface/station/maintenance/weststairwell/gnd) +"qXV" = ( +/obj/machinery/biogenerator, +/obj/effect/floor_decal/spline/plain{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/rnd/xenobiology/xenoflora) +"qXW" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/obj/structure/extinguisher_cabinet{ + dir = 8; + pixel_x = -30 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/station/crew_quarters/pool) +"qYa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 8 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/shuttle/exploration/general) +"qYf" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/surface/station/security/detectives_office) +"qYz" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/open, +/area/surface/station/hallway/primary/groundfloor/west/elevator) +"qYJ" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/exploration/cargo) +"qZB" = ( +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/etc) +"qZC" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/green/bordercorner, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/garage) +"rav" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing, +/obj/structure/cable{ + d1 = 16; + d2 = 0; + icon_state = "16-0" + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/camera/network/engineering{ + c_tag = "ENG - Solar West Access" + }, +/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers, +/obj/machinery/atmospherics/pipe/zpipe/up/supply, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/weststairwell/gnd) +"raN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/station/park) +"raU" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + id = "ReactorPoolViewport"; + layer = 3.3; + name = "Reactor Cooling Pond Viewport Shutter" + }, +/obj/machinery/door/firedoor/border_only, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"rbL" = ( +/obj/item/weapon/stool/padded{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/camera/network/civilian{ + c_tag = "CIV - Bar"; + dir = 1 + }, +/obj/machinery/light, +/obj/effect/landmark/start{ + name = "Bartender" + }, +/turf/simulated/floor/lino, +/area/surface/station/crew_quarters/bar) +"rbM" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/gate/thin/open{ + dir = 8; + icon_state = "shutter2_0"; + id = "chemcounter"; + layer = 3.3; + name = "Pharmacy Shutter"; + open_layer = 3.3 + }, +/turf/simulated/floor/plating, +/area/surface/station/medical/chemistry) +"rcp" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red, +/obj/machinery/computer/general_air_control/large_tank_control{ + dir = 1; + input_tag = "waste_in"; + name = "Gas Mix Tank Control"; + output_tag = "waste_out"; + sensors = list("waste_sensor" = "Tank") + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"rcJ" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/effect/landmark/start{ + name = "Chaplain" + }, +/turf/simulated/floor/lino, +/area/surface/station/chapel/office) +"rdq" = ( +/obj/machinery/atmospherics/pipe/tank/air{ + dir = 4; + start_pressure = 4559.63 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/surgery) +"rds" = ( +/obj/effect/floor_decal/techfloor{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1379; + id_tag = "marrivals_airlock_pump" + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/arrivals/cynosure) +"rdw" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/highsecurity{ + name = "AI Upload"; + req_one_access = list(16) + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/ai/upload) +"rdT" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/medical/emt_bay) +"red" = ( +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "medbayquar"; + layer = 3.3; + name = "Medbay Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/medical/surgery) +"rej" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green, +/obj/machinery/meter, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"ret" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/engineering{ + name = "Engineering Substation"; + req_one_access = list(11,24) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/engineering/gnd) +"rez" = ( +/obj/effect/floor_decal/borderfloorwhite/corner, +/obj/effect/floor_decal/corner/purple/bordercorner, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/xenobiology) +"reB" = ( +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/dirt/sif, +/area/surface/outside/plains/station) +"reM" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/east/gnd) +"rfi" = ( +/turf/simulated/floor/tiled, +/area/surface/station/engineering/workshop) +"rfn" = ( +/obj/machinery/atmospherics/valve/digital/open, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/engineering/atmos) +"rfo" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/surface/station/hydroponics) +"rfr" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/gnd) +"rft" = ( +/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/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/station/solar/northeastsolar) +"rfz" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"rgv" = ( +/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/yellow, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/gnd) +"rgJ" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/brown/bordercorner, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/storage) +"rgP" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock/security{ + id_tag = null; + name = "Security Processing" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/security/processing) +"rhy" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/pink/border{ + dir = 8 + }, +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/item/weapon/storage/box/gloves{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/weapon/storage/box/evidence, +/obj/item/weapon/storage/box/bodybags{ + pixel_x = 2; + pixel_y = 3 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/security/detectives_office/lab) +"rhB" = ( +/obj/machinery/door/blast/regular/open{ + id = "seclockdown"; + layer = 3.3; + name = "Security Lockdown" + }, +/obj/machinery/door/blast/regular/open{ + id = "seclockdown"; + layer = 3.3; + name = "Security Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/security/processing) +"rhP" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/ward) +"rif" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/crew_quarters/cafeteria) +"ril" = ( +/obj/effect/floor_decal/borderfloorwhite/corner, +/obj/effect/floor_decal/corner/paleblue/bordercorner, +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/ward) +"rje" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/structure/table/marble, +/turf/simulated/floor/tiled/eris/cafe, +/area/surface/station/crew_quarters/cafeteria) +"rjq" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/camera/network/security{ + c_tag = "SEC - Locker Room"; + dir = 1 + }, +/obj/effect/landmark/start{ + name = "Security Officer" + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/lockerroom) +"rjv" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/bed/chair/wood{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/cafeteria) +"rjQ" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad2" + }, +/obj/machinery/door/airlock/glass_external, +/obj/effect/map_helper/airlock/door/simple, +/turf/simulated/floor/plating, +/area/surface/station/quartermaster/storage) +"rjR" = ( +/obj/machinery/vending/wallmed1{ + layer = 3.3; + name = "Emergency NanoMed"; + pixel_x = 28 + }, +/obj/structure/bed/chair/shuttle, +/turf/simulated/shuttle/floor/white, +/area/shuttle/large_escape_pod1/station) +"rko" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/item/modular_computer/console/preset/medical, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/ward) +"rkW" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "steel_dirty"; + initial_flooring = /decl/flooring/tiling/steel_dirty + }, +/area/surface/outside/plains/station) +"rlb" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/hallway/secondary/groundfloor/civilian) +"rln" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/surgery) +"rlN" = ( +/obj/machinery/atmospherics/portables_connector/fuel{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/phoron, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/exploration/cargo) +"rmd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/cafeteria) +"rmG" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 10 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/reactor) +"rmM" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/park) +"rmN" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/zpipe/up{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/zpipe/up/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 16; + d2 = 0; + icon_state = "16-0" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/railing, +/obj/structure/disposalpipe/up{ + dir = 4 + }, +/obj/machinery/power/sensor{ + name = "Powernet Sensor - Research Subgrid"; + name_tag = "Research Subgrid" + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/research/gnd) +"rmX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/xenobiology) +"rne" = ( +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outside/plains/plateau) +"rng" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/arrivals/cynosure) +"rnm" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_smes) +"rnC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/gnd) +"rnK" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway) +"rnV" = ( +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -12; + pixel_y = -24 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/stairwell) +"rnZ" = ( +/obj/structure/cable{ + 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 + }, +/obj/machinery/navbeacon/patrol{ + location = "SEC"; + next_patrol = "NH1" + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central2, +/obj/effect/floor_decal/steeldecal/steel_decals_central6, +/mob/living/bot/secbot/beepsky, +/obj/item/device/radio/beacon, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/hallway/primary/groundfloor/north) +"roh" = ( +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/solar, +/obj/effect/zone_divider, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "steel_dirty"; + initial_flooring = /decl/flooring/tiling/steel_dirty + }, +/area/surface/outside/station/solar/westsolar) +"roq" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"roL" = ( +/obj/effect/zone_divider, +/turf/simulated/wall/r_wall, +/area/surface/station/crew_quarters/pool) +"rpd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/reception) +"rpV" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red, +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "atmoslockdown"; + layer = 3.3; + name = "Atmospherics Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/atmos) +"rqz" = ( +/obj/structure/closet/secure_closet/medical2, +/turf/simulated/floor/tiled/old_tile/gray, +/area/surface/station/medical/surgery_storage) +"rrj" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 4 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/cloning) +"rsE" = ( +/turf/simulated/floor/tiled/old_cargo/gray, +/area/surface/station/janitor) +"rtv" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/obj/item/weapon/stool/padded{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/station/crew_quarters/pool) +"rtB" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/xenobiology) +"rue" = ( +/obj/structure/closet, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/random/maintenance/engineering, +/obj/random/maintenance/engineering, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/atmos) +"rul" = ( +/obj/effect/floor_decal/corner_steel_grid{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central4{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/station/crew_quarters/pool) +"rum" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/hydro, +/area/surface/station/rnd/xenobiology/xenoflora) +"rut" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/security/equiptment_storage/ses) +"ruB" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad" + }, +/turf/simulated/floor/plating, +/area/surface/station/quartermaster/storage) +"ruC" = ( +/obj/structure/table/bench/sifwooden/padded, +/obj/item/device/radio/intercom{ + pixel_y = -21 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/surface/station/security/lobby) +"ruW" = ( +/obj/machinery/portable_atmospherics/canister/empty, +/obj/machinery/sparker{ + id = "Mresearch"; + pixel_x = -18 + }, +/obj/machinery/camera/network/research{ + c_tag = "Research - Miscellaneous Test Chamber"; + dir = 5; + network = list("Research","Miscellaneous Reseach") + }, +/turf/simulated/floor/reinforced, +/area/surface/station/rnd/misc_lab) +"rvF" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/brown/bordercorner, +/obj/machinery/camera/network/ground_floor{ + c_tag = "Ground Floor - West Hallway 2"; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/west) +"rvG" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/surface/station/hallway/primary/groundfloor/west/elevator) +"rvR" = ( +/obj/effect/floor_decal/corner_steel_grid{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/gnd) +"rwH" = ( +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/engineering/gnd) +"rwK" = ( +/obj/machinery/button/remote/airlock{ + dir = 1; + id = "MedbayFoyer"; + name = "Foyer Door"; + pixel_x = 1; + pixel_y = -24 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/etc) +"rwO" = ( +/obj/structure/table/standard, +/obj/item/sticky_pad/random, +/turf/simulated/floor/tiled/dark, +/area/surface/station/hallway/secondary/groundfloor/civilian) +"rwW" = ( +/obj/structure/cliff/automatic, +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outside/plains/plateau) +"rxt" = ( +/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/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway) +"rxC" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/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/surface/station/hallway/secondary/groundfloor/civilian) +"rxG" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance_hatch{ + frequency = 1379; + id_tag = "engine_airlock_interior"; + name = "Reactor Access Interior"; + req_access = list(11); + req_one_access = list() + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/engineering/reactor_airlock) +"rxO" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/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/manifold/hidden/supply, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway) +"rxX" = ( +/obj/effect/catwalk_plated/dark, +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/effect/zone_divider, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_smes) +"ryD" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/obj/machinery/door/airlock/glass_external{ + frequency = 1380; + icon_state = "door_locked"; + id_tag = "arrivals_dock_north_inner"; + locked = 1; + name = "Internal Access" + }, +/obj/effect/map_helper/airlock/door/int_door, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/arrivals/cynosure/nopower) +"rza" = ( +/obj/structure/window/reinforced, +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/arrivals/cynosure) +"rze" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + id = "misclab"; + layer = 3.3; + name = "Test Chamber Blast Doors" + }, +/turf/simulated/floor/plating, +/area/surface/station/rnd/misc_lab) +"rzl" = ( +/obj/machinery/ai_status_display, +/turf/simulated/wall/r_wall, +/area/surface/station/crew_quarters/heads/hos) +"rzn" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/green/border, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/south) +"rzu" = ( +/obj/structure/bed/chair/wood{ + dir = 1 + }, +/turf/simulated/floor/tiled/hydro, +/area/surface/station/park) +"rzv" = ( +/obj/structure/ladder, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/storage/emergency/sec) +"rzR" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/glass{ + name = "Library" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/library) +"rzU" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/hallway/primary/groundfloor/north) +"rAx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/storage) +"rAB" = ( +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/monofloor{ + dir = 4 + }, +/area/surface/station/security/processing) +"rAD" = ( +/turf/simulated/wall, +/area/surface/station/rnd/xenobiology/xenoflora_isolation) +"rBs" = ( +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/stairwell) +"rBW" = ( +/obj/effect/floor_decal/corner_steel_grid{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/lobby) +"rCy" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/holosign/surgery{ + id = "op2" + }, +/obj/machinery/door/airlock/medical{ + name = "Operating Theatre 2"; + req_one_access = list(45) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/medical/surgery2) +"rCJ" = ( +/obj/effect/floor_decal/industrial/outline/blue, +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/effect/engine_setup/coolant_canister, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_waste) +"rCN" = ( +/obj/structure/cable/green{ + 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/wood, +/area/surface/station/crew_quarters/cafeteria) +"rCU" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"rDt" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/obj/structure/sign/warning/nosmoking_2{ + pixel_y = -32 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"rDP" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/machinery/computer/crew{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/etc) +"rEa" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/gnd) +"rEh" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/item/device/holowarrant, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/item/clothing/glasses/hud/security, +/obj/structure/closet/secure_closet/security/cynosure, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/lockerroom) +"rEs" = ( +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 21 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"rEF" = ( +/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers, +/obj/machinery/atmospherics/pipe/zpipe/up/supply, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/railing, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/green{ + d1 = 16; + d2 = 0; + icon_state = "16-0" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/structure/disposalpipe/up, +/obj/machinery/power/sensor{ + name = "Powernet Sensor - Medbay Subgrid"; + name_tag = "Medbay Subgrid" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/medbay/gnd) +"rFB" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/floor_decal/corner/white/diagonal, +/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/white, +/area/surface/station/crew_quarters/locker) +"rFP" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/catwalk_plated/dark, +/obj/machinery/door/blast/regular{ + id = "ReactorWasteHandling01"; + name = "Reactor Waste Handling Access" + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_waste) +"rFS" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/station/solar/northeastsolar) +"rGc" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/hallway/gnd) +"rGw" = ( +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/industrial/danger/corner, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "steel_dirty"; + initial_flooring = /decl/flooring/tiling/steel_dirty + }, +/area/surface/outside/plains/station) +"rGF" = ( +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/yellow/bordercorner, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway) +"rHb" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/surface/station/hallway/primary/groundfloor/north) +"rHf" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/obj/structure/flora/pottedplant/largebush, +/turf/simulated/floor/tiled/freezer, +/area/surface/station/crew_quarters/pool) +"rHJ" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/vehicle/train/trolley{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/quartermaster/storage) +"rIx" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/reactor) +"rIC" = ( +/obj/structure/stairs/spawner/south, +/turf/simulated/floor/plating, +/area/surface/station/park) +"rIJ" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass{ + name = "Gym" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/library) +"rIQ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/east/gnd) +"rIV" = ( +/obj/random/crate, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/surgery) +"rJl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/surface/station/engineering/atmos) +"rJz" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/station) +"rJN" = ( +/obj/structure/table/glass, +/obj/structure/closet/secure_closet/medical_wall/pills{ + pixel_x = -32 + }, +/obj/item/device/radio/intercom/department/medbay{ + dir = 1; + pixel_y = -21 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/etc) +"rJP" = ( +/turf/simulated/wall, +/area/surface/station/crew_quarters/gym) +"rJR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/etc) +"rKa" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/purple/border, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/gnd) +"rKh" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/cafeteria) +"rKD" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/surface/station/chapel/main) +"rKV" = ( +/obj/machinery/portable_atmospherics/hydroponics/soil, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/grass, +/area/surface/station/hydroponics/garden) +"rLw" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 8 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + id = "atmoslockdown"; + layer = 3.3; + name = "Atmospherics Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/atmos) +"rLy" = ( +/obj/machinery/atmospherics/valve/digital, +/obj/machinery/portable_atmospherics/powered/scrubber, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/east/gnd) +"rLA" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/park) +"rLV" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/security/interrogation) +"rMr" = ( +/obj/structure/closet/crate/science, +/obj/random/contraband, +/obj/random/contraband, +/obj/random/maintenance/medical, +/obj/random/maintenance/medical, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/turf/simulated/floor/plating, +/area/surface/station/medical/cloning) +"rMs" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/external{ + frequency = 1380; + icon_state = "door_locked"; + id_tag = "escape_dock_south_starboard_outer"; + locked = 1; + name = "External Access" + }, +/obj/effect/map_helper/airlock/door/ext_door, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/arrivals/cynosure) +"rMJ" = ( +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/machinery/light_switch{ + pixel_x = 12; + pixel_y = 24 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/bordercorner{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 1 + }, +/obj/item/device/radio/intercom/department/security{ + dir = 8; + pixel_x = 21 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/lockerroom) +"rMU" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/crew_quarters/heads/hop) +"rNb" = ( +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 10 + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/surface/station/storage/primarytool) +"rNj" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/structure/table/marble, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + pixel_y = -21 + }, +/obj/item/weapon/material/ashtray/glass, +/obj/machinery/door/blast/gate/thin{ + dir = 8; + id = "bar2"; + layer = 3.3 + }, +/turf/simulated/floor/lino, +/area/surface/station/crew_quarters/bar) +"rNx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/navbeacon/patrol{ + location = "PK3"; + next_patrol = "WH1" + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central6, +/obj/effect/floor_decal/steeldecal/steel_decals_central2, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/park) +"rNB" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway) +"rNP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/maintenance{ + req_one_access = list(12) + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/chapel) +"rNY" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/security{ + name = "Evidence Storage" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/security/evidence_storage) +"rOh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/chemistry) +"rOl" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/machinery/button/remote/airlock{ + dir = 1; + id = "MedbayFoyer"; + layer = 2.9; + name = "Foyer Door"; + pixel_y = 5 + }, +/obj/item/device/radio/phone/medbay{ + name = "Reception Emergency Phone"; + pixel_y = -6 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/reception) +"rON" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/blue, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/kitchen) +"rPa" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/red, +/obj/machinery/meter, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"rPK" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/item/weapon/stool/padded{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/security/detectives_office/lab) +"rPP" = ( +/obj/structure/sign/warning/nosmoking_2, +/turf/simulated/wall, +/area/surface/station/maintenance/substation/atmospherics) +"rPT" = ( +/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/white, +/area/surface/station/security/detectives_office/lab) +"rRt" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/tiled/hydro, +/area/surface/station/hydroponics) +"rRx" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central5, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/foyer) +"rRy" = ( +/turf/simulated/floor/outdoors/dirt/sif, +/area/surface/outside/plains/plateau) +"rRA" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/item/device/radio/intercom/department/security{ + dir = 8; + pixel_x = 21 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/interrogation) +"rRE" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/surface/station/security/detectives_office/lab) +"rRN" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/security/gnd) +"rRO" = ( +/obj/structure/stairs/spawner/north, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/workshop) +"rSi" = ( +/obj/structure/table/steel_reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/machinery/magnetic_controller, +/obj/item/weapon/storage/box/flashbangs, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/range) +"rSp" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/weapon/gun/energy/taser{ + pixel_y = -2 + }, +/obj/item/weapon/gun/energy/taser, +/obj/item/weapon/gun/energy/stunrevolver, +/obj/item/weapon/gun/energy/stunrevolver{ + pixel_y = 4 + }, +/obj/machinery/door/window/northleft, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/equiptment_storage/ses) +"rTa" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/surface/station/crew_quarters/heads/hop) +"rTm" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/ai_status_display, +/turf/simulated/floor/plating, +/area/surface/station/medical/etc) +"rTT" = ( +/obj/structure/toilet{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/diagonal, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/white, +/area/surface/station/crew_quarters/locker) +"rUb" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/floor_decal/corner/white/diagonal, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/crew_quarters/locker) +"rUV" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/cafeteria) +"rVf" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/park) +"rVw" = ( +/obj/machinery/camera/network/civilian{ + c_tag = "CIV - Pasture"; + dir = 5 + }, +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/grass, +/area/surface/station/hydroponics/garden) +"rVE" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/rnd/misc_lab) +"rVQ" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/green/border, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/rnd/xenobiology/xenoflora) +"rVT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/wood, +/area/surface/station/library) +"rWG" = ( +/obj/structure/table/reinforced, +/turf/simulated/floor/carpet, +/area/surface/station/crew_quarters/heads/hop) +"rWJ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/groundfloor/civilian) +"rWK" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/exploration/cargo) +"rXb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/storage/primary_storage) +"rXg" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/hologram/holopad, +/obj/item/device/radio/intercom/interrogation{ + pixel_y = -21 + }, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/monofloor, +/area/surface/station/security/interrogation) +"rXA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/green/border, +/obj/machinery/station_map{ + dir = 1; + pixel_y = -32 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/groundfloor/civilian) +"rXI" = ( +/obj/effect/floor_decal/industrial/warning/dust/corner{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/dust/corner{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor + }, +/area/surface/station/garage) +"rYh" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/maintenance/east/gnd) +"rYk" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/security/range) +"rYD" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/south) +"rYZ" = ( +/obj/effect/floor_decal/industrial/warning/dust, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "steel_dirty"; + initial_flooring = /decl/flooring/tiling/steel_dirty; + outdoors = 0 + }, +/area/surface/outside/plains/station) +"rZm" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 5 + }, +/obj/structure/catwalk, +/turf/simulated/floor/water/deep{ + has_fish = 0 + }, +/area/surface/outside/station/reactorpond) +"rZq" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/arrivals/cynosure) +"rZt" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible/cyan, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_waste) +"rZv" = ( +/obj/structure/sign/warning/high_voltage, +/turf/simulated/wall, +/area/surface/station/maintenance/solars/northeast) +"rZG" = ( +/obj/machinery/appliance/cooker/oven, +/obj/machinery/light, +/obj/machinery/camera/network/civilian{ + c_tag = "CIV - Kitchen"; + dir = 1 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/surface/station/crew_quarters/kitchen) +"rZW" = ( +/obj/structure/sign/warning/high_voltage, +/turf/simulated/wall/r_wall, +/area/surface/station/maintenance/substation/engineering/gnd) +"sag" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/station/park) +"sbl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/catwalk_plated, +/obj/item/device/radio/beacon, +/turf/simulated/floor/plating, +/area/surface/station/hallway/primary/groundfloor/south) +"sbu" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/machinery/vending/security, +/turf/simulated/floor/tiled, +/area/surface/station/security/briefing_room) +"sbw" = ( +/obj/structure/sign/bigname/seg_5{ + pixel_y = 32 + }, +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outside/plains/station) +"scm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/tiled/hydro, +/area/surface/station/hydroponics) +"scN" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_engineering{ + name = "Engineering Hallway" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/engineering/hallway/reactor) +"sdh" = ( +/obj/structure/closet/crate/freezer/rations, +/obj/random/contraband, +/obj/random/contraband, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/kitchen) +"sdy" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/wingrille_spawn/reinforced, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "xenobio5"; + layer = 3.3; + name = "Containment Blast Doors" + }, +/turf/simulated/floor/plating, +/area/surface/station/rnd/xenobiology) +"sdG" = ( +/obj/structure/cable/cyan{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/light_switch{ + pixel_x = 12; + pixel_y = 24 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/camera/network/engine{ + c_tag = "ENG - SMES Room" + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/engineering/reactor_smes) +"sec" = ( +/turf/simulated/floor/tiled/old_cargo/gray, +/area/shuttle/exploration/general) +"seC" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/garage) +"seH" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/obj/structure/table/glass, +/obj/item/tabloid, +/turf/simulated/floor/tiled/freezer, +/area/surface/station/crew_quarters/pool) +"seI" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/glass_external, +/obj/effect/map_helper/airlock/door/simple, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/quartermaster/storage) +"sfl" = ( +/obj/structure/closet/athletic_mixed, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled, +/area/surface/station/crew_quarters/gym) +"sfv" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/yellow/border, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner2{ + dir = 9 + }, +/obj/machinery/atm{ + pixel_y = -32 + }, +/obj/structure/extinguisher_cabinet{ + dir = 8; + pixel_x = -30 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/foyer) +"sfZ" = ( +/obj/structure/table/woodentable, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/item/weapon/material/kitchen/utensil/fork{ + pixel_x = -2 + }, +/obj/item/weapon/material/kitchen/utensil/spoon{ + pixel_x = 2 + }, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/cafeteria) +"sgm" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/shuttle/exploration/cockpit) +"sgo" = ( +/obj/structure/bed/chair/office/light, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/xenobiology) +"shd" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/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/corner/paleblue/full, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/medical/etc) +"shq" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/hallway/primary/groundfloor/south) +"shC" = ( +/obj/structure/sign/warning/secure_area, +/turf/simulated/wall/r_wall, +/area/surface/station/rnd/misc_lab) +"shD" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/structure/table/steel, +/obj/machinery/cell_charger, +/obj/random/powercell, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/arrivals) +"shK" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/glass{ + name = "Cafeteria" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/crew_quarters/cafeteria) +"sik" = ( +/obj/structure/sign/directions/engineering/reactor{ + dir = 4 + }, +/obj/structure/sign/directions/engineering/engeqp{ + dir = 8; + pixel_y = 6 + }, +/obj/structure/sign/directions/engineering/atmospherics{ + pixel_y = -6 + }, +/turf/simulated/wall/r_wall, +/area/surface/station/engineering/hallway) +"sjj" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/wood, +/area/surface/station/library) +"skd" = ( +/obj/item/stack/cable_coil/yellow, +/obj/machinery/atmospherics/pipe/manifold/hidden, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/solars/west) +"skm" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/etc) +"sku" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass{ + name = "Cafeteria" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/crew_quarters/cafeteria) +"skF" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass{ + name = "Cafeteria" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/crew_quarters/cafeteria) +"skI" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 6 + }, +/obj/machinery/computer/med_data/laptop{ + dir = 8 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/reception) +"slB" = ( +/obj/structure/cable/green, +/obj/machinery/power/sensor{ + name = "Powernet Sensor - Security Subgrid"; + name_tag = "Security Subgrid" + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/security/gnd) +"smi" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/empty, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/exploration/cargo) +"smk" = ( +/obj/structure/ladder/up, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/floor_decal/industrial/warning/full, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/atmos) +"smn" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/carpet, +/area/surface/station/chapel/main) +"smL" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor{ + dir = 9 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/hydroponics/garden) +"sne" = ( +/obj/structure/fence/corner{ + dir = 9 + }, +/turf/simulated/floor/outdoors/mask, +/area/surface/outside/plains/station) +"snA" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/yellow/border, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/storage/primarytool) +"snE" = ( +/obj/structure/closet/secure_closet/explorer, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/rnd/exploration) +"soa" = ( +/obj/structure/closet, +/obj/item/toy/figure/scientist, +/obj/item/clothing/accessory/armband/science, +/obj/item/weapon/reagent_containers/glass/bucket, +/obj/item/clothing/shoes/galoshes, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/purple/border, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/rnd/xenobiology) +"son" = ( +/obj/effect/floor_decal/techfloor{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1380; + id_tag = "arrivals_dock_south_pump" + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{ + frequency = 1380; + id_tag = "arrivals_dock_south_airlock"; + master_tag = "arrivals_dock"; + pixel_y = 24; + req_access = list(13) + }, +/obj/machinery/airlock_sensor{ + frequency = 1380; + id_tag = "arrivals_dock_south_sensor"; + pixel_x = -11; + pixel_y = 25 + }, +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/arrivals/cynosure/nopower) +"soo" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + id = "crglockdown"; + layer = 3.3; + name = "Cargo Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/quartermaster/storage) +"sop" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/status_display, +/turf/simulated/floor/plating, +/area/surface/station/arrivals/cynosure) +"soA" = ( +/turf/simulated/floor/tiled/old_cargo/white, +/area/surface/station/rnd/research_restroom) +"soO" = ( +/obj/machinery/atmospherics/binary/pump/fuel{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/structure/handrail{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/exploration/cargo) +"spo" = ( +/obj/machinery/atmospherics/pipe/tank/air{ + dir = 8; + start_pressure = 4559.63 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/kitchen) +"spw" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/arrivals/cynosure) +"spy" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/medical, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/structure/curtain/open/privacy, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/ward) +"spM" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/reagent_containers/spray/cleaner, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/rnd/xenobiology) +"sqj" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/shield_capacitor{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/engineering/storage) +"sqr" = ( +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/crew_quarters/gym) +"sqM" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 8 + }, +/obj/machinery/airlock_sensor/airlock_exterior{ + dir = 4; + id_tag = "arc3_ext_sensor"; + master_tag = "arc3_airlock"; + pixel_x = -31; + pixel_y = 24 + }, +/obj/effect/map_helper/airlock/sensor/ext_sensor, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor + }, +/area/surface/outpost/research/xenoarcheology/surface) +"sqN" = ( +/obj/effect/floor_decal/techfloor{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/ai/upload) +"srv" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock{ + name = "Security Restroom" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/security/restroom) +"srJ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/station/crew_quarters/kitchen) +"srP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/cloning) +"srR" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled/dark, +/area/surface/station/hallway/primary/groundfloor/west/elevator) +"srZ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/visible/green, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"ssk" = ( +/obj/effect/floor_decal/techfloor/corner{ + dir = 5 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/ai/upload_foyer) +"ssw" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/lino, +/area/surface/station/crew_quarters/bar) +"ssB" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/old_tile/blue, +/area/surface/station/arrivals/cynosure/cryo) +"ssV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/surface/station/park) +"stc" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/yellow/border, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway) +"stF" = ( +/turf/simulated/floor/tiled/freezer, +/area/surface/station/crew_quarters/kitchen) +"stJ" = ( +/turf/simulated/wall, +/area/surface/station/crew_quarters/locker) +"stX" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "crglockdown"; + layer = 3.3; + name = "Cargo Lockdown" + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/maintenance/substation/cargo/gnd) +"sum" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/crew_quarters/caferestroom) +"suu" = ( +/obj/machinery/computer/general_air_control/large_tank_control{ + dir = 1; + frequency = 1443; + input_tag = "air_in"; + name = "Air Tank Control"; + output_tag = "air_out"; + pressure_setting = 2000; + sensors = list("air_sensor" = "Tank") + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"suW" = ( +/turf/simulated/wall, +/area/surface/station/medical/surgery) +"svh" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/wardrobe/orange, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/equiptment_storage/ses) +"svD" = ( +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/solar, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "steel_dirty"; + initial_flooring = /decl/flooring/tiling/steel_dirty + }, +/area/surface/outside/station/solar/westsolar) +"svE" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/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/white, +/area/surface/station/crew_quarters/locker) +"svR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/turf/simulated/wall/rshull, +/area/shuttle/exploration/cargo) +"swe" = ( +/obj/structure/window/reinforced/polarized{ + dir = 4; + id = "detwest" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/surface/station/security/detectives_office) +"swi" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 9 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/simulated/floor/water/deep{ + has_fish = 0 + }, +/area/surface/outside/station/reactorpond) +"swk" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 6 + }, +/obj/structure/table/standard, +/obj/item/weapon/folder/red{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/item/weapon/folder/red{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/weapon/folder/red, +/obj/item/weapon/folder/red{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/hand_labeler, +/turf/simulated/floor/tiled, +/area/surface/station/security/processing) +"swl" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/gnd) +"swE" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/storage) +"swN" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/ward) +"swS" = ( +/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/simple/hidden/yellow{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/gnd) +"swT" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/engineering/storage) +"syj" = ( +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/water/deep/pool, +/area/surface/station/crew_quarters/pool) +"syQ" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/grass, +/area/surface/station/hydroponics/garden) +"syY" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/industrial/warning, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/surface/station/garage) +"szx" = ( +/obj/structure/sign/directions/science/xenoflora{ + pixel_y = -6 + }, +/obj/structure/sign/directions/science/xenobiology{ + dir = 1 + }, +/obj/structure/sign/directions/science/exploration{ + dir = 1; + pixel_y = 6 + }, +/turf/simulated/wall, +/area/surface/station/rnd/xenobiology/xenoflora_isolation) +"szA" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/crew_quarters/pool) +"szF" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/rnd/exploration) +"szL" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/bed/chair, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -21 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/arrivals/cynosure) +"szU" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/structure/closet/secure_closet/hop, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/item/device/megaphone, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/crew_quarters/heads/hop) +"sAl" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/mob/living/carbon/human/monkey/punpun, +/turf/simulated/floor/tiled/dark, +/area/surface/station/crew_quarters/bar) +"sAI" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/rnd/hallway/stairwell) +"sBl" = ( +/obj/machinery/door/firedoor/border_only, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/gnd) +"sBs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/station/arrivals/cynosure) +"sBt" = ( +/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/closet/emcloset, +/obj/structure/sign/directions/ladder_down{ + dir = 4; + pixel_x = 32 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/briefing_room) +"sBy" = ( +/obj/machinery/atmospherics/valve/digital/open, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/white/bordercorner2, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/engineering/atmos) +"sBH" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/purple/bordercorner{ + dir = 8 + }, +/obj/effect/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/gnd) +"sBI" = ( +/obj/structure/table/steel_reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/item/weapon/gun/energy/laser/practice, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/range) +"sCa" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock{ + name = "Shower" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/crew_quarters/locker) +"sCl" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/pink/border{ + dir = 1 + }, +/obj/machinery/computer/med_data/laptop, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/security/detectives_office/lab) +"sCB" = ( +/turf/simulated/wall, +/area/surface/station/maintenance/surgery) +"sDz" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/engineering/atmos) +"sEd" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/north/gnd) +"sEh" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold4w/visible/cyan, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"sEu" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible/green, +/obj/structure/grille, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/station) +"sEZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/green/border, +/obj/machinery/camera/network/ground_floor{ + c_tag = "Ground Floor - Civilian Hallway 1"; + dir = 1 + }, +/obj/structure/sign/directions/security{ + dir = 4; + pixel_y = -26 + }, +/obj/structure/sign/directions/engineering{ + dir = 4; + pixel_y = -32 + }, +/obj/structure/sign/directions/medical{ + dir = 4; + pixel_y = -38 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/groundfloor/civilian) +"sFa" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/map_helper/airlock/door/ext_door, +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "marrivals_airlock_outer"; + locked = 1; + name = "External Access" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/arrivals/cynosure) +"sFf" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/window/reinforced/polarized{ + dir = 8; + id = "deteast" + }, +/turf/simulated/floor/carpet, +/area/surface/station/security/detectives_office) +"sFk" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/grass, +/area/surface/station/hydroponics/garden) +"sFr" = ( +/obj/structure/table/marble, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "bar"; + layer = 3.1; + name = "Bar Shutters" + }, +/turf/simulated/floor/lino, +/area/surface/station/crew_quarters/bar) +"sFs" = ( +/obj/structure/closet/radiation, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/purple/border, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/rnd/xenobiology) +"sFD" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/glass{ + name = "Pool" + }, +/obj/effect/zone_divider, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/crew_quarters/pool) +"sFE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/arrivals/cynosure) +"sFX" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/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/outline/grey, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 10 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/rnd/xenobiology) +"sGm" = ( +/turf/simulated/wall, +/area/surface/station/hydroponics/garden) +"sGK" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/rnd/xenobiology/xenoflora) +"sGM" = ( +/obj/structure/cable{ + 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 = 24 + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/weststairwell/gnd) +"sGR" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-j2" + }, +/obj/effect/catwalk_plated/dark, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/medbay/gnd) +"sHa" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/xenobiology) +"sHk" = ( +/obj/structure/sign/warning/engineering_access, +/turf/simulated/wall/r_wall, +/area/surface/station/engineering/engineering_monitoring) +"sHJ" = ( +/obj/structure/extinguisher_cabinet{ + dir = 8; + pixel_x = -30 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/hallway/gnd) +"sHN" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/binary/pump/on{ + dir = 4; + name = "Scrubber to Waste" + }, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"sIs" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning/dust/corner{ + dir = 4 + }, +/obj/structure/sign/directions/ladder_down{ + dir = 1; + pixel_y = 26 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor + }, +/area/surface/outside/plains/station) +"sJl" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood, +/area/surface/station/library) +"sJI" = ( +/turf/simulated/floor/tiled/monotile, +/area/surface/station/quartermaster/storage) +"sKa" = ( +/turf/simulated/floor/tiled/monotile, +/area/surface/station/crew_quarters/gym) +"sKz" = ( +/obj/structure/cable, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -12; + pixel_y = -24 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/green/border, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/north) +"sLa" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/floor_decal/corner/white/diagonal, +/turf/simulated/floor/tiled/white, +/area/surface/station/crew_quarters/locker) +"sLg" = ( +/obj/effect/floor_decal/corner/black/full{ + dir = 1 + }, +/obj/machinery/air_sensor{ + frequency = 1441; + id_tag = "co2_sensor" + }, +/obj/machinery/camera/network/engineering{ + c_tag = "Atmos Tank - Carbon Dioxide"; + dir = 9 + }, +/turf/simulated/floor/reinforced/carbon_dioxide, +/area/surface/station/engineering/atmos) +"sLq" = ( +/obj/structure/catwalk, +/obj/effect/floor_decal/spline/plain{ + dir = 10 + }, +/turf/simulated/floor/water/deep{ + has_fish = 0 + }, +/area/surface/outside/station/reactorpond) +"sLu" = ( +/obj/structure/fence/post{ + dir = 4 + }, +/turf/simulated/floor/outdoors/mask, +/area/surface/outside/plains/station) +"sLv" = ( +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/ai/upload) +"sLL" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/station/crew_quarters/pool) +"sMh" = ( +/obj/effect/floor_decal/techfloor{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/medical/emt_bay) +"sMq" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "aicore1"; + layer = 3.3; + name = "AI Core Access" + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/ai/upload) +"sMt" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/door/airlock/maintenance/engi{ + req_one_access = list(11,24) + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_airlock) +"sMu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/green/border, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/rnd/exploration) +"sMQ" = ( +/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/purple/bordercorner{ + dir = 1 + }, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/gnd) +"sMU" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/yellow/border, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/reactor) +"sNd" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/engineering/atmos) +"sNq" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "xenobiocontain"; + layer = 3.3; + name = "Containment Blast Doors" + }, +/turf/simulated/floor/plating, +/area/surface/station/rnd/xenobiology) +"sNB" = ( +/obj/structure/cable{ + 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/station/maintenance/east/gnd) +"sNQ" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/obj/machinery/door/airlock/glass_external{ + frequency = 1380; + icon_state = "door_locked"; + id_tag = "escape_dock_south_starboard_inner"; + locked = 1; + name = "Internal Access" + }, +/obj/effect/map_helper/airlock/door/int_door, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/arrivals/cynosure) +"sOm" = ( +/obj/machinery/door/blast/gate/thin{ + dir = 2; + id = "kitchen"; + layer = 3.3 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/surface/station/crew_quarters/kitchen) +"sOv" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/maintenance/substation/research/gnd) +"sOx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/arrivals/cynosure) +"sOE" = ( +/turf/simulated/wall, +/area/surface/station/rnd/research_lockerroom) +"sPf" = ( +/obj/machinery/recharge_station, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/bluegrid, +/area/surface/station/ai/cyborg_station) +"sPn" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/item/device/radio/intercom/department/security{ + pixel_y = 21 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/gnd) +"sPx" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/range) +"sPH" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"sPX" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning/dust/corner, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor + }, +/area/surface/station/hallway/primary/groundfloor/north) +"sQa" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 5 + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -12; + pixel_y = -24 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_waste) +"sQb" = ( +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance/security, +/obj/random/maintenance/engineering, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/east/gnd) +"sQf" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lime/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled/hydro, +/area/surface/station/hydroponics) +"sQZ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/surface/station/hallway/secondary/groundfloor/civilian) +"sRK" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/camera/network/research{ + c_tag = "SCI - Xenobiology North" + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/rnd/xenobiology) +"sRR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-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/station/quartermaster/lockerroom) +"sRZ" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/surgery) +"sSw" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_airlock) +"sSy" = ( +/turf/simulated/wall, +/area/surface/outside/plains/station) +"sSS" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/storage) +"sSZ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + dir = 1; + pixel_y = 30 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway) +"sTw" = ( +/obj/machinery/conveyor{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/arrivals/cynosure) +"sTC" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/status_display, +/turf/simulated/floor/plating, +/area/surface/station/park) +"sTX" = ( +/obj/structure/ladder/up, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/visible/green, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"sUi" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/cafeteria) +"sUk" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/manifold/hidden, +/obj/machinery/door/airlock/glass_external{ + frequency = 1380; + icon_state = "door_locked"; + id_tag = "escape_dock_north_starboard_inner"; + locked = 1; + name = "Internal Access" + }, +/obj/effect/map_helper/airlock/door/int_door, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/arrivals/cynosure) +"sUN" = ( +/obj/machinery/power/breakerbox/activated{ + RCon_tag = "Atmos Substation Bypass" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/atmospherics) +"sUR" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark, +/area/surface/station/security/hallway/gnd) +"sVo" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/ai/cyborg_station) +"sVu" = ( +/obj/machinery/atmospherics/binary/passive_gate{ + icon_state = "on"; + unlocked = 1 + }, +/obj/effect/catwalk_plated, +/obj/structure/closet/emcloset, +/obj/structure/sign/directions/evac{ + pixel_x = -32 + }, +/obj/structure/sign/directions/cryo{ + pixel_x = -32; + pixel_y = -6 + }, +/obj/structure/sign/warning/cold{ + layer = 3.3; + pixel_y = -32 + }, +/obj/item/weapon/melee/umbrella/random, +/obj/item/weapon/melee/umbrella/random{ + pixel_y = -4 + }, +/turf/simulated/floor/plating, +/area/surface/station/hallway/primary/groundfloor/south) +"sWe" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 5 + }, +/obj/structure/railing, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/water/deep{ + has_fish = 0 + }, +/area/surface/outside/station/reactorpond) +"sWl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood, +/area/surface/station/library) +"sWF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/south) +"sXc" = ( +/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/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/bordercorner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/east) +"sXq" = ( +/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/green/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/garage) +"sXx" = ( +/obj/machinery/power/breakerbox/activated{ + RCon_tag = "Engineering Substation Bypass" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/engineering/gnd) +"sYc" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 4 + }, +/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, +/area/surface/station/park) +"sZq" = ( +/turf/simulated/wall, +/area/surface/station/crew_quarters/kitchen) +"sZD" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/storage) +"tas" = ( +/obj/structure/table/glass, +/obj/structure/cable/green, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -12; + pixel_y = -24 + }, +/obj/item/weapon/storage/box/gloves{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/item/weapon/storage/box/syringes{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/weapon/storage/box/beakers, +/obj/item/weapon/storage/box/botanydisk{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/tape_roll, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -21 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/rnd/xenobiology/xenoflora) +"tax" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/sign/directions/medical{ + dir = 4; + pixel_y = -38 + }, +/obj/structure/sign/directions/security{ + dir = 4; + pixel_y = -26 + }, +/obj/structure/sign/directions/engineering{ + dir = 4; + pixel_y = -32 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/north) +"taZ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/atmos) +"tbv" = ( +/obj/structure/table/bench/padded, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/reception) +"tbx" = ( +/turf/simulated/floor/tiled/monotile, +/area/surface/station/quartermaster/lockerroom) +"tbz" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "biohazard"; + layer = 3.3; + name = "Biohazard Shutter" + }, +/turf/simulated/floor/plating, +/area/surface/station/rnd/xenobiology/xenoflora) +"tbP" = ( +/obj/machinery/smartfridge/produce/persistent_lossy, +/turf/simulated/wall, +/area/surface/station/rnd/xenobiology/xenoflora) +"tcy" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/foyer) +"tcI" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/catwalk_plated/dark, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/engineering/gnd) +"tcT" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 1 + }, +/obj/machinery/requests_console{ + department = "Atmospherics"; + departmentType = 3; + name = "Atmos RC"; + pixel_y = 24 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"tdi" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/window/reinforced/polarized/full{ + id = "secpro" + }, +/turf/simulated/floor/plating, +/area/surface/station/security/processing) +"tdH" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/lockerroom) +"tdK" = ( +/obj/machinery/mech_recharger, +/obj/effect/landmark/robot_platform/explorer, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/garage) +"tdU" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/west) +"tew" = ( +/turf/simulated/wall, +/area/surface/station/maintenance/kitchen) +"tfu" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/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 + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"tgj" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 8; + name = "Library"; + sortType = "Library" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/groundfloor/civilian) +"tgu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/groundfloor/civilian) +"tgD" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/research/gnd) +"tgG" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/effect/zone_divider, +/turf/simulated/floor/water/deep/pool, +/area/surface/station/crew_quarters/pool) +"tgI" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/security/lobby) +"tgN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/light, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/structure/table/standard, +/obj/item/weapon/towel{ + color = "#ff0000"; + name = "red towel"; + pixel_x = -3; + pixel_y = -4 + }, +/obj/item/weapon/towel{ + color = "#ff0000"; + name = "red towel"; + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/weapon/towel{ + color = "#ff0000"; + name = "red towel"; + pixel_x = -1 + }, +/obj/item/weapon/towel{ + color = "#ff0000"; + name = "red towel"; + pixel_y = 2 + }, +/obj/item/weapon/towel{ + color = "#ff0000"; + name = "red towel"; + pixel_x = 1; + pixel_y = 4 + }, +/obj/item/weapon/soap/nanotrasen, +/obj/item/weapon/soap/nanotrasen, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/security/restroom) +"thU" = ( +/obj/effect/floor_decal/techfloor{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/ai/upload) +"tif" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/cafeteria) +"tij" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/hallway/primary/groundfloor/west) +"tiy" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Botanist" + }, +/turf/simulated/floor/tiled/hydro, +/area/surface/station/hydroponics) +"tjh" = ( +/obj/machinery/status_display, +/turf/simulated/wall, +/area/surface/station/chapel/main) +"tjO" = ( +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/mask, +/area/surface/outside/plains/station) +"tjX" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/south) +"tjZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/briefing_room) +"tkf" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/ai/upload) +"tkv" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 6 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 21 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/south) +"tld" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/external{ + frequency = null; + icon_state = "door_locked"; + id_tag = null; + locked = 1; + name = "External Access" + }, +/obj/effect/map_helper/airlock/door/ext_door, +/obj/machinery/airlock_sensor/airlock_exterior/shuttle{ + dir = 8; + frequency = 1380; + id_tag = "expshuttle_exterior_sensor"; + master_tag = "expshuttle_docker"; + pixel_x = -1; + pixel_y = 24 + }, +/obj/effect/map_helper/airlock/sensor/ext_sensor, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/exploration/cargo) +"tlH" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "steel_dirty"; + initial_flooring = /decl/flooring/tiling/steel_dirty + }, +/area/surface/outside/plains/station) +"tlJ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/catwalk_plated/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/engineering/gnd) +"tlN" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "medbayquar"; + layer = 3.3; + name = "Medbay Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/medical/chemistry) +"tlW" = ( +/obj/effect/floor_decal/industrial/loading{ + dir = 1 + }, +/obj/machinery/door/window/northright{ + name = "Range Access" + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/range) +"tmp" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/structure/sink/kitchen{ + pixel_y = 28 + }, +/obj/item/weapon/reagent_containers/glass/bucket{ + pixel_x = 2; + pixel_y = 2 + }, +/turf/simulated/floor/tiled/hydro, +/area/surface/station/park) +"tmx" = ( +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/red/bordercorner, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/gnd) +"tmC" = ( +/obj/structure/sign/directions/security/seceqp{ + dir = 1; + pixel_y = 5 + }, +/turf/simulated/wall, +/area/surface/station/security/restroom) +"tmJ" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/cable/green, +/obj/structure/cable/green{ + d1 = 16; + d2 = 0; + icon_state = "16-0" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/light/small, +/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/zpipe/up/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/up{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/engineering/gnd) +"tmQ" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/solars/west) +"tnc" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + pixel_y = -21 + }, +/turf/simulated/floor/tiled, +/area/surface/station/park) +"tnh" = ( +/obj/item/weapon/reagent_containers/spray/pepper, +/obj/item/device/flash, +/obj/structure/closet/secure_closet/detective/cynosure, +/turf/simulated/floor/lino, +/area/surface/station/security/detectives_office) +"tnJ" = ( +/obj/machinery/vending/fishing, +/turf/simulated/floor/tiled/dark, +/area/surface/station/hallway/primary/groundfloor/south) +"tnO" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/bar) +"tnQ" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning/dust/corner{ + dir = 8 + }, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor + }, +/area/surface/station/arrivals/cynosure) +"tof" = ( +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/machinery/light_switch{ + pixel_x = 12; + pixel_y = 24 + }, +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/machinery/button/remote/blast_door{ + id = "medbayrecquar"; + name = "Medbay Quarantine Shutters"; + pixel_x = 10; + pixel_y = 36 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/reception) +"toG" = ( +/turf/simulated/wall, +/area/surface/station/medical/surgery2) +"toH" = ( +/obj/random/crate, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/item/weapon/material/knife, +/obj/item/clothing/shoes/boots/combat, +/obj/item/weapon/storage/mre/random, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/kitchen) +"toJ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/recharger/wallcharger{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/range) +"toQ" = ( +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/wood/sif, +/area/surface/station/chapel/main) +"toT" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/obj/machinery/vending/coffee, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/hallway/primary/groundfloor/south) +"toW" = ( +/obj/effect/catwalk_plated/dark, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/storage) +"tqC" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/west/elevator) +"tqE" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + dir = 8; + pixel_x = -30 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/gnd) +"tqK" = ( +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -24; + pixel_y = 12 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/kitchen) +"tqN" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/grass, +/area/surface/station/hydroponics/garden) +"trn" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/gnd) +"trK" = ( +/obj/effect/floor_decal/corner/blue, +/obj/effect/floor_decal/corner/white/diagonal{ + dir = 4 + }, +/obj/machinery/light/small, +/turf/simulated/floor/reinforced/airmix, +/area/surface/station/engineering/atmos) +"trQ" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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, +/area/surface/station/park) +"tsM" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 1 + }, +/obj/machinery/suit_cycler/pilot, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/rnd/exploration) +"tsS" = ( +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 6 + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/surface/station/ai/upload) +"ttl" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 8 + }, +/obj/item/weapon/stool/padded{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/chemistry) +"ttU" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/ai/upload_foyer) +"tum" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 1; + name = "Chapel"; + sortType = "Chapel" + }, +/obj/effect/catwalk_plated, +/obj/effect/zone_divider, +/turf/simulated/floor/plating, +/area/surface/station/hallway/secondary/groundfloor/civilian) +"tvN" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/map_helper/airlock/door/ext_door, +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "mnorth_airlock_outer"; + locked = 1; + name = "External Access" + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/hallway/primary/groundfloor/north) +"twb" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/catwalk_plated/dark, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/kitchen) +"twc" = ( +/obj/structure/cliff/automatic/corner{ + dir = 6 + }, +/turf/simulated/floor/outdoors/grass/sif, +/area/surface/outside/plains/plateau) +"twn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/surface/station/storage/primarytool) +"twu" = ( +/turf/simulated/floor/outdoors/dirt/sif, +/area/surface/outside/plains/station) +"twv" = ( +/obj/structure/undies_wardrobe, +/obj/effect/floor_decal/corner/white/diagonal, +/obj/machinery/light, +/turf/simulated/floor/tiled/white, +/area/surface/station/crew_quarters/locker) +"txa" = ( +/obj/structure/table/standard, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/southright{ + name = "Module Storage"; + req_one_access = list(16) + }, +/obj/item/weapon/aiModule/nanotrasen, +/obj/item/weapon/aiModule/reset{ + pixel_x = -3; + pixel_y = 3 + }, +/turf/simulated/floor/greengrid, +/area/surface/station/ai/upload) +"txo" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/east/gnd) +"txr" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_waste) +"txA" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/freezer, +/area/surface/station/crew_quarters/pool) +"txG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/xenobiology) +"txI" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/structure/table/woodentable, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 21 + }, +/turf/simulated/floor/wood/sif, +/area/surface/station/chapel/main) +"txS" = ( +/obj/structure/cable/green, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24; + pixel_y = -12 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/storage) +"txT" = ( +/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" + }, +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 1 + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/kitchen) +"txY" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/obj/effect/floor_decal/spline/plain{ + dir = 5 + }, +/obj/item/weapon/beach_ball, +/turf/simulated/floor/tiled/freezer, +/area/surface/station/crew_quarters/pool) +"tyj" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/security/detectives_office/lab) +"tyt" = ( +/obj/effect/map_effect/portal/master/side_a/plains_to_caves, +/turf/simulated/mineral/floor/ignore_mapgen/sif, +/area/surface/outside/plains/plateau) +"tyH" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 10 + }, +/obj/machinery/vending/cigarette{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/briefing_room) +"tyP" = ( +/obj/structure/closet/secure_closet/hydroponics, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/surface/station/hydroponics) +"tzn" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + id_tag = "west_solar_airlock"; + pixel_y = 25; + req_one_access = list(11,24) + }, +/obj/machinery/airlock_sensor{ + id_tag = "west_solar_airlock_sensor"; + pixel_x = -11; + pixel_y = 25 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1; + frequency = 1379; + id_tag = "west_solar_pump" + }, +/obj/effect/floor_decal/industrial/warning/cee{ + dir = 8 + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/solars/west) +"tzv" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 8 + }, +/obj/item/weapon/material/knife/machete/hatchet, +/obj/item/weapon/material/knife/machete/hatchet{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/weapon/material/knife/machete/hatchet{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/item/weapon/material/minihoe, +/obj/item/weapon/material/minihoe{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/weapon/material/minihoe{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/item/weapon/reagent_containers/glass/bucket{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/reagent_containers/glass/bucket, +/turf/simulated/floor/tiled/hydro, +/area/surface/station/hydroponics) +"tzy" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/zone_divider, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/station/crew_quarters/pool) +"tzH" = ( +/obj/structure/sign/xenobio, +/turf/simulated/wall/r_wall, +/area/surface/station/rnd/xenobiology) +"tzK" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/engineering/hallway) +"tAm" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/maintenance/substation/medbay/gnd) +"tAK" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/purple/border, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -12; + pixel_y = -24 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/gnd) +"tAU" = ( +/turf/unsimulated/mask, +/area/surface/outpost/research/xenoarcheology/surface) +"tBX" = ( +/obj/structure/table/wooden_reinforced, +/obj/machinery/button/remote/airlock{ + dir = 4; + id = "detdoor"; + layer = 2.9; + name = "Office Door"; + pixel_x = 5; + pixel_y = 4 + }, +/obj/machinery/button/windowtint{ + dir = 8; + id = "deteast"; + layer = 2.9; + pixel_x = 8; + pixel_y = -6 + }, +/obj/item/weapon/handcuffs, +/obj/item/device/tape/random, +/turf/simulated/floor/carpet, +/area/surface/station/security/detectives_office) +"tCe" = ( +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/medical/reception) +"tCj" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/storage/briefcase{ + pixel_y = 6 + }, +/obj/item/weapon/storage/briefcase, +/obj/item/device/radio/intercom/department/security{ + pixel_y = 21 + }, +/turf/simulated/floor/lino, +/area/surface/station/security/detectives_office) +"tCu" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "chapel" + }, +/turf/simulated/floor/plating, +/area/surface/station/chapel/office) +"tCy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/machinery/papershredder, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/briefing_room) +"tCE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/south) +"tCM" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_medical{ + name = "Medbay Equipment" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/medical/storage/primary_storage) +"tCN" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/cafeteria) +"tDp" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/east) +"tDF" = ( +/obj/structure/sign/directions/cryo{ + pixel_y = -6 + }, +/obj/structure/sign/directions/evac, +/turf/simulated/wall/r_wall, +/area/surface/station/park) +"tEx" = ( +/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, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/station/solar/northeastsolar) +"tEO" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/dark, +/area/surface/station/hallway/primary/groundfloor/west) +"tFb" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/surface/station/hallway/primary/groundfloor/south) +"tFB" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/west/elevator) +"tGb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/blast/regular/open{ + id = "medbayquar"; + layer = 3.3; + name = "Medbay Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/medical/etc) +"tGt" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass{ + name = "Hallway" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/hallway/primary/groundfloor/east) +"tGu" = ( +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/gnd) +"tGO" = ( +/obj/machinery/cryopod{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/arrivals/cynosure/cryo) +"tHm" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/storage/primary_storage) +"tHt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/glass{ + name = "Stairwell" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/hallway/primary/groundfloor/west/elevator) +"tHG" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/green/border, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/green/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/engineering/atmos) +"tHX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/wall/rshull, +/area/shuttle/exploration/general) +"tIm" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/handrail{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/exploration/cargo) +"tIK" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning/dust/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor + }, +/area/surface/outpost/research/xenoarcheology/surface) +"tIM" = ( +/obj/effect/floor_decal/corner/black/full, +/obj/machinery/atmospherics/unary/outlet_injector{ + dir = 8; + frequency = 1441; + id = "co2_in"; + use_power = 1 + }, +/turf/simulated/floor/reinforced/carbon_dioxide, +/area/surface/station/engineering/atmos) +"tIX" = ( +/obj/structure/stairs/spawner/south, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/security/hallway/gnd) +"tJb" = ( +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/green, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/shieldwallgen{ + anchored = 1; + layer = 3.3; + req_access = list(47) + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/surface/station/rnd/misc_lab) +"tJf" = ( +/obj/effect/floor_decal/techfloor{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1380; + id_tag = "arrivals_dock_north_pump" + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{ + frequency = 1380; + id_tag = "arrivals_dock_north_airlock"; + master_tag = "arrivals_dock"; + pixel_y = 24; + req_access = list(13) + }, +/obj/machinery/airlock_sensor{ + frequency = 1380; + id_tag = "arrivals_dock_north_sensor"; + pixel_x = -11; + pixel_y = 25 + }, +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/arrivals/cynosure/nopower) +"tJj" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/security/lobby) +"tJk" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/outpost/research/xenoarcheology/surface) +"tJw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/yellow/border, +/obj/effect/floor_decal/steeldecal/steel_decals_central7, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -12; + pixel_y = -24 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/reactor) +"tJP" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/hallway/secondary/groundfloor/civilian) +"tJR" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"tJS" = ( +/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/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/kitchen) +"tJW" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/cafeteria) +"tKb" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"tKX" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/closet/crate/freezer, +/obj/machinery/light, +/turf/simulated/floor/tiled/old_tile/gray, +/area/surface/station/medical/surgery_storage) +"tLq" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "medbayquar"; + layer = 3.3; + name = "Medbay Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/medical/reception) +"tLy" = ( +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -21 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/reactor) +"tLN" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/red{ + dir = 8 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"tLQ" = ( +/obj/effect/floor_decal/industrial/outline/blue, +/obj/machinery/portable_atmospherics/canister/nitrogen, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"tMa" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"tMq" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_atmos{ + name = "Atmospherics" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/engineering/atmos) +"tMy" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/structure/sign/directions/cargo{ + dir = 1; + pixel_x = -32; + pixel_y = 6 + }, +/obj/structure/sign/directions/science{ + dir = 1; + pixel_x = -32 + }, +/obj/structure/sign/directions/elevator{ + dir = 1; + pixel_x = -32; + pixel_y = -6 + }, +/turf/simulated/floor/tiled, +/area/surface/station/park) +"tMK" = ( +/obj/machinery/atmospherics/unary/cryo_cell, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/medical/hallway/gnd) +"tML" = ( +/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/old_tile/blue, +/area/surface/station/arrivals/cynosure/cryo) +"tMM" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/crew_quarters/heads/hos) +"tMQ" = ( +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"tMT" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/beige/border, +/obj/item/device/mass_spectrometer/adv, +/obj/item/clothing/glasses/science{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/item/clothing/glasses/science, +/obj/machinery/computer/security/telescreen/entertainment{ + icon_state = "frame"; + pixel_y = -32 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/chemistry) +"tNf" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/catwalk_plated/dark, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/research/gnd) +"tNU" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/simulated/floor/tiled/hydro, +/area/surface/station/hydroponics) +"tOd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/groundfloor/civilian) +"tOh" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 9 + }, +/obj/machinery/computer/secure_data{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/processing) +"tOl" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/xenobiology) +"tOo" = ( +/obj/structure/shuttle/window, +/obj/structure/grille, +/turf/simulated/shuttle/plating, +/area/shuttle/large_escape_pod1/station) +"tOC" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/range) +"tOK" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/ai/cyborg_station) +"tOT" = ( +/obj/effect/floor_decal/techfloor{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/ai/cyborg_station) +"tOX" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + id = "biohazard"; + layer = 3.3; + name = "Biohazard Shutter" + }, +/turf/simulated/floor/plating, +/area/surface/station/rnd/xenobiology/xenoflora_isolation) +"tPm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/blue{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/green/bordercorner, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/south) +"tPx" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/xenobiology) +"tPT" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/south) +"tPU" = ( +/obj/machinery/computer/power_monitor{ + dir = 4 + }, +/obj/machinery/newscaster{ + pixel_y = 26 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/engineering/engineering_monitoring) +"tQG" = ( +/obj/machinery/ai_status_display, +/turf/simulated/wall/r_wall, +/area/surface/station/ai/server_room) +"tRC" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/hallway/primary/groundfloor/south) +"tSD" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/table/steel, +/obj/item/weapon/storage/box/lights/mixed, +/obj/random/maintenance/clean, +/obj/random/maintenance/security, +/obj/random/maintenance/security, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/storage/emergency/sec) +"tTa" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/north/gnd) +"tTd" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/grey/border, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/tiled, +/area/surface/station/crew_quarters/gym) +"tTN" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 10 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/hallway/secondary/groundfloor/civilian) +"tTR" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 8 + }, +/obj/machinery/computer/general_air_control/large_tank_control{ + dir = 8; + input_tag = "co2_in"; + name = "Carbon Dioxide Supply Control"; + output_tag = "co2_out"; + sensors = list("co2_sensor" = "Tank") + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/black/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/black/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/engineering/atmos) +"tTS" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/cable/green, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/window/reinforced/polarized/full{ + id = "secpro" + }, +/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, +/area/surface/station/park) +"tUY" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/crew_quarters/heads/hos) +"tVs" = ( +/turf/simulated/wall, +/area/surface/station/maintenance/substation/arrivals) +"tVA" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/catwalk_plated/dark, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/east/gnd) +"tVR" = ( +/obj/structure/table/glass, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/item/device/defib_kit/loaded{ + pixel_y = -2 + }, +/obj/item/device/defib_kit/loaded{ + pixel_y = 2 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/etc) +"tVW" = ( +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/storage/primary_storage) +"tWf" = ( +/turf/simulated/wall, +/area/surface/station/crew_quarters/pool) +"tWp" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 9 + }, +/turf/simulated/floor/water/deep{ + has_fish = 0 + }, +/area/surface/outside/station/reactorpond) +"tWD" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/security/detectives_office/lab) +"tWF" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/gnd) +"tWH" = ( +/turf/simulated/floor/carpet, +/area/surface/station/crew_quarters/heads/hos) +"tWQ" = ( +/obj/structure/table/woodentable, +/obj/item/device/flashlight/lamp/green, +/obj/item/sticky_pad/random, +/turf/simulated/floor/wood, +/area/surface/station/library) +"tWX" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "arc3_airlock_outer"; + locked = 1; + name = "External Access" + }, +/obj/effect/map_helper/airlock/door/ext_door, +/obj/machinery/access_button/airlock_exterior{ + dir = 4; + master_tag = "arc3_airlock"; + pixel_y = 35 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/outpost/research/xenoarcheology/surface) +"tXx" = ( +/obj/effect/floor_decal/techfloor{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4; + frequency = 1380; + id_tag = "escape_dock_north_starboard_pump" + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{ + frequency = 1380; + id_tag = "escape_dock_snorth_airlock"; + master_tag = "escape_dock"; + pixel_y = 24; + req_access = list(13) + }, +/obj/machinery/airlock_sensor{ + frequency = 1380; + id_tag = "escape_dock_north_starboard_sensor"; + pixel_x = -11; + pixel_y = 25 + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/arrivals/cynosure) +"tYp" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/structure/table/woodentable, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/wood/sif, +/area/surface/station/chapel/main) +"tYs" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 8 + }, +/turf/simulated/floor/tiled/asteroid_steel, +/area/surface/outside/plains/station) +"tYt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/obj/structure/ladder/up, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_airlock) +"tYF" = ( +/obj/machinery/bookbinder, +/turf/simulated/floor/wood, +/area/surface/station/library) +"tYR" = ( +/obj/effect/shuttle_landmark/cynosure/pads/perimeter, +/turf/simulated/floor/outdoors/dirt/sif, +/area/surface/outside/plains/station) +"tZJ" = ( +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/gym) +"ual" = ( +/obj/structure/sign/science, +/turf/simulated/wall/r_wall, +/area/surface/station/rnd/xenobiology/xenoflora) +"uan" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/west) +"uas" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/bed/chair/shuttle{ + dir = 1 + }, +/turf/simulated/shuttle/floor/white, +/area/shuttle/large_escape_pod1/station) +"uay" = ( +/obj/structure/table/glass, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/item/weapon/paper_bin, +/obj/item/weapon/hand_labeler, +/obj/item/weapon/clipboard, +/obj/item/weapon/folder/white, +/obj/item/weapon/pen, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/obj/machinery/newscaster{ + pixel_x = -26 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/rnd/xenobiology/xenoflora) +"uaG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/exploration/cargo) +"uaI" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/green/border, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/north) +"uaQ" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 4 + }, +/obj/effect/floor_decal/corner_techfloor_gray{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/hallway/primary/groundfloor/west) +"uaS" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/old_tile/blue, +/area/surface/station/arrivals/cynosure/cryo) +"uaT" = ( +/obj/machinery/power/smes/buildable{ + RCon_tag = "Solar - Northeast"; + cur_coils = 2; + input_attempt = 1; + input_level = 300000; + output_level = 200000 + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/solars/northeast) +"ubo" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/railing, +/obj/machinery/conveyor{ + dir = 8; + id = "packageSort1" + }, +/turf/simulated/floor/plating, +/area/surface/station/quartermaster/delivery) +"ubw" = ( +/obj/structure/table/standard, +/obj/item/weapon/towel/random{ + pixel_x = 2 + }, +/obj/item/weapon/towel/random{ + pixel_x = 4 + }, +/obj/item/weapon/soap/nanotrasen, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/crew_quarters/caferestroom) +"ubD" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/north/gnd) +"ubP" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 6 + }, +/obj/structure/catwalk, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/water/deep{ + has_fish = 0 + }, +/area/surface/outside/station/reactorpond) +"ubZ" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/obj/structure/disposalpipe/segment, +/obj/machinery/light/spot{ + dir = 4 + }, +/obj/item/weapon/stool/padded{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/station/crew_quarters/pool) +"ucw" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/engineering/hallway) +"ucF" = ( +/obj/structure/bed/chair/office/dark, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/engineering_monitoring) +"udo" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 8; + name = "CO2 to Connector" + }, +/obj/machinery/light/spot{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"udx" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"udT" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/lino, +/area/surface/station/crew_quarters/bar) +"udU" = ( +/obj/item/modular_computer/console/preset/engineering{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/yellow/bordercorner, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/engineering_monitoring) +"ueg" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/cafeteria) +"uel" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/blue{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloorblack/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/bordercorner{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/hallway/primary/groundfloor/south) +"ufL" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/library) +"ufW" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/garage) +"uge" = ( +/obj/item/weapon/stool{ + dir = 8 + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/surface/station/storage/primarytool) +"ugr" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner{ + dir = 8 + }, +/obj/machinery/light, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/workshop) +"ugC" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/solars/northeast) +"ugE" = ( +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/red/bordercorner, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/surface/station/security/briefing_room) +"ugP" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/reception) +"uin" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/floor_decal/corner/white/diagonal, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 21 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/crew_quarters/locker) +"uix" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/portable_atmospherics/hydroponics, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/rnd/xenobiology/xenoflora_isolation) +"ujm" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/engineering/reactor_airlock) +"ujt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/catwalk_plated, +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/requests_console{ + department = "Engineering"; + departmentType = 3; + name = "Engineering RC"; + pixel_y = 24 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/hallway) +"ujv" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"ujB" = ( +/obj/machinery/atmospherics/unary/heat_exchanger, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_waste) +"ujE" = ( +/obj/structure/cable/green{ + 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 = 24 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lime/bordercorner{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 1 + }, +/turf/simulated/floor/tiled/hydro, +/area/surface/station/hydroponics) +"ujS" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/west) +"ujW" = ( +/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/techfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner_techfloor_gray{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/wood/sif, +/area/surface/station/chapel/main) +"ukj" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/weststairwell/gnd) +"uko" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/range) +"ukz" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/atmospherics/pipe/manifold/hidden/red{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/atmos) +"ukS" = ( +/obj/machinery/shield_gen/external, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/engineering/storage) +"ulb" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/light/small, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/weststairwell/gnd) +"ulf" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/east/gnd) +"ull" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"ulv" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/machinery/atmospherics/binary/pump/high_power, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/effect/engine_setup/pump_max, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"uly" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite/corner, +/obj/effect/floor_decal/corner/green/bordercorner, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/rnd/exploration) +"ulE" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/hallway/primary/groundfloor/east) +"ulG" = ( +/obj/structure/sign/warning/nosmoking_2{ + pixel_x = -32 + }, +/obj/machinery/camera/network/engine{ + c_tag = "ENG - Reactor Room Storage"; + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"ulO" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/medical/etc) +"ulR" = ( +/obj/structure/ladder/updown, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/medbay/gnd) +"ulS" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/crew_quarters/pool) +"uni" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"unu" = ( +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner{ + dir = 1 + }, +/obj/item/device/radio/intercom/department/medbay{ + pixel_y = 21 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/ward) +"uod" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor/hole{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/ai/upload) +"uoO" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/hallway/primary/groundfloor/north) +"upd" = ( +/obj/machinery/floodlight, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/engineering/storage) +"upN" = ( +/obj/effect/floor_decal/techfloor, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/medical/emt_bay) +"uqa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/park) +"uqw" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/exploration/cargo) +"url" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/yellow/bordercorner, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway) +"urn" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/west) +"urq" = ( +/obj/machinery/status_display, +/turf/simulated/wall, +/area/surface/station/library) +"urw" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/newscaster/security_unit{ + pixel_y = 26 + }, +/turf/simulated/floor/carpet, +/area/surface/station/crew_quarters/heads/hos) +"urx" = ( +/obj/structure/mirror{ + pixel_y = 32 + }, +/obj/structure/sink{ + pixel_y = 17 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/security/restroom) +"urW" = ( +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "englockdown"; + layer = 3.3; + name = "Engineering Lockdown" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/engineering/gnd) +"ush" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -24; + pixel_y = 12 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 8 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/gnd) +"usl" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/east) +"utb" = ( +/obj/machinery/atmospherics/unary/freezer{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/engineering/atmos) +"utD" = ( +/obj/effect/floor_decal/industrial/warning/dust/corner{ + dir = 8 + }, +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "garage"; + name = "Garage Door Control"; + pixel_x = -24; + pixel_y = -1 + }, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor + }, +/area/surface/station/garage) +"utE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/engineering/atmos) +"utH" = ( +/obj/effect/catwalk_plated/dark, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/storage) +"utV" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 8 + }, +/obj/machinery/door/airlock/glass_engineering{ + name = "Engineering Hallway" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/engineering/hallway) +"uuk" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/security/briefing_room) +"uum" = ( +/obj/structure/window/reinforced/polarized{ + dir = 8; + id = "deteast" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/surface/station/security/detectives_office) +"uvl" = ( +/turf/simulated/wall, +/area/surface/station/medical/surgery_storage) +"uvB" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/catwalk_plated/dark, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/surgery) +"uvK" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/sign/directions/cryo{ + pixel_x = -32; + pixel_y = -6 + }, +/obj/structure/sign/directions/evac{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/south) +"uvN" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/medical/etc) +"uvQ" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/station/solar/northeastsolar) +"uwc" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "seclockdown"; + layer = 3.3; + name = "Security Lockdown" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/security/briefing_room) +"uwm" = ( +/obj/effect/floor_decal/industrial/warning/dust, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor + }, +/area/surface/station/arrivals/cynosure) +"uwn" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"uwo" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 9 + }, +/obj/structure/railing, +/obj/effect/floor_decal/spline/plain, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/water/deep{ + has_fish = 0 + }, +/area/surface/outside/station/reactorpond) +"uws" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/yellow/border, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/reactor) +"uwu" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/ai/upload) +"uwU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/hallway/gnd) +"uwX" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/weststairwell/gnd) +"uxn" = ( +/obj/effect/shuttle_landmark/cynosure/supply_station, +/turf/simulated/floor/tiled/asteroid_steel, +/area/surface/outside/plains/station) +"uxE" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"uxR" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/rnd/xenobiology/xenoflora_isolation) +"uxZ" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/medical/hallway/gnd) +"uzl" = ( +/obj/effect/floor_decal/techfloor{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/ai/upload) +"uAd" = ( +/obj/machinery/power/smes/buildable{ + RCon_tag = "Reactor - Main"; + charge = 2e+007; + cur_coils = 4; + input_attempt = 1; + input_level = 750000; + output_level = 750000 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/effect/zone_divider, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_smes) +"uAp" = ( +/obj/machinery/computer/security/engineering{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/engineering/engineering_monitoring) +"uAO" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 4 + }, +/obj/structure/janitorialcart, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/janitor) +"uAR" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/obj/structure/table/glass, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/station/crew_quarters/pool) +"uAY" = ( +/obj/effect/floor_decal/techfloor{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/ai/upload) +"uBg" = ( +/obj/machinery/vending/medical, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/medical/etc) +"uBt" = ( +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -12; + pixel_y = -24 + }, +/obj/machinery/button/windowtint{ + id = "st2_tint"; + pixel_x = 11; + pixel_y = -23 + }, +/obj/machinery/button/holosign{ + icon_state = "light0"; + id = "op2"; + pixel_x = 11; + pixel_y = -32 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/surgery2) +"uBC" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/outpost/research/xenoarcheology/surface) +"uBH" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 1 + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/surface/station/garage) +"uBP" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"uCd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/obj/machinery/portable_atmospherics/hydroponics/soil, +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/grass, +/area/surface/station/hydroponics/garden) +"uCe" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled/dark, +/area/surface/station/security/hallway/gnd) +"uCh" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"uCo" = ( +/obj/effect/zone_divider, +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/kitchen) +"uCE" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 5 + }, +/obj/structure/railing, +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/water/deep{ + has_fish = 0 + }, +/area/surface/outside/station/reactorpond) +"uCG" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"uCT" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/red{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"uDF" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/security/gnd) +"uEm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/carpet, +/area/surface/station/crew_quarters/heads/hop) +"uEu" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/cable/green, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + id = "xenobiocontain"; + layer = 3.3; + name = "Containment Blast Doors" + }, +/obj/machinery/status_display, +/turf/simulated/floor/plating, +/area/surface/station/rnd/xenobiology) +"uEX" = ( +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/yellow/bordercorner, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/workshop) +"uFg" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway) +"uFp" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/bordercorner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/camera/network/security{ + c_tag = "SEC - Hallway Southeast"; + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/gnd) +"uFr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor/border_only, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/hallway/primary/groundfloor/south) +"uFA" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 4 + }, +/obj/structure/table/steel_reinforced, +/obj/machinery/cell_charger, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/garage) +"uGu" = ( +/turf/simulated/floor/tiled/hydro, +/area/surface/station/hydroponics) +"uHq" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "ReactorPoolViewport"; + name = "Reactor Cooling Pond Viewport Shutters"; + pixel_x = 24; + req_one_access = list(11,24) + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"uHA" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + id = "biohazard"; + layer = 3.3; + name = "Biohazard Shutter" + }, +/obj/machinery/status_display, +/turf/simulated/floor/plating, +/area/surface/station/rnd/xenobiology/xenoflora) +"uIk" = ( +/obj/machinery/door/airlock/maintenance/engi{ + icon_state = "door_locked"; + id_tag = "elevator_sec_access"; + locked = 1; + name = "Emergency Access NO ENTRY"; + req_one_access = list() + }, +/obj/machinery/button/remote/airlock{ + dir = 4; + id = "elevator_sec_access"; + name = "Elevator Hatch Release"; + pixel_x = -24; + specialfunctions = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/security/hallway/gnd) +"uIm" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 5 + }, +/obj/structure/catwalk, +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/water/deep{ + has_fish = 0 + }, +/area/surface/outside/station/reactorpond) +"uIV" = ( +/obj/structure/table/marble, +/obj/machinery/chemical_dispenser/bar_soft/full, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/lino, +/area/surface/station/crew_quarters/bar) +"uJi" = ( +/obj/structure/sign/botany, +/turf/simulated/wall, +/area/surface/station/hydroponics) +"uKd" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/green{ + dir = 4 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"uKf" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 1 + }, +/obj/machinery/camera/network/ground_floor{ + c_tag = "Ground Floor - West Hallway 3" + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/west) +"uKz" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 1 + }, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/gnd) +"uKX" = ( +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/monofloor{ + dir = 1 + }, +/area/surface/station/engineering/atmos) +"uLq" = ( +/obj/structure/bed/chair/shuttle, +/turf/simulated/floor/tiled/old_tile/gray, +/area/shuttle/exploration/general) +"uLv" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/crew_quarters/heads/hos) +"uLx" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/weststairwell/gnd) +"uLM" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/window/reinforced/polarized/full{ + id = "secpro" + }, +/obj/machinery/ai_status_display, +/turf/simulated/floor/plating, +/area/surface/station/security/processing) +"uLU" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/machinery/ai_status_display{ + pixel_y = -32 + }, +/obj/random/crate{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/storage) +"uMf" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/west) +"uMB" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/groundfloor/civilian) +"uNc" = ( +/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/highsecurity{ + name = "Messaging Server"; + req_one_access = list(16) + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/ai/server_room) +"uNd" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/catwalk_plated, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/surface/station/arrivals/cynosure) +"uNe" = ( +/obj/structure/table/glass, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/item/weapon/reagent_containers/blood/AMinus{ + pixel_x = -6; + pixel_y = -6 + }, +/obj/item/weapon/reagent_containers/blood/APlus{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/item/weapon/reagent_containers/blood/BMinus{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/weapon/reagent_containers/blood/BPlus, +/obj/item/weapon/reagent_containers/blood/OPlus{ + pixel_x = 2; + pixel_y = 2 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/etc) +"uNr" = ( +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/surface/station/quartermaster/storage) +"uNv" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/north/gnd) +"uNW" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/bordercorner{ + dir = 8 + }, +/obj/structure/reagent_dispensers/peppertank{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/briefing_room) +"uOl" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/grey/border, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/tiled, +/area/surface/station/crew_quarters/gym) +"uOm" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/glass{ + name = "Hallway" + }, +/obj/structure/sign/directions/cargo{ + dir = 8; + pixel_y = -26 + }, +/obj/structure/sign/directions/science{ + dir = 8; + pixel_y = -32 + }, +/obj/structure/sign/directions/stairs_up{ + dir = 8; + pixel_y = -38 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/hallway/primary/groundfloor/west) +"uOq" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/rnd/xenobiology) +"uOQ" = ( +/obj/structure/closet/crate/medical, +/obj/item/weapon/surgical/surgicaldrill, +/obj/item/weapon/surgical/FixOVein, +/obj/item/weapon/surgical/circular_saw, +/obj/item/weapon/surgical/scalpel, +/obj/item/stack/medical/advanced/bruise_pack, +/obj/item/weapon/surgical/retractor, +/obj/item/weapon/surgical/hemostat, +/obj/item/weapon/surgical/cautery, +/obj/item/weapon/surgical/bonesetter, +/obj/item/weapon/surgical/bonegel, +/obj/item/stack/nanopaste, +/obj/item/weapon/autopsy_scanner, +/obj/item/weapon/reagent_containers/spray/cleaner, +/turf/simulated/floor/tiled/old_tile/gray, +/area/surface/station/medical/surgery_storage) +"uOT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/west) +"uPB" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/surgery) +"uPI" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/briefing_room) +"uPP" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/machinery/camera/network/engineering{ + c_tag = "ENG - Atmospherics West"; + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/engineering/atmos) +"uQm" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/range) +"uQn" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12 + }, +/obj/structure/mirror{ + pixel_x = -28 + }, +/obj/effect/floor_decal/corner/white/diagonal, +/turf/simulated/floor/tiled/white, +/area/surface/station/crew_quarters/locker) +"uQE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/exploration/cargo) +"uQF" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/glass_research{ + name = "Explorer Prep" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/rnd/exploration) +"uRh" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/multi_tile/glass{ + name = "EMT Bay"; + req_access = list(5) + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/medical/emt_bay) +"uRA" = ( +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/reactor) +"uRN" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 4 + }, +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled/dark, +/area/surface/station/engineering/hallway) +"uSf" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/border_only, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/gnd) +"uSF" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/surface/station/park) +"uSO" = ( +/obj/structure/table/reinforced, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/item/weapon/paper_bin, +/obj/item/weapon/pen, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/lobby) +"uTg" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 9 + }, +/obj/random/crate, +/obj/item/clothing/mask/gas, +/obj/item/device/flashlight{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/device/flashlight, +/obj/random/maintenance/security, +/obj/random/maintenance/clean, +/obj/machinery/meter, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/east/gnd) +"uTh" = ( +/obj/structure/table/steel, +/obj/item/device/retail_scanner/cargo, +/obj/item/device/retail_scanner/cargo{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/machinery/recharger, +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/lockerroom) +"uTs" = ( +/obj/structure/table/bench/padded, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24; + pixel_y = -12 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Xenobiologist" + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/rnd/research_lockerroom) +"uTB" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/rnd/exploration) +"uTC" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/range) +"uTS" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/catwalk_plated/dark, +/obj/machinery/door/blast/regular{ + id = "ReactorWasteHandling01"; + name = "Reactor Waste Handling Access" + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_waste) +"uTY" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/medical/surgery2) +"uUq" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Detective" + }, +/turf/simulated/floor/carpet, +/area/surface/station/security/detectives_office) +"uUU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/etc) +"uVc" = ( +/turf/simulated/floor/wood/sif, +/area/surface/outside/path/plains) +"uVe" = ( +/obj/effect/floor_decal/corner_steel_grid{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite/corner, +/obj/effect/floor_decal/corner/purple/bordercorner, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/gnd) +"uVi" = ( +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/engineering/storage) +"uVF" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green, +/obj/effect/wingrille_spawn/reinforced, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + dir = 2; + id = "xenobio2"; + layer = 3.3; + name = "Containment Blast Doors" + }, +/turf/simulated/floor/plating, +/area/surface/station/rnd/xenobiology) +"uVS" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/north/gnd) +"uWO" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/ai/upload) +"uWY" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/medical/hallway/gnd) +"uXb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/carpet, +/area/surface/station/crew_quarters/heads/hos) +"uXW" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/effect/wingrille_spawn/reinforced, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "xenobio4"; + layer = 3.3; + name = "Containment Blast Doors" + }, +/turf/simulated/floor/plating, +/area/surface/station/rnd/xenobiology) +"uYd" = ( +/obj/machinery/navbeacon/patrol{ + location = "PK1"; + next_patrol = "PK2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central6, +/obj/effect/floor_decal/steeldecal/steel_decals_central2, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/park) +"uYn" = ( +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 6 + }, +/turf/simulated/floor/tiled/monofloor, +/area/surface/station/engineering/foyer) +"uYR" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"uZe" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/black{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/effect/zone_divider, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_waste) +"uZl" = ( +/obj/structure/sign/goldenplaque, +/turf/simulated/wall, +/area/surface/station/security/equiptment_storage/ses) +"uZt" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/red/bordercorner, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/surface/station/security/range) +"vae" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 8 + }, +/obj/machinery/computer/general_air_control/large_tank_control{ + dir = 8; + input_tag = "tox_in"; + name = "Phoron Supply Control"; + output_tag = "tox_out"; + sensors = list("tox_sensor" = "Tank") + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/purple/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/engineering/atmos) +"vag" = ( +/obj/machinery/photocopier, +/turf/simulated/floor/wood, +/area/surface/station/library) +"vai" = ( +/obj/effect/floor_decal/techfloor, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/arrivals/cynosure) +"vam" = ( +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/chapel) +"vaE" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 21 + }, +/obj/random/vendordrink, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/hallway/primary/groundfloor/south) +"vaT" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/hallway/primary/groundfloor/east) +"vbc" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "clocker" + }, +/obj/machinery/door/blast/regular/open{ + id = "crglockdown"; + layer = 3.3; + name = "Cargo Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/quartermaster/lockerroom) +"vbd" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/ai/server_room) +"vbF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/techfloor, +/obj/effect/floor_decal/industrial/warning, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/ai/upload_foyer) +"vbG" = ( +/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, +/turf/simulated/floor/tiled/eris/cafe, +/area/surface/station/crew_quarters/kitchen) +"vbM" = ( +/turf/simulated/wall, +/area/surface/station/security/interrogation) +"vbQ" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/closet/secure_closet/medical1, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 21 + }, +/obj/random/medical, +/obj/random/medical, +/obj/random/medical, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/medical/emt_bay) +"vch" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 4 + }, +/obj/machinery/station_map{ + dir = 8; + pixel_x = 32 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/west/elevator) +"vcG" = ( +/obj/structure/table/standard, +/obj/item/device/multitool, +/obj/item/stack/cable_coil, +/turf/simulated/floor/reinforced, +/area/surface/station/rnd/misc_lab) +"vdo" = ( +/obj/machinery/biogenerator, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lime/border, +/turf/simulated/floor/tiled/hydro, +/area/surface/station/hydroponics) +"vdB" = ( +/obj/machinery/door/airlock{ + name = "Unit 1" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/rnd/research_restroom) +"vdR" = ( +/obj/structure/table/standard, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/item/device/flashlight/lamp, +/turf/simulated/floor/tiled/dark, +/area/surface/station/security/interrogation) +"vei" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/gnd) +"ves" = ( +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -24; + pixel_y = 12 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/south) +"veA" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/south) +"veM" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/obj/item/device/radio/intercom{ + pixel_y = -21 + }, +/obj/structure/closet/emcloset, +/obj/item/weapon/storage/toolbox/emergency, +/obj/machinery/light, +/obj/machinery/camera/network/ground_floor{ + c_tag = "Ground Floor - Cryostorage"; + dir = 1 + }, +/obj/machinery/computer/cryopod{ + pixel_y = -38 + }, +/turf/simulated/floor/tiled/old_tile/blue, +/area/surface/station/arrivals/cynosure/cryo) +"veP" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/structure/bookcase, +/obj/item/weapon/book/codex/corp_regs, +/obj/item/weapon/book/codex/corp_regs, +/turf/simulated/floor/lino, +/area/surface/station/security/detectives_office) +"veX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/navbeacon/patrol{ + location = "PK4"; + next_patrol = "SH1" + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central6, +/obj/effect/floor_decal/steeldecal/steel_decals_central2, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/park) +"vfn" = ( +/obj/structure/dispenser, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"vfq" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 5 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/water/deep{ + has_fish = 0 + }, +/area/surface/outside/station/reactorpond) +"vfB" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/effect/floor_decal/techfloor/corner{ + dir = 5 + }, +/obj/machinery/flasher{ + id = "AIfoyer"; + pixel_y = -36 + }, +/obj/machinery/turretid/stun{ + control_area = "\improper AI - Upload Chamber"; + name = "AI Upload turret control"; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/ai/upload_foyer) +"vfC" = ( +/obj/machinery/computer/message_monitor{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/bluegrid, +/area/surface/station/ai/server_room) +"vfM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/wall, +/area/surface/station/rnd/xenobiology) +"vfO" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/white/diagonal, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/freezer, +/area/surface/station/crew_quarters/pool) +"vgi" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/item/weapon/stool/padded, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/cafeteria) +"vgs" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/workshop) +"vgD" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/hallway/primary/groundfloor/east) +"vgP" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/green/border, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/rnd/exploration) +"vgU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/east/gnd) +"vhh" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/storage) +"vhl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/kitchen) +"vhq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/engineering_monitoring) +"vhz" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/dispenser, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/engineering/storage) +"vhL" = ( +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/storage) +"vhM" = ( +/obj/structure/cable/green{ + 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/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/cafeteria) +"vim" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/disposal, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/grey/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/crew_quarters/gym) +"viu" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"viv" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central5, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway) +"viA" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/crew_quarters/caferestroom) +"viG" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 9 + }, +/obj/structure/railing, +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/water/deep{ + has_fish = 0 + }, +/area/surface/outside/station/reactorpond) +"viM" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green, +/obj/machinery/meter, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"vjb" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/hallway/primary/groundfloor/west) +"vjp" = ( +/obj/machinery/floodlight, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/storage/emergency/sec) +"vjG" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"vjM" = ( +/obj/structure/bed/chair, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/arrivals/cynosure) +"vkg" = ( +/turf/simulated/wall/solidrock, +/area/surface/outside/plains/plateau) +"vkM" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 10 + }, +/obj/effect/floor_decal/techfloor{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/rnd/xenobiology/xenoflora_isolation) +"vkN" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/gnd) +"vkP" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/lobby) +"vla" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/catwalk_plated, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/security/briefing_room) +"vli" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "hop_office" + }, +/obj/machinery/status_display, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/green, +/turf/simulated/floor/plating, +/area/surface/station/crew_quarters/heads/hop) +"vlF" = ( +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/pink/bordercorner{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/security/detectives_office/lab) +"vlI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor, +/obj/machinery/ai_slipper, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/ai/upload) +"vlK" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/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 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/evidence_storage) +"vmj" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/effect/landmark/start{ + name = "Scientist" + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/rnd/research_lockerroom) +"vmt" = ( +/obj/machinery/botany/extractor, +/obj/effect/floor_decal/spline/plain{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/rnd/xenobiology/xenoflora) +"vmw" = ( +/obj/machinery/vending/hydronutrients, +/obj/effect/floor_decal/spline/plain{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/rnd/xenobiology/xenoflora) +"vmK" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/green/border, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/north) +"vmM" = ( +/obj/effect/zone_divider, +/turf/simulated/wall/r_wall, +/area/surface/station/engineering/reactor_waste) +"vnb" = ( +/obj/machinery/atmospherics/unary/heater{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/engineering/atmos) +"vnd" = ( +/obj/structure/table/reinforced, +/obj/item/device/slime_scanner{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/device/slime_scanner, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/rnd/xenobiology) +"vnh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/bordercorner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/green/bordercorner2{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/east) +"vnT" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/catwalk_plated, +/obj/effect/zone_divider, +/turf/simulated/floor/plating, +/area/surface/station/hallway/primary/groundfloor/south) +"vob" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/ai_status_display, +/turf/simulated/floor/plating, +/area/surface/station/park) +"vox" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/engineering/foyer) +"vpe" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/catwalk_plated, +/obj/effect/zone_divider, +/turf/simulated/floor/plating, +/area/surface/station/hallway/primary/groundfloor/south) +"vpm" = ( +/obj/structure/disposalpipe/trunk, +/obj/machinery/disposal/deliveryChute{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/quartermaster/delivery) +"vpx" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/item/weapon/stool/barstool/padded{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/cafeteria) +"vpF" = ( +/obj/machinery/door/firedoor/border_only, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/corner/purple/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/rnd/hallway/gnd) +"vqe" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/structure/closet/secure_closet/chemical, +/obj/effect/floor_decal/corner/beige/border{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/item/weapon/storage/box/pillbottles{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/storage/box/syringes, +/obj/item/weapon/tool/screwdriver, +/obj/machinery/camera/network/medbay{ + c_tag = "MED - Chemistry"; + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/chemistry) +"vrG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + 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 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/security/detectives_office/lab) +"vrU" = ( +/obj/structure/bed/chair/office/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/surface/station/library) +"vrX" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/extinguisher_cabinet{ + dir = 1; + pixel_y = 30 + }, +/obj/structure/table/steel, +/obj/item/stack/cable_coil{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/stack/cable_coil, +/obj/item/device/multitool, +/obj/item/clothing/gloves/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/engineering/reactor_smes) +"vsn" = ( +/obj/structure/table/rack, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/surgery) +"vss" = ( +/obj/machinery/ai_status_display, +/turf/simulated/wall/durasteel, +/area/surface/station/ai/upload) +"vsu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/blue{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/kitchen) +"vsL" = ( +/turf/simulated/wall/rshull, +/area/shuttle/exploration/cargo) +"vsS" = ( +/obj/machinery/mineral/equipment_vendor/survey, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/green/border, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/rnd/exploration) +"vtx" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/surgery) +"vtF" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/zpipe/up/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/green{ + d1 = 16; + d2 = 0; + icon_state = "16-0" + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/power/sensor{ + name = "Powernet Sensor - Cargo Subgrid"; + name_tag = "Cargo Subgrid" + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/cargo/gnd) +"vtJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/green/bordercorner, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/groundfloor/civilian) +"vue" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/tiled/hydro, +/area/surface/station/park) +"vuv" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/gnd) +"vux" = ( +/obj/structure/railing/grey{ + dir = 4 + }, +/turf/simulated/floor/water/deep, +/area/surface/outside/river/gautelfr) +"vuy" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/toolbox/emergency, +/obj/item/bodybag/cryobag{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/bodybag/cryobag{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/bodybag/cryobag{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/storage/primary_storage) +"vvm" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/dice, +/turf/simulated/floor/carpet, +/area/surface/station/library) +"vvG" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/medical/storage/primary_storage) +"vvJ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/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/sign/directions/ladder_up{ + dir = 4; + pixel_y = 26 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/east/gnd) +"vvK" = ( +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 6 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/crew_quarters/heads/hop) +"vvN" = ( +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/green/bordercorner, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/south) +"vvS" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/security/hallway/gnd) +"vvW" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/surface/outpost/research/xenoarcheology/surface) +"vwj" = ( +/obj/machinery/airlock_sensor/airlock_exterior{ + dir = 1; + id_tag = "mnorth_airlock_ext_sensor"; + master_tag = "mnorth_airlock"; + pixel_x = 24; + pixel_y = -31 + }, +/obj/effect/map_helper/airlock/sensor/ext_sensor, +/obj/effect/floor_decal/industrial/warning/dust, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor + }, +/area/surface/station/hallway/primary/groundfloor/north) +"vwm" = ( +/obj/structure/table/bench/steel, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 21 + }, +/turf/simulated/floor/tiled, +/area/surface/station/crew_quarters/gym) +"vwn" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/ward) +"vwy" = ( +/turf/simulated/floor/outdoors/mask, +/area/surface/outside/plains/normal) +"vwK" = ( +/obj/machinery/atmospherics/pipe/cap/visible{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"vxn" = ( +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/bordercorner{ + dir = 1 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -24; + pixel_y = 12 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 8 + }, +/obj/structure/table/standard, +/obj/item/weapon/material/knife, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/rnd/exploration) +"vxx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/park) +"vxH" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/misc_lab) +"vxR" = ( +/obj/structure/ladder/updown, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/engineering/gnd) +"vyi" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -24; + pixel_y = 12 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 8 + }, +/obj/structure/cable/green, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/workshop) +"vyB" = ( +/obj/machinery/atmospherics/portables_connector, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/engineering/hallway) +"vyH" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/surface/station/chapel/main) +"vzn" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table/steel, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/item/roller{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/roller, +/obj/item/roller{ + pixel_x = 3; + pixel_y = 3 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/medical/emt_bay) +"vzO" = ( +/obj/structure/bed/chair/shuttle{ + dir = 1 + }, +/obj/structure/closet/walllocker/emerglocker{ + pixel_y = -32 + }, +/turf/simulated/shuttle/floor/white, +/area/shuttle/large_escape_pod1/station) +"vAb" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/hallway/primary/groundfloor/west) +"vAd" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/green{ + dir = 1 + }, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"vBt" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "crglockdown"; + layer = 3.3; + name = "Cargo Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/chapel) +"vBC" = ( +/turf/simulated/floor/plating/sif/planetuse, +/area/shuttle/escape/station{ + dynamic_lighting = 1 + }) +"vBD" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/blast/regular/open{ + id = "atmoslockdown"; + layer = 3.3; + name = "Atmospherics Lockdown" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/atmos) +"vBN" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 10 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 5 + }, +/turf/simulated/floor/water/deep{ + has_fish = 0 + }, +/area/surface/outside/station/reactorpond) +"vCf" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/cloning) +"vCi" = ( +/obj/structure/cable/green{ + 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/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/obj/machinery/door/airlock/engineering{ + name = "Research Substation"; + req_one_access = list(47) + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/research/gnd) +"vCy" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/crew_quarters/locker) +"vDa" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/medical/chemistry) +"vDb" = ( +/obj/structure/disposalpipe/sortjunction/wildcard/flipped, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/effect/catwalk_plated, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -21 + }, +/turf/simulated/floor/plating, +/area/surface/station/quartermaster/delivery) +"vDG" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/medical/reception) +"vDJ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "steel_dirty"; + initial_flooring = /decl/flooring/tiling/steel_dirty + }, +/area/surface/outside/plains/station) +"vDZ" = ( +/obj/machinery/power/smes/buildable{ + RCon_tag = "Substation - Arrivals"; + charge = 2e+006; + input_attempt = 1 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/arrivals) +"vEc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/ward) +"vEx" = ( +/obj/machinery/door/firedoor/border_only, +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/gnd) +"vEZ" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 10 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/simulated/floor/water/deep{ + has_fish = 0 + }, +/area/surface/outside/station/reactorpond) +"vFq" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + 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 = 24 + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/north/gnd) +"vFU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/structure/sign/directions/security{ + dir = 1; + pixel_x = 32; + pixel_y = 6 + }, +/obj/structure/sign/directions/medical{ + dir = 1; + pixel_x = 32; + pixel_y = -6 + }, +/obj/structure/sign/directions/engineering{ + dir = 1; + pixel_x = 32 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/south) +"vFW" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/surgery) +"vFY" = ( +/turf/simulated/floor/tiled/monotile, +/area/surface/station/garage) +"vGn" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning/dust/corner{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor + }, +/area/surface/outpost/research/xenoarcheology/surface) +"vGx" = ( +/turf/simulated/wall, +/area/surface/station/medical/chemistry) +"vGB" = ( +/obj/machinery/door/blast/regular/open{ + id = "atmoslockdown"; + layer = 3.3; + name = "Atmospherics Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/atmos) +"vGO" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/rnd/hallway/gnd) +"vHh" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 9 + }, +/obj/effect/floor_decal/corner/pink/border{ + dir = 9 + }, +/obj/item/weapon/reagent_containers/spray/cleaner, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/surgery2) +"vHV" = ( +/obj/structure/window/reinforced, +/turf/simulated/floor/wood, +/area/surface/station/library) +"vHY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/wood/sif, +/area/surface/station/chapel/main) +"vHZ" = ( +/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/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/hallway/gnd) +"vIg" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/chapel/main) +"vIE" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 4 + }, +/obj/machinery/oxygen_pump/mobile, +/obj/structure/extinguisher_cabinet{ + dir = 1; + pixel_y = 30 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/medical/etc) +"vIJ" = ( +/obj/effect/floor_decal/techfloor, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/hallway/primary/groundfloor/south) +"vIK" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/surface/station/security/detectives_office) +"vJd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/weststairwell/gnd) +"vJx" = ( +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "medbayquar"; + layer = 3.3; + name = "Medbay Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/medical/surgery2) +"vJC" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 5 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/water/deep{ + has_fish = 0 + }, +/area/surface/outside/station/reactorpond) +"vJD" = ( +/turf/simulated/wall, +/area/surface/station/maintenance/atmos) +"vJO" = ( +/obj/machinery/atmospherics/valve/digital{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/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/red/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/engineering/atmos) +"vJR" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/east/gnd) +"vJZ" = ( +/obj/structure/sign/directions/science/robotics{ + dir = 8 + }, +/obj/structure/sign/directions/science/rnd{ + dir = 8; + pixel_y = 6 + }, +/obj/structure/sign/directions/stairs_up{ + dir = 8; + pixel_y = -6 + }, +/turf/simulated/wall, +/area/surface/station/rnd/hallway/stairwell) +"vKa" = ( +/obj/effect/floor_decal/techfloor, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/manifold/hidden, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/hallway/primary/groundfloor/south) +"vKc" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/engineering/atmos) +"vKC" = ( +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/station/shuttle/pad3) +"vKZ" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/gnd) +"vLa" = ( +/turf/simulated/floor/tiled, +/area/surface/station/security/range) +"vLj" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/solars/west) +"vLm" = ( +/obj/machinery/portable_atmospherics/powered/pump/filled, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/kitchen) +"vLB" = ( +/obj/structure/bed/chair/shuttle, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 21 + }, +/turf/simulated/shuttle/floor/white, +/area/shuttle/large_escape_pod1/station) +"vLZ" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "xenobiocontain"; + layer = 3.3; + name = "Containment Blast Doors" + }, +/turf/simulated/floor/plating, +/area/surface/station/rnd/xenobiology) +"vMf" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/green{ + dir = 8 + }, +/obj/structure/grille, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/station) +"vMn" = ( +/obj/structure/closet/secure_closet/scientist, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/rnd/research_lockerroom) +"vMA" = ( +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/red/bordercorner, +/obj/machinery/camera/network/security{ + c_tag = "SEC - Briefing East"; + dir = 10 + }, +/obj/item/device/radio/intercom/department/security{ + dir = 1; + pixel_y = -21 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/briefing_room) +"vMG" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 4 + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24; + pixel_y = -12 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/west/elevator) +"vNt" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/yellow/border, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway) +"vNz" = ( +/turf/simulated/wall, +/area/surface/station/engineering/reactor_room) +"vNA" = ( +/obj/effect/wingrille_spawn/reinforced_phoron, +/obj/machinery/door/blast/regular{ + id = "SupermatterPort"; + layer = 3.3; + name = "Reactor Core Blast Door" + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"vNC" = ( +/obj/effect/floor_decal/techfloor{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/ai/upload) +"vNY" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/obj/machinery/meter, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"vPi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/hydro, +/area/surface/station/hydroponics) +"vPD" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/equiptment_storage/ses) +"vPL" = ( +/obj/structure/grille, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/station) +"vQG" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central6{ + dir = 1 + }, +/obj/vehicle/train/trolley/trailer/random, +/turf/simulated/floor/tiled/monofloor, +/area/surface/station/garage) +"vQJ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/flora/pottedplant/stoutbush, +/turf/simulated/floor/wood/sif, +/area/surface/station/chapel/main) +"vQT" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/range) +"vRh" = ( +/obj/structure/railing/grey{ + dir = 4 + }, +/turf/simulated/floor/water, +/area/surface/outside/river/gautelfr) +"vRD" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 9 + }, +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "atmoslockdown"; + layer = 3.3; + name = "Atmospherics Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/atmos) +"vRT" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 6 + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "ReactorWasteViewport01"; + layer = 3.3; + name = "Reactor Waste Viewport Shutter" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_waste) +"vSp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/surface/station/library) +"vSu" = ( +/obj/machinery/door/blast/regular/open{ + id = "seclockdown"; + layer = 3.3; + name = "Security Lockdown" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/surface/station/security/briefing_room) +"vSK" = ( +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -12; + pixel_y = -24 + }, +/obj/structure/cable/green, +/turf/simulated/floor/wood/sif, +/area/surface/station/chapel/main) +"vSU" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/lockerroom) +"vSV" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled/hydro, +/area/surface/station/hydroponics) +"vTn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/techfloor{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/ai/upload) +"vUj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/station) +"vUB" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/west/elevator) +"vVk" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/machinery/atmospherics/unary/vent_pump/engine{ + dir = 8; + external_pressure_bound = 100; + external_pressure_bound_default = 0; + frequency = 1438; + icon_state = "map_vent_in"; + id_tag = "cooling_out"; + initialize_directions = 1; + pump_direction = 0; + use_power = 1 + }, +/turf/simulated/floor/reinforced/supermatter_core, +/area/surface/station/engineering/reactor_room) +"vVo" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 5 + }, +/obj/machinery/meter, +/obj/machinery/camera/network/engine{ + c_tag = "ENG - Waste Handling"; + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -21 + }, +/obj/effect/zone_divider, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_waste) +"vVz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/yellow/border, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/reactor) +"vVA" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/surgery2) +"vVI" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/ai_status_display, +/turf/simulated/floor/plating, +/area/surface/station/crew_quarters/cafeteria) +"vVN" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/medical/ward) +"vWd" = ( +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/rnd/exploration) +"vXc" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/exploration/cargo) +"vXq" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/station) +"vXJ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/obj/machinery/atmospherics/binary/pump{ + dir = 8; + name = "Air Tank Bypass" + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"vXK" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/camera/network/civilian{ + c_tag = "CIV - Chapel Office" + }, +/turf/simulated/floor/lino, +/area/surface/station/chapel/office) +"vXR" = ( +/obj/machinery/disposal, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/rnd/xenobiology) +"vYm" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/south) +"vYq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/south) +"vYx" = ( +/obj/machinery/portable_atmospherics/powered/pump/filled, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/atmos) +"vYM" = ( +/obj/structure/ladder, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/north/gnd) +"vYO" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/security/restroom) +"vYV" = ( +/obj/machinery/door/blast/regular/open{ + id = "medbayquar"; + layer = 3.3; + name = "Medbay Lockdown" + }, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/medical/ward) +"vYX" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/lockerroom) +"vZt" = ( +/obj/structure/cliff/automatic/corner{ + dir = 9 + }, +/turf/simulated/floor/outdoors/mask, +/area/surface/outside/plains/plateau) +"vZO" = ( +/obj/structure/target_stake, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/security/range) +"vZV" = ( +/obj/effect/wingrille_spawn/reinforced_phoron, +/obj/machinery/door/blast/regular{ + dir = 4; + id = "SupermatterPort"; + layer = 3.3; + name = "Reactor Core Blast Door" + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"vZZ" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/obj/machinery/door/airlock/glass_external{ + frequency = 1380; + icon_state = "door_locked"; + id_tag = "arrivals_dock_south_inner"; + locked = 1; + name = "Internal Access" + }, +/obj/effect/map_helper/airlock/door/int_door, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/arrivals/cynosure/nopower) +"wae" = ( +/obj/machinery/washing_machine, +/obj/effect/floor_decal/corner/white/diagonal, +/turf/simulated/floor/tiled/white, +/area/surface/station/crew_quarters/locker) +"wak" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/reactor) +"wao" = ( +/obj/structure/table/bench/wooden, +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/wood/sif, +/area/surface/station/chapel/main) +"waA" = ( +/obj/structure/table/woodentable, +/obj/structure/flora/pottedplant{ + pixel_y = 8 + }, +/obj/structure/sign/directions/evac{ + pixel_y = 32 + }, +/obj/structure/sign/directions/cryo{ + pixel_y = 26 + }, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/cafeteria) +"waK" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 10 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central4{ + dir = 1 + }, +/obj/effect/zone_divider, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/groundfloor/civilian) +"wbm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/surface/station/library) +"wbH" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table/glass, +/obj/machinery/computer/med_data/laptop{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 8 + }, +/obj/machinery/camera/network/medbay{ + c_tag = "MED - Patient Ward East"; + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/ward) +"wbN" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/hallway/primary/groundfloor/south) +"wcF" = ( +/obj/structure/stairs/spawner/west, +/obj/structure/railing, +/turf/simulated/floor/tiled/freezer, +/area/surface/station/crew_quarters/pool) +"wcG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/maintenance{ + req_one_access = list(12) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/weststairwell/gnd) +"wdu" = ( +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/solar, +/obj/effect/zone_divider, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "steel_dirty"; + initial_flooring = /decl/flooring/tiling/steel_dirty + }, +/area/surface/outside/station/solar/northeastsolar) +"wdw" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/computer/general_air_control/large_tank_control{ + dir = 8; + input_tag = "n2o_in"; + name = "Nitrous Oxide Supply Control"; + output_tag = "n2o_out"; + sensors = list("n2o_sensor" = "Tank") + }, +/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/white/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/engineering/atmos) +"wdC" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/chapel) +"wdE" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "englockdown"; + layer = 3.3; + name = "Engineering Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/hallway/reactor) +"wed" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/station/crew_quarters/kitchen) +"weM" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 10 + }, +/obj/structure/railing, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/water/deep{ + has_fish = 0 + }, +/area/surface/outside/station/reactorpond) +"wff" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/arrivals/cynosure) +"wfj" = ( +/obj/structure/table/marble, +/obj/machinery/chemical_dispenser/bar_alc/full, +/turf/simulated/floor/lino, +/area/surface/station/crew_quarters/bar) +"wfn" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway) +"wfC" = ( +/obj/machinery/oxygen_pump/mobile/anesthetic, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/pink/border{ + dir = 4 + }, +/obj/structure/closet/secure_closet/medical_wall/anesthetics{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/surgery2) +"wga" = ( +/obj/structure/sign/directions/security/armory, +/obj/structure/sign/directions/stairs_up{ + pixel_y = -6 + }, +/obj/structure/sign/directions/security/brig{ + pixel_y = 6 + }, +/turf/simulated/wall, +/area/surface/station/security/detectives_office) +"whp" = ( +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "crglockdown"; + layer = 3.3; + name = "Cargo Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/chapel) +"whv" = ( +/turf/simulated/floor/tiled/monotile, +/area/surface/station/security/equiptment_storage/ses) +"whz" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/range) +"wih" = ( +/obj/machinery/atmospherics/unary/vent_scrubber{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/surface/station/rnd/misc_lab) +"wik" = ( +/turf/simulated/wall, +/area/surface/station/medical/emt_bay) +"wir" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "steel_dirty"; + initial_flooring = /decl/flooring/tiling/steel_dirty + }, +/area/surface/outside/plains/station) +"wiA" = ( +/obj/machinery/atmospherics/unary/heat_exchanger{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_waste) +"wjb" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 4 + }, +/obj/machinery/button/remote/blast_door{ + desc = "A remote control-switch for the reactor charging port."; + dir = 8; + id = "SupermatterPort"; + name = "Reactor Core Blast Doors"; + pixel_x = 24; + pixel_y = 6; + req_access = list(10) + }, +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "ReactorBlast"; + name = "Reactor Monitoring Room Shutters"; + pixel_x = 24; + pixel_y = -6; + req_one_access = list(11,24) + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"wjy" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/crew_quarters/locker) +"wkW" = ( +/obj/effect/floor_decal/techfloor/corner{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/ai/upload) +"wkY" = ( +/turf/simulated/wall, +/area/surface/station/security/restroom) +"wlb" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/east) +"wlg" = ( +/turf/simulated/wall, +/area/surface/station/hallway/primary/groundfloor/south) +"wlI" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/effect/zone_divider, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/groundfloor/civilian) +"wlR" = ( +/obj/machinery/disposal, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/rnd/xenobiology) +"wlT" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red, +/obj/machinery/meter, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"wmh" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/sink/generic{ + dir = 8; + pixel_x = 12; + pixel_y = -4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/etc) +"wmF" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/east/gnd) +"wmM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/camera/network/command{ + c_tag = "AI - Upload East"; + dir = 4 + }, +/obj/machinery/computer/borgupload{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/ai/upload) +"wnb" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/security/hallway/gnd) +"wnc" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/reception) +"wnd" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 8 + }, +/obj/effect/zone_divider, +/turf/simulated/floor/tiled/freezer, +/area/surface/station/crew_quarters/pool) +"wnj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/green/border, +/obj/structure/sign/directions/evac{ + dir = 4; + pixel_y = -32 + }, +/obj/structure/sign/directions/cryo{ + dir = 4; + pixel_y = -38 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/groundfloor/civilian) +"wnl" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/hydroponics/garden) +"wnm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_security{ + name = "Forensics"; + req_one_access = list(4) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/security/detectives_office/lab) +"wns" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 4 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"wnv" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/gnd) +"wnA" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/valve, +/obj/machinery/button/remote/blast_door{ + desc = "A remote control-switch for the exterior vent port."; + dir = 8; + id = "ReactorVent"; + name = "Reactor Ventillatory Control"; + pixel_x = 24; + req_access = list(10) + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"wnM" = ( +/turf/simulated/floor/tiled, +/area/surface/station/security/lobby) +"wnS" = ( +/obj/effect/floor_decal/corner/white/diagonal{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/reinforced/n20, +/area/surface/station/engineering/atmos) +"wop" = ( +/obj/structure/table/rack{ + layer = 2.6 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/window/westleft{ + name = "Suit Storage"; + req_access = list(5) + }, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/suit/space/void/medical, +/obj/item/clothing/head/helmet/space/void/medical, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/medical/emt_bay) +"woy" = ( +/obj/machinery/mech_recharger, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/rust/mono_rusted2, +/obj/machinery/atmospherics/pipe/simple/hidden/red, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/engineering/hallway) +"woI" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/medical/surgery) +"woN" = ( +/obj/effect/floor_decal/corner/blue/diagonal, +/obj/effect/floor_decal/corner/white{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/outlet_injector{ + dir = 1; + frequency = 1443; + id = "air_in"; + use_power = 1 + }, +/turf/simulated/floor/reinforced/airmix, +/area/surface/station/engineering/atmos) +"woY" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway) +"wpQ" = ( +/obj/structure/sign/bigname/seg_2{ + pixel_y = 32 + }, +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outside/plains/station) +"wqH" = ( +/obj/effect/floor_decal/industrial/outline/blue, +/obj/machinery/atmospherics/binary/pump{ + dir = 1 + }, +/obj/effect/engine_setup/pump_max, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_waste) +"wqJ" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/surface/station/rnd/xenobiology) +"wqS" = ( +/obj/structure/disposaloutlet{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk, +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/plating, +/area/surface/station/rnd/xenobiology) +"wsn" = ( +/obj/structure/table/steel_reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals_central5, +/obj/item/weapon/gun/energy/laser/practice, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/range) +"wsu" = ( +/obj/effect/floor_decal/corner/white{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/diagonal, +/obj/machinery/atmospherics/unary/outlet_injector{ + dir = 8; + frequency = 1441; + id = "n2o_in"; + use_power = 1 + }, +/turf/simulated/floor/reinforced/n20, +/area/surface/station/engineering/atmos) +"wsy" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/park) +"wtk" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/green/border, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/north) +"wtw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/glass{ + name = "Hallway" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/hallway/primary/groundfloor/south) +"wtQ" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/camera/network/security{ + c_tag = "SEC - Secondary Equipment Storage"; + dir = 6 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/equiptment_storage/ses) +"wuZ" = ( +/obj/effect/shuttle_landmark/cynosure/pads/pad3, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/station/shuttle/pad3) +"wvm" = ( +/obj/machinery/holosign/bar, +/turf/simulated/wall, +/area/surface/station/hydroponics/garden) +"wvH" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/security{ + name = "Security Locker Room" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/security/lockerroom) +"wwF" = ( +/obj/structure/railing, +/turf/simulated/floor/tiled/freezer, +/area/surface/station/crew_quarters/pool) +"wxg" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/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, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/groundfloor/civilian) +"wxu" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/glass{ + name = "Hydroponics"; + req_one_access = list(28,35) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/hydroponics) +"wxv" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/monofloor{ + dir = 4 + }, +/area/surface/station/park) +"wxI" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/hallway/primary/groundfloor/north) +"wxJ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"wxN" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/hallway/primary/groundfloor/south) +"wxQ" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/station/hydroponics) +"wyf" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/maintenance/solars/northeast) +"wyB" = ( +/obj/structure/grille, +/turf/simulated/wall/r_wall, +/area/surface/station/engineering/atmos) +"wzr" = ( +/obj/machinery/status_display, +/turf/simulated/wall/durasteel, +/area/surface/station/ai/upload) +"wzz" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3, +/obj/structure/curtain/open/shower/security, +/obj/machinery/shower{ + dir = 8; + pixel_x = -5; + pixel_y = -1 + }, +/obj/machinery/door/window/westleft{ + name = "shower" + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/restroom) +"wzJ" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/tiled/freezer, +/area/surface/station/crew_quarters/pool) +"wzX" = ( +/turf/simulated/wall/r_wall, +/area/surface/outside/plains/station) +"wAe" = ( +/turf/simulated/floor/plating, +/area/surface/station/park) +"wAy" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/gnd) +"wAz" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "atmoslockdown"; + layer = 3.3; + name = "Atmospherics Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/atmos) +"wAS" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/bordercorner{ + dir = 4 + }, +/obj/structure/sign/directions/stairs_up{ + dir = 8; + pixel_y = 26 + }, +/obj/structure/sign/directions/command{ + dir = 8; + pixel_y = 38 + }, +/obj/structure/sign/directions/dorms{ + dir = 8; + pixel_y = 32 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/hallway/secondary/groundfloor/civilian) +"wAU" = ( +/obj/structure/cliff/automatic/corner, +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/mask, +/area/surface/outside/plains/plateau) +"wBO" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/cargo/gnd) +"wBU" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/structure/flora/pottedplant/orientaltree, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/reception) +"wCc" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_security{ + id_tag = "BrigFoyer"; + name = "Security Lobby"; + req_access = list(63); + req_one_access = list() + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/security/lobby) +"wCF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/hallway/primary/groundfloor/west) +"wCG" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/turf/simulated/floor/tiled/asteroid_steel, +/area/surface/outside/plains/station) +"wCT" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/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{ + dir = 4; + pixel_x = -24; + pixel_y = 12 + }, +/obj/machinery/power/sensor{ + name = "Powernet Sensor - Arrivals"; + name_tag = "Arrivals Subgrid" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/arrivals) +"wCW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/monofloor, +/area/surface/station/engineering/atmos) +"wDs" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/north/gnd) +"wDv" = ( +/obj/structure/sign/warning/lethal_turrets, +/turf/simulated/wall/r_wall, +/area/surface/station/ai/upload) +"wDH" = ( +/obj/effect/floor_decal/borderfloorwhite/corner, +/obj/effect/floor_decal/corner/purple/bordercorner, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/gnd) +"wDX" = ( +/turf/simulated/wall, +/area/surface/station/medical/surgeryobs) +"wEc" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/engineering_monitoring) +"wEB" = ( +/obj/effect/floor_decal/corner_steel_grid, +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/bordercorner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/gnd) +"wFE" = ( +/obj/structure/table/bench/wooden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/wood/sif, +/area/surface/station/chapel/main) +"wFS" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals_central5, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"wGe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/green/bordercorner2{ + dir = 5 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/park) +"wGv" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/glass{ + name = "Hallway" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/hallway/primary/groundfloor/west) +"wGH" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/crew_quarters/heads/hop) +"wGW" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/obj/machinery/airlock_sensor/airlock_interior{ + id_tag = "marrivals_airlock_int_sensor"; + master_tag = "marrivals_airlock"; + pixel_x = -35; + pixel_y = 31 + }, +/obj/effect/map_helper/airlock/sensor/int_sensor, +/turf/simulated/floor/tiled, +/area/surface/station/arrivals/cynosure) +"wHy" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway) +"wHD" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/machinery/photocopier/faxmachine{ + department = "Head of Personnel's Office" + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled, +/area/surface/station/crew_quarters/heads/hop) +"wHU" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + id = "xenobiocontain"; + layer = 3.3; + name = "Containment Blast Doors" + }, +/turf/simulated/floor/plating, +/area/surface/station/rnd/xenobiology) +"wHY" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/storage/primary_storage) +"wIC" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/hydro, +/area/surface/station/hydroponics) +"wIU" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/reactor) +"wIY" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/effect/catwalk_plated/dark, +/obj/effect/floor_decal/industrial/warning, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/research/gnd) +"wJk" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/water/pool, +/area/surface/station/crew_quarters/pool) +"wJW" = ( +/obj/machinery/shield_gen, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/engineering/storage) +"wKc" = ( +/obj/effect/zone_divider, +/turf/simulated/wall, +/area/surface/outside/plains/station) +"wKq" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/station/crew_quarters/kitchen) +"wKB" = ( +/obj/effect/floor_decal/corner_steel_grid{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/purple/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/gnd) +"wKC" = ( +/obj/machinery/power/grid_checker, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/engineering/gnd) +"wKW" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/storage) +"wLl" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/arrivals/cynosure) +"wLr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/rnd/exploration) +"wLT" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 4 + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/tiled/dark, +/area/surface/station/crew_quarters/heads/hos) +"wMa" = ( +/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/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/glass_security{ + name = "Briefing Room" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/security/briefing_room) +"wMd" = ( +/obj/machinery/shield_capacitor{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/engineering/storage) +"wMG" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/structure/bed/chair/wood, +/turf/simulated/floor/tiled/hydro, +/area/surface/station/park) +"wMM" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/machinery/atmospherics/pipe/cap/visible, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"wMS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/green/bordercorner2{ + dir = 6 + }, +/obj/structure/closet, +/obj/item/clothing/shoes/boots/winter, +/obj/item/clothing/shoes/boots/winter, +/obj/item/clothing/shoes/boots/winter, +/obj/item/clothing/suit/storage/hooded/wintercoat, +/obj/item/clothing/suit/storage/hooded/wintercoat, +/obj/item/clothing/suit/storage/hooded/wintercoat, +/obj/item/weapon/melee/umbrella/random, +/obj/item/weapon/melee/umbrella/random, +/obj/machinery/camera/network/ground_floor{ + c_tag = "Ground Floor - Arrivals North"; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/arrivals/cynosure) +"wNJ" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/surgery) +"wNK" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/groundfloor/civilian) +"wNW" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/tiled/dark, +/area/surface/station/hallway/primary/groundfloor/north) +"wOb" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/bordercorner{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain, +/obj/machinery/newscaster/security_unit{ + pixel_y = 26 + }, +/turf/simulated/floor/tiled, +/area/surface/station/crew_quarters/heads/hop) +"wOf" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/box/monkeycubes{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/item/weapon/storage/box/monkeycubes{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/weapon/storage/box/monkeycubes, +/obj/item/weapon/storage/box/monkeycubes{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/reagent_containers/food/snacks/cube/monkeycube/wrapped, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/rnd/xenobiology) +"wOs" = ( +/obj/structure/cable{ + 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/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/east/gnd) +"wON" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/hallway/gnd) +"wPe" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-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/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/obj/effect/zone_divider, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/groundfloor/civilian) +"wPl" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/red/border, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/item/weapon/folder/red, +/obj/item/device/tape/random, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = 30 + }, +/obj/machinery/camera/network/security{ + c_tag = "SEC - Observation"; + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/interrogation) +"wPJ" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 6 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 9 + }, +/turf/simulated/floor/water/deep{ + has_fish = 0 + }, +/area/surface/outside/station/reactorpond) +"wPL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/cafeteria) +"wPT" = ( +/obj/structure/cable/green, +/obj/structure/cable/green{ + d1 = 16; + d2 = 0; + icon_state = "16-0" + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/zpipe/up/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/up{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/security/gnd) +"wQp" = ( +/obj/effect/floor_decal/industrial/warning/dust/corner{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "asteroidfloor"; + initial_flooring = /decl/flooring/tiling/asteroidfloor + }, +/area/surface/station/hallway/primary/groundfloor/south) +"wQu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/blue{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + 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_decals7{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/south) +"wQv" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/machinery/meter, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"wQE" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/foyer) +"wQN" = ( +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 4 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/effect/floor_decal/corner/beige/bordercorner{ + dir = 4 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/machinery/light_switch{ + pixel_x = 12; + pixel_y = 24 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 1 + }, +/obj/machinery/button/remote/blast_door{ + id = "chemcounter"; + name = "Pharmacy Shutters Control"; + pixel_x = 10; + pixel_y = 36 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/chemistry) +"wRk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/hydro, +/area/surface/station/rnd/xenobiology/xenoflora) +"wRl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/blue{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/green/border, +/obj/machinery/camera/network/ground_floor{ + c_tag = "Ground Floor - South Hallway 4"; + dir = 1 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/south) +"wRn" = ( +/obj/structure/table/standard, +/turf/simulated/floor/tiled/dark, +/area/surface/station/hallway/secondary/groundfloor/civilian) +"wRp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/surface/station/library) +"wRs" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/gnd) +"wRu" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/structure/table/woodentable, +/turf/simulated/floor/tiled/hydro, +/area/surface/station/park) +"wRI" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 4 + }, +/obj/machinery/chemical_dispenser/full, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/chemistry) +"wRL" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced, +/obj/machinery/recharger, +/obj/item/sticky_pad/random{ + pixel_x = 8; + pixel_y = -1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/engineering_monitoring) +"wRM" = ( +/obj/machinery/appliance/mixer/candy, +/obj/effect/zone_divider, +/turf/simulated/floor/tiled/freezer, +/area/surface/station/crew_quarters/kitchen) +"wRP" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/effect/floor_decal/techfloor, +/obj/effect/floor_decal/techfloor{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/ai/upload) +"wRR" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "hosoffice" + }, +/turf/simulated/floor/plating, +/area/surface/station/crew_quarters/heads/hos) +"wRT" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = 30 + }, +/turf/simulated/floor/tiled/eris, +/area/surface/station/rnd/xenobiology) +"wSd" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + req_one_access = list(12) + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/east/gnd) +"wSf" = ( +/obj/structure/table/bench/steel, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/purple/border, +/obj/item/device/radio/intercom{ + pixel_y = -21 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 1 + }, +/obj/effect/landmark/start{ + name = "Explorer" + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/rnd/exploration) +"wSX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/engineering/atmos) +"wTj" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/floor_decal/corner/green/bordercorner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/bordercorner2{ + dir = 10 + }, +/obj/machinery/camera/network/ground_floor{ + c_tag = "Ground Floor - Park West"; + dir = 4 + }, +/obj/machinery/light/spot{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/park) +"wTW" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/north/gnd) +"wTX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/poster/custom{ + dir = 8; + pixel_x = -32 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/surface/station/garage) +"wUn" = ( +/turf/simulated/wall, +/area/surface/station/maintenance/substation/cargo/gnd) +"wUu" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 8 + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "atmoslockdown"; + layer = 3.3; + name = "Atmospherics Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/atmos) +"wUz" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + id = "medbayquar"; + layer = 3.3; + name = "Medbay Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/medical/emt_bay) +"wUI" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/xenobiology) +"wUX" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass{ + name = "Hydroponics"; + req_one_access = list(28) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/hydroponics) +"wUY" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/hydro, +/area/surface/station/hydroponics) +"wVf" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/wall, +/area/surface/station/quartermaster/delivery) +"wVo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/effect/zone_divider, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/station) +"wVy" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/status_display, +/obj/machinery/door/blast/gate/thin/open{ + dir = 8; + icon_state = "shutter2_0"; + id = "chemcounter"; + layer = 3.3; + name = "Pharmacy Shutter"; + open_layer = 3.3 + }, +/turf/simulated/floor/plating, +/area/surface/station/medical/chemistry) +"wVF" = ( +/obj/effect/zone_divider, +/turf/simulated/floor/water, +/area/surface/outside/river/gautelfr) +"wVK" = ( +/obj/machinery/atmospherics/valve/digital{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/orange/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/engineering/atmos) +"wVU" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/hallway/primary/groundfloor/north) +"wWg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/surface/station/engineering/atmos) +"wXd" = ( +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/medical/etc) +"wXx" = ( +/obj/structure/cable/green{ + 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 = 24 + }, +/obj/machinery/button/windowtint{ + dir = 1; + id = "secpro"; + pixel_x = -11; + pixel_y = 23 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/machinery/newscaster{ + pixel_x = 26 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/processing) +"wXA" = ( +/obj/machinery/atmospherics/omni/atmos_filter{ + tag_north = 6; + tag_south = 1; + tag_west = 2 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"wXB" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/hologram/holopad, +/obj/structure/bed/chair/office/dark, +/turf/simulated/floor/tiled/monofloor{ + dir = 1 + }, +/area/surface/station/security/briefing_room) +"wXK" = ( +/obj/structure/fitness/punchingbag, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/gym) +"wYa" = ( +/turf/unsimulated/wall/planetary/sif, +/area/surface/outside/plains/plateau) +"wYb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood/sif, +/area/surface/station/chapel/main) +"wYw" = ( +/obj/structure/ladder/updown, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/research/gnd) +"wYQ" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/engineering/hallway) +"wZn" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "clocker" + }, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "crglockdown"; + layer = 3.3; + name = "Cargo Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/quartermaster/lockerroom) +"wZw" = ( +/obj/structure/table/bench/steel, +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/purple/bordercorner{ + dir = 8 + }, +/obj/effect/landmark/start{ + name = "Explorer" + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/rnd/exploration) +"wZA" = ( +/obj/structure/window/basic, +/obj/structure/undies_wardrobe, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/structure/extinguisher_cabinet{ + dir = 1; + pixel_y = 30 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/security/restroom) +"wZM" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/station/solar/westsolar) +"wZR" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/security/interrogation) +"xas" = ( +/obj/machinery/power/smes/buildable{ + RCon_tag = "Reactor - Core"; + charge = 2e+006; + input_attempt = 1; + input_level = 100000; + output_level = 200000 + }, +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/button/remote/airlock{ + dir = 8; + id = "engine_electrical_maintenance"; + name = "Door Bolt Control"; + pixel_x = 24; + req_access = list(10); + specialfunctions = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_smes) +"xay" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"xba" = ( +/obj/machinery/atmospherics/valve/shutoff{ + dir = 4; + name = "Atmospherics to Distro automatic shutoff valve" + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"xbk" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/floor_decal/rust, +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "msouth_airlock_inner"; + locked = 1; + name = "Internal Access" + }, +/obj/effect/map_helper/airlock/door/int_door, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/hallway/primary/groundfloor/south) +"xbw" = ( +/obj/structure/cliff/automatic{ + dir = 8 + }, +/turf/simulated/floor/outdoors/grass/sif, +/area/surface/outside/plains/plateau) +"xcE" = ( +/obj/effect/zone_divider, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"xdu" = ( +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/mask, +/area/surface/outside/plains/normal) +"xdA" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 2; + name = "HoS Office"; + sortType = "HoS Office" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/gnd) +"xeg" = ( +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/solar, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "steel_dirty"; + initial_flooring = /decl/flooring/tiling/steel_dirty + }, +/area/surface/outside/station/solar/northeastsolar) +"xej" = ( +/turf/simulated/mineral/floor/ignore_mapgen/sif, +/area/surface/outside/plains/plateau) +"xeI" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled, +/area/surface/outpost/research/xenoarcheology/surface) +"xeK" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 10 + }, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"xeL" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/exploration/cargo) +"xeS" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"xfl" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/surface/station/security/hallway/gnd) +"xfp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/storage) +"xfH" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/storage) +"xfI" = ( +/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/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/yellow/border, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/reactor) +"xfL" = ( +/obj/machinery/atmospherics/binary/pump, +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/plating, +/area/surface/station/rnd/xenobiology/xenoflora_isolation) +"xfU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 8 + }, +/turf/simulated/floor/tiled/hydro, +/area/surface/station/hydroponics) +"xgg" = ( +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/east) +"xgC" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/west) +"xgD" = ( +/obj/machinery/atmospherics/valve/digital/open, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/engineering/atmos) +"xgE" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/obj/item/weapon/stool/padded{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + pixel_y = -21 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/station/crew_quarters/pool) +"xha" = ( +/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 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/ward) +"xhc" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 6 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 9 + }, +/turf/simulated/floor/water/deep{ + has_fish = 0 + }, +/area/surface/outside/station/reactorpond) +"xhD" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/purple/border, +/obj/structure/closet/bombcloset, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/misc_lab) +"xhR" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/processing) +"xig" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/obj/structure/disposalpipe/segment, +/obj/machinery/space_heater, +/turf/simulated/floor/tiled/freezer, +/area/surface/station/crew_quarters/pool) +"xiD" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/catwalk_plated/dark, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/east/gnd) +"xiX" = ( +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -21 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/range) +"xji" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/floor_decal/rust, +/obj/effect/map_helper/airlock/door/ext_door, +/obj/machinery/access_button/airlock_exterior{ + master_tag = "msouth_airlock"; + pixel_x = 35 + }, +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "msouth_airlock_outer"; + locked = 1; + name = "External Access" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/hallway/primary/groundfloor/south) +"xjm" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/rnd/exploration) +"xjz" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/crew_quarters/bar) +"xjU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/surface/station/park) +"xkd" = ( +/obj/structure/closet/emcloset, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/purple/border, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/rnd/xenobiology) +"xkh" = ( +/obj/structure/railing/grey{ + dir = 8 + }, +/turf/simulated/floor/water/deep, +/area/surface/outside/river/gautelfr) +"xks" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 9 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing, +/obj/effect/floor_decal/spline/plain{ + dir = 6 + }, +/turf/simulated/floor/water/deep{ + has_fish = 0 + }, +/area/surface/outside/station/reactorpond) +"xlW" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/rnd/exploration) +"xmn" = ( +/obj/machinery/power/breakerbox/activated{ + RCon_tag = "Civilian Substation Bypass" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/civilian) +"xmF" = ( +/obj/structure/cable{ + d1 = 32; + d2 = 4; + icon_state = "32-4" + }, +/obj/structure/lattice, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/zpipe/down/supply{ + dir = 4 + }, +/turf/simulated/open, +/area/surface/station/maintenance/storage/emergency/sec) +"xnb" = ( +/obj/effect/floor_decal/techfloor{ + dir = 10 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4; + frequency = 1379; + id_tag = "mnorth_airlock_pump" + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/hallway/primary/groundfloor/north) +"xny" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/simulated/floor/tiled/hydro, +/area/surface/station/hydroponics) +"xnL" = ( +/obj/structure/showcase/sign{ + desc = "This appears to be a sign warning people that the other side is dangerous."; + name = "WARNING"; + pixel_y = -6 + }, +/turf/simulated/wall, +/area/surface/outside/plains/station) +"xod" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/weapon/stool/padded, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/cafeteria) +"xof" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/turf/simulated/wall/rshull, +/area/shuttle/exploration/general) +"xoo" = ( +/turf/simulated/wall, +/area/surface/station/security/detectives_office/lab) +"xor" = ( +/obj/machinery/atmospherics/pipe/tank/air{ + dir = 8; + start_pressure = 4559.63 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/kitchen) +"xpd" = ( +/obj/structure/fence, +/turf/simulated/floor/outdoors/mask, +/area/surface/outside/plains/station) +"xpy" = ( +/obj/structure/table/woodentable, +/obj/item/device/camera_film{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/device/camera_film, +/obj/item/device/paicard, +/obj/machinery/camera/network/civilian{ + c_tag = "CIV - Library East"; + dir = 8 + }, +/turf/simulated/floor/wood, +/area/surface/station/library) +"xpW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/blue, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/maintenance{ + req_one_access = list(12,25,27,28,35) + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/kitchen) +"xpZ" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/engineering/atmos) +"xqe" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/disposalpipe/sortjunction{ + dir = 8; + name = "HoP Office"; + sortType = "HoP Office" + }, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/surface/station/hallway/secondary/groundfloor/civilian) +"xqk" = ( +/obj/effect/floor_decal/techfloor{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/ai/upload) +"xqW" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/pink/border{ + dir = 4 + }, +/obj/machinery/button/remote/blast_door{ + id = "surgeryobs2"; + name = "Privacy Shutters"; + pixel_x = 1; + pixel_y = 36 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 21 + }, +/obj/item/device/radio/intercom/department/medbay{ + dir = 8; + pixel_x = 21 + }, +/obj/machinery/iv_drip, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/surgery2) +"xrn" = ( +/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_decals7{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/reactor) +"xrK" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/surface/station/library) +"xrS" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 4; + icon_state = "shutter0"; + id = "surgeryobs1"; + layer = 3.3; + name = "Operating Theatre Privacy Shutters"; + opacity = 0; + open_layer = 3.3 + }, +/turf/simulated/floor/plating, +/area/surface/station/medical/surgery) +"xsi" = ( +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/industrial/hatch/yellow, +/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/open{ + dir = 4; + id = "xenobio4"; + layer = 3.3; + name = "Containment Blast Doors" + }, +/obj/machinery/door/window/brigdoor/northleft{ + name = "Containment Pen"; + req_access = list(47) + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/rnd/xenobiology) +"xss" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock{ + name = "Security Restroom"; + req_one_access = list(1) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/security/restroom) +"xsT" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/delivery) +"xtG" = ( +/obj/structure/lattice, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/zpipe/down/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 32; + d2 = 4; + icon_state = "32-4" + }, +/turf/simulated/open, +/area/surface/station/maintenance/kitchen) +"xtH" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "eng_ew2_airlock_inner"; + locked = 1; + name = "Internal Access" + }, +/obj/effect/map_helper/airlock/door/int_door, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/maintenance/east/gnd) +"xtM" = ( +/obj/structure/cable/green{ + 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 = 24 + }, +/obj/structure/flora/pottedplant/orientaltree, +/turf/simulated/floor/lino, +/area/surface/station/security/detectives_office) +"xtS" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/surface/station/chapel/office) +"xuX" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/purple/border, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/gnd) +"xuZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/cafeteria) +"xvb" = ( +/mob/living/simple_mob/slime/xenobio, +/turf/simulated/floor/reinforced, +/area/surface/station/rnd/xenobiology) +"xvd" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/gnd) +"xvE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/ai/upload) +"xwh" = ( +/obj/machinery/mech_recharger, +/obj/effect/landmark/robot_platform/explorer, +/turf/simulated/floor/tiled/dark, +/area/surface/station/garage) +"xxc" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/station/crew_quarters/pool) +"xxi" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-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/plating/sif/planetuse, +/area/surface/outside/station/solar/westsolar) +"xyn" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/west) +"xyp" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/arrivals/cynosure) +"xys" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/south) +"xyL" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/gnd) +"xyO" = ( +/obj/effect/floor_decal/techfloor, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/light/small, +/obj/machinery/atmospherics/pipe/manifold/hidden, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + dir = 1; + id_tag = "arc3_airlock"; + pixel_y = -24 + }, +/obj/machinery/airlock_sensor{ + dir = 1; + id_tag = "arc3_airlock_sensor"; + pixel_x = -11; + pixel_y = -25 + }, +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/outpost/research/xenoarcheology/surface) +"xyV" = ( +/obj/structure/cable/cyan{ + d1 = 32; + d2 = 2; + icon_state = "32-2" + }, +/obj/structure/lattice, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/zpipe/down/supply, +/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers, +/turf/simulated/open, +/area/surface/outpost/research/xenoarcheology/surface) +"xzb" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/reactor) +"xzt" = ( +/obj/machinery/bodyscanner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/pink{ + dir = 5 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/medical/etc) +"xzw" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/east/gnd) +"xzL" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/east/gnd) +"xzM" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/item/weapon/banner/nt, +/turf/simulated/floor/wood/sif, +/area/surface/station/chapel/main) +"xzZ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/atmos) +"xAq" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/crew_quarters/cafeteria) +"xAM" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner{ + dir = 4 + }, +/obj/structure/sign/directions/medical/operating_2{ + dir = 1; + pixel_y = 26 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/ward) +"xBq" = ( +/obj/structure/fence/corner{ + dir = 4 + }, +/turf/simulated/floor/outdoors/mask, +/area/surface/outside/plains/station) +"xBS" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"xCj" = ( +/obj/machinery/floodlight, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/atmos) +"xCo" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"xCu" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 6 + }, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/kitchen) +"xCx" = ( +/obj/structure/table/standard, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/window/northright{ + name = "High-Risk Modules"; + req_one_access = list(20) + }, +/obj/item/weapon/aiModule/oxygen{ + pixel_x = 3; + pixel_y = -6 + }, +/obj/item/weapon/aiModule/oneHuman{ + pixel_x = 2; + pixel_y = -2 + }, +/obj/item/weapon/aiModule/purge, +/obj/item/weapon/aiModule/antimov{ + pixel_x = -2; + pixel_y = 3 + }, +/obj/item/weapon/aiModule/teleporterOffline{ + pixel_x = -4; + pixel_y = 5 + }, +/turf/simulated/floor/greengrid, +/area/surface/station/ai/upload) +"xDi" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/window/reinforced/polarized/full{ + id = "secpro" + }, +/turf/simulated/floor/plating, +/area/surface/station/security/processing) +"xDu" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/structure/cable/green{ + 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/station/crew_quarters/heads/hop) +"xDx" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/surface/station/crew_quarters/kitchen) +"xDE" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/weststairwell/gnd) +"xDH" = ( +/obj/structure/extinguisher_cabinet{ + dir = 8; + pixel_x = -30 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/reactor) +"xDK" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/bordercorner2{ + dir = 8 + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -24; + pixel_y = 12 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/east) +"xEb" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/surgery) +"xEQ" = ( +/obj/machinery/atmospherics/pipe/cap/visible{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"xFn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "steel_dirty"; + initial_flooring = /decl/flooring/tiling/steel_dirty + }, +/area/surface/outside/plains/station) +"xFu" = ( +/obj/structure/closet/medical_wall{ + pixel_x = 32 + }, +/obj/item/roller, +/obj/item/bodybag/cryobag, +/obj/item/weapon/storage/firstaid/regular, +/obj/item/weapon/storage/pill_bottle/spaceacillin, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/cafeteria) +"xGi" = ( +/turf/simulated/wall, +/area/surface/station/maintenance/substation/security/gnd) +"xGw" = ( +/obj/structure/cliff/automatic{ + dir = 5 + }, +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/mask, +/area/surface/outside/plains/plateau) +"xHf" = ( +/obj/machinery/vending/hydronutrients{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 21 + }, +/turf/simulated/floor/tiled/hydro, +/area/surface/station/hydroponics) +"xHq" = ( +/obj/structure/table/marble, +/obj/item/weapon/reagent_containers/food/drinks/flask/barflask, +/obj/item/weapon/reagent_containers/food/drinks/flask/vacuumflask, +/obj/item/weapon/flame/lighter/zippo, +/obj/item/weapon/reagent_containers/glass/rag, +/obj/item/weapon/deskbell, +/turf/simulated/floor/lino, +/area/surface/station/crew_quarters/bar) +"xHy" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/brown/bordercorner2, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/delivery) +"xHN" = ( +/turf/simulated/wall, +/area/surface/station/crew_quarters/bar) +"xHY" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/rnd/exploration) +"xIn" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/engineering/hallway) +"xIq" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/effect/floor_decal/steeldecal/steel_decals3, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 5 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/rnd/misc_lab) +"xJp" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/rnd/xenobiology/xenoflora) +"xJx" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/danger/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/storage) +"xJB" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/yellow/bordercorner, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/east) +"xJF" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/monofloor, +/area/surface/station/park) +"xKg" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock/research{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "xenostation_airlock_interior"; + locked = 1; + name = "Xenobiology Internal Airlock"; + req_one_access = list(55) + }, +/obj/machinery/access_button/airlock_interior{ + dir = 8; + master_tag = "xenostation_airlock_control"; + name = "Xenobiology Access Button"; + pixel_y = -24; + req_one_access = list(55) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/rnd/xenobiology) +"xKj" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/lobby) +"xKl" = ( +/obj/structure/closet, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 21 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/security/evidence_storage) +"xKm" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/gnd) +"xKP" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/plating, +/area/surface/station/engineering/atmos) +"xKV" = ( +/obj/machinery/door/window/westright{ + name = "Library Desk Door"; + req_one_access = list(37) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/surface/station/library) +"xLg" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/engineering/hallway) +"xLi" = ( +/obj/effect/floor_decal/corner/blue/full{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/outlet_injector{ + dir = 1; + frequency = 1441; + id = "air_in"; + use_power = 1 + }, +/turf/simulated/floor/reinforced/oxygen, +/area/surface/station/engineering/atmos) +"xLz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/groundfloor/civilian) +"xLG" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/hallway/gnd) +"xMa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/hydro, +/area/surface/station/rnd/xenobiology/xenoflora) +"xNj" = ( +/obj/structure/cliff/automatic, +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/mask, +/area/surface/outside/plains/plateau) +"xNB" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/bordercorner{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/gnd) +"xND" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/effect/landmark/start{ + name = "Security Officer" + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/lockerroom) +"xNJ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/east/gnd) +"xNM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/effect/catwalk_plated/dark, +/obj/effect/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/plating, +/area/surface/station/ai/upload) +"xNN" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 10 + }, +/obj/effect/floor_decal/spline/plain, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_dirty, +/area/surface/station/hydroponics) +"xNY" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 8 + }, +/obj/item/weapon/stool/padded{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -21 + }, +/obj/effect/landmark/start{ + name = "Janitor" + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/janitor) +"xOh" = ( +/turf/simulated/open, +/area/surface/station/engineering/hallway) +"xOr" = ( +/obj/machinery/light, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/cafeteria) +"xOD" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/foyer) +"xOF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/item/weapon/gun/energy/taser/xeno, +/obj/item/weapon/melee/baton/slime/loaded, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/rnd/xenobiology) +"xOU" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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 = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/hallway/primary/groundfloor/east) +"xPr" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/gnd) +"xPA" = ( +/turf/simulated/floor/outdoors/dirt/sif, +/area/surface/outside/plains/normal) +"xPJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 5 + }, +/turf/simulated/floor/tiled/hydro, +/area/surface/station/rnd/xenobiology/xenoflora) +"xPM" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/ai_status_display, +/turf/simulated/floor/plating, +/area/surface/station/arrivals/cynosure) +"xPR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/green/border, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/groundfloor/civilian) +"xQi" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/machinery/camera/network/security{ + c_tag = "SEC - Briefing West"; + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/briefing_room) +"xQN" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "crglockdown"; + layer = 3.3; + name = "Cargo Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/quartermaster/storage) +"xQV" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/obj/effect/landmark/start{ + name = "Head of Security" + }, +/turf/simulated/floor/carpet, +/area/surface/station/crew_quarters/heads/hos) +"xRb" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/machinery/computer/security/telescreen/entertainment{ + icon_state = "frame"; + pixel_y = 32 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/reception) +"xRo" = ( +/turf/simulated/floor/tiled/dark, +/area/surface/station/engineering/hallway/reactor) +"xRz" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/stamp/hos, +/obj/item/device/holowarrant, +/turf/simulated/floor/carpet, +/area/surface/station/crew_quarters/heads/hos) +"xRE" = ( +/obj/structure/stairs/spawner/west, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/west/elevator) +"xRQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/cyan{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -24; + pixel_y = 12 + }, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/exploration/cargo) +"xSr" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "steel_dirty"; + initial_flooring = /decl/flooring/tiling/steel_dirty + }, +/area/surface/outside/plains/station) +"xSt" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/floor_decal/techfloor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/medical/emt_bay) +"xSu" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/briefing_room) +"xSA" = ( +/obj/machinery/portable_atmospherics/canister/air, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/engineering/atmos) +"xST" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/storage/firstaid/regular, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 6 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 6 + }, +/obj/item/weapon/reagent_containers/glass/bottle/stoxin{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/item/weapon/reagent_containers/glass/bottle/antitoxin{ + pixel_y = -2 + }, +/obj/item/weapon/reagent_containers/glass/bottle/inaprovaline{ + pixel_x = 2 + }, +/obj/random/medical, +/obj/random/medical, +/obj/item/weapon/storage/box/gloves{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/box/masks, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/storage/primary_storage) +"xSU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/techmaint, +/area/shuttle/exploration/cargo) +"xSY" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"xTj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 9 + }, +/turf/simulated/wall, +/area/surface/station/engineering/atmos) +"xTp" = ( +/obj/machinery/computer/ship/helm, +/turf/simulated/floor/tiled/kafel_full/gray, +/area/shuttle/exploration/cockpit) +"xTw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/park) +"xTx" = ( +/obj/structure/sign/warning/radioactive, +/turf/simulated/wall/r_wall, +/area/surface/station/engineering/reactor_room) +"xTN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/surface/station/hallway/primary/groundfloor/west) +"xTU" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white/diagonal, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris, +/area/surface/station/crew_quarters/locker) +"xUd" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/garage) +"xUy" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/rnd/exploration) +"xUY" = ( +/turf/simulated/wall, +/area/surface/station/rnd/exploration) +"xVc" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/structure/sign/directions/security{ + dir = 1; + pixel_x = -32; + pixel_y = 6 + }, +/obj/structure/sign/directions/engineering{ + dir = 5; + pixel_x = -32 + }, +/obj/structure/sign/directions/medical{ + dir = 1; + pixel_x = -32; + pixel_y = -6 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/east) +"xVF" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 4 + }, +/obj/structure/closet/wardrobe/medic_white, +/obj/structure/extinguisher_cabinet{ + dir = 1; + pixel_y = 30 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/cloning) +"xWe" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/cyan{ + d1 = 16; + d2 = 0; + icon_state = "16-0" + }, +/obj/structure/railing, +/obj/structure/cable/cyan{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/sensor{ + name = "Powernet Sensor - Atmospherics Subgrid"; + name_tag = "Atmospherics Subgrid" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/atmospherics) +"xWg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/security/detectives_office/lab) +"xWl" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/machinery/light, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/etc) +"xWo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/ai/upload_foyer) +"xWE" = ( +/obj/structure/closet/wardrobe/science_white, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/purple/bordercorner{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/rnd/research_lockerroom) +"xWG" = ( +/obj/structure/stairs/spawner/north, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/lockerroom) +"xWI" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/surgery) +"xWK" = ( +/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/highsecurity{ + name = "Synthetic Storage"; + req_one_access = list(16) + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/ai/cyborg_station) +"xXe" = ( +/obj/structure/fence{ + dir = 4 + }, +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/mask, +/area/surface/outside/plains/station) +"xXF" = ( +/obj/structure/closet, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/security/evidence_storage) +"xXL" = ( +/obj/structure/table/glass, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 5 + }, +/obj/item/device/analyzer/plant_analyzer{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/device/analyzer/plant_analyzer, +/obj/item/weapon/material/minihoe{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/weapon/material/minihoe, +/obj/item/weapon/material/knife/machete/hatchet{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/weapon/material/knife/machete/hatchet, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/rnd/xenobiology/xenoflora) +"xYt" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/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/machinery/light{ + dir = 1 + }, +/obj/effect/zone_divider, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/groundfloor/civilian) +"xYB" = ( +/obj/machinery/atmospherics/valve/digital{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/black/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/black/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/engineering/atmos) +"xYI" = ( +/obj/structure/sign/directions/security/interrogation{ + pixel_y = 6 + }, +/turf/simulated/wall, +/area/surface/station/security/interrogation) +"xYP" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/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{ + dir = 4; + pixel_x = -24; + pixel_y = 12 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/catwalk_plated/dark, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/medbay/gnd) +"xZb" = ( +/obj/structure/sink/kitchen{ + pixel_y = 28 + }, +/obj/structure/flora/grass/green, +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/grass, +/area/surface/station/hydroponics/garden) +"xZB" = ( +/obj/structure/reagent_dispensers/watertank/high, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lime/border, +/obj/item/weapon/reagent_containers/glass/bucket, +/turf/simulated/floor/tiled/hydro, +/area/surface/station/hydroponics) +"xZL" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/purple/bordercorner, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/west/elevator) +"yaa" = ( +/obj/structure/shuttle/engine/propulsion/burst/right{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/shuttle/large_escape_pod1/station) +"yag" = ( +/obj/structure/cable{ + 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 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/east/gnd) +"yaQ" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/green/bordercorner, +/obj/machinery/camera/network/ground_floor{ + c_tag = "Ground Floor - Civilian Hallway 2"; + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/hallway/secondary/groundfloor/civilian) +"ybe" = ( +/obj/machinery/computer/ship/sensors, +/turf/simulated/floor/tiled/kafel_full/gray, +/area/shuttle/exploration/cockpit) +"ybo" = ( +/obj/structure/table/standard, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/window/southleft{ + name = "Module Storage"; + req_one_access = list(16) + }, +/obj/item/weapon/aiModule/protectStation, +/obj/item/weapon/aiModule/freeform{ + pixel_x = -3; + pixel_y = 3 + }, +/turf/simulated/floor/greengrid, +/area/surface/station/ai/upload) +"ybs" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"ybv" = ( +/obj/effect/floor_decal/corner/red/full{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/outlet_injector{ + dir = 1; + frequency = 1441; + id = "n2_in"; + use_power = 1 + }, +/turf/simulated/floor/reinforced/nitrogen, +/area/surface/station/engineering/atmos) +"ybz" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/structure/table/bench/padded, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/hallway/primary/groundfloor/south) +"ybS" = ( +/obj/effect/catwalk_plated/dark, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -24; + pixel_y = 12 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/storage) +"yce" = ( +/obj/machinery/flasher{ + id = "AIupload2"; + pixel_x = 8 + }, +/turf/simulated/wall/durasteel, +/area/surface/station/ai/upload) +"ycp" = ( +/obj/machinery/account_database{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Head of Personnel's Desk"; + departmentType = 5; + dir = 4; + name = "Head of Personnel RC"; + pixel_x = -24 + }, +/turf/simulated/floor/tiled, +/area/surface/station/crew_quarters/heads/hop) +"ycI" = ( +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/structure/closet/crate/hydroponics/prespawned, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/rnd/xenobiology/xenoflora_isolation) +"ycR" = ( +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/surgery2) +"yda" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"ydf" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/camera/network/ground_floor{ + c_tag = "Ground Floor - East Hallway 4"; + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/east) +"ydr" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/medical/emt_bay) +"ydv" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/hallway/gnd) +"ydK" = ( +/obj/structure/bed/chair/wood, +/turf/simulated/floor/tiled/hydro, +/area/surface/station/park) +"yel" = ( +/obj/structure/fence{ + dir = 4 + }, +/turf/simulated/floor/outdoors/mask, +/area/surface/outside/plains/station) +"yeD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/groundfloor/west) +"yeX" = ( +/turf/simulated/floor/reinforced/phoron, +/area/surface/station/engineering/atmos) +"yfi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/arrivals) +"yfn" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock/security{ + name = "Evidence Storage" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/security/evidence_storage) +"yft" = ( +/turf/simulated/wall, +/area/surface/station/hydroponics) +"yfv" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 5 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing, +/obj/effect/floor_decal/spline/plain{ + dir = 10 + }, +/turf/simulated/floor/water/deep{ + has_fish = 0 + }, +/area/surface/outside/station/reactorpond) +"yfz" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/obj/item/weapon/stool/padded{ + dir = 1 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/station/crew_quarters/pool) +"yfX" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/hydro, +/area/surface/station/rnd/xenobiology/xenoflora_isolation) +"ygg" = ( +/obj/structure/bed/chair/wood{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/cafeteria) +"ygj" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/status_display, +/turf/simulated/floor/plating, +/area/surface/station/hallway/primary/groundfloor/south) +"ygn" = ( +/obj/effect/floor_decal/techfloor{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1379; + id_tag = "marrivals_airlock_pump" + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/arrivals/cynosure) +"ygJ" = ( +/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, +/area/surface/station/security/lobby) +"ygY" = ( +/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/catwalk_plated, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/surface/station/hallway/primary/groundfloor/west) +"yiu" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/north/gnd) +"yjC" = ( +/obj/effect/floor_decal/industrial/outline{ + color = "#D4D4D4" + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/surface/station/hallway/primary/groundfloor/south) +"yjH" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/engineering/hallway) +"yjU" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/map_helper/airlock/door/ext_door, +/obj/effect/floor_decal/rust, +/obj/machinery/access_button/airlock_exterior{ + dir = 4; + master_tag = "eng_ew2_airlock"; + pixel_y = -24; + req_one_access = list(12) + }, +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "eng_ew2_airlock_outer"; + locked = 1; + name = "External Access" + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/maintenance/east/gnd) +"yjV" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/danger/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/etc) +"ykd" = ( +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -12; + pixel_y = -24 + }, +/obj/machinery/button/windowtint{ + id = "st1_tint"; + pixel_x = 11; + pixel_y = -23 + }, +/obj/machinery/button/holosign{ + icon_state = "light0"; + id = "op1"; + pixel_x = 11; + pixel_y = -32 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/surgery) +"yke" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table/steel_reinforced, +/obj/item/stack/material/plastic{ + amount = 50 + }, +/obj/item/stack/material/copper{ + amount = 20 + }, +/obj/item/stack/rods{ + amount = 50 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/workshop) +"ykA" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/station/crew_quarters/pool) +"ykB" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/surface/station/hallway/primary/groundfloor/north) +"ykD" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 8 + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/plains/station) +"ykW" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/bordercorner{ + dir = 1 + }, +/obj/effect/zone_divider, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/groundfloor/civilian) +"ykX" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/beige/border, +/obj/item/weapon/reagent_containers/glass/beaker/large, +/obj/item/weapon/reagent_containers/dropper, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/chemistry) +"ylq" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"ylw" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/station/crew_quarters/pool) +"ylN" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "xenobio3"; + pixel_x = 3; + pixel_y = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/rnd/xenobiology) +"ylO" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos) +"ylX" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/atmos) +"ymd" = ( +/obj/machinery/atmospherics/valve, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/kitchen) +"yme" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/catwalk_plated, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/surface/station/hallway/primary/groundfloor/west/elevator) + +(1,1,1) = {" +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +htf +"} +(2,1,1) = {" +wYa +qpk +bVN +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +bVN +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 +xdu +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 +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 +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +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 +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(3,1,1) = {" +wYa +qpk +bVN +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +bVN +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 +xdu +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 +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 +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +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 +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(4,1,1) = {" +wYa +qpk +bVN +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +bVN +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 +xdu +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 +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 +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +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 +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(5,1,1) = {" +wYa +qpk +oYl +aEE +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +oYl +aEE +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 +xdu +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 +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 +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +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 +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(6,1,1) = {" +wYa +qpk +qpk +bVN +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +bVN +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 +xdu +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 +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 +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +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 +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(7,1,1) = {" +wYa +qpk +qpk +bVN +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +bVN +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 +xdu +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 +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 +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +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 +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(8,1,1) = {" +wYa +qpk +qpk +bVN +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +bVN +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 +xdu +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 +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 +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +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 +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(9,1,1) = {" +wYa +qpk +qpk +bVN +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +bVN +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 +xdu +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 +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 +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +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 +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(10,1,1) = {" +wYa +qpk +qpk +bVN +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +bVN +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 +xdu +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 +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 +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +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 +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(11,1,1) = {" +wYa +qpk +qpk +bVN +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +oYl +aEE +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 +xdu +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 +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 +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +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 +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(12,1,1) = {" +wYa +qpk +qpk +bVN +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +bVN +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 +xdu +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 +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 +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +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 +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(13,1,1) = {" +wYa +qpk +qpk +bVN +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +bVN +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 +xdu +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 +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 +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +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 +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(14,1,1) = {" +wYa +qpk +qpk +bVN +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +bVN +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 +xdu +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 +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 +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +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 +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(15,1,1) = {" +wYa +qpk +qpk +bVN +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +bVN +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 +xdu +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 +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 +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +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 +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(16,1,1) = {" +wYa +qpk +aHG +vZt +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +bVN +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 +xdu +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 +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 +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +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 +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(17,1,1) = {" +wYa +qpk +bVN +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +bVN +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 +xdu +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 +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 +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +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 +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +qzz +wYa +"} +(18,1,1) = {" +wYa +qpk +bVN +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +bVN +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 +xdu +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 +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 +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +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 +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +qzz +wYa +"} +(19,1,1) = {" +wYa +qpk +bVN +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +oYl +aEE +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 +xdu +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 +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 +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +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 +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +qzz +wYa +"} +(20,1,1) = {" +wYa +qpk +bVN +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +bVN +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 +xdu +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 +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 +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +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 +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +qzz +wYa +"} +(21,1,1) = {" +wYa +qpk +bVN +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +bVN +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 +xdu +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 +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 +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +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 +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +qzz +wYa +"} +(22,1,1) = {" +wYa +qpk +bVN +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +bVN +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 +xdu +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 +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 +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +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 +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +qzz +wYa +"} +(23,1,1) = {" +wYa +qpk +bVN +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +bVN +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 +xdu +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 +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 +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +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 +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +qzz +wYa +"} +(24,1,1) = {" +wYa +qpk +bVN +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +bVN +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 +xdu +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 +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 +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +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 +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +qzz +wYa +"} +(25,1,1) = {" +wYa +qpk +oYl +aEE +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +bVN +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 +xdu +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 +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 +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +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 +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +qzz +wYa +"} +(26,1,1) = {" +wYa +qpk +qpk +bVN +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +bVN +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 +xdu +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 +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 +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 +xdu +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 +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +qzz +wYa +"} +(27,1,1) = {" +wYa +qpk +qpk +bVN +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +bVN +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 +xdu +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 +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 +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 +xdu +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 +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(28,1,1) = {" +wYa +qpk +qpk +bVN +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +aHG +vZt +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 +xdu +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 +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 +aNW +aNW +aNW +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 +xdu +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 +iGM +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(29,1,1) = {" +wYa +qpk +qpk +bVN +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +bVN +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 +xdu +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 +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 +oum +oum +oum +oum +oum +aNW +aNW +aNW +aNW +aNW +aNW +aNW +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +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 +iGM +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(30,1,1) = {" +wYa +qpk +qpk +bVN +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +bVN +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 +xdu +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 +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 +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 +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +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 +iGM +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(31,1,1) = {" +wYa +qpk +qpk +bVN +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +bVN +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 +xdu +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 +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 +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 +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +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 +iGM +iGM +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(32,1,1) = {" +wYa +qpk +qpk +bVN +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +bVN +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 +xdu +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 +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 +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 +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +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 +iGM +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(33,1,1) = {" +wYa +qpk +aHG +vZt +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +bVN +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 +xdu +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 +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +aNW +aNW +aNW +aNW +aNW +aNW +aNW +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 +aNW +aNW +aNW +aNW +aNW +aNW +oum +oum +oum +oum +oum +oum +aNW +aNW +aNW +aNW +aNW +aNW +aNW +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +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 +iGM +iGM +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(34,1,1) = {" +wYa +qpk +bVN +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +bVN +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 +xdu +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 +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +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 +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +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 +iGM +iGM +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +wYa +"} +(35,1,1) = {" +wYa +qpk +bVN +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +bVN +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 +xdu +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 +vwy +vwy +vwy +vwy +vwy +vwy +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 +vwy +vwy +vwy +vwy +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 +vwy +vwy +vwy +vwy +vwy +xdu +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 +iGM +iGM +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +wYa +"} +(36,1,1) = {" +wYa +qpk +bVN +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +bVN +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 +xdu +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 +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +aNW +aNW +aNW +aNW +oum +oum +oum +aNW +aNW +aNW +aNW +aNW +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 +aNW +aNW +aNW +aNW +aNW +aNW +aNW +aNW +aNW +aNW +oum +oum +oum +oum +oum +oum +oum +aNW +aNW +aNW +aNW +aNW +aNW +aNW +vwy +vwy +vwy +vwy +xdu +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 +iGM +iGM +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(37,1,1) = {" +wYa +qpk +oYl +aEE +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +bVN +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 +xdu +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 +vwy +vwy +vwy +vwy +vwy +vwy +aNW +aNW +aNW +aNW +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 +aNW +aNW +aNW +aNW +aNW +aNW +aNW +aNW +aNW +oum +oum +oum +oum +oum +oum +oum +oum +oum +aNW +aNW +aNW +aNW +vwy +vwy +vwy +xdu +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 +iGM +iGM +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(38,1,1) = {" +wYa +qpk +qpk +bVN +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +bVN +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 +xdu +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 +vwy +vwy +vwy +vwy +aNW +aNW +aNW +aNW +oum +oum +oum +oum +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 +aNW +aNW +aNW +aNW +aNW +aNW +aNW +aNW +oum +aNW +oum +oum +oum +oum +oum +oum +aNW +aNW +aNW +aNW +vwy +xdu +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 +iGM +iGM +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(39,1,1) = {" +wYa +qpk +qpk +bVN +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +bVN +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 +xdu +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 +vwy +vwy +aNW +aNW +aNW +aNW +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 +aNW +aNW +vwy +aNW +aNW +aNW +aNW +aNW +aNW +aNW +oum +oum +oum +oum +oum +aNW +aNW +aNW +aNW +wVF +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 +iGM +iGM +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(40,1,1) = {" +wYa +qpk +qpk +bVN +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +bVN +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 +xdu +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 +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 +aNW +aNW +aNW +aNW +aNW +aNW +aNW +aNW +aNW +oum +oum +oum +oum +oum +oum +aNW +wVF +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 +iGM +iGM +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(41,1,1) = {" +wYa +qpk +aHG +vZt +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +bVN +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 +xdu +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 +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 +oum +oum +oum +wVF +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 +iGM +iGM +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(42,1,1) = {" +wYa +qpk +bVN +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +aHG +vZt +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 +xdu +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 +oum +oum +oum +oum +oum +oum +oum +aNW +aNW +vwy +vwy +kgZ +kgZ +kgZ +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 +vwy +aNW +aNW +aNW +aNW +aNW +oum +oum +oum +oum +oum +cKh +oum +aNW +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 +iGM +iGM +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(43,1,1) = {" +wYa +qpk +bVN +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +bVN +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 +xdu +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 +oum +oum +oum +oum +oum +oum +oum +aNW +aNW +aNW +vwy +vwy +vwy +vwy +vUj +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 +vwy +vwy +vwy +vwy +vwy +aNW +aNW +aNW +aNW +oum +oum +oum +oum +cKh +oum +oum +aNW +aNW +aNW +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 +iGM +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(44,1,1) = {" +wYa +qpk +oYl +aEE +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +bVN +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 +xdu +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 +oum +oum +oum +oum +oum +oum +aNW +aNW +aNW +vwy +vwy +vwy +vwy +vwy +vwy +vUj +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 +vwy +vwy +vwy +vwy +vwy +vwy +aNW +aNW +aNW +aNW +oum +aNW +oum +cKh +oum +oum +oum +oum +aNW +aNW +aNW +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 +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +wYa +"} +(45,1,1) = {" +wYa +qpk +qpk +bVN +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +bVN +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 +xdu +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 +oum +oum +oum +oum +oum +oum +oum +aNW +aNW +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vUj +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 +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +aNW +aNW +aNW +aNW +aNW +wVF +oum +oum +oum +oum +oum +oum +aNW +aNW +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 +iGM +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +wYa +"} +(46,1,1) = {" +wYa +qpk +qpk +bVN +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +bVN +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 +xdu +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 +oum +oum +oum +oum +oum +oum +aNW +aNW +aNW +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vUj +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 +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +aNW +aNW +aNW +wVF +aNW +aNW +oum +oum +oum +oum +oum +oum +aNW +aNW +oum +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 +iGM +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(47,1,1) = {" +wYa +qpk +qpk +bVN +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +bVN +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 +xdu +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 +oum +oum +oum +oum +oum +oum +aNW +aNW +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vUj +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +wVF +aNW +aNW +aNW +aNW +aNW +oum +oum +oum +oum +oum +oum +aNW +oum +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 +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(48,1,1) = {" +wYa +qpk +qpk +bVN +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +bVN +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 +xdu +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 +oum +oum +oum +oum +oum +oum +oum +aNW +aNW +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vUj +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +vwy +aNW +aNW +aNW +aNW +aNW +oum +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 +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(49,1,1) = {" +wYa +qpk +qpk +bVN +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +bVN +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 +xdu +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 +oum +oum +oum +oum +oum +oum +aNW +aNW +aNW +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vUj +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +vwy +vwy +vwy +aNW +aNW +aNW +aNW +oum +oum +oum +oum +oum +oum +oum +oum +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 +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(50,1,1) = {" +wYa +qpk +qpk +bVN +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +oYl +aEE +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 +xdu +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 +oum +oum +oum +oum +oum +oum +oum +aNW +aNW +aNW +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vUj +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +vwy +vwy +vwy +vwy +vwy +vwy +aNW +aNW +aNW +aNW +oum +oum +oum +oum +oum +oum +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 +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(51,1,1) = {" +wYa +qpk +qpk +bVN +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +bVN +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 +xdu +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 +oum +oum +oum +oum +oum +oum +oum +aNW +aNW +aNW +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vUj +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +vwy +vwy +vwy +vwy +vwy +vwy +vwy +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 +iGM +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(52,1,1) = {" +wYa +qpk +qpk +oYl +aEE +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +bVN +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 +xdu +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 +oum +oum +oum +oum +oum +oum +oum +aNW +aNW +aNW +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vUj +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +aNW +aNW +aNW +aNW +oum +oum +oum +oum +oum +aNW +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 +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(53,1,1) = {" +wYa +qpk +qpk +qpk +bVN +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +bVN +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 +xdu +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 +oum +oum +oum +oum +oum +oum +oum +oum +aNW +aNW +aNW +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vUj +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +nCe +nCe +nCe +nCe +gTx +jIh +xpd +xpd +xpd +xpd +xpd +xpd +xpd +xpd +xpd +jIh +xpd +xpd +xpd +xpd +xpd +xpd +xpd +xpd +xpd +jIh +xpd +xpd +xpd +xpd +xpd +xpd +xpd +xpd +xpd +jIh +iXd +nCe +nCe +nCe +nCe +nCe +nCe +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +aNW +aNW +aNW +aNW +oum +oum +oum +oum +oum +aNW +aNW +aNW +aNW +aNW +aNW +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +iGM +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(54,1,1) = {" +wYa +qpk +qpk +aHG +vZt +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +bVN +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 +xdu +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 +oum +oum +oum +oum +oum +oum +oum +oum +aNW +aNW +aNW +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vUj +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +nCe +nCe +nCe +nCe +gTx +nME +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +xBq +iXd +nCe +nCe +nCe +nCe +nCe +nCe +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +aNW +aNW +aNW +oum +oum +oum +oum +oum +aNW +aNW +aNW +aNW +aNW +aNW +aNW +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +iGM +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(55,1,1) = {" +wYa +qpk +qpk +bVN +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +bVN +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 +xdu +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 +oum +oum +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 +vUj +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +aNW +aNW +aNW +aNW +oum +oum +oum +oum +aNW +aNW +aNW +aNW +aNW +aNW +aNW +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +qzz +wYa +"} +(56,1,1) = {" +wYa +qpk +qpk +bVN +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +bVN +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 +xdu +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 +oum +oum +oum +oum +oum +oum +oum +oum +aNW +aNW +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 +vUj +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +bCF +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +aNW +aNW +aNW +aNW +oum +oum +oum +oum +oum +aNW +aNW +aNW +aNW +aNW +aNW +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +iGM +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +qzz +qzz +qzz +wYa +"} +(57,1,1) = {" +wYa +qpk +qpk +bVN +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +bVN +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 +xdu +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +aNW +aNW +aNW +aNW +aNW +oum +oum +oum +oum +oum +oum +oum +oum +oum +aNW +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 +vUj +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +mLH +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +aNW +aNW +aNW +aNW +aNW +oum +oum +oum +oum +oum +aNW +aNW +aNW +aNW +aNW +aNW +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +iGM +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +qzz +qzz +qzz +qzz +wYa +"} +(58,1,1) = {" +wYa +qpk +qpk +bVN +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +bVN +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 +xdu +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +aNW +aNW +aNW +aNW +oum +oum +oum +oum +oum +oum +oum +oum +oum +oum +aNW +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 +vUj +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +mLH +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +aNW +aNW +aNW +aNW +oum +oum +oum +oum +oum +oum +oum +aNW +aNW +aNW +aNW +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +iGM +iGM +iGM +iGM +iGM +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +qzz +qzz +qzz +qzz +qzz +qzz +wYa +"} +(59,1,1) = {" +wYa +qpk +qpk +bVN +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +aHG +vZt +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 +xdu +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +aNW +aNW +aNW +oum +oum +oum +oum +oum +oum +oum +oum +oum +oum +oum +aNW +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 +vUj +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +jeS +jeS +jeS +jeS +jeS +jeS +jeS +jeS +jeS +jeS +nCe +mLH +nCe +jeS +jeS +jeS +jeS +jeS +jeS +jeS +jeS +jeS +jeS +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +aNW +aNW +aNW +aNW +aNW +oum +oum +oum +oum +oum +oum +aNW +aNW +aNW +aNW +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +iGM +iGM +iGM +iGM +aNW +dXk +dXk +qzz +qzz +qzz +qzz +qzz +qzz +qzz +dXk +qzz +qzz +qzz +qzz +wYa +"} +(60,1,1) = {" +wYa +qpk +qpk +bVN +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +bVN +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 +xdu +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +aNW +aNW +aNW +aNW +oum +oum +oum +oum +oum +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 +vUj +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +bzr +lhB +jkY +jkY +jkY +jkY +jkY +jkY +jkY +jkY +oqn +mLH +iNX +wZM +wZM +wZM +wZM +wZM +wZM +wZM +wZM +wZM +dDZ +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +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 +oum +oum +oum +oum +oum +oum +oum +aNW +aNW +aNW +aNW +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +iGM +iGM +iGM +iGM +aNW +dXk +qzz +qzz +qzz +qzz +qzz +qzz +qzz +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(61,1,1) = {" +wYa +qpk +aHG +vZt +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +bVN +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 +xdu +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +aNW +aNW +aNW +oum +oum +oum +oum +oum +oum +oum +oum +oum +oum +oum +aNW +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 +vUj +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +nCe +nCe +nCe +nCe +sLu +nCe +nCe +nCe +nCe +nCe +kgJ +kgJ +kgJ +kgJ +kgJ +kgJ +kgJ +kgJ +kgJ +kgJ +nCe +mLH +nCe +kgJ +kgJ +kgJ +kgJ +kgJ +kgJ +kgJ +kgJ +kgJ +kgJ +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +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 +oum +oum +oum +oum +oum +oum +oum +aNW +aNW +aNW +aNW +aNW +aNW +vwy +vwy +vwy +aNW +iGM +iGM +aNW +aNW +oum +qzz +qzz +qzz +qzz +dXk +qzz +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(62,1,1) = {" +wYa +qpk +bVN +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +bVN +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 +xdu +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +aNW +aNW +aNW +oum +oum +oum +oum +oum +oum +oum +oum +oum +oum +oum +aNW +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 +vUj +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +mLH +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +sLu +nCe +nCe +nCe +nCe +nCe +nCe +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +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 +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 +wYa +"} +(63,1,1) = {" +wYa +qpk +bVN +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +bVN +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 +xdu +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +aNW +aNW +oum +oum +oum +oum +oum +oum +oum +oum +oum +oum +aNW +aNW +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 +vUj +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +jeS +jeS +jeS +jeS +jeS +jeS +jeS +jeS +jeS +jeS +nCe +mLH +nCe +jeS +jeS +jeS +jeS +jeS +jeS +jeS +jeS +jeS +jeS +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +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 +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 +wYa +"} +(64,1,1) = {" +wYa +qpk +bVN +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +bVN +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 +xdu +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +aNW +aNW +oum +oum +oum +oum +oum +oum +oum +oum +oum +oum +aNW +aNW +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 +vUj +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +bzr +lhB +jkY +jkY +jkY +jkY +jkY +jkY +jkY +jkY +fuU +xxi +fuU +wZM +wZM +wZM +wZM +wZM +wZM +wZM +wZM +wZM +dDZ +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +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 +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 +wYa +"} +(65,1,1) = {" +wYa +rne +xNj +eoi +eoi +eoi +eoi +eoi +eoi +eoi +eoi +eoi +eoi +eoi +xNj +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +wVF +wVF +wVF +wVF +cKh +cKh +cKh +cKh +cKh +cKh +cKh +cKh +wVF +wVF +wVF +wVF +wVF +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +wVo +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +tjO +tjO +tjO +tjO +tjO +tjO +xXe +tjO +tjO +tjO +tjO +tjO +roh +roh +roh +roh +roh +roh +roh +roh +roh +roh +tjO +kRp +tjO +roh +roh +roh +roh +roh +roh +roh +roh +roh +roh +tjO +tjO +tjO +tjO +tjO +xXe +tjO +tjO +tjO +tjO +tjO +tjO +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +wVF +wVF +wVF +wVF +wVF +cKh +cKh +cKh +cKh +cKh +cKh +cKh +cKh +cKh +cKh +cKh +cKh +cKh +cKh +cKh +wVF +gyu +gyu +gyu +gyu +gyu +gyu +gyu +gyu +dQn +dQn +dQn +dQn +dQn +dQn +wYa +"} +(66,1,1) = {" +wYa +qpk +bVN +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +bVN +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 +xdu +vwy +vwy +vwy +vwy +vwy +vwy +aNW +aNW +aNW +oum +oum +oum +oum +oum +oum +oum +oum +oum +aNW +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 +vUj +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +mLH +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +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 +oum +oum +oum +oum +oum +oum +oum +oum +oum +oum +oum +oum +aNW +aNW +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +qzz +wYa +"} +(67,1,1) = {" +wYa +qpk +bVN +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +bVN +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 +xdu +vwy +vwy +vwy +vwy +vwy +aNW +aNW +aNW +aNW +oum +oum +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 +vUj +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +jeS +jeS +jeS +jeS +jeS +jeS +jeS +jeS +jeS +jeS +nCe +mLH +nCe +jeS +jeS +jeS +jeS +jeS +jeS +jeS +jeS +jeS +jeS +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +tjO +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +aNW +aNW +aNW +aNW +aNW +oum +oum +oum +oum +oum +oum +aNW +aNW +aNW +aNW +aNW +aNW +aNW +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +qzz +wYa +"} +(68,1,1) = {" +wYa +qpk +bVN +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +bVN +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 +xdu +vwy +vwy +vwy +vwy +aNW +aNW +aNW +aNW +oum +oum +oum +oum +oum +oum +oum +aNW +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 +vUj +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +bzr +lhB +jkY +jkY +jkY +jkY +jkY +jkY +jkY +jkY +fuU +xxi +fuU +wZM +wZM +wZM +wZM +wZM +wZM +wZM +wZM +wZM +dDZ +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +tjO +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +aNW +aNW +aNW +aNW +aNW +oum +oum +oum +oum +oum +aNW +iGM +iGM +aNW +aNW +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +qzz +wYa +"} +(69,1,1) = {" +wYa +qpk +bVN +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +bVN +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 +xdu +vwy +vwy +vwy +aNW +aNW +aNW +oum +oum +oum +oum +oum +oum +oum +aNW +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 +vUj +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +kgJ +kgJ +kgJ +kgJ +kgJ +kgJ +kgJ +kgJ +kgJ +kgJ +nCe +mLH +nCe +kgJ +kgJ +kgJ +kgJ +kgJ +kgJ +kgJ +kgJ +kgJ +kgJ +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +tjO +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +aNW +aNW +aNW +aNW +aNW +oum +oum +oum +oum +aNW +aNW +iGM +iGM +iGM +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +qzz +wYa +"} +(70,1,1) = {" +wYa +qpk +bVN +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +bVN +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 +xdu +vwy +vwy +aNW +aNW +aNW +aNW +oum +oum +oum +oum +oum +oum +aNW +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 +vUj +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +mLH +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +tjO +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +aNW +aNW +aNW +aNW +aNW +aNW +oum +oum +oum +aNW +aNW +iGM +iGM +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +qzz +wYa +"} +(71,1,1) = {" +wYa +qpk +bVN +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +baG +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 +xdu +vwy +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 +vUj +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +nCe +nCe +nCe +nCe +sLu +nCe +nCe +nCe +nCe +nCe +jeS +jeS +jeS +jeS +jeS +jeS +jeS +jeS +jeS +jeS +nCe +mLH +nCe +jeS +jeS +jeS +jeS +jeS +jeS +jeS +jeS +jeS +jeS +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +tjO +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +aNW +aNW +aNW +aNW +aNW +aNW +oum +oum +oum +aNW +iGM +iGM +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(72,1,1) = {" +wYa +qpk +oYl +gAH +aEE +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +eXA +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 +xdu +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 +vUj +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +bjZ +lhB +jkY +jkY +jkY +jkY +jkY +jkY +jkY +jkY +fuU +xxi +fuU +wZM +wZM +wZM +wZM +wZM +wZM +wZM +wZM +wZM +dDZ +nCe +nCe +nCe +nCe +nCe +sLu +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +tjO +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +aNW +aNW +aNW +aNW +aNW +aNW +oum +oum +oum +aNW +iGM +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(73,1,1) = {" +wYa +qpk +htc +qpk +oYl +aEE +eXA +eXA +eXA +eXA +eXA +eXA +fyc +fyc +fyc +fyc +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 +xdu +aNW +aNW +aNW +oum +oum +oum +oum +oum +oum +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 +vUj +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +svD +svD +kgJ +kgJ +kgJ +kgJ +kgJ +kgJ +kgJ +kgJ +nCe +mLH +nCe +kgJ +kgJ +kgJ +kgJ +kgJ +kgJ +kgJ +kgJ +kgJ +kgJ +nCe +nCe +nCe +nCe +nCe +xBq +xpd +xpd +xpd +xpd +xpd +xpd +xpd +xpd +jIh +xpd +xpd +xpd +xpd +xpd +xpd +jRb +xpd +xpd +jIh +xpd +xpd +xpd +xpd +xpd +xpd +xpd +xpd +xpd +xnL +twu +twu +nCe +sSy +nCe +nCe +nCe +nCe +nCe +nCe +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +aNW +aNW +aNW +aNW +aNW +aNW +oum +oum +oum +aNW +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(74,1,1) = {" +wYa +qpk +rwW +qpk +qpk +bVN +eXA +eXA +eXA +eXA +eXA +fyc +fyc +fyc +fyc +fyc +fyc +fyc +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 +wVF +aNW +aNW +oum +oum +oum +oum +oum +oum +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 +vUj +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +mLH +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +tjO +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +twu +twu +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +aNW +aNW +aNW +aNW +aNW +oum +oum +oum +aNW +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +wYa +"} +(75,1,1) = {" +wYa +qpk +rwW +qpk +qpk +bVN +eXA +eXA +eXA +eXA +fyc +fyc +fyc +fyc +fyc +fyc +fyc +fyc +fyc +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 +wVF +aNW +oum +oum +oum +oum +oum +oum +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 +vUj +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +jeS +jeS +jeS +jeS +jeS +jeS +jeS +jeS +jeS +jeS +nCe +mLH +nCe +jeS +jeS +jeS +jeS +jeS +jeS +jeS +jeS +jeS +jeS +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +tjO +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +aNW +aNW +aNW +aNW +aNW +oum +oum +oum +aNW +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +wYa +"} +(76,1,1) = {" +wYa +qpk +rwW +qpk +qpk +bVN +eXA +eXA +eXA +fyc +fyc +fyc +fyc +eXA +eXA +eXA +fyc +fyc +fyc +fyc +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 +wVF +oum +oum +oum +oum +oum +oum +oum +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 +vUj +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +bjZ +dKO +mjM +mjM +jkY +jkY +jkY +jkY +jkY +jkY +fuU +xxi +fuU +wZM +wZM +wZM +wZM +wZM +wZM +wZM +wZM +wZM +dDZ +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +tjO +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +aNW +aNW +aNW +aNW +oum +oum +oum +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +wYa +"} +(77,1,1) = {" +wYa +qpk +rwW +qpk +qpk +bVN +eXA +eXA +eXA +fyc +fyc +fyc +fyc +eXA +bHg +vwy +vwy +fyc +fyc +fyc +fyc +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 +cKh +oum +oum +oum +oum +oum +oum +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 +vwy +vUj +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +cxc +cxc +cxc +nCe +svD +svD +svD +svD +svD +kgJ +kgJ +kgJ +kgJ +kgJ +nCe +mLH +nCe +kgJ +kgJ +kgJ +kgJ +kgJ +kgJ +kgJ +kgJ +kgJ +kgJ +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +tjO +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +sLu +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +aNW +aNW +aNW +aNW +oum +oum +qzz +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +wYa +"} +(78,1,1) = {" +wYa +qpk +rwW +qpk +qpk +bVN +eXA +eXA +eXA +fyc +fyc +fyc +eXA +eXA +bVN +vwy +vwy +vwy +fyc +fyc +fyc +fyc +fyc +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 +cKh +oum +oum +oum +oum +oum +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 +vwy +vwy +vUj +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +nCe +nCe +nCe +nCe +yel +cxc +cxc +lOW +cxc +cxc +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +mCq +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +aqn +fHJ +szA +ulS +szA +fHJ +roL +fHJ +szA +ulS +szA +fHJ +aqn +aqn +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +aNW +aNW +aNW +aNW +oum +qzz +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +wYa +"} +(79,1,1) = {" +wYa +qpk +cDi +qpk +qpk +bVN +eXA +eXA +eXA +fyc +fyc +eXA +eXA +eXA +bVN +vwy +vwy +vwy +vwy +fyc +fyc +fyc +fyc +fyc +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 +oum +cKh +oum +oum +oum +oum +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 +vwy +vwy +vwy +vUj +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +nCe +nCe +nCe +nCe +yel +cxc +cMW +cMW +cMW +cxc +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +mCq +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +fHJ +fHJ +fHJ +fHJ +fHJ +aKd +ldo +yfz +ndb +dVn +iuv +aKd +ldo +yfz +fHJ +fHJ +fHJ +fHJ +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +aNW +aNW +aNW +oum +qzz +qzz +qzz +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +wYa +"} +(80,1,1) = {" +wYa +qpk +qpk +qpk +qpk +bVN +eXA +eXA +eXA +fyc +fyc +eXA +eXA +eXA +bVN +vwy +vwy +vwy +vwy +vwy +fyc +fyc +fyc +fyc +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 +oum +cKh +oum +oum +oum +oum +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 +vwy +nCe +nCe +nCe +vUj +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +sLu +cxc +cMW +cMW +cMW +cxc +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +ifG +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +fHJ +ihg +rHf +qXW +fwU +lzq +lzq +lzq +lzq +gdR +lzq +lzq +lzq +lzq +dPv +lzq +rHf +fHJ +fHJ +nCe +nCe +nCe +nCe +twu +nCe +nCe +xBq +xpd +xpd +xpd +xpd +xpd +xpd +jIh +xpd +xpd +xpd +xpd +xpd +xpd +xpd +xpd +xpd +jIh +xpd +xpd +xpd +xpd +xpd +xpd +xpd +xpd +xpd +xnL +nCe +nCe +aNW +aNW +aNW +dXk +dXk +qzz +qzz +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +wYa +"} +(81,1,1) = {" +wYa +qpk +qpk +aHG +cos +vZt +eXA +eXA +eXA +fyc +fyc +eXA +eXA +eXA +bVN +vwy +vwy +vwy +vwy +vwy +vwy +fyc +fyc +fyc +fyc +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 +oum +cKh +oum +oum +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 +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +vUj +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +yel +cxc +cMW +cMW +cMW +cxc +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +hwh +mHN +hwh +aqn +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +fHJ +wcF +lzq +sLL +gYD +gYD +gYD +gYD +gYD +oGP +gYD +gYD +gYD +gYD +gYD +ykA +lzq +lzq +szA +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +pNa +aNW +aNW +dXk +dXk +dXk +qzz +qzz +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +wYa +"} +(82,1,1) = {" +wYa +qpk +qpk +bVN +eXA +eXA +eXA +eXA +eXA +fyc +fyc +eXA +eXA +eXA +bVN +vwy +vwy +vwy +vwy +vwy +vwy +vwy +fyc +fyc +fyc +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 +oum +cKh +oum +oum +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 +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +twu +vUj +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +yel +cxc +cxc +cxc +cxc +cxc +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +aFB +tzn +tmQ +aqn +aqn +aqn +aqn +aqn +aqn +wzX +fIk +fIk +fIk +fIk +fIk +fIk +fIk +wzX +aqn +aqn +aqn +nCe +nCe +nCe +nCe +szA +wwF +lzq +wzJ +kIW +wJk +wJk +wJk +wJk +qQd +wJk +nnd +nnd +nnd +imi +qdF +jss +jss +ulS +nCe +nCe +nCe +nCe +nCe +twu +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +pNa +pNa +pNa +dXk +dXk +dXk +dXk +dXk +qzz +qzz +dXk +dXk +dXk +dXk +qzz +qzz +qzz +wYa +"} +(83,1,1) = {" +wYa +qpk +qpk +bVN +eXA +eXA +eXA +eXA +fyc +fyc +fyc +eXA +eXA +aHG +vZt +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +fyc +fyc +fyc +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 +oum +oum +cKh +oum +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 +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +twu +vUj +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +vLj +miC +hwh +wzX +eSN +eSN +eSN +fIk +fIk +fIk +fIk +fIk +fIk +fIk +fIk +fIk +fIk +wzX +wzX +eSN +fIk +fIk +fIk +fIk +fIk +ulS +rul +lzq +wzJ +esl +gZn +gZn +gZn +gZn +oCp +gZn +iGO +iGO +iGO +syj +qdF +ldo +aNe +szA +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +pNa +pNa +pNa +pNa +pNa +dXk +dXk +dXk +dXk +dXk +qzz +qzz +dXk +dXk +dXk +qzz +qzz +qzz +wYa +"} +(84,1,1) = {" +wYa +qpk +qpk +bVN +eXA +eXA +eXA +eXA +fyc +fyc +fyc +eXA +eXA +bVN +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +fyc +fyc +fyc +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 +oum +oum +cKh +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 +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +twu +vUj +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +hwh +idS +haN +ewJ +hwh +fIk +fIk +fIk +fIk +fIk +fIk +fIk +fIk +fIk +fIk +fIk +fIk +fIk +fIk +fIk +fIk +fIk +fIk +fIk +fIk +fIk +fIk +szA +lzq +lzq +wzJ +esl +gZn +gZn +gZn +pmP +fdq +qvR +iGO +iGO +iGO +syj +qdF +rtv +xgE +fHJ +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +pNa +pNa +pNa +pNa +pNa +pNa +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +dXk +qzz +qzz +qzz +wYa +"} +(85,1,1) = {" +wYa +qpk +qpk +bVN +eXA +eXA +eXA +fyc +fyc +fyc +eXA +eXA +eXA +bVN +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +fyc +fyc +fyc +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 +oum +oum +oum +wVF +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 +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +twu +vUj +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +gTx +nME +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +psP +fdg +hwh +mrO +jlb +kHv +idS +fIk +fIk +fIk +fIk +fIk +fIk +fIk +fIk +fIk +fIk +fIk +fIk +fIk +fIk +fIk +fIk +fIk +fIk +fIk +fIk +fIk +fIk +fHJ +btA +jss +wzJ +esl +gZn +gZn +gZn +txY +wnd +jes +iGO +iGO +iGO +syj +qdF +lzq +oBR +fHJ +fHJ +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +pNa +pNa +pNa +pNa +pNa +pNa +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +dXk +qzz +qzz +qzz +wYa +"} +(86,1,1) = {" +wYa +qpk +qpk +bVN +eXA +eXA +eXA +fyc +fyc +fyc +eXA +eXA +eXA +bVN +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +fyc +fyc +fyc +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 +oum +oum +oum +aNW +wVF +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 +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +gTx +iVY +twu +vUj +nCe +gBJ +xpd +xpd +xpd +xpd +xpd +xpd +xpd +xpd +xpd +jIh +xpd +xpd +nME +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +psP +psP +odW +aZD +opT +skd +pIY +pRP +pRP +pRP +pRP +pRP +pRP +pRP +idr +idr +idr +idr +pXz +pXz +fIk +fIk +wzX +wzX +idr +idr +idr +idr +fIk +fIk +szA +hsF +uAR +wzJ +esl +gZn +gZn +gZn +iGO +kau +iGO +iGO +iGO +iGO +syj +qdF +sLL +lzq +jss +szA +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +pNa +pNa +pNa +pNa +pNa +pNa +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(87,1,1) = {" +wYa +qpk +qpk +bVN +eXA +eXA +eXA +fyc +fyc +fyc +eXA +eXA +eXA +bVN +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +fyc +fyc +fyc +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 +oum +oum +oum +aNW +wVF +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 +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +gTx +xBq +nCe +nCe +vUj +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +psP +qzC +ukj +bbT +lBQ +cTK +gEG +pRP +nPy +nPy +nPy +nPy +nPy +pRP +aqn +aqn +aqn +aqn +aqn +aqn +aqn +aqn +aqn +aqn +aqn +aqn +aqn +aqn +aqn +aqn +ulS +rtv +bCI +wzJ +lSb +bjF +bjF +bjF +jDv +tgG +jDv +jDv +jDv +jDv +klk +qdF +iNb +aKd +seH +ulS +nCe +nCe +nCe +nCe +nCe +nCe +hAR +dvS +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +cgV +hAR +nCe +nCe +nCe +nCe +pNa +pNa +pNa +pNa +pNa +pNa +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +wYa +"} +(88,1,1) = {" +wYa +qpk +qpk +bVN +eXA +eXA +eXA +fyc +fyc +eXA +eXA +eXA +eXA +bVN +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +fyc +fyc +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 +oum +oum +oum +aNW +aNW +aNW +xdu +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 +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +vUj +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +fdg +qXG +ulb +hsL +hwh +hwh +hwh +pRP +nPy +nPy +nPy +nPy +nPy +pRP +aqn +dNR +tYs +tYs +tYs +tYs +tYs +tYs +tYs +tYs +tYs +tYs +tYs +tYs +hbo +aqn +szA +lzq +ylw +txA +nXY +nXY +nXY +nXY +nXY +tzy +pml +nXY +nXY +nXY +nXY +nfz +eHv +lzq +rtv +szA +nCe +nCe +nCe +nCe +nCe +nCe +cxc +rGw +bsh +bsh +bsh +bsh +bsh +bsh +bsh +bsh +bsh +bsh +bsh +bsh +bsh +bsh +bsh +bsh +bsh +bsh +bsh +bsh +bsh +eNi +cxc +nCe +nCe +nCe +nCe +pNa +pNa +pNa +pNa +pNa +pNa +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +wYa +"} +(89,1,1) = {" +wYa +qpk +qpk +bVN +eXA +eXA +eXA +fyc +fyc +eXA +eXA +eXA +eXA +bVN +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +fyc +fyc +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 +oum +oum +oum +oum +aNW +aNW +vwy +xdu +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +nCe +nCe +nCe +nCe +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +vUj +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +aqn +fdg +rav +uwX +psP +prA +qKp +xRE +pRP +nPy +nPy +nPy +nPy +nPy +pRP +aqn +wCG +aWW +aWW +aWW +aWW +aWW +aWW +aWW +aWW +aWW +aWW +aWW +aWW +fkd +aqn +fHJ +lbL +xig +xig +ubZ +qfR +ion +vfO +vfO +bwZ +xxc +lzq +aFI +dZT +dqe +bvY +eni +lzq +dZT +fHJ +nCe +nCe +nCe +nCe +nCe +nCe +nCe +cei +gjW +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +gjW +gjW +gjW +gjW +qKS +nCe +nCe +nCe +nCe +nCe +pNa +pNa +pNa +pNa +pNa +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +wYa +"} +(90,1,1) = {" +wYa +qpk +qpk +bVN +eXA +eXA +eXA +fyc +fyc +eXA +eXA +eXA +eXA +bVN +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +fyc +fyc +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 +oum +oum +oum +aNW +aNW +vwy +vwy +xdu +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +gTx +xpd +jIh +xpd +xpd +xpd +xpd +xpd +xpd +jIh +xpd +xpd +nME +nCe +nCe +nCe +vUj +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +aqn +aqn +fdg +xDE +uLx +psP +prA +qYz +owy +pRP +nPy +nPy +nPy +nPy +nPy +pRP +aqn +wCG +aWW +aWW +aWW +aWW +aWW +aWW +aWW +aWW +aWW +aWW +aWW +aWW +fkd +aqn +fHJ +fHJ +tWf +tWf +tWf +tWf +tWf +szA +szA +sFD +lCa +stJ +stJ +kgC +stJ +stJ +stJ +stJ +sCa +vCy +vCy +nCe +nCe +nCe +nCe +nCe +nCe +cei +gjW +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +gjW +qKS +nCe +nCe +nCe +nCe +nCe +pNa +pNa +pNa +pNa +pNa +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +wYa +"} +(91,1,1) = {" +wYa +qpk +qpk +bVN +eXA +eXA +eXA +fyc +fyc +eXA +eXA +eXA +eXA +bVN +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +fyc +fyc +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 +oum +oum +oum +aNW +aNW +aNW +vwy +vwy +xdu +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +gTx +xBq +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +vUj +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +mjQ +mjQ +mjQ +mjQ +mjQ +aqn +psP +sGM +vJd +wcG +mqv +mXo +jfk +pRP +nPy +nPy +nPy +nPy +nPy +pRP +aqn +wCG +aWW +aWW +aWW +aWW +aWW +aWW +aWW +aWW +aWW +aWW +aWW +aWW +fkd +aqn +aqn +bvP +fTj +fOl +eGS +owR +tCu +rwO +mvE +kko +xLz +stJ +awB +dQR +uQn +uQn +stJ +onP +xTU +oBw +vCy +nCe +nCe +nCe +nCe +nCe +nCe +cei +gjW +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +qKS +nCe +nCe +nCe +nCe +nCe +pNa +pNa +pNa +pNa +pNa +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +wYa +"} +(92,1,1) = {" +wYa +qpk +qpk +oYl +aEE +eXA +eXA +fyc +fyc +eXA +eXA +eXA +eXA +bVN +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +fyc +fyc +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 +oum +oum +oum +aNW +aNW +vwy +vwy +vwy +xdu +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +vUj +nCe +nCe +nCe +nCe +nCe +nCe +nCe +kzM +kzM +kzM +kzM +kzM +kzM +kzM +kzM +kzM +kzM +kzM +kzM +mjQ +mjQ +oyH +cFh +gXJ +mjQ +sOv +sOv +sOv +sOv +sOv +cYW +fQI +tHt +gDu +pRP +mHU +hby +heZ +pRP +pRP +aqn +wCG +aWW +aWW +aWW +aWW +aWW +aWW +aWW +aWW +aWW +aWW +aWW +aWW +fkd +aqn +aqn +tCu +bdm +jgc +rcJ +lAd +tCu +wRn +mvE +nRf +uMB +qmm +rFB +lfO +fgG +svE +moM +qXo +bgH +fso +vCy +nCe +nCe +nCe +nCe +nCe +nCe +cei +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +qKS +nCe +nCe +nCe +nCe +nCe +pNa +pNa +pNa +pNa +pNa +pNa +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +wYa +"} +(93,1,1) = {" +wYa +qpk +qpk +qpk +bVN +eXA +eXA +fyc +fyc +eXA +eXA +eXA +aHG +vZt +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +fyc +fyc +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 +oum +oum +aNW +aNW +aNW +vwy +vwy +vwy +xdu +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +vUj +nCe +nCe +nCe +nCe +nCe +nCe +nCe +kzM +lsP +nkn +ftz +hYR +pLz +nkn +kkZ +kzM +lsP +nkn +kkZ +mjQ +cFh +bHr +cFh +vdB +cFh +rmN +wYw +tgD +sOv +kAY +fww +pEh +kuR +eIB +vUB +oTU +kzS +koV +srR +gWp +aqn +wCG +aWW +aWW +aWW +aWW +aWW +aWW +aWW +aWW +aWW +aWW +aWW +aWW +fkd +aqn +aqn +tCu +vXK +lSf +oog +kHo +aTi +ayX +ode +waK +odR +stJ +eYh +wjy +mqh +twv +stJ +lkA +pUx +oVI +vCy +nCe +nCe +nCe +nCe +nCe +nCe +cei +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +qKS +nCe +nCe +nCe +nCe +pNa +pNa +pNa +pNa +pNa +pNa +pNa +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +wYa +"} +(94,1,1) = {" +wYa +qpk +aHG +cos +vZt +eXA +eXA +fyc +fyc +eXA +eXA +eXA +bVN +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +fyc +fyc +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 +oum +oum +oum +aNW +aNW +vwy +vwy +vwy +vwy +xdu +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +vUj +nCe +nCe +nCe +nCe +nCe +nCe +nCe +kzM +lsP +lsP +kMC +hYR +pLz +xvb +fum +kzM +lsP +lsP +fum +mjQ +koY +chs +aJK +hwP +cFh +mUu +dKr +tNf +fRm +eCH +tqC +rvG +yme +tFB +knS +knS +bhP +ccZ +lPO +ord +aqn +wCG +aWW +aWW +aWW +aWW +aWW +uxn +aWW +aWW +aWW +aWW +aWW +aWW +fkd +aqn +aqn +bvP +bkk +nhb +xtS +dPI +aTi +jIZ +mvE +aOd +xPR +stJ +uin +wjy +lpY +wae +stJ +stJ +vCy +vCy +vCy +nCe +nCe +nCe +nCe +nCe +nCe +cei +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +qKS +nCe +nCe +nCe +nCe +pNa +pNa +pNa +pNa +pNa +pNa +pNa +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +wYa +"} +(95,1,1) = {" +wYa +qpk +bVN +eXA +eXA +eXA +eXA +fyc +fyc +fyc +eXA +eXA +bVN +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +fyc +fyc +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 +oum +oum +aNW +aNW +aNW +vwy +vwy +vwy +vwy +xdu +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +jSN +nCe +nCe +nCe +nCe +nCe +nCe +nCe +kzM +lsP +lsP +kMC +fWW +pLz +lsP +fum +kzM +lsP +lsP +fum +mjQ +fEG +jon +soA +ebn +cFh +oZO +qpj +dWF +fzQ +kAY +xZL +oph +vMG +vch +bnR +meb +nnY +oso +lPO +gWp +aqn +wCG +aWW +aWW +aWW +aWW +aWW +aWW +aWW +aWW +aWW +aWW +aWW +aWW +fkd +aqn +fHA +bvP +aTi +bUZ +tCu +kbn +aTi +bMx +bMx +qtN +sEZ +stJ +rUb +nib +lpY +eBV +kVJ +qGi +vCy +aqn +aqn +nCe +nCe +nCe +nCe +nCe +nCe +cei +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +qKS +nCe +nCe +nCe +nCe +pNa +pNa +pNa +pNa +pNa +pNa +pNa +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +wYa +"} +(96,1,1) = {" +wYa +qpk +bVN +eXA +eXA +eXA +eXA +fyc +fyc +fyc +eXA +eXA +bVN +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +fyc +fyc +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +aNW +oum +oum +oum +aNW +aNW +aNW +vwy +vwy +vwy +vwy +xdu +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nwG +kmM +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +cac +nwG +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +gTx +xpd +iPz +jSN +xpd +xpd +sne +nCe +nCe +nCe +kzM +kzM +mQc +pLr +pnJ +kzM +gXY +pbb +uVF +kzM +bYm +msl +nFe +mjQ +iLk +kDz +kwo +eWv +cFh +wIY +eBp +rVE +rVE +rVE +rVE +rVE +rVE +rVE +rVE +wGv +jfE +uOm +nub +kMH +aqn +ate +ehK +ehK +ggz +gUf +pPn +soo +pPn +cQC +ggz +ehK +ehK +ehK +pEp +aqn +fHA +lCv +acC +hRr +nEm +lfN +ozI +oPN +bMx +cLZ +wnj +stJ +sLa +lpY +lpY +hDN +stJ +stJ +vCy +aqn +aqn +nCe +nCe +nCe +nCe +nCe +nCe +cei +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +qKS +nCe +nCe +nCe +nCe +pNa +pNa +pNa +pNa +pNa +pNa +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +wYa +"} +(97,1,1) = {" +wYa +qpk +bVN +eXA +eXA +eXA +eXA +eXA +fyc +fyc +eXA +eXA +bVN +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +fyc +fyc +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +aNW +aNW +oum +oum +aNW +aNW +aNW +vwy +vwy +vwy +vwy +vwy +xdu +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +cxc +rGw +bsh +bsh +bsh +bsh +bsh +bsh +bsh +bsh +bsh +bsh +bsh +bsh +bsh +bsh +bsh +bsh +bsh +eNi +cxc +nCe +sLu +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +yel +kgZ +kgZ +klM +kgZ +aQe +kzM +kzM +kzM +kzM +kzM +iJb +ylN +oyP +wlR +bcj +cLu +oyP +wlR +oXg +qqq +oyP +wlR +kzM +sOE +aTx +sOE +sOE +sOE +vCi +gbG +rVE +vcG +kVz +ruW +bbj +kVz +ofN +rVE +oiI +hSU +uMf +nub +aqn +aqn +aqn +aqn +aqn +xQN +bJT +uNr +dvT +uNr +ruB +xQN +aqn +aqn +aqn +aqn +aqn +vIg +nVH +ekK +gSf +hQy +lfN +bZb +ivq +vIg +myn +rXA +stJ +sLa +qvc +hNy +eBV +lPp +rTT +vCy +aqn +aqn +nCe +nCe +nCe +nCe +nCe +nCe +cei +gjW +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +qKS +nCe +nCe +nCe +nCe +nCe +pNa +pNa +pNa +pNa +pNa +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +wYa +"} +(98,1,1) = {" +wYa +qpk +bVN +eXA +eXA +eXA +eXA +eXA +fyc +fyc +eXA +eXA +bVN +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +fyc +fyc +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +aNW +aNW +oum +oum +oum +aNW +aNW +aNW +vwy +vwy +vwy +vwy +vwy +xdu +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +cei +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +qKS +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +yel +kgZ +bmW +bmW +bmW +lzL +nCO +pLz +nkn +lsP +bpc +qkh +mgA +bcQ +fku +fku +fku +evM +fku +fku +fku +lqc +eTr +kzM +vMn +fmF +xWE +jSe +sOE +osf +rKa +rVE +apM +kVz +kVz +kVz +kVz +inb +rVE +xyn +iVI +nxd +vAb +aqn +aqn +aqn +doc +soo +doc +rjQ +seI +dvT +seI +mGB +doc +soo +doc +aqn +aqn +aqn +vIg +iJv +hYJ +qnc +eXw +wYb +cEh +gnG +vIg +wPe +lYJ +stJ +stJ +stJ +kgC +stJ +stJ +stJ +vCy +vCy +aqn +aqn +nCe +nCe +nCe +nCe +nCe +cei +gjW +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +nNy +vBC +vBC +vBC +vBC +vBC +gjW +qKS +nCe +nCe +nCe +nCe +nCe +pNa +pNa +pNa +pNa +pNa +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(99,1,1) = {" +wYa +qpk +bVN +eXA +eXA +eXA +eXA +eXA +fyc +fyc +eXA +eXA +bVN +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +fyc +fyc +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +aNW +aNW +aNW +oum +oum +oum +aNW +aNW +aNW +vwy +vwy +vwy +vwy +vwy +tjO +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +cei +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +qKS +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +yel +kgZ +bmW +bmW +bmW +lzL +nCO +pLz +lsP +lsP +xsi +cDM +geK +qjg +dbB +rmX +rmX +txG +aOJ +aOJ +aOJ +wUI +xkd +kzM +bdT +vmj +bvw +pfk +pOA +vkN +kdL +rVE +iWF +kVz +wih +nRl +kVz +kVz +rVE +ePT +nxv +xgC +vjb +aqn +aqn +aqn +ggz +hTM +hYa +bJT +sSS +fCQ +vhh +ruB +gpm +cus +ggz +aqn +aqn +aqn +bMx +joW +wao +rKD +nEm +wFE +cua +nVH +tjh +myn +tgu +tTN +mJK +mOK +lFu +sfl +oYn +cen +ieS +hfw +aqn +aqn +nCe +nCe +nCe +nCe +nCe +cei +gjW +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +vBC +jFo +dNY +hAR +gjW +qKS +nCe +nCe +nCe +nCe +nCe +pNa +pNa +pNa +pNa +pNa +pNa +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(100,1,1) = {" +wYa +qpk +bVN +eXA +eXA +eXA +eXA +fyc +fyc +fyc +eXA +eXA +bVN +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +fyc +fyc +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +aNW +aNW +aNW +oum +oum +oum +aNW +aNW +vwy +vwy +vwy +vwy +vwy +vwy +tjO +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +jMb +jMb +jMb +jMb +jMb +nCe +nCe +nCe +nCe +nCe +nCe +cei +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +wuZ +vKC +vKC +vKC +vKC +vKC +qKS +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +yel +kgZ +bmW +bmW +bmW +lzL +nCO +wqS +jxT +jxT +uXW +vXR +ixB +qjg +qjg +ncU +wOf +xOF +hbD +jJq +qjg +qjg +qXg +kzM +vMn +gve +dmB +uTs +sOE +hLI +mAq +rVE +rVE +ojk +bmn +bmn +ojk +rVE +rVE +cZO +kEP +nyl +vAb +aqn +aqn +aqn +ggz +hTM +got +bJT +gRB +sJI +got +ruB +gRB +oTe +xQN +aqn +aqn +aqn +vIg +lhX +toQ +rKD +nEm +lfN +nVH +nVH +vIg +myn +mIg +jWB +mJK +mOK +sKa +sKa +jod +tZJ +eAI +hfw +aqn +aqn +aqn +nCe +nCe +nCe +cxc +eSo +vDJ +vDJ +vDJ +vDJ +vDJ +vDJ +hAR +jaW +jaW +hAR +fiI +vDJ +hAR +rMs +rMs +hAR +eJq +xyp +sTw +xyp +vDJ +rkW +cxc +nCe +nCe +nCe +nCe +pNa +pNa +pNa +pNa +pNa +pNa +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(101,1,1) = {" +wYa +qpk +bVN +eXA +eXA +eXA +eXA +fyc +fyc +eXA +eXA +aHG +vZt +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +fyc +fyc +fyc +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +aNW +aNW +aNW +oum +oum +oum +oum +aNW +aNW +vwy +vwy +vwy +vwy +vwy +vwy +tjO +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +jMb +xyV +oar +kDX +jMb +sIs +nCe +nCe +nCe +nCe +nCe +cei +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +qKS +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +yel +kgZ +kgZ +kgZ +kgZ +amb +kzM +kzM +kzM +kzM +kzM +sRK +ixB +qjg +qjg +aln +vnd +nmp +jMm +kog +qjg +qjg +bEM +kzM +sOE +eCn +sOE +sOE +sOE +hqG +mNx +rVE +fja +fqt +khq +bqP +rze +tJb +rVE +dJf +yeD +jXg +nub +dYh +dYh +dYh +dYh +wUn +doW +joM +gRB +cwh +got +cHN +gRB +uLU +ggz +aqn +aqn +aqn +vIg +cua +wao +rKD +nEm +wFE +cua +nVH +vIg +lbR +tOd +rlb +rJP +kKX +sqr +ogP +qrz +wXK +tZJ +mJK +aqn +aqn +aqn +aqn +aqn +aqn +hAR +dvS +aqn +aqn +aqn +aqn +aqn +aqn +xyp +bEQ +kEr +xyp +aqn +aqn +xyp +bEQ +kEr +xyp +aqn +xyp +sTw +xyp +nCe +cgV +hAR +nCe +nCe +nCe +nCe +pNa +pNa +pNa +pNa +pNa +pNa +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(102,1,1) = {" +wYa +qpk +bVN +eXA +eXA +eXA +eXA +fyc +fyc +eXA +eXA +bVN +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +fyc +fyc +fyc +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +aNW +aNW +aNW +oum +oum +oum +oum +oum +aNW +aNW +vwy +vwy +vwy +vwy +vwy +vwy +tjO +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +jMb +dSx +aWH +bgJ +eXO +fbA +nCe +nCe +nCe +nCe +nCe +cei +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +qKS +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +xBq +xpd +xpd +xpd +xpd +xpd +kzM +lsP +lsP +lsP +sdy +fNO +ixB +qjg +tPx +aOJ +aOJ +sFX +rmX +rmX +rmX +tOl +qpY +uOq +ljV +goE +fyS +qwf +mUw +jVx +ixt +rVE +vxH +peL +amW +bes +qJC +kEk +rVE +dJf +kXC +cVk +lQf +dYh +qpQ +vtF +jAJ +ouz +xJx +fQb +mlo +myD +bDx +ajt +mlo +egk +doc +aqn +aqn +aqn +fHA +nIt +toQ +vyH +smn +vHY +vSK +bMx +bMx +xYt +faB +wxg +ncO +pFg +caT +nEF +tTd +tZJ +jOe +kxI +aqn +aqn +aqn +aqn +aqn +aqn +aqn +aqn +aqn +aqn +aqn +aqn +aqn +aqn +xyp +tXx +pky +xyp +aqn +aqn +xyp +jwT +dZA +xyp +aqn +hAR +sTw +hAR +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +pNa +pNa +pNa +pNa +pNa +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(103,1,1) = {" +wYa +qpk +bVN +eXA +eXA +eXA +eXA +fyc +fyc +eXA +eXA +bVN +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +fyc +fyc +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +aNW +aNW +aNW +oum +oum +oum +oum +oum +aNW +aNW +vwy +vwy +vwy +vwy +vwy +vwy +tjO +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nwG +nwG +nwG +nwG +nwG +nwG +nwG +fqw +nCe +nCe +nCe +nCe +nCe +cei +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +tlH +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +kzM +wqJ +xvb +lsP +mvA +cDM +geK +qjg +rez +lLN +nkw +mzr +hfF +cWm +irS +sgo +had +jlT +jfS +qeT +rBs +sAI +mUw +vKZ +xyL +kJx +oBt +fsL +xIq +oWn +kvF +xhD +rVE +aKx +ygY +cvv +stX +qcx +wBO +fFa +efW +kAv +moD +xfp +xfp +nOA +xfp +oow +vhL +egk +doc +hXy +hXy +hXy +hXy +qgI +wao +rKD +dsW +lvN +iBd +enb +wNK +ykW +hrC +yaQ +qtT +vim +sqr +hKw +nKl +wXK +tZJ +mJK +aqn +aqn +aqn +aqn +aqn +aqn +aqn +aqn +aqn +aqn +aqn +aqn +aqn +hAR +hAR +owj +sUk +hAR +wLl +sop +hAR +lzA +sNQ +hAR +hAR +hAR +hAR +hAR +hAR +nCe +nCe +nCe +nCe +nCe +nCe +nCe +pNa +pNa +pNa +pNa +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(104,1,1) = {" +wYa +qpk +bVN +eXA +eXA +eXA +eXA +fyc +fyc +eXA +eXA +bVN +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +fyc +fyc +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +aNW +aNW +oum +oum +oum +oum +oum +aNW +aNW +vwy +vwy +vwy +vwy +vwy +vwy +vwy +tjO +nCe +nCe +nCe +nCe +nCe +rGw +bsh +bsh +bsh +bsh +bsh +nwG +tAU +tAU +tAU +tAU +tAU +nwG +dtm +nCe +nCe +nCe +nCe +nCe +cei +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +xSr +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +kzM +qzy +jxT +jxT +ksq +vXR +ixB +anP +qAD +kzM +kzM +xKg +kzM +kzM +eSK +spM +gYe +kzM +hMh +aVL +rnV +bEh +mUw +hqG +hqR +rVE +dMX +pBf +cub +iGu +mPy +rVE +rVE +dJf +dEk +cVk +lQf +dlf +ave +ekM +aXC +wUn +qiC +swE +dZZ +cuI +jTH +vhL +eXm +dwK +doc +oiM +dOT +jxK +cIE +ujW +ltz +eeU +oEe +cfy +mKn +kcj +rxC +feS +sQZ +jWB +mJK +ngO +sKa +sKa +uOl +tZJ +eqC +hfw +aqn +aqn +aqn +aqn +aqn +aqn +aqn +hAR +xyp +xyp +hAR +hAR +hAR +hAR +pBE +oTk +bCh +szL +qIt +bOo +rza +qCW +oav +qvN +hAR +ggd +ggd +epw +dTQ +dTQ +nCe +nCe +nCe +nCe +nCe +nCe +pNa +pNa +pNa +pNa +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(105,1,1) = {" +wYa +qpk +bVN +eXA +eXA +eXA +eXA +fyc +fyc +eXA +eXA +bVN +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +fyc +fyc +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +aNW +aNW +oum +oum +oum +oum +oum +oum +aNW +aNW +vwy +vwy +vwy +vwy +vwy +vwy +vwy +tjO +nCe +nCe +nCe +nCe +nCe +cei +aoK +caC +caC +caC +yaa +nwG +tAU +tAU +tAU +tAU +tAU +nwG +dtm +nCe +nCe +nCe +nCe +nCe +cei +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +xSr +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +kzM +kzM +kzM +kzM +kzM +oCZ +ixB +dpN +soa +sNq +bOp +qfh +gDq +tzH +wHU +uEu +nig +kzM +mxK +dsn +iZQ +vJZ +vGO +lIW +etm +rVE +rVE +rVE +dOF +dOF +rVE +shC +lKU +ujS +uOT +rvF +dYh +dYh +wUn +wUn +qHl +wUn +gkB +vhL +dZZ +qvl +rHJ +vhL +eXm +eQq +doc +oqv +kSp +gLG +mdG +jPh +vQJ +txI +tYp +qir +xzM +enb +qrk +gNR +vtJ +kFT +mJK +jsF +gGp +vwm +oye +tZJ +eSQ +hfw +aqn +aqn +aqn +aqn +aqn +aqn +iwU +hAR +aFa +cSu +hAR +hBM +hBM +aGF +pUD +spw +eJT +cmZ +orl +hjZ +jrW +eJT +lZB +qhW +gPJ +tGO +tGO +kUe +dTQ +dTQ +nCe +nCe +nCe +nCe +nCe +nCe +pNa +pNa +pNa +pNa +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(106,1,1) = {" +wYa +qpk +bVN +eXA +eXA +eXA +eXA +fyc +fyc +eXA +eXA +oYl +aEE +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +fyc +fyc +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +aNW +oum +oum +oum +oum +oum +oum +aNW +aNW +aNW +vwy +vwy +vwy +vwy +vwy +vwy +vwy +tjO +nCe +nCe +nCe +nCe +nCe +cei +nNo +coN +coN +coN +nNo +nwG +tAU +tAU +tAU +tAU +tAU +nwG +dtm +twu +nCe +nCe +nCe +cxc +cei +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +xSr +cxc +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +kzM +lsP +lsP +lsP +kir +nOx +ixB +dpN +jqp +pwL +fAg +sHa +rtB +jpl +lgG +goF +cHm +nJg +fEv +dYT +hlP +flA +sMQ +gJo +sBH +dkx +jbS +xvd +oIB +eWU +fcs +dpB +dML +odJ +lXA +tdU +fzE +vpm +wVf +vDb +xsT +ehL +gkB +vhL +dZZ +vhL +rHJ +vhL +eXm +egk +doc +kdH +idR +xmn +plP +bMx +bMx +bMx +bMx +bMx +bMx +bMx +gUL +phs +tJP +lWA +lWA +lWA +lWA +lWA +lWA +lWA +rIJ +ufL +ufL +kBj +aqn +aqn +qkr +pNy +qIh +niT +jyQ +gCm +pXw +wGW +mBm +uNd +sOx +rng +pHX +sOx +hdR +sOx +sOx +bUr +hKf +sBs +qqG +peN +uaS +dBM +kGf +dTQ +nCe +nCe +nCe +nCe +nCe +nCe +pNa +pNa +pNa +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(107,1,1) = {" +wYa +qpk +bVN +eXA +eXA +eXA +eXA +fyc +fyc +eXA +eXA +eXA +bVN +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +fyc +fyc +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +aNW +oum +oum +oum +oum +oum +oum +aNW +aNW +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +tjO +nCe +nCe +nCe +nCe +nCe +cei +nNo +cTj +cGb +uas +nNo +nwG +tAU +tAU +tAU +tAU +tAU +nwG +dtm +twu +twu +nCe +nCe +nCe +cei +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +xSr +nCe +nCe +sLu +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +kzM +wqJ +lsP +lsP +cYD +cDM +kbA +dpN +sFs +vLZ +wRT +nEo +mFG +kzM +aCy +wDH +rEa +bfl +bdy +rfr +hoT +sBl +iJK +swS +rgv +xKm +ydv +fTV +rnC +eWU +gGk +dpB +dML +odJ +otx +bhi +fzE +lhT +mcl +pXt +xHy +ehL +kLn +gXv +kGi +gXv +ayH +swE +dZZ +jWC +doc +plP +aIa +mdG +pgK +lZH +pQA +fAU +xNY +jQa +dNZ +dfg +nqw +aVq +gxa +jkH +nSK +pWe +mab +xrK +eqk +iTW +mjW +qai +ufL +wpQ +aqn +qkr +pPG +qkr +uwm +sFa +cMV +vai +iKP +eRj +cVf +iDc +oZE +bQa +sFE +oZE +jQj +oZE +oZE +nDO +rZq +kqS +pTz +tML +ssB +hgd +veM +dTQ +nCe +nCe +nCe +nCe +nCe +nCe +pNa +pNa +pNa +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(108,1,1) = {" +wYa +qpk +oYl +gAH +aEE +eXA +eXA +eXA +fyc +fyc +eXA +eXA +bVN +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +fyc +fyc +fyc +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +aNW +aNW +oum +oum +oum +oum +oum +aNW +aNW +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +tjO +nCe +nCe +nCe +nCe +nCe +cei +nNo +dCd +qdT +vzO +nNo +nwG +tAU +tAU +tAU +tAU +tAU +nwG +dtm +twu +twu +nCe +nCe +nCe +cei +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +xSr +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +kzM +qzy +jxT +jxT +gnF +vXR +ppT +pla +hFC +kzM +xHY +xHY +xHY +xHY +uQF +szF +xUY +ovt +wEB +uVe +oQh +szx +rAD +rAD +rAD +rAD +onz +tbP +xJp +xJp +pVi +ual +uaQ +xyn +hwa +uan +bNk +mos +aNh +pnP +eAj +iSG +kXn +oow +vhL +vhL +vhL +vhL +vhL +hSB +doc +whp +pIz +dyI +pgK +gcD +rsE +rsE +ayh +eUP +fZu +pgK +lKB +iph +lpm +oEj +vrU +bTe +gvo +pHY +vHV +vag +mjW +gPH +lWA +iHN +aqn +pNy +qkr +pPG +tnQ +xyp +rds +ygn +fZI +oST +aie +wMS +bkL +mUN +eJT +hCJ +orl +qHX +chE +eJT +oPg +eGf +dTQ +lnm +lnm +etq +dTQ +dTQ +nCe +nCe +nCe +nCe +nCe +nCe +pNa +pNa +pNa +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(109,1,1) = {" +wYa +qpk +qpk +qpk +bVN +eXA +eXA +eXA +fyc +fyc +eXA +eXA +bVN +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +fyc +fyc +fyc +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +aNW +aNW +oum +oum +oum +oum +oum +aNW +aNW +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +tjO +nCe +nCe +nCe +nCe +nCe +cei +gTs +git +qdT +auU +gTs +nwG +nwG +uBC +tJk +lag +nwG +nwG +gNF +pKW +jMb +nCe +nCe +nCe +cei +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +xSr +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +kzM +kzM +kzM +kzM +kzM +kzM +kzM +vfM +kzM +kzM +cVm +dKB +jyy +vxn +xUy +vsS +xUY +xUY +vpF +lfk +rAD +rAD +qFj +qUN +gtJ +rAD +jNq +xXL +uay +aLh +tas +pVi +pVi +dJf +fGM +oPp +nuY +ubo +pJy +lkL +mBh +oMJ +xfH +aKN +hLj +hLj +aKN +hPe +hLj +sZD +bcy +vBt +qXD +wdC +dgI +hEF +jRo +cUG +ajN +neR +fGS +dyq +rxC +tum +orw +jkH +vrU +vvm +nsO +pHY +vHV +tYF +fkm +gPH +lWA +hSM +aqn +qkr +pNy +aqn +aqn +hmX +xyp +xyp +hAR +tVs +hta +tVs +vjM +keI +daz +ayP +mgR +mgR +bDr +aGW +wff +mcO +hAR +fus +fus +jMj +dTQ +dTQ +nCe +nCe +nCe +nCe +nCe +nCe +pNa +pNa +pNa +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(110,1,1) = {" +wYa +qpk +qpk +qpk +bVN +eXA +eXA +eXA +fyc +fyc +eXA +eXA +bVN +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +fyc +fyc +fyc +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +aNW +aNW +oum +oum +oum +oum +oum +aNW +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +tjO +nCe +nCe +nCe +nCe +nCe +cei +nNo +ihO +qdT +lxR +itc +dof +jDu +vvW +ptk +obB +xeI +jTw +gSx +dCY +jMb +nCe +nCe +nCe +cei +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +xSr +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +sSy +ufW +fpa +sXq +kYh +mLL +aOC +kPd +wTX +aEj +xHY +iUj +uly +xjm +xjm +wLr +eDw +caQ +szF +uKz +tAK +rAD +kuP +vkM +nJe +kWW +ycI +bnI +wRk +xMa +pPy +als +qas +pVi +dJf +xTN +etA +fzE +lhT +hPc +eFw +cUE +kbW +wKW +rgJ +txS +iMb +oWU +oay +cRp +iPB +doc +pWW +eXX +vam +pgK +lNI +uAO +enM +liP +oPV +lUv +pgK +ivt +wlI +aUr +lWA +qCT +qwH +qwH +bUi +vHV +eKA +euc +fHS +lWA +sbw +aqn +pNy +qkr +aqn +aqn +aqn +aqn +aqn +mgC +wCT +juV +tVs +csg +ryD +lzy +csg +wLl +xPM +csg +fKR +vZZ +csg +hAR +hAR +hAR +hAR +hAR +nCe +nCe +nCe +nCe +nCe +nCe +pNa +pNa +pNa +pNa +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(111,1,1) = {" +wYa +qpk +qpk +qpk +bVN +eXA +eXA +fyc +fyc +fyc +eXA +eXA +bVN +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +fyc +fyc +fyc +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +aNW +oum +oum +oum +oum +oum +aNW +aNW +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +tjO +nCe +nCe +nCe +nCe +nCe +cei +nNo +nUW +qdT +heS +itc +dof +cHr +aWO +bjA +iTx +bIK +qcz +hOq +xyO +jMb +nCe +nCe +nCe +cei +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +xSr +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +alv +ufW +xwh +kqo +vFY +vFY +lze +aOr +syY +aOW +xHY +cFP +sMu +iCU +jSY +pLf +eDw +caQ +szF +qsr +xuX +rAD +eLc +dEV +xfL +iYA +fft +oDU +gVN +dEg +vmw +hCC +gIg +tbz +dJf +xTN +xgC +fzE +anI +wVf +qhu +bbi +ehL +rAx +egk +doc +doc +bSL +oWj +oNG +doc +doc +hgC +diD +rMU +rMU +rMU +rMU +rMU +rMU +rMU +rMU +rMU +gUL +eFU +tgj +gOl +mGf +sJl +sJl +sWl +huo +sjj +euc +fHS +ufL +oXS +aqn +qkr +pNy +aqn +aqn +aqn +aqn +aqn +mgC +vDZ +kpz +shD +csg +tJf +qzE +cVy +aqn +aqn +cVy +son +qVN +cVy +dgP +hAR +sTw +hAR +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +pNa +pNa +pNa +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(112,1,1) = {" +wYa +qpk +qpk +qpk +bVN +eXA +eXA +fyc +fyc +fyc +eXA +eXA +bVN +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +fyc +fyc +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +aNW +oum +oum +oum +oum +oum +aNW +aNW +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +tjO +nCe +nCe +nCe +nCe +nCe +cei +gTs +qij +qdT +nzw +gTs +jMb +jMb +aBf +jVy +pES +ckG +jMb +pcB +jBw +jMb +nCe +nCe +nCe +cei +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +xSr +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +cPd +seC +esv +kqo +qBQ +vQG +qZC +kPd +piz +npd +xHY +jPx +sMu +ayn +llb +fJT +wSf +xUY +xUY +trn +xuX +lCH +uix +yfX +lNR +ewC +jSb +jBd +qSF +mAR +gTN +ksL +gIg +mBs +uKf +tij +urn +fzE +fzE +iSG +ehL +ehL +jPE +qwb +lLE +doc +nGD +nGD +nGD +nGD +gom +doc +fuz +eUO +rMU +gDQ +ycp +wHD +gEA +avT +mpy +bRl +rMU +naV +wlI +rWJ +rzR +qAm +fnc +wRp +hOP +fnc +fnc +cBz +epn +ufL +gTP +aqn +pNy +qkr +aqn +hAR +hvu +aqn +aqn +mgC +mgC +yfi +mgC +csg +pqo +pro +cVy +aqn +aqn +cVy +pqo +pro +cVy +dgP +xyp +sTw +xyp +nCe +dLD +hAR +nCe +nCe +nCe +nCe +nCe +pNa +pNa +pNa +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(113,1,1) = {" +wYa +qpk +qpk +qpk +bVN +eXA +eXA +fyc +fyc +eXA +eXA +aHG +vZt +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +fyc +fyc +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +aNW +aNW +oum +oum +oum +oum +aNW +aNW +aNW +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +tjO +nCe +nCe +nCe +nCe +nCe +cei +nNo +vLB +qdT +nzw +nNo +qKS +jMb +eZo +hys +eZo +jMb +ptZ +pKW +tWX +jMb +nCe +nCe +twu +cei +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +xSr +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +twu +fIk +xUd +qew +kqo +vFY +vFY +mbv +kPd +kPd +kPd +xHY +neZ +vgP +cGc +snE +uTB +wZw +szF +xvd +jZs +bUx +uxR +fIE +dEV +xfL +jDj +imL +kqm +xPJ +nOz +puN +rum +gGY +tbz +kQR +wCF +nSm +tEO +wZn +oey +jDG +gWo +blU +sRR +uTh +doc +nGD +nGD +nGD +nGD +nGD +doc +pIj +pdg +rMU +wOb +hVI +hVI +ihA +rWG +rTa +wGH +rMU +mPF +lTz +nxQ +myf +gzD +gzD +urq +xKV +tWQ +mjW +vSp +qsw +jkH +aqn +aqn +qkr +pNy +aqn +onY +cFy +axR +axR +axR +axR +xFn +bsh +csg +mAD +mAD +csg +pqM +bsh +csg +qof +qof +csg +jUC +jFo +dNY +hAR +bsh +jRA +onY +nCe +nCe +nCe +nCe +pNa +pNa +pNa +pNa +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(114,1,1) = {" +wYa +qpk +qpk +qpk +bVN +eXA +eXA +fyc +fyc +eXA +eXA +bVN +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +fyc +fyc +vwy +xPA +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +aNW +aNW +oum +oum +oum +oum +aNW +aNW +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +tjO +nCe +nCe +nCe +nCe +nCe +cei +nNo +rjR +qdT +nzw +nNo +qKS +nCe +nCe +nCe +nCe +nCe +nCe +vGn +sqM +tIK +twu +twu +nCe +cei +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +vKC +xSr +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +twu +jmX +seC +uFA +kqo +qBQ +iaO +fDL +dzm +huS +mtL +aVg +tsM +mvP +xlW +xlW +vWd +cLg +opR +pVb +jdF +lxf +lCH +uix +yfX +lNR +gCp +pTc +rVQ +gVN +vmt +qXV +hCC +gIg +mBs +dJf +wCF +xgC +tEO +nxr +vSU +oOK +lRO +tdH +oov +hNH +doc +nGD +nGD +nGD +nGD +nGD +gDj +eUO +eUO +eIP +mVq +hVI +hVI +vvK +gpH +eqI +ecL +rMU +gTk +cDl +lpm +gzD +jGo +bRW +gzD +wbm +lrn +mjW +lYk +iJn +oEj +aqn +aqn +pNy +qkr +aqn +nCe +ilk +gjW +gjW +gjW +gjW +gjW +nvX +nvX +nvX +nvX +nvX +nvX +nvX +nvX +nvX +nvX +nvX +nvX +nvX +gjW +gjW +gjW +qKS +nCe +nCe +nCe +nCe +nCe +nCe +pNa +pNa +pNa +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(115,1,1) = {" +wYa +qpk +qpk +qpk +bVN +eXA +eXA +fyc +fyc +eXA +eXA +bVN +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +fyc +fyc +vwy +vwy +xPA +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +aNW +aNW +oum +oum +oum +oum +aNW +aNW +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +tjO +nCe +nCe +nCe +nCe +nCe +cei +nNo +olk +euR +olk +nNo +qKS +nCe +nCe +nCe +nCe +nCe +nCe +nCe +twu +twu +nCe +nCe +cxc +eSo +vDJ +vDJ +vDJ +vDJ +vDJ +vDJ +vDJ +vDJ +vDJ +vDJ +vDJ +vDJ +vDJ +vDJ +vDJ +vDJ +vDJ +mTs +jlu +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +twu +fIk +ufW +tdK +kqo +vFY +vFY +mjO +uBH +mtC +hEZ +aVg +dyx +sYc +sYc +sYc +sYc +sYc +szF +kyY +rvR +wKB +rAD +qFX +dEV +xfL +hqL +lDm +kZr +aPP +hCC +hCC +hCC +dsK +tbz +dJf +nOg +xgC +tEO +wZn +aTz +tbx +pKu +pKu +icE +paJ +doc +nGD +nGD +nGD +nGD +nGD +doc +hMD +mAt +rMU +fiw +uEm +dzz +dzz +gTA +pyz +xDu +khK +een +bDA +xqe +gIJ +jSC +mgk +dGU +rVT +gFi +mjW +mjW +fgw +jkH +aqn +aqn +qkr +pNy +aqn +nCe +ilk +gjW +gjW +gjW +nvX +nvX +nvX +nvX +psJ +nvX +nvX +nvX +nvX +nvX +nvX +nvX +nvX +nvX +nvX +gjW +gjW +gjW +qKS +nCe +nCe +nCe +nCe +nCe +nCe +pNa +pNa +pNa +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(116,1,1) = {" +wYa +qpk +qpk +qpk +bVN +eXA +eXA +fyc +fyc +eXA +eXA +bVN +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +fyc +fyc +fyc +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +aNW +aNW +oum +oum +oum +oum +aNW +aNW +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +tjO +nCe +nCe +nCe +nCe +nCe +cei +gjW +nNo +tOo +nNo +gjW +qKS +nCe +nCe +nCe +nCe +nCe +nCe +nCe +twu +twu +nCe +nCe +nwG +kmM +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +twu +twu +nCe +nCe +fhL +nwG +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +twu +sSy +ufW +kaG +nQi +kSF +kSF +agu +lux +dVp +esv +aVg +dEz +bvu +eNC +nDF +bsG +cof +xHY +iTP +gGk +pyl +lUL +uix +yfX +dpM +aSp +pID +avp +eCG +jWP +sGK +eCG +aZZ +pVi +hez +haB +lWm +idf +imW +xWG +vYX +msu +bbk +cOo +cNb +doc +nGD +nGD +nGD +nGD +nGD +doc +rNP +pWW +rMU +hDx +kQu +eeQ +szU +cnU +hpH +dqB +rMU +wAS +ccz +pgR +lWA +kYu +lmq +lWA +oaV +xpy +mjW +ayF +ufL +ufL +aqn +aqn +pNy +qkr +nCe +nCe +ilk +gjW +gjW +nvX +nvX +nvX +nvX +nvX +nvX +nvX +nvX +nvX +nvX +nvX +nvX +nvX +nvX +nvX +nvX +nvX +gjW +gjW +qKS +nCe +nCe +nCe +nCe +nCe +nCe +pNa +pNa +pNa +pNa +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +wYa +"} +(117,1,1) = {" +wYa +xbw +xbw +xbw +vZt +eXA +fyc +fyc +fyc +eXA +eXA +bVN +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +fyc +fyc +fyc +fyc +vwy +fyc +fyc +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +aNW +aNW +oum +oum +oum +oum +aNW +aNW +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +wKc +nCe +nCe +nCe +nCe +nCe +eSo +vDJ +vDJ +vDJ +vDJ +vDJ +rkW +nCe +nCe +nCe +nCe +nCe +nCe +nCe +twu +twu +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +twu +nCe +flO +nCe +nCe +sSy +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +twu +aqn +ufW +ufW +ufW +lrX +lrX +ufW +cTf +ufW +ufW +xHY +arr +arr +xHY +arr +arr +xHY +gpi +mHv +jic +quw +lUL +dDF +dDF +lUL +lUL +tOX +lmE +nSg +pVi +nSg +uHA +nSg +pVi +jtX +gwo +jjI +imW +imW +imW +imW +imW +vbc +oMB +vbc +doc +doc +doc +doc +doc +doc +doc +gry +kVp +rMU +rMU +qHD +oNB +vli +apd +oeG +rMU +rMU +ksv +hGV +fJq +lWA +ufL +ufL +ufL +ufL +jkH +oEj +jkH +ufL +aqn +aqn +aqn +qkr +pNy +nCe +nCe +ilk +gjW +gjW +nvX +nvX +nvX +nvX +nvX +nvX +nvX +nvX +nvX +nvX +nvX +nvX +nvX +nvX +nvX +nvX +nvX +gjW +gjW +qKS +nCe +nCe +nCe +nCe +nCe +nCe +pNa +pNa +pNa +pNa +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +wYa +"} +(118,1,1) = {" +jhv +cwH +jhv +jhv +eXA +eXA +fyc +fyc +fyc +eXA +aHG +vZt +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +fyc +fyc +fyc +fyc +fyc +fyc +fyc +vwy +vwy +vwy +vwy +vwy +vwy +eSI +vRh +vRh +vux +vux +vux +vux +vux +vRh +eSI +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +tjO +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +twu +twu +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +flO +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +twu +twu +aqn +aqn +utD +jJc +jJc +rXI +jJc +kIH +aqn +aqn +aqn +sPX +rzU +lVz +xnb +rzU +iNc +cAF +cAF +tax +lUL +jmQ +lUL +lUL +oqM +sYq +oqM +sYq +pts +bql +wAe +rIC +tDF +kWT +nsS +kWT +pfh +tmp +imh +fsP +aTA +sYq +oqM +sYq +oqM +pfh +pfh +wlg +ves +tjX +uvK +sWF +jLN +tRC +nav +oIi +yjC +yjC +oSO +wxN +qJq +eqv +eje +jYx +wQu +sVu +jhq +fJg +oPb +omw +bsn +aqn +aqn +aqn +aqn +aqn +pPG +pNy +qkr +nCe +nCe +ilk +gjW +gjW +nvX +nvX +nvX +nvX +nvX +nvX +nvX +nvX +nvX +nvX +nvX +nvX +nvX +nvX +nvX +nvX +nvX +gjW +gjW +qKS +nCe +nCe +nCe +nCe +nCe +pNa +pNa +pNa +pNa +pNa +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +wYa +"} +(119,1,1) = {" +rRy +eaB +fyc +fyc +fyc +fyc +fyc +fyc +fyc +eXA +bVN +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +fyc +fyc +fyc +fyc +fyc +fyc +fyc +fyc +fyc +fyc +fyc +fyc +cYk +uVc +uVc +uVc +uVc +uVc +uVc +uVc +uVc +uVc +fyc +fyc +fyc +fyc +fyc +fyc +fyc +fyc +fyc +fyc +fyc +fyc +reB +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +flO +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +own +tvN +wVU +aul +mqH +mzQ +kgP +kgP +mRw +lUL +lUL +lUL +pql +rVf +rVf +rVf +wsy +mqA +ity +kdw +uqa +oUi +nlq +wTj +cQI +mtW +xTw +xTw +xTw +hQd +rmM +eBu +eBu +gIT +uSF +tMy +lFz +tPT +kee +kee +oAu +tCE +ane +htd +aCE +glE +aCE +dkO +aCE +ikr +iQT +vYm +vnT +sbl +inY +xbk +jvp +vKa +qaO +jNt +qkr +pNy +qkr +pNy +qkr +pNy +pPG +pNy +nCe +nCe +ilk +gjW +gjW +nvX +nvX +nvX +nvX +nvX +nvX +nvX +nvX +nvX +nvX +nvX +nvX +nvX +nvX +nvX +nvX +nvX +gjW +gjW +qKS +nCe +nCe +nCe +nCe +nCe +nCe +pNa +pNa +pNa +pNa +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +wYa +"} +(120,1,1) = {" +rRy +eaB +fyc +fyc +fyc +fyc +fyc +fyc +eXA +eXA +bVN +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +fyc +fyc +fyc +fyc +fyc +fyc +fyc +fyc +fyc +fyc +uVc +uVc +uVc +uVc +uVc +uVc +uVc +uVc +uVc +uVc +fyc +fyc +fyc +fyc +fyc +fyc +fyc +fyc +fyc +fyc +fyc +fyc +reB +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +flO +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +vwj +fxa +wxI +nEd +hwm +qpc +mAO +mAO +oQg +adQ +pfh +oqM +pts +hgA +bql +bql +wxv +erT +cmb +cmb +cmb +cmb +rNx +hGr +veX +ity +ity +ity +ity +buJ +wxv +bql +bql +cKI +bql +kPm +eNK +cDH +kee +iBx +tFb +gyq +uFr +fZt +vYq +nFN +hof +cyd +amF +vFU +wtw +veA +eUX +bxx +qoy +bSm +ozj +vIJ +xji +apb +pNy +qkr +pNy +qkr +pNy +qkr +pNy +nCe +nCe +nCe +ilk +gjW +gjW +nvX +nvX +nvX +nvX +nvX +nvX +nvX +nvX +nvX +nvX +nvX +nvX +nvX +nvX +nvX +nvX +nvX +gjW +gjW +qKS +nCe +nCe +nCe +nCe +nCe +pNa +pNa +pNa +pNa +pNa +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +wYa +"} +(121,1,1) = {" +jhv +eSe +jhv +fyc +jhv +eXA +eXA +eXA +eXA +eXA +bVN +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 +eSI +gNL +gNL +xkh +xkh +xkh +xkh +xkh +gNL +eSI +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +tjO +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +twu +twu +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +twu +twu +flO +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +aqn +aqn +aqn +aqn +aqn +aqn +aqn +aqn +aqn +aqn +aqn +aqn +aqn +aqn +dFY +rzU +hME +mzU +kLh +lqW +esZ +bYc +hFI +uaI +eNB +hlM +pts +bql +bql +oqM +wMG +nLV +eYp +oqM +oqM +dOI +bql +vxx +bql +dOI +iDl +oqM +wMG +iUi +eYp +oqM +bql +bql +oVr +hlM +tRC +icM +kee +iVW +lBm +vvN +wlg +ybz +qqm +ybz +pRB +onN +onN +onN +onN +orQ +iTH +bCZ +shq +jSx +gZO +ddi +jSx +wQp +aqn +aqn +aqn +aqn +nCe +nCe +nCe +nCe +nCe +nCe +ilk +gjW +gjW +gjW +nvX +nvX +nvX +nvX +nvX +nvX +nvX +nvX +nvX +nvX +nvX +nvX +nvX +nvX +nvX +gjW +gjW +gjW +qKS +nCe +nCe +nCe +nCe +nCe +nCe +pNa +pNa +pNa +pNa +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +wYa +"} +(122,1,1) = {" +jhv +eSe +jhv +jhv +jhv +eXA +eXA +eXA +eXA +aHG +vZt +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 +oum +oum +oum +oum +oum +aNW +aNW +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +jtv +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +twu +twu +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +twu +twu +twu +flO +nCe +nCe +xnL +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +hbR +hbR +hbR +hbR +bHw +bHw +bHw +bHw +bHw +bHw +aqn +aqn +aqn +aqn +aqn +aqn +aqn +aqn +aqn +aqn +aqn +rdT +rdT +rdT +rdT +rdT +oHA +aLm +neE +wtk +jgp +gGO +pts +bql +oqM +oqM +ydK +vue +rzu +oqM +oqM +tga +bql +eCu +bql +tga +oqM +oqM +ydK +vue +rzu +oqM +oqM +bql +hNc +klO +ygj +ltl +quW +quW +jXw +rzn +xHN +xHN +xHN +xHN +onN +gRW +onN +nPJ +onN +tRC +nSE +okq +ogu +ogu +kDt +kDt +ogu +ogu +ogu +aqn +aqn +nCe +nCe +nCe +nCe +nCe +nCe +nCe +ilk +gjW +gjW +gjW +gjW +gjW +nvX +nvX +nvX +nvX +nvX +nvX +nvX +nvX +nvX +nvX +nvX +nvX +nvX +gjW +gjW +gjW +qKS +nCe +nCe +nCe +nCe +nCe +pNa +pNa +pNa +pNa +pNa +pNa +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +wYa +"} +(123,1,1) = {" +wYa +qPb +qPb +qPb +qPb +mQm +cos +cos +cos +vZt +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 +oum +oum +oum +oum +oum +aNW +aNW +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +twu +twu +nCe +nCe +nwG +kmM +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +twu +twu +twu +twu +fhL +nwG +nCe +yel +nCe +nCe +nCe +lJF +lJF +lJF +lJF +lJF +lJF +hbR +hbR +uOQ +pnA +rqz +bHw +fWH +fWH +fWH +fWH +bHw +uvN +uvN +bOk +biQ +biQ +bOk +uvN +uvN +rdT +wUz +wUz +rdT +qiX +cnR +jlF +ydr +obP +oKA +nZk +vmK +eNB +hlM +pts +bql +tga +oqM +qwT +qwT +qwT +oqM +oqM +tga +bql +eCu +bql +tga +oqM +oqM +qwT +ivC +ivC +oqM +tga +bql +hNc +azs +wlg +ksM +eoP +eoP +ioE +tkv +xHN +kda +ikq +hQF +onN +khi +onN +aHm +onN +fgO +jYx +cNV +lJQ +edv +dfs +mSO +cOE +aHr +ogu +aqn +aqn +nCe +nCe +nCe +nCe +nCe +nCe +nCe +ilk +gjW +gjW +gjW +gjW +gjW +gjW +gjW +gjW +gjW +gjW +gjW +gjW +gjW +gjW +gjW +gjW +gjW +gjW +gjW +gjW +gjW +qKS +nCe +nCe +nCe +nCe +nCe +nCe +pNa +pNa +pNa +pNa +pNa +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +wYa +"} +(124,1,1) = {" +wYa +qpk +qpk +qpk +qpk +bVN +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 +oum +oum +oum +oum +oum +aNW +aNW +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +nCe +nCe +nCe +nCe +nCe +twu +twu +nCe +nCe +cxc +rGw +bsh +bsh +bsh +bsh +bsh +bsh +bsh +bsh +bsh +bsh +bsh +bsh +bsh +bsh +bsh +bsh +bsh +ojP +cJq +nCe +yel +nCe +nCe +lJF +lJF +rIV +jXZ +xWI +bXN +uPB +qVk +iKl +gdX +okF +tKX +bHw +fWH +fWH +fWH +fWH +bHw +hqO +jOf +gAR +uNe +tVR +rDP +ajl +rJN +wik +lHj +oCD +cJk +eXy +nXo +eIH +uRh +obP +lGu +fRK +sKz +pfh +glD +pts +bql +tga +oqM +oqM +oqM +oqM +oqM +oqM +tga +bql +eCu +bql +tga +oqM +oqM +oqM +oqM +oqM +oqM +tga +bql +hNc +bqn +xjz +xHN +cpc +cpc +sFr +xHN +xHN +nIv +ouU +fbb +onN +sum +viA +grK +onN +toT +guY +kFw +kDt +nrX +hbn +rNb +nXP +jOt +kDt +aqn +aqn +nCe +nCe +nCe +nCe +nCe +nCe +nCe +ilk +gjW +gjW +gjW +gjW +gjW +gjW +gjW +gjW +gjW +gjW +gjW +gjW +gjW +gjW +gjW +gjW +gjW +gjW +gjW +gjW +gjW +qKS +nCe +nCe +nCe +nCe +nCe +nCe +pNa +pNa +pNa +pNa +pNa +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +wYa +"} +(125,1,1) = {" +wYa +qpk +qpk +qpk +qpk +bVN +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 +oum +oum +oum +oum +aNW +aNW +aNW +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +nCe +nCe +nCe +nCe +nCe +twu +twu +nCe +nCe +nCe +cei +nbV +nbV +nbV +nbV +nbV +nbV +nbV +nbV +nbV +nbV +nbV +nbV +nbV +nbV +nbV +nbV +nbV +xSr +nCe +nCe +yel +nCe +nCe +lJF +jXZ +jXZ +jXZ +dKh +kal +oON +qVk +hbR +ibA +qOg +lLx +bHw +fWH +fWH +fWH +fWH +bHw +vIE +yjV +qZB +qZB +qZB +dpu +jUQ +rJR +nse +xSt +aHp +aHp +kxK +sMh +cAX +kAK +obP +lGu +rHb +vmK +pfh +oqM +pts +bql +tss +oqM +oqM +oqM +oqM +oqM +oqM +oqM +bql +lxE +bql +oqM +oqM +oqM +oqM +oqM +oqM +oqM +tga +bql +okY +rVf +xjz +grn +aMy +aMy +kRH +qkt +pce +qVX +lBp +abF +onN +mqb +lPl +ubw +onN +vaE +vpe +nAp +jOu +nlm +fWa +qUk +twn +kcu +dGI +aqn +aqn +nCe +nCe +nCe +nCe +nCe +nCe +cxc +iFx +vDJ +vDJ +vDJ +vDJ +vDJ +vDJ +vDJ +jvk +jvk +jvk +vDJ +vDJ +vDJ +vDJ +vDJ +vDJ +vDJ +vDJ +vDJ +vDJ +vDJ +rkW +onY +nCe +nCe +nCe +nCe +nCe +pNa +pNa +pNa +pNa +pNa +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +wYa +"} +(126,1,1) = {" +wYa +qpk +qpk +qpk +qpk +bVN +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 +oum +oum +oum +oum +oum +aNW +aNW +aNW +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +nCe +nCe +nCe +nCe +nCe +twu +twu +nCe +nCe +nCe +cei +nbV +nbV +nbV +nbV +iyP +eSr +eSr +eSr +eSr +eSr +vsL +tld +vsL +vsL +vsL +vsL +vsL +xSr +nCe +nCe +yel +nCe +nCe +lJF +jXZ +vFW +aIU +woI +woI +woI +woI +woI +uvl +ggk +uvl +bHw +fWH +fWH +fWH +fWH +bHw +fEd +pMn +dln +dGb +dln +shd +fBt +mtG +wik +upN +jSy +wop +vbQ +lNd +vzn +ydr +obP +lGu +fCf +vmK +eNB +hlM +pts +bql +oqM +oqM +qwT +qwT +nPp +oqM +oqM +bql +niD +eVB +xjU +bql +oqM +oqM +qwT +qwT +qwT +oqM +iDl +bql +bql +nzB +nCg +gFo +mmg +uIV +udT +ssw +owc +ccK +tnO +jGM +onN +gzp +onN +onN +pRB +wbN +dux +tPm +hgW +nRM +gSR +kDP +bUO +jOt +kDt +aqn +nCe +nCe +nCe +nCe +nCe +nCe +nCe +hAR +jrg +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +dLD +hAR +nCe +nCe +nCe +nCe +nCe +pNa +pNa +pNa +pNa +pNa +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(127,1,1) = {" +wYa +qpk +qpk +qpk +qpk +bVN +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 +oum +oum +oum +oum +oum +aNW +aNW +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +nCe +nCe +nCe +nCe +twu +twu +nCe +nCe +nCe +cei +nbV +grC +nus +nus +grC +eSr +oXu +dIK +eRF +tHX +iRQ +mBZ +svR +rlN +djc +mbR +duZ +xSr +nCe +nCe +yel +nCe +nCe +lJF +bXN +suW +woI +woI +elp +plR +faC +dda +cWP +cFE +spy +bHw +bHw +fpB +hjn +bHw +bHw +pja +nQZ +aCQ +jxM +aCQ +fAI +xWl +rTm +wik +dko +ydr +wik +wik +ydr +dTz +wik +bBs +bzH +fCf +vmK +jgp +hlM +pts +bql +bql +bql +bql +bql +bql +bql +bql +bql +cHj +cQp +klL +qGc +bql +bql +bql +bql +bql +bql +bql +enh +xJF +nzB +nCg +aMy +xHq +wfj +sAl +rbL +nRU +xHN +gaB +xHN +xHN +tJW +heM +akg +iih +gIP +mfj +wRl +kDt +eeB +eSk +uge +hbn +snA +ogu +aqn +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +oub +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +pNa +pNa +pNa +pNa +pNa +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(128,1,1) = {" +wYa +qpk +qpk +qpk +aHG +vZt +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 +oum +oum +oum +oum +oum +oum +aNW +aNW +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +nCe +twu +twu +nCe +nCe +nCe +cei +grC +grC +oyh +mFB +grC +bWC +jDy +fDn +kyJ +pzA +cjr +oZV +ibx +hZG +kcb +ndV +duZ +xSr +nCe +nCe +yel +nCe +nCe +wNJ +dns +red +kBa +kMw +psC +lVJ +ykd +suW +meg +eJn +bfF +cFz +cgM +glT +lyg +mnD +cFz +aMf +egv +aIr +aIr +aIr +glU +gQu +uBg +nSx +tof +pik +pzz +aTC +tbv +tbv +boy +tLq +dbY +fCf +vmK +eNB +hlM +pts +bql +oqM +oqM +qwT +qwT +qwT +oqM +oqM +bql +raN +oRf +ssV +bql +oqM +oqM +qwT +qwT +qwT +oqM +iOa +bql +bql +nzB +nCg +aMy +aMy +aMy +aMy +oWm +xHN +heM +wPL +len +gFr +ueg +owl +heM +shK +xys +mfj +oDQ +nIh +psX +gZq +aDE +qrZ +ewh +ogu +aqn +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +oub +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +pNa +pNa +pNa +pNa +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(129,1,1) = {" +wYa +qpk +qpk +aHG +vZt +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 +oum +oum +oum +oum +oum +oum +aNW +aNW +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +nCe +twu +twu +nCe +nCe +nCe +cei +nus +ybe +cSg +cai +nus +cMf +sec +hdH +oYh +pzA +nhQ +kAV +ibx +esX +soO +gAJ +vsL +xSr +nCe +nCe +yel +nCe +nCe +wNJ +dns +red +kBa +qVR +psC +sRZ +kUn +dUH +iqZ +rhP +jaZ +uWY +gTK +uwU +fkX +iFX +uWY +mIe +egv +cvr +cvr +cvr +qGv +gQu +jRs +pEY +aHn +cNv +rOl +hSW +cfY +oZb +kLG +dfi +dbY +rHb +eWW +pfh +oqM +pts +bql +tga +oqM +oqM +oqM +oqM +oqM +oqM +oqM +bql +lxE +bql +oqM +oqM +oqM +oqM +oqM +oqM +oqM +tga +bql +aGP +tnc +xjz +iMd +caH +evV +caH +rNj +xHN +vhM +rCN +jCb +sUi +pmx +bLd +nLR +skF +rYD +cyO +itG +nIh +nIh +hQW +nIh +nIh +ogu +ogu +aqn +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +oub +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +pNa +pNa +pNa +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(130,1,1) = {" +wYa +qpk +qpk +bVN +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 +oum +oum +oum +oum +oum +oum +aNW +aNW +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +nCe +twu +twu +nCe +nCe +nCe +cei +nus +xTp +sgm +cvK +kdg +dry +dEZ +irT +lMg +jQn +uaG +oMH +xRQ +oTL +xSU +pRz +tIm +jlB +qxt +qxt +cmJ +qxt +qxt +gCG +rln +red +kBa +bPH +dzj +lVt +jDn +suW +bLB +eJn +spy +cFz +jFv +ilu +xLG +hOm +cFz +aMf +pTC +qMT +bwp +xzt +bVG +eeL +ppb +pEY +xRb +fir +fZy +cZC +bbP +oZb +kLG +tLq +dbY +rHb +hWJ +pfh +eiv +pts +bql +tga +oqM +oqM +oqM +oqM +oqM +oqM +tga +bql +eCu +bql +tga +oqM +oqM +oqM +iOa +oqM +oqM +tga +bql +hNc +tUr +rif +kwY +mXF +mXF +mXF +vpx +cUk +jEx +heM +hpC +kCz +xFu +heM +eYt +nyc +aYV +gER +uel +xpW +rON +csi +lZm +nSq +erl +aqn +aqn +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +oub +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +pNa +pNa +pNa +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(131,1,1) = {" +wYa +qpk +qpk +bVN +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 +oum +oum +oum +oum +oum +aNW +aNW +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +nCe +twu +twu +nCe +nCe +nCe +cei +nus +hGY +cSg +cGQ +nus +cMf +sec +iJV +nTZ +qYa +nAA +uQE +vXc +uqw +hkO +gAJ +vsL +qKS +nCe +nCe +yel +nCe +nCe +lJF +xEb +woI +woI +xrS +xrS +xrS +suW +suW +aOF +eJn +gdn +ocy +tMK +ndX +fin +uxZ +ocy +nQQ +fiB +ldy +lhN +lwt +qRt +lwH +rwK +nSx +kqa +skI +dDp +fPj +kXk +oZb +wBU +vDG +jTX +dRM +vmK +eNB +hlM +pts +bql +tga +oqM +qwT +qwT +qwT +oqM +oqM +tga +bql +eCu +bql +tga +oqM +oqM +qwT +qwT +qwT +oqM +tga +bql +hNc +hlM +xAq +heM +heM +heM +ktB +heM +heM +rUV +xOr +sZq +sZq +sZq +sZq +chV +sZq +sZq +nkx +tnJ +tew +pzZ +vsu +clm +erl +erl +aqn +aqn +nCe +nCe +nCe +nCe +nCe +nCe +nCe +wir +ivI +mNw +mNw +mNw +mNw +nCe +nCe +nCe +nCe +cSV +cSV +cSV +cSV +cSV +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +pNa +pNa +pNa +pNa +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(132,1,1) = {" +wYa +qpk +qpk +bVN +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 +oum +oum +oum +oum +oum +oum +oum +aNW +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +nCe +twu +twu +twu +twu +nCe +cei +grC +grC +dYO +lUz +grC +aWA +uLq +jsc +pww +pzA +smi +qYJ +oVm +bjK +pLI +ndV +duZ +qKS +nCe +nCe +sLu +nCe +nCe +lJF +mdC +daO +bYE +qKg +qKv +oTb +wDX +rko +qDD +vwn +dtf +mIj +vHZ +rGc +pWQ +qWD +ooQ +nUv +aJk +jUQ +gfI +qlH +mRC +djO +qUj +otF +ppL +kkG +rpd +mRb +wnc +oZb +fId +jgs +qrK +fCf +iyI +jgp +gGO +pts +bql +oqM +oqM +ydK +vue +rzu +oqM +oqM +tga +bql +eCu +bql +tga +oqM +oqM +ydK +vue +rzu +oqM +oqM +bql +hNc +klO +vVI +kFB +ygg +ygg +mXZ +dnQ +ftH +hrv +pbo +sZq +bGL +cOp +qHF +bYo +bpq +sZq +fCD +tew +tew +aQb +lBh +erl +erl +aqn +aqn +aqn +aqn +nCe +nCe +nCe +nCe +nCe +nCe +oub +mNw +mNw +vfC +bZQ +mNw +aqn +aqn +cSV +cSV +cSV +cSV +byq +cSV +cSV +cSV +cSV +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +pNa +pNa +pNa +pNa +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(133,1,1) = {" +wYa +qpk +qpk +bVN +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 +oum +oum +oum +oum +aNW +aNW +oum +aNW +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +nCe +nCe +twu +twu +twu +cxc +cei +nbV +grC +nus +nus +grC +eSr +uLq +jCi +eRF +xof +mCf +svR +vsL +rWK +xeL +qEU +duZ +qKS +cxc +nCe +yel +nCe +nCe +lJF +mdC +daO +ihC +pkX +fob +gHd +iwQ +aCh +jNy +swN +qwu +jEc +dKd +fio +wON +pHD +hWu +mSn +wmh +fNb +bAK +mxf +bZY +mPH +hCk +tCe +oOe +bxu +ugP +pRA +ugP +kiM +fId +jgs +qrK +uoO +dPB +eNB +hlM +pCv +bql +bql +oqM +osk +gNX +pOh +oqM +oqM +dOI +bql +vxx +bql +dOI +oqM +oqM +osk +wRu +pOh +oqM +bql +bql +hNc +hlM +xAq +pKF +fFD +sfZ +xuZ +sfZ +xuZ +xod +epo +cKX +msM +qzQ +msM +nwO +cJD +sZq +daW +sdh +tew +vLm +foE +erl +aqn +aqn +aqn +aqn +aqn +nCe +nCe +nCe +nCe +nCe +nCe +oub +mNw +jHl +cVX +kqh +mNw +aqn +cSV +cSV +cSV +cSV +ybo +kan +fME +cSV +cSV +cSV +cSV +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +pNa +pNa +pNa +pNa +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(134,1,1) = {" +wYa +qpk +qpk +bVN +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 +oum +oum +oum +oum +aNW +oum +oum +aNW +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +nCe +nCe +nCe +nCe +twu +twu +cei +nbV +nbV +nbV +nbV +nbV +eSr +eSr +eSr +eSr +eSr +kIq +kIq +vsL +vsL +vsL +vsL +vsL +qKS +nCe +nCe +yel +nCe +nCe +lJF +mdC +daO +drf +oGr +jQM +cpe +wDX +hEN +cgI +eJn +gdn +dSl +dSl +bac +dSl +dSl +cyo +eoN +eoN +bIC +ulO +trQ +fmm +tCM +vvG +myN +vvG +vGx +flI +rbM +nnu +wVy +rbM +miX +bzH +mQx +pCy +oWK +sag +bql +uYd +bql +bql +bPE +erT +cmb +cmb +cmb +cmb +pSK +hGr +jDW +ity +ity +ity +ity +buJ +bPE +bql +bql +kPY +hNc +oqM +cLb +heM +gNl +gNl +heM +gNl +heM +mhn +rje +sOm +msM +eSb +gmu +nwO +dpQ +sZq +bCx +sZq +sZq +ikt +vsu +erl +aqn +aqn +aqn +aqn +aqn +nCe +nCe +nCe +nCe +nCe +nCe +oub +mNw +hpn +vbd +ofm +mNw +cSV +cSV +cSV +gZF +gvJ +luo +ivx +qaU +gvJ +mwl +cSV +cSV +cSV +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +pNa +pNa +pNa +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(135,1,1) = {" +wYa +qpk +aHG +vZt +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 +oum +oum +oum +oum +oum +oum +oum +aNW +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +cei +nbV +nbV +nbV +nbV +nbV +nbV +nbV +nbV +nbV +nbV +nbV +nbV +nbV +nbV +nbV +nbV +nbV +qKS +nCe +nCe +yel +nCe +nCe +lJF +vtx +uTY +uTY +kUQ +kUQ +kUQ +toG +toG +blm +dlq +spy +dSl +eEs +hpy +afr +dSl +pPr +pPr +qEr +wXd +kKH +gQH +lVq +mxB +bzu +qpm +bnN +vDa +qlW +nEz +ttl +jXm +ovA +nFp +ieP +ykB +kbU +cqe +oWO +gCr +pEK +oaG +oaG +rLA +nto +psr +psr +psr +aWJ +jQJ +cUj +qWv +mrh +cco +wGe +cmb +aFo +rLA +oaG +oaG +oaG +oqM +rif +rif +heM +heM +heM +nZD +heM +heM +vgi +jSq +gGK +gtg +fRM +cow +kCC +rZG +sZq +nvK +stF +sZq +sZq +vsu +erl +aqn +aqn +aqn +aqn +aqn +aqn +aqn +aqn +nCe +nCe +wir +ivI +mNw +lMe +qVW +lwM +mNw +cSV +cSV +uWO +jrG +gAF +gAF +dHl +gAF +gAF +vNC +gAZ +cSV +cSV +cSV +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +pNa +pNa +pNa +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(136,1,1) = {" +wYa +qpk +bVN +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 +oum +oum +oum +oum +oum +oum +oum +aNW +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +cei +nbV +nbV +nbV +nbV +nbV +nbV +nbV +nbV +nbV +nbV +nbV +nbV +nbV +nbV +nbV +nbV +nbV +qKS +nCe +nCe +yel +nCe +nCe +wNJ +bBP +vJx +esD +vHh +gFs +pKH +jCP +toG +unu +dtt +afT +dSl +gwp +srP +lip +dSl +ooa +uUU +naO +bcD +qaK +lcr +gLp +fbq +wHY +rXb +kip +aVk +rOh +mge +ltu +qTC +ykX +tlN +dbY +rHb +kgP +jmY +dNE +pfh +oqM +sYq +oqM +sYq +oqM +sYq +oqM +sYq +imM +kWT +olc +kWT +pfh +bwR +wAe +bql +hNc +sYq +oqM +sYq +oqM +rif +rif +giV +heM +mny +mny +dnJ +mny +heM +mhn +rje +sOm +msM +obt +nmG +hzr +qSB +sZq +wRM +gfP +qiR +sZq +vsu +erl +aqn +aqn +aqn +aqn +aqn +aqn +aqn +aqn +aqn +aqn +oub +mXY +mNw +tQG +mNw +uNc +mNw +cSV +sLv +uwu +gAF +gAF +uzl +tsS +thU +gAF +gAF +fTv +sLv +cSV +cSV +cSV +cSV +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +pNa +pNa +pNa +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(137,1,1) = {" +wYa +qpk +bVN +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 +oum +oum +oum +oum +oum +oum +oum +oum +aNW +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +cei +nbV +nbV +nbV +nbV +nbV +nbV +nbV +nbV +nbV +nbV +nbV +nbV +nbV +nbV +nbV +nbV +nbV +qKS +nCe +nCe +yel +nCe +nCe +wNJ +bBP +vJx +esD +ecm +ycR +mOt +hUN +rCy +dCJ +fMR +wbH +dSl +qzv +ltg +hiw +dSl +mEz +qIj +eKt +mAl +skm +fXc +kpE +tHm +bag +msX +jRD +vGx +wQN +iVm +oOs +hzy +tMT +faD +dbY +rHb +kgP +hnS +ooJ +pfh +pfh +eNB +vob +eNB +pfh +eNB +sTC +eNB +evz +atU +vnh +atU +pfh +eNB +vob +eNB +pfh +eNB +sTC +eNB +pfh +rif +waA +qyR +gIv +kKR +eKb +jXJ +iIs +heM +mhn +gsb +cKX +msM +kLr +msM +cQm +vbG +qTb +bMz +wed +wKq +sZq +nfT +aQb +aqn +aqn +aqn +aqn +aqn +aqn +aqn +aqn +wzX +fIk +dbE +mXY +mXY +iZC +lZI +iMJ +hlJ +wDv +gvJ +oki +gAF +uzl +mQi +mbD +qpp +thU +gAF +dNC +gvJ +qFm +cSV +cSV +cSV +cSV +nCe +nCe +nCe +nCe +nCe +nCe +nCe +pNa +pNa +pNa +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(138,1,1) = {" +wYa +qpk +bVN +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 +oum +oum +oum +oum +oum +oum +oum +oum +aNW +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +cei +nbV +nbV +nbV +nbV +nbV +nbV +nbV +nbV +nbV +nbV +nbV +nbV +nbV +nbV +nbV +nbV +nbV +qKS +nCe +nCe +yel +nCe +nCe +wNJ +bBP +vJx +esD +dRW +ycR +vVA +uBt +toG +xAM +vEc +qwu +oXl +lBN +ocq +mje +dSl +bIC +bIC +bIC +ihE +eQB +qvY +vvG +fRp +mle +tVW +vuy +vDa +gAL +qaw +ohn +qTC +gKS +tlN +dbY +fCf +kgP +mnp +tGt +gEy +knh +tDp +bsq +tDp +bUS +tDp +tDp +tDp +qRK +xgg +mNd +xgg +xDK +tDp +bsq +tDp +ydf +tDp +tDp +ldm +xVc +shK +heM +tif +aDc +rjv +rjv +mct +rjv +oHR +iKi +eDd +sZq +bdd +xDx +eZr +ggK +kcw +sZq +lkG +srJ +eXu +sZq +ofa +eDM +idj +idj +idj +idj +idj +idj +idj +idj +pxh +pxh +pyv +mXY +mXY +qfd +bQb +nIl +vfB +cSV +eBU +xvE +nFn +nGz +nGz +nkt +nGz +wzr +iPA +oNp +dkB +sMq +euD +blo +cSV +cSV +nCe +nCe +nCe +nCe +nCe +nCe +nCe +pNa +pNa +pNa +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(139,1,1) = {" +wYa +qpk +bVN +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 +oum +oum +oum +oum +oum +oum +oum +oum +aNW +aNW +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +cei +nbV +nbV +nbV +nbV +nbV +nbV +nbV +nbV +nbV +nbV +nbV +nbV +nbV +nbV +nbV +nbV +nbV +qKS +nCe +nCe +yel +nCe +nCe +lJF +xEb +toG +uTY +uTY +xqW +exY +wfC +bpv +bZV +xha +ril +dSl +xVF +vCf +lVK +dSl +rEF +sGR +xYP +hGu +fgW +lYz +myN +bsr +nry +iwy +xST +vDa +kQr +bCL +vqe +wRI +nFp +nFp +igv +rnZ +cEE +fAE +gJI +sXc +ozx +vaT +dPw +hCv +hCv +hCv +bSR +jTW +jTW +hCv +eor +daE +kCU +jTW +dPw +hCv +hCv +hCv +bSR +mRF +cNt +sku +btt +oYk +ksC +rmd +rmd +rKh +fCx +ebH +tCN +aWN +yft +epS +dHA +wUX +yft +yft +yft +jbw +stF +kxd +sZq +nBo +aQb +eSN +eSN +eSN +eSN +eSN +eSN +eSN +eSN +fIk +fIk +dKJ +mXY +mXY +qxG +lQO +lmX +vbF +rdw +vlI +xNM +qEX +ppQ +cSV +cSV +cSV +nGz +hjp +fLT +eUh +sMq +tkf +hMo +cSV +cSV +nCe +nCe +nCe +nCe +nCe +nCe +nCe +pNa +pNa +pNa +pNa +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(140,1,1) = {" +wYa +qpk +bVN +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 +oum +oum +oum +oum +oum +oum +oum +aNW +aNW +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +cei +nbV +nbV +nbV +nbV +nbV +nbV +nbV +nbV +nbV +nbV +nbV +nbV +nbV +nbV +nbV +nbV +nbV +qKS +nCe +nCe +yel +nCe +nCe +lJF +mdC +bhB +bhB +uTY +uTY +uTY +uTY +uTY +vVN +mQy +vVN +hfX +dSl +dSl +dSl +dSl +hoR +gQG +byd +tAm +uvN +eLh +oUr +oUr +oUr +oUr +oUr +nFp +nFp +nFp +nFp +nFp +nFp +hnS +kgP +kgP +kgP +mnp +tGt +gEy +knp +kAo +bIq +lRd +kNd +iuI +ghl +lex +lex +lex +nIE +lex +wlb +ilU +ilU +ilU +ilU +ilU +xJB +pPS +usl +nyc +heM +tJW +heM +eBl +heM +mLm +iWL +gda +wxu +epS +uJi +tzv +asW +vSV +sQf +iWb +yft +jbw +stF +fjV +sZq +nBo +aQb +aqn +aqn +aqn +aqn +aqn +aqn +aqn +aqn +wzX +fIk +rYZ +kDr +qbK +htt +ttU +aZL +iVb +cSV +uod +ekF +sqN +nGz +nGz +yce +nGz +vss +lLA +oMg +oYI +sMq +aRo +jnC +cSV +cSV +nCe +nCe +nCe +nCe +nCe +nCe +pNa +pNa +pNa +pNa +pNa +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +wYa +"} +(141,1,1) = {" +wYa +qpk +oYl +aEE +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 +oum +oum +oum +oum +oum +oum +aNW +aNW +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +cei +nbV +nbV +nbV +nbV +nbV +nbV +nbV +nbV +nbV +nbV +nbV +nbV +nbV +nbV +nbV +nbV +nbV +qKS +nCe +nCe +yel +nCe +nCe +lJF +pHu +lda +lda +vsn +oDa +rdq +img +sCB +eTX +vYV +eTX +hfX +rMr +psl +qmI +dSl +ulR +pXL +mnY +tAm +lcA +tGb +caA +nLw +nLw +hWz +nLw +gPq +asP +asP +dfb +nLw +mEg +wNW +hEY +evA +hEY +jjJ +aFV +vgD +vgD +msY +dUE +iSh +miM +moL +gbK +hBh +duN +fDF +iDC +fDF +sHk +pxm +pxm +pxm +pxm +pxm +ozQ +jkk +xOU +wvm +wnl +eCt +wnl +wnl +ppO +wnl +yft +lzD +wUY +iaD +lGd +nIi +xny +tNU +uGu +vdo +yft +oen +gwf +sZq +sZq +cVa +erl +aqn +aqn +aqn +aqn +aqn +aqn +aqn +aqn +aqn +aqn +pto +mXY +mXY +iZC +lZI +xWo +ssk +qFm +gvJ +wRP +fRI +vTn +qyu +wmM +kbd +cXQ +fRI +hxo +gvJ +wDv +cSV +cSV +cSV +cSV +nCe +nCe +nCe +nCe +nCe +nCe +pNa +pNa +pNa +pNa +pNa +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +wYa +"} +(142,1,1) = {" +wYa +qpk +qpk +bVN +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 +oum +oum +oum +oum +oum +oum +aNW +aNW +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +nCe +nCe +nCe +nCe +nCe +cxc +eSo +vDJ +vDJ +vDJ +vDJ +vDJ +vDJ +vDJ +vDJ +vDJ +vDJ +vDJ +vDJ +vDJ +vDJ +vDJ +vDJ +vDJ +rkW +cxc +nCe +sLu +nCe +nCe +lJF +lJF +jXZ +jXZ +hzh +uvB +qAP +leS +ikQ +dVU +jZV +fFw +hfX +meH +rrj +bDG +hfX +hSr +kjy +tAm +tAm +nLM +eav +uVS +nLw +nLw +uNv +hBW +qhE +rhB +rhB +nck +tgI +tgI +tgI +nCq +aDA +nCq +ljP +tgI +flZ +oSo +gAK +dGA +fRF +fRF +hcg +ulE +fRF +fRF +tPU +uAp +gCh +gOk +vox +dPc +cue +dPc +vox +vox +vJD +nMJ +sGm +eOE +sFk +syQ +rVw +emF +tqN +yft +ujE +jlN +oGU +ils +bHd +wxQ +xNN +jQl +jgB +yft +bCx +iex +sZq +tqK +vhl +erl +aqn +aqn +aqn +aqn +aqn +aqn +aqn +aqn +aqn +aqn +aqn +mXY +sVo +qkN +sVo +xWK +sVo +cSV +sLv +bDH +gAF +gAF +hll +tsS +jLB +gAF +gAF +kwc +sLv +cSV +cSV +cSV +cSV +nCe +nCe +nCe +nCe +nCe +nCe +nCe +pNa +pNa +pNa +pNa +pNa +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +wYa +"} +(143,1,1) = {" +wYa +qpk +qpk +bVN +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 +oum +oum +oum +oum +oum +oum +aNW +aNW +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nwG +kmM +twu +twu +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +cac +nwG +nCe +yel +nCe +nCe +nCe +lJF +lJF +lJF +lJF +wNJ +wNJ +hIW +lJF +iVF +nLw +oBQ +hfX +hfX +hfX +hfX +hfX +mzq +oIf +kXu +hjO +lvL +jZP +jZP +jZP +jZP +jyf +jyf +jyf +kMf +jyf +jyf +tgI +kPM +tJj +rBW +rBW +rBW +uSO +tgI +hAV +mCR +lQT +xgg +fRF +mOM +mOM +mOM +qbj +fRF +lQW +ekU +bAb +nlY +lUw +tcy +wQE +tcy +sfv +vox +lEt +xzZ +sGm +xZb +eKF +syQ +syQ +syQ +syQ +gtX +eqs +xfU +oGU +fzM +fzM +fzM +guU +vPi +qqX +yft +dxu +pzZ +dnx +dKa +cVa +erl +aqn +aqn +aqn +aqn +aqn +nCe +nCe +nCe +nCe +nCe +aqn +aqn +sVo +mcL +hEX +hzO +sVo +cSV +cSV +nMf +xqk +gAF +gAF +dHl +gAF +gAF +uAY +gqA +cSV +cSV +cSV +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +pNa +pNa +pNa +pNa +pNa +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +wYa +"} +(144,1,1) = {" +wYa +qpk +qpk +bVN +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 +oum +oum +oum +oum +oum +oum +aNW +aNW +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +twu +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +aqn +kvK +iLI +iLI +nLw +ubD +wTW +wTW +wTW +wTW +atd +wDs +jdY +uVS +nLw +jZP +jZP +oRs +cJc +poz +tOh +gUH +lQo +kOT +hMB +uLM +lIs +mqd +muD +cdW +cBd +wnM +aCw +tgI +hAV +mCR +gLQ +lMv +fRF +mOM +mOM +mOM +mOM +fRF +nnh +niA +vhq +gDE +mdx +xOD +lBP +nLp +khd +vox +lEt +xzZ +sGm +rKV +eKF +syQ +syQ +syQ +ida +epS +gZg +eTg +scm +scm +scm +rRt +jhl +kNS +xZB +yft +uCo +oEi +tew +tew +efj +erl +erl +aqn +aqn +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +aqn +sVo +sPf +tOK +mSi +sVo +cSV +cSV +cSV +wkW +gvJ +fzX +oEz +aHl +gvJ +bnH +cSV +cSV +cSV +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +pNa +pNa +pNa +pNa +pNa +pNa +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +wYa +"} +(145,1,1) = {" +wYa +qpk +qpk +bVN +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 +oum +oum +oum +oum +oum +oum +oum +aNW +aNW +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +aqn +aqn +aqn +iLI +iLI +iLI +iLI +iLI +iLI +iLI +tTa +iQZ +dyH +caA +caA +jZP +xKl +gTb +bZp +poz +hUw +ghX +eph +iBe +icT +tdi +jiV +qDq +eNq +eYr +qBy +ptC +ruC +tgI +oTc +wSd +oTc +oTc +fRF +mOM +mOM +mOM +mOM +fRF +nxZ +wEc +ucF +wRL +dEr +rRx +uYn +cwr +lhQ +vox +qbC +oFQ +sGm +opj +eKF +syQ +syQ +cqi +biN +epS +nWU +tiy +wIC +xHf +gIc +nyb +yft +kOR +yft +yft +aHL +pzZ +tew +xtG +axx +fAm +erl +aqn +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +sVo +fLf +tOT +fKS +sVo +aqn +cSV +cSV +cSV +cSV +txa +cRm +xCx +cSV +cSV +cSV +cSV +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +pNa +pNa +pNa +pNa +pNa +pNa +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +wYa +"} +(146,1,1) = {" +wYa +qpk +qpk +bVN +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 +oum +oum +oum +oum +oum +oum +aNW +aNW +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +twu +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +aqn +aqn +aqn +aqn +eSN +fIk +fIk +fIk +iLI +vFq +ezk +arT +asC +cVI +jZP +maD +hUy +pYq +rNY +lZp +jnY +rAB +xhR +icT +xDi +hiL +fCP +eHI +xKj +aEn +wnM +pZt +tgI +sQb +poU +hxJ +mMg +fRF +mOM +mOM +mOM +mOM +fRF +eSv +udU +bKl +kpx +iVH +arp +mQI +oMn +nJJ +vox +fTi +pqY +sGm +kFO +lHe +uCd +awS +pdn +smL +yft +jVh +tyP +rfo +yft +yft +yft +yft +eJW +mtU +tJS +phS +tJS +dCe +twb +luk +qaq +erl +aqn +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +sVo +sVo +lIJ +oIb +sVo +aqn +aqn +cSV +cSV +cSV +cSV +mTi +cSV +cSV +cSV +cSV +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +pNa +pNa +pNa +pNa +pNa +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +wYa +"} +(147,1,1) = {" +wYa +qpk +qpk +bVN +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 +oum +oum +oum +oum +oum +oum +aNW +aNW +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +twu +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +aqn +aqn +aqn +wzX +fIk +fIk +fIk +iLI +nLw +tTa +caA +sEd +vYM +jZP +xXF +vlK +oam +poz +wXx +iLa +orb +jtq +swk +acH +ygJ +qLK +owJ +fBS +pun +vkP +icz +tgI +sQb +vJR +btp +hnQ +fRF +fRF +fRF +fRF +fRF +fRF +qkc +faV +faV +cOO +lgK +miV +nTG +iTu +czN +vox +lEt +xzZ +sGm +sGm +sGm +sGm +gvD +sGm +sGm +yft +yft +yft +yft +yft +xCu +ymd +obx +bot +efl +toH +bSs +jdw +tew +gww +aug +erl +erl +aqn +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +sVo +sVo +sVo +sVo +aqn +aqn +aqn +aqn +cSV +cSV +cSV +cSV +cSV +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +pNa +pNa +pNa +pNa +pNa +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +wYa +"} +(148,1,1) = {" +wYa +qpk +qpk +bVN +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 +oum +oum +oum +oum +oum +oum +aNW +aNW +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +xBq +sne +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +aqn +aqn +eSN +fIk +fIk +iLI +iLI +gPq +eSX +vvS +vvS +vvS +jZP +poz +yfn +poz +poz +qhE +hCr +rgP +tTS +dyN +bmf +laO +hPW +eez +wCc +hPW +wCc +tgI +tgI +vvS +vvS +nJA +mam +mam +mam +bef +dBs +rRO +bIc +gBL +pfA +pfA +bDy +cZQ +bDy +jcU +utV +xLg +wYQ +hem +taZ +hAB +gbA +hgs +paD +hgs +hgs +hgs +hgs +nwe +nwe +nwe +frK +txT +nnX +pGM +dtl +erl +aQb +hdo +aQb +erl +erl +erl +erl +aqn +aqn +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +pNa +pNa +pNa +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(149,1,1) = {" +wYa +qpk +qpk +oYl +gAH +aEE +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 +oum +oum +oum +oum +oum +oum +aNW +aNW +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +twu +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +xBq +xpd +jIh +xpd +sne +nCe +nCe +nCe +nCe +nCe +nCe +aqn +aqn +eSN +fIk +fIk +yiu +nfl +sEd +kYA +eEB +sUR +vei +tqE +jgt +nVk +hJv +lkn +hnT +xfl +fWO +oyr +aPr +dbt +njz +oyr +mZa +bQr +oKg +bQr +uFp +ush +sHJ +vvS +vvS +vvS +krN +gRF +wmF +dBs +muC +kGK +iWy +cIJ +qzX +vyi +bcq +cZQ +rxt +rGF +ucw +kaD +bsy +vBD +vGB +vJD +oRa +oCs +rue +qMg +aBU +vYx +xCj +cBo +lEt +tew +xor +spo +erl +erl +erl +aqn +gmr +aqn +aqn +aqn +aqn +aqn +aqn +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +pNa +pNa +pNa +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(150,1,1) = {" +wYa +qpk +qpk +qpk +qpk +bVN +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 +oum +oum +oum +oum +oum +aNW +aNW +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +xBq +sne +nCe +nCe +nCe +nCe +nCe +aqn +aqn +eSN +fIk +fIk +yiu +dIZ +sEd +jtd +vvS +uCe +aVQ +gpd +otw +kHU +tWF +eqn +xNB +xdA +tmx +hzg +jVA +uSf +kmw +fom +eiB +wnv +wAy +wnv +jwF +fdd +pfj +lyK +lyK +exG +jtd +aWM +aeh +dBs +dBs +izD +kzh +yke +jLc +qJk +ugr +iqx +ujt +ogh +yjH +ben +ben +qTk +ben +ben +qHv +qHv +qHv +qHv +qHv +qHv +qHv +qHv +qHv +qHv +qHv +qHv +qHv +aqn +aqn +aqn +gmr +aqn +aqn +aqn +aqn +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +pNa +pNa +pNa +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(151,1,1) = {" +wYa +qpk +qpk +qpk +qpk +bVN +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 +oum +oum +oum +oum +oum +oum +aNW +aNW +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +twu +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +aqn +eSN +fIk +fIk +iLI +iLI +iLI +vvS +uuk +bno +gPr +gPr +wMa +gPr +gPr +tUY +pyA +avb +tUY +bhG +eml +aFZ +kNK +qmP +kNK +mLF +kNK +wga +mcT +liB +bbH +wRs +tIX +vvS +jtd +aWM +lWt +apr +dBs +otg +iEh +nic +mUg +vgs +ekV +eJU +rxO +dfk +lsu +dlE +sUN +drL +cNX +dlE +qsp +iaZ +fXH +utE +jOo +uPP +qIX +moA +hqu +tMQ +tMQ +tMQ +pMA +aqn +wyB +wyB +ncx +wyB +wyB +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +pNa +pNa +pNa +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(152,1,1) = {" +wYa +qpk +qpk +qpk +qpk +bVN +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 +oum +oum +oum +oum +oum +oum +aNW +aNW +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +twu +twu +mSM +mSM +twu +twu +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +aqn +wzX +eSN +fIk +fIk +fIk +fIk +fIk +uuk +gci +qhP +hDr +kcy +aop +tyH +ptQ +tMM +jIc +fny +nWG +gVb +aFZ +xtM +aql +pnH +mUb +tnh +kNK +bLZ +moa +dwo +vvS +vvS +vvS +vvS +vvS +vvJ +apr +hHn +ipU +rfi +fsU +nMs +rfi +uEX +cZQ +hiJ +vNt +kxM +dlE +gWx +eup +prX +kiY +mQH +dti +xSA +cQw +leJ +kkA +nEL +neJ +pnE +aNB +rej +pHJ +nik +mQh +lyT +pHa +hDD +dDa +wyB +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +pNa +pNa +pNa +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +wYa +"} +(153,1,1) = {" +wYa +qpk +qpk +qpk +aHG +vZt +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 +oum +oum +oum +oum +oum +oum +aNW +aNW +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +twu +mSM +twu +twu +twu +twu +mSM +twu +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +aqn +aqn +eSN +eSN +eSN +eSN +fIk +fIk +uuk +bLu +fmV +lWk +vla +eTC +aop +wRR +urw +mSX +xRz +xQV +prD +aFZ +ack +kVO +qYf +uUq +mgM +mLF +mcT +liB +vvS +pOC +pOC +pOC +fxr +vvS +iro +bDy +dBs +cTl +ddt +lDN +nyF +hJD +fFd +cZQ +aJF +byE +uRN +dlE +xWe +gxe +oGY +dlE +fSW +bPS +oNb +fYJ +oNb +ncQ +nEb +uBP +pXC +xSY +wQv +tHG +wUu +mJO +pfO +klv +hDD +iHa +wyB +nCe +nCe +nCe +nCe +nCe +nCe +gTx +jIh +xpd +xpd +xpd +xpd +xpd +xpd +xpd +xpd +xpd +jIh +xpd +xpd +xpd +xpd +xpd +xpd +xpd +xpd +xpd +jIh +xpd +xpd +xpd +xpd +xpd +xpd +xpd +xpd +xpd +jIh +xpd +xpd +xpd +xnL +nCe +pNa +pNa +pNa +pNa +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(154,1,1) = {" +wYa +qpk +qpk +qpk +bVN +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 +oum +oum +oum +oum +oum +oum +oum +oum +aNW +aNW +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +mSM +twu +twu +twu +twu +twu +twu +twu +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +nCe +aqn +aqn +eSN +eSN +eSN +eSN +eSN +uwc +xQi +hSf +fjg +mWx +xSu +ixa +oeb +tWH +pmZ +fIL +tWH +qfG +aFZ +tCj +owZ +edA +ekq +kOV +kNK +crj +iTi +gMG +pOC +pOC +pOC +pOC +vvS +hSO +bpJ +swT +nnq +swT +swT +bNg +swT +oBn +swT +dlI +bgp +bOi +dlE +dlE +dlE +dlE +rPP +sHN +xba +tMQ +htg +izq +fNL +tMQ +baq +tMQ +tMQ +xpZ +tMa +jty +aqn +wyB +wyB +ncx +wyB +wyB +nCe +nCe +nCe +nCe +nCe +gTx +nME +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +pNa +pNa +pNa +pNa +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(155,1,1) = {" +wYa +qpk +qpk +qpk +bVN +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 +oum +oum +oum +oum +oum +oum +oum +oum +aNW +aNW +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +twu +mSM +twu +twu +twu +twu +twu +twu +mSM +twu +twu +twu +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +aqn +aqn +aqn +aqn +aqn +aqn +lpV +aQi +wXB +mVZ +ciO +xSu +ugE +wRR +tWH +jOp +uXb +jtu +nBA +aFZ +fIT +mmZ +swe +igt +emg +iQt +jbX +qae +nrL +pOC +pOC +pOC +pOC +uIk +xiD +gwH +swT +ukS +lrZ +ybS +fcm +fis +eAc +swT +rnK +qcf +woy +fIH +eet +wlT +agk +juK +qcM +fBM +dVd +tKb +esn +dRK +wlT +isY +qeP +dVd +dVd +rcp +kFs +qqL +aqn +aqn +gmr +aqn +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +pNa +pNa +pNa +pNa +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(156,1,1) = {" +wYa +qpk +qpk +qpk +bVN +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 +oum +oum +oum +oum +oum +oum +oum +oum +aNW +aNW +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +mSM +twu +twu +twu +twu +twu +twu +mSM +mSM +twu +mSM +twu +twu +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +sLu +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +aqn +aqn +aqn +aqn +aqn +lpV +uPI +hSf +aIC +ohK +xSu +lnS +aVK +wLT +qKj +cZg +uLv +djS +aFZ +bkP +kXl +uum +sFf +ehV +iQt +sPn +pZo +vvS +pOC +pOC +pOC +pOC +vvS +htw +iQk +swT +wJW +sqj +ebk +cte +fHI +eAc +swT +gsw +eGc +mBi +xKP +hDS +vNY +dLs +xCo +hxl +wns +xCo +nGB +xCo +euA +xCo +lvt +rCU +mIc +vKc +tMa +oTg +aqn +wyB +wyB +ncx +wyB +wyB +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +pNa +pNa +pNa +pNa +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +wYa +"} +(157,1,1) = {" +wYa +qpk +qpk +qpk +bVN +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 +oum +oum +oum +oum +oum +oum +oum +oum +aNW +aNW +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +twu +twu +twu +twu +twu +mSM +twu +twu +twu +mSM +twu +twu +twu +twu +mSM +twu +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +aqn +aqn +aqn +qtl +uPI +fmV +aDU +eKX +fmV +mOy +tUY +rzl +tUY +tUY +tUY +eVu +aFZ +qDx +qVj +tBX +ekq +kOV +jij +xPr +clv +vvS +vvS +vvS +vvS +vvS +vvS +yag +iPu +swT +wJW +wMd +uVi +qWT +eao +omM +swT +sSZ +gHX +dpS +mfm +tcT +pkr +pkr +pkr +iWu +tMQ +cvZ +jFI +xSY +nKF +tMa +mHs +eDZ +vXJ +xay +sBy +fdC +qoa +hxj +oVa +miB +mGK +wyB +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +pNa +pNa +pNa +pNa +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(158,1,1) = {" +wYa +qpk +qpk +qpk +bVN +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 +oum +oum +oum +oum +oum +oum +oum +oum +aNW +aNW +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +nCe +nCe +nCe +nCe +nCe +twu +twu +twu +twu +twu +mSM +twu +twu +mSM +twu +twu +twu +mSM +twu +twu +twu +mSM +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +aqn +agl +sbu +fmV +lQz +jyM +oLb +uNW +hPp +qWO +dDm +rEh +gdb +cXj +iQt +qfE +nSu +bel +gsu +mgM +gWQ +mcT +liB +lyK +owK +gNx +wPT +slB +bOG +owK +cJA +swT +lnM +lSY +uVi +qWT +phv +bZP +swT +jww +eAR +dFG +dFG +mVA +tMQ +okW +tMQ +uCT +tMa +dXF +kFF +flJ +fgS +vnb +baq +cqz +nCN +xCo +mZp +wAz +qoa +hxj +woN +miB +trK +wyB +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +pNa +pNa +pNa +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +wYa +"} +(159,1,1) = {" +wYa +qpk +qpk +aHG +vZt +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 +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 +xdu +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +nCe +nCe +nCe +nCe +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +uuk +kSe +fKH +lUt +tCy +ioz +noR +wvH +xND +aXH +oeY +ons +rjq +iQt +veP +jGI +vIK +mUb +tnh +jij +pAP +aUL +wnb +fEk +uDF +dff +rRN +bsN +fmd +gUP +swT +upd +cQr +jRp +fLo +vhz +jkl +swT +lHX +dPG +mWr +juT +lqE +tMQ +bIg +tMQ +uCh +tMQ +uni +sNd +dJy +fgS +utb +baq +uCh +efa +tMQ +suu +pMA +nCe +wyB +wyB +ncx +wyB +wyB +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +vwy +vwy +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +wYa +"} +(160,1,1) = {" +wYa +qpk +qpk +bVN +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 +oum +oum +oum +oum +oum +oum +aNW +aNW +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +nCe +nCe +nCe +twu +twu +twu +twu +twu +twu +twu +mSM +mSM +mSM +twu +twu +twu +mSM +twu +twu +twu +twu +twu +twu +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +rut +hET +hET +hET +uZl +pIi +vMA +hPp +rMJ +foF +pWa +fAk +jAk +xoo +xoo +dHz +jPI +fdl +jPI +xoo +aeD +liB +lyK +xGi +jFP +fyx +lyE +bOG +gqp +acv +swT +bKi +evO +utH +toW +leZ +aDX +swT +nMS +gOc +tMq +bfG +tMQ +tMQ +kAU +tMQ +eQL +iTp +dXF +qOT +ylO +kqJ +geL +baq +uCh +efa +tMQ +bJZ +qHv +nCe +aqn +aqn +gmr +nCe +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +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 +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +wYa +"} +(161,1,1) = {" +wYa +qpk +qpk +bVN +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 +oum +oum +oum +oum +oum +oum +aNW +aNW +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +nCe +twu +twu +mSM +twu +twu +mSM +mSM +twu +mSM +mSM +mSM +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +rut +oTs +cUh +qFo +gMD +tjZ +drF +tmC +wkY +xss +wkY +wkY +wkY +xoo +eQV +rPT +vlF +rhy +kwE +rRE +cia +liB +vbM +xGi +xGi +xGi +xGi +bOG +xGi +qDs +wYQ +wYQ +wYQ +wYQ +wYQ +wYQ +wYQ +sik +owp +lQi +dUv +bIo +wWg +wWg +exA +fGe +wFS +wCW +xBS +bIB +dFG +rEs +uKX +cFR +lFZ +ull +dQk +tMQ +pMA +nCe +wyB +wyB +ncx +wyB +wyB +nCe +nCe +nCe +nCe +nCe +sLu +nCe +nCe +nCe +nCe +nCe +nCe +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 +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(162,1,1) = {" +wYa +qpk +qpk +bVN +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 +oum +oum +oum +oum +oum +oum +aNW +aNW +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +nCe +mSM +mSM +twu +twu +twu +twu +twu +twu +mSM +mSM +twu +mSM +twu +twu +twu +twu +twu +twu +mSM +twu +twu +twu +twu +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +obV +wtQ +qTK +cat +lrq +bqZ +aop +wkY +mpN +oZm +piD +hOX +lLM +xoo +ikV +gnA +xWg +hAU +vrG +wnm +dBO +doq +vbM +gRb +oVD +ePb +qpK +mFU +qrd +wOs +wYQ +ktI +ktI +ktI +ktI +ktI +wYQ +mUo +ouC +url +mfm +apV +pwx +tMQ +aTM +tMQ +uCT +tMa +ybs +ibk +tMQ +tMQ +tMQ +baq +cZj +iSK +isY +fVi +rpV +rJz +nyj +xLi +mxT +itw +wyB +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +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 +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +wYa +"} +(163,1,1) = {" +wYa +qpk +qpk +bVN +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 +oum +oum +oum +oum +oum +oum +aNW +aNW +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +nCe +mSM +mSM +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +mSM +twu +twu +twu +twu +mSM +twu +twu +mSM +twu +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +chf +jLM +jXu +diu +gMD +pcb +noR +srv +iPo +muO +tgN +wkY +wkY +xoo +sCl +rPK +tWD +mYo +oqL +msW +vEx +nFJ +vbM +pay +hRo +wZR +lFD +mFU +qyi +ulf +wYQ +ktI +ktI +ktI +ktI +ktI +tzK +flp +bQg +emw +dFG +dFG +hme +tMQ +abA +tMQ +uCh +tMQ +fNL +ivo +jbg +tMQ +tMQ +baq +uCh +pyB +uKd +xgD +ezd +mQh +lyT +eyu +mxT +hYx +wyB +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +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 +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +wYa +"} +(164,1,1) = {" +wYa +qpk +qpk +bVN +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 +oum +oum +oum +oum +oum +oum +aNW +aNW +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +nCe +mSM +mSM +mSM +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +mSM +twu +twu +mSM +twu +nCe +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +kNO +aVj +whv +rSp +gMD +pli +sBt +wkY +urx +bZS +dwr +gjw +czl +xoo +bYH +fmb +qPk +eiZ +grj +tyj +dcz +cAl +lLX +gfY +vdR +cLm +rXg +mFU +sNB +ezP +wYQ +ktI +ktI +ktI +ktI +ktI +dmu +viv +nRs +wfn +vyB +ukz +qjo +aRp +iTp +tLN +hjG +tMQ +fNL +wSX +gDD +tMQ +tMQ +baq +cqz +baq +xpZ +mRf +vRD +nCe +wyB +wyB +ncx +wyB +wyB +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +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 +iGM +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +wYa +"} +(165,1,1) = {" +wYa +qpk +qpk +bVN +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 +oum +oum +oum +oum +oum +oum +aNW +aNW +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +nCe +mSM +mSM +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +mSM +nCe +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +dpw +svh +vPD +lsh +rut +nUw +uuk +vYO +wZA +jQE +wzz +wkY +wkY +xoo +xoo +blP +xoo +xoo +xoo +mMm +aaT +qkk +xYI +lYs +bAi +qoF +dpJ +mFU +sNB +ezP +wYQ +ktI +ktI +ktI +ktI +ktI +eCO +rNB +kvY +wfn +vyB +ylX +smk +uYR +xSY +mzT +wQv +xSY +ylO +pfr +bAe +tMQ +tMQ +baq +uCh +baq +tMQ +tMQ +qHv +nCe +nCe +nCe +gmr +aqn +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +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 +iGM +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +wYa +"} +(166,1,1) = {" +wYa +qpk +qpk +bVN +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 +oum +oum +oum +oum +oum +aNW +aNW +aNW +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +twu +mSM +mSM +twu +twu +mSM +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +mSM +nCe +nCe +nCe +nCe +nCe +nCe +nCe +sLu +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +rut +rut +rut +rut +rut +vSu +hyZ +vYO +wkY +wkY +wkY +wkY +mYE +oIK +qzj +lSV +nNG +xiX +bMX +rYk +pez +hHU +vbM +lZO +rLV +rLV +iak +mFU +sNB +iDu +wYQ +ktI +ktI +ktI +ktI +ktI +wYQ +lsu +uFg +kgL +vyB +pUh +kWC +ujv +tMa +rPa +tMQ +tMQ +tMQ +rJl +ltA +tMQ +tMQ +baq +uCh +baq +tMQ +tMQ +pMA +nCe +wyB +wyB +ncx +wyB +wyB +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +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 +iGM +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(167,1,1) = {" +wYa +qpk +qpk +bVN +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 +oum +oum +oum +oum +oum +oum +aNW +aNW +aNW +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +nCe +mSM +twu +twu +twu +mSM +twu +twu +twu +twu +twu +twu +twu +twu +twu +mSM +twu +twu +twu +twu +mSM +twu +twu +twu +twu +twu +nCe +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +wyf +uaT +fgg +asQ +rzv +jlo +gKX +eCy +sPx +fVP +fVP +vQT +fVP +fVP +fVP +hFV +rSi +whz +fVP +rYk +vuv +swl +vbM +vbM +oUm +mCa +bFw +mFU +sNB +dmr +wYQ +wYQ +wYQ +wYQ +wYQ +wYQ +wYQ +lXO +pxZ +qKr +nQp +xTj +qiK +tMQ +khG +wXA +dVd +wlT +dVd +ftc +osB +dVd +dVd +mNq +odk +isY +wlT +qFL +rpV +rJz +nyj +ybv +nqE +kwF +wyB +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +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 +iGM +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +qzz +wYa +"} +(168,1,1) = {" +wYa +qpk +qpk +bVN +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 +oum +oum +oum +oum +oum +oum +aNW +aNW +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +nCe +mSM +mSM +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +mSM +twu +nCe +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +qFe +oKx +mYc +asQ +rZv +xmF +cQJ +eCy +tOC +vZO +vLa +uQm +vLa +nHz +vLa +aUJ +tlW +dgw +qrb +lZh +pzq +oIs +oDG +vbM +kRJ +lDr +pxp +mFU +qio +cJR +jyJ +vxR +lMj +qmG +lQK +wHy +eSh +hny +lGV +nKj +xIn +mfm +vfn +tMQ +uCh +tMQ +tMQ +tMQ +aWS +srZ +ewa +aNB +aNB +mHs +jRQ +uKd +aNB +rfn +ezd +mQh +lyT +eLn +nqE +fEO +wyB +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +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 +iGM +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +qzz +wYa +"} +(169,1,1) = {" +wYa +qpk +qpk +bVN +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 +oum +oum +oum +oum +oum +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 +xdu +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +nCe +twu +mSM +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +mSM +twu +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +qFe +ovl +adA +iGD +lrA +mEG +nTk +eCy +tOC +vLa +hkX +ozd +cwR +cxl +cxl +eCk +wsn +dvA +uZt +rYk +tGu +hle +iJJ +dny +rRA +kCu +wPl +mFU +xzw +eYi +jyJ +miy +jLC +dRY +eHW +lJN +aBW +xLg +gpN +stc +lsu +qsg +sDz +xEQ +cqz +tMQ +tMQ +sDz +nip +uCh +jhm +tMQ +sDz +qLe +cqz +tMQ +xpZ +isu +vRD +nCe +wyB +wyB +ncx +wyB +wyB +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +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 +iGM +iGM +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +qzz +qzz +wYa +"} +(170,1,1) = {" +wYa +qpk +qpk +oYl +aEE +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 +oum +oum +oum +oum +oum +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 +xdu +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +nCe +nCe +mSM +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +mSM +twu +twu +mSM +twu +twu +twu +twu +mSM +twu +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +wyf +cJQ +plv +hCV +eOu +tSD +vjp +eCy +tOC +vZO +vLa +cMl +vLa +nHz +vLa +aUJ +tlW +uTC +fsk +rYk +lyK +eEj +uCe +mFU +mFU +mFU +mFU +mFU +xzL +jyJ +jyJ +prS +rwH +tmJ +eHW +xOh +xOh +xLg +nLW +nAV +lsu +mfm +gjp +wVK +vae +mnX +cBX +aSc +vJO +wdw +fOW +czd +udo +xYB +tTR +tMQ +tMQ +qHv +qHv +nCe +nCe +nCe +tjO +nCe +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +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 +iGM +iGM +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +qzz +qzz +wYa +"} +(171,1,1) = {" +wYa +qpk +qpk +qpk +bVN +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +aNW +aNW +oum +oum +oum +oum +oum +oum +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 +xdu +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +nCe +nCe +mSM +twu +twu +twu +twu +mSM +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +mSM +twu +twu +mSM +twu +twu +twu +twu +mSM +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +wyf +wyf +lsR +qTo +wyf +pkO +pkO +eCy +eCy +pqe +uko +pqe +mVf +pqe +nOh +lRE +sBI +toJ +maC +eCy +vvS +mlg +vvS +vvS +oxb +eOB +rLy +iIT +goq +urW +rZW +sXx +hdD +wKC +eHW +eHW +eHW +lXO +bsA +bMs +lXO +qHv +dXT +ppu +nLN +nuy +qHv +dXT +ppu +nLN +nuy +qHv +dXT +ppu +nLN +nuy +qHv +qHv +nCe +nCe +nCe +nCe +tjO +nCe +nCe +nCe +nCe +nCe +nCe +nCe +sLu +nCe +nCe +nCe +nCe +nCe +nCe +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 +iGM +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +qzz +qzz +wYa +"} +(172,1,1) = {" +wYa +qpk +qpk +qpk +bVN +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +aNW +aNW +oum +oum +oum +oum +oum +oum +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 +xdu +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +nCe +nCe +twu +mSM +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +mSM +twu +twu +twu +mSM +twu +twu +mSM +mSM +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +eTc +mka +kZe +aqn +eSN +fIk +fIk +eCy +eCy +eCy +pbi +cdK +cdK +pbi +eCy +hiG +eCy +eCy +eCy +hag +ekI +ipL +reM +fzY +lfF +lQC +rIQ +muj +iNR +pEt +tcI +iFl +kDA +hLW +kHQ +hRB +baX +poV +ecV +oHf +aqn +aqn +vXq +ykD +nCe +nCe +nCe +vXq +ykD +nCe +nCe +nCe +vXq +ykD +nCe +nCe +nCe +nCe +nCe +nCe +nCe +tjO +nCe +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +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 +iGM +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +qzz +qzz +wYa +"} +(173,1,1) = {" +wYa +qpk +qpk +qpk +bVN +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +aNW +aNW +aNW +oum +oum +oum +oum +oum +oum +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 +xdu +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +nCe +nCe +nCe +mSM +twu +twu +twu +twu +twu +twu +twu +twu +twu +mSM +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +mSM +mSM +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +eTc +cVc +ugC +aqn +wzX +eSN +fIk +fIk +fIk +fIk +fIk +fIk +fIk +fIk +fIk +fIk +fIk +fIk +rYh +fbh +oWy +txo +hzL +iJs +byb +mLd +cKU +tVA +kYb +jyJ +oeu +gDR +dBJ +phY +tlJ +ret +oiv +woY +oOy +oHf +aqn +wyB +luz +rLw +wyB +aqn +wyB +luz +rLw +wyB +nCe +wyB +luz +rLw +wyB +nCe +nCe +nCe +nCe +nCe +nCe +tjO +nCe +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +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 +iGM +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +qzz +qzz +wYa +"} +(174,1,1) = {" +wYa +qpk +qpk +qpk +bVN +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +aNW +aNW +oum +oum +oum +oum +oum +oum +oum +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 +xdu +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +nCe +nCe +nCe +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +mSM +mSM +mSM +mSM +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +wyf +iMc +wyf +aqn +aqn +aqn +aqn +aqn +wzX +eSN +eSN +eSN +eSN +eSN +eSN +fIk +fIk +fIk +rYh +qqo +uTg +nRZ +qrd +vgU +rYh +xtH +iPF +rYh +jyJ +jyJ +jyJ +jyJ +jyJ +jyJ +jyJ +jyJ +oSl +scN +obk +oSl +aqn +wyB +pjt +qVL +wyB +aqn +wyB +irv +wsu +wyB +nCe +wyB +nAI +tIM +wyB +nCe +nCe +nCe +nCe +nCe +nCe +tjO +nCe +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +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 +iGM +iGM +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +qzz +qzz +wYa +"} +(175,1,1) = {" +wYa +qpk +qpk +qpk +bVN +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +aNW +aNW +oum +oum +oum +oum +oum +oum +oum +oum +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 +xdu +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +nCe +nCe +nCe +mSM +twu +twu +twu +twu +mSM +twu +twu +twu +twu +twu +twu +twu +twu +twu +mSM +twu +twu +twu +twu +twu +twu +mSM +twu +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +hId +nCe +nCe +nCe +nCe +nCe +aqn +aqn +aqn +aqn +aqn +aqn +aqn +aqn +aqn +aqn +aqn +rYh +lCL +lCL +rYh +xNJ +jWf +rYh +ldA +fXF +lCL +aqn +aqn +aqn +aqn +aqn +aqn +aqn +aqn +wdE +due +xrn +wdE +aqn +wyB +yeX +yeX +wyB +aqn +wyB +kBv +kBv +wyB +nCe +wyB +mae +mae +wyB +nCe +nCe +nCe +nCe +nCe +nCe +tjO +nCe +nCe +nCe +nCe +nCe +nCe +gTx +nME +nCe +nCe +nCe +nCe +nCe +nCe +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 +iGM +iGM +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +qzz +qzz +wYa +"} +(176,1,1) = {" +wYa +qpk +qpk +qpk +bVN +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +aNW +aNW +oum +oum +oum +oum +oum +oum +oum +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 +xdu +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +nCe +nCe +nCe +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +mSM +twu +twu +mSM +twu +twu +mSM +nCe +nCe +nCe +nCe +nCe +nCe +sLu +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +aqK +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +eSN +eSN +aqn +aqn +aqn +aqn +aqn +rYh +eYZ +aSI +rYh +pyD +jBO +lCL +aqn +aqn +aqn +aqn +aqn +aqn +aqn +aqn +wdE +cfH +ero +wdE +aqn +wyB +kKf +jPo +wyB +nCe +wyB +puR +wnS +wyB +nCe +wyB +sLg +niW +wyB +nCe +nCe +nCe +nCe +nCe +nCe +dJU +xpd +xpd +jIh +xpd +xpd +xpd +nME +nCe +nCe +nCe +nCe +nCe +nCe +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 +iGM +iGM +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +qzz +wYa +"} +(177,1,1) = {" +wYa +qpk +qpk +qpk +bVN +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +aNW +aNW +oum +oum +oum +oum +oum +oum +oum +oum +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 +xdu +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +nCe +nCe +twu +twu +mSM +twu +twu +mSM +twu +twu +twu +twu +twu +twu +twu +twu +twu +mSM +mSM +twu +twu +twu +twu +twu +twu +twu +mSM +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +rFS +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +eSN +eSN +aqn +aqn +rYh +rYh +rYh +rYh +cVQ +yjU +rYh +aqn +aqn +aqn +nCe +nCe +nCe +nCe +nCe +oSl +rIx +pfK +oSl +aqn +wyB +wyB +wyB +wyB +nCe +wyB +wyB +wyB +wyB +nCe +wyB +wyB +wyB +wyB +nCe +nCe +nCe +nCe +nCe +gTx +plA +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +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 +iGM +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +qzz +wYa +"} +(178,1,1) = {" +wYa +qpk +qpk +qpk +bVN +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +aNW +aNW +aNW +oum +oum +oum +oum +oum +oum +oum +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 +xdu +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +twu +mSM +twu +twu +twu +twu +mSM +tYR +mSM +twu +twu +twu +twu +twu +twu +twu +mSM +mSM +mSM +twu +twu +mSM +twu +twu +twu +twu +mSM +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +xeg +xeg +xeg +xeg +xeg +xeg +xeg +xeg +xeg +xeg +nCe +rFS +nCe +xeg +xeg +xeg +xeg +xeg +xeg +xeg +xeg +xeg +xeg +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +oCI +oni +jFM +qnJ +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +wdE +epW +eVQ +wdE +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +yel +tjO +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +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 +iGM +iGM +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +qzz +wYa +"} +(179,1,1) = {" +wYa +qpk +qpk +qpk +bVN +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +aNW +aNW +aNW +oum +oum +oum +oum +oum +oum +oum +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 +xdu +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +mSM +mSM +mSM +twu +twu +twu +twu +mSM +mSM +twu +twu +twu +twu +twu +twu +twu +mSM +twu +twu +twu +mSM +twu +twu +mSM +twu +twu +mSM +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +bRZ +tEx +rft +rft +rft +rft +rft +rft +rft +rft +nBx +uvQ +nBx +fqU +fqU +fqU +fqU +fqU +fqU +fqU +fqU +fqU +gFv +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +kjw +lEH +eVQ +kjw +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +yel +tjO +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +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 +iGM +iGM +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +qzz +wYa +"} +(180,1,1) = {" +wYa +qpk +qpk +aHG +vZt +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +aNW +aNW +aNW +oum +oum +oum +oum +oum +oum +oum +oum +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 +xdu +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +mSM +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +mSM +twu +twu +mSM +twu +twu +twu +twu +twu +mSM +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +aif +aif +aif +aif +aif +aif +aif +aif +aif +aif +nCe +rFS +nCe +aif +aif +aif +aif +aif +aif +aif +aif +aif +aif +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +wdE +lEH +eVQ +wdE +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +yel +tjO +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +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 +iGM +iGM +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(181,1,1) = {" +wYa +qpk +qpk +bVN +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +aNW +aNW +aNW +oum +oum +oum +oum +oum +oum +oum +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 +xdu +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +twu +mSM +twu +mSM +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +mSM +twu +twu +twu +mSM +twu +twu +mSM +twu +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +rFS +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +oSl +hIG +tJw +oSl +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +yel +tjO +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +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 +iGM +iGM +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(182,1,1) = {" +wYa +qpk +qpk +bVN +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +aNW +aNW +aNW +oum +oum +oum +oum +oum +oum +oum +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 +xdu +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +mSM +twu +twu +twu +twu +twu +twu +mSM +twu +mSM +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +xeg +xeg +xeg +xeg +xeg +xeg +xeg +xeg +xeg +xeg +nCe +rFS +nCe +xeg +xeg +xeg +xeg +xeg +xeg +xeg +xeg +xeg +xeg +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +wdE +qnU +gVF +wdE +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +gTx +nME +tjO +nCe +nCe +nCe +nCe +nCe +nCe +nCe +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 +iGM +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(183,1,1) = {" +wYa +qpk +qpk +bVN +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +aNW +aNW +aNW +oum +oum +oum +oum +oum +oum +oum +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 +xdu +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +mSM +twu +twu +twu +mSM +twu +twu +mSM +twu +twu +twu +twu +twu +twu +twu +twu +twu +mSM +twu +mSM +twu +twu +mSM +twu +twu +twu +twu +mSM +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +bRZ +tEx +rft +rft +rft +rft +rft +rft +rft +rft +nBx +uvQ +nBx +fqU +fqU +fqU +fqU +fqU +fqU +fqU +fqU +fqU +gFv +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +kjw +qnU +gVF +kjw +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +gTx +xpd +jIh +xpd +xpd +nME +nCe +tjO +nCe +nCe +nCe +nCe +nCe +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 +iGM +iGM +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(184,1,1) = {" +wYa +qpk +qpk +bVN +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +aNW +aNW +oum +oum +oum +oum +oum +oum +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 +xdu +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +twu +twu +twu +twu +twu +mSM +mSM +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +mSM +twu +twu +twu +twu +twu +mSM +mSM +twu +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +aif +aif +aif +aif +aif +aif +aif +aif +aif +aif +nCe +rFS +nCe +aif +aif +aif +aif +aif +aif +aif +aif +aif +aif +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +wdE +qnU +qCK +wdE +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +gTx +nME +nCe +nCe +nCe +nCe +nCe +nCe +tjO +nCe +nCe +nCe +nCe +nCe +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 +iGM +iGM +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(185,1,1) = {" +wYa +qpk +qpk +bVN +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +aNW +aNW +oum +oum +oum +oum +oum +oum +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 +xdu +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +twu +twu +twu +twu +twu +twu +twu +twu +twu +mSM +twu +twu +twu +twu +twu +twu +mSM +twu +twu +mSM +twu +twu +twu +mSM +twu +twu +twu +twu +mSM +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +rFS +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +oSl +aUN +vVz +oSl +oSl +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +nCe +tjO +nCe +nCe +nCe +nCe +nCe +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 +iGM +iGM +iGM +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(186,1,1) = {" +wYa +qpk +qpk +bVN +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +aNW +aNW +aNW +oum +oum +oum +oum +oum +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 +xdu +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +twu +twu +mSM +twu +twu +twu +twu +twu +twu +mSM +twu +twu +twu +twu +mSM +twu +twu +mSM +twu +twu +mSM +twu +twu +twu +twu +twu +twu +mSM +mSM +twu +nCe +nCe +nCe +nCe +sLu +nCe +nCe +nCe +nCe +nCe +xeg +xeg +xeg +xeg +xeg +xeg +xeg +xeg +xeg +xeg +nCe +rFS +nCe +xeg +xeg +xeg +xeg +xeg +xeg +xeg +xeg +xeg +xeg +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +wdE +qnU +gVF +xRo +wdE +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +nCe +tjO +nCe +nCe +nCe +nCe +nCe +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 +iGM +iGM +iGM +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(187,1,1) = {" +wYa +qpk +qpk +bVN +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +aNW +aNW +aNW +oum +oum +oum +oum +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 +xdu +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +twu +mSM +twu +twu +twu +twu +twu +twu +mSM +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +mSM +twu +twu +mSM +mSM +twu +mSM +twu +twu +nCe +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +bRZ +tEx +rft +rft +rft +rft +rft +rft +rft +rft +nBx +uvQ +nBx +fqU +fqU +fqU +fqU +fqU +fqU +fqU +fqU +fqU +gFv +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +wdE +wak +mNf +xRo +wdE +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +nCe +tjO +nCe +nCe +nCe +nCe +nCe +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 +iGM +iGM +iGM +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(188,1,1) = {" +wYa +qpk +aHG +vZt +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +aNW +aNW +aNW +oum +oum +oum +oum +oum +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 +xdu +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +twu +twu +twu +twu +twu +twu +mSM +twu +twu +twu +twu +mSM +twu +twu +twu +twu +twu +mSM +twu +mSM +twu +twu +twu +twu +twu +mSM +twu +nCe +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +aif +aif +aif +aif +aif +aif +aif +aif +aif +aif +nCe +rFS +nCe +aif +aif +aif +aif +aif +aif +aif +aif +aif +aif +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +oSl +bEv +oSl +bKN +xfI +oSl +oSl +oSl +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +nCe +tjO +nCe +nCe +nCe +nCe +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 +iGM +iGM +iGM +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(189,1,1) = {" +wYa +qpk +bVN +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +aNW +aNW +oum +oum +oum +oum +oum +oum +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 +xdu +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +twu +mSM +mSM +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +mSM +twu +twu +twu +mSM +mSM +twu +twu +twu +twu +twu +mSM +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +rFS +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +wdE +dIe +tLy +lZf +fwH +xDH +rmG +wdE +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +vwy +xdu +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 +iGM +iGM +iGM +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(190,1,1) = {" +wYa +qpk +bVN +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +aNW +aNW +oum +oum +oum +oum +oum +oum +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 +xdu +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +nCe +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +twu +mSM +mSM +mSM +mSM +mSM +twu +twu +twu +mSM +mSM +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +eOD +eOD +xeg +xeg +xeg +xeg +xeg +xeg +xeg +xeg +nCe +rFS +nCe +xeg +xeg +xeg +xeg +xeg +xeg +xeg +xeg +xeg +xeg +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +kjw +xRo +jWN +lYI +jIj +nGa +sMU +kjw +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +vwy +xdu +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 +iGM +iGM +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(191,1,1) = {" +wYa +qpk +bVN +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +aNW +aNW +oum +oum +oum +oum +oum +oum +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 +xdu +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +nCe +nCe +twu +twu +mSM +twu +twu +mSM +twu +twu +twu +twu +twu +twu +mSM +mSM +nCe +nCe +twu +nCe +nCe +nCe +nCe +mSM +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +bRZ +tEx +rft +rft +rft +rft +rft +rft +rft +rft +nBx +uvQ +nBx +fqU +fqU +fqU +fqU +fqU +fqU +fqU +fqU +fqU +gFv +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +wdE +flx +wIU +xzb +lBC +uRA +uws +wdE +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +vwy +xdu +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 +iGM +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(192,1,1) = {" +wYa +qpk +bVN +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +aNW +oum +oum +oum +oum +oum +oum +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 +xdu +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +nCe +nCe +nCe +nCe +nCe +twu +mSM +mSM +twu +twu +mSM +twu +mSM +mSM +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +twu +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +aif +aif +aif +aif +aif +aif +aif +aif +aif +aif +nCe +rFS +nCe +aif +aif +aif +aif +aif +aif +aif +aif +aif +aif +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +oSl +alK +keP +qvb +pCm +fnK +gKW +oSl +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +vwy +xdu +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 +iGM +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(193,1,1) = {" +wYa +qpk +bVN +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +aNW +aNW +oum +oum +oum +oum +oum +oum +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 +xdu +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +twu +mSM +mSM +mSM +mSM +twu +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +rFS +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +gTx +xpd +xpd +xpd +cXT +iVY +twu +gBJ +xpd +xpd +fEB +fEB +fEB +fEB +fEB +fEB +fEB +rnm +kiU +irA +cXn +ujm +ujm +ujm +ujm +bkB +bkB +bkB +bkB +xpd +xpd +iVY +twu +gBJ +cXT +nCe +nCe +nCe +nCe +nCe +nCe +vwy +xdu +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 +iGM +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(194,1,1) = {" +wYa +rne +xGw +wAU +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +wVF +wVF +wVF +cKh +cKh +cKh +cKh +cKh +wVF +wVF +wVF +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +tjO +tjO +tjO +tjO +tjO +tjO +xXe +tjO +tjO +tjO +tjO +tjO +wdu +wdu +wdu +wdu +wdu +wdu +wdu +wdu +wdu +wdu +tjO +hWg +tjO +wdu +wdu +wdu +wdu +wdu +wdu +wdu +wdu +wdu +wdu +tjO +tjO +tjO +tjO +tjO +tjO +xXe +qNs +oMW +oMW +oMW +oMW +oMW +oMW +oMW +vmM +vmM +eDb +uZe +vVo +gHT +imX +vmM +uAd +rxX +aJA +qsF +cXY +qEz +ata +maU +gPO +xcE +xcE +lgu +lgu +tjO +tjO +reB +tjO +xXe +tjO +tjO +tjO +tjO +tjO +tjO +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +xdu +mPQ +mPQ +mPQ +mPQ +mPQ +gyu +gyu +gyu +gyu +gyu +gyu +gyu +gyu +gyu +gyu +gyu +dQn +dQn +dQn +dQn +dQn +wYa +"} +(195,1,1) = {" +wYa +qpk +qpk +bVN +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +aNW +aNW +oum +oum +oum +oum +oum +oum +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 +xdu +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 +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +bRZ +tEx +rft +rft +rft +rft +rft +rft +rft +rft +nBx +uvQ +nBx +fqU +fqU +fqU +fqU +fqU +fqU +fqU +fqU +fqU +gFv +nCe +nCe +nCe +nCe +nCe +nCe +yel +izZ +wPJ +vfq +isI +sWe +aDZ +bhM +vPL +vRT +wqH +rCJ +jvS +gMS +txr +fYo +lgz +aHe +eJC +ujm +pdU +qmQ +sMt +paX +tYt +vNz +gFH +aZv +aZv +bkB +nCe +nCe +twu +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +vwy +xdu +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 +iGM +iGM +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +qzz +wYa +"} +(196,1,1) = {" +wYa +qpk +qpk +bVN +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +aNW +aNW +aNW +oum +oum +oum +oum +oum +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 +xdu +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 +nCe +nCe +nCe +nCe +nCe +nCe +sLu +nCe +nCe +nCe +nCe +nCe +aif +aif +aif +aif +aif +aif +aif +aif +aif +aif +nCe +rFS +nCe +aif +aif +aif +aif +aif +aif +aif +aif +aif +aif +nCe +nCe +nCe +nCe +nCe +nCe +yel +izZ +lnP +nsB +tWp +klb +jno +eCL +krw +dwB +jJP +npU +lAU +cNU +qkn +sQa +fEB +sdG +cWu +ujm +pYi +dpO +bkB +vNz +vNz +vNz +vNz +vNz +vNz +bkB +nCe +nCe +twu +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +vwy +xdu +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 +iGM +iGM +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +qzz +wYa +"} +(197,1,1) = {" +wYa +qpk +qpk +bVN +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +aNW +aNW +oum +oum +oum +oum +oum +oum +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 +xdu +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 +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +rFS +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +sLu +izZ +lnP +iWV +eEW +lGt +rZm +mVp +krw +dwB +wiA +ujB +pRi +pkv +rZt +crs +fEB +vrX +dfd +sSw +lLe +fPH +bkB +tLQ +tLQ +ulG +mnJ +ovo +evN +bkB +nCe +nCe +nCe +nCe +sLu +nCe +nCe +nCe +nCe +nCe +nCe +vwy +xdu +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 +iGM +iGM +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +qzz +qzz +wYa +"} +(198,1,1) = {" +wYa +qpk +qpk +bVN +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +aNW +aNW +oum +oum +oum +oum +oum +oum +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 +xdu +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 +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +rFS +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +yel +izZ +mPv +swi +vEZ +axV +eQc +pNC +vPL +kfp +oBb +fnE +lwu +aJI +kgK +mRW +fEB +xas +gyg +ePG +ppH +nba +bkB +tLQ +tLQ +bcX +bcX +ehn +evN +bkB +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +vwy +xdu +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 +iGM +iGM +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +qzz +qzz +wYa +"} +(199,1,1) = {" +wYa +qpk +qpk +oYl +aEE +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +aNW +aNW +oum +oum +oum +oum +oum +oum +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 +xdu +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 +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +mhz +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +yel +iEL +kjF +kjF +kjF +kjF +kjF +kjF +kjF +fEB +fEB +fEB +uTS +rFP +fEB +fEB +fEB +dnf +cDv +irA +rxG +ujm +bkB +bkB +bkB +hWr +hWr +bkB +bkB +bkB +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +vwy +xdu +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 +iGM +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +qzz +qzz +qzz +wYa +"} +(200,1,1) = {" +wYa +qpk +qpk +qpk +bVN +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +aNW +oum +oum +oum +oum +oum +oum +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 +xdu +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 +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +xBq +xpd +xpd +xpd +sSy +nCe +twu +nCe +nCe +bkB +oJt +qVD +jEw +fvL +kav +hDm +qVP +aFP +wxJ +viM +fPi +lpT +jbt +nAa +sTX +jEw +jEw +pwl +qWU +bkB +nCe +nCe +twu +nCe +sSy +nCe +nCe +nCe +nCe +nCe +nCe +vwy +xdu +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 +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +qzz +qzz +qzz +wYa +"} +(201,1,1) = {" +wYa +qpk +qpk +qpk +bVN +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +aNW +aNW +oum +oum +oum +oum +oum +oum +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 +xdu +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 +nCe +nCe +nCe +nCe +nCe +nCe +xBq +sne +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +twu +nCe +nCe +bkB +bzm +ulv +ogY +gxk +nHM +ylq +czE +kjq +gpz +lWe +eOb +hrd +yda +itt +jaY +bcX +nZP +eBc +pCl +bkB +nCe +nCe +twu +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +vwy +xdu +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 +iGM +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +qzz +qzz +qzz +wYa +"} +(202,1,1) = {" +wYa +qpk +qpk +qpk +oYl +aEE +vwy +vwy +vwy +vwy +vwy +vwy +vwy +aNW +aNW +oum +oum +oum +oum +oum +oum +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 +xdu +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 +nCe +nCe +nCe +nCe +nCe +nCe +nCe +xBq +xpd +xpd +jIh +xpd +xpd +xpd +xpd +xpd +xpd +xpd +xpd +xpd +jIh +xpd +xpd +xpd +xpd +xpd +xpd +xpd +xpd +xpd +jIh +xpd +xpd +xpd +xpd +xpd +xpd +iVY +nCe +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +twu +nCe +nCe +bkB +mMH +hFe +jDa +dAm +ciJ +viu +icH +djw +kfr +nBh +qiZ +aZv +aZv +udx +lxx +lxx +lxx +jWD +rDt +bkB +nCe +nCe +twu +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +vwy +xdu +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 +iGM +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +qzz +qzz +qzz +qzz +wYa +"} +(203,1,1) = {" +wYa +qpk +qpk +qpk +qpk +bVN +vwy +vwy +vwy +vwy +vwy +vwy +vwy +aNW +oum +oum +oum +oum +oum +oum +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 +xdu +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 +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +bkB +vAd +nhm +oFp +vjG +jwg +iHY +oiZ +gPF +xeK +gNH +sEh +hHt +hKN +tgg +vwK +uwn +uwn +wMM +pCl +bkB +nCe +nCe +twu +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +vwy +xdu +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 +iGM +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +qzz +qzz +qzz +qzz +wYa +"} +(204,1,1) = {" +wYa +qpk +qpk +qpk +qpk +bVN +vwy +vwy +vwy +vwy +vwy +vwy +aNW +aNW +oum +oum +oum +oum +oum +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 +xdu +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 +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +bkB +bzm +ulv +ogY +tfu +kYl +roq +bBp +wjb +oWf +rfz +huN +wnA +sPH +nKU +jaY +bcX +nZP +eBc +oRg +bkB +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +vwy +xdu +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 +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +qzz +qzz +qzz +wYa +"} +(205,1,1) = {" +wYa +qpk +qpk +qpk +qpk +bVN +vwy +vwy +vwy +vwy +vwy +aNW +aNW +oum +oum +oum +oum +oum +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 +xdu +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 +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +twu +nCe +bkB +uCG +hFe +jDa +fXG +ciJ +xeS +juw +bkB +agr +vNA +gnB +bkB +pYG +hFe +lxx +lxx +lxx +jWD +uCG +bkB +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +vwy +xdu +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 +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +qzz +qzz +qzz +qzz +wYa +"} +(206,1,1) = {" +wYa +qpk +qpk +qpk +qpk +bVN +vwy +vwy +vwy +vwy +aNW +aNW +oum +oum +oum +oum +oum +oum +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 +xdu +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 +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +twu +nCe +bkB +eZS +jXQ +oFp +uwn +jwg +fao +nWe +vZV +vVk +deb +aNd +vZV +pyL +jIS +vwK +uwn +uwn +wMM +pCl +bkB +nCe +twu +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +vwy +xdu +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 +iGM +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +qzz +qzz +qzz +wYa +"} +(207,1,1) = {" +wYa +qpk +qpk +qpk +qpk +bVN +vwy +vwy +vwy +aNW +aNW +oum +oum +oum +oum +oum +oum +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 +xdu +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 +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +twu +twu +xTx +bkB +eZS +ehO +dwC +bcX +bcX +uxE +vZV +qwc +qGo +opF +vZV +ptB +bcX +bcX +pDQ +uHq +tJR +gjB +xTx +nCe +twu +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +vwy +xdu +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 +iGM +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +qzz +qzz +qzz +wYa +"} +(208,1,1) = {" +wYa +qpk +qpk +qpk +qpk +bVN +vwy +vwy +aNW +aNW +aNW +oum +oum +oum +oum +oum +oum +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 +xdu +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 +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +yel +nCe +nCe +nCe +twu +twu +bkB +bkB +bkB +pDw +raU +raU +bkB +bkB +nbE +jxq +goO +bkB +bkB +raU +raU +pDw +bkB +bkB +bkB +nCe +nCe +twu +nCe +nCe +yel +nCe +nCe +nCe +nCe +nCe +nCe +vwy +xdu +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 +iGM +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +qzz +qzz +qzz +wYa +"} +(209,1,1) = {" +wYa +qpk +qpk +qpk +qpk +bVN +vwy +aNW +aNW +aNW +oum +oum +oum +oum +oum +oum +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 +xdu +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 +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 +nCe +nCe +nCe +nCe +nCe +nCe +yel +ied +jWj +jWj +jWj +jWj +jWj +jWj +deU +sEu +irl +vMf +iCp +xTx +bkB +cxN +bkB +xTx +deU +vMf +irl +sEu +iCp +jWj +jWj +jWj +jWj +jWj +jWj +kHe +yel +nCe +nCe +nCe +nCe +nCe +nCe +vwy +xdu +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 +iGM +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +qzz +qzz +qzz +wYa +"} +(210,1,1) = {" +wYa +qpk +qpk +qpk +qpk +bVN +aNW +aNW +aNW +oum +oum +oum +oum +oum +oum +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 +xdu +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 +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 +nCe +nCe +nCe +nCe +nCe +nCe +sLu +izZ +xhc +vfq +isI +vfq +qPc +gJA +cuW +cuW +epp +cuW +cuW +sLq +vPL +dnF +vPL +amJ +cuW +cuW +epp +cuW +cuW +kFv +lls +isI +vfq +isI +yfv +lzL +sLu +nCe +nCe +nCe +nCe +nCe +nCe +vwy +xdu +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 +iGM +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +qzz +qzz +wYa +"} +(211,1,1) = {" +wYa +qpk +qpk +qpk +aHG +vZt +aNW +aNW +oum +oum +oum +oum +oum +oum +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 +xdu +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 +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 +nCe +nCe +nCe +nCe +nCe +nCe +yel +izZ +lnP +nsB +tWp +nsB +tWp +ncE +mxw +qSj +mZg +mxw +weM +uIm +vPL +cMW +vPL +ubP +iUK +ncE +vJC +qSj +ncE +mxw +nsB +tWp +nsB +tWp +mHP +lzL +yel +nCe +nCe +nCe +nCe +nCe +nCe +vwy +xdu +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 +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +qzz +qzz +wYa +"} +(212,1,1) = {" +wYa +cos +cos +cos +vZt +aNW +aNW +oum +oum +oum +oum +oum +oum +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 +xdu +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 +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 +nCe +nCe +nCe +nCe +nCe +nCe +yel +izZ +lnP +iWV +eEW +iWV +eEW +iWV +eEW +lsJ +nsB +eEW +lGt +baV +wzX +bMb +wzX +gpJ +kBn +iWV +tWp +lsJ +iWV +eEW +iWV +eEW +iWV +eEW +mHP +lzL +yel +nCe +nCe +nCe +nCe +nCe +nCe +vwy +xdu +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 +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +qzz +qzz +wYa +"} +(213,1,1) = {" +acu +hCc +aNW +aNW +aNW +aNW +oum +oum +oum +oum +oum +oum +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 +xdu +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 +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 +nCe +nCe +nCe +nCe +nCe +nCe +yel +izZ +bmd +tWp +nsB +tWp +nsB +tWp +nsB +tWp +iWV +tWp +klb +uIm +lzL +nCe +izZ +ubP +cTU +nsB +eEW +nsB +tWp +nsB +tWp +nsB +tWp +nsB +viG +lzL +yel +nCe +nCe +nCe +nCe +nCe +nCe +vwy +xdu +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 +iGM +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +qzz +qzz +wYa +"} +(214,1,1) = {" +acu +hMj +aNW +aNW +bMK +oum +oum +oum +oum +oum +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 +xdu +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 +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 +nCe +nCe +nCe +nCe +nCe +nCe +yel +izZ +lkm +eEW +iWV +eEW +iWV +eEW +iWV +eEW +nsB +eEW +iWV +uwo +lzL +nCe +izZ +qMW +eEW +iWV +tWp +iWV +eEW +iWV +eEW +iWV +eEW +iWV +uCE +lzL +yel +nCe +nCe +nCe +nCe +nCe +nCe +vwy +xdu +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 +iGM +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +qzz +qzz +wYa +"} +(215,1,1) = {" +acu +hMj +aNW +oum +oum +oum +oum +oum +oum +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 +xdu +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 +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 +nCe +nCe +nCe +nCe +nCe +nCe +yel +izZ +lnP +nsB +tWp +nsB +tWp +nsB +tWp +nsB +olb +tWp +nsB +uCE +lzL +nCe +izZ +lkm +tWp +nsB +olb +tWp +nsB +tWp +nsB +tWp +nsB +tWp +mHP +lzL +yel +nCe +nCe +nCe +nCe +nCe +nCe +vwy +xdu +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 +iGM +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +qzz +qzz +wYa +"} +(216,1,1) = {" +cQN +iIo +oum +oum +oum +oum +gDr +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 +xdu +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 +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 +nCe +nCe +nCe +nCe +nCe +nCe +yel +izZ +lnP +iWV +eEW +iWV +eEW +iWV +eEW +iWV +eEW +iWV +eEW +mHP +lzL +nCe +izZ +lnP +iWV +eEW +iWV +eEW +iWV +eEW +iWV +eEW +iWV +eEW +mHP +lzL +yel +nCe +nCe +nCe +nCe +nCe +nCe +vwy +xdu +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 +iGM +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +qzz +qzz +wYa +"} +(217,1,1) = {" +cQN +iIo +oum +oum +aNW +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 +xdu +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 +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 +nCe +nCe +nCe +nCe +nCe +nCe +yel +izZ +vBN +swi +vEZ +swi +vEZ +swi +vEZ +swi +vEZ +swi +vEZ +xks +lzL +nCe +izZ +mPv +swi +vEZ +swi +vEZ +swi +vEZ +swi +vEZ +swi +vEZ +xks +lzL +yel +nCe +nCe +nCe +nCe +nCe +nCe +vwy +xdu +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 +iGM +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +qzz +qzz +wYa +"} +(218,1,1) = {" +cQN +iIo +aNW +eQE +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 +vwy +vwy +xdu +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 +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 +nCe +nCe +nCe +nCe +nCe +nCe +yel +iEL +kjF +kjF +kjF +kjF +kjF +kjF +kjF +kjF +kjF +kjF +kjF +kjF +lUS +nCe +iEL +kjF +kjF +kjF +kjF +kjF +kjF +kjF +kjF +kjF +kjF +kjF +kjF +lUS +yel +nCe +nCe +nCe +nCe +nCe +nCe +vwy +xdu +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 +iGM +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +qzz +qzz +wYa +"} +(219,1,1) = {" +acu +hMj +aNW +aNW +aNW +aNW +nOe +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 +vwy +vwy +xdu +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 +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 +nCe +nCe +nCe +nCe +nCe +nCe +cXT +xpd +xpd +xpd +xpd +xpd +xpd +xpd +xpd +xpd +jIh +xpd +xpd +xpd +xpd +xpd +xpd +xpd +xpd +xpd +jIh +xpd +xpd +xpd +xpd +xpd +xpd +xpd +xpd +xpd +cXT +nCe +nCe +nCe +nCe +nCe +nCe +vwy +xdu +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 +iGM +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +qzz +qzz +wYa +"} +(220,1,1) = {" +acu +hMj +aNW +aNW +nOe +nOe +nOe +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 +vwy +vwy +xdu +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 +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 +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +vwy +vwy +xdu +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 +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +qzz +qzz +wYa +"} +(221,1,1) = {" +jhv +mMn +nOe +nOe +nOe +nOe +twc +gAH +gAH +gAH +gAH +gAH +gAH +aEE +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 +xdu +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 +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 +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +vwy +vwy +xdu +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 +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +qzz +qzz +wYa +"} +(222,1,1) = {" +wYa +qPb +qPb +qPb +qPb +qPb +oTS +qpk +qpk +qpk +qpk +qpk +qpk +oYl +gAH +gAH +aEE +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 +xdu +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 +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 +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +vwy +vwy +xdu +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 +iGM +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +qzz +wYa +"} +(223,1,1) = {" +wYa +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +bVN +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 +xdu +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 +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 +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +vwy +vwy +xdu +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 +iGM +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +qzz +wYa +"} +(224,1,1) = {" +wYa +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +bVN +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 +xdu +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 +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 +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +vwy +vwy +xdu +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 +iGM +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +qzz +wYa +"} +(225,1,1) = {" +wYa +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +bVN +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 +xdu +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 +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 +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +nCe +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +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 +iGM +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(226,1,1) = {" +wYa +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +cbu +rRy +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 +xdu +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 +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 +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +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 +iGM +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(227,1,1) = {" +wYa +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +ptv +gxR +rRy +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 +xdu +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 +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 +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +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 +iGM +iGM +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +wYa +"} +(228,1,1) = {" +wYa +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +vkg +vkg +vkg +ccv +xej +rRy +rRy +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 +xdu +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 +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 +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +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 +iGM +iGM +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +qzz +wYa +"} +(229,1,1) = {" +wYa +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +vkg +tyt +xej +xej +xej +rRy +rRy +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 +xdu +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 +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 +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +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 +iGM +iGM +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +qzz +wYa +"} +(230,1,1) = {" +wYa +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +vkg +mFV +xej +xej +xej +rRy +rRy +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 +xdu +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 +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 +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +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 +iGM +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +qzz +wYa +"} +(231,1,1) = {" +wYa +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +vkg +mFV +xej +xej +xej +rRy +rRy +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 +xdu +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 +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 +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +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 +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +qzz +qzz +wYa +"} +(232,1,1) = {" +wYa +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +vkg +vkg +vkg +ccv +xej +rRy +rRy +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 +xdu +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 +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 +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +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 +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +qzz +qzz +wYa +"} +(233,1,1) = {" +wYa +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +cbu +rRy +rRy +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 +xdu +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 +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 +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +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 +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +qzz +qzz +wYa +"} +(234,1,1) = {" +wYa +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +ptv +gxR +rRy +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 +xdu +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 +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 +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +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 +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +qzz +qzz +wYa +"} +(235,1,1) = {" +wYa +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +bVN +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 +xdu +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 +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 +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +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 +iGM +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +qzz +qzz +qzz +wYa +"} +(236,1,1) = {" +wYa +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +bVN +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 +xdu +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 +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 +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +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 +iGM +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +qzz +qzz +qzz +wYa +"} +(237,1,1) = {" +wYa +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +bVN +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 +xdu +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 +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 +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +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 +iGM +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +qzz +qzz +qzz +wYa +"} +(238,1,1) = {" +wYa +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +bVN +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 +xdu +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 +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 +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +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 +iGM +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +qzz +qzz +wYa +"} +(239,1,1) = {" +wYa +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +bVN +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 +xdu +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 +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 +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +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 +iGM +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +qzz +qzz +wYa +"} +(240,1,1) = {" +wYa +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +bVN +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 +xdu +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 +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 +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +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 +iGM +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +qzz +qzz +wYa +"} +(241,1,1) = {" +wYa +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +aHG +cos +vZt +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 +xdu +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 +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 +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +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 +iGM +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +qzz +qzz +wYa +"} +(242,1,1) = {" +wYa +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +bVN +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 +xdu +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 +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 +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +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 +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +qzz +wYa +"} +(243,1,1) = {" +wYa +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +bVN +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 +xdu +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 +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 +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +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 +iGM +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +qzz +wYa +"} +(244,1,1) = {" +wYa +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +bVN +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 +xdu +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 +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 +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +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 +iGM +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +qzz +wYa +"} +(245,1,1) = {" +wYa +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +bVN +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 +xdu +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 +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 +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +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 +iGM +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +qzz +wYa +"} +(246,1,1) = {" +wYa +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +bVN +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 +xdu +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 +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 +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +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 +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +qzz +wYa +"} +(247,1,1) = {" +wYa +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +bVN +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 +xdu +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 +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 +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +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 +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +qzz +wYa +"} +(248,1,1) = {" +wYa +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +bVN +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 +xdu +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 +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 +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +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 +iGM +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +qzz +qzz +wYa +"} +(249,1,1) = {" +wYa +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +bVN +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 +xdu +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 +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 +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +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 +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +qzz +qzz +wYa +"} +(250,1,1) = {" +wYa +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +bVN +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 +xdu +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 +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 +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +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 +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +qzz +qzz +wYa +"} +(251,1,1) = {" +wYa +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +bVN +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 +xdu +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 +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 +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +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 +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +qzz +qzz +wYa +"} +(252,1,1) = {" +wYa +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +bVN +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 +xdu +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 +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 +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +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 +iGM +iGM +iGM +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +qzz +qzz +wYa +"} +(253,1,1) = {" +wYa +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +bVN +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 +xdu +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 +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 +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +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 +iGM +iGM +dXk +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +qzz +qzz +wYa +"} +(254,1,1) = {" +wYa +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +qpk +bVN +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 +xdu +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 +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 +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +vwy +xdu +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 +iGM +iGM +iGM +dXk +dXk +dXk +dXk +qzz +qzz +qzz +qzz +qzz +qzz +qzz +wYa +"} +(255,1,1) = {" +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +wYa +"} diff --git a/maps/cynosure/cynosure-3.dmm b/maps/cynosure/cynosure-3.dmm new file mode 100644 index 0000000000..7c9e1683f4 --- /dev/null +++ b/maps/cynosure/cynosure-3.dmm @@ -0,0 +1,103029 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aad" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner_steel_grid, +/obj/effect/floor_decal/corner/paleblue/bordercorner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/patient_wing) +"abG" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + id = "biohazard"; + layer = 3.3; + name = "Biohazard Shutter" + }, +/turf/simulated/floor/plating, +/area/surface/station/rnd/workshop) +"acO" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/ai_monitored/storage/eva) +"acQ" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/engineering/foyer/secondfloor) +"adk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/command) +"adF" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/carpet, +/area/surface/station/crew_quarters/sleep/Dorm_2) +"adG" = ( +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/east) +"aeT" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/captain) +"afs" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/machinery/cell_charger, +/obj/item/weapon/cell/high{ + pixel_y = -4 + }, +/obj/item/weapon/cell/high, +/obj/effect/floor_decal/corner/purple/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/lab) +"agc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/surface/station/hallway/primary/secondfloor/west) +"agj" = ( +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 6 + }, +/obj/machinery/light/small, +/obj/machinery/camera/network/command{ + c_tag = "AI - Core Stairs"; + dir = 1 + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/surface/station/ai) +"agC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/security/hallway/stairwell) +"agI" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "prisongate"; + layer = 2.9; + name = "Prison Lockdown"; + pixel_x = 25; + pixel_y = -8; + req_one_access = list(2,4) + }, +/obj/machinery/button/remote/airlock{ + dir = 8; + id = "prisonexit"; + layer = 2.9; + name = "Brig Exit"; + pixel_x = 36; + pixel_y = -8; + req_one_access = list(2,4) + }, +/obj/machinery/button/remote/airlock{ + dir = 8; + id = "prisonentry"; + layer = 2.9; + name = "Brig Entry"; + pixel_x = 36; + pixel_y = 3; + req_one_access = list(2,4) + }, +/obj/machinery/button/flasher{ + id = "permentryflash"; + name = "Entry Flash"; + pixel_x = 24; + pixel_y = 8; + req_one_access = list(2,4) + }, +/obj/machinery/button/flasher{ + id = "permflash"; + name = "Brig Flashes"; + pixel_x = 24; + pixel_y = 1; + req_one_access = list(2,4) + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/hallway/cell_hallway) +"ahf" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/bed/chair/shuttle, +/turf/simulated/shuttle/floor/white, +/area/shuttle/large_escape_pod2/station) +"ahD" = ( +/turf/simulated/open, +/area/surface/station/medical/hallway/snd) +"ahF" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 2; + name = "Stairway Access" + }, +/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/station/hallway/primary/secondfloor/east) +"ahV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/surface/station/security/hallway/stairwell) +"aiC" = ( +/obj/structure/table/steel, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/glass, +/obj/item/weapon/storage/belt/utility{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/weapon/storage/belt/utility, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/item/stack/material/copper{ + amount = 20 + }, +/obj/item/device/multitool, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/office) +"aji" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/ai_monitored/storage/eva) +"aki" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/bordercorner{ + dir = 1 + }, +/obj/structure/closet{ + name = "Prisoner's Locker" + }, +/obj/item/clothing/head/soft/orange, +/obj/item/clothing/shoes/sandal, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/item/clothing/head/flatcap, +/turf/simulated/floor/tiled, +/area/surface/station/security/prison) +"aks" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/green, +/obj/effect/floor_decal/corner/lime/diagonal, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -21 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/virology) +"akK" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 21 + }, +/turf/simulated/floor/wood, +/area/surface/station/command/liaison) +"akZ" = ( +/obj/structure/table/wooden_reinforced, +/obj/machinery/computer/med_data/laptop, +/turf/simulated/floor/carpet/sblucarpet, +/area/surface/station/medical/psych) +"ala" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/hallway/secondary/secondfloor/command) +"alB" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Cargo"; + req_one_access = list(50) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/quartermaster/office) +"amK" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/security/hallway/snd) +"anj" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing, +/turf/simulated/open, +/area/surface/station/engineering/reactor_room) +"anD" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/eva_hallway) +"anO" = ( +/obj/structure/table/standard, +/obj/structure/flora/pottedplant/mysterious{ + pixel_y = 10 + }, +/turf/simulated/floor/wood/sif, +/area/surface/station/rnd/research) +"anQ" = ( +/obj/machinery/door/firedoor/border_only, +/obj/effect/wingrille_spawn/reinforced_phoron, +/obj/machinery/door/blast/regular/open{ + id = "ReactorBlast"; + layer = 3.3; + name = "Reactor Monitoring Room Blast Doors" + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_monitoring) +"anU" = ( +/obj/structure/lattice, +/turf/simulated/open, +/area/surface/station/ai) +"aoa" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/surface/station/construction/office) +"apn" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/camera/network/security{ + c_tag = "SEC - Hallway Upper Southwest"; + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/snd) +"aqf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/noticeboard{ + pixel_y = 30 + }, +/turf/simulated/floor/wood/sif, +/area/surface/station/rnd/research) +"aql" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/dormhallway) +"aqD" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/remote/airlock{ + dir = 8; + id = "cmodoor"; + layer = 2.9; + name = "Office Door"; + pixel_x = -6; + pixel_y = -4 + }, +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "medbayquar"; + layer = 2.9; + name = "Medbay Lockdown"; + pixel_x = -6; + pixel_y = 4; + req_one_access = list(5) + }, +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "virologyquar"; + layer = 2.9; + name = "Virology Lockdown Control"; + pixel_x = 6; + pixel_y = 4; + req_one_access = list(5) + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/crew_quarters/heads/cmo) +"aqR" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/prison) +"ark" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 21 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/security/snd) +"arD" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/purple/border, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/research) +"arQ" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/ai_monitored/storage/eva) +"asc" = ( +/obj/item/device/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/obj/structure/bed/chair/shuttle, +/turf/simulated/shuttle/floor/white, +/area/shuttle/large_escape_pod2/station) +"ase" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/seed_storage/garden, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/prison) +"asG" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/obj/machinery/camera/network/medbay{ + c_tag = "MED - Virology East"; + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/virology) +"asM" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/bordercorner{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/west/elevator) +"asT" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/obj/item/weapon/coin/silver{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/weapon/coin/silver, +/obj/item/weapon/stamp/qm, +/obj/machinery/newscaster{ + pixel_y = 28 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/qm) +"atC" = ( +/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/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/command{ + id_tag = "researchdoor"; + name = "Research Director Office"; + req_access = list(30); + req_one_access = list() + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/crew_quarters/heads/rdoffice) +"atE" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "commandlockdown"; + layer = 3.3; + name = "Command Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/command/operations) +"atF" = ( +/obj/effect/floor_decal/techfloor{ + dir = 10 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/ai) +"aur" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + 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" + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/dormhallway) +"auR" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/orange/bordercorner{ + dir = 8 + }, +/obj/structure/closet{ + name = "Prisoner's Locker" + }, +/obj/item/weapon/reagent_containers/food/drinks/bottle/absinthe, +/obj/item/clothing/suit/storage/apron/overalls, +/turf/simulated/floor/tiled, +/area/surface/station/security/prison) +"avw" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "pr1_window_tint" + }, +/turf/simulated/floor/plating, +/area/surface/station/medical/patient_a) +"avU" = ( +/obj/machinery/disease2/isolator, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/virology) +"axb" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/floor_decal/corner_oldtile/blue{ + dir = 6 + }, +/obj/item/weapon/gun/energy/gun, +/obj/item/weapon/gun/energy/gun{ + pixel_x = 2; + pixel_y = -2 + }, +/obj/machinery/door/window/brigdoor/westright{ + name = "Weapons Locker" + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/armoury) +"axl" = ( +/obj/structure/ladder, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/atmos) +"axq" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/floor_decal/corner_oldtile/blue{ + dir = 9 + }, +/obj/random/energy/sec, +/obj/machinery/door/window/brigdoor/eastleft{ + name = "Weapons Locker" + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/tactical) +"ayM" = ( +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 21 + }, +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/tiled/old_tile/gray, +/area/surface/station/park/skybridge) +"ayR" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/command) +"azH" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/lab) +"aAd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor/border_only, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/hallway/secondary/secondfloor/westskybridge) +"aAk" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door_timer/cell_2{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/cell_hallway) +"aAo" = ( +/obj/effect/floor_decal/corner_steel_grid{ + dir = 6 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/structure/table/glass, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/medical/hallway/snd) +"aBj" = ( +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/station/ai_monitored/storage/eva) +"aBW" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/robotics) +"aCF" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/hallway/secondary/secondfloor/westskybridge) +"aDu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/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{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/surface/station/hallway/primary/secondfloor/west) +"aDS" = ( +/obj/structure/cable{ + d1 = 32; + icon_state = "32-1" + }, +/obj/structure/lattice, +/obj/machinery/door/firedoor/border_only, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/open, +/area/surface/station/maintenance/east/snd) +"aDT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/spline/plain{ + 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/station/quartermaster/office) +"aEh" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/effect/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/office) +"aFQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/purple/border, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/research) +"aGs" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + pixel_y = -21 + }, +/obj/machinery/camera/network/research{ + c_tag = "SCI - Research Hallway South Upper"; + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/research) +"aGA" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/green, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/ai_monitored/storage/eva) +"aGK" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/east) +"aGM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/cell_hallway) +"aJd" = ( +/obj/structure/catwalk, +/obj/structure/lattice, +/turf/simulated/open, +/area/surface/station/engineering/reactor_room) +"aJH" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + id = "commandlockdown"; + layer = 3.3; + name = "Command Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/command) +"aKr" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "rdoffice" + }, +/obj/machinery/door/blast/regular/open{ + id = "biohazard"; + layer = 3.3; + name = "Biohazard Shutter" + }, +/turf/simulated/floor/plating, +/area/surface/station/crew_quarters/heads/rdoffice) +"aKC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/green/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/westskybridge) +"aLp" = ( +/obj/effect/zone_divider, +/turf/simulated/wall, +/area/surface/station/crew_quarters/sleep/Dorm_4) +"aMh" = ( +/obj/structure/table/glass, +/obj/item/weapon/towel{ + color = "#FF6666"; + name = "light red towel"; + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/weapon/towel{ + color = "#FF6666"; + name = "light red towel"; + pixel_x = -1 + }, +/obj/item/weapon/towel{ + color = "#3fc0ea"; + name = "light blue towel"; + pixel_y = 2 + }, +/obj/item/weapon/towel{ + color = "#3fc0ea"; + name = "light blue towel"; + pixel_x = 1; + pixel_y = 4 + }, +/obj/item/weapon/soap/nanotrasen, +/obj/random/soap, +/obj/structure/cable/green, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -24; + pixel_y = 12 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + pixel_y = -21 + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/surface/station/medical/restroom) +"aMp" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/surface/station/crew_quarters/captain) +"aMw" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/structure/closet/secure_closet/RD, +/obj/random_multi/single_item/hand_tele, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/crew_quarters/heads/rdoffice) +"aMD" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/crew_quarters/sleep/Dorm_5) +"aNp" = ( +/obj/machinery/cryopod, +/obj/effect/floor_decal/techfloor{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/security/hallway/cell_hallway) +"aNs" = ( +/obj/structure/extinguisher_cabinet{ + dir = 1; + pixel_y = 30 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/locker_room) +"aNK" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 9 + }, +/obj/item/weapon/stool/padded, +/obj/machinery/camera/network/medbay{ + c_tag = "MED - Second Floor Hallway"; + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/medical/hallway/snd) +"aOo" = ( +/obj/structure/cable/green{ + 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{ + id_tag = "droom1"; + name = "Room 1" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/crew_quarters/sleep/Dorm_1) +"aOX" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "bridgelockdown"; + layer = 3.3; + name = "Operations Lockdown" + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/command/operations) +"aPo" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/yellow/border, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner2{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/snd) +"aPH" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/brown, +/turf/simulated/floor/carpet, +/area/surface/station/crew_quarters/sleep/Dorm_1) +"aPW" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "captain_tint" + }, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "captainlockdown"; + layer = 3.3; + name = "Site Manager Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/crew_quarters/captain) +"aQF" = ( +/obj/structure/closet/walllocker/emerglocker{ + pixel_y = 32 + }, +/obj/structure/bed/chair/shuttle, +/turf/simulated/shuttle/floor/white, +/area/shuttle/large_escape_pod2/station) +"aRl" = ( +/obj/machinery/door/airlock/hatch{ + icon_state = "door_locked"; + id_tag = null; + locked = 1; + name = "AI Core"; + req_access = list(16); + req_one_access = null + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/ai) +"aRn" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/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 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/qm) +"aSo" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/snd) +"aSx" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/cable/green, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/ai_monitored/storage/eva) +"aTg" = ( +/turf/simulated/wall, +/area/surface/station/hallway/primary/secondfloor/east) +"aTJ" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/engineering/reactor_room) +"aUo" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/bordercorner{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/camera/network/civilian{ + c_tag = "CIV - Dormitory North"; + dir = 9 + }, +/obj/effect/zone_divider, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/dormhallway) +"aUu" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "commandlockdown"; + layer = 3.3; + name = "Command Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/command/operations) +"aUF" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/snd) +"aVd" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/effect/floor_decal/rust, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/station/roof) +"aVw" = ( +/turf/simulated/floor/reinforced{ + nitrogen = 93.7835; + outdoors = 1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/surface/outside/plains/station/snd) +"aVH" = ( +/turf/simulated/floor/tiled/monotile, +/area/surface/station/crew_quarters/heads/chief) +"aVK" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/office) +"aYi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/hull{ + nitrogen = 93.7835; + outdoors = 1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/surface/outside/station/roof) +"aYP" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/station/engineering/engi_restroom) +"aZU" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/hallway/secondary/secondfloor/dormhallway) +"bal" = ( +/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/surface/station/quartermaster/office) +"bba" = ( +/obj/machinery/status_display, +/turf/simulated/wall/r_wall, +/area/surface/station/engineering/reactor_monitoring) +"bdk" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/oxygen/prechilled, +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/turf/simulated/shuttle/floor/white, +/area/shuttle/large_escape_pod2/station) +"bdv" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/effect/landmark/start{ + name = "Chief Engineer" + }, +/turf/simulated/floor/tiled, +/area/surface/station/crew_quarters/heads/chief) +"beO" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "armoury"; + name = "Emergency Access"; + pixel_x = 24; + req_access = list(3) + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/hallway/snd) +"bfk" = ( +/obj/effect/floor_decal/techfloor/corner{ + dir = 5 + }, +/obj/effect/floor_decal/techfloor{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/ai) +"bfL" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/obj/structure/bed/chair/office/dark, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 21 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/construction/office) +"bga" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/engineering/foyer/secondfloor) +"bgQ" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/patient_b) +"bgY" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/yellow/border, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/snd) +"bhk" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/yellow/border, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/engine_eva) +"bhp" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled/dark, +/area/surface/station/engineering/hallway/snd) +"bhC" = ( +/turf/simulated/wall, +/area/surface/station/maintenance/weststairwell/snd) +"bic" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/medical/patient_wing) +"big" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals1{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals1, +/obj/effect/floor_decal/steeldecal/steel_decals1{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals1{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/flasher{ + id = "permflash"; + layer = 2.4; + name = "Floor mounted flash" + }, +/turf/simulated/floor/tiled/eris, +/area/surface/station/security/prison) +"bii" = ( +/obj/structure/sink{ + pixel_y = 17 + }, +/obj/structure/mirror{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/quartermaster/restroom) +"biH" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/command) +"biM" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/light/small, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/cargo/snd) +"biN" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/hallway/secondary/secondfloor/command) +"bja" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/west) +"bjr" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/east/snd) +"bko" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/east/snd) +"blx" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor/corner{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/ai) +"blF" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos/monitoring) +"blU" = ( +/obj/structure/table/standard, +/obj/item/device/camera_film, +/obj/item/device/camera_film{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/device/camera, +/obj/item/device/camera{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/storage/art) +"bmi" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/office) +"bmp" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/hallway/primary/secondfloor/east) +"bmR" = ( +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "englockdown"; + layer = 3.3; + name = "Engineering Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/locker_room) +"bni" = ( +/obj/machinery/door/airlock{ + name = "Unit 2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/quartermaster/restroom) +"bop" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/crew_quarters/heads/cmo) +"bou" = ( +/turf/unsimulated/wall/planetary/sif, +/area/surface/outside/plains/station/snd) +"bow" = ( +/obj/structure/sign/directions/ladder_down{ + dir = 1; + pixel_y = -6 + }, +/turf/simulated/wall/r_wall, +/area/surface/station/hallway/secondary/secondfloor/civilian) +"boV" = ( +/obj/effect/catwalk_plated, +/obj/machinery/atmospherics/binary/passive_gate{ + icon_state = "on"; + unlocked = 1 + }, +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/plating, +/area/surface/station/engineering/hallway/eva_hallway) +"boW" = ( +/obj/structure/table/wooden_reinforced, +/obj/item/weapon/material/ashtray/glass, +/obj/item/device/flashlight/lamp/green, +/obj/item/sticky_pad/random{ + pixel_x = 8; + pixel_y = -1 + }, +/turf/simulated/floor/wood, +/area/surface/station/command/internalaffairs) +"bpb" = ( +/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/zpipe/down/supply{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 32; + d2 = 8; + icon_state = "32-8" + }, +/obj/structure/disposalpipe/down{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only, +/obj/structure/lattice, +/turf/simulated/open, +/area/surface/station/maintenance/substation/engineering/snd) +"bpf" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/security/hallway/cell_hallway) +"bpj" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 12 + }, +/obj/structure/mirror{ + pixel_x = 28 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/station/engineering/engi_restroom) +"bpv" = ( +/obj/structure/table/standard, +/obj/item/weapon/cell/device/weapon{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/cell/device/weapon, +/obj/item/weapon/cell/device/weapon{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/weapon/cell/device/weapon{ + pixel_x = -3; + pixel_y = -4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/surface/station/security/tactical) +"bpV" = ( +/obj/item/weapon/banner/nt, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/command) +"bqn" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/west) +"bqC" = ( +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/brown/bordercorner, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/office) +"bsk" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/engineering/reactor_monitoring) +"bsy" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "biohazard"; + layer = 3.3; + name = "Biohazard Shutter" + }, +/obj/machinery/status_display, +/turf/simulated/floor/plating, +/area/surface/station/rnd/workshop) +"bsG" = ( +/obj/structure/cable/cyan{ + 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 = 24 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 1 + }, +/obj/machinery/button/remote/blast_door{ + id = "atmoslockdown"; + name = "Atmospherics Lockdown"; + pixel_x = 12; + pixel_y = 34; + req_one_access = list(10,24) + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos/monitoring) +"bto" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/rnd/chargebay) +"btZ" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_monitoring) +"buf" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + id = "medbayquar"; + layer = 3.3; + name = "Medbay Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/medical/hallway/snd) +"buh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/rnd/workshop) +"bup" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance/engi{ + req_one_access = list(11,24) + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_monitoring) +"buT" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/prison) +"buZ" = ( +/obj/structure/table/standard, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/machinery/recharger, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/storage/art) +"bvI" = ( +/obj/structure/cable{ + 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 = 24 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/east/snd) +"bvZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 4; + name = "Research"; + sortType = "Research" + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/research) +"bwn" = ( +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -12; + pixel_y = -24 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/yellow/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/yellow/bordercorner2, +/obj/effect/floor_decal/steeldecal/steel_decals_central7, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/sndaccess) +"bwE" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "rdoffice" + }, +/turf/simulated/floor/plating, +/area/surface/station/crew_quarters/heads/rdoffice) +"bwO" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/open, +/area/surface/station/ai) +"bxE" = ( +/obj/machinery/ai_status_display, +/turf/simulated/wall/r_wall, +/area/surface/station/security/tactical) +"bxR" = ( +/obj/structure/sign/directions/cargo{ + dir = 8; + pixel_y = 6 + }, +/obj/structure/sign/directions/science{ + dir = 8 + }, +/turf/simulated/wall, +/area/surface/station/hallway/primary/secondfloor/east) +"byB" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/robotics) +"byD" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/dormhallway) +"byE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_atmos{ + name = "Atmospherics Monitoring" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/engineering/atmos/monitoring) +"bzc" = ( +/obj/structure/table/glass, +/obj/item/weapon/paper_bin, +/obj/item/weapon/clipboard, +/obj/item/weapon/folder/white, +/obj/item/weapon/pen, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 6 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/lab) +"bzL" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/snd) +"bzP" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/snd) +"bzZ" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/catwalk_plated, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/airlock_sensor/airlock_exterior{ + id_tag = "com_airlock_ext_sensor"; + master_tag = "com_airlock"; + pixel_x = 24; + pixel_y = 31 + }, +/obj/effect/map_helper/airlock/sensor/ext_sensor, +/obj/effect/floor_decal/rust, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/station/hallway/secondary/secondfloor/eva_hallway) +"bAh" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "medbayquar"; + layer = 3.3; + name = "Medbay Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/medical/patient_wing) +"bAt" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/floor_decal/corner_oldtile/red{ + dir = 5 + }, +/obj/item/weapon/storage/box/shotgunshells, +/obj/item/weapon/storage/box/shotgunshells, +/obj/item/weapon/storage/box/shotgunammo, +/obj/item/weapon/storage/box/shotgunammo, +/obj/item/ammo_magazine/m45, +/obj/item/ammo_magazine/m45, +/obj/item/ammo_magazine/m45, +/obj/item/ammo_magazine/m45, +/obj/item/ammo_magazine/m45, +/obj/item/ammo_magazine/m45, +/obj/item/ammo_magazine/m9mmt, +/obj/item/ammo_magazine/m9mmt, +/obj/item/ammo_magazine/m9mmt, +/obj/item/ammo_magazine/s45, +/obj/item/ammo_magazine/s45, +/obj/item/ammo_magazine/s45, +/obj/machinery/door/window/brigdoor/southright{ + name = "Ammo Locker" + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/tactical) +"bAw" = ( +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -12; + pixel_y = -24 + }, +/obj/machinery/button/windowtint{ + id = "holodeck_tint"; + pixel_x = 11; + pixel_y = -23; + range = 14 + }, +/obj/structure/cable/green, +/obj/effect/floor_decal/steeldecal/steel_decals_central7, +/turf/simulated/floor/tiled, +/area/surface/station/holodeck_control) +"bBi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/westskybridge) +"bBz" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/multi_tile/glass{ + id_tag = null; + name = "Medbay"; + req_access = list(5) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/medical/office) +"bCu" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/window/westright{ + name = "Robotics Desk"; + req_one_access = list(29) + }, +/turf/simulated/floor/tiled, +/area/surface/station/rnd/robotics) +"bCz" = ( +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 5 + }, +/obj/structure/flora/pottedplant/drooping, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 21 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/crew_quarters/heads/cmo) +"bDD" = ( +/obj/machinery/status_display, +/turf/simulated/wall, +/area/surface/station/security/warden) +"bES" = ( +/obj/effect/floor_decal/borderfloor, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/cell_hallway) +"bEX" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "crglockdown"; + layer = 3.3; + name = "Cargo Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/quartermaster/office) +"bFk" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4; + external_pressure_bound = 140; + external_pressure_bound_default = 140 + }, +/obj/effect/decal/warning_stripes, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/station/medical/patient_wing) +"bFn" = ( +/obj/structure/table/standard, +/obj/item/weapon/towel{ + color = "#FFD700"; + name = "gold towel" + }, +/obj/item/weapon/towel{ + color = "#FFD700"; + name = "gold towel"; + pixel_x = 1; + pixel_y = 2 + }, +/obj/random/soap, +/obj/structure/cable/green{ + 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 = 24 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 1 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/quartermaster/restroom) +"bFA" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/industrial/danger, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "steel_dirty" + }, +/area/surface/outside/station/roof) +"bFF" = ( +/obj/structure/closet/secure_closet/paramedic, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/turf/simulated/floor/tiled/old_tile/white, +/area/surface/station/medical/lockerroom) +"bFV" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/security/snd) +"bGl" = ( +/obj/machinery/r_n_d/circuit_imprinter, +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/green/border, +/obj/item/weapon/reagent_containers/glass/beaker/sulphuric, +/obj/structure/sign/poster/custom{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/rnd/workshop) +"bGz" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/hallway/snd) +"bGU" = ( +/obj/machinery/deployable/barrier, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/equiptment_storage) +"bGW" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/machinery/camera/network/civilian{ + c_tag = "CIV - Dormitory South"; + dir = 6 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/hallway/secondary/secondfloor/dormhallway) +"bHc" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/obj/structure/toilet{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/crew_quarters/captain) +"bHi" = ( +/turf/simulated/wall, +/area/surface/station/security/hallway/stairwell) +"bHm" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/open, +/area/surface/station/holodeck_control) +"bHs" = ( +/obj/structure/sign/directions/roomnum{ + dir = 4 + }, +/turf/simulated/wall, +/area/surface/station/crew_quarters/sleep/Dorm_3) +"bHC" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/glass{ + name = "Hallway" + }, +/obj/structure/sign/directions/command{ + dir = 4; + pixel_y = 26 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/hallway/primary/secondfloor/west/elevator) +"bHE" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/surface/station/ai_monitored/storage/eva) +"bID" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/station/holodeck_control) +"bIW" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock{ + name = "Cargo Restroom" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/quartermaster/restroom) +"bKf" = ( +/turf/simulated/wall, +/area/surface/station/command/internalaffairs) +"bKi" = ( +/obj/machinery/computer/teleporter, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/command/teleporter) +"bKn" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/glass_security{ + name = "Security Stairwell" + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/security/hallway/stairwell) +"bLl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/weststairwell) +"bLI" = ( +/obj/machinery/door/firedoor/border_only, +/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" + }, +/obj/machinery/door/airlock{ + icon_state = "door_locked"; + locked = 1; + name = "Vacant Office" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/construction/office) +"bMW" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/quartermaster/restroom) +"bNp" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/purple/border, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/robotics) +"bOv" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 8 + }, +/turf/simulated/floor/hull{ + nitrogen = 93.7835; + outdoors = 1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/surface/outside/station/roof) +"bOC" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 9 + }, +/obj/structure/table/rack{ + layer = 2.6 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/weapon/rig/hazmat/equipped, +/obj/machinery/door/window/southright{ + name = "RD Suit"; + req_one_access = list(30) + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/crew_quarters/heads/rdoffice) +"bOH" = ( +/turf/simulated/wall, +/area/surface/station/command/teleporter) +"bOZ" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/hallway/secondary/secondfloor/civilian) +"bPV" = ( +/obj/structure/bed/chair, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/foyer) +"bQa" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/floor_decal/techfloor, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/ai) +"bQu" = ( +/obj/machinery/mecha_part_fabricator, +/turf/simulated/floor/tiled/old_tile/gray, +/area/surface/station/rnd/robotics) +"bQC" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/construction/office) +"bQS" = ( +/obj/machinery/status_display, +/turf/simulated/wall, +/area/surface/station/engineering/hallway/snd) +"bQX" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable/green, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "bridge_center" + }, +/turf/simulated/floor/plating, +/area/surface/station/command/operations) +"bRL" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 21 + }, +/obj/machinery/button/remote/blast_door{ + id = "cell_2"; + name = "Cell 2 Door"; + pixel_x = -6; + pixel_y = 36; + req_one_access = list(2,4) + }, +/obj/machinery/button/flasher{ + id = "cell2flash"; + name = "Cell 2 Flash"; + pixel_x = 4; + pixel_y = 36; + req_one_access = list(2,4) + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/cell_hallway) +"bRN" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/office) +"bTj" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/west) +"bTE" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/maintenance{ + name = "Engineering Maintenance Access"; + req_one_access = list(11,24) + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/locker_room) +"bTI" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/machinery/light_switch{ + pixel_x = 12; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 1 + }, +/obj/structure/flora/pottedplant/crystal, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/lab) +"bTU" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/item/weapon/stool/padded{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/holodeck_control) +"bUg" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/quartermaster/office) +"bUh" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/reactor) +"bUM" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/engineering/snd) +"bUR" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/spline/plain, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/sign/directions/cargo{ + dir = 4; + pixel_y = 38 + }, +/obj/structure/sign/directions/science{ + dir = 4; + pixel_y = 32 + }, +/obj/structure/sign/directions/elevator{ + dir = 4; + pixel_y = 26 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/weststairwell) +"bVk" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/westskybridge) +"bVq" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/ai) +"bVy" = ( +/obj/machinery/ai_status_display{ + pixel_x = -32 + }, +/turf/simulated/open, +/area/surface/station/ai/upload_foyer) +"bWg" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/structure/closet/emcloset, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + dir = 1; + pixel_y = 30 + }, +/turf/simulated/floor/tiled, +/area/surface/station/command/operations) +"bWp" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 10 + }, +/obj/structure/closet/secure_closet/personal/patient, +/obj/item/device/radio/intercom{ + pixel_y = -21 + }, +/obj/effect/floor_decal/corner/pink/border{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/patient_b) +"bWG" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 1 + }, +/obj/machinery/camera/network/engineering{ + c_tag = "ENG - Upper Hallway East" + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/snd) +"bWH" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/civilian) +"bXv" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/command) +"bXP" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 21; + pixel_y = 32 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/tactical) +"bYj" = ( +/obj/structure/table/steel, +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/item/stack/material/glass{ + amount = 50; + pixel_x = 2; + pixel_y = -2 + }, +/obj/item/weapon/bikehorn/rubberducky{ + layer = 3.1; + name = "Tux" + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/rnd/workshop) +"bYY" = ( +/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/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/engine_eva) +"bZx" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/hallway/snd) +"caY" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/open, +/area/surface/station/medical/hallway/snd) +"cbr" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/table/rack, +/obj/item/weapon/extinguisher, +/obj/item/clothing/head/hardhat/red, +/obj/item/clothing/mask/gas, +/obj/item/device/flashlight, +/obj/item/clothing/glasses/meson, +/obj/random/maintenance/security, +/obj/random/maintenance/engineering, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/east/snd) +"cbC" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/medical/psych) +"cbE" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/security/armoury) +"cco" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor, +/obj/effect/floor_decal/industrial/warning, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/ai) +"ccB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/command/operations) +"ccL" = ( +/obj/machinery/ai_status_display, +/turf/simulated/wall/r_wall, +/area/surface/station/medical/lockerroom) +"ccR" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_engineeringatmos{ + name = "Engineering"; + req_one_access = list(11,24) + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/ai_monitored/storage/eva) +"cdu" = ( +/obj/structure/sign/directions/roomnum, +/turf/simulated/wall, +/area/surface/station/crew_quarters/sleep/Dorm_1) +"cfl" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular{ + id = "cell_2"; + name = "Cell 2 Door" + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/security/prison) +"cfz" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/open, +/area/surface/station/engineering/atmos) +"cfH" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/grille, +/obj/machinery/door/blast/regular/open{ + id = "seclockdown"; + layer = 3.3; + name = "Security Lockdown" + }, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/security/hallway/snd) +"cfR" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor/corner{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/ai) +"cfT" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/machinery/newscaster{ + pixel_x = -28 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/medical/patient_wing) +"cgA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/research) +"cgE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 6 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/command/teleporter) +"cgR" = ( +/obj/structure/shuttle/engine/propulsion/burst{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/shuttle/large_escape_pod2/station) +"cht" = ( +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -12; + pixel_y = -24 + }, +/obj/machinery/button/windowtint{ + id = "bridge_center"; + pixel_x = 11; + pixel_y = -23 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/machinery/keycard_auth{ + pixel_y = -36 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7, +/turf/simulated/floor/tiled, +/area/surface/station/command/operations) +"chG" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/eva_hallway) +"chK" = ( +/obj/structure/closet/lasertag/red, +/obj/item/stack/flag/red{ + amount = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 21 + }, +/turf/simulated/floor/tiled, +/area/surface/station/holodeck_control) +"chM" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/status_display/supply_display, +/turf/simulated/floor/plating, +/area/surface/station/quartermaster/office) +"cim" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/ladder, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/east/snd) +"ciK" = ( +/obj/structure/closet/lawcloset, +/turf/simulated/floor/wood, +/area/surface/station/command/internalaffairs) +"ciU" = ( +/obj/structure/lattice, +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/green{ + d1 = 32; + d2 = 2; + icon_state = "32-2" + }, +/obj/machinery/atmospherics/pipe/zpipe/down/supply, +/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers, +/obj/structure/railing, +/obj/structure/disposalpipe/down, +/turf/simulated/open, +/area/surface/station/maintenance/cargo) +"ciX" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/surface/station/security/riot_control) +"ciZ" = ( +/turf/simulated/floor/tiled/neutral, +/area/surface/station/quartermaster/restroom) +"cjj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/crew_quarters/heads/cmo) +"cjz" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/table/rack{ + layer = 2.6 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/clothing/mask/breath, +/obj/item/clothing/suit/space/skrell/white, +/obj/item/clothing/head/helmet/space/skrell/white, +/obj/machinery/door/window/northleft{ + name = "EVA Suits"; + req_one_access = list(18) + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/ai_monitored/storage/eva) +"cjU" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/surface/station/command/internalaffairs) +"ckn" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "crglockdown"; + layer = 3.3; + name = "Cargo Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/quartermaster/foyer) +"ckU" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/snd) +"clp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/hull{ + nitrogen = 93.7835; + outdoors = 1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/surface/outside/station/roof) +"clw" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/ai/upload_foyer) +"clG" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/east) +"cmP" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/surface/station/storage/art) +"cnN" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + id = "crglockdown"; + layer = 3.3; + name = "Cargo Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/quartermaster/office) +"cpk" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/hallway/snd) +"cpQ" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/brown, +/obj/effect/zone_divider, +/turf/simulated/floor/carpet, +/area/surface/station/crew_quarters/sleep/Dorm_3) +"cqp" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "biohazard"; + layer = 3.3; + name = "Biohazard Shutter" + }, +/turf/simulated/floor/plating, +/area/surface/station/rnd/research) +"cqr" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/mining{ + name = "Quartermaster"; + req_one_access = list(41) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/quartermaster/qm) +"cqy" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/machinery/portable_atmospherics/powered/scrubber/huge, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/security/prison) +"crz" = ( +/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/old_tile/gray, +/area/surface/station/rnd/robotics) +"csC" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/obj/effect/floor_decal/techfloor/corner{ + dir = 6 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/ai_monitored/storage/eva) +"csM" = ( +/obj/machinery/optable, +/obj/machinery/oxygen_pump/anesthetic{ + pixel_y = 32 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/tiled/monofloor{ + dir = 8 + }, +/area/surface/station/rnd/robotics) +"csN" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/carpet, +/area/surface/station/crew_quarters/sleep/Dorm_1) +"ctc" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/quartermaster/qm) +"ctd" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/engineering/hallway/snd) +"ctr" = ( +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/machinery/cryopod{ + dir = 2 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/security/prison) +"ctz" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/ai_status_display, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "biohazard"; + layer = 3.3; + name = "Biohazard Shutter" + }, +/turf/simulated/floor/plating, +/area/surface/station/rnd/lab) +"cuz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 10 + }, +/obj/structure/reagent_dispensers/virusfood{ + density = 0; + pixel_x = 32; + pixel_y = 32 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/virology) +"cvd" = ( +/obj/effect/floor_decal/corner_steel_grid{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central5, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/table/standard, +/obj/item/tabloid, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/foyer) +"cvn" = ( +/obj/machinery/r_n_d/destructive_analyzer, +/turf/simulated/floor/tiled/old_tile/gray, +/area/surface/station/rnd/lab) +"cwa" = ( +/obj/structure/table/woodentable, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24; + pixel_y = -12 + }, +/obj/machinery/button/windowtint{ + dir = 4; + id = "comoffice_tint"; + pixel_x = 23; + pixel_y = 11 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/item/device/flashlight/lamp, +/obj/item/sticky_pad/random{ + pixel_x = 8; + pixel_y = -1 + }, +/turf/simulated/floor/wood, +/area/surface/station/command/liaison) +"cwu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/carpet/bcarpet, +/area/surface/station/command/internalaffairs) +"cxe" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/east) +"cxz" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/glass{ + name = "Hallway" + }, +/obj/structure/sign/directions/evac{ + dir = 8; + pixel_y = -26 + }, +/obj/structure/sign/directions/cryo{ + dir = 8; + pixel_y = -32 + }, +/obj/structure/sign/directions/stairs_down{ + dir = 8; + pixel_y = -38 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/hallway/primary/secondfloor/west/elevator) +"cxL" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/quartermaster/foyer) +"cyj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/monofloor{ + dir = 4 + }, +/area/surface/station/security/hallway/snd) +"cyN" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/techfloor/corner{ + dir = 10 + }, +/obj/effect/floor_decal/techfloor/corner{ + dir = 6 + }, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/window/brigdoor/northleft{ + id = "Cell 2"; + name = "Cell 2"; + req_access = list(); + req_one_access = list(2,4) + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/security/prison) +"cyO" = ( +/obj/machinery/porta_turret/ai_defense, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/ai) +"cyU" = ( +/obj/structure/table/wooden_reinforced, +/turf/simulated/floor/wood, +/area/surface/station/command/meeting_room) +"czC" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled, +/area/surface/station/security/prison) +"czP" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/item/clothing/mask/breath, +/obj/structure/table/rack{ + layer = 2.6 + }, +/obj/machinery/door/window/southleft{ + name = "Engineering Suits"; + req_one_access = list(11,24) + }, +/obj/item/weapon/rig/eva/equipped, +/turf/simulated/floor/tiled/dark, +/area/surface/station/ai_monitored/storage/eva) +"czT" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/station/park/skybridge) +"cAb" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/east) +"cAf" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/structure/table/reinforced, +/obj/structure/window/reinforced, +/obj/item/weapon/folder/white, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/command/operations) +"cAN" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/barricade{ + layer = 3.3 + }, +/turf/simulated/floor/plating, +/area/surface/station/construction/office) +"cBH" = ( +/obj/effect/floor_decal/rust, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "steel_dirty" + }, +/area/surface/station/engineering/hallway/eva_hallway) +"cBN" = ( +/obj/effect/floor_decal/corner_steel_grid{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 10 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/medical/hallway/snd) +"cCA" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/hallway/primary/secondfloor/west) +"cCD" = ( +/turf/simulated/wall, +/area/surface/station/crew_quarters/sleep/Dorm_1) +"cDA" = ( +/turf/simulated/wall, +/area/surface/station/crew_quarters/sleep/Dorm_2) +"cDL" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/engineering/hallway/snd) +"cDW" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled, +/area/surface/station/command/operations) +"cEl" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/portable_atmospherics/hydroponics, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/prison) +"cEm" = ( +/obj/structure/table/steel_reinforced, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 8 + }, +/obj/machinery/cell_charger, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/rnd/chargebay) +"cEH" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/structure/closet/hydrant{ + pixel_x = -32 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/research/snd) +"cFa" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1; + frequency = 1379; + id_tag = "eng_airlock_pump" + }, +/obj/effect/floor_decal/techfloor{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/engineering/hallway/eva_hallway) +"cFz" = ( +/obj/machinery/vending/snack, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/medical/patient_wing) +"cFC" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/maintenance/weststairwell/snd) +"cHC" = ( +/obj/machinery/status_display, +/turf/simulated/wall/r_wall, +/area/surface/station/medical/lockerroom) +"cIu" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/snd) +"cII" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "medbayrecquar"; + layer = 3.3; + name = "Medbay Quarantine Shutters"; + opacity = 0; + open_layer = 3.3 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/medical/office) +"cIX" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/command) +"cJv" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/research_foyer) +"cKe" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/east) +"cKD" = ( +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/camera/network/medbay{ + c_tag = "MED - Patient Hallway South" + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/patient_wing) +"cKM" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 9 + }, +/obj/structure/table/glass, +/obj/machinery/computer/med_data/laptop{ + dir = 4 + }, +/obj/machinery/newscaster{ + pixel_y = 28 + }, +/obj/effect/floor_decal/corner/pink/border{ + dir = 9 + }, +/obj/machinery/camera/network/medbay{ + c_tag = "MED - Patient Room B"; + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/patient_b) +"cLp" = ( +/obj/machinery/door/airlock/maintenance/common{ + icon_state = "door_locked"; + id_tag = "sci_raccess_north"; + locked = 1; + name = "Science Roof Access"; + req_access = list(10) + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/weststairwell/snd) +"cMh" = ( +/obj/structure/extinguisher_cabinet{ + dir = 1; + pixel_y = 30 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/hallway/secondary/secondfloor/command) +"cMo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 8 + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/surface/station/rnd/chargebay) +"cMv" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/effect/catwalk_plated, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/surface/station/security/hallway/cell_hallway) +"cMy" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/surface/station/rnd/chargebay) +"cNj" = ( +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/eva_hallway) +"cNy" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner{ + dir = 8 + }, +/obj/machinery/camera/network/engine{ + c_tag = "ENG - Monitoring Room"; + dir = 4 + }, +/obj/effect/zone_divider, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/reactor_monitoring) +"cNG" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/holodeck_control) +"cNN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/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{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/surface/station/hallway/primary/secondfloor/east) +"cNP" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/glass_security{ + name = "Security Stairwell" + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/security/hallway/stairwell) +"cNV" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/qm) +"cOb" = ( +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/patient_b) +"cOD" = ( +/turf/simulated/floor/reinforced, +/area/holodeck/alphadeck) +"cOH" = ( +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 21 + }, +/obj/item/device/radio/intercom/custom{ + pixel_y = -21 + }, +/obj/item/device/radio/intercom/private{ + dir = 1; + pixel_y = 21 + }, +/obj/effect/landmark{ + name = "tripai" + }, +/turf/simulated/floor/greengrid, +/area/surface/station/ai) +"cPi" = ( +/obj/structure/sign/warning/secure_area, +/turf/simulated/wall/r_wall, +/area/surface/station/rnd/robotics) +"cPs" = ( +/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" + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/security/hallway/cell_hallway) +"cPM" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + frequency = 1379; + id_tag = "engine_airlock_interiord2"; + name = "Reactor Access Interior"; + req_access = list(11); + req_one_access = list() + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/engineering/reactor_airlock/snd) +"cQa" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/west) +"cQO" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table/rack{ + layer = 2.6 + }, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/tank/jetpack/carbondioxide, +/obj/item/weapon/tank/jetpack/carbondioxide{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/door/window/northleft{ + name = "EVA Suits"; + req_one_access = list(18) + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/surface/station/ai_monitored/storage/eva) +"cRg" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/engineering/hallway/sndaccess) +"cRp" = ( +/obj/effect/floor_decal/spline/plain, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/external{ + frequency = 1380; + icon_state = "door_locked"; + id_tag = "large_escape_pod_2_berth_hatch"; + locked = 1; + name = "Large Escape Pod 2"; + req_access = list(13) + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/hallway/primary/secondfloor/east) +"cSu" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled, +/area/surface/station/crew_quarters/heads/chief) +"cTr" = ( +/obj/structure/sign/warning/high_voltage, +/turf/simulated/wall/r_wall, +/area/surface/station/security/hallway/cell_hallway) +"cTy" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/obj/structure/table/standard, +/obj/item/weapon/storage/laundry_basket, +/obj/machinery/light, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/hallway/secondary/secondfloor/dormhallway) +"cUU" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Research Director's Desk"; + departmentType = 5; + dir = 8; + name = "Research Director RC"; + pixel_x = 24 + }, +/obj/machinery/keycard_auth{ + pixel_y = 36 + }, +/obj/structure/table/reinforced, +/obj/item/weapon/circuitboard/teleporter, +/obj/item/weapon/circuitboard/aicore, +/obj/item/weapon/cartridge/signal/science, +/obj/item/weapon/cartridge/signal/science, +/obj/item/weapon/cartridge/signal/science, +/obj/item/device/megaphone, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/button/windowtint{ + dir = 1; + id = "rdoffice"; + pixel_x = -11; + pixel_y = 23 + }, +/obj/machinery/light_switch{ + pixel_x = 12; + pixel_y = 24 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/crew_quarters/heads/rdoffice) +"cUV" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/glass_engineeringatmos{ + name = "Engineering EVA Storage"; + req_one_access = list(11,24) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/engineering/engine_eva) +"cUZ" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/surface/station/security/warden) +"cVj" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/west) +"cVu" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable/green, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/security/warden) +"cVQ" = ( +/obj/machinery/atmospherics/pipe/tank/nitrous_oxide, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/surface/station/security/riot_control) +"cVS" = ( +/obj/machinery/ai_status_display, +/turf/simulated/wall, +/area/surface/station/medical/patient_wing) +"cWd" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/green, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/ai_monitored/storage/eva) +"cWp" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/west/elevator) +"cWE" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/closet, +/obj/item/device/tape/random, +/obj/item/device/taperecorder, +/obj/item/device/camera{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/device/camera, +/obj/item/device/flash, +/obj/item/device/flash, +/obj/item/weapon/storage/secure/briefcase, +/obj/item/weapon/storage/secure/briefcase{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/briefcase{ + pixel_y = 6 + }, +/obj/item/weapon/storage/briefcase, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/wood, +/area/surface/station/command/internalaffairs) +"cXS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/glass{ + name = "Hallway" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/hallway/secondary/secondfloor/weststairwell) +"cYN" = ( +/obj/machinery/light, +/obj/effect/landmark/start{ + name = "Station Engineer" + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/locker_room) +"cZG" = ( +/obj/machinery/computer/security/engineering{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/yellow/border, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/engineering/atmos/monitoring) +"cZQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/snd) +"daf" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "commandlockdown"; + layer = 3.3; + name = "Command Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/command/operations) +"daW" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/techfloor{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4; + frequency = 1379; + id_tag = "ai_airlock_pump" + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/ai/upload_foyer) +"dbI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/engineering{ + name = "Engineering Substation"; + req_one_access = list(11,24) + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/maintenance/substation/engineering/snd) +"dcu" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/disposalpipe/segment, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "comoffice_tint" + }, +/turf/simulated/floor/plating, +/area/surface/station/command/liaison) +"dcv" = ( +/obj/machinery/papershredder, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/machinery/camera/network/medbay{ + c_tag = "MED - Office"; + dir = 1 + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24; + pixel_y = -12 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 4 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/office) +"ddE" = ( +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24; + pixel_y = -12 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/snd) +"ddU" = ( +/turf/simulated/open, +/area/surface/outside/plains/station/snd) +"del" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/park/skybridge) +"dfb" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "holodeck_tint" + }, +/turf/simulated/floor/plating, +/area/surface/station/holodeck_control) +"dfx" = ( +/obj/structure/table/steel, +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/item/weapon/reagent_containers/food/snacks/cheesiehonkers, +/obj/item/weapon/reagent_containers/food/drinks/cans/space_mountain_wind, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/rnd/workshop) +"dgv" = ( +/obj/structure/sink{ + pixel_y = 17 + }, +/obj/structure/mirror{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/effect/floor_decal/corner/white/diagonal, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/crew_quarters/captain) +"dhc" = ( +/obj/machinery/atmospherics/tvalve/mirrored/bypass{ + dir = 8 + }, +/obj/structure/closet/l3closet/virology, +/obj/item/clothing/mask/gas, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 21 + }, +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/plating, +/area/surface/station/medical/virology) +"did" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Chief Medical Officer's Desk"; + departmentType = 5; + dir = 4; + name = "Chief Medical Officer RC"; + pixel_x = -24 + }, +/obj/machinery/photocopier/faxmachine{ + department = "CMO's Office" + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/crew_quarters/heads/cmo) +"din" = ( +/obj/effect/floor_decal/borderfloor, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/effect/floor_decal/corner/yellow/border, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + pixel_y = -21 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/snd) +"dip" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/west) +"djl" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + id = "biohazard"; + layer = 3.3; + name = "Biohazard Shutter" + }, +/turf/simulated/floor/plating, +/area/surface/station/rnd/lab) +"djH" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/open, +/area/surface/station/ai/upload_foyer) +"djP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/westskybridge) +"djZ" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock/medical{ + name = "Patient Room A" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/medical/patient_a) +"dki" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/command) +"dkm" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/camera/network/security{ + c_tag = "SEC - Armory Tactical"; + dir = 10 + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/surface/station/security/tactical) +"dkR" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/monofloor, +/area/surface/station/quartermaster/foyer) +"dlj" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table/rack, +/obj/effect/floor_decal/corner_oldtile/red{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/item/ammo_magazine/m9mmt/rubber, +/obj/item/ammo_magazine/m9mmt/rubber{ + pixel_x = 2; + pixel_y = -2 + }, +/obj/item/ammo_magazine/m9mmt/rubber{ + pixel_x = 3; + pixel_y = -4 + }, +/obj/item/ammo_magazine/m45/rubber, +/obj/item/ammo_magazine/m45/rubber, +/obj/item/ammo_magazine/m45/rubber, +/obj/item/ammo_magazine/m45/rubber, +/obj/item/ammo_magazine/m45/rubber, +/obj/item/ammo_magazine/m45/rubber, +/obj/item/ammo_magazine/s45/rubber, +/obj/item/ammo_magazine/s45/rubber, +/obj/item/ammo_magazine/s45/rubber, +/obj/machinery/door/window/brigdoor/eastleft{ + name = "Ammo Locker" + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/armoury) +"dlk" = ( +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "seclockdown"; + layer = 3.3; + name = "Security Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/security/hallway/stairwell) +"dlr" = ( +/obj/machinery/door/firedoor/border_only, +/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/airlock/glass_research{ + name = "Workshop" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/rnd/workshop) +"dlA" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3, +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/exam_room) +"dmb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/black{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/virology) +"dmm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_engineering{ + name = "Engineering Hallway" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/engineering/foyer/secondfloor) +"dmy" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/green, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "bridge_center" + }, +/turf/simulated/floor/plating, +/area/surface/station/command/operations) +"dmP" = ( +/turf/simulated/wall, +/area/surface/station/quartermaster/qm) +"dmV" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Station Engineer" + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/locker_room) +"doE" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/quartermaster/foyer) +"doF" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/white/border, +/obj/machinery/washing_machine, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/hallway/secondary/secondfloor/dormhallway) +"dph" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/porta_turret/industrial/teleport_defense, +/obj/effect/zone_divider, +/turf/simulated/floor/tiled/dark, +/area/surface/station/command/teleporter) +"dpv" = ( +/obj/structure/sign/warning/secure_area/armory, +/turf/simulated/wall, +/area/surface/station/security/equiptment_storage) +"dpy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/bordercorner{ + dir = 4 + }, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/civilian) +"dpF" = ( +/obj/machinery/computer/operating, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/tiled/monofloor{ + dir = 4 + }, +/area/surface/station/rnd/robotics) +"dpL" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/wall/r_wall, +/area/surface/station/ai/upload_foyer) +"dqZ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos/monitoring) +"drJ" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/carpet, +/area/surface/station/crew_quarters/sleep/Dorm_2) +"drT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/rnd/workshop) +"dtd" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/yellow/border, +/obj/machinery/computer/shutoff_monitor{ + dir = 1 + }, +/obj/machinery/camera/network/engineering{ + c_tag = "ENG - Atmospherics Monitoring"; + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/engineering/atmos/monitoring) +"dtl" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/hull{ + nitrogen = 93.7835; + outdoors = 1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/surface/outside/station/roof) +"dtn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/green/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/westskybridge) +"dts" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/catwalk_plated/dark, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/surface/station/ai) +"dtB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/civilian) +"duL" = ( +/obj/effect/landmark/start{ + name = "Station Engineer" + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/locker_room) +"dvg" = ( +/obj/machinery/recharger/wallcharger{ + pixel_x = 32 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/snd) +"dvr" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/item/stack/material/glass{ + amount = 50; + pixel_x = 2; + pixel_y = -2 + }, +/obj/item/stack/material/steel{ + amount = 50 + }, +/obj/item/stack/material/copper{ + amount = 20 + }, +/obj/item/clothing/glasses/welding, +/obj/machinery/recharger, +/obj/effect/floor_decal/corner/purple/border{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/lab) +"dvv" = ( +/obj/structure/table/wooden_reinforced, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Station Manager's Desk"; + departmentType = 5; + dir = 8; + name = "Station Manager RC"; + pixel_x = 24 + }, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/captain) +"dvC" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 8 + }, +/obj/structure/cable/green, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/effect/zone_divider, +/turf/simulated/floor/plating, +/area/surface/station/ai_monitored/storage/eva) +"dvW" = ( +/obj/structure/table/wooden_reinforced, +/obj/machinery/computer/skills{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/captain) +"dvZ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/east) +"dwc" = ( +/obj/machinery/computer/power_monitor{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/reactor_monitoring) +"dwN" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/warden) +"dwW" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/bed/padded, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/red/bordercorner, +/obj/item/weapon/bedsheet/orange, +/turf/simulated/floor/tiled, +/area/surface/station/security/prison) +"dxp" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central5, +/turf/simulated/floor/tiled/old_tile/gray, +/area/surface/station/rnd/lab) +"dxY" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/industrial/danger, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/armoury) +"dyo" = ( +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/structure/cable/green{ + 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 = 24 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/command) +"dyz" = ( +/obj/effect/floor_decal/techfloor{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/machinery/light/small, +/obj/machinery/camera/network/second_floor{ + c_tag = "Second Floor -East Hallway Airlock"; + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/hallway/primary/secondfloor/east) +"dzQ" = ( +/obj/structure/table/steel, +/obj/item/device/floor_painter, +/obj/item/device/multitool, +/obj/item/weapon/storage/belt/utility, +/obj/item/weapon/storage/belt/utility, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/sndaccess) +"dAV" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/east) +"dBq" = ( +/obj/structure/table/steel, +/obj/machinery/cell_charger, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/medbay/snd) +"dBZ" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Chief Engineer's Desk"; + departmentType = 6; + dir = 8; + name = "Chief Engineer RC"; + pixel_x = 24 + }, +/turf/simulated/floor/tiled, +/area/surface/station/crew_quarters/heads/chief) +"dCF" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/research_foyer) +"dDD" = ( +/obj/machinery/suit_cycler/engineering, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/surface/station/ai_monitored/storage/eva) +"dDQ" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/quartermaster/office) +"dET" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/spline/plain, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/structure/sign/directions/dorms{ + dir = 8; + pixel_y = 26 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/weststairwell) +"dFl" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "medbayquar"; + layer = 3.3; + name = "Medbay Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/medical/office) +"dFq" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/hallway/secondary/secondfloor/civilian) +"dFx" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/security/tactical) +"dFJ" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/hallway/secondary/secondfloor/dormhallway) +"dGa" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/command/operations) +"dGb" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central5, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/rnd/robotics) +"dGi" = ( +/obj/structure/closet/secure_closet/medical3, +/obj/item/weapon/soap/nanotrasen, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/turf/simulated/floor/tiled/old_tile/white, +/area/surface/station/medical/lockerroom) +"dGp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24; + pixel_y = -12 + }, +/obj/effect/catwalk_plated/dark, +/obj/machinery/power/sensor{ + name = "Powernet Sensor - Command Subgrid"; + name_tag = "Command Subgrid" + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/command) +"dGB" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/table/glass, +/obj/item/device/antibody_scanner{ + pixel_y = 4 + }, +/obj/item/device/antibody_scanner, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/virology) +"dGD" = ( +/obj/machinery/papershredder, +/turf/simulated/floor/wood/sif, +/area/surface/station/rnd/research) +"dGS" = ( +/obj/machinery/atmospherics/pipe/simple/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/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/command) +"dHb" = ( +/obj/structure/lattice, +/obj/structure/grille, +/turf/simulated/open, +/area/surface/station/ai) +"dHm" = ( +/obj/effect/zone_divider, +/turf/simulated/wall/r_wall, +/area/surface/station/engineering/reactor_monitoring) +"dHp" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/danger/corner{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "steel_dirty" + }, +/area/surface/outside/station/roof) +"dHO" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/east) +"dHZ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central5, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/research) +"dKp" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/engineering/hallway/sndaccess) +"dKS" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/command) +"dLh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/command) +"dLD" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/engineering/engi_restroom) +"dMc" = ( +/obj/effect/floor_decal/techfloor{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/machinery/portable_atmospherics/powered/scrubber/huge, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/security/prison) +"dMo" = ( +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Operations"; + departmentType = 5; + dir = 4; + name = "Operations RC"; + pixel_x = -24 + }, +/turf/simulated/floor/tiled, +/area/surface/station/command/operations) +"dMJ" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/floor_decal/techfloor/corner{ + dir = 9 + }, +/obj/effect/floor_decal/techfloor{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/ai) +"dNg" = ( +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + dir = 1; + pixel_y = 30 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/reactor) +"dNq" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 6 + }, +/obj/structure/window/reinforced, +/obj/machinery/computer/med_data{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/command/operations) +"dOC" = ( +/obj/machinery/ai_status_display, +/turf/simulated/wall/r_wall, +/area/surface/station/ai) +"dOD" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor/border_only, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_monitoring) +"dPI" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/surface/station/command/meeting_room) +"dQB" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/eva_hallway) +"dQK" = ( +/obj/structure/sign/directions/pool{ + dir = 8 + }, +/obj/structure/sign/directions/stairs_down{ + dir = 8; + pixel_y = -6 + }, +/turf/simulated/wall, +/area/surface/station/hallway/secondary/secondfloor/civilian) +"dSh" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 6 + }, +/obj/structure/curtain/open/shower/security, +/obj/machinery/shower{ + dir = 8; + pixel_x = -5; + pixel_y = -1 + }, +/turf/simulated/floor/tiled/eris, +/area/surface/station/security/prison) +"dSr" = ( +/obj/structure/ladder, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/airlock_sensor/airlock_interior{ + id_tag = "eng_al_int_snsrd2"; + master_tag = "engine_room_airlockd2"; + pixel_x = -22; + req_access = list(10) + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/engineering/reactor_room) +"dSt" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/brown/bordercorner, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/office) +"dSM" = ( +/obj/machinery/button/remote/airlock{ + id = "sci_raccess_north"; + name = "Door Bolt Control"; + pixel_y = 24; + req_access = list(10); + specialfunctions = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/weststairwell/snd) +"dST" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/security/hallway/snd) +"dTW" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/papershredder, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 10 + }, +/obj/machinery/ai_status_display{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/crew_quarters/heads/cmo) +"dUn" = ( +/obj/structure/table/steel, +/obj/item/weapon/paper_bin, +/obj/item/weapon/clipboard, +/obj/item/weapon/pen, +/obj/item/weapon/pen/red{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/device/retail_scanner/cargo, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/office) +"dUH" = ( +/obj/effect/zone_divider, +/turf/simulated/floor/hull{ + nitrogen = 93.7835; + outdoors = 1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/surface/outside/station/roof) +"dUQ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/sndaccess) +"dVt" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/east) +"dVQ" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/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/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/snd) +"dWd" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/east) +"dWg" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/west/elevator) +"dWs" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/clothing/mask/breath, +/obj/item/weapon/rig/ce/equipped, +/obj/machinery/door/window/northright{ + name = "Chief Engineer Suit Storage"; + req_one_access = list(10) + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/crew_quarters/heads/chief) +"dWt" = ( +/obj/machinery/atmospherics/valve/digital, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/command) +"dWx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/green/bordercorner2{ + dir = 5 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/westskybridge) +"dWJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/floor_decal/industrial/warning, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/eva_hallway) +"dWN" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/security/lobby) +"dWP" = ( +/obj/structure/railing, +/turf/simulated/open, +/area/surface/outside/plains/station/snd) +"dYd" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/patient_wing) +"dYt" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/surface/station/hallway/secondary/secondfloor/command) +"dYD" = ( +/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/maintenance{ + req_one_access = list(12) + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/cargo) +"eaD" = ( +/obj/structure/cable/green{ + 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{ + id_tag = "droom2"; + name = "Room 2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/crew_quarters/sleep/Dorm_2) +"eaQ" = ( +/obj/item/device/radio/intercom{ + desc = "Talk... listen through this."; + name = "Station Intercom (Brig Radio)"; + pixel_y = -21; + wires = 7 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/surface/station/crew_quarters/sleep/Dorm_3) +"eaX" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/station/holodeck_control) +"ebp" = ( +/obj/machinery/light/small, +/obj/structure/closet/hydrant{ + pixel_x = -32 + }, +/obj/item/clothing/glasses/meson, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/engineering/snd) +"ebq" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/monofloor, +/area/surface/station/hallway/secondary/secondfloor/dormhallway) +"ebW" = ( +/obj/structure/table/reinforced, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/item/weapon/clipboard, +/obj/item/weapon/folder/yellow_ce, +/obj/item/weapon/pen/multi, +/obj/item/sticky_pad/random, +/obj/item/weapon/stamp/ce, +/turf/simulated/floor/tiled, +/area/surface/station/crew_quarters/heads/chief) +"ecx" = ( +/turf/simulated/wall, +/area/surface/station/quartermaster/office) +"edr" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/patient_wing) +"edw" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/airlock_sensor/airlock_interior{ + id_tag = "ai_airlock_int_sensor"; + master_tag = "ai_airlock"; + pixel_x = 24; + pixel_y = 31 + }, +/obj/effect/map_helper/airlock/sensor/int_sensor, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/ai/upload_foyer) +"ees" = ( +/obj/machinery/newscaster/security_unit{ + pixel_x = -28 + }, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/captain) +"eeA" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_engineering{ + name = "Engineering Hallway" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/engineering/foyer/secondfloor) +"eeH" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "meeting" + }, +/obj/machinery/door/blast/regular/open{ + id = "commandlockdown"; + layer = 3.3; + name = "Command Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/command/meeting_room) +"eeI" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/zone_divider, +/turf/simulated/open, +/area/surface/station/engineering/reactor_monitoring) +"efC" = ( +/turf/simulated/shuttle/wall, +/area/shuttle/large_escape_pod2/station) +"ehf" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/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/directions/science{ + dir = 8; + pixel_y = 38 + }, +/obj/structure/sign/directions/cargo{ + dir = 8; + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/civilian) +"ehU" = ( +/obj/machinery/status_display, +/turf/simulated/wall/r_wall, +/area/surface/station/security/tactical) +"ehY" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central5, +/obj/effect/floor_decal/corner/white{ + dir = 5 + }, +/mob/living/simple_mob/slime/xenobio/rainbow/kendrick, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/crew_quarters/heads/rdoffice) +"eis" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/security/prison) +"ejL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/captain) +"ekz" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/east) +"emo" = ( +/obj/structure/sign/directions/elevator{ + dir = 1; + pixel_x = 32 + }, +/obj/structure/sign/directions/stairs_down{ + dir = 1; + pixel_x = 32; + pixel_y = -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/station/hallway/primary/secondfloor/east) +"emq" = ( +/obj/machinery/r_n_d/protolathe, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/surface/station/rnd/lab) +"emy" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/purple/bordercorner2{ + dir = 8 + }, +/obj/structure/sink/generic{ + dir = 4; + pixel_x = -12; + pixel_y = -4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/robotics) +"enk" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/holodeck_control) +"epb" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/reactor_monitoring) +"epj" = ( +/obj/structure/table/glass, +/obj/effect/floor_decal/corner/white{ + dir = 5 + }, +/obj/effect/floor_decal/corner/white{ + dir = 10 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/item/weapon/storage/box/gloves{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/box/masks, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/virology) +"epI" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/hallway/snd) +"epM" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/engineering/atmos/monitoring) +"epV" = ( +/turf/simulated/wall, +/area/surface/station/rnd/chargebay) +"epW" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/ai) +"eqb" = ( +/obj/structure/catwalk, +/turf/simulated/open, +/area/surface/station/engineering/reactor_room) +"erp" = ( +/obj/structure/railing, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/turf/simulated/open, +/area/surface/station/park/skybridge) +"erq" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/patient_wing) +"erx" = ( +/obj/machinery/photocopier, +/turf/simulated/floor/wood/sif, +/area/surface/station/rnd/research) +"erC" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/manifold/hidden, +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "roof_airlock_inner"; + locked = 1; + name = "Internal Access" + }, +/obj/effect/map_helper/airlock/door/int_door, +/obj/machinery/access_button/airlock_interior{ + dir = 4; + master_tag = "roof_airlock"; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/hallway/primary/secondfloor/east) +"erQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/west) +"erV" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 1 + }, +/obj/machinery/camera/network/engineering{ + c_tag = "ENG - Upper Hallway West" + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/snd) +"esb" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/green, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/security/warden) +"esi" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/ai_monitored/storage/eva) +"esH" = ( +/obj/structure/table/wooden_reinforced, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -21 + }, +/obj/item/weapon/material/ashtray/glass, +/obj/item/device/flashlight/lamp/green, +/obj/item/sticky_pad/random{ + pixel_x = 8; + pixel_y = -1 + }, +/obj/effect/zone_divider, +/turf/simulated/floor/wood, +/area/surface/station/command/internalaffairs) +"esP" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/sndaccess) +"esY" = ( +/obj/structure/table/glass, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/hallway/secondary/secondfloor/westskybridge) +"eta" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/bordercorner{ + dir = 1 + }, +/obj/structure/table/steel, +/obj/machinery/microwave, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/prison) +"etu" = ( +/obj/structure/table/reinforced, +/obj/structure/cable/green, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -12; + pixel_y = -24 + }, +/obj/machinery/button/windowtint{ + id = "ceoffice"; + pixel_x = 11; + pixel_y = -23 + }, +/obj/item/weapon/rcd_ammo{ + pixel_y = -2 + }, +/obj/item/weapon/rcd_ammo{ + pixel_x = -2 + }, +/obj/item/weapon/rcd_ammo{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/item/weapon/rcd_ammo{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/item/weapon/rcd, +/obj/item/weapon/cell/high, +/obj/item/weapon/cell/high, +/obj/effect/floor_decal/steeldecal/steel_decals_central7, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/crew_quarters/heads/chief) +"etV" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/east) +"eua" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "meeting" + }, +/turf/simulated/floor/plating, +/area/surface/station/command/meeting_room) +"eum" = ( +/obj/machinery/door/blast/regular/open{ + id = "seclockdown"; + layer = 3.3; + name = "Security Lockdown" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/security/hallway/stairwell) +"evo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/sndaccess) +"evK" = ( +/obj/item/modular_computer/console/preset/engineering{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/reactor_monitoring) +"ewE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/east) +"ewW" = ( +/obj/effect/floor_decal/techfloor/corner{ + dir = 6 + }, +/obj/effect/floor_decal/techfloor{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/ai) +"exZ" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/steeldecal/steel_decals3, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/surface/station/construction/office) +"eyg" = ( +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/sndaccess) +"eza" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/prison) +"ezu" = ( +/obj/machinery/recharge_station, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/surface/station/medical/restroom) +"ezx" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/glass_mining{ + name = "Cargo stairwell"; + req_one_access = list(50) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/quartermaster/office) +"ezy" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/surface/station/crew_quarters/captain) +"eAk" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "rdoffice" + }, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "biohazard"; + layer = 3.3; + name = "Biohazard Shutter" + }, +/turf/simulated/floor/plating, +/area/surface/station/crew_quarters/heads/rdoffice) +"eCu" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "steel_dirty" + }, +/area/surface/outside/station/roof) +"eCE" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/machinery/newscaster{ + pixel_x = 28 + }, +/turf/simulated/floor/tiled, +/area/surface/station/crew_quarters/heads/chief) +"eCT" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/closet/hydrant{ + pixel_x = 32 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/medbay/snd) +"eDh" = ( +/obj/machinery/vending/cola, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/medical/patient_wing) +"eDj" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Quartermaster" + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/quartermaster/qm) +"eEh" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/floor_decal/techfloor/corner{ + dir = 9 + }, +/obj/effect/floor_decal/techfloor{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/ai) +"eFe" = ( +/obj/structure/closet/wardrobe/atmospherics_yellow, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/tiled/yellow, +/area/surface/station/engineering/locker_room) +"eFg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/catwalk_plated, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/station/security/hallway/snd) +"eFH" = ( +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/patient_wing) +"eGB" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/security/warden) +"eGT" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/obj/machinery/door/blast/regular/open{ + id = "virologyquar"; + layer = 3.3; + name = "Virology Quarantine Blast Doors" + }, +/obj/structure/sign/warning/biohazard{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/medical/patient_wing) +"eHn" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/hatch{ + icon_state = "door_locked"; + id_tag = null; + locked = 1; + name = "AI Core"; + req_access = list(16); + req_one_access = null + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/ai) +"eHO" = ( +/turf/simulated/wall, +/area/surface/station/engineering/locker_room) +"eIH" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/catwalk_plated/dark, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/cargo) +"eJm" = ( +/turf/simulated/open, +/area/surface/station/ai/upload_foyer) +"eJA" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/effect/floor_decal/rust/mono_rusted3, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/engineering/engine_eva) +"eJO" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/eva_hallway) +"eJZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/purple/border, +/obj/effect/floor_decal/borderfloorwhite/corner2, +/obj/effect/floor_decal/corner/purple/bordercorner2, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/research) +"eLU" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 10 + }, +/obj/structure/window/reinforced, +/obj/item/modular_computer/console/preset/medical{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/command/operations) +"eLZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/patient_wing) +"eMf" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/storage/art) +"eMr" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/security/hallway/cell_hallway) +"eMs" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/medical/patient_wing) +"eMY" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular/open{ + id = "commandlockdown"; + layer = 3.3; + name = "Command Lockdown" + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/command/operations) +"eNg" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/research) +"eOn" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/cell_hallway) +"eOo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/monofloor{ + dir = 8 + }, +/area/surface/station/engineering/atmos/monitoring) +"eOr" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central5, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/snd) +"eOH" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/surface/station/crew_quarters/sleep/Dorm_3) +"eOT" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular/open{ + id = "medbayquar"; + layer = 3.3; + name = "Medbay Lockdown" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/medical/office) +"eOZ" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/rnd/workshop) +"ePk" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/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 = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/holodeck_control) +"ePE" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor/glass, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/park/skybridge) +"ePG" = ( +/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/extinguisher_cabinet{ + dir = 1; + pixel_y = 30 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/civilian) +"ePK" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/blast/regular/open{ + id = "commandlockdown"; + layer = 3.3; + name = "Command Lockdown" + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/hallway/secondary/secondfloor/command) +"eQg" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/security/prison) +"eQB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/surface/station/security/riot_control) +"eQJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/machinery/camera/network/command{ + c_tag = "COM - Hallway West" + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/command) +"eRj" = ( +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 21 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/research_foyer) +"eRm" = ( +/obj/effect/floor_decal/techfloor{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/machinery/light/small, +/obj/structure/sign/warning/cold{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/engineering/hallway/eva_hallway) +"eRA" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/command/operations) +"eSa" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/command/operations) +"eSn" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "biohazard"; + layer = 3.3; + name = "Biohazard Shutter" + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/rnd/research_foyer) +"eSs" = ( +/obj/machinery/newscaster{ + pixel_x = -28 + }, +/obj/structure/closet/secure_closet/personal, +/obj/effect/zone_divider, +/turf/simulated/floor/carpet, +/area/surface/station/crew_quarters/sleep/Dorm_3) +"eSt" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/camera/network/engineering{ + c_tag = "ENG - Enterance Upper"; + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/engineering/hallway/sndaccess) +"eSz" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "medbayquar"; + layer = 3.3; + name = "Medbay Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/medical/patient_wing) +"eSC" = ( +/obj/structure/table/wooden_reinforced, +/obj/machinery/computer/skills{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 21 + }, +/turf/simulated/floor/wood, +/area/surface/station/command/meeting_room) +"eTe" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/open, +/area/surface/station/hallway/primary/secondfloor/east) +"eTf" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/weststairwell) +"eUh" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing, +/turf/simulated/open, +/area/surface/station/hallway/secondary/secondfloor/weststairwell) +"eUC" = ( +/obj/structure/sign/directions/engineering/engeqp{ + dir = 8; + pixel_y = 6 + }, +/obj/structure/sign/directions/engineering/reactor{ + dir = 1 + }, +/obj/structure/sign/directions/engineering/atmospherics{ + pixel_y = -6 + }, +/turf/simulated/wall, +/area/surface/station/engineering/hallway/snd) +"eUJ" = ( +/obj/item/weapon/banner/nt, +/turf/simulated/floor/wood, +/area/surface/station/command/meeting_room) +"eVk" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/green/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/station/holodeck_control) +"eVA" = ( +/obj/effect/floor_decal/spline/plain, +/obj/structure/filingcabinet/chestdrawer, +/turf/simulated/floor/wood/sif, +/area/surface/station/rnd/research) +"eVF" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/hallway/primary/secondfloor/east) +"eVX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/westskybridge) +"eWj" = ( +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24; + pixel_y = -12 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/security/prison) +"eWY" = ( +/obj/item/wheelchair, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/pink/border{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/exam_room) +"eXC" = ( +/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 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/east) +"eXV" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/machinery/computer/guestpass{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled, +/area/surface/station/command/operations) +"eZa" = ( +/obj/structure/cable/green, +/obj/effect/floor_decal/borderfloor, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -12; + pixel_y = -24 + }, +/obj/effect/floor_decal/corner/yellow/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/yellow/bordercorner2, +/obj/effect/floor_decal/steeldecal/steel_decals_central7, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/snd) +"eZL" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "eng_airlock_inner"; + locked = 1; + name = "Engineering Internal Access" + }, +/obj/effect/map_helper/airlock/door/int_door, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/engineering/hallway/eva_hallway) +"faq" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -24; + pixel_y = 12 + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/west/elevator) +"fau" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/command) +"faF" = ( +/obj/machinery/door/firedoor/border_only, +/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" + }, +/obj/machinery/door/airlock/maintenance{ + name = "Security Maintenance Access"; + req_access = list(1) + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/maintenance/substation/security/snd) +"fbe" = ( +/obj/structure/table/glass, +/obj/item/weapon/paper_bin, +/obj/item/weapon/pen, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/office) +"fbr" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/yellow/border, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/engine_eva) +"fbv" = ( +/obj/machinery/recharge_station, +/obj/effect/floor_decal/techfloor{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/security/prison) +"fcm" = ( +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/shutters{ + dir = 2; + id = "Skynet_launch"; + name = "Mech Bay" + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/rnd/chargebay) +"fcn" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/structure/closet{ + name = "Prisoner's Locker" + }, +/obj/random/cigarettes, +/obj/item/weapon/flame/lighter/zippo, +/turf/simulated/floor/tiled, +/area/surface/station/security/prison) +"fct" = ( +/obj/structure/closet/secure_closet/captains, +/turf/simulated/floor/carpet, +/area/surface/station/crew_quarters/captain) +"fcv" = ( +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/table/standard, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/glass, +/obj/item/weapon/storage/toolbox/electrical{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/weapon/storage/toolbox/mechanical, +/obj/item/device/multitool, +/obj/item/clothing/head/welding, +/obj/item/weapon/storage/belt/utility, +/obj/machinery/requests_console{ + department = "EVA"; + name = "EVA RC"; + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/station/ai_monitored/storage/eva) +"fdJ" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/green/bordercorner, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/civilian) +"fdP" = ( +/obj/structure/sign/warning/nosmoking_2, +/turf/simulated/wall, +/area/surface/station/engineering/atmos/monitoring) +"fee" = ( +/obj/structure/table/steel_reinforced, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/machinery/cell_charger, +/obj/machinery/button/remote/blast_door{ + dir = 1; + id = "Skynet_launch"; + name = "Mech Bay Door Control"; + pixel_y = -24; + req_access = list(29) + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/rnd/chargebay) +"fek" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/medical/restroom) +"feu" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/east) +"ffk" = ( +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "crglockdown"; + layer = 3.3; + name = "Cargo Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/cargo) +"fgt" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/green/border, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/civilian) +"fgN" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/security/prison) +"fhs" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/status_display, +/turf/simulated/floor/plating, +/area/surface/station/hallway/primary/secondfloor/east) +"fhQ" = ( +/obj/machinery/door/airlock{ + name = "Unit 1" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/engineering/engi_restroom) +"fhY" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/button/remote/blast_door{ + id = "cell_1"; + name = "Cell 1 Door"; + pixel_x = -6; + pixel_y = 36; + req_one_access = list(2,4) + }, +/obj/machinery/button/flasher{ + id = "cell1flash"; + name = "Cell 1 Flash"; + pixel_x = 4; + pixel_y = 36; + req_one_access = list(2,4) + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 21 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/cell_hallway) +"fiY" = ( +/turf/simulated/floor/tiled/monotile, +/area/surface/station/quartermaster/qm) +"fke" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "meeting" + }, +/obj/machinery/door/blast/regular/open{ + id = "commandlockdown"; + layer = 3.3; + name = "Command Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/command/meeting_room) +"fkm" = ( +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/engineering/reactor_room) +"fkz" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular{ + id = "cell_1"; + name = "Cell 1 Door" + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/security/prison) +"flb" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/office) +"flA" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/closet/secure_closet/atmos_personal, +/turf/simulated/floor/tiled/yellow, +/area/surface/station/engineering/locker_room) +"fnp" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/table/wooden_reinforced, +/obj/item/weapon/storage/box/matches, +/obj/item/clothing/mask/smokable/cigarette/cigar/havana, +/obj/item/weapon/reagent_containers/food/drinks/flask, +/obj/random_multi/single_item/captains_spare_id, +/obj/item/weapon/material/ashtray/bronze, +/turf/simulated/floor/carpet, +/area/surface/station/crew_quarters/captain) +"fnz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/carpet/sblucarpet, +/area/surface/station/medical/psych) +"fom" = ( +/obj/machinery/sleeper{ + dir = 4 + }, +/turf/simulated/shuttle/floor, +/area/shuttle/large_escape_pod2/station) +"foD" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "meeting" + }, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "commandlockdown"; + layer = 3.3; + name = "Command Lockdown" + }, +/obj/machinery/status_display, +/turf/simulated/floor/plating, +/area/surface/station/command/meeting_room) +"foJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/weststairwell) +"fpf" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 8 + }, +/obj/structure/closet/secure_closet/personal/patient, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/virology) +"fpg" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/bordercorner{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/westskybridge) +"fpm" = ( +/obj/structure/sign/directions/ai_core{ + pixel_y = -6 + }, +/obj/structure/sign/directions/dorms{ + dir = 8; + pixel_y = 6 + }, +/obj/structure/sign/directions/evac{ + dir = 8 + }, +/turf/simulated/wall/r_wall, +/area/surface/station/command/meeting_room) +"fpv" = ( +/obj/machinery/newscaster{ + pixel_y = 28 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/locker_room) +"fqz" = ( +/obj/structure/table/glass, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/hallway/secondary/secondfloor/civilian) +"fra" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/weapon/gun/projectile/shotgun/pump{ + pixel_x = -1; + pixel_y = 2 + }, +/obj/item/weapon/gun/projectile/shotgun/pump, +/obj/effect/floor_decal/corner_oldtile/green{ + dir = 6 + }, +/obj/machinery/door/window/brigdoor/westright{ + name = "Weapons Locker" + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/armoury) +"frn" = ( +/turf/simulated/open, +/area/surface/station/engineering/atmos) +"frs" = ( +/obj/structure/window/basic{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/button/remote/driver{ + id = "enginecore"; + name = "Emergency Core Eject"; + pixel_y = -21 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/crew_quarters/heads/chief) +"frL" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/green/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/machinery/station_map{ + dir = 1; + pixel_y = -32 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/civilian) +"frT" = ( +/obj/structure/catwalk, +/obj/structure/lattice, +/obj/effect/zone_divider, +/turf/simulated/open, +/area/surface/outside/plains/station/snd) +"fsK" = ( +/obj/effect/floor_decal/corner/white{ + dir = 10 + }, +/obj/effect/floor_decal/corner/white{ + dir = 5 + }, +/obj/machinery/disease2/diseaseanalyser, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/virology) +"fsY" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/open, +/area/surface/station/security/hallway/stairwell) +"ftk" = ( +/obj/structure/cable/cyan{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/effect/floor_decal/techfloor/corner{ + dir = 10 + }, +/obj/structure/closet/radiation, +/obj/item/clothing/glasses/meson, +/obj/item/clothing/glasses/meson, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -24; + pixel_y = 12 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 8 + }, +/obj/effect/zone_divider, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/engineering/reactor_airlock/snd) +"fto" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/blue/bordercorner, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/command) +"ftN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/quartermaster/office) +"fvz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/eva_hallway) +"fvB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/black, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/virology) +"fwq" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/machinery/photocopier/faxmachine{ + department = "Warden's Office" + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/machinery/recharger/wallcharger{ + pixel_x = -26 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/warden) +"fww" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/reactor) +"fxm" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/sndaccess) +"fxw" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/open, +/area/surface/station/engineering/reactor_room) +"fxA" = ( +/obj/structure/filingcabinet/medical, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 10 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/office) +"fxU" = ( +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/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 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/east) +"fya" = ( +/turf/simulated/wall, +/area/surface/station/crew_quarters/sleep/Dorm_3) +"fyW" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/east) +"fzA" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/green/bordercorner, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/westskybridge) +"fzI" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/east) +"fzP" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/engineering/locker_room) +"fAt" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/ai_slipper, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/ai) +"fAu" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/surface/station/command/meeting_room) +"fAz" = ( +/obj/effect/floor_decal/borderfloorblack/corner{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/danger/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/hallway/primary/secondfloor/east) +"fAL" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/hallway/secondary/secondfloor/command) +"fAS" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/engineering/foyer/secondfloor) +"fBM" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood/sif, +/area/surface/station/rnd/research) +"fCe" = ( +/obj/structure/table/glass, +/obj/machinery/recharger, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/office) +"fCF" = ( +/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{ + dir = 4; + pixel_x = -24; + pixel_y = 12 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/office) +"fCJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock{ + name = "Visitation Area" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/security/prison) +"fCT" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/open, +/area/surface/station/engineering/foyer/secondfloor) +"fDm" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/security/hallway/snd) +"fDq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/patient_wing) +"fDM" = ( +/obj/effect/floor_decal/borderfloorwhite/corner, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/patient_wing) +"fEe" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "lawyer_tint" + }, +/turf/simulated/floor/plating, +/area/surface/station/command/internalaffairs) +"fEp" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/patient_wing) +"fEs" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/newscaster{ + pixel_x = 28 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/robotics) +"fEP" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/hallway/secondary/secondfloor/weststairwell) +"fFn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/station/park/skybridge) +"fFt" = ( +/turf/simulated/floor/carpet/bcarpet, +/area/surface/station/command/internalaffairs) +"fFK" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/brown/bordercorner, +/obj/machinery/camera/network/second_floor{ + c_tag = "Second Floor - West Hallway 2"; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/west) +"fFT" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/machinery/newscaster{ + pixel_y = -28 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/office) +"fGd" = ( +/obj/effect/floor_decal/techfloor{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/engineering/reactor_airlock/snd) +"fGj" = ( +/obj/structure/table/standard, +/obj/item/device/paicard, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/holodeck_control) +"fGl" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/locker_room) +"fGY" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/hallway/secondary/secondfloor/eva_hallway) +"fHd" = ( +/obj/machinery/door/airlock/maintenance/common{ + icon_state = "door_locked"; + id_tag = "sec_raccess_north"; + locked = 1; + name = "Security Roof Access"; + req_access = list(1) + }, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "seclockdown"; + layer = 3.3; + name = "Security Lockdown" + }, +/obj/machinery/button/remote/airlock{ + dir = 4; + id = "sec_raccess_north"; + name = "Door Bolt Control"; + pixel_x = -24; + req_access = list(1); + specialfunctions = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/security/hallway/snd) +"fHn" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/east/snd) +"fIl" = ( +/obj/machinery/door/airlock{ + name = "Unit 1" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/medical/restroom) +"fIt" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass{ + name = "Hallway" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/hallway/secondary/secondfloor/command) +"fIy" = ( +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24; + pixel_y = -12 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/hallway/stairwell) +"fJC" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/old_tile/gray, +/area/surface/station/rnd/robotics) +"fJF" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/machinery/camera/network/second_floor{ + c_tag = "Second Floor -East Hallway 2"; + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/east) +"fKa" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + id = "englockdown"; + layer = 3.3; + name = "Engineering Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/foyer/secondfloor) +"fKw" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/door/airlock/glass_security{ + id_tag = "BrigFoyerUpper"; + name = "Security Entrance"; + req_access = list(63); + req_one_access = list() + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/security/hallway/stairwell) +"fLc" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/old_tile/white, +/area/surface/station/medical/restroom) +"fLs" = ( +/obj/structure/table/standard, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/item/weapon/storage/box/handcuffs{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/storage/box/chemimp, +/obj/item/weapon/storage/box/trackimp{ + pixel_x = -3; + pixel_y = -3 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/security/armoury) +"fLJ" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "quart_tint" + }, +/obj/machinery/door/blast/regular/open{ + id = "crglockdown"; + layer = 3.3; + name = "Cargo Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/quartermaster/qm) +"fMD" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/maintenance/substation/medbay/snd) +"fNz" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 8 + }, +/turf/simulated/floor/carpet/blue, +/area/surface/station/command/meeting_room) +"fNA" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/ai) +"fNZ" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + id = "biohazard"; + layer = 3.3; + name = "Biohazard Shutter" + }, +/turf/simulated/floor/plating, +/area/surface/station/rnd/lab) +"fOa" = ( +/obj/structure/bed/chair/sofa/brown/right{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Roboticist" + }, +/turf/simulated/floor/wood/sif, +/area/surface/station/rnd/research) +"fOc" = ( +/turf/simulated/open, +/area/surface/station/ai) +"fOL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/quartermaster/office) +"fON" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/engineering{ + name = "Research Substation"; + req_one_access = list(11,24,47) + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/research/snd) +"fOO" = ( +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "crglockdown"; + layer = 3.3; + name = "Cargo Lockdown" + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/quartermaster/foyer) +"fQt" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/obj/effect/floor_decal/techfloor/corner{ + dir = 5 + }, +/obj/effect/floor_decal/techfloor/corner{ + dir = 6 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/ai_monitored/storage/eva) +"fSH" = ( +/obj/machinery/computer/general_air_control/supermatter_core{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/reactor_monitoring) +"fTe" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/research) +"fTE" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/robotics) +"fUk" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/reactor_monitoring) +"fUB" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/open, +/area/surface/station/engineering/atmos) +"fUJ" = ( +/obj/machinery/porta_turret/ai_defense, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/ai) +"fVf" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/surface/station/security/hallway/snd) +"fVr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/command/operations) +"fVK" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/park/skybridge) +"fVL" = ( +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/red/bordercorner, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/east) +"fVP" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/snd) +"fVU" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/open, +/area/surface/station/engineering/hallway/snd) +"fVX" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 2; + id_tag = "engentryaccess"; + name = "Engineering"; + req_one_access = list(10) + }, +/obj/machinery/door/firedoor/multi_tile{ + dir = 2 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/engineering/hallway/sndaccess) +"fWf" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/construction/office) +"fWi" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/research) +"fWv" = ( +/obj/machinery/computer/supplycomp/control, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/obj/machinery/requests_console{ + department = "Cargo Bay"; + departmentType = 2; + name = "Cargo RC"; + pixel_y = 24 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/office) +"fWH" = ( +/obj/structure/railing, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/simulated/open, +/area/surface/station/park/skybridge) +"fXe" = ( +/obj/effect/floor_decal/borderfloor/corner, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/snd) +"fXx" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/ai/upload_foyer) +"fXF" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/structure/closet/wardrobe/captain, +/obj/random/drinkbottle, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/carpet, +/area/surface/station/crew_quarters/captain) +"fXT" = ( +/obj/effect/floor_decal/techfloor{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/ai) +"fYo" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/blast/regular/open{ + id = "seclockdown"; + layer = 3.3; + name = "Security Lockdown" + }, +/obj/structure/cable/green, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/security/warden) +"fYp" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 6 + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/surface/station/security/warden) +"fYv" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/snd) +"fYQ" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/surface/station/security/warden) +"fZa" = ( +/obj/structure/closet/wardrobe/medic_white, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/item/device/flashlight/pen, +/obj/item/device/flashlight/pen, +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/surface/station/medical/lockerroom) +"fZB" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/snd) +"gae" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/rnd/research) +"gar" = ( +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/machinery/camera/network/command{ + c_tag = "COM - Hallway Mid" + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/command) +"gaM" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/snd) +"gaZ" = ( +/obj/structure/sign/directions/roomnum{ + dir = 6 + }, +/turf/simulated/wall, +/area/surface/station/crew_quarters/sleep/Dorm_5) +"gbs" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "seclockdown"; + layer = 3.3; + name = "Security Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/security/hallway/snd) +"gbB" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/ai_monitored/storage/eva) +"gbJ" = ( +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/ai) +"gcc" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/office) +"gcy" = ( +/obj/machinery/mech_recharger, +/obj/machinery/camera/network/research{ + c_tag = "SCI - Mech Bay" + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/rnd/chargebay) +"gcQ" = ( +/turf/simulated/wall, +/area/surface/station/medical/office) +"gdk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/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 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/command) +"gdH" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/east/snd) +"gdJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/green/border, +/obj/machinery/camera/network/second_floor{ + c_tag = "Second Floor - Civilian Hallway 2"; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/civilian) +"gdP" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing, +/turf/simulated/open, +/area/surface/station/engineering/reactor_room) +"gdX" = ( +/obj/structure/bed/chair, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/foyer) +"gdY" = ( +/turf/simulated/wall, +/area/surface/station/crew_quarters/captain) +"gef" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/snd) +"geq" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner{ + dir = 1 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/snd) +"ger" = ( +/obj/effect/floor_decal/corner_techfloor_gray{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/west) +"geK" = ( +/obj/structure/closet/wardrobe/engineering_yellow, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/tiled/yellow, +/area/surface/station/engineering/locker_room) +"geQ" = ( +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/brown/bordercorner, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/west) +"gfy" = ( +/obj/machinery/status_display{ + pixel_x = 32 + }, +/turf/simulated/open, +/area/surface/station/ai/upload_foyer) +"ggd" = ( +/turf/simulated/floor/tiled/dark, +/area/surface/station/hallway/primary/secondfloor/east) +"ggq" = ( +/obj/machinery/suit_cycler, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/surface/station/ai_monitored/storage/eva) +"ghl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/machinery/newscaster{ + pixel_y = 28 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/command) +"ghC" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "quart_tint" + }, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "crglockdown"; + layer = 3.3; + name = "Cargo Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/quartermaster/qm) +"ghO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/machinery/camera/network/command{ + c_tag = "COM - EVA Hallway"; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/eva_hallway) +"ghW" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/security/riot_control) +"gib" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/item/device/radio/intercom/department/security{ + dir = 8; + pixel_x = 21 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/hallway/primary/secondfloor/east) +"giR" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/open, +/area/surface/station/ai) +"giU" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 8 + }, +/obj/structure/table/glass, +/obj/item/roller, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/virology) +"gjN" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/civilian) +"gmx" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/turf/simulated/floor/tiled/dark, +/area/surface/station/hallway/primary/secondfloor/east) +"gmX" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/obj/machinery/station_map{ + dir = 4; + pixel_x = -32 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/east) +"gmZ" = ( +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 4 + }, +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "eng_airlock_outer"; + locked = 1; + name = "Engineering External Access" + }, +/obj/effect/map_helper/airlock/door/ext_door, +/obj/machinery/access_button/airlock_exterior{ + dir = 4; + master_tag = "eng_airlock"; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/engineering/hallway/eva_hallway) +"gnO" = ( +/obj/machinery/door/firedoor/glass, +/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/open{ + dir = 4; + id = "seclockdown"; + layer = 3.3; + name = "Security Lockdown" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/security/hallway/cell_hallway) +"goT" = ( +/obj/structure/closet/lawcloset, +/obj/item/device/flash, +/obj/item/weapon/storage/briefcase{ + pixel_y = 6 + }, +/obj/item/weapon/storage/secure/briefcase, +/turf/simulated/floor/wood, +/area/surface/station/command/liaison) +"gpz" = ( +/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{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/surface/station/park/skybridge) +"gpA" = ( +/obj/structure/table/wooden_reinforced, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/photocopier/faxmachine{ + department = "Bridge" + }, +/turf/simulated/floor/wood, +/area/surface/station/command/meeting_room) +"gqJ" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/east/snd) +"gqX" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "seclockdown"; + layer = 3.3; + name = "Security Lockdown" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/security/lobby) +"gqZ" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/surface/station/medical/restroom) +"grI" = ( +/obj/structure/sign/warning/radioactive, +/turf/simulated/wall/r_wall, +/area/surface/station/engineering/reactor_room) +"grS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/green/bordercorner, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/civilian) +"grT" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/yellow/border, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/engine_eva) +"gsa" = ( +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/bordercorner{ + dir = 1 + }, +/obj/machinery/newscaster{ + pixel_x = -28 + }, +/obj/machinery/camera/network/research{ + c_tag = "SCI - RD's Office"; + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/crew_quarters/heads/rdoffice) +"gsH" = ( +/obj/structure/reagent_dispensers/acid, +/turf/simulated/wall, +/area/surface/station/rnd/research) +"gtF" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/glass{ + name = "Hallway" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/holodeck_control) +"gud" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/extinguisher_cabinet{ + dir = 8; + pixel_x = -30 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/patient_wing) +"guq" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/patient_wing) +"gux" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible, +/turf/simulated/shuttle/floor, +/area/shuttle/large_escape_pod2/station) +"guA" = ( +/obj/item/device/radio/intercom{ + desc = "Talk... listen through this."; + name = "Station Intercom (Brig Radio)"; + pixel_y = -21; + wires = 7 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/surface/station/crew_quarters/sleep/Dorm_1) +"guE" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/green, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/security/warden) +"guV" = ( +/obj/machinery/door/firedoor/border_only, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/patient_wing) +"gvc" = ( +/turf/unsimulated/mask, +/area/surface/station/hallway/primary/secondfloor/west/elevator) +"gvm" = ( +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/snd) +"gvR" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/snd) +"gwh" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/structure/closet/secure_closet/guncabinet/sidearm, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/command/operations) +"gwq" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/obj/machinery/airlock_sensor/airlock_interior{ + dir = 4; + id_tag = "roof_airlock_int_sensor"; + master_tag = "roof_airlock"; + pixel_x = -31; + pixel_y = -35 + }, +/obj/effect/map_helper/airlock/sensor/int_sensor, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/east) +"gxe" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/hallway/primary/secondfloor/west/elevator) +"gxg" = ( +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24; + pixel_y = -12 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/medbay/snd) +"gxI" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/crew_quarters/heads/rdoffice) +"gyp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/snd) +"gyv" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/turf/simulated/floor/hull{ + nitrogen = 93.7835; + outdoors = 1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/surface/outside/station/roof) +"gyI" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/ai_monitored/storage/eva) +"gzl" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/newscaster{ + pixel_x = 28 + }, +/turf/simulated/floor/wood, +/area/surface/station/command/internalaffairs) +"gzF" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/snd) +"gAu" = ( +/obj/effect/floor_decal/techfloor{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4; + frequency = 1379; + id_tag = "roof_airlock_pump" + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/hallway/primary/secondfloor/east) +"gAD" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/weststairwell/snd) +"gAT" = ( +/obj/item/device/radio/intercom{ + desc = "Talk... listen through this."; + name = "Station Intercom (Brig Radio)"; + pixel_y = -21; + wires = 7 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/surface/station/crew_quarters/sleep/Dorm_4) +"gBc" = ( +/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, +/area/surface/station/security/hallway/snd) +"gBf" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/command/operations) +"gBK" = ( +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/engineering/atmos) +"gCb" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/hallway/primary/secondfloor/west/elevator) +"gCg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock{ + name = "Visitation Area"; + req_one_access = list(1) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/security/prison) +"gCH" = ( +/obj/effect/floor_decal/techfloor{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/structure/cryofeed{ + dir = 2 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/ai_status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/security/prison) +"gDb" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/ai_monitored/storage/eva) +"gDY" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/green, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/grille, +/obj/machinery/door/blast/regular/open{ + id = "seclockdown"; + layer = 3.3; + name = "Security Lockdown" + }, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/security/hallway/snd) +"gEy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/floor_decal/industrial/warning/dust, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "steel_dirty" + }, +/area/surface/station/ai/upload_foyer) +"gEU" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/ai) +"gFF" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/engineering/engine_eva) +"gFT" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/open, +/area/surface/station/quartermaster/office) +"gGa" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/techfloor{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/security/prison) +"gGr" = ( +/obj/structure/table/woodentable, +/obj/machinery/light{ + dir = 8 + }, +/obj/item/weapon/hand_labeler, +/obj/item/device/retail_scanner/command{ + name = "retail scanner COM" + }, +/turf/simulated/floor/wood, +/area/surface/station/command/meeting_room) +"gGy" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/hallway/secondary/secondfloor/dormhallway) +"gGJ" = ( +/obj/effect/floor_decal/techfloor{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1; + frequency = 1379; + id_tag = "com_airlock_pump" + }, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + dir = 4; + id_tag = "com_airlock"; + pixel_x = -25 + }, +/obj/machinery/airlock_sensor{ + dir = 4; + id_tag = "com_airlock_sensor"; + pixel_x = -25; + pixel_y = -11 + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/hallway/secondary/secondfloor/eva_hallway) +"gGP" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/techfloor{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4; + frequency = 1379; + id_tag = "ai_airlock_pump" + }, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + dir = 4; + id_tag = "ai_airlock"; + pixel_x = -25 + }, +/obj/machinery/airlock_sensor{ + dir = 4; + id_tag = "ai_airlock_sensor"; + pixel_x = -25; + pixel_y = -11 + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/ai/upload_foyer) +"gGW" = ( +/obj/structure/shuttle/window, +/obj/structure/grille, +/turf/simulated/shuttle/plating, +/area/shuttle/large_escape_pod2/station) +"gHg" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/east) +"gHu" = ( +/obj/effect/floor_decal/techfloor{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/engineering/atmos) +"gHx" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/techfloor{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/ai) +"gIn" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/machinery/light_switch{ + pixel_x = 12; + pixel_y = 24 + }, +/obj/machinery/button/windowtint{ + dir = 1; + id = "pr2_window_tint"; + pixel_x = -11; + pixel_y = 23 + }, +/obj/machinery/iv_drip, +/obj/effect/floor_decal/corner/pink/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 1 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/patient_b) +"gJr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/station/park/skybridge) +"gKb" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/glass_engineeringatmos{ + name = "Engineering Locker Room"; + req_one_access = list(10) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/engineering/locker_room) +"gKO" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/mask/breath, +/obj/structure/table/rack{ + layer = 2.6 + }, +/obj/machinery/door/window/southright{ + name = "Engineering Suits"; + req_one_access = list(11,24) + }, +/obj/item/clothing/suit/space/void/engineering, +/obj/item/clothing/head/helmet/space/void/engineering, +/turf/simulated/floor/tiled/dark, +/area/surface/station/engineering/engine_eva) +"gKP" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/office) +"gLr" = ( +/turf/simulated/wall, +/area/surface/station/medical/lockerroom) +"gMa" = ( +/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" + }, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/surface/station/hallway/primary/secondfloor/east) +"gMd" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/east/snd) +"gMC" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "lawyer_tint" + }, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "commandlockdown"; + layer = 3.3; + name = "Command Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/command/internalaffairs) +"gMO" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/storage/art) +"gMS" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/surface/station/command/internalaffairs) +"gNo" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/medical/office) +"gNq" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/glass{ + name = "Hallway" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/hallway/secondary/secondfloor/command) +"gNs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/west) +"gNu" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/glass_command{ + id_tag = "sbridgedoor"; + name = "Operations" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/command/operations) +"gNx" = ( +/obj/effect/floor_decal/spline/plain, +/obj/structure/disposalpipe/segment, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/wood/sif, +/area/surface/station/rnd/research) +"gNY" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/west) +"gOn" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "holodeck_tint" + }, +/turf/simulated/floor/plating, +/area/surface/station/holodeck_control) +"gOo" = ( +/obj/machinery/door/airlock{ + name = "Unit 1" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/quartermaster/restroom) +"gOK" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "roof_airlock_inner"; + locked = 1; + name = "Internal Access" + }, +/obj/effect/map_helper/airlock/door/int_door, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/hallway/primary/secondfloor/east) +"gOZ" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing, +/obj/structure/disposalpipe/down{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/zpipe/down/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 32; + d2 = 4; + icon_state = "32-4" + }, +/obj/structure/lattice, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/zpipe{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/open, +/area/surface/station/maintenance/substation/research/snd) +"gPP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/yellow/bordercorner, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/snd) +"gQv" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/quartermaster/office) +"gQD" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/surface/station/quartermaster/foyer) +"gRv" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/ai_monitored/storage/eva) +"gRD" = ( +/obj/structure/closet/crate/freezer/nanotrasen, +/obj/item/weapon/virusdish/random, +/obj/item/weapon/virusdish/random, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/virology) +"gRK" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/west) +"gRP" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/obj/effect/zone_divider, +/turf/simulated/floor/tiled, +/area/surface/station/ai_monitored/storage/eva) +"gRQ" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/table/rack, +/obj/effect/floor_decal/corner_oldtile/red{ + dir = 9 + }, +/obj/item/weapon/storage/box/flashshells, +/obj/item/weapon/storage/box/beanbags{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/box/beanbags{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/box/stunshells{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/weapon/storage/box/stunshells{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/machinery/door/window/brigdoor/eastright{ + name = "Ammo Locker" + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/armoury) +"gSr" = ( +/obj/structure/table/standard, +/obj/item/clothing/glasses/sunglasses/sechud/tactical{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/clothing/glasses/sunglasses/sechud/tactical, +/obj/item/clothing/glasses/sunglasses/sechud/tactical{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/surface/station/security/tactical) +"gTh" = ( +/obj/structure/table/standard, +/obj/item/weapon/paper_bin, +/obj/item/weapon/pen/blue{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/weapon/pen/red{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/item/weapon/storage/fancy/markers{ + pixel_y = -3 + }, +/obj/item/weapon/storage/fancy/markers, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/station/storage/art) +"gTr" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/maintenance/substation/cargo/snd) +"gTM" = ( +/obj/structure/cable/cyan{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/smes/buildable{ + charge = 5e+006; + input_attempt = 1; + input_level = 200000; + output_level = 200000 + }, +/obj/machinery/flasher{ + id = "AI2"; + pixel_y = -24 + }, +/turf/simulated/floor/plating, +/area/surface/station/ai) +"gTO" = ( +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/reactor) +"gUe" = ( +/obj/machinery/smartfridge/sheets/persistent_lossy, +/turf/simulated/wall/r_wall, +/area/surface/station/quartermaster/foyer) +"gUA" = ( +/obj/machinery/shower{ + dir = 8; + pixel_x = -5; + pixel_y = -1 + }, +/obj/structure/window/basic{ + dir = 8; + layer = 2.8 + }, +/obj/machinery/door/window/northright{ + name = "shower" + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/obj/structure/curtain/open/shower/engineering, +/turf/simulated/floor/tiled/eris, +/area/surface/station/quartermaster/restroom) +"gVf" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/east) +"gVY" = ( +/obj/structure/closet/secure_closet/engineering_chief, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/item/device/megaphone, +/obj/random_multi/single_item/hand_tele, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/crew_quarters/heads/chief) +"gWt" = ( +/turf/simulated/wall, +/area/surface/station/maintenance/substation/command) +"gWu" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/brown, +/obj/effect/zone_divider, +/turf/simulated/floor/carpet, +/area/surface/station/crew_quarters/sleep/Dorm_4) +"gWC" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/belt/medical, +/obj/item/clothing/accessory/stethoscope, +/obj/item/clothing/glasses/sunglasses/medhud, +/obj/item/device/radio{ + frequency = 1485; + icon_state = "med_walkietalkie"; + name = "Medbay Emergency Radio Link"; + pixel_y = 4 + }, +/obj/item/device/megaphone, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/crew_quarters/heads/cmo) +"gWG" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/machinery/shower{ + dir = 8; + pixel_x = -5; + pixel_y = -1 + }, +/obj/structure/curtain/open/shower/medical, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/eris, +/area/surface/station/medical/virology) +"gXm" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock/glass_research{ + name = "Robotics Lab"; + req_one_access = list(29) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/rnd/robotics) +"gXY" = ( +/obj/structure/table/standard, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/item/weapon/packageWrap{ + pixel_x = -2; + pixel_y = -4 + }, +/obj/item/weapon/packageWrap{ + pixel_y = -2 + }, +/obj/item/weapon/tape_roll, +/obj/item/weapon/tape_roll{ + pixel_x = 2 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 8 + }, +/obj/machinery/camera/network/civilian{ + c_tag = "CIV - Auxiliary Storage"; + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/storage/art) +"gYa" = ( +/obj/structure/bed/chair/comfy/purp{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/newscaster{ + pixel_y = 28 + }, +/turf/simulated/floor/wood/sif, +/area/surface/station/rnd/research) +"gYO" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/patient_wing) +"gZa" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/west/elevator) +"gZn" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 5 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/surface/station/rnd/lab) +"gZo" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/computer/security/telescreen{ + desc = "Big Brother is watching."; + name = "Brig Monitor"; + network = list("Prison"); + pixel_y = 26 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/cell_hallway) +"gZO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/command) +"hap" = ( +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/orange/border, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/security/hallway/cell_hallway) +"haq" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Reactor Access"; + req_one_access = list(11,24) + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/engineering/reactor_airlock/snd) +"hat" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/machinery/vending/wallmed1{ + pixel_y = 30 + }, +/obj/machinery/iv_drip, +/obj/effect/floor_decal/corner/pink/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/patient_a) +"haR" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/structure/undies_wardrobe, +/turf/simulated/floor/tiled/freezer, +/area/surface/station/engineering/engi_restroom) +"hbT" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/research) +"hbX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/lab) +"hcl" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 2; + id_tag = null; + name = "Mech Bay"; + req_access = list(29) + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/rnd/chargebay) +"hcz" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -21 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/office) +"hdh" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 8 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "steel_dirty" + }, +/area/surface/outside/station/roof) +"hdD" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/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/tiled, +/area/surface/station/hallway/primary/secondfloor/west/elevator) +"hee" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/turf/simulated/floor/tiled, +/area/surface/station/ai_monitored/storage/eva) +"her" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/surface/station/security/tactical) +"heE" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass{ + name = "Hallway" + }, +/obj/structure/sign/directions/science{ + dir = 1; + pixel_x = -32; + pixel_y = 6 + }, +/obj/structure/sign/directions/cargo{ + dir = 1; + pixel_x = -32 + }, +/obj/structure/sign/directions/elevator{ + dir = 1; + pixel_x = -32; + pixel_y = -6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/hallway/secondary/secondfloor/civilian) +"heZ" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/machinery/camera/network/second_floor{ + c_tag = "Second Floor -East Hallway 1"; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/east) +"hfJ" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/west) +"hgK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/snd) +"hgN" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "quart_tint" + }, +/turf/simulated/floor/plating, +/area/surface/station/quartermaster/qm) +"hhP" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/ai/upload_foyer) +"hix" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/rnd/robotics) +"hjD" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/obj/effect/floor_decal/corner/pink/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/patient_b) +"hjX" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 8 + }, +/obj/machinery/newscaster{ + pixel_x = -28 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/lab) +"hkg" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/obj/machinery/door/airlock/glass_medical{ + name = "Virology"; + req_one_access = list(39) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/medical/virology) +"hkh" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 9 + }, +/obj/item/weapon/storage/secure/briefcase, +/obj/item/weapon/storage/box/PDAs{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/box/ids, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/newscaster{ + pixel_x = -28 + }, +/turf/simulated/floor/tiled, +/area/surface/station/command/operations) +"hkz" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/medical/virology) +"hkH" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock/engineering{ + name = "Cargo Substation"; + req_one_access = list(11,24,50) + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/cargo/snd) +"hkL" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/engineering/locker_room) +"hle" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/catwalk_plated/dark, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/machinery/camera/network/engineering{ + c_tag = "ENG - Atmospherics Upper West" + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/atmos) +"hlh" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/snd) +"hlD" = ( +/turf/simulated/wall, +/area/surface/station/medical/patient_wing) +"hlR" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/hallway/secondary/secondfloor/command) +"hlU" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/item/modular_computer/console/preset/command{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/captain) +"hlV" = ( +/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/catwalk_plated, +/obj/effect/landmark{ + name = "lightsout" + }, +/obj/effect/zone_divider, +/turf/simulated/floor/plating, +/area/surface/station/holodeck_control) +"hlZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/research) +"hmc" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/open, +/area/surface/outside/plains/station/snd) +"hnb" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/snd) +"hoo" = ( +/obj/structure/catwalk, +/obj/structure/lattice, +/turf/simulated/open, +/area/surface/outside/plains/station/snd) +"hoQ" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/weststairwell/snd) +"hpz" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/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" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/security/snd) +"hrj" = ( +/obj/structure/closet/secure_closet/medical3, +/obj/item/weapon/soap/nanotrasen, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/turf/simulated/floor/tiled/old_tile/white, +/area/surface/station/medical/lockerroom) +"hrt" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/patient_wing) +"hso" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/lab) +"hsp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/virology) +"hsx" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 9 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/construction/office) +"htm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/dormhallway) +"htw" = ( +/obj/machinery/status_display, +/turf/simulated/wall, +/area/surface/station/command/internalaffairs) +"hua" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/station/park/skybridge) +"huz" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/wood/sif, +/area/surface/station/rnd/research) +"huC" = ( +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/red/bordercorner, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/cell_hallway) +"hwo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/eva_hallway) +"hwK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/research) +"hwX" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/effect/zone_divider, +/turf/simulated/floor/wood, +/area/surface/station/command/liaison) +"hxj" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/green, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/security/equiptment_storage) +"hxq" = ( +/obj/machinery/suit_cycler, +/obj/effect/floor_decal/industrial/warning, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/surface/station/ai_monitored/storage/eva) +"hyf" = ( +/turf/simulated/wall, +/area/surface/station/hallway/primary/secondfloor/west/elevator) +"hyA" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/landmark/start{ + name = "Station Engineer" + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/locker_room) +"hyC" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Command Secretary" + }, +/turf/simulated/floor/wood, +/area/surface/station/command/meeting_room) +"hzb" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/item/weapon/paper_bin, +/obj/item/weapon/folder/blue{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/folder/red, +/obj/item/weapon/pen, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/command/operations) +"hzm" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/eva_hallway) +"hAN" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/blue/bordercorner, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/command) +"hAZ" = ( +/obj/effect/floor_decal/borderfloor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border, +/obj/structure/cable/green, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -12; + pixel_y = -24 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/cell_hallway) +"hBe" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/machinery/light_switch{ + pixel_x = 12; + pixel_y = 24 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/security/snd) +"hBh" = ( +/obj/machinery/photocopier, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 21 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/office) +"hBB" = ( +/obj/effect/floor_decal/spline/plain, +/turf/simulated/wall/r_wall, +/area/surface/station/hallway/primary/secondfloor/east) +"hBF" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/floor_decal/corner_oldtile/red{ + dir = 5 + }, +/obj/item/clothing/accessory/armor/legguards/riot, +/obj/item/clothing/accessory/armor/armguards/riot, +/obj/item/clothing/accessory/armor/armorplate/riot, +/obj/item/clothing/head/helmet/riot, +/obj/item/weapon/shield/riot, +/obj/item/weapon/melee/baton/loaded, +/obj/machinery/door/window/brigdoor/southleft{ + name = "Riot Armor" + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/armoury) +"hCn" = ( +/obj/structure/table/standard, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/cell_charger, +/obj/random/powercell, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/yellow/border, +/turf/simulated/floor/tiled, +/area/surface/station/storage/art) +"hCO" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/border_only, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/patient_wing) +"hDC" = ( +/obj/structure/table/standard, +/turf/simulated/floor/tiled/old_tile/gray, +/area/surface/station/construction/office) +"hDL" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "ceoffice" + }, +/turf/simulated/floor/plating, +/area/surface/station/crew_quarters/heads/chief) +"hDY" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/ai_monitored/storage/eva) +"hEv" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "comoffice_tint" + }, +/turf/simulated/floor/plating, +/area/surface/station/command/liaison) +"hEQ" = ( +/obj/structure/table/standard, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/catwalk_plated/dark, +/obj/item/weapon/storage/box/empslite{ + pixel_x = 1; + pixel_y = 1 + }, +/obj/item/weapon/storage/box/flashbangs{ + pixel_x = -3; + pixel_y = -3 + }, +/turf/simulated/floor/plating, +/area/surface/station/security/armoury) +"hFv" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/medical/virology) +"hFF" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "seclockdown"; + layer = 3.3; + name = "Security Lockdown" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/security/riot_control) +"hFI" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/green, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "bridge_center" + }, +/turf/simulated/floor/plating, +/area/surface/station/command/operations) +"hFM" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 21 + }, +/turf/simulated/floor/tiled, +/area/surface/station/ai_monitored/storage/eva) +"hFP" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/east) +"hFV" = ( +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/red/border, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/table/reinforced, +/obj/item/weapon/book/codex/corp_regs, +/obj/item/weapon/stamp/denied, +/obj/item/weapon/stamp/ward, +/obj/item/weapon/tool/crowbar/red, +/obj/item/device/radio/off, +/obj/item/weapon/tool/wrench, +/obj/item/device/retail_scanner/security, +/obj/machinery/requests_console{ + department = "Security"; + departmentType = 5; + dir = 8; + name = "Security RC"; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/warden) +"hGx" = ( +/turf/simulated/wall, +/area/surface/station/engineering/foyer/secondfloor) +"hGI" = ( +/obj/machinery/status_display, +/turf/simulated/wall/r_wall, +/area/surface/station/hallway/primary/secondfloor/east) +"hIH" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/green/border, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/construction/office) +"hJt" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + id = "biohazard"; + layer = 3.3; + name = "Biohazard Shutter" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/rnd/workshop) +"hKs" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 8 + }, +/obj/effect/zone_divider, +/turf/simulated/floor/tiled, +/area/surface/station/ai_monitored/storage/eva) +"hKS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central5, +/obj/structure/extinguisher_cabinet{ + dir = 1; + pixel_y = 30 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/dormhallway) +"hMf" = ( +/obj/effect/floor_decal/borderfloorblack/corner, +/obj/effect/floor_decal/industrial/danger/corner, +/turf/simulated/floor/tiled/dark, +/area/surface/station/hallway/primary/secondfloor/east) +"hMg" = ( +/obj/machinery/computer/security/telescreen/entertainment{ + icon_state = "frame"; + pixel_y = -32 + }, +/turf/simulated/floor/carpet/sblucarpet, +/area/surface/station/medical/psych) +"hNy" = ( +/obj/structure/table/rack{ + layer = 2.6 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/weapon/tank/jetpack/oxygen, +/obj/item/clothing/mask/gas, +/obj/item/clothing/suit/armor/captain, +/obj/item/clothing/head/helmet/space/capspace, +/obj/structure/window/basic, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/captain) +"hOa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/old_tile/gray, +/area/surface/station/rnd/robotics) +"hOs" = ( +/obj/structure/railing, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/catwalk_plated/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/station/ai) +"hOD" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_medical{ + name = "Medical" + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/ai_monitored/storage/eva) +"hOE" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/machinery/computer/guestpass{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/research_foyer) +"hON" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/medbay/snd) +"hPd" = ( +/obj/structure/closet/secure_closet/brig, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 4 + }, +/obj/item/device/radio/headset, +/turf/simulated/floor/tiled, +/area/surface/station/security/prison) +"hPp" = ( +/obj/effect/floor_decal/techfloor{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1; + frequency = 1379; + id_tag = "com_airlock_pump" + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/hallway/secondary/secondfloor/eva_hallway) +"hPv" = ( +/turf/simulated/open, +/area/surface/station/engineering/reactor_room) +"hPK" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/green, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/security/warden) +"hQe" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/lab) +"hQL" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 5 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 5 + }, +/obj/machinery/computer/prisoner, +/obj/machinery/button/remote/blast_door{ + id = "seclockdown"; + layer = 2.9; + name = "Security Lockdown"; + pixel_x = -6; + pixel_y = 26; + req_one_access = list(2,4) + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/warden) +"hQX" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/monofloor{ + dir = 8 + }, +/area/surface/station/crew_quarters/heads/chief) +"hRN" = ( +/obj/structure/bed/chair, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/surface/station/command/internalaffairs) +"hSf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/engineering{ + name = "Command Substation"; + req_one_access = list(11,18,24) + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/command) +"hSp" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/effect/floor_decal/rust, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/station/roof) +"hSs" = ( +/obj/structure/bed/chair/office/dark, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/engineering/atmos) +"hTe" = ( +/obj/machinery/computer/cryopod{ + pixel_y = -26 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/bordercorner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/camera/network/security{ + c_tag = "SEC - Cell Hallway East"; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/cell_hallway) +"hTP" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/item/weapon/stool/padded{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/holodeck_control) +"hUe" = ( +/obj/effect/floor_decal/techfloor/corner{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/engineering/atmos) +"hUl" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/command/teleporter) +"hWl" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/command) +"hWm" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/medical/hallway/snd) +"hWq" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/westskybridge) +"hWD" = ( +/obj/effect/floor_decal/techfloor/corner{ + dir = 6 + }, +/obj/effect/floor_decal/techfloor/corner{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/ai_monitored/storage/eva) +"hWE" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/crew_quarters/heads/chief) +"hWK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/east) +"hWR" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/cell_hallway) +"hWW" = ( +/obj/machinery/computer/arcade{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black, +/obj/effect/floor_decal/corner/lime/diagonal, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/virology) +"hXf" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/wall/r_wall, +/area/surface/station/ai) +"hXu" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/snd) +"hXB" = ( +/obj/machinery/autolathe, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/surface/station/rnd/lab) +"hXM" = ( +/obj/structure/table/wooden_reinforced, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24; + pixel_y = -12 + }, +/obj/machinery/button/windowtint{ + dir = 4; + id = "captain_tint"; + pixel_x = 23; + pixel_y = 11 + }, +/obj/item/device/flashlight/lamp/green, +/obj/item/sticky_pad/random{ + pixel_x = 8; + pixel_y = -1 + }, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/captain) +"hXU" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/park/skybridge) +"hYb" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/civilian) +"hYk" = ( +/obj/machinery/vending/wallmed1{ + layer = 3.3; + name = "Emergency NanoMed"; + pixel_x = -28 + }, +/obj/structure/bed/chair/shuttle{ + dir = 1 + }, +/turf/simulated/shuttle/floor/white, +/area/shuttle/large_escape_pod2/station) +"hYs" = ( +/obj/structure/closet/secure_closet/paramedic, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 6 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 6 + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/surface/station/medical/lockerroom) +"hYK" = ( +/turf/simulated/wall, +/area/surface/station/command/meeting_room) +"hYU" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/open, +/area/surface/station/park/skybridge) +"hYY" = ( +/obj/effect/floor_decal/techfloor/corner{ + dir = 9 + }, +/obj/effect/floor_decal/techfloor/corner{ + dir = 10 + }, +/obj/effect/zone_divider, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/ai_monitored/storage/eva) +"hZc" = ( +/obj/structure/bed/chair/comfy/brown, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/office) +"hZe" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/glass_security{ + id_tag = "prisonentry"; + name = "Brig Entry"; + req_one_access = list(2,4) + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/security/prison) +"hZu" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + id = "medbayquar"; + layer = 3.3; + name = "Medbay Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/medical/patient_wing) +"hZx" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/green/border, +/obj/machinery/camera/network/second_floor{ + c_tag = "Second Floor - Skybridge 1"; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/park/skybridge) +"hZz" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/green, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/security/equiptment_storage) +"iai" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing, +/turf/simulated/open, +/area/surface/station/ai) +"iaD" = ( +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/captain) +"iaS" = ( +/obj/structure/table/bench/padded, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 21 + }, +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner{ + dir = 1 + }, +/obj/machinery/camera/network/medbay{ + c_tag = "MED - Locker Room"; + dir = 6 + }, +/obj/effect/landmark/start{ + name = "Chemist" + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/surface/station/medical/lockerroom) +"ibd" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "meeting" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/surface/station/command/meeting_room) +"iby" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/effect/floor_decal/spline/plain{ + dir = 9 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/tiled/yellow, +/area/surface/station/engineering/locker_room) +"ibR" = ( +/obj/structure/table/steel, +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/obj/item/device/integrated_circuit_printer, +/turf/simulated/floor/tiled/dark, +/area/surface/station/rnd/workshop) +"icL" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 8 + }, +/obj/item/weapon/stool/padded{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/lab) +"idl" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/hallway/secondary/secondfloor/command) +"ids" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/structure/closet/crate/science, +/obj/item/weapon/stock_parts/manipulator, +/obj/item/weapon/stock_parts/manipulator, +/obj/item/weapon/stock_parts/capacitor, +/obj/item/weapon/stock_parts/capacitor, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/item/weapon/stock_parts/scanning_module, +/obj/item/weapon/stock_parts/scanning_module, +/obj/item/weapon/stock_parts/console_screen, +/obj/item/weapon/stock_parts/console_screen, +/obj/item/weapon/stock_parts/matter_bin, +/obj/item/weapon/stock_parts/matter_bin, +/obj/item/weapon/stock_parts/micro_laser, +/obj/item/weapon/stock_parts/micro_laser, +/obj/effect/floor_decal/corner/purple/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/lab) +"iet" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/lab) +"ifn" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "biohazard"; + layer = 3.3; + name = "Biohazard Shutter" + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/maintenance/substation/research/snd) +"ifR" = ( +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 21 + }, +/obj/machinery/camera/network/command{ + c_tag = "COM - Station Manager's Office"; + dir = 8 + }, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/captain) +"ifT" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/obj/machinery/shower{ + dir = 8; + pixel_x = -5; + pixel_y = -1 + }, +/obj/structure/curtain/open/shower{ + color = "#6a97b0" + }, +/obj/structure/window/basic{ + dir = 8; + layer = 2.8 + }, +/obj/machinery/door/window/northright{ + name = "shower" + }, +/obj/item/weapon/bikehorn/rubberducky, +/turf/simulated/floor/tiled/eris, +/area/surface/station/crew_quarters/captain) +"ige" = ( +/obj/structure/table/woodentable, +/obj/structure/flora/pottedplant/largebush{ + pixel_y = 8 + }, +/obj/structure/noticeboard{ + pixel_y = -30 + }, +/turf/simulated/floor/wood, +/area/surface/station/command/meeting_room) +"igo" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + id = "atmoslockdown"; + layer = 3.3; + name = "Atmospherics Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/atmos) +"igY" = ( +/turf/simulated/wall, +/area/surface/station/medical/virology) +"ihn" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 6 + }, +/obj/machinery/computer/mecha{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = 30 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/crew_quarters/heads/rdoffice) +"ihS" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/orange/bordercorner{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + desc = "Talk... listen through this."; + name = "Station Intercom (Brig Radio)"; + pixel_y = -21; + wires = 7 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/prison) +"ijt" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/yellow/border, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/sndaccess) +"ijK" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/yellow/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/yellow/bordercorner2, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/sndaccess) +"ijM" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/office) +"ikv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/patient_wing) +"ikV" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/green/border, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/civilian) +"imi" = ( +/obj/machinery/vending/hydronutrients, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/prison) +"imr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/hallway/secondary/secondfloor/westskybridge) +"imI" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/civilian) +"imJ" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/blue/bordercorner2, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/command) +"inn" = ( +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -12; + pixel_y = -24 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/locker_room) +"inP" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/ai_status_display{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/engineering/hallway/sndaccess) +"ipD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/office) +"ipM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/effect/catwalk_plated/dark, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/command) +"iqh" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/qm) +"iqB" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock{ + name = "Engineering Restroom" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/engineering/engi_restroom) +"iqE" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/rnd/research) +"irB" = ( +/obj/structure/table/reinforced, +/obj/machinery/photocopier/faxmachine{ + department = "Chief Engineer's Office" + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/crew_quarters/heads/chief) +"isw" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/westskybridge) +"isE" = ( +/obj/effect/floor_decal/techfloor{ + dir = 5 + }, +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/engineering/atmos) +"isJ" = ( +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24; + pixel_y = -12 + }, +/obj/structure/table/standard, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/surface/station/crew_quarters/sleep/Dorm_1) +"itI" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/reactor_monitoring) +"iue" = ( +/obj/effect/floor_decal/corner_steel_grid{ + dir = 5 + }, +/obj/effect/floor_decal/spline/plain, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/sign/directions/medical/cloning{ + dir = 1; + pixel_x = 32; + pixel_y = 26 + }, +/obj/structure/sign/directions/medical/surgery{ + dir = 1; + pixel_x = 32; + pixel_y = 32 + }, +/obj/structure/sign/directions/medical/morgue{ + dir = 1; + pixel_x = 32; + pixel_y = 38 + }, +/obj/structure/sign/directions/stairs_down{ + dir = 1; + pixel_x = 32; + pixel_y = 20 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/medical/hallway/snd) +"iuQ" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "psyco_tint" + }, +/turf/simulated/floor/plating, +/area/surface/station/medical/psych) +"ivO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/east) +"iwI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/cell_hallway) +"ixn" = ( +/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/effect/catwalk_plated, +/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/plating, +/area/surface/station/command/operations) +"ixp" = ( +/obj/structure/table/reinforced, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/item/weapon/paper_bin, +/obj/item/weapon/book/manual/supermatter_engine, +/obj/item/clothing/glasses/meson, +/obj/item/clothing/glasses/welding/superior, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/crew_quarters/heads/chief) +"ixx" = ( +/obj/machinery/door/window/northright{ + name = "shower" + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, +/obj/machinery/shower{ + dir = 8; + pixel_x = -5; + pixel_y = -1 + }, +/obj/structure/curtain/open/shower/engineering, +/obj/structure/window/basic{ + dir = 4; + layer = 2.8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/engi_restroom) +"iya" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular{ + dir = 4; + id = "aicore2"; + name = "AI Core Access" + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/ai) +"iyT" = ( +/turf/simulated/wall, +/area/surface/station/maintenance/cargo) +"izh" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/catwalk_plated, +/obj/effect/floor_decal/rust, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/station/hallway/secondary/secondfloor/eva_hallway) +"izi" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/westskybridge) +"izk" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/cargo) +"izo" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/glass_security{ + name = "Warden's Office"; + req_one_access = list(3) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/security/warden) +"izE" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/blue/bordercorner, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/command) +"izK" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/east) +"iAb" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/crew_quarters/heads/cmo) +"iAq" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/snd) +"iBx" = ( +/obj/random/crate{ + dir = 4 + }, +/obj/random/contraband, +/obj/random/contraband, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/turf/simulated/floor/plating, +/area/surface/station/security/hallway/stairwell) +"iBF" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "biohazard"; + layer = 3.3; + name = "Biohazard Shutter" + }, +/turf/simulated/floor/plating, +/area/surface/station/rnd/robotics) +"iCn" = ( +/obj/machinery/deployable/barrier, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/equiptment_storage) +"iCo" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/machinery/light_switch{ + pixel_x = 12; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/bordercorner{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/research_foyer) +"iCT" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/command) +"iDD" = ( +/obj/effect/floor_decal/corner/white{ + dir = 10 + }, +/obj/effect/floor_decal/corner/white{ + dir = 5 + }, +/obj/machinery/computer/med_data/laptop{ + dir = 1 + }, +/obj/structure/table/glass, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/virology) +"iDK" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/cell_hallway) +"iEe" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/open, +/area/surface/station/engineering/reactor_room) +"iEj" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/ai/upload_foyer) +"iFg" = ( +/obj/structure/catwalk, +/obj/structure/lattice, +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = 30 + }, +/turf/simulated/open, +/area/surface/station/engineering/atmos) +"iFh" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/security/tactical) +"iFt" = ( +/obj/structure/shuttle/engine/propulsion/burst/right{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/shuttle/large_escape_pod2/station) +"iFF" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/zone_divider, +/turf/simulated/floor/carpet, +/area/surface/station/crew_quarters/sleep/Dorm_4) +"iGj" = ( +/obj/structure/toilet, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/station/engineering/engi_restroom) +"iGv" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/security/hallway/cell_hallway) +"iGD" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/dormhallway) +"iHM" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/bordercorner{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/eva_hallway) +"iIc" = ( +/obj/structure/table/reinforced, +/obj/machinery/computer/med_data/laptop, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 9 + }, +/obj/machinery/status_display{ + pixel_x = -32 + }, +/obj/machinery/keycard_auth{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/crew_quarters/heads/cmo) +"iIy" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/monofloor{ + dir = 8 + }, +/area/surface/station/storage/art) +"iIE" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "ReactorBlast"; + name = "Reactor Monitoring Room Shutters"; + pixel_x = 5; + pixel_y = -4; + req_one_access = list(11,24) + }, +/obj/machinery/button/remote/blast_door{ + desc = "A remote control-switch for the reactor charging port."; + dir = 8; + id = "SupermatterPort"; + name = "Reactor Core Blast Doors"; + pixel_x = 5; + pixel_y = 4; + req_access = list(10) + }, +/obj/machinery/button/remote/emitter{ + desc = "A remote control-switch for the reactor emitter."; + dir = 8; + id = "ReactorEmitter"; + name = "Reactor Emitter"; + pixel_x = -6; + req_access = list(10) + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/reactor_monitoring) +"iIF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/plating, +/area/surface/station/security/riot_control) +"iJf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 4 + }, +/obj/machinery/hologram/holopad, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/surface/station/rnd/robotics) +"iJk" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/surface/station/medical/restroom) +"iJy" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "quart_tint" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/quartermaster/qm) +"iJF" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/engine_eva) +"iJK" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/research_foyer) +"iJP" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/machinery/light_switch{ + pixel_x = 12; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 1 + }, +/obj/structure/table/standard, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/item/stack/material/plasteel{ + amount = 10; + pixel_x = -2; + pixel_y = -2 + }, +/turf/simulated/floor/tiled, +/area/surface/station/ai_monitored/storage/eva) +"iKe" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/sndaccess) +"iKn" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/quartermaster/office) +"iKZ" = ( +/obj/structure/catwalk, +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "ReactorPoolViewport"; + name = "Reactor Cooling Pond Viewport Shutters"; + pixel_x = 24; + req_one_access = list(11,24) + }, +/obj/structure/lattice, +/turf/simulated/open, +/area/surface/station/engineering/reactor_room) +"iLi" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/patient_wing) +"iLw" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/hallway/secondary/secondfloor/westskybridge) +"iLV" = ( +/obj/structure/sign/directions/roomnum{ + dir = 1 + }, +/turf/simulated/wall, +/area/surface/station/crew_quarters/sleep/Dorm_2) +"iMk" = ( +/obj/structure/cable/green, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -12; + pixel_y = -24 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 6 + }, +/obj/machinery/button/windowtint{ + id = "quart_tint"; + pixel_x = 11; + pixel_y = -23 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/qm) +"iMF" = ( +/obj/effect/floor_decal/corner_techfloor_gray{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/security/hallway/cell_hallway) +"iNZ" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "ceoffice" + }, +/turf/simulated/floor/plating, +/area/surface/station/crew_quarters/heads/chief) +"iOg" = ( +/obj/effect/zone_divider, +/turf/simulated/wall/r_wall, +/area/surface/station/command/liaison) +"iOC" = ( +/obj/machinery/r_n_d/circuit_imprinter, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/item/weapon/reagent_containers/glass/beaker/sulphuric, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/obj/machinery/camera/network/research{ + c_tag = "SCI - R&D Lab"; + dir = 8 + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/surface/station/rnd/lab) +"iPd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/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, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/robotics) +"iPf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/surface/station/hallway/primary/secondfloor/east) +"iPj" = ( +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/closet/secure_closet/medical1, +/obj/random/medical, +/obj/random/medical, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -24; + pixel_y = 12 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/pink/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 8 + }, +/obj/machinery/button/windowtint{ + dir = 8; + id = "exam_window_tint"; + pixel_x = -23; + pixel_y = -11 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/exam_room) +"iPp" = ( +/obj/structure/closet/emcloset, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/hallway/secondary/secondfloor/command) +"iPq" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 4 + }, +/obj/item/weapon/clipboard, +/obj/item/weapon/folder/yellow, +/obj/item/weapon/pen/multi, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/qm) +"iPC" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/office) +"iPI" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/snd) +"iPO" = ( +/obj/structure/ladder, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/extinguisher_cabinet{ + dir = 8; + pixel_x = -30 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/cargo/snd) +"iQi" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/closet/lasertag/blue, +/obj/item/stack/flag/blue{ + amount = 1 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/machinery/camera/network/civilian{ + c_tag = "CIV - Holodeck Control"; + dir = 9 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/obj/effect/zone_divider, +/turf/simulated/floor/tiled, +/area/surface/station/holodeck_control) +"iQk" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/engineering/hallway/sndaccess) +"iQy" = ( +/obj/structure/table/woodentable, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/item/weapon/book/codex/corp_regs, +/turf/simulated/floor/carpet/blue, +/area/surface/station/command/meeting_room) +"iRn" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/captain) +"iRy" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/office) +"iRC" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/bordercorner{ + dir = 1 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/east) +"iRT" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 9 + }, +/obj/structure/table/glass, +/obj/machinery/computer/med_data/laptop{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 21 + }, +/obj/effect/floor_decal/corner/pink/border{ + dir = 9 + }, +/obj/machinery/camera/network/medbay{ + c_tag = "MED - Patient Room A"; + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/patient_a) +"iRU" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet/orange, +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/security/hallway/cell_hallway) +"iSx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/office) +"iSF" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -21 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/east) +"iSV" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/camera/network/security{ + c_tag = "SEC - Warden's Office"; + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/warden) +"iTk" = ( +/obj/structure/dispenser, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/engineering/engine_eva) +"iTu" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/open, +/area/surface/station/engineering/foyer/secondfloor) +"iTA" = ( +/obj/structure/table/wooden_reinforced, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/item/weapon/paper_bin, +/obj/item/weapon/folder, +/obj/item/weapon/folder/blue{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/folder/red{ + pixel_x = -2 + }, +/obj/item/weapon/folder/yellow, +/obj/item/weapon/stamp/internalaffairs, +/obj/item/weapon/stamp/denied{ + pixel_x = 2; + pixel_y = 2 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/surface/station/command/internalaffairs) +"iTL" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled/dark, +/area/surface/station/hallway/primary/secondfloor/west/elevator) +"iUc" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/structure/sign/directions/cargo{ + dir = 4; + pixel_y = -26 + }, +/obj/structure/sign/directions/science{ + dir = 4; + pixel_y = -32 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/west) +"iUe" = ( +/obj/structure/lattice, +/obj/structure/railing, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 32; + d2 = 8; + icon_state = "32-8" + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/zpipe/up/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ + dir = 8 + }, +/turf/simulated/open, +/area/surface/station/maintenance/weststairwell/snd) +"iUM" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/landmark/free_ai_shell, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/ai) +"iUT" = ( +/obj/structure/table/steel, +/obj/item/clothing/gloves/black, +/obj/item/clothing/gloves/black, +/obj/item/weapon/tool/crowbar/red, +/obj/item/weapon/tool/crowbar/red, +/obj/item/weapon/storage/box/lights/mixed, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 21 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/sndaccess) +"iVl" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + id = "medbayquar"; + layer = 3.3; + name = "Medbay Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/medical/hallway/snd) +"iVq" = ( +/obj/structure/table/standard, +/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = -4 + }, +/obj/item/weapon/tool/wrench, +/obj/random/medical/lite, +/obj/structure/closet/walllocker/emerglocker{ + pixel_y = -32 + }, +/obj/item/roller{ + pixel_y = 8 + }, +/obj/item/roller{ + pixel_y = 16 + }, +/turf/simulated/shuttle/floor/white, +/area/shuttle/large_escape_pod2/station) +"iVC" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "ceoffice" + }, +/obj/machinery/status_display, +/turf/simulated/floor/plating, +/area/surface/station/crew_quarters/heads/chief) +"iVE" = ( +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/holodeck_control) +"iVV" = ( +/obj/effect/zone_divider, +/turf/simulated/wall/r_wall, +/area/surface/station/maintenance/substation/command) +"iXX" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing, +/turf/simulated/open, +/area/surface/outside/plains/station/snd) +"iYk" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/catwalk_plated/dark, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/surface/station/ai) +"iYW" = ( +/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 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/civilian) +"iZK" = ( +/obj/structure/catwalk, +/obj/machinery/button/remote/airlock{ + dir = 4; + id = "reactor_raccess_north"; + name = "Door Bolt Control"; + pixel_x = -24; + req_access = list(10); + specialfunctions = 4 + }, +/turf/simulated/open, +/area/surface/station/engineering/reactor_room) +"iZO" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = 30 + }, +/obj/effect/zone_divider, +/turf/simulated/floor/tiled/dark, +/area/surface/station/command/teleporter) +"jal" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "com_airlock_inner"; + locked = 1; + name = "Internal Access" + }, +/obj/effect/map_helper/airlock/door/int_door, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/hallway/secondary/secondfloor/eva_hallway) +"jaC" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/office) +"jaR" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/park/skybridge) +"jaZ" = ( +/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 = "Internal Affairs"; + req_one_access = list(38) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/command/internalaffairs) +"jbc" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/mask/breath, +/obj/structure/table/rack{ + layer = 2.6 + }, +/obj/machinery/door/window/southright{ + name = "Medical Suits"; + req_one_access = list(5) + }, +/obj/item/clothing/suit/space/void/medical, +/obj/item/clothing/head/helmet/space/void/medical, +/turf/simulated/floor/tiled/dark, +/area/surface/station/ai_monitored/storage/eva) +"jbk" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/hallway/secondary/secondfloor/westskybridge) +"jbK" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/open, +/area/surface/station/ai) +"jbO" = ( +/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/surface/station/hallway/secondary/secondfloor/command) +"jcb" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/purple/bordercorner2{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/camera/network/second_floor{ + c_tag = "Second Floor - West Elevator Access"; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/west/elevator) +"jcf" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/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/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/yellow/border, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/reactor_monitoring) +"jcK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/research/snd) +"jcR" = ( +/obj/structure/bed/roller, +/obj/machinery/status_display{ + layer = 4; + pixel_y = 32 + }, +/turf/simulated/shuttle/floor/white, +/area/shuttle/large_escape_pod2/station) +"jen" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/research{ + name = "Research Division Access"; + req_one_access = list(47) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/rnd/research_foyer) +"jeO" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "rdoffice" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/crew_quarters/heads/rdoffice) +"jeP" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/qm) +"jeX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/green/border, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/civilian) +"jfm" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/obj/item/weapon/circuitboard/airalarm, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/construction/office) +"jfz" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/foyer) +"jfF" = ( +/obj/machinery/newscaster{ + pixel_x = -28 + }, +/obj/structure/closet/secure_closet/personal, +/turf/simulated/floor/carpet, +/area/surface/station/crew_quarters/sleep/Dorm_5) +"jgu" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/command) +"jhC" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/bordercorner{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/command) +"jhN" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/patient_wing) +"jhW" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "rdoffice" + }, +/turf/simulated/floor/plating, +/area/surface/station/rnd/lab) +"jit" = ( +/obj/machinery/smartfridge/secure/virology, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/virology) +"jjg" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/patient_wing) +"jjp" = ( +/obj/effect/shuttle_landmark/cynosure/large_escape_pod2/station, +/turf/simulated/shuttle/floor, +/area/shuttle/large_escape_pod2/station) +"jjB" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/open, +/area/surface/station/engineering/hallway/reactor) +"jjF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/monofloor{ + dir = 8 + }, +/area/surface/station/hallway/secondary/secondfloor/westskybridge) +"jjY" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/reactor) +"jkj" = ( +/obj/effect/floor_decal/techfloor{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/machinery/camera/network/command{ + c_tag = "COM - Airlock"; + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/hallway/secondary/secondfloor/eva_hallway) +"jkQ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/command/teleporter) +"jlu" = ( +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/outside/station/roof) +"jlL" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/catwalk_plated, +/obj/machinery/camera/network/security{ + c_tag = "SEC - Hallway Upper Southeast"; + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/station/security/hallway/snd) +"jlQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/prison) +"jlY" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/catwalk_plated, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/surface/station/security/hallway/cell_hallway) +"jlZ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/east) +"jmb" = ( +/obj/structure/sign/directions/evac{ + dir = 4; + pixel_y = 6 + }, +/obj/structure/sign/directions/cryo{ + dir = 4 + }, +/obj/structure/sign/directions/stairs_down{ + dir = 4; + pixel_y = -6 + }, +/turf/simulated/wall, +/area/surface/station/hallway/primary/secondfloor/east) +"jmm" = ( +/obj/structure/table/wooden_reinforced, +/obj/machinery/photocopier/faxmachine{ + department = "Station Manager's Office" + }, +/obj/machinery/keycard_auth{ + pixel_y = -24 + }, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/captain) +"jms" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/danger/corner{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/button/remote/blast_door{ + dir = 1; + id = "armoury"; + name = "Emergency Access"; + pixel_y = -24; + req_access = list(3) + }, +/obj/machinery/camera/network/security{ + c_tag = "SEC - Armory"; + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/armoury) +"jmM" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_security{ + name = "Security" + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/ai_monitored/storage/eva) +"jmQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/office) +"jmW" = ( +/obj/effect/floor_decal/techfloor{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/engineering/reactor_airlock/snd) +"jnl" = ( +/obj/machinery/r_n_d/circuit_imprinter, +/obj/item/weapon/reagent_containers/glass/beaker/sulphuric, +/obj/machinery/requests_console{ + department = "Robotics"; + departmentType = 2; + name = "Robotics RC"; + pixel_y = 24 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/robotics) +"jnI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/medical{ + id_tag = "mentaldoor"; + name = "Mental Health"; + req_one_access = list(64) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/medical/psych) +"jnN" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/ai_monitored/storage/eva) +"joP" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/engineering/hallway/reactor) +"jpB" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -24; + pixel_y = 12 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/effect/catwalk_plated/dark, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/eva) +"jpG" = ( +/obj/structure/sign/science, +/turf/simulated/wall/r_wall, +/area/surface/station/rnd/lab) +"jpI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/eva_hallway) +"jpK" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/park/skybridge) +"jqI" = ( +/obj/effect/floor_decal/borderfloorblack/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/bordercorner{ + dir = 4 + }, +/obj/structure/filingcabinet/chestdrawer, +/obj/machinery/newscaster/security_unit{ + pixel_y = 26 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/warden) +"jqQ" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/glass{ + name = "Brig Dormitory" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/security/prison) +"jqR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/sndaccess) +"jso" = ( +/turf/unsimulated/mask, +/area/surface/station/security/hallway/snd) +"jsy" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/green/border, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/civilian) +"jsF" = ( +/obj/structure/table/standard, +/obj/structure/flora/pottedplant{ + pixel_y = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/hallway/secondary/secondfloor/command) +"jsU" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor, +/obj/effect/floor_decal/industrial/warning, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/ai) +"jsV" = ( +/obj/machinery/suit_cycler, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/command/teleporter) +"jsY" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "pr2_window_tint" + }, +/turf/simulated/floor/plating, +/area/surface/station/medical/patient_b) +"jtm" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/quartermaster/office) +"jtQ" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/obj/effect/landmark/start{ + name = "Chief Medical Officer" + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/crew_quarters/heads/cmo) +"jua" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "cmooffice" + }, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "medbayquar"; + layer = 3.3; + name = "Medbay Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/crew_quarters/heads/cmo) +"juh" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + 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/station/hallway/secondary/secondfloor/civilian) +"juo" = ( +/obj/structure/safe/floor, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/captain) +"jux" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/hull{ + nitrogen = 93.7835; + outdoors = 1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/surface/outside/station/roof) +"juM" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/locker_room) +"juO" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/surface/station/crew_quarters/sleep/Dorm_2) +"juR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 10 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/dark, +/area/surface/station/rnd/workshop) +"juW" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/floor_decal/corner_oldtile/yellow{ + dir = 5 + }, +/obj/item/clothing/shoes/boots/tactical, +/obj/item/clothing/gloves/tactical, +/obj/item/clothing/suit/armor/pcarrier/tan/tactical, +/obj/item/clothing/accessory/armor/legguards/tan, +/obj/item/clothing/accessory/armor/armguards/tan, +/obj/item/clothing/head/helmet/flexitac, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/window/brigdoor/southright{ + name = "Tactical Armor" + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/tactical) +"jvl" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/command) +"jvB" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/open, +/area/surface/station/ai) +"jvK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + desc = "Talk... listen through this."; + name = "Station Intercom (Brig Radio)"; + pixel_y = -21; + wires = 7 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/green/border, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/civilian) +"jxd" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/hallway/secondary/secondfloor/eva_hallway) +"jxX" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/patient_wing) +"jyd" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/bordercorner{ + dir = 4 + }, +/obj/machinery/computer/arcade, +/turf/simulated/floor/tiled, +/area/surface/station/security/prison) +"jyL" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 21 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos/monitoring) +"jyM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/obj/item/weapon/stool/padded, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/virology) +"jyY" = ( +/turf/simulated/open, +/area/surface/station/hallway/primary/secondfloor/east) +"jzd" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/medical/patient_b) +"jzs" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/window/reinforced/polarized/full{ + id = "cmooffice" + }, +/turf/simulated/floor/plating, +/area/surface/station/crew_quarters/heads/cmo) +"jzz" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lime, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/virology) +"jzU" = ( +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/patient_wing) +"jAh" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/obj/effect/floor_decal/industrial/warning/dust, +/obj/effect/floor_decal/rust, +/obj/machinery/airlock_sensor/airlock_exterior{ + dir = 1; + id_tag = "ai_airlock_ext_sensor"; + master_tag = "ai_airlock"; + pixel_x = -35; + pixel_y = -31; + req_one_access = list(16) + }, +/obj/effect/map_helper/airlock/sensor/ext_sensor, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "steel_dirty" + }, +/area/surface/station/ai/upload_foyer) +"jBh" = ( +/turf/simulated/wall, +/area/surface/station/medical/restroom) +"jBr" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1; + frequency = 1379; + id_tag = "eng_airlock_pump" + }, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + dir = 4; + id_tag = "eng_airlock"; + pixel_x = -25 + }, +/obj/effect/floor_decal/techfloor{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/machinery/airlock_sensor{ + dir = 4; + id_tag = "eng_airlock_sensor"; + pixel_x = -25; + pixel_y = -11 + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/engineering/hallway/eva_hallway) +"jCs" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/green, +/obj/machinery/door/blast/regular/open{ + id = "prisongate"; + layer = 3.3; + name = "Communal Brig Blast Door" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/security/prison) +"jCJ" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/structure/closet/wardrobe/virology_white, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 6 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/patient_wing) +"jDc" = ( +/obj/machinery/photocopier, +/obj/machinery/computer/guestpass{ + dir = 1; + pixel_y = -24 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/office) +"jDU" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass{ + name = "Hallway" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/hallway/secondary/secondfloor/civilian) +"jDZ" = ( +/obj/effect/zone_divider, +/turf/simulated/wall, +/area/surface/station/crew_quarters/sleep/Dorm_3) +"jEt" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/medical/virology) +"jEz" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "bridgelockdown"; + layer = 3.3; + name = "Operations Lockdown" + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/command/operations) +"jFv" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/virology) +"jFx" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/structure/table/standard, +/obj/effect/floor_decal/corner_oldtile/red{ + dir = 9 + }, +/obj/machinery/recharger, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/tactical) +"jFI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/surface/station/hallway/primary/secondfloor/west) +"jGc" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/security/tactical) +"jGf" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/effect/floor_decal/rust, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "steel_dirty" + }, +/area/surface/outside/station/roof) +"jGy" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/office) +"jGI" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/bordercorner{ + dir = 4 + }, +/obj/machinery/vending/wallmed1{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/prison) +"jHa" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/captaindouble, +/turf/simulated/floor/carpet, +/area/surface/station/crew_quarters/captain) +"jHw" = ( +/obj/effect/floor_decal/corner/white{ + dir = 10 + }, +/obj/effect/floor_decal/corner/white{ + dir = 5 + }, +/obj/machinery/computer/diseasesplicer{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/virology) +"jIo" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/captain) +"jID" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/robotics) +"jIT" = ( +/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 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/civilian) +"jIY" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/security/warden) +"jJz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/quartermaster/restroom) +"jJA" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/camera/network/cargo{ + c_tag = "CRG - Cargo Foyer"; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/foyer) +"jJO" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/storage/art) +"jJQ" = ( +/turf/simulated/wall, +/area/surface/station/medical/patient_b) +"jKk" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/machinery/button/remote/airlock{ + desc = "A remote control switch for the West Ops Doors."; + dir = 8; + id = "sbridgedoor"; + layer = 2.9; + name = "West Ops Door Control"; + pixel_x = 27; + pixel_y = -2 + }, +/obj/machinery/button/remote/airlock{ + desc = "A remote control switch for the captain's office."; + dir = 8; + id = "captaindoor"; + layer = 2.9; + name = "Office Door Control"; + pixel_x = 27; + pixel_y = 7 + }, +/obj/effect/landmark/start{ + name = "Site Manager" + }, +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "captainlockdown"; + layer = 2.9; + name = "Site Manager Lockdown"; + pixel_x = 38; + pixel_y = 7 + }, +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "commandlockdown"; + layer = 2.9; + name = "Command Lockdown"; + pixel_x = 38; + pixel_y = -2 + }, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/captain) +"jKS" = ( +/obj/structure/table/wooden_reinforced, +/obj/item/weapon/clipboard, +/obj/item/weapon/pen/blue, +/obj/item/weapon/pen/red{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/effect/zone_divider, +/turf/simulated/floor/carpet/bcarpet, +/area/surface/station/command/internalaffairs) +"jKV" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/command/liaison) +"jLj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/newscaster{ + pixel_y = 26 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/weststairwell) +"jLt" = ( +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/effect/floor_decal/corner/paleblue/bordercorner{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/patient_wing) +"jLK" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "biohazard"; + layer = 3.3; + name = "Biohazard Shutter" + }, +/turf/simulated/floor/plating, +/area/surface/station/rnd/research) +"jLM" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/floor/tiled/old_tile/white, +/area/surface/station/medical/restroom) +"jMe" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/hallway/snd) +"jNx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/quartermaster/office) +"jNR" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/light, +/obj/item/device/radio/intercom{ + pixel_y = -21 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/green/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/green/bordercorner2, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/weststairwell) +"jOT" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/surface/station/medical/restroom) +"jPR" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/engineering{ + name = "Security Substation Upper"; + req_one_access = list(1,11,24) + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/security/snd) +"jQf" = ( +/obj/structure/table/steel, +/obj/item/weapon/deck/cards, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 4 + }, +/obj/machinery/computer/security/telescreen/entertainment{ + icon_state = "frame"; + pixel_x = 32 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/office) +"jQk" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/hallway/snd) +"jQG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -12; + pixel_y = -24 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/purple/border, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/purple/bordercorner2{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/research) +"jQL" = ( +/obj/effect/floor_decal/corner_steel_grid{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/west) +"jQN" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + id = "englockdown"; + layer = 3.3; + name = "Engineering Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/foyer/secondfloor) +"jRh" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 6 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/rnd/robotics) +"jRF" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/grille, +/obj/machinery/door/blast/regular/open{ + id = "englockdown"; + layer = 3.3; + name = "Engineering Lockdown" + }, +/obj/structure/window/reinforced/polarized/full{ + id = "ceoffice" + }, +/turf/simulated/floor/plating, +/area/surface/station/crew_quarters/heads/chief) +"jSw" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/security/tactical) +"jSI" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 10 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 10 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/patient_wing) +"jTe" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/structure/bed/chair, +/obj/machinery/flasher{ + id = "IAflash"; + pixel_x = 26 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/prison) +"jTE" = ( +/obj/machinery/light, +/turf/simulated/floor/carpet, +/area/surface/station/crew_quarters/captain) +"jTF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, +/obj/machinery/hologram/holopad, +/obj/effect/landmark/start{ + name = "Medical Doctor" + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/lockerroom) +"jUn" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/surface/station/command/liaison) +"jVB" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "bridge_center" + }, +/obj/machinery/ai_status_display, +/turf/simulated/floor/plating, +/area/surface/station/command/operations) +"jWd" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/medical/patient_wing) +"jXJ" = ( +/obj/effect/zone_divider, +/turf/simulated/wall, +/area/surface/station/command/meeting_room) +"jXS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/prison) +"jYc" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 4 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/office) +"jYR" = ( +/obj/effect/floor_decal/techfloor/corner{ + dir = 6 + }, +/obj/effect/floor_decal/techfloor/corner{ + dir = 5 + }, +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = 30 + }, +/obj/effect/zone_divider, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/ai_monitored/storage/eva) +"jYZ" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock{ + name = "Medbay Restroom"; + req_one_access = list(5) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/medical/restroom) +"jZn" = ( +/obj/structure/table/steel, +/obj/item/device/multitool{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/device/multitool, +/obj/item/weapon/storage/belt/utility{ + pixel_y = 3 + }, +/obj/item/weapon/storage/belt/utility, +/obj/item/weapon/tool/crowbar{ + pixel_y = -2 + }, +/obj/item/weapon/tool/crowbar, +/obj/item/weapon/storage/toolbox/electrical{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/weapon/storage/toolbox/electrical{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/purple/border, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/robotics) +"kao" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/snd) +"kaq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/eva_hallway) +"kaF" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/engineering/hallway/reactor) +"kaM" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/west/elevator) +"kaN" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/patient_wing) +"kbg" = ( +/obj/structure/ladder, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/cargo) +"kbx" = ( +/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/industrial/warning{ + dir = 5 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark, +/area/surface/station/hallway/secondary/secondfloor/civilian) +"kby" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/east) +"kcE" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/floor_decal/corner_oldtile/yellow{ + dir = 5 + }, +/obj/item/clothing/shoes/boots/tactical, +/obj/item/clothing/gloves/tactical, +/obj/item/clothing/suit/armor/pcarrier/tan/tactical, +/obj/item/clothing/accessory/armor/legguards/tan, +/obj/item/clothing/accessory/armor/armguards/tan, +/obj/item/clothing/head/helmet/flexitac, +/obj/machinery/door/window/brigdoor/southleft{ + name = "Tactical Armor" + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/tactical) +"kcN" = ( +/obj/effect/floor_decal/techfloor/corner{ + dir = 9 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/zone_divider, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/engineering/reactor_airlock/snd) +"kew" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/qm) +"keB" = ( +/obj/effect/wingrille_spawn/reinforced_phoron, +/obj/machinery/door/blast/regular{ + id = "SupermatterPort"; + layer = 3.3; + name = "Reactor Core Blast Door" + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"kfW" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/prison) +"kgo" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/radiation, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/security/equiptment_storage) +"kgz" = ( +/obj/effect/floor_decal/borderfloorblack/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/bordercorner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/warden) +"kgB" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/yellow/border, +/obj/machinery/camera/network/engineering{ + c_tag = "ENG - EVA"; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/engine_eva) +"kgY" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled/white, +/area/surface/station/crew_quarters/heads/cmo) +"khp" = ( +/obj/structure/reagent_dispensers/water_cooler/full, +/turf/simulated/floor/wood, +/area/surface/station/command/meeting_room) +"khS" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 6 + }, +/obj/machinery/hologram/holopad, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/prison) +"kie" = ( +/obj/effect/floor_decal/corner_steel_grid{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-j2" + }, +/obj/machinery/light, +/obj/machinery/camera/network/research{ + c_tag = "SCI - Research Foyer"; + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/research_foyer) +"kiA" = ( +/obj/structure/disposalpipe/sortjunction{ + dir = 4; + name = "QM Office"; + sortType = "QM Office" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/west) +"kiS" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/prison) +"kiW" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/mask/breath, +/obj/structure/table/rack{ + layer = 2.6 + }, +/obj/machinery/door/window/southleft{ + name = "Engineering Suits"; + req_one_access = list(11,24) + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/clothing/suit/space/void/engineering, +/obj/item/clothing/head/helmet/space/void/engineering, +/turf/simulated/floor/tiled/dark, +/area/surface/station/engineering/engine_eva) +"kjd" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/engineering/hallway/snd) +"kjE" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/effect/zone_divider, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_airlock/snd) +"kjV" = ( +/obj/structure/table/glass, +/obj/structure/closet/secure_closet/medical_wall/pills{ + pixel_x = -32 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/pink/border{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/exam_room) +"kki" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/command{ + name = "Conference Room" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/command/meeting_room) +"kkr" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/catwalk_plated/dark, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/cargo) +"klr" = ( +/turf/simulated/wall, +/area/surface/station/storage/art) +"klG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/obj/machinery/meter, +/obj/effect/zone_divider, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/command) +"kmH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/purple/border, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/research) +"kny" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/command/internalaffairs) +"knJ" = ( +/obj/item/weapon/bedsheet/green, +/obj/structure/bed/padded, +/obj/item/device/radio/intercom{ + pixel_y = -21 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/virology) +"kob" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/office) +"kos" = ( +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/green/bordercorner, +/turf/simulated/floor/tiled, +/area/surface/station/park/skybridge) +"kox" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/surface/station/park/skybridge) +"koH" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/surface/station/security/warden) +"kpn" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/park/skybridge) +"kqe" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/effect/floor_decal/rust, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/station/roof) +"kqE" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/security/equiptment_storage) +"kqH" = ( +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "seclockdown"; + layer = 3.3; + name = "Security Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/security/snd) +"kqP" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing, +/obj/machinery/camera/network/engineering{ + c_tag = "ENG - Stairwell Upper"; + dir = 5 + }, +/turf/simulated/open, +/area/surface/station/engineering/hallway/sndaccess) +"krl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/quartermaster/office) +"kst" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/cargo) +"ksz" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/command) +"ksR" = ( +/obj/machinery/door/airlock/glass{ + name = "Hallway" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/hallway/secondary/secondfloor/eva_hallway) +"kto" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/east) +"ktV" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/patient_wing) +"kuD" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/eva_hallway) +"kuE" = ( +/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/machinery/light, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/medical/virology) +"kuY" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/prison) +"kvc" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/mask/breath, +/obj/structure/table/rack{ + layer = 2.6 + }, +/obj/machinery/door/window/northleft{ + name = "Engineering Suits"; + req_one_access = list(11,24) + }, +/obj/item/clothing/suit/space/void/atmos, +/obj/item/clothing/head/helmet/space/void/atmos, +/turf/simulated/floor/tiled/dark, +/area/surface/station/engineering/engine_eva) +"kvf" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/medical/office) +"kvk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/east) +"kvn" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -12; + pixel_y = -24 + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/weststairwell/snd) +"kvN" = ( +/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/industrial/warning, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/hallway/secondary/secondfloor/command) +"kxz" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + id = "medbayquar"; + layer = 3.3; + name = "Medbay Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/medical/patient_b) +"kxK" = ( +/obj/structure/table/glass, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/item/weapon/paper_bin, +/obj/item/weapon/folder/white, +/obj/item/weapon/pen, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/pink/border{ + dir = 1 + }, +/obj/machinery/camera/network/medbay{ + c_tag = "MED - Examination Room" + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/exam_room) +"kyA" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/hallway/primary/secondfloor/west/elevator) +"kzq" = ( +/obj/structure/sign/warning/high_voltage, +/turf/simulated/wall, +/area/surface/station/maintenance/substation/medbay/snd) +"kzw" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/prison) +"kzF" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/table/wooden_reinforced, +/obj/item/device/flashlight/lamp/green, +/obj/machinery/computer/security/telescreen/entertainment{ + icon_state = "frame"; + pixel_y = 32 + }, +/turf/simulated/floor/carpet, +/area/surface/station/crew_quarters/captain) +"kzK" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/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 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/command) +"kzO" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + id = "medbayquar"; + layer = 3.3; + name = "Medbay Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/medical/patient_b) +"kAw" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "exam_window_tint" + }, +/turf/simulated/floor/plating, +/area/surface/station/medical/exam_room) +"kBk" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/effect/zone_divider, +/turf/simulated/floor/wood, +/area/surface/station/command/internalaffairs) +"kBZ" = ( +/obj/effect/floor_decal/borderfloor, +/obj/structure/table/bench/padded, +/obj/effect/floor_decal/corner/blue/border, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/dormhallway) +"kCl" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/bordercorner{ + dir = 1 + }, +/obj/machinery/camera/network/second_floor{ + c_tag = "Second Floor -East Hallway 4"; + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/east) +"kFf" = ( +/obj/effect/floor_decal/industrial/warning/dust/corner{ + dir = 1 + }, +/turf/simulated/floor/hull{ + nitrogen = 93.7835; + outdoors = 1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/surface/outside/station/roof) +"kFY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 8 + }, +/obj/structure/bed/chair/office/dark, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos/monitoring) +"kGh" = ( +/obj/machinery/ai_status_display, +/turf/simulated/wall, +/area/surface/station/command/internalaffairs) +"kGU" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/quartermaster/office) +"kHe" = ( +/turf/simulated/wall, +/area/surface/station/hallway/secondary/secondfloor/command) +"kHR" = ( +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/red/bordercorner, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/cell_hallway) +"kJF" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/west) +"kKS" = ( +/obj/machinery/recharge_station, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/rnd/chargebay) +"kLp" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/dormhallway) +"kLx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/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/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/station_map{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/weststairwell) +"kMa" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/dormhallway) +"kMZ" = ( +/turf/simulated/floor/tiled/old_tile/gray, +/area/surface/station/construction/office) +"kNE" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/storage/box/donut, +/turf/simulated/floor/wood, +/area/surface/station/command/meeting_room) +"kOm" = ( +/turf/simulated/floor/tiled/freezer, +/area/surface/station/engineering/engi_restroom) +"kOt" = ( +/obj/structure/table/steel, +/obj/machinery/recharger, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/brown/bordercorner, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/camera/network/cargo{ + c_tag = "CRG - Cargo Office South"; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/office) +"kOE" = ( +/obj/effect/floor_decal/techfloor/corner{ + dir = 5 + }, +/obj/effect/floor_decal/techfloor{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/ai) +"kPa" = ( +/obj/structure/sign/warning/lethal_turrets, +/turf/simulated/wall/r_wall, +/area/surface/station/ai) +"kPb" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "meeting" + }, +/obj/machinery/door/blast/regular/open{ + id = "commandlockdown"; + layer = 3.3; + name = "Command Lockdown" + }, +/obj/effect/zone_divider, +/turf/simulated/floor/plating, +/area/surface/station/command/meeting_room) +"kPE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/east) +"kQH" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/east) +"kQR" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/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/tiled/white, +/area/surface/station/medical/patient_wing) +"kRm" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/hallway/snd) +"kRo" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/hull{ + nitrogen = 93.7835; + outdoors = 1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/surface/outside/station/roof) +"kRF" = ( +/obj/structure/table/bench/padded, +/obj/item/device/radio/intercom/department/medbay{ + pixel_y = 21 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/effect/landmark/start{ + name = "Chemist" + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/surface/station/medical/lockerroom) +"kSP" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/ai_status_display, +/turf/simulated/floor/plating, +/area/surface/station/hallway/primary/secondfloor/east) +"kTM" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/virology) +"kUc" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/command/operations) +"kUD" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/security/hallway/cell_hallway) +"kVQ" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/light_switch{ + pixel_x = 12; + pixel_y = 24 + }, +/obj/structure/closet/wardrobe/robotics_black, +/obj/item/device/radio/headset/headset_sci, +/obj/item/device/radio/headset/headset_sci, +/obj/item/device/flash, +/obj/item/device/flash, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/robotics) +"kVU" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/virology) +"kYa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/patient_wing) +"kYz" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/grille, +/obj/machinery/door/blast/regular/open{ + id = "seclockdown"; + layer = 3.3; + name = "Security Lockdown" + }, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/security/hallway/snd) +"kYR" = ( +/turf/simulated/wall, +/area/surface/station/crew_quarters/sleep/Dorm_4) +"kZO" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/medbay/snd) +"lbt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/sndaccess) +"lbU" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 1 + }, +/obj/machinery/hologram/holopad, +/obj/machinery/light, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/medical/psych) +"lcq" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/floor_decal/corner_oldtile/blue{ + dir = 6 + }, +/obj/item/weapon/gun/energy/ionrifle, +/obj/machinery/door/window/brigdoor/westleft{ + name = "Weapon Locker" + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/armoury) +"lct" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/patient_wing) +"lcv" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/hallway/primary/secondfloor/east) +"lcF" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/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/station/holodeck_control) +"lei" = ( +/obj/structure/table/glass, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/recharger, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/camera/network/research{ + c_tag = "SCI - Break Area" + }, +/turf/simulated/floor/wood/sif, +/area/surface/station/rnd/research) +"leV" = ( +/obj/effect/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/command/operations) +"lfg" = ( +/obj/structure/cable{ + d1 = 32; + d2 = 8; + icon_state = "32-8" + }, +/obj/structure/lattice, +/obj/machinery/door/firedoor/border_only, +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/zpipe/down/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ + dir = 8 + }, +/turf/simulated/open, +/area/surface/station/maintenance/eva) +"lhj" = ( +/obj/machinery/vending/fitness, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/medical/patient_wing) +"lho" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/foyer) +"liG" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/bed/chair/comfy/teal{ + dir = 8 + }, +/turf/simulated/floor/carpet/sblucarpet, +/area/surface/station/medical/psych) +"liY" = ( +/obj/structure/sign/directions/security/brig{ + dir = 1; + pixel_y = 6 + }, +/turf/simulated/wall, +/area/surface/station/security/hallway/cell_hallway) +"ljg" = ( +/obj/structure/bed/padded, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 9 + }, +/obj/item/weapon/bedsheet/orange, +/turf/simulated/floor/tiled, +/area/surface/station/security/prison) +"ljs" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/item/weapon/stool/padded{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/robotics) +"ljt" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/disposal, +/turf/simulated/floor/wood, +/area/surface/station/command/liaison) +"ljE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/west) +"lki" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/open, +/area/surface/station/park/skybridge) +"lkp" = ( +/obj/structure/sign/warning/nosmoking_2, +/turf/simulated/wall, +/area/surface/station/medical/exam_room) +"lky" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/surface/station/hallway/primary/secondfloor/west) +"lkG" = ( +/obj/structure/table/wooden_reinforced, +/obj/machinery/recharger, +/obj/item/weapon/storage/secure/safe{ + pixel_x = -23 + }, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/captain) +"lkP" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/green, +/obj/effect/floor_decal/corner/lime/diagonal, +/obj/item/device/radio/intercom/department/medbay{ + dir = 4; + pixel_x = -21 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/virology) +"lkS" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/camera/network/research{ + c_tag = "SCI - Robotics North"; + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/robotics) +"lkU" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "cmooffice" + }, +/turf/simulated/floor/plating, +/area/surface/station/crew_quarters/heads/cmo) +"lmq" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/engineering/atmos) +"lnd" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/maintenance/cargo) +"lnL" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/floor_decal/techfloor/corner{ + dir = 10 + }, +/obj/effect/floor_decal/techfloor{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/ai) +"lod" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/office) +"lom" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular/open{ + id = "commandlockdown"; + layer = 3.3; + name = "Command Lockdown" + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/hallway/secondary/secondfloor/command) +"lop" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 4 + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/surface/station/security/warden) +"lox" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/blue/bordercorner, +/obj/structure/sign/directions/eva{ + dir = 4; + pixel_x = 32; + pixel_y = -32 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/eva_hallway) +"lpi" = ( +/obj/structure/table/glass, +/obj/effect/floor_decal/borderfloorwhite, +/obj/item/weapon/hand_labeler, +/obj/item/weapon/pen, +/obj/item/weapon/packageWrap, +/obj/item/weapon/packageWrap, +/obj/effect/floor_decal/corner/purple/border, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/lab) +"lpJ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/weststairwell) +"lqt" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/command{ + id_tag = "captaindoor"; + name = "Station Manager's Office"; + req_one_access = list(20) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/crew_quarters/captain) +"lqJ" = ( +/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/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/hallway/snd) +"lqQ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/sndaccess) +"lqR" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/bordercorner{ + dir = 1 + }, +/obj/effect/zone_divider, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/dormhallway) +"lqX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/patient_wing) +"lrc" = ( +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/snd) +"lrq" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_atmos{ + name = "Atmospherics Monitoring" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/engineering/atmos/monitoring) +"lrP" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/camera/network/medbay{ + c_tag = "MED - Virology Airlock Enterance" + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/patient_wing) +"lso" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/green, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "ceoffice" + }, +/turf/simulated/floor/plating, +/area/surface/station/crew_quarters/heads/chief) +"lua" = ( +/obj/machinery/newscaster{ + pixel_x = 28 + }, +/obj/structure/closet/secure_closet/personal, +/obj/effect/zone_divider, +/turf/simulated/floor/carpet, +/area/surface/station/crew_quarters/sleep/Dorm_4) +"lux" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular/open{ + id = "englockdown"; + layer = 3.3; + name = "Engineering Lockdown" + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/engineering/hallway/sndaccess) +"lvx" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/east) +"lwx" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "commandlockdown"; + layer = 3.3; + name = "Command Lockdown" + }, +/obj/structure/window/reinforced/polarized/full{ + id = "comoffice_tint" + }, +/turf/simulated/floor/plating, +/area/surface/station/command/liaison) +"lwJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/westskybridge) +"lyr" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance{ + name = "Research Maintenance Access"; + req_access = list(47) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/turf/simulated/floor/plating, +/area/surface/station/rnd/workshop) +"lys" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/east/snd) +"lyz" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/engineering/hallway/snd) +"lyD" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/civilian) +"lyL" = ( +/obj/structure/table/wooden_reinforced, +/obj/item/weapon/storage/photo_album{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/device/camera, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 21 + }, +/turf/simulated/floor/carpet, +/area/surface/station/crew_quarters/captain) +"lyO" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/surface/station/security/tactical) +"lyT" = ( +/obj/machinery/papershredder, +/obj/machinery/camera/network/engineering{ + c_tag = "ENG - Chief Engineer's Office" + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/crew_quarters/heads/chief) +"lzm" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/maintenance{ + name = "Security Maintenance Access"; + req_access = list(1) + }, +/turf/simulated/floor/plating, +/area/surface/station/security/hallway/stairwell) +"lAn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/hallway/primary/secondfloor/east) +"lAM" = ( +/turf/simulated/wall, +/area/surface/station/security/hallway/cell_hallway) +"lCy" = ( +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/office) +"lCM" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/rnd/chargebay) +"lCN" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "crglockdown"; + layer = 3.3; + name = "Cargo Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/quartermaster/office) +"lDq" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/westskybridge) +"lDE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/prison) +"lEa" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "holodeck_tint" + }, +/obj/effect/zone_divider, +/turf/simulated/floor/plating, +/area/surface/station/holodeck_control) +"lEj" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/command/meeting_room) +"lEM" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 10 + }, +/obj/machinery/computer/security/telescreen{ + desc = "Used to monitor the reactor room."; + name = "Reactor Monitor"; + network = list("Engine"); + pixel_x = -32; + pixel_y = -32 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled, +/area/surface/station/crew_quarters/heads/chief) +"lEV" = ( +/obj/structure/closet{ + name = "welding equipment" + }, +/obj/item/weapon/weldpack, +/obj/item/clothing/glasses/welding, +/obj/item/clothing/glasses/welding{ + pixel_y = -4 + }, +/obj/item/clothing/head/welding{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/clothing/head/welding, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/purple/border, +/obj/machinery/camera/network/research{ + c_tag = "SCI - Robotics South"; + dir = 1 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/robotics) +"lFB" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/research) +"lFX" = ( +/obj/effect/floor_decal/corner_steel_grid{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/research_foyer) +"lFZ" = ( +/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/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/command) +"lGl" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/obj/machinery/newscaster{ + pixel_x = 26 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/westskybridge) +"lGq" = ( +/obj/machinery/turretid/stun{ + control_area = "\improper Command - Teleporter"; + name = "Teleporter turret control"; + pixel_y = -24; + req_access = list(19) + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/command) +"lHl" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/cryo_cell{ + layer = 3.3 + }, +/turf/simulated/shuttle/floor/white, +/area/shuttle/large_escape_pod2/station) +"lHE" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/medical/patient_a) +"lIs" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/park/skybridge) +"lJD" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "atmoslockdown"; + layer = 3.3; + name = "Atmospherics Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/atmos) +"lMh" = ( +/turf/unsimulated/mask, +/area/surface/station/hallway/primary/secondfloor/east) +"lMj" = ( +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/hallway/secondary/secondfloor/command) +"lMp" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/west) +"lMF" = ( +/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/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/hallway/snd) +"lNc" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/surface/station/security/tactical) +"lNK" = ( +/turf/unsimulated/mask, +/area/surface/station/engineering/hallway/snd) +"lNV" = ( +/obj/structure/flora/pottedplant/flower, +/turf/simulated/floor/carpet/sblucarpet, +/area/surface/station/medical/psych) +"lOc" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/techfloor{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/camera/network/prison{ + c_tag = "SEC - Common Brig Enterance"; + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/security/prison) +"lOf" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/command/operations) +"lOl" = ( +/obj/structure/bookcase/manuals/medical, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/office) +"lOs" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/research_foyer) +"lPp" = ( +/obj/machinery/computer/communications, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 5 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/command/operations) +"lPK" = ( +/obj/machinery/camera/network/command{ + c_tag = "COM - Liaison Office"; + dir = 6 + }, +/turf/simulated/floor/wood, +/area/surface/station/command/liaison) +"lPP" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/east) +"lQB" = ( +/obj/structure/bed/padded, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/pink/border{ + dir = 4 + }, +/obj/item/device/radio/intercom/department/medbay{ + dir = 8; + pixel_x = 21 + }, +/obj/structure/extinguisher_cabinet{ + dir = 1; + pixel_y = 30 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/exam_room) +"lQR" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/carpet, +/area/surface/station/crew_quarters/sleep/Dorm_1) +"lRd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_engineering{ + name = "Engineering Hallway" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/engineering/hallway/sndaccess) +"lRy" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/command) +"lRQ" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/green/border, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/west/elevator) +"lSb" = ( +/obj/effect/floor_decal/techfloor, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/ai) +"lSg" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 6 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/robotics) +"lSZ" = ( +/obj/effect/floor_decal/corner_steel_grid{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/research_foyer) +"lUb" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "biohazard"; + layer = 3.3; + name = "Biohazard Shutter" + }, +/turf/simulated/floor/plating, +/area/surface/station/rnd/lab) +"lUB" = ( +/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/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/robotics) +"lVk" = ( +/obj/effect/zone_divider, +/turf/simulated/wall, +/area/surface/station/engineering/reactor_airlock/snd) +"lVK" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/machinery/newscaster{ + pixel_x = 28 + }, +/obj/effect/landmark/start{ + name = "Paramedic" + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/surface/station/medical/lockerroom) +"lVP" = ( +/obj/effect/floor_decal/spline/plain, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/hallway/primary/secondfloor/east) +"lVV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/freezer, +/area/surface/station/engineering/engi_restroom) +"lWb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/bordercorner{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/machinery/camera/network/second_floor{ + c_tag = "Second Floor - West Stairwell Access" + }, +/obj/structure/sign/directions/ladder_down{ + dir = 1; + pixel_y = 38 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/weststairwell) +"lWe" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/machinery/flasher{ + id = "cell1flash"; + pixel_x = -26 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/prison) +"lWj" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/station/engineering/engi_restroom) +"lWT" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/eva_hallway) +"lYQ" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/engineering/hallway/reactor) +"lYR" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/camera/network/command{ + c_tag = "COM - EVA North"; + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/ai_monitored/storage/eva) +"lYY" = ( +/obj/structure/sign/redcross{ + desc = "The Star of Life, a symbol of Medical Aid."; + icon_state = "lifestar" + }, +/turf/simulated/wall/r_wall, +/area/surface/station/medical/office) +"lZz" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/engineering{ + name = "Cargo Substation"; + req_one_access = list(11,24,50) + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/cargo/snd) +"maE" = ( +/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{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/station/park/skybridge) +"mbu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/obj/machinery/meter, +/obj/structure/closet/hydrant{ + pixel_x = 32 + }, +/obj/item/clothing/glasses/meson, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/command) +"mbL" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/engineering/hallway/snd) +"mce" = ( +/turf/simulated/wall, +/area/surface/station/medical/patient_a) +"mcr" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/snd) +"mcW" = ( +/obj/machinery/computer/rdconsole/robotics, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/robotics) +"mdo" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/open, +/area/surface/station/medical/hallway/snd) +"mex" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/research_foyer) +"meJ" = ( +/turf/simulated/wall, +/area/surface/station/maintenance/substation/cargo/snd) +"meP" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/map_helper/airlock/door/ext_door, +/obj/machinery/access_button/airlock_exterior{ + master_tag = "com_airlock"; + pixel_x = 35 + }, +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "com_airlock_outer"; + locked = 1; + name = "External Access" + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/hallway/secondary/secondfloor/eva_hallway) +"mfo" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/command{ + name = "Liaison Office"; + req_one_access = list(38) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/command/liaison) +"mfs" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/engineering/hallway/eva_hallway) +"mfN" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/eva) +"mgS" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 12 + }, +/obj/structure/mirror{ + pixel_x = 28 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -12; + pixel_y = -24 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7, +/turf/simulated/floor/tiled/freezer, +/area/surface/station/engineering/engi_restroom) +"mhc" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/item/weapon/paper/dockingcodes{ + codes_from_z = 4; + name = "Telecomms Docking Codes" + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/command/operations) +"mhv" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + desc = "Talk... listen through this."; + name = "Station Intercom (Brig Radio)"; + pixel_y = -21; + wires = 7 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/security/hallway/stairwell) +"mhw" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled, +/area/surface/station/crew_quarters/heads/chief) +"mhy" = ( +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/dormhallway) +"mhI" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/security/hallway/stairwell) +"mhN" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/station/engineering/engi_restroom) +"mim" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/green/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/westskybridge) +"mjt" = ( +/obj/machinery/porta_turret/ai_defense, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/ai) +"mjy" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/quartermaster/office) +"mjQ" = ( +/turf/simulated/wall, +/area/surface/station/rnd/lab) +"mkc" = ( +/turf/simulated/wall, +/area/surface/station/engineering/atmos/monitoring) +"mkF" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_atmos{ + name = "Atmospherics" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/engineering/atmos) +"mkK" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/research/snd) +"mkS" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/ladder, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_monitoring) +"mkX" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/east) +"mln" = ( +/obj/machinery/pros_fabricator, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/surface/station/rnd/robotics) +"mlD" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 1 + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/tiled, +/area/surface/station/security/prison) +"mms" = ( +/obj/item/weapon/stool/padded{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime/diagonal, +/obj/machinery/computer/security/telescreen/entertainment{ + icon_state = "frame"; + pixel_y = -32 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/virology) +"mne" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/sndaccess) +"mno" = ( +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/industrial/danger/corner, +/obj/effect/floor_decal/spline/plain{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "steel_dirty" + }, +/area/surface/outside/station/roof) +"moK" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/command{ + name = "Teleporter Access"; + req_one_access = list(17) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/command/teleporter) +"mpg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/research) +"mqi" = ( +/obj/machinery/computer/centrifuge, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/virology) +"mqI" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_engineering{ + name = "Engineering Hallway" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/engineering/foyer/secondfloor) +"mqX" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_command{ + id_tag = null; + name = "Operations" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/command/operations) +"mqZ" = ( +/obj/structure/sign/warning/secure_area, +/turf/simulated/wall/r_wall, +/area/surface/station/engineering/foyer/secondfloor) +"mrb" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/hallway/secondary/secondfloor/command) +"mrz" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/snd) +"mrM" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/surface/station/rnd/chargebay) +"mrU" = ( +/obj/structure/catwalk, +/obj/structure/lattice, +/turf/simulated/open, +/area/surface/station/engineering/atmos) +"mrX" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "crglockdown"; + layer = 3.3; + name = "Cargo Lockdown" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/status_display, +/turf/simulated/floor/plating, +/area/surface/station/quartermaster/foyer) +"msb" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/paper_bin, +/obj/item/weapon/clipboard, +/obj/item/weapon/folder/white_cmo, +/obj/item/weapon/stamp/cmo, +/obj/item/weapon/pen/multi, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/crew_quarters/heads/cmo) +"msc" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/security/armoury) +"msr" = ( +/turf/simulated/floor/tiled/monotile, +/area/surface/station/quartermaster/office) +"mtd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/diagonal, +/turf/simulated/floor/tiled/white, +/area/surface/station/crew_quarters/captain) +"mth" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/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" + }, +/obj/effect/catwalk_plated/dark, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/security/snd) +"mty" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/weststairwell/snd) +"muv" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/obj/machinery/camera/network/second_floor{ + c_tag = "Second Floor - West Skybridge 3"; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/westskybridge) +"muw" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/button/remote/airlock{ + dir = 4; + id = "BrigFoyerUpper"; + name = "Door Bolt Control"; + pixel_x = -24; + req_access = list(1); + specialfunctions = 4 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/security/hallway/stairwell) +"mvl" = ( +/obj/structure/table/standard, +/obj/item/weapon/paper_bin, +/obj/item/weapon/hand_labeler, +/obj/item/weapon/pen/blue{ + pixel_x = -3 + }, +/obj/item/weapon/pen, +/obj/item/device/mmi, +/obj/item/device/mmi, +/obj/item/device/mmi, +/obj/item/weapon/storage/box/bodybags{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/weapon/storage/box/gloves, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 1 + }, +/obj/item/weapon/pen/red{ + pixel_x = 3; + pixel_y = 3 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/robotics) +"mvm" = ( +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -21 + }, +/obj/item/device/radio/intercom/custom{ + pixel_y = -21 + }, +/obj/item/device/radio/intercom/private{ + dir = 1; + pixel_y = 21 + }, +/obj/effect/landmark{ + name = "tripai" + }, +/turf/simulated/floor/greengrid, +/area/surface/station/ai) +"mvN" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "holodeck_tint" + }, +/obj/machinery/camera/network/civilian{ + c_tag = "CIV - Holodeck North"; + dir = 6 + }, +/turf/simulated/floor/plating, +/area/surface/station/holodeck_control) +"mwc" = ( +/obj/effect/floor_decal/borderfloor, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/border, +/turf/simulated/floor/tiled, +/area/surface/station/park/skybridge) +"mwp" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/yellow/border, +/obj/item/weapon/folder/yellow, +/obj/item/device/flashlight{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/device/flashlight, +/obj/machinery/light, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/command/operations) +"mxn" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/status_display, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "biohazard"; + layer = 3.3; + name = "Biohazard Shutter" + }, +/turf/simulated/floor/plating, +/area/surface/station/rnd/research) +"mxs" = ( +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 4 + }, +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "eng_airlock_outer"; + locked = 1; + name = "Engineering External Access" + }, +/obj/effect/map_helper/airlock/door/ext_door, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/engineering/hallway/eva_hallway) +"mxN" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/ai_status_display, +/turf/simulated/floor/plating, +/area/surface/station/hallway/secondary/secondfloor/civilian) +"mxR" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/surface/station/command/operations) +"mya" = ( +/turf/simulated/wall, +/area/surface/station/quartermaster/restroom) +"mzO" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "crglockdown"; + layer = 3.3; + name = "Cargo Lockdown" + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/maintenance/substation/cargo/snd) +"mAe" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/quartermaster/qm) +"mAs" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "biohazard"; + layer = 3.3; + name = "Biohazard Shutter" + }, +/turf/simulated/floor/plating, +/area/surface/station/rnd/workshop) +"mCl" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Psychiatrist" + }, +/turf/simulated/floor/carpet/sblucarpet, +/area/surface/station/medical/psych) +"mCA" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/hallway/primary/secondfloor/east) +"mCN" = ( +/turf/simulated/floor/tiled/old_tile/white, +/area/surface/station/medical/restroom) +"mDj" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + name = "Medbay Maintenance Access"; + req_access = list(5) + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/medbay/snd) +"mDw" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/quartermaster/office) +"mDL" = ( +/obj/machinery/door/window/northleft{ + name = "shower" + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/obj/machinery/shower{ + dir = 4; + pixel_x = 5; + pixel_y = -1 + }, +/obj/structure/curtain/open/shower/engineering, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/engi_restroom) +"mEt" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass{ + name = "Holodeck" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/holodeck_control) +"mEG" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/green, +/obj/effect/floor_decal/corner/lime/diagonal, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/virology) +"mFa" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/maintenance/substation/security/snd) +"mFb" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/cargo) +"mFj" = ( +/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, +/turf/simulated/floor/tiled, +/area/surface/station/security/equiptment_storage) +"mFk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/black, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/virology) +"mFK" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/purple/bordercorner2{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -21 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/lab) +"mFW" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/security/hallway/stairwell) +"mFZ" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24; + pixel_y = -12 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 4 + }, +/obj/machinery/camera/network/engineering{ + c_tag = "ENG - Foyer Upper"; + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/engineering/foyer/secondfloor) +"mGM" = ( +/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/structure/sign/directions/security{ + dir = 4; + pixel_x = 32; + pixel_y = 38 + }, +/obj/structure/sign/directions/engineering{ + dir = 4; + pixel_x = 32; + pixel_y = 32 + }, +/obj/structure/sign/directions/medical{ + dir = 4; + pixel_x = 32; + pixel_y = 26 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/west/elevator) +"mGQ" = ( +/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{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/hallway/snd) +"mHD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/meter, +/obj/effect/zone_divider, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/command) +"mHW" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/surface/station/crew_quarters/sleep/Dorm_5) +"mHY" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/ai_monitored/storage/eva) +"mIp" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/multi_tile/glass{ + id_tag = "PatientWard"; + name = "Patient Ward"; + req_access = list(5) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/medical/patient_wing) +"mIq" = ( +/turf/simulated/floor/tiled/old_tile/gray, +/area/surface/station/security/warden) +"mIP" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/surface/station/crew_quarters/sleep/Dorm_5) +"mIW" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/robotics) +"mJi" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/shieldwallgen, +/turf/simulated/floor/tiled/dark, +/area/surface/station/command/teleporter) +"mJs" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/storage/box/cups, +/turf/simulated/floor/wood, +/area/surface/station/command/meeting_room) +"mJt" = ( +/obj/structure/sign/warning/secure_area, +/turf/simulated/wall/r_wall, +/area/surface/station/ai) +"mJz" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/disposal, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/item/device/radio/intercom{ + pixel_y = -21 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/office) +"mJF" = ( +/turf/simulated/floor/tiled/white, +/area/surface/station/crew_quarters/heads/rdoffice) +"mKi" = ( +/turf/simulated/floor/tiled, +/area/surface/station/command/operations) +"mKm" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/ai/upload_foyer) +"mKo" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/structure/table/standard, +/obj/item/device/radio/beacon{ + pixel_y = 4 + }, +/obj/item/device/radio/beacon, +/obj/random_multi/single_item/hand_tele, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/command/teleporter) +"mKt" = ( +/obj/structure/table/reinforced, +/obj/machinery/computer/skills{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/crew_quarters/heads/rdoffice) +"mKY" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/blue/bordercorner, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/command) +"mLp" = ( +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/red/bordercorner, +/turf/simulated/floor/tiled, +/area/surface/station/security/prison) +"mLF" = ( +/obj/effect/floor_decal/techfloor{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/machinery/cryopod, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/security/hallway/cell_hallway) +"mLL" = ( +/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/surface/station/storage/art) +"mLM" = ( +/obj/effect/floor_decal/techfloor{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/ai) +"mMz" = ( +/obj/effect/wingrille_spawn/reinforced_phoron, +/obj/machinery/door/blast/regular{ + dir = 4; + id = "SupermatterPort"; + layer = 3.3; + name = "Reactor Core Blast Door" + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"mMC" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/structure/table/glass, +/obj/structure/flora/pottedplant/small{ + pixel_y = 8 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/medical/patient_wing) +"mMW" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/book/codex/corp_regs, +/obj/item/device/tape/random, +/obj/item/device/taperecorder, +/turf/simulated/floor/carpet, +/area/surface/station/crew_quarters/captain) +"mMX" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/machinery/newscaster{ + pixel_y = -28 + }, +/obj/effect/landmark/start{ + name = "Internal Affairs Agent" + }, +/turf/simulated/floor/wood, +/area/surface/station/command/internalaffairs) +"mNe" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/station/security/prison) +"mNj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/window/northleft{ + name = "Site Manager's Desk Door"; + req_one_access = list(20) + }, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/captain) +"mNA" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/west) +"mOg" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/clothing/accessory/armor/armorplate/laserproof, +/obj/item/clothing/accessory/armor/legguards/laserproof, +/obj/item/clothing/accessory/armor/armguards/laserproof, +/obj/item/clothing/head/helmet/laserproof, +/obj/effect/floor_decal/corner_oldtile/blue{ + dir = 9 + }, +/obj/machinery/door/window/brigdoor/eastleft{ + name = "Laser Armor" + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/armoury) +"mOF" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/sndaccess) +"mOK" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 10 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/office) +"mPp" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/carpet/sblucarpet, +/area/surface/station/medical/psych) +"mPV" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/open, +/area/surface/station/engineering/reactor_room) +"mQH" = ( +/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/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/security/armoury) +"mRp" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/locker_room) +"mRr" = ( +/obj/machinery/camera/network/second_floor{ + c_tag = "Second Floor -East Stairwell"; + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/hallway/primary/secondfloor/east) +"mRL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/command) +"mRM" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/engineering/foyer/secondfloor) +"mRZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/dormhallway) +"mSo" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/quartermaster/office) +"mSX" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/east) +"mTF" = ( +/obj/machinery/deployable/barrier, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 21 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/equiptment_storage) +"mVg" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/warden) +"mVo" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/mask/breath, +/obj/structure/table/rack{ + layer = 2.6 + }, +/obj/machinery/door/window/southleft{ + name = "Medical Suits"; + req_one_access = list(5) + }, +/obj/item/clothing/suit/space/void/medical, +/obj/item/clothing/head/helmet/space/void/medical, +/turf/simulated/floor/tiled/dark, +/area/surface/station/ai_monitored/storage/eva) +"mVx" = ( +/obj/structure/cable/green, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -24; + pixel_y = 12 + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/security/riot_control) +"mVy" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/quartermaster/restroom) +"mWt" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/command) +"mWG" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/bordercorner{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/dormhallway) +"mXm" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/hallway/secondary/secondfloor/civilian) +"mXT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/eva_hallway) +"mYm" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/ai_monitored/storage/eva) +"mYW" = ( +/obj/structure/table/glass, +/obj/structure/flora/pottedplant/fern{ + pixel_y = 8 + }, +/obj/machinery/camera/network/second_floor{ + c_tag = "Second Floor - West Skybridge 2"; + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -21 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/hallway/secondary/secondfloor/westskybridge) +"mZt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/command) +"mZx" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular/open{ + id = "medbayquar"; + layer = 3.3; + name = "Medbay Lockdown" + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/medical/office) +"nad" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lime/diagonal, +/obj/machinery/camera/network/medbay{ + c_tag = "MED - Virology Quarantine"; + dir = 6 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/virology) +"naq" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/ai_status_display, +/turf/simulated/floor/plating, +/area/surface/station/rnd/research) +"nbm" = ( +/obj/item/modular_computer/console/preset/medical{ + dir = 8 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/medical/hallway/snd) +"nbw" = ( +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/red/bordercorner, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/snd) +"nbC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/quartermaster/office) +"ncp" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/foyer) +"ncP" = ( +/obj/structure/table/glass, +/obj/structure/flora/pottedplant{ + pixel_y = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/hallway/primary/secondfloor/east) +"ndO" = ( +/turf/simulated/floor/carpet/sblucarpet, +/area/surface/station/medical/psych) +"nei" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 2; + id_tag = "MedbayUpper"; + name = "Medbay"; + req_access = list(5) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/medical/office) +"nen" = ( +/obj/machinery/power/breakerbox/activated{ + RCon_tag = "Command Substation Bypass" + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/command) +"nfp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/purple/border, +/obj/machinery/light, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/research) +"nfG" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/eva_hallway) +"nfV" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/crew_quarters/heads/cmo) +"nfY" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/closet/secure_closet/personal, +/obj/machinery/button/remote/airlock{ + dir = 8; + id = "droom2"; + name = "Door Bolt Control"; + pixel_x = 24; + pixel_y = 8; + specialfunctions = 4 + }, +/turf/simulated/floor/carpet, +/area/surface/station/crew_quarters/sleep/Dorm_2) +"ngf" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/mask/breath, +/obj/item/clothing/suit/space/void/security, +/obj/item/clothing/head/helmet/space/void/security, +/obj/machinery/door/window/southleft{ + name = "Security Suits"; + req_one_access = list(1) + }, +/obj/structure/table/rack{ + layer = 2.6 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/ai_monitored/storage/eva) +"niC" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + 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 + }, +/turf/simulated/floor/tiled, +/area/surface/station/command/operations) +"njg" = ( +/turf/simulated/open, +/area/surface/station/engineering/hallway/reactor) +"njp" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/engine_eva) +"njA" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/regular/open{ + id = "seclockdown"; + layer = 3.3; + name = "Security Lockdown" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/security/warden) +"nkm" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/security/snd) +"nkv" = ( +/obj/structure/closet/secure_closet/quartermaster, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/qm) +"nlh" = ( +/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/wood, +/area/surface/station/crew_quarters/captain) +"nmd" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/open, +/area/surface/station/ai) +"nmx" = ( +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24; + pixel_y = -12 + }, +/obj/structure/table/standard, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/surface/station/crew_quarters/sleep/Dorm_5) +"nmz" = ( +/obj/effect/floor_decal/corner/white{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central5, +/obj/structure/table/glass, +/obj/item/weapon/storage/box/beakers{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/weapon/storage/box/syringes, +/obj/item/weapon/reagent_containers/dropper, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/virology) +"nmG" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/command/operations) +"nnh" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/office) +"nno" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/hallway/snd) +"nnF" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/security/armoury) +"noa" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/security/snd) +"nod" = ( +/obj/structure/table/standard, +/obj/item/device/tape/random, +/obj/item/device/tape/random{ + pixel_y = -2 + }, +/obj/item/device/taperecorder, +/obj/item/device/taperecorder{ + pixel_x = 3 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/storage/art) +"noj" = ( +/obj/structure/ladder, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/engineering/reactor_room) +"noG" = ( +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/yellow/bordercorner, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/east) +"noL" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/floor_decal/corner_oldtile/red{ + dir = 5 + }, +/obj/item/clothing/accessory/armor/armorplate/riot, +/obj/item/clothing/head/helmet/riot, +/obj/item/weapon/shield/riot, +/obj/machinery/door/window/brigdoor/southleft{ + name = "Riot Armor" + }, +/obj/item/weapon/shield/riot{ + pixel_x = 2; + pixel_y = -3 + }, +/obj/item/weapon/melee/baton/loaded, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/armoury) +"npe" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/open, +/area/surface/station/ai) +"nph" = ( +/obj/structure/table/steel, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals_central5, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/item/device/mmi/digital/robot, +/obj/item/device/robotanalyzer{ + pixel_y = 4 + }, +/obj/item/device/robotanalyzer, +/turf/simulated/floor/tiled/old_tile/gray, +/area/surface/station/rnd/robotics) +"npn" = ( +/obj/structure/sign/warning/secure_area, +/turf/simulated/wall/r_wall, +/area/surface/station/security/lobby) +"npz" = ( +/obj/machinery/porta_turret/ai_defense, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/dark, +/area/surface/station/ai) +"npA" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 4 + }, +/obj/machinery/camera/network/engineering{ + c_tag = "ENG - EVA Hallway"; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/eva_hallway) +"nqo" = ( +/obj/structure/sign/directions/medical/virology{ + dir = 9 + }, +/turf/simulated/wall, +/area/surface/station/medical/patient_wing) +"nrr" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/snd) +"nru" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/weapon/paper_bin, +/obj/item/weapon/pen, +/obj/item/weapon/clipboard, +/obj/item/weapon/folder/red, +/obj/item/weapon/hand_labeler, +/turf/simulated/floor/tiled/dark, +/area/surface/station/security/warden) +"nrJ" = ( +/obj/machinery/airlock_sensor/airlock_exterior{ + dir = 8; + id_tag = "roof_airlock_ext_sensor"; + master_tag = "roof_airlock"; + pixel_x = 31; + pixel_y = -24 + }, +/obj/effect/map_helper/airlock/sensor/ext_sensor, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "steel_dirty"; + initial_flooring = /decl/flooring/tiling/steel_dirty; + outdoors = 0 + }, +/area/surface/station/hallway/primary/secondfloor/east) +"nst" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/table/steel, +/obj/item/weapon/storage/box/donkpockets, +/obj/item/weapon/storage/box/donkpockets{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/box/cups{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/device/tape/random, +/obj/item/device/taperecorder, +/turf/simulated/floor/tiled, +/area/surface/station/security/prison) +"nsL" = ( +/obj/machinery/sleep_console{ + dir = 4 + }, +/turf/simulated/shuttle/floor, +/area/shuttle/large_escape_pod2/station) +"nsX" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/window/eastleft{ + name = "Research and Development Desk"; + req_one_access = list(7) + }, +/obj/item/sticky_pad/random, +/obj/item/weapon/deskbell, +/turf/simulated/floor/tiled, +/area/surface/station/rnd/lab) +"ntf" = ( +/obj/effect/floor_decal/borderfloorwhite/corner, +/obj/effect/floor_decal/corner/lime/bordercorner, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/virology) +"nue" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/machinery/photocopier/faxmachine{ + department = "Research Director's Office" + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/crew_quarters/heads/rdoffice) +"nuq" = ( +/obj/structure/table/standard, +/obj/random/medical/lite, +/obj/item/weapon/storage/firstaid/regular, +/obj/item/bodybag/cryobag, +/obj/machinery/requests_console{ + department = "Engineering"; + departmentType = 3; + dir = 8; + name = "Engineering RC"; + pixel_x = 24 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/locker_room) +"nur" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/open, +/area/surface/station/hallway/secondary/secondfloor/weststairwell) +"nuC" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/open, +/area/surface/station/ai) +"nuG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/quartermaster/office) +"nuK" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/snd) +"nvp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/eva_hallway) +"nvt" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/eva_hallway) +"nwd" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/effect/floor_decal/steeldecal/steel_decals3, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 5 + }, +/obj/machinery/hologram/holopad, +/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{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 10 + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/surface/station/park/skybridge) +"nwP" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled, +/area/surface/station/security/prison) +"nyi" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/eva_hallway) +"nyo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/station/park/skybridge) +"nzR" = ( +/obj/structure/table/standard, +/obj/item/tabloid, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/hallway/secondary/secondfloor/command) +"nAp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/obj/machinery/camera/network/second_floor{ + c_tag = "Second Floor - West Skybridge 1"; + dir = 8 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/westskybridge) +"nBy" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/clothing/accessory/armor/armorplate/laserproof, +/obj/item/clothing/head/helmet/laserproof, +/obj/effect/floor_decal/corner_oldtile/blue{ + dir = 9 + }, +/obj/machinery/door/window/brigdoor/eastright{ + name = "Laser Armor" + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/armoury) +"nBG" = ( +/obj/machinery/door/firedoor/border_only, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/sign/directions/medical/virology{ + dir = 4; + pixel_x = -32; + pixel_y = -6 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/patient_wing) +"nBQ" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/rnd/robotics) +"nDb" = ( +/obj/structure/ladder, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/engineering/atmos) +"nDg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/command) +"nDY" = ( +/obj/effect/floor_decal/techfloor/corner{ + dir = 6 + }, +/obj/effect/floor_decal/techfloor{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/ai) +"nEq" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/hull{ + nitrogen = 93.7835; + outdoors = 1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/surface/outside/station/roof) +"nFo" = ( +/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 = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/command) +"nFr" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/research) +"nFG" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/blue/border, +/obj/machinery/computer/aifixer{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/crew_quarters/heads/rdoffice) +"nFM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/office) +"nGk" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner{ + dir = 1 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/requests_console{ + department = "Atmospherics"; + departmentType = 3; + name = "Atmos RC"; + pixel_y = 24 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos/monitoring) +"nGv" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/blast/regular/open{ + id = "seclockdown"; + layer = 3.3; + name = "Security Lockdown" + }, +/obj/structure/cable/green, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/security/lobby) +"nGI" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/requests_console{ + department = "Science"; + departmentType = 2; + dir = 8; + name = "Science RC"; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/lab) +"nHk" = ( +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 1; + name = "CMO Office"; + sortType = "CMO Office" + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/office) +"nHy" = ( +/obj/item/device/radio/intercom/custom{ + dir = 1; + pixel_y = 21 + }, +/turf/simulated/floor/greengrid, +/area/surface/station/ai) +"nHR" = ( +/obj/machinery/atmospherics/unary/outlet_injector{ + frequency = 1443; + id = null; + use_power = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/prison) +"nJj" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/glass_security{ + name = "Solitary Confinement 1"; + req_one_access = list(2) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/security/hallway/cell_hallway) +"nKq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-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, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/snd) +"nKU" = ( +/obj/structure/sign/directions/security/brig{ + dir = 4; + pixel_y = 6 + }, +/obj/structure/sign/directions/security/armory{ + dir = 1 + }, +/turf/simulated/wall, +/area/surface/station/security/hallway/stairwell) +"nKY" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/rnd/chargebay) +"nLJ" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_engineering{ + name = "Engineering Hallway" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/engineering/foyer/secondfloor) +"nMg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/cell_hallway) +"nNt" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/hallway/snd) +"nOp" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/turf/simulated/floor/tiled/monofloor{ + dir = 1 + }, +/area/surface/station/command/operations) +"nPy" = ( +/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/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/robotics) +"nPA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/west/elevator) +"nPI" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/glass_security{ + id_tag = "prisonexit"; + name = "Brig Exit"; + req_one_access = list(2,4) + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/security/prison) +"nQy" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/shieldwallgen, +/obj/item/device/radio/intercom{ + pixel_y = -21 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/effect/zone_divider, +/turf/simulated/floor/tiled/dark, +/area/surface/station/command/teleporter) +"nQN" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/portable_atmospherics/powered/scrubber, +/obj/item/weapon/tool/wrench, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/plating, +/area/surface/station/security/riot_control) +"nRY" = ( +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/structure/cable/green, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -12; + pixel_y = -24 + }, +/obj/machinery/button/windowtint{ + id = "pr1_window_tint"; + pixel_x = 11; + pixel_y = -23 + }, +/obj/effect/floor_decal/corner/pink/border, +/obj/effect/floor_decal/steeldecal/steel_decals_central7, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/patient_a) +"nSO" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + dir = 1; + pixel_y = 30 + }, +/obj/structure/closet/hydrant{ + pixel_x = -32 + }, +/obj/item/clothing/glasses/meson, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/weststairwell/snd) +"nUb" = ( +/obj/effect/floor_decal/techfloor{ + dir = 6 + }, +/obj/machinery/computer/general_air_control{ + dir = 1; + frequency = 1443; + level = 3; + name = "Distribution and Waste Monitor"; + sensors = list("mair_in_meter" = "Mixed Air In", "air_sensor" = "Mixed Air Supply Tank", "mair_out_meter" = "Mixed Air Out", "dloop_atm_meter" = "Distribution Loop", "wloop_atm_meter" = "Engine Waste") + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/engineering/atmos) +"nUl" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/table/steel, +/obj/item/device/communicator, +/obj/item/device/communicator, +/obj/item/device/radio/headset, +/obj/item/device/radio/headset, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/prison) +"nUo" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + id = "medbayquar"; + layer = 3.3; + name = "Medbay Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/medical/office) +"nUP" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/hallway/primary/secondfloor/east) +"nVf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/airlock_sensor/airlock_interior{ + dir = 1; + id_tag = "com_airlock_int_sensor"; + master_tag = "com_airlock"; + pixel_x = -35; + pixel_y = -31 + }, +/obj/effect/map_helper/airlock/sensor/int_sensor, +/obj/effect/zone_divider, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/eva_hallway) +"nVz" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_command{ + id_tag = "sbridgedoor"; + name = "Operations" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/command/operations) +"nWo" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/item/device/radio/intercom{ + desc = "Talk... listen through this."; + name = "Station Intercom (Brig Radio)"; + pixel_y = -21; + wires = 7 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/green/border, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/civilian) +"nWW" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/crew_quarters/captain) +"nXm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/station/engineering/engi_restroom) +"nXr" = ( +/obj/structure/bed/chair/shuttle, +/turf/simulated/shuttle/floor/white, +/area/shuttle/large_escape_pod2/station) +"nXI" = ( +/obj/structure/filingcabinet/filingcabinet, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/bordercorner{ + dir = 1 + }, +/obj/machinery/camera/network/cargo{ + c_tag = "CRG - Cargo Office North" + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/office) +"nYj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/sndaccess) +"nYK" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/surface/station/security/tactical) +"nZe" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/open, +/area/surface/station/engineering/hallway/reactor) +"oao" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Research Access"; + req_one_access = list(47) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/rnd/research) +"oaE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/effect/zone_divider, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/eva_hallway) +"obD" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/status_display, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "biohazard"; + layer = 3.3; + name = "Biohazard Shutter" + }, +/turf/simulated/floor/plating, +/area/surface/station/rnd/robotics) +"odf" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/device/radio/intercom/department/security{ + dir = 4; + pixel_x = -21 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/security/equiptment_storage) +"oeC" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/quartermaster/foyer) +"ofr" = ( +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/effect/floor_decal/corner/yellow/bordercorner{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/snd) +"ofN" = ( +/obj/structure/table/steel, +/obj/item/weapon/folder/yellow, +/obj/item/weapon/stamp/denied{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/stamp/cargo, +/obj/item/weapon/deskbell, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet{ + dir = 1; + pixel_y = 30 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/office) +"ofR" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/office) +"oga" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/patient_wing) +"ogc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/snd) +"ogh" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/industrial/warning, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/station/command/operations) +"ohH" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 6 + }, +/obj/structure/closet/crate/engineering, +/obj/item/stack/cable_coil, +/obj/random/toolbox, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/construction/office) +"ohQ" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/obj/item/device/radio/intercom{ + pixel_y = -21 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/command) +"oie" = ( +/obj/machinery/disposal, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/blue/border, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/crew_quarters/heads/rdoffice) +"ojB" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/engineering/atmos) +"oks" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/surface/station/command/operations) +"okQ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/dormhallway) +"okT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/hull{ + nitrogen = 93.7835; + outdoors = 1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/surface/outside/station/roof) +"old" = ( +/obj/structure/sign/warning/engineering_access, +/turf/simulated/wall/r_wall, +/area/surface/station/engineering/hallway/sndaccess) +"olt" = ( +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 6 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/command/liaison) +"olA" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner_techfloor_gray{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/hallway/primary/secondfloor/west) +"olJ" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/cell_hallway) +"omq" = ( +/obj/item/modular_computer/console/preset/command{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/crew_quarters/heads/chief) +"ono" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/item/device/suit_cooling_unit{ + pixel_x = 4; + pixel_y = -2 + }, +/obj/item/device/suit_cooling_unit, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/engine_eva) +"onW" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/monofloor{ + dir = 4 + }, +/area/surface/station/quartermaster/office) +"oor" = ( +/obj/structure/railing, +/turf/simulated/open, +/area/surface/station/hallway/secondary/secondfloor/civilian) +"oot" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/effect/floor_decal/rust, +/obj/effect/catwalk_plated, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/surface/outside/station/roof) +"ooy" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/surface/station/command/internalaffairs) +"opg" = ( +/obj/structure/cable/green, +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/red/border, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -12; + pixel_y = -24 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/warden) +"oqm" = ( +/turf/simulated/floor/tiled, +/area/surface/station/holodeck_control) +"oqy" = ( +/obj/structure/sign/warning/nosmoking_2, +/turf/simulated/wall/r_wall, +/area/surface/station/crew_quarters/heads/cmo) +"oqD" = ( +/obj/machinery/shower{ + dir = 4; + pixel_x = 5; + pixel_y = -1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 5 + }, +/obj/structure/window/basic{ + dir = 8; + layer = 2.8 + }, +/obj/machinery/door/window/southleft{ + name = "Shower" + }, +/obj/structure/curtain/open/shower/medical, +/turf/simulated/floor/tiled/eris, +/area/surface/station/medical/restroom) +"oqQ" = ( +/obj/structure/table/steel, +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/item/device/electronic_assembly/large, +/turf/simulated/floor/tiled/dark, +/area/surface/station/rnd/workshop) +"orU" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/turf/simulated/floor/tiled, +/area/surface/station/storage/art) +"osR" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/open, +/area/surface/station/engineering/atmos) +"otm" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/hydroponics, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/prison) +"otw" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/ai_monitored/storage/eva) +"otF" = ( +/obj/machinery/camera/network/command{ + c_tag = "COM - EVA South"; + dir = 4 + }, +/obj/structure/table/standard, +/obj/machinery/cell_charger, +/obj/item/weapon/cell/high, +/obj/item/weapon/cell/high{ + pixel_y = -4 + }, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/device/radio/off{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/device/radio/off, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/ai_monitored/storage/eva) +"otQ" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/machinery/light_switch{ + pixel_x = 12; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/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/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/civilian) +"oup" = ( +/obj/structure/table/standard, +/obj/item/weapon/soap/nanotrasen, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/green/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/station/holodeck_control) +"ouq" = ( +/obj/structure/table/glass, +/obj/effect/floor_decal/corner/white{ + dir = 5 + }, +/obj/effect/floor_decal/corner/white{ + dir = 10 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/item/weapon/storage/fancy/vials{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/weapon/storage/lockbox/vials, +/obj/item/weapon/reagent_containers/syringe/antiviral{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/item/weapon/reagent_containers/syringe/antiviral{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/weapon/reagent_containers/syringe/antiviral, +/obj/item/weapon/reagent_containers/syringe/antiviral{ + pixel_x = 2; + pixel_y = 2 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/virology) +"ouX" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/prison) +"ovn" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/green/border, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/civilian) +"ovY" = ( +/obj/structure/sign/warning/server_room, +/turf/simulated/wall, +/area/surface/station/rnd/workshop) +"ows" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock{ + name = "Medbay Restroom" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/medical/restroom) +"oww" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/surface/station/security/riot_control) +"owZ" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/wood/sif, +/area/surface/station/rnd/research) +"oxx" = ( +/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" + }, +/obj/item/device/radio/beacon, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/east) +"oxI" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/west) +"oyg" = ( +/obj/structure/disposalpipe/down{ + dir = 8 + }, +/obj/structure/lattice, +/obj/structure/catwalk, +/turf/simulated/open, +/area/surface/outside/plains/station/snd) +"oyp" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/engineering/hallway/sndaccess) +"oyx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/rnd/workshop) +"oyC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/station/park/skybridge) +"oyL" = ( +/obj/structure/table/standard, +/turf/simulated/floor/tiled/dark, +/area/surface/station/security/armoury) +"ozf" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/yellow/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/east) +"ozo" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/surface/station/hallway/secondary/secondfloor/eva_hallway) +"ozu" = ( +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -12; + pixel_y = -24 + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/cargo) +"ozI" = ( +/obj/structure/table/standard, +/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/catwalk_plated/dark, +/obj/machinery/recharger, +/turf/simulated/floor/plating, +/area/surface/station/security/armoury) +"ozM" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/machinery/photocopier, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -21 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/warden) +"ozR" = ( +/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/supply, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/surface/station/security/hallway/cell_hallway) +"oAn" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/light, +/turf/simulated/open, +/area/surface/station/engineering/foyer/secondfloor) +"oAp" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular/open{ + id = "bridgelockdown"; + layer = 3.3; + name = "Operations Lockdown" + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/command/operations) +"oAv" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/command) +"oAJ" = ( +/obj/structure/closet, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/qm) +"oBl" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/blast/regular/open{ + id = "virologyquar"; + layer = 3.3; + name = "Virology Quarantine Blast Doors" + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/medical/patient_wing) +"oBU" = ( +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lime/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/virology) +"oCU" = ( +/obj/structure/cable/green{ + 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{ + id_tag = "droom3"; + name = "Room 3" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/crew_quarters/sleep/Dorm_3) +"oDv" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 21 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/eva_hallway) +"oDD" = ( +/turf/simulated/wall, +/area/surface/station/security/prison) +"oDS" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/office) +"oDX" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 21 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/crew_quarters/heads/rdoffice) +"oEy" = ( +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/red/border, +/obj/structure/closet/secure_closet/warden/cynosure, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/warden) +"oEP" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/item/weapon/paper_bin, +/obj/item/device/paicard, +/obj/item/device/tape/random, +/obj/item/device/taperecorder, +/obj/item/weapon/reagent_containers/food/drinks/jar, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/crew_quarters/heads/rdoffice) +"oFy" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/snd) +"oFU" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/eva_hallway) +"oGF" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/engineering/hallway/sndaccess) +"oHb" = ( +/turf/simulated/shuttle/wall/hard_corner, +/area/shuttle/large_escape_pod2/station) +"oHK" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/patient_wing) +"oIk" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/floor_decal/techfloor/corner{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/camera/network/engine{ + c_tag = "ENG - Reactor Access Second Level"; + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/engineering/reactor_airlock/snd) +"oJw" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/green, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "ceoffice" + }, +/obj/machinery/ai_status_display, +/turf/simulated/floor/plating, +/area/surface/station/crew_quarters/heads/chief) +"oJF" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "cmooffice" + }, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "medbayquar"; + layer = 3.3; + name = "Medbay Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/crew_quarters/heads/cmo) +"oJV" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/weststairwell) +"oJW" = ( +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/engineering/snd) +"oKZ" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "bridge_center" + }, +/turf/simulated/floor/plating, +/area/surface/station/command/operations) +"oLz" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/east) +"oLQ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/west/elevator) +"oMt" = ( +/turf/simulated/floor/tiled/dark, +/area/surface/station/security/armoury) +"oNM" = ( +/obj/structure/closet/secure_closet/CMO, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/blue/border, +/obj/machinery/light, +/turf/simulated/floor/tiled/white, +/area/surface/station/crew_quarters/heads/cmo) +"oNS" = ( +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/research) +"oOd" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/machinery/vending/wallmed1{ + dir = 1; + pixel_y = -30 + }, +/obj/effect/floor_decal/corner/pink/border, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/patient_b) +"oOe" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/engine_eva) +"oOy" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_engineeringatmos{ + name = "Engineering Locker Room"; + req_one_access = list(10) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/engineering/locker_room) +"oOD" = ( +/obj/machinery/door/firedoor/glass, +/obj/effect/wingrille_spawn/reinforced_phoron, +/obj/machinery/door/blast/regular/open{ + id = "ReactorBlast"; + layer = 3.3; + name = "Reactor Monitoring Room Blast Doors" + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_monitoring) +"oOV" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/surface/station/medical/restroom) +"oPZ" = ( +/obj/machinery/ai_status_display, +/turf/simulated/wall, +/area/surface/station/holodeck_control) +"oQm" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/open, +/area/surface/station/engineering/hallway/sndaccess) +"oQx" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/machinery/button/flasher{ + id = "IAflash"; + name = "Visitation Flashes"; + pixel_x = 24; + pixel_y = 1 + }, +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "visitgate"; + layer = 2.9; + name = "Visitation Shutters"; + pixel_x = 25; + pixel_y = -8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/prison) +"oQG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/surface/station/hallway/primary/secondfloor/east) +"oQK" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/open, +/area/surface/outside/plains/station/snd) +"oQQ" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + 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/station/hallway/secondary/secondfloor/civilian) +"oSa" = ( +/obj/machinery/porta_turret/ai_defense, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/ai) +"oSD" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/closet/secure_closet/personal, +/obj/item/clothing/head/kitty, +/obj/machinery/button/remote/airlock{ + dir = 4; + id = "droom5"; + name = "Door Bolt Control"; + pixel_x = -24; + pixel_y = 7; + specialfunctions = 4 + }, +/turf/simulated/floor/carpet, +/area/surface/station/crew_quarters/sleep/Dorm_5) +"oSS" = ( +/obj/machinery/ai_status_display, +/turf/simulated/wall, +/area/surface/station/engineering/locker_room) +"oTv" = ( +/obj/effect/floor_decal/borderfloorwhite/corner, +/obj/effect/floor_decal/corner/paleblue/bordercorner, +/obj/machinery/button/remote/airlock{ + dir = 1; + id = "PatientWard"; + name = "Door Control"; + pixel_x = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/patient_wing) +"oTw" = ( +/obj/structure/catwalk, +/obj/structure/lattice, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/open, +/area/surface/station/engineering/reactor_room) +"oTF" = ( +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/wood/sif, +/area/surface/station/rnd/research) +"oUA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/station/park/skybridge) +"oUW" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -24; + pixel_y = 12 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/east) +"oVf" = ( +/obj/structure/table/wooden_reinforced, +/obj/item/weapon/folder/blue{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/folder/blue_captain, +/obj/item/weapon/stamp/denied{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/stamp/captain, +/obj/item/device/megaphone, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/captain) +"oVt" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/medbay/snd) +"oVB" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/glass{ + name = "Secondary Tool Storage" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/storage/art) +"oVF" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/quartermaster/restroom) +"oVJ" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central6{ + dir = 1 + }, +/turf/simulated/floor/tiled/monofloor, +/area/surface/station/command/operations) +"oWj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/green/border, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/civilian) +"oWq" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/brigdoor/eastleft, +/obj/item/sticky_pad/random, +/turf/simulated/floor/tiled/dark, +/area/surface/station/security/warden) +"oWN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/security/prison) +"oXF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/bordercorner{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/dormhallway) +"oXY" = ( +/obj/structure/table/bench/padded, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/hallway/secondary/secondfloor/command) +"oZX" = ( +/turf/simulated/wall, +/area/surface/station/holodeck_control) +"oZZ" = ( +/obj/structure/table/rack, +/obj/item/weapon/storage/belt/medical, +/obj/item/weapon/storage/belt/medical, +/obj/item/weapon/storage/belt/medical, +/obj/item/weapon/storage/belt/medical, +/obj/item/weapon/storage/belt/medical, +/obj/item/clothing/accessory/stethoscope, +/obj/item/clothing/accessory/stethoscope, +/obj/item/clothing/accessory/stethoscope, +/obj/item/clothing/accessory/stethoscope, +/obj/item/clothing/accessory/stethoscope, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/obj/structure/extinguisher_cabinet{ + dir = 1; + pixel_y = 30 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 5 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 5 + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/surface/station/medical/lockerroom) +"paD" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Medical Doctor" + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/lockerroom) +"pcD" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/remote/blast_door{ + dir = 1; + id = "biohazard"; + layer = 2.9; + name = "Biohazard Shutter Control"; + pixel_x = 6; + pixel_y = 4; + req_one_access = list(47) + }, +/obj/machinery/button/remote/airlock{ + dir = 1; + id = "researchdoor"; + layer = 2.9; + name = "Office Door"; + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/weapon/folder/white_rd, +/obj/item/weapon/paper/monitorkey, +/obj/item/weapon/stamp/rd, +/obj/item/weapon/pen/multi, +/obj/item/clothing/glasses/welding/superior, +/turf/simulated/floor/tiled/white, +/area/surface/station/crew_quarters/heads/rdoffice) +"pdf" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/glass_security{ + name = "Security Cells" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/security/hallway/cell_hallway) +"pee" = ( +/obj/structure/closet/crate/science, +/obj/item/stack/material/steel{ + amount = 50 + }, +/obj/item/stack/material/steel{ + amount = 50 + }, +/obj/item/stack/material/steel{ + amount = 50 + }, +/obj/item/stack/material/steel{ + amount = 50 + }, +/obj/item/stack/material/steel{ + amount = 50 + }, +/obj/item/stack/material/glass{ + amount = 50; + pixel_x = 2; + pixel_y = -2 + }, +/obj/item/stack/material/glass{ + amount = 50; + pixel_x = 2; + pixel_y = -2 + }, +/obj/item/stack/material/glass{ + amount = 50; + pixel_x = 2; + pixel_y = -2 + }, +/obj/item/stack/material/glass{ + amount = 50; + pixel_x = 2; + pixel_y = -2 + }, +/obj/item/stack/material/plasteel{ + amount = 10 + }, +/obj/item/stack/material/plasteel{ + amount = 10 + }, +/obj/item/stack/material/copper{ + amount = 20 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/robotics) +"pfA" = ( +/turf/simulated/open, +/area/surface/station/holodeck_control) +"pfM" = ( +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/command/internalaffairs) +"pga" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 5 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/research_foyer) +"pgm" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/research) +"pgL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -24; + pixel_y = 12 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/westskybridge) +"phU" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/danger/corner{ + dir = 1 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/east) +"pim" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "bridge_center" + }, +/obj/machinery/status_display, +/turf/simulated/floor/plating, +/area/surface/station/command/operations) +"piL" = ( +/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/industrial/hatch/yellow, +/obj/machinery/door/blast/regular{ + dir = 4; + id = "armoury"; + name = "Emergency Access" + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/security/armoury) +"piT" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/east/snd) +"piX" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/east) +"pjk" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/orange/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/prison) +"pjt" = ( +/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{ + dir = 4; + pixel_x = -24; + pixel_y = 12 + }, +/obj/structure/table/standard, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/surface/station/crew_quarters/sleep/Dorm_2) +"pkd" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/effect/floor_decal/rust, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/station/roof) +"pkT" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/park/skybridge) +"pkV" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/closet/secure_closet/personal, +/obj/machinery/button/remote/airlock{ + dir = 4; + id = "droom1"; + name = "Door Bolt Control"; + pixel_x = -24; + pixel_y = 7; + specialfunctions = 4 + }, +/turf/simulated/floor/carpet, +/area/surface/station/crew_quarters/sleep/Dorm_1) +"plo" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/hallway/primary/secondfloor/east) +"plZ" = ( +/obj/structure/table/rack{ + layer = 2.6 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/weapon/gun/projectile/colt/detective{ + pixel_x = 5; + pixel_y = -4 + }, +/obj/item/weapon/gun/projectile/colt/detective{ + pixel_x = 3; + pixel_y = -2 + }, +/obj/item/weapon/gun/projectile/colt/detective, +/obj/machinery/door/window/brigdoor/westright{ + name = "Weapons Locker"; + req_access = list(2) + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/security/equiptment_storage) +"pmc" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/maintenance/substation/engineering/snd) +"pmn" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/patient_wing) +"pmw" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/storage/box/donut, +/turf/simulated/floor/carpet, +/area/surface/station/crew_quarters/captain) +"pmL" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/foyer) +"pmW" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/glass_mining{ + name = "Cargo stairwell"; + req_one_access = list(50) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/quartermaster/office) +"pnE" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/cargo) +"poa" = ( +/obj/machinery/door/firedoor/border_only, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/hallway/primary/secondfloor/east) +"poc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/security/prison) +"pos" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/station/park/skybridge) +"poz" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/engine_eva) +"poM" = ( +/obj/machinery/door/firedoor/border_only, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/hallway/primary/secondfloor/east) +"poV" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/dispenser, +/turf/simulated/floor/tiled/dark, +/area/surface/station/ai_monitored/storage/eva) +"pph" = ( +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/machinery/light_switch{ + pixel_x = 12; + pixel_y = 24 + }, +/obj/machinery/button/windowtint{ + dir = 1; + id = "lawyer_tint"; + pixel_x = -11; + pixel_y = 23 + }, +/obj/machinery/camera/network/command{ + c_tag = "COM - Internal Affairs" + }, +/turf/simulated/floor/wood, +/area/surface/station/command/internalaffairs) +"ppi" = ( +/obj/structure/sign/directions/roomnum{ + dir = 8 + }, +/turf/simulated/wall, +/area/surface/station/crew_quarters/sleep/Dorm_4) +"pqi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/monofloor{ + dir = 4 + }, +/area/surface/station/quartermaster/qm) +"pqN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/bordercorner{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/machinery/camera/network/second_floor{ + c_tag = "Second Floor - Civilian Hallway 1"; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/civilian) +"pqW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/crew_quarters/heads/cmo) +"prj" = ( +/obj/machinery/teleport/hub, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/command/teleporter) +"prq" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/office) +"prt" = ( +/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/surface/station/command/liaison) +"prL" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "holodeck_tint" + }, +/turf/simulated/floor/plating, +/area/surface/station/holodeck_control) +"prY" = ( +/obj/structure/railing, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/open, +/area/surface/outside/plains/station/snd) +"psx" = ( +/turf/unsimulated/mask, +/area/surface/station/medical/patient_wing) +"ptl" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/glass{ + name = "Hallway" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/hallway/primary/secondfloor/east) +"pty" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing, +/turf/simulated/open, +/area/surface/station/holodeck_control) +"ptO" = ( +/obj/effect/floor_decal/techfloor{ + dir = 9 + }, +/obj/structure/fireaxecabinet{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/engineering/atmos) +"puU" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger/corner{ + dir = 8 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "steel_dirty" + }, +/area/surface/outside/station/roof) +"pvE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/office) +"pwt" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod{ + frequency = 1380; + id_tag = "large_escape_pod_2"; + pixel_x = 26; + pixel_y = -26; + tag_door = "large_escape_pod_2_hatch" + }, +/turf/simulated/shuttle/floor, +/area/shuttle/large_escape_pod2/station) +"pwG" = ( +/obj/structure/lattice, +/obj/structure/catwalk, +/obj/machinery/camera/network/security{ + c_tag = "SEC - Armory Exterior"; + dir = 10 + }, +/turf/simulated/open, +/area/surface/outside/plains/station/snd) +"pxx" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/engineering/hallway/snd) +"pyb" = ( +/turf/simulated/wall, +/area/surface/station/maintenance/substation/research/snd) +"pyc" = ( +/obj/structure/railing, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/open, +/area/surface/station/ai) +"pyj" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "holodeck_tint" + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/holodeck_control) +"pzI" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/white, +/area/surface/station/crew_quarters/heads/cmo) +"pzK" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/green/border, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/west/elevator) +"pBd" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/obj/machinery/camera/network/command{ + c_tag = "COM - Hallway East"; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/command) +"pBB" = ( +/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/medical{ + name = "Examination Room" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/medical/exam_room) +"pBM" = ( +/obj/structure/ladder, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/weststairwell/snd) +"pBN" = ( +/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" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/surface/station/hallway/primary/secondfloor/east) +"pBS" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/rnd/lab) +"pCh" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/blast/regular/open{ + id = "commandlockdown"; + layer = 3.3; + name = "Command Lockdown" + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/hallway/secondary/secondfloor/command) +"pDF" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_airlock/snd) +"pEv" = ( +/obj/structure/table/wooden_reinforced, +/obj/machinery/computer/skills{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/surface/station/command/meeting_room) +"pEO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner2{ + dir = 5 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/eva_hallway) +"pEQ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/red/bordercorner, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/snd) +"pES" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/eva_hallway) +"pEY" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, +/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/tiled/neutral, +/area/surface/station/rnd/research) +"pFn" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/green/border, +/obj/structure/closet/medical_wall{ + pixel_y = -32 + }, +/obj/item/roller, +/obj/item/bodybag/cryobag, +/obj/item/weapon/storage/firstaid, +/obj/item/weapon/storage/pill_bottle/spaceacillin, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/civilian) +"pFH" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/crew_quarters/heads/rdoffice) +"pGj" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/zone_divider, +/turf/simulated/open, +/area/surface/outside/plains/station/snd) +"pGE" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/snd) +"pHn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/landmark/start{ + name = "Medical Doctor" + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/lockerroom) +"pHu" = ( +/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{ + dir = 4; + pixel_x = -24; + pixel_y = 12 + }, +/obj/structure/table/standard, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/surface/station/crew_quarters/sleep/Dorm_4) +"pIq" = ( +/obj/effect/floor_decal/techfloor{ + dir = 10 + }, +/obj/structure/table/standard, +/obj/item/clothing/glasses/welding, +/obj/item/clothing/head/welding, +/obj/item/clothing/head/welding, +/obj/machinery/requests_console{ + department = "Atmospherics"; + departmentType = 3; + dir = 4; + name = "Atmos RC"; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/engineering/atmos) +"pIC" = ( +/obj/structure/table/woodentable, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/recharger, +/obj/item/sticky_pad/random{ + pixel_x = 8; + pixel_y = -1 + }, +/obj/effect/zone_divider, +/turf/simulated/floor/wood, +/area/surface/station/command/meeting_room) +"pJa" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/ai/upload_foyer) +"pJK" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/hallway/primary/secondfloor/east) +"pJV" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/glass{ + name = "Dormitory" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/hallway/secondary/secondfloor/dormhallway) +"pKC" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/obj/machinery/camera/network/security{ + c_tag = "SEC - Cell Hallway West" + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/security/hallway/cell_hallway) +"pKD" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/effect/zone_divider, +/turf/simulated/floor/tiled, +/area/surface/station/holodeck_control) +"pKO" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/effect/floor_decal/rust, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/valve/shutoff{ + name = "AI automatic shutoff valve" + }, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/surface/outside/station/roof) +"pLc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/quartermaster/foyer) +"pLj" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/westskybridge) +"pLQ" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/snd) +"pML" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/binary/passive_gate{ + dir = 1; + icon_state = "on"; + unlocked = 1 + }, +/obj/effect/catwalk_plated, +/obj/effect/floor_decal/industrial/warning/full, +/obj/structure/sign/directions/security{ + dir = 4; + pixel_x = -32; + pixel_y = 6 + }, +/obj/structure/sign/directions/engineering{ + dir = 4; + pixel_x = -32 + }, +/obj/structure/sign/directions/medical{ + dir = 4; + pixel_x = -32; + pixel_y = -6 + }, +/obj/structure/sign/directions/stairs_down{ + dir = 4; + pixel_x = -32; + pixel_y = -12 + }, +/turf/simulated/floor/plating, +/area/surface/station/hallway/primary/secondfloor/east) +"pMU" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/quartermaster/office) +"pMV" = ( +/obj/structure/ladder, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/eva) +"pNg" = ( +/obj/structure/sign/directions/security{ + dir = 1; + pixel_y = 6 + }, +/obj/structure/sign/directions/engineering{ + dir = 1 + }, +/obj/structure/sign/directions/medical{ + dir = 1; + pixel_y = -6 + }, +/turf/simulated/wall/r_wall, +/area/surface/station/command/operations) +"pNj" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/office) +"pNl" = ( +/obj/structure/table/steel, +/obj/item/weapon/stamp{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 6 + }, +/obj/item/weapon/stamp/cargo, +/obj/item/weapon/hand_labeler, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/office) +"pNA" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/open, +/area/surface/station/ai) +"pNQ" = ( +/obj/structure/sign/warning/high_voltage, +/turf/simulated/wall/r_wall, +/area/surface/station/crew_quarters/captain) +"pOo" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 5 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/construction/office) +"pOw" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/equiptment_storage) +"pPc" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 1 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/machinery/light_switch{ + pixel_x = 12; + pixel_y = 24 + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/west) +"pPO" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/hallway/secondary/secondfloor/civilian) +"pQR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/closet/crate/nanotrasen, +/turf/simulated/floor/tiled/dark, +/area/surface/station/security/armoury) +"pRi" = ( +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/monofloor{ + dir = 4 + }, +/area/surface/station/engineering/reactor_monitoring) +"pRp" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/snd) +"pSN" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable/green, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "captain_tint" + }, +/obj/machinery/ai_status_display, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "captainlockdown"; + layer = 3.3; + name = "Site Manager Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/crew_quarters/captain) +"pSZ" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/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/surface/station/engineering/reactor_monitoring) +"pUj" = ( +/obj/structure/bed/padded, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 1 + }, +/obj/item/weapon/bedsheet/orange, +/turf/simulated/floor/tiled, +/area/surface/station/security/prison) +"pUx" = ( +/obj/structure/catwalk, +/obj/structure/lattice, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/machinery/camera/network/engineering{ + c_tag = "ENG - Atmospherics Upper East" + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/open, +/area/surface/station/engineering/atmos) +"pVd" = ( +/obj/structure/flora/pottedplant/unusual{ + desc = "This is Steve. Its bulbous ends emit a soft blue light. He is an ideal plant."; + name = "Steve"; + pixel_y = 10 + }, +/obj/structure/table/standard, +/obj/item/weapon/reagent_containers/food/drinks/britcup{ + pixel_x = 10; + pixel_y = -2 + }, +/obj/item/weapon/reagent_containers/glass/bottle/eznutrient{ + pixel_x = -6; + pixel_y = 10 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 21 + }, +/turf/simulated/floor/greengrid, +/area/surface/station/ai) +"pVR" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/storage/art) +"pWd" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/surface/station/rnd/chargebay) +"pWG" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/hallway/primary/secondfloor/east) +"pWP" = ( +/obj/structure/sign/directions/command{ + dir = 4; + pixel_y = 6 + }, +/obj/structure/sign/directions/engineering{ + dir = 4 + }, +/obj/structure/sign/directions/medical{ + dir = 4; + pixel_y = -6 + }, +/turf/simulated/wall/r_wall, +/area/surface/station/hallway/secondary/secondfloor/civilian) +"pXb" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/yellow/border, +/obj/item/modular_computer/console/preset/engineering{ + dir = 1 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/engineering/atmos/monitoring) +"pXi" = ( +/turf/simulated/wall/durasteel, +/area/surface/station/ai) +"pXt" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/cell_hallway) +"pXw" = ( +/obj/structure/ladder, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/security/snd) +"pXz" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "seclockdown"; + layer = 3.3; + name = "Security Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/security/hallway/snd) +"pXG" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/open, +/area/surface/station/ai/upload_foyer) +"pYb" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/patient_wing) +"pYh" = ( +/obj/structure/filingcabinet, +/turf/simulated/floor/wood, +/area/surface/station/command/meeting_room) +"pYl" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/security/armoury) +"pYB" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/floor_decal/rust, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/access_button/airlock_exterior{ + dir = 1; + master_tag = "ai_airlock"; + pixel_x = -24; + req_one_access = list(16) + }, +/obj/effect/map_helper/airlock/door/ext_door, +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "ai_airlock_outer"; + locked = 1; + name = "External Access" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/ai/upload_foyer) +"pYO" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/office) +"pYT" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "ai_airlock_inner"; + locked = 1; + name = "Internal Access" + }, +/obj/machinery/access_button/airlock_interior{ + master_tag = "ai_airlock"; + pixel_x = 35 + }, +/obj/effect/map_helper/airlock/door/int_door, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/ai/upload_foyer) +"pYY" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/structure/table/bench/padded, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/medical/patient_wing) +"pZu" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/catwalk_plated, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/station/security/hallway/snd) +"pZB" = ( +/obj/effect/floor_decal/techfloor, +/obj/structure/table/standard, +/obj/item/clamp, +/obj/item/clamp, +/obj/item/clamp, +/obj/item/clothing/ears/earmuffs, +/obj/item/clothing/ears/earmuffs, +/obj/item/clothing/ears/earmuffs, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/engineering/atmos) +"qaq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + 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/station/engineering/hallway/eva_hallway) +"qau" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/green/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/westskybridge) +"qaw" = ( +/obj/machinery/hologram/holopad, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/monofloor{ + dir = 8 + }, +/area/surface/station/command/operations) +"qbi" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/disposal, +/turf/simulated/floor/wood, +/area/surface/station/command/internalaffairs) +"qbj" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/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 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/civilian) +"qbt" = ( +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24; + pixel_y = -12 + }, +/obj/structure/closet/toolcloset, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/yellow/bordercorner, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/storage/art) +"qby" = ( +/obj/effect/floor_decal/techfloor, +/obj/machinery/computer/general_air_control{ + dir = 1; + frequency = 1441; + name = "Tank Monitor"; + sensors = list("n2_sensor" = "Nitrogen", "o2_sensor" = "Oxygen", "co2_sensor" = "Carbon Dioxide", "tox_sensor" = "Toxins", "n2o_sensor" = "Nitrous Oxide", "waste_sensor" = "Gas Mix Tank") + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/engineering/atmos) +"qbU" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4; + external_pressure_bound = 140; + external_pressure_bound_default = 140 + }, +/obj/effect/decal/warning_stripes, +/turf/simulated/floor/plating/sif/planetuse, +/area/surface/station/rnd/workshop) +"qbV" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/structure/table/standard, +/obj/item/weapon/camera_assembly, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/construction/office) +"qcG" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/item/modular_computer/console/preset/security{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/security/warden) +"qcH" = ( +/turf/simulated/wall, +/area/surface/station/medical/exam_room) +"qcL" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/exam_room) +"qcX" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/park/skybridge) +"qcZ" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/rnd/robotics) +"qes" = ( +/obj/machinery/disease2/incubator, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/virology) +"qeZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/surface/station/hallway/primary/secondfloor/west) +"qfg" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/medical/patient_wing) +"qfz" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 9 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/research_foyer) +"qgo" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/machinery/light_switch{ + pixel_x = 12; + pixel_y = 24 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/danger/corner{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 1 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/equiptment_storage) +"qgu" = ( +/obj/machinery/door/airlock{ + name = "Unit 2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/engineering/engi_restroom) +"qgK" = ( +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 6 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/command/meeting_room) +"qhE" = ( +/obj/effect/floor_decal/techfloor{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1379; + id_tag = "engine_airlock_pumpd2" + }, +/obj/machinery/embedded_controller/radio/airlock/advanced_airlock_controller{ + id_tag = "engine_room_airlockd2"; + name = "Reactor Access Airlock"; + pixel_y = -24; + tag_airpump = "engine_airlock_pumpd2"; + tag_chamber_sensor = "eng_al_c_snsrd2"; + tag_exterior_door = "engine_airlock_exteriord2"; + tag_exterior_sensor = "eng_al_ext_snsrd2"; + tag_interior_door = "engine_airlock_interiord2"; + tag_interior_sensor = "eng_al_int_snsrd2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/engineering/reactor_airlock/snd) +"qil" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/open, +/area/surface/outside/plains/station/snd) +"qio" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/cell_hallway) +"qiU" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/zone_divider, +/turf/simulated/floor/tiled, +/area/surface/station/command/teleporter) +"qjc" = ( +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/office) +"qjt" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/closet/secure_closet/personal, +/obj/machinery/button/remote/airlock{ + dir = 8; + id = "droom4"; + name = "Door Bolt Control"; + pixel_x = 24; + pixel_y = 8; + specialfunctions = 4 + }, +/turf/simulated/floor/carpet, +/area/surface/station/crew_quarters/sleep/Dorm_4) +"qkI" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock/glass_engineering{ + name = "Reactor Monitoring Room"; + req_access = list(11); + req_one_access = list() + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/engineering/reactor_monitoring) +"qll" = ( +/turf/simulated/floor/tiled/dark, +/area/surface/station/hallway/primary/secondfloor/west/elevator) +"qlH" = ( +/obj/structure/bed/chair/shuttle{ + dir = 1 + }, +/turf/simulated/shuttle/floor/white, +/area/shuttle/large_escape_pod2/station) +"qlK" = ( +/obj/structure/table/standard, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/item/weapon/storage/briefcase/inflatable{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/weapon/storage/briefcase/inflatable, +/obj/item/clamp, +/obj/item/clamp, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/engineering/engine_eva) +"qmH" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/danger/corner{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "steel_dirty" + }, +/area/surface/outside/station/roof) +"qmT" = ( +/obj/structure/shuttle/engine/propulsion/burst/left{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/shuttle/large_escape_pod2/station) +"qop" = ( +/obj/structure/sign/directions/teleporter, +/turf/simulated/wall, +/area/surface/station/hallway/secondary/secondfloor/command) +"qpB" = ( +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/green/bordercorner, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/construction/office) +"qpE" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock{ + name = "Restroom" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/security/prison) +"qqx" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/floor/tiled/dark, +/area/surface/station/ai_monitored/storage/eva) +"qqQ" = ( +/obj/item/modular_computer/console/preset/command, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 9 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/command/operations) +"qqT" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/green/border, +/turf/simulated/floor/tiled, +/area/surface/station/park/skybridge) +"qrc" = ( +/obj/structure/sign/warning/high_voltage, +/turf/simulated/wall/r_wall, +/area/surface/station/command/operations) +"qrM" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/east) +"qrW" = ( +/obj/effect/floor_decal/techfloor{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/cryofeed, +/obj/machinery/camera/network/security{ + c_tag = "SEC - Solitary Confinement 1"; + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/security/hallway/cell_hallway) +"qsb" = ( +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "crglockdown"; + layer = 3.3; + name = "Cargo Lockdown" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/quartermaster/foyer) +"qsp" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/diagonal, +/obj/structure/table/standard, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/item/weapon/soap/deluxe, +/obj/item/weapon/towel{ + color = "#FFD700"; + name = "gold towel" + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/crew_quarters/captain) +"qst" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/status_display, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "captainlockdown"; + layer = 3.3; + name = "Site Manager Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/crew_quarters/captain) +"qtv" = ( +/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 = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/snd) +"qtM" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/hallway/secondary/secondfloor/dormhallway) +"quR" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/cable/cyan{ + 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/effect/zone_divider, +/turf/simulated/open, +/area/surface/station/engineering/reactor_monitoring) +"qvf" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/engineering/foyer/secondfloor) +"qvm" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/office) +"qvp" = ( +/obj/structure/closet/secure_closet/brig, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/item/device/radio/headset, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/security/hallway/cell_hallway) +"qvN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/captain) +"qvT" = ( +/turf/simulated/floor/tiled/old_tile/gray, +/area/surface/station/rnd/lab) +"qwW" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/pink/border{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/vending/wallmed1{ + pixel_x = 26 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/exam_room) +"qxd" = ( +/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/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/office) +"qxv" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/dormhallway) +"qyn" = ( +/obj/effect/floor_decal/techfloor/corner{ + dir = 10 + }, +/obj/effect/floor_decal/techfloor/corner{ + dir = 9 + }, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/ai_monitored/storage/eva) +"qyD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/eva_hallway) +"qzb" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/research) +"qzp" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/crew_quarters/sleep/Dorm_1) +"qzI" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/open, +/area/surface/outside/plains/station/snd) +"qzY" = ( +/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{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/civilian) +"qAS" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/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 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/locker_room) +"qAW" = ( +/obj/effect/landmark/start{ + name = "AI" + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 21 + }, +/obj/machinery/turretid/stun{ + check_synth = 1; + control_area = null; + name = "AI Chamber turret control"; + pixel_x = -32 + }, +/obj/item/device/radio/intercom/custom{ + dir = 8; + pixel_x = -21; + pixel_y = 16 + }, +/obj/item/device/radio/intercom/private{ + dir = 4; + pixel_x = 21; + pixel_y = 16 + }, +/obj/machinery/requests_console{ + department = "AI"; + departmentType = 5; + name = "AI RC"; + pixel_x = 24; + pixel_y = 34 + }, +/obj/machinery/newscaster/security_unit{ + pixel_x = -24; + pixel_y = 34 + }, +/obj/structure/cable/cyan{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/ai) +"qAY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 8 + }, +/obj/effect/catwalk_plated/dark, +/obj/structure/table/standard, +/obj/item/device/suit_cooling_unit, +/obj/item/device/suit_cooling_unit{ + pixel_x = 4; + pixel_y = -2 + }, +/obj/effect/zone_divider, +/turf/simulated/floor/plating, +/area/surface/station/ai_monitored/storage/eva) +"qBr" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/obj/item/weapon/paper_bin, +/obj/item/device/megaphone, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 21 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/qm) +"qCy" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/westskybridge) +"qCD" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/west/elevator) +"qDn" = ( +/obj/effect/floor_decal/techfloor/corner{ + dir = 5 + }, +/obj/machinery/airlock_sensor/airlock_exterior{ + id_tag = "eng_al_ext_snsrd2"; + master_tag = "engine_room_airlockd2"; + pixel_y = 22 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/engineering/reactor_airlock/snd) +"qDT" = ( +/obj/effect/landmark/start{ + name = "Paramedic" + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/lockerroom) +"qEj" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/steeldecal/steel_decals_central5, +/obj/item/frame, +/turf/simulated/floor/tiled/old_tile/gray, +/area/surface/station/construction/office) +"qEX" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/monofloor{ + dir = 8 + }, +/area/surface/station/engineering/engine_eva) +"qFA" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/door/blast/regular/open{ + id = "prisongate"; + layer = 3.3; + name = "Communal Brig Blast Door" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/security/prison) +"qFL" = ( +/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/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/civilian) +"qGp" = ( +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/prison) +"qGr" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/surface/station/hallway/secondary/secondfloor/weststairwell) +"qGX" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/research) +"qHm" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + desc = "Talk... listen through this."; + name = "Station Intercom (Brig Radio)"; + pixel_y = -21; + wires = 7 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/green/border, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/civilian) +"qHC" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/office) +"qIh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/command) +"qIA" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "com_airlock_inner"; + locked = 1; + name = "Internal Access" + }, +/obj/effect/map_helper/airlock/door/int_door, +/obj/machinery/access_button/airlock_interior{ + dir = 1; + master_tag = "com_airlock"; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/hallway/secondary/secondfloor/eva_hallway) +"qJa" = ( +/obj/machinery/computer/area_atmos{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/station/security/riot_control) +"qJK" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + id = "medbayquar"; + layer = 3.3; + name = "Medbay Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/medical/patient_a) +"qKE" = ( +/obj/structure/railing, +/obj/structure/lattice, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/open, +/area/surface/station/ai) +"qKJ" = ( +/obj/machinery/suit_cycler/medical, +/obj/effect/floor_decal/industrial/warning, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/surface/station/ai_monitored/storage/eva) +"qKP" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/medical/virology) +"qKU" = ( +/obj/structure/railing, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/open, +/area/surface/station/ai) +"qLx" = ( +/obj/structure/bed/psych, +/turf/simulated/floor/carpet/sblucarpet, +/area/surface/station/medical/psych) +"qLR" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/light, +/turf/simulated/open, +/area/surface/station/medical/hallway/snd) +"qMd" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/eva_hallway) +"qMB" = ( +/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{ + dir = 4; + pixel_x = -24; + pixel_y = 12 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/dormhallway) +"qNo" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/ai) +"qNP" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/green/border, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/civilian) +"qOd" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/weststairwell/snd) +"qOQ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/hallway/secondary/secondfloor/dormhallway) +"qPi" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/corner_oldtile/red{ + dir = 5 + }, +/obj/item/clothing/accessory/armor/legguards/riot, +/obj/item/clothing/accessory/armor/armguards/riot, +/obj/item/clothing/accessory/armor/armorplate/riot, +/obj/item/clothing/head/helmet/riot, +/obj/item/weapon/shield/riot, +/obj/item/weapon/melee/baton/loaded, +/obj/machinery/door/window/brigdoor/southright{ + name = "Riot Armor" + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/armoury) +"qPr" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/robotics) +"qPF" = ( +/obj/structure/table/standard, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 5 + }, +/obj/item/weapon/storage/belt/utility/full{ + pixel_y = -1 + }, +/obj/item/clothing/gloves/sterile/latex{ + pixel_y = -3 + }, +/obj/item/clothing/gloves/sterile/nitrile, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/weapon/storage/toolbox/mechanical, +/obj/effect/floor_decal/corner/purple/border{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/lab) +"qQg" = ( +/obj/effect/floor_decal/techfloor{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4; + frequency = 1379; + id_tag = "roof_airlock_pump" + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/structure/sign/warning/cold{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/hallway/primary/secondfloor/east) +"qQt" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/wall/r_wall, +/area/surface/station/ai/upload_foyer) +"qQS" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/hallway/primary/secondfloor/east) +"qRn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/engineering/snd) +"qRA" = ( +/turf/simulated/open, +/area/surface/station/hallway/secondary/secondfloor/weststairwell) +"qRF" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/green/border, +/turf/simulated/floor/tiled, +/area/surface/station/park/skybridge) +"qRK" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/portable_atmospherics/hydroponics, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/prison) +"qSH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/research/snd) +"qUl" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/equiptment_storage) +"qUo" = ( +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/crew_quarters/heads/cmo) +"qUt" = ( +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 8 + }, +/obj/effect/landmark/start{ + name = "Medical Doctor" + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/lockerroom) +"qVn" = ( +/obj/effect/zone_divider, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/ai_monitored/storage/eva) +"qVL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/bed/chair/comfy/brown{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/surface/station/crew_quarters/captain) +"qWi" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/light/small, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/catwalk_plated/dark, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/eva) +"qXc" = ( +/turf/simulated/wall, +/area/surface/station/security/riot_control) +"qXg" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "rdoffice" + }, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "biohazard"; + layer = 3.3; + name = "Biohazard Shutter" + }, +/turf/simulated/floor/plating, +/area/surface/station/crew_quarters/heads/rdoffice) +"qXD" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_x = 32; + pixel_y = 21 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/security/armoury) +"qYq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals1, +/obj/effect/floor_decal/steeldecal/steel_decals1{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals1{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals1{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/flasher{ + id = "permflash"; + layer = 2.4; + name = "Floor mounted flash" + }, +/turf/simulated/floor/tiled/eris, +/area/surface/station/security/prison) +"qYO" = ( +/obj/structure/sign/warning/high_voltage, +/turf/simulated/wall/r_wall, +/area/surface/station/security/hallway/snd) +"qZp" = ( +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -12; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/surface/station/security/tactical) +"raX" = ( +/obj/random/crate{ + dir = 4 + }, +/obj/random/contraband, +/obj/random/contraband, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/item/weapon/handcuffs/fuzzy, +/turf/simulated/floor/plating, +/area/surface/station/security/hallway/stairwell) +"rbn" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/hallway/primary/secondfloor/west/elevator) +"rbM" = ( +/obj/structure/sign/warning/high_voltage, +/turf/simulated/wall/r_wall, +/area/surface/station/security/warden) +"rbN" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled/white, +/area/surface/station/crew_quarters/heads/cmo) +"rbU" = ( +/turf/simulated/floor/tiled/dark, +/area/surface/station/security/hallway/cell_hallway) +"rci" = ( +/turf/simulated/floor/tiled/dark, +/area/surface/station/ai_monitored/storage/eva) +"rcq" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/floor_decal/techfloor{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/effect/floor_decal/techfloor/corner{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/ai) +"rcv" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock/medical{ + name = "Patient Room B" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/medical/patient_b) +"rcC" = ( +/obj/structure/cable/green, +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/machinery/door/blast/regular/open{ + id = "englockdown"; + layer = 3.3; + name = "Engineering Lockdown" + }, +/obj/structure/window/reinforced/polarized/full{ + id = "ceoffice" + }, +/turf/simulated/floor/plating, +/area/surface/station/crew_quarters/heads/chief) +"rcQ" = ( +/obj/structure/cable/green{ + 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{ + id_tag = "droom4"; + name = "Room 4" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/crew_quarters/sleep/Dorm_4) +"rcW" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/patient_wing) +"req" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/east) +"rev" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/dormhallway) +"reO" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/camera/network/prison{ + c_tag = "SEC - Brig Dormitory"; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/prison) +"rft" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/black, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/virology) +"rfP" = ( +/obj/effect/floor_decal/industrial/warning/dust/corner, +/turf/simulated/floor/hull{ + nitrogen = 93.7835; + outdoors = 1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/surface/outside/station/roof) +"rgI" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/bordercorner{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/office) +"rgZ" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/surface/station/security/warden) +"rhd" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + id = "englockdown"; + layer = 3.3; + name = "Engineering Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/engine_eva) +"rhk" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/tiled/yellow, +/area/surface/station/engineering/locker_room) +"rhR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/floor_decal/industrial/warning, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/prison) +"rip" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/engineering/foyer/secondfloor) +"riA" = ( +/turf/simulated/open, +/area/surface/station/rnd/research) +"riP" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/open, +/area/surface/station/engineering/reactor_room) +"rkh" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/storage/art) +"rkN" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/surface/station/security/tactical) +"rlB" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/maintenance/substation/research/snd) +"rmw" = ( +/obj/structure/table/reinforced, +/turf/simulated/floor/tiled/white, +/area/surface/station/crew_quarters/heads/cmo) +"rmP" = ( +/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/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/civilian) +"rmT" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/east) +"rnJ" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/research/snd) +"rou" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock/glass_research{ + name = "Research and Development"; + req_one_access = list(7) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/rnd/lab) +"roC" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/medical/patient_wing) +"rpB" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/patient_wing) +"rpD" = ( +/obj/structure/lattice, +/obj/structure/cable/cyan{ + d1 = 32; + d2 = 2; + icon_state = "32-2" + }, +/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers, +/obj/machinery/atmospherics/pipe/zpipe/down/supply, +/turf/simulated/open, +/area/surface/station/ai) +"rpY" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/table/steel, +/obj/structure/bedsheetbin, +/obj/item/weapon/book/codex/corp_regs, +/obj/item/weapon/storage/pill_bottle/dice, +/turf/simulated/floor/tiled, +/area/surface/station/security/prison) +"rqw" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/effect/floor_decal/corner_oldtile/blue{ + dir = 9 + }, +/obj/machinery/door/window/brigdoor/eastright{ + name = "Weapons Locker" + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/tactical) +"rry" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/camera/network/command{ + c_tag = "AI - Upload Foyer Upper" + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/ai/upload_foyer) +"rrK" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/west/elevator) +"rsP" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/table/rack{ + layer = 2.6 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/clothing/mask/breath, +/obj/item/weapon/rig/breacher, +/obj/machinery/door/window/northleft{ + name = "EVA Suits"; + req_one_access = list(18) + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/ai_monitored/storage/eva) +"rtS" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/open, +/area/surface/outside/plains/station/snd) +"rvm" = ( +/obj/structure/sign/warning/high_voltage, +/turf/simulated/wall/r_wall, +/area/surface/station/maintenance/substation/command) +"rvI" = ( +/obj/structure/table/wooden_reinforced, +/obj/item/weapon/paper_bin, +/obj/item/weapon/pen/multi, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/captain) +"rvR" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/glass{ + name = "Hallway" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/hallway/primary/secondfloor/west) +"rwU" = ( +/obj/structure/table/wooden_reinforced, +/obj/item/weapon/melee/chainofcommand, +/obj/item/weapon/hand_tele, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/captain) +"rwZ" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/east) +"rxx" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/effect/floor_decal/spline/plain{ + dir = 10 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/yellow, +/area/surface/station/engineering/locker_room) +"ryk" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/surface/station/security/hallway/snd) +"ryB" = ( +/obj/structure/sign/pods{ + dir = 8 + }, +/turf/simulated/wall, +/area/surface/station/hallway/primary/secondfloor/east) +"ryF" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/maintenance{ + name = "Cargo Maintenance"; + req_access = list(50) + }, +/turf/simulated/floor/plating, +/area/surface/station/quartermaster/office) +"ryO" = ( +/obj/structure/closet/secure_closet/psych, +/turf/simulated/floor/carpet/sblucarpet, +/area/surface/station/medical/psych) +"rzL" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/green, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/ai_monitored/storage/eva) +"rAY" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/east) +"rBs" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/engineering/atmos) +"rBG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/table/steel, +/obj/item/weapon/paper_bin, +/obj/item/weapon/pen, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/prison) +"rBN" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/storage/art) +"rCp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_engineering{ + name = "Engineering Hallway" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/engineering/hallway/sndaccess) +"rCD" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/surface/station/crew_quarters/captain) +"rCU" = ( +/obj/machinery/newscaster{ + pixel_x = 28 + }, +/obj/structure/closet/secure_closet/personal, +/turf/simulated/floor/carpet, +/area/surface/station/crew_quarters/sleep/Dorm_2) +"rDf" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/medical/virology) +"rDn" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/surface/station/rnd/chargebay) +"rDq" = ( +/turf/simulated/floor/tiled/dark, +/area/surface/station/engineering/hallway/snd) +"rDC" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite/corner, +/obj/effect/floor_decal/corner/blue/bordercorner, +/turf/simulated/floor/tiled/white, +/area/surface/station/crew_quarters/heads/cmo) +"rEp" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/east/snd) +"rEx" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/shieldwallgen, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/command/teleporter) +"rEL" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular/open{ + id = "virologyquar"; + layer = 3.3; + name = "Virology Quarantine Blast Doors" + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/medical/patient_wing) +"rES" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/station/engineering/engi_restroom) +"rFi" = ( +/turf/simulated/floor/tiled, +/area/surface/station/command/teleporter) +"rGd" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + id = "medbayquar"; + layer = 3.3; + name = "Medbay Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/medical/patient_a) +"rGS" = ( +/obj/effect/zone_divider, +/turf/simulated/floor/carpet/bcarpet, +/area/surface/station/command/internalaffairs) +"rHg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 9 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/virology) +"rIC" = ( +/obj/structure/table/standard, +/obj/item/weapon/surgical/circular_saw, +/obj/item/weapon/surgical/scalpel{ + pixel_y = 8 + }, +/obj/item/weapon/surgical/hemostat, +/obj/item/weapon/surgical/retractor, +/obj/item/stack/cable_coil{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/weldingtool/hugetank, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 9 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/robotics) +"rII" = ( +/obj/structure/table/wooden_reinforced, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/random_multi/single_item/captains_spare_id, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/captain) +"rIO" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/command) +"rIU" = ( +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/ai_slipper, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/ai) +"rJi" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/open, +/area/surface/station/medical/hallway/snd) +"rJn" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/research) +"rJW" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock/command{ + id_tag = "cmodoor"; + name = "CMO's Office"; + req_access = list(40); + req_one_access = list() + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/crew_quarters/heads/cmo) +"rKf" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/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/station/engineering/hallway/eva_hallway) +"rKg" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + 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 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/crew_quarters/heads/rdoffice) +"rKk" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/zone_divider, +/turf/simulated/floor/carpet/blue, +/area/surface/station/command/meeting_room) +"rLs" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/structure/sign/directions/cargo{ + pixel_y = -26 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/west) +"rLD" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/door_timer/cell_1{ + pixel_y = 32; + req_access = list(); + req_one_access = list(2,4) + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/cell_hallway) +"rLO" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/research) +"rLU" = ( +/obj/structure/bed/chair/sofa/brown/left{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Roboticist" + }, +/turf/simulated/floor/wood/sif, +/area/surface/station/rnd/research) +"rLX" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "seclockdown"; + layer = 3.3; + name = "Security Lockdown" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/security/lobby) +"rMG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/obj/effect/floor_decal/techfloor{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/ai/upload_foyer) +"rMU" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/hallway/secondary/secondfloor/civilian) +"rNi" = ( +/turf/simulated/floor/wood/sif, +/area/surface/station/rnd/research) +"rOp" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/structure/flora/pottedplant/dead, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -24; + pixel_y = 12 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/construction/office) +"rPg" = ( +/obj/structure/closet/crate/secure/nanotrasen{ + name = "Security Crate"; + req_access = list(1) + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/security/armoury) +"rPi" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/machinery/light_switch{ + pixel_x = 12; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/catwalk_plated/dark, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/engineering/snd) +"rPw" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/floor_decal/corner_oldtile/red{ + dir = 5 + }, +/obj/machinery/door/window/brigdoor/southright{ + name = "Riot Armor" + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/armoury) +"rQD" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/green, +/obj/machinery/door/blast/regular/open{ + id = "prisongate"; + layer = 3.3; + name = "Communal Brig Blast Door" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/security/prison) +"rQJ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "eng_airlock_inner"; + locked = 1; + name = "Engineering Internal Access" + }, +/obj/effect/map_helper/airlock/door/int_door, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/access_button/airlock_interior{ + dir = 1; + master_tag = "eng_airlock"; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/engineering/hallway/eva_hallway) +"rRh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/machinery/camera/network/research{ + c_tag = "SCI - Stairwell Upper"; + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/research) +"rSN" = ( +/obj/structure/table/standard, +/obj/item/sticky_pad/random, +/turf/simulated/floor/tiled/dark, +/area/surface/station/hallway/secondary/secondfloor/dormhallway) +"rSS" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/crew_quarters/heads/chief) +"rTf" = ( +/obj/structure/table/bench/padded, +/turf/simulated/floor/tiled/dark, +/area/surface/station/hallway/primary/secondfloor/east) +"rUW" = ( +/obj/machinery/light, +/turf/simulated/floor/wood, +/area/surface/station/command/internalaffairs) +"rWd" = ( +/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/tiled, +/area/surface/station/hallway/primary/secondfloor/east) +"rXP" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/effect/catwalk_plated/dark, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/weststairwell/snd) +"rXY" = ( +/turf/simulated/floor/wood, +/area/surface/station/command/liaison) +"rYR" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/green, +/obj/machinery/door/blast/regular/open{ + id = "prisongate"; + layer = 3.3; + name = "Communal Brig Blast Door" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/security/prison) +"rYU" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/white/bordercorner, +/obj/structure/disposalpipe/segment, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/dormhallway) +"rZp" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table/rack, +/obj/effect/floor_decal/corner_oldtile/white{ + dir = 4 + }, +/obj/effect/floor_decal/corner_oldtile/blue{ + dir = 1 + }, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/mask/breath, +/obj/item/device/suit_cooling_unit, +/obj/item/weapon/tank/oxygen, +/obj/item/clothing/suit/space/void/security, +/obj/item/clothing/head/helmet/space/void/security, +/obj/machinery/door/window/brigdoor/southleft{ + name = "EVA Suit" + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/armoury) +"rZS" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/structure/sink{ + dir = 4; + pixel_x = 12 + }, +/obj/structure/mirror{ + pixel_x = 28 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/security/prison) +"rZV" = ( +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24; + pixel_y = -12 + }, +/obj/machinery/atm{ + pixel_y = -32 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/foyer) +"saC" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/patient_wing) +"sbp" = ( +/obj/structure/cable/cyan{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc/super/critical{ + name = "south bump"; + pixel_y = -24 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -12; + pixel_y = -24 + }, +/obj/machinery/button/remote/blast_door{ + dir = 1; + id = "aicore2"; + name = "AI Core Blast Door Control"; + pixel_x = 13; + pixel_y = -24; + req_one_access = list(19) + }, +/obj/machinery/ai_slipper, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/flasher{ + id = "AI1"; + pixel_y = -36 + }, +/obj/machinery/camera/xray/command{ + c_tag = "AI - Core"; + dir = 1 + }, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/ai) +"scv" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/catwalk_plated, +/obj/effect/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/plating, +/area/surface/station/quartermaster/office) +"scw" = ( +/obj/effect/floor_decal/techfloor{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/effect/floor_decal/techfloor/corner{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/ai) +"scB" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/east) +"sdt" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/research) +"sdJ" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/computer/secure_data{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/security/warden) +"sek" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/glass_security{ + id_tag = "prisonexit"; + name = "Brig Exit"; + req_one_access = list(2,4) + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/security/prison) +"seV" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/snd) +"sfj" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/hallway/secondary/secondfloor/westskybridge) +"sfy" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/cargo) +"sfI" = ( +/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{ + dir = 4; + pixel_x = -24; + pixel_y = 12 + }, +/obj/machinery/button/windowtint{ + dir = 8; + id = "psyco_tint"; + pixel_x = -23; + pixel_y = -11 + }, +/turf/simulated/floor/carpet/sblucarpet, +/area/surface/station/medical/psych) +"sfK" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/hallway/snd) +"sgb" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/maintenance{ + req_one_access = list(12) + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/weststairwell/snd) +"sgd" = ( +/obj/machinery/light, +/obj/structure/table/bench/padded, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/hallway/secondary/secondfloor/command) +"sgq" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/zone_divider, +/turf/simulated/floor/carpet, +/area/surface/station/crew_quarters/sleep/Dorm_3) +"sgQ" = ( +/obj/structure/cable/cyan{ + d1 = 32; + icon_state = "32-1" + }, +/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/zpipe/down/supply{ + dir = 1 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/open, +/area/surface/station/ai/upload_foyer) +"shJ" = ( +/turf/simulated/wall, +/area/surface/station/hallway/primary/secondfloor/west) +"sij" = ( +/obj/machinery/ai_status_display, +/turf/simulated/wall/r_wall, +/area/surface/station/engineering/reactor_monitoring) +"sip" = ( +/obj/structure/sign/directions/security/internal_affairs{ + pixel_y = 6 + }, +/turf/simulated/wall, +/area/surface/station/command/internalaffairs) +"siw" = ( +/obj/effect/zone_divider, +/turf/simulated/floor/wood, +/area/surface/station/command/meeting_room) +"siU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/weststairwell) +"sjc" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/red/bordercorner2, +/obj/structure/bed/padded, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/prison) +"sjk" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/captain) +"sjE" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/captain) +"sjJ" = ( +/obj/machinery/atmospherics/valve/shutoff{ + name = "Command automatic shutoff valve" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/command) +"skQ" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/eva) +"slj" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/monofloor{ + dir = 1 + }, +/area/surface/station/security/equiptment_storage) +"slG" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/obj/machinery/camera/network/medbay{ + c_tag = "MED - Virology Airlock" + }, +/obj/structure/sink/generic{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/eris, +/area/surface/station/medical/virology) +"slR" = ( +/obj/item/weapon/stool/padded, +/obj/machinery/atmospherics/pipe/simple/hidden/black, +/obj/effect/floor_decal/corner/lime/diagonal, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/virology) +"smR" = ( +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/patient_wing) +"smV" = ( +/obj/effect/floor_decal/techfloor{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/cryofeed, +/obj/machinery/camera/network/security{ + c_tag = "SEC - Solitary Confinement 2"; + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/security/hallway/cell_hallway) +"snd" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/green, +/obj/machinery/door/blast/regular/open{ + id = "prisongate"; + layer = 3.3; + name = "Communal Brig Blast Door" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/security/prison) +"snx" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/floor_decal/techfloor/corner{ + dir = 10 + }, +/obj/effect/floor_decal/techfloor{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/ai) +"sny" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 8 + }, +/turf/simulated/floor/hull{ + nitrogen = 93.7835; + outdoors = 1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/surface/station/hallway/secondary/secondfloor/eva_hallway) +"sod" = ( +/obj/structure/table/wooden_reinforced, +/obj/machinery/photocopier/faxmachine{ + department = "Internal Affairs" + }, +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = 30 + }, +/turf/simulated/floor/wood, +/area/surface/station/command/internalaffairs) +"spA" = ( +/obj/structure/ladder, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/medbay/snd) +"srf" = ( +/obj/machinery/door/firedoor/border_only, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/patient_wing) +"srn" = ( +/obj/structure/lattice, +/obj/structure/catwalk, +/turf/simulated/open, +/area/surface/outside/plains/station/snd) +"sru" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "commandlockdown"; + layer = 3.3; + name = "Command Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/command/operations) +"srw" = ( +/obj/structure/window/reinforced, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 6 + }, +/obj/machinery/computer/station_alert/all{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/command/operations) +"srz" = ( +/obj/structure/table/steel, +/obj/item/device/radio/headset, +/obj/item/weapon/pen, +/obj/item/weapon/paper, +/obj/effect/floor_decal/borderfloorblack{ + dir = 6 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 6 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/security/hallway/cell_hallway) +"srN" = ( +/obj/effect/floor_decal/borderfloorblack/corner, +/obj/effect/floor_decal/corner/green/bordercorner, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + pixel_y = -21 + }, +/obj/machinery/light/small, +/obj/machinery/camera/network/research{ + c_tag = "SCI - Workshop"; + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/rnd/workshop) +"ssg" = ( +/turf/simulated/wall, +/area/surface/station/maintenance/substation/medbay/snd) +"sua" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "atmoslockdown"; + layer = 3.3; + name = "Atmospherics Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/atmos) +"suc" = ( +/obj/structure/table/woodentable, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/item/weapon/paper_bin, +/obj/item/weapon/pen, +/obj/item/weapon/pen/red{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/item/weapon/pen/blue{ + pixel_x = -3 + }, +/turf/simulated/floor/carpet/blue, +/area/surface/station/command/meeting_room) +"suD" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green, +/obj/structure/grille, +/obj/machinery/door/blast/regular/open{ + id = "seclockdown"; + layer = 3.3; + name = "Security Lockdown" + }, +/obj/structure/window/reinforced/full, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/surface/station/security/hallway/snd) +"suE" = ( +/obj/structure/bed/chair/shuttle{ + dir = 8 + }, +/turf/simulated/shuttle/floor/white, +/area/shuttle/large_escape_pod2/station) +"suH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/wall/r_wall, +/area/surface/station/medical/virology) +"suX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/prison) +"svd" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Command Secretary" + }, +/obj/effect/zone_divider, +/turf/simulated/floor/wood, +/area/surface/station/command/meeting_room) +"svO" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/obj/machinery/light_construct, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/construction/office) +"svX" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 1 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/machinery/camera/network/research{ + c_tag = "SCI - Research Hallway North Upper" + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/research) +"swj" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/virology) +"swA" = ( +/obj/structure/filingcabinet, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 10 + }, +/obj/structure/extinguisher_cabinet{ + dir = 8; + pixel_x = -30 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/qm) +"sxb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/floor_decal/rust, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/effect/map_helper/airlock/door/ext_door, +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "ai_airlock_outer"; + locked = 1; + name = "External Access" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/ai/upload_foyer) +"sxk" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/blue/bordercorner, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/dormhallway) +"sxG" = ( +/obj/structure/filingcabinet, +/turf/simulated/floor/wood, +/area/surface/station/command/internalaffairs) +"syk" = ( +/obj/structure/table/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 10 + }, +/obj/item/weapon/paper_bin, +/obj/item/weapon/folder/white, +/obj/item/weapon/pen, +/obj/item/weapon/hand_labeler, +/obj/machinery/requests_console{ + department = "Virology"; + name = "Virology RC"; + pixel_y = 24 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/virology) +"syP" = ( +/obj/structure/displaycase, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/captain) +"syR" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/east) +"szd" = ( +/obj/machinery/door/airlock/external{ + frequency = 1380; + icon_state = "door_locked"; + id_tag = "large_escape_pod_2_hatch"; + locked = 1; + name = "Large Escape Pod Hatch 2"; + req_access = list(13) + }, +/turf/simulated/shuttle/floor, +/area/shuttle/large_escape_pod2/station) +"szp" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/industrial/danger, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/armoury) +"szD" = ( +/obj/machinery/newscaster{ + pixel_x = -28 + }, +/obj/structure/closet/secure_closet/personal, +/turf/simulated/floor/carpet, +/area/surface/station/crew_quarters/sleep/Dorm_1) +"szO" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "biohazard"; + layer = 3.3; + name = "Biohazard Shutter" + }, +/turf/simulated/floor/plating, +/area/surface/station/rnd/research_foyer) +"szT" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/crew_quarters/heads/cmo) +"sAj" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/research) +"sBb" = ( +/turf/simulated/floor/hull{ + nitrogen = 93.7835; + outdoors = 1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/surface/outside/station/roof) +"sBi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/camera/network/security{ + c_tag = "SEC - Stairwell Upper"; + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/security/hallway/stairwell) +"sCl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/virology) +"sCn" = ( +/obj/structure/railing, +/turf/simulated/open, +/area/surface/station/ai) +"sDi" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/zone_divider, +/turf/simulated/floor/wood, +/area/surface/station/command/liaison) +"sDD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/patient_wing) +"sDX" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing, +/turf/simulated/open, +/area/surface/outside/plains/station/snd) +"sEo" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/robotics) +"sEp" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/blast/regular/open{ + id = "seclockdown"; + layer = 3.3; + name = "Security Lockdown" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/security/lobby) +"sEN" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/east) +"sFg" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/westskybridge) +"sFQ" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/maintenance/eva) +"sFT" = ( +/turf/unsimulated/mask, +/area/surface/station/quartermaster/office) +"sFW" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/open, +/area/surface/station/engineering/reactor_room) +"sGc" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/catwalk_plated, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/surface/station/command/operations) +"sGg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/prison) +"sGF" = ( +/obj/structure/table/glass, +/obj/machinery/computer/med_data/laptop, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 9 + }, +/obj/effect/floor_decal/corner/pink/border{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/exam_room) +"sGK" = ( +/obj/structure/table/wooden_reinforced, +/obj/item/device/flashlight/lamp/green, +/turf/simulated/floor/wood, +/area/surface/station/command/meeting_room) +"sGX" = ( +/obj/machinery/atmospherics/pipe/zpipe/down/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/disposalpipe/down{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 32; + d2 = 4; + icon_state = "32-4" + }, +/obj/machinery/door/firedoor/border_only, +/obj/structure/lattice, +/turf/simulated/open, +/area/surface/station/maintenance/substation/security/snd) +"sHr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/wall, +/area/surface/station/rnd/research) +"sHz" = ( +/obj/structure/table/wooden_reinforced, +/obj/machinery/computer/skills, +/turf/simulated/floor/wood, +/area/surface/station/command/internalaffairs) +"sIO" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 6 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/closet/secure_closet/atmos_personal, +/turf/simulated/floor/tiled/yellow, +/area/surface/station/engineering/locker_room) +"sIU" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_airlock/snd) +"sIY" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "quart_tint" + }, +/obj/machinery/door/blast/regular/open{ + id = "crglockdown"; + layer = 3.3; + name = "Cargo Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/quartermaster/qm) +"sJA" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/machinery/button/remote/blast_door{ + id = "commandlockdown"; + layer = 2.9; + name = "Command Lockdown"; + pixel_x = -6; + pixel_y = 24 + }, +/obj/machinery/button/remote/blast_door{ + id = "bridgelockdown"; + layer = 2.9; + name = "Operations Lockdown"; + pixel_x = 6; + pixel_y = 24 + }, +/obj/machinery/camera/network/command{ + c_tag = "COM - Operations" + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/device/flash{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/device/flash, +/obj/item/device/aicard, +/turf/simulated/floor/tiled, +/area/surface/station/command/operations) +"sJK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/glass{ + name = "Hallway" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/hallway/secondary/secondfloor/weststairwell) +"sJY" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/industrial/danger/corner, +/obj/item/clothing/accessory/armor/armorplate/bulletproof{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/clothing/head/helmet/bulletproof, +/obj/effect/floor_decal/corner_oldtile/green{ + dir = 9 + }, +/obj/machinery/door/window/brigdoor/eastright{ + name = "Ballistic Armor" + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/armoury) +"sKy" = ( +/obj/structure/table/standard, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 10 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/storage/art) +"sKC" = ( +/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/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/surface/station/holodeck_control) +"sKX" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/eva_hallway) +"sLp" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/weststairwell/snd) +"sLV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/westskybridge) +"sMI" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 21 + }, +/obj/effect/landmark/start{ + name = "Internal Affairs Agent" + }, +/turf/simulated/floor/wood, +/area/surface/station/command/internalaffairs) +"sNs" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/west) +"sNy" = ( +/obj/structure/reagent_dispensers, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 21 + }, +/turf/simulated/floor/tiled, +/area/surface/station/storage/art) +"sNV" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/open, +/area/surface/station/security/hallway/stairwell) +"sOk" = ( +/obj/structure/cable/green, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -12; + pixel_y = -24 + }, +/obj/structure/table/reinforced, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 6 + }, +/obj/machinery/button/windowtint{ + id = "cmooffice"; + pixel_x = 11; + pixel_y = -23 + }, +/obj/item/weapon/storage/fancy/vials{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/weapon/storage/fancy/vials, +/obj/effect/floor_decal/steeldecal/steel_decals_central7, +/turf/simulated/floor/tiled/white, +/area/surface/station/crew_quarters/heads/cmo) +"sOy" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/equiptment_storage) +"sOB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/wall, +/area/surface/station/maintenance/substation/research/snd) +"sOQ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/construction/office) +"sPt" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/snd) +"sPE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/prison) +"sPZ" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + id = "medbayquar"; + layer = 3.3; + name = "Medbay Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/medical/psych) +"sQe" = ( +/obj/machinery/atmospherics/valve, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -21 + }, +/turf/simulated/floor/plating, +/area/surface/station/security/riot_control) +"sQm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/civilian) +"sQv" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/equiptment_storage) +"sQK" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/crew_quarters/heads/rdoffice) +"sRh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/structure/sign/directions/dorms{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/westskybridge) +"sRX" = ( +/obj/machinery/status_display, +/turf/simulated/wall/r_wall, +/area/surface/station/ai) +"sSq" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/effect/floor_decal/corner_oldtile/green{ + dir = 6 + }, +/obj/machinery/door/window/brigdoor/westleft{ + name = "Weapon Locker" + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/tactical) +"sSs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/station/command/teleporter) +"sSF" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/holodeck_control) +"sTF" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock{ + name = "Restroom"; + req_one_access = list(20) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/crew_quarters/captain) +"sTH" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 2; + name = "RD Office"; + sortType = "RD Office" + }, +/obj/effect/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/research) +"sUl" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/station/crew_quarters/heads/chief) +"sUL" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/maintenance/substation/command) +"sVb" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "cmooffice" + }, +/obj/machinery/door/blast/regular/open{ + id = "medbayquar"; + layer = 3.3; + name = "Medbay Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/crew_quarters/heads/cmo) +"sVx" = ( +/obj/structure/disposalpipe/segment{ + 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 = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/structure/extinguisher_cabinet{ + dir = 1; + pixel_y = 30 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/cell_hallway) +"sVz" = ( +/obj/machinery/porta_turret/ai_defense, +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/ai) +"sVO" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/ai_monitored/storage/eva) +"sWI" = ( +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -12; + pixel_y = -24 + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/armoury) +"sWT" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/clothing/accessory/armor/armorplate/bulletproof, +/obj/item/clothing/accessory/armor/legguards/bulletproof, +/obj/item/clothing/accessory/armor/armguards/bulletproof, +/obj/item/clothing/head/helmet/bulletproof, +/obj/effect/floor_decal/corner_oldtile/green{ + dir = 9 + }, +/obj/machinery/door/window/brigdoor/eastleft{ + name = "Ballistic Armor" + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/armoury) +"sXx" = ( +/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/red/bordercorner{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/cell_hallway) +"sYd" = ( +/obj/effect/floor_decal/corner_steel_grid{ + dir = 6 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/machinery/light_switch{ + pixel_x = 12; + pixel_y = 24 + }, +/obj/structure/table/glass, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 1 + }, +/obj/structure/flora/pottedplant/smallcactus{ + pixel_y = 10 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/medical/hallway/snd) +"sYf" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/mopbucket, +/obj/item/weapon/mop, +/obj/item/weapon/soap/nanotrasen, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/security/prison) +"sYT" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/brown/bordercorner, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/qm) +"sZD" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/cargo/snd) +"sZL" = ( +/obj/structure/closet/l3closet/virology, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/obj/structure/cable/green{ + 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 = 24 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris, +/area/surface/station/medical/virology) +"tbh" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/hallway/primary/secondfloor/east) +"tcI" = ( +/obj/structure/table/wooden_reinforced, +/obj/machinery/photocopier/faxmachine{ + department = "Liaison Office" + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/wood, +/area/surface/station/command/liaison) +"tdB" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass{ + name = "Dormitory" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/storage/art) +"tdY" = ( +/obj/effect/floor_decal/steeldecal/steel_decals1, +/obj/effect/floor_decal/steeldecal/steel_decals1{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals1{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals1{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/flasher{ + id = "permflash"; + layer = 2.4; + name = "Floor mounted flash" + }, +/obj/item/weapon/stool{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris, +/area/surface/station/security/prison) +"tek" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/quartermaster/restroom) +"teq" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/rnd/lab) +"tet" = ( +/obj/machinery/door/airlock{ + name = "Unit 1" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/security/prison) +"tew" = ( +/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/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/door/airlock/glass_security{ + name = "Equipment Storage"; + req_one_access = list(2) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/security/equiptment_storage) +"tfI" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/obj/structure/table/reinforced, +/obj/structure/noticeboard{ + pixel_y = -30 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/weapon/storage/box/donut, +/turf/simulated/floor/tiled, +/area/surface/station/command/operations) +"tfO" = ( +/obj/effect/floor_decal/techfloor{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + id_tag = "roof_airlock"; + pixel_y = 25 + }, +/obj/machinery/airlock_sensor{ + id_tag = "roof_airlock_sensor"; + pixel_x = -11; + pixel_y = 25 + }, +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/hallway/primary/secondfloor/east) +"tgO" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/carpet, +/area/surface/station/crew_quarters/sleep/Dorm_3) +"ths" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "meeting" + }, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "commandlockdown"; + layer = 3.3; + name = "Command Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/command/meeting_room) +"thx" = ( +/obj/structure/bed/chair/comfy/purp{ + dir = 4 + }, +/turf/simulated/floor/wood/sif, +/area/surface/station/rnd/research) +"thB" = ( +/obj/structure/closet/secure_closet/medical3, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/machinery/light, +/turf/simulated/floor/tiled/old_tile/white, +/area/surface/station/medical/lockerroom) +"thN" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/surface/station/holodeck_control) +"tir" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner2{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 21 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/sndaccess) +"tix" = ( +/obj/structure/window/reinforced, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 10 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/modular_computer/console/preset/engineering{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/command/operations) +"tiM" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/captain) +"tiP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/wood/sif, +/area/surface/station/rnd/research) +"tjd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/captain) +"tjD" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "prisongate"; + layer = 3.3; + name = "Communal Brig Blast Door" + }, +/obj/machinery/door/window/southleft{ + name = "Visitation"; + req_one_access = list(63) + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/prison) +"tjE" = ( +/obj/structure/sign/warning/secure_area, +/turf/simulated/wall/r_wall, +/area/surface/station/ai_monitored/storage/eva) +"tkc" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/office) +"tla" = ( +/turf/simulated/floor/greengrid, +/area/surface/station/ai) +"tlg" = ( +/obj/structure/toilet{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/security/prison) +"tlr" = ( +/obj/structure/filingcabinet, +/turf/simulated/floor/wood, +/area/surface/station/command/liaison) +"tlG" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 4 + }, +/turf/simulated/floor/hull{ + nitrogen = 93.7835; + outdoors = 1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/surface/outside/station/roof) +"tlW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/surface/station/crew_quarters/captain) +"tmx" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/civilian) +"tmR" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/research) +"tnb" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/floor_decal/techfloor{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/machinery/flasher{ + id = "permentryflash"; + layer = 2.4; + name = "Floor mounted flash" + }, +/obj/structure/extinguisher_cabinet{ + dir = 8; + pixel_x = -30 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/security/prison) +"tnW" = ( +/obj/item/device/radio/intercom/private{ + dir = 1; + pixel_y = 21 + }, +/turf/simulated/floor/greengrid, +/area/surface/station/ai) +"tnX" = ( +/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/hull{ + nitrogen = 93.7835; + outdoors = 1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/surface/outside/station/roof) +"tov" = ( +/turf/simulated/floor/tiled/old_tile/gray, +/area/surface/station/rnd/robotics) +"tqs" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, +/obj/machinery/hologram/holopad, +/obj/item/weapon/storage/secure/safe{ + pixel_x = 5; + pixel_y = -26 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/virology) +"trl" = ( +/obj/structure/closet{ + name = "robotics parts" + }, +/obj/item/weapon/cell/high, +/obj/item/weapon/cell/high, +/obj/item/weapon/cell/high, +/obj/item/weapon/cell/high, +/obj/item/device/assembly/prox_sensor, +/obj/item/device/assembly/prox_sensor, +/obj/item/weapon/storage/firstaid/regular{ + empty = 1; + name = "First-Aid (empty)" + }, +/obj/item/weapon/storage/firstaid/regular{ + empty = 1; + name = "First-Aid (empty)" + }, +/obj/item/weapon/storage/firstaid/regular{ + empty = 1; + name = "First-Aid (empty)" + }, +/obj/item/device/healthanalyzer, +/obj/item/device/healthanalyzer, +/obj/item/device/healthanalyzer, +/obj/item/device/flash/synthetic, +/obj/item/device/flash/synthetic, +/obj/item/device/flash/synthetic, +/obj/item/device/flash/synthetic, +/obj/item/device/flash/synthetic, +/obj/item/device/flash/synthetic, +/obj/item/stack/cable_coil{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/stack/cable_coil, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/purple/border, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/robotics) +"trJ" = ( +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/weststairwell) +"tsl" = ( +/obj/machinery/door/firedoor/border_only, +/obj/effect/floor_decal/borderfloor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/border, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/engineering/hallway/snd) +"tsE" = ( +/obj/item/weapon/banner/blue, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/hallway/secondary/secondfloor/command) +"tsY" = ( +/obj/structure/reagent_dispensers/watertank/high, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/ai_monitored/storage/eva) +"tsZ" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/steeldecal/steel_decals3, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/hallway/primary/secondfloor/east) +"ttt" = ( +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/surface/station/ai) +"tuF" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/steeldecal/steel_decals3, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/security/hallway/stairwell) +"tuI" = ( +/obj/structure/closet/secure_closet/medical3, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/turf/simulated/floor/tiled/old_tile/white, +/area/surface/station/medical/lockerroom) +"tuO" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/robotics) +"tvk" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/snd) +"tvz" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "seclockdown"; + layer = 3.3; + name = "Security Lockdown" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/ai_status_display, +/turf/simulated/floor/plating, +/area/surface/station/security/lobby) +"tvF" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/robotics) +"tvG" = ( +/obj/structure/table/woodentable, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/item/weapon/folder/red{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/folder/blue, +/obj/effect/zone_divider, +/turf/simulated/floor/carpet/blue, +/area/surface/station/command/meeting_room) +"tvU" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 9 + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/research/snd) +"tvW" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 1 + }, +/turf/simulated/floor/carpet/blue, +/area/surface/station/command/meeting_room) +"twi" = ( +/obj/machinery/suit_cycler/engineering, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -21 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/engineering/engine_eva) +"twl" = ( +/obj/machinery/computer/security/mining{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/obj/machinery/requests_console{ + department = "Cargo Bay"; + departmentType = 2; + dir = 4; + name = "Cargo RC"; + pixel_x = -24 + }, +/obj/machinery/camera/network/cargo{ + c_tag = "CRG - Quartermaster Office"; + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/qm) +"tws" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/sign/directions/evac{ + pixel_y = -26 + }, +/obj/structure/sign/directions/stairs_down{ + pixel_y = -38 + }, +/obj/structure/sign/directions/cryo{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/hallway/secondary/secondfloor/civilian) +"twF" = ( +/obj/structure/table/reinforced, +/obj/machinery/light, +/obj/item/device/radio/intercom{ + pixel_y = -21 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/yellow/border, +/obj/machinery/microwave, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/reactor_monitoring) +"twS" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/effect/floor_decal/rust, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/station/roof) +"twZ" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/rnd/lab) +"txz" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 21 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/purple/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/robotics) +"tzd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/medical{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "virology_airlock_exterior"; + locked = 1; + name = "Virology Exterior Airlock"; + req_one_access = list(39) + }, +/obj/machinery/access_button/airlock_exterior{ + dir = 8; + master_tag = "virology_airlock_control"; + name = "Virology Access Button"; + pixel_y = 24; + req_one_access = list(39) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/medical/virology) +"tzj" = ( +/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/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/eva_hallway) +"tzq" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/glass{ + name = "Dormitory" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/hallway/secondary/secondfloor/dormhallway) +"tzt" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/mask/breath, +/obj/item/clothing/suit/space/void/security, +/obj/item/clothing/head/helmet/space/void/security, +/obj/structure/table/rack{ + layer = 2.6 + }, +/obj/machinery/door/window/southright{ + name = "Security Suits"; + req_one_access = list(1) + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/ai_monitored/storage/eva) +"tzF" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/engineering/atmos) +"tzG" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/camera/network/cargo{ + c_tag = "CRG - Cargo Stairwell"; + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/office) +"tAs" = ( +/obj/effect/floor_decal/techfloor{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/machinery/camera/network/engineering{ + c_tag = "ENG - Airlock Roof"; + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/engineering/hallway/eva_hallway) +"tAV" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 5 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/computer/secure_data, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/command/operations) +"tAW" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/green, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/door/blast/regular/open{ + id = "prisongate"; + layer = 3.3; + name = "Communal Brig Blast Door" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/security/prison) +"tBq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/spline/plain, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood/sif, +/area/surface/station/rnd/research) +"tBu" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + id = "ReactorPoolViewport"; + layer = 3.3; + name = "Reactor Cooling Pond Viewport Shutter" + }, +/obj/machinery/door/firedoor/border_only, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_room) +"tBJ" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/tiled/dark, +/area/surface/station/ai_monitored/storage/eva) +"tDf" = ( +/obj/machinery/computer/rcon{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/reactor_monitoring) +"tDQ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 9 + }, +/obj/machinery/computer/guestpass{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/hallway/secondary/secondfloor/civilian) +"tEZ" = ( +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/engineering/atmos) +"tFr" = ( +/obj/structure/table/wooden_reinforced, +/obj/item/weapon/paper_bin, +/obj/item/weapon/folder, +/obj/item/weapon/folder/blue{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/folder/red{ + pixel_x = -2 + }, +/obj/item/weapon/folder/yellow, +/obj/item/weapon/stamp/internalaffairs, +/obj/item/weapon/stamp/denied{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/effect/zone_divider, +/turf/simulated/floor/carpet/bcarpet, +/area/surface/station/command/internalaffairs) +"tGw" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/west) +"tGx" = ( +/obj/structure/railing, +/turf/simulated/open, +/area/surface/station/holodeck_control) +"tGL" = ( +/obj/effect/zone_divider, +/turf/simulated/wall, +/area/surface/station/engineering/reactor_monitoring) +"tGN" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/prison) +"tHP" = ( +/obj/structure/table/rack{ + layer = 2.6 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/mask/breath, +/obj/machinery/door/window/southleft{ + name = "Engineering Suits"; + req_one_access = list(11,24) + }, +/obj/item/clothing/suit/space/void/engineering, +/obj/item/clothing/head/helmet/space/void/engineering, +/turf/simulated/floor/tiled/dark, +/area/surface/station/engineering/engine_eva) +"tJt" = ( +/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/command{ + name = "Station Manager's Quarters"; + req_one_access = list(20) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/crew_quarters/captain) +"tJz" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/surface/station/crew_quarters/sleep/Dorm_1) +"tJU" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/crew_quarters/heads/rdoffice) +"tKs" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "steel_dirty" + }, +/area/surface/outside/station/roof) +"tLg" = ( +/obj/structure/cable/green, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24; + pixel_y = -12 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/research/snd) +"tLL" = ( +/obj/machinery/status_display, +/turf/simulated/wall, +/area/surface/station/medical/patient_wing) +"tMd" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/virology) +"tMZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/snd) +"tNg" = ( +/obj/structure/table/wooden_reinforced, +/obj/item/device/flashlight/lamp/green, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/machinery/camera/network/medbay{ + c_tag = "MED - Mental Health" + }, +/turf/simulated/floor/carpet/sblucarpet, +/area/surface/station/medical/psych) +"tNl" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing, +/turf/simulated/open, +/area/surface/station/rnd/research) +"tNt" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/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 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/station/engineering/engi_restroom) +"tNH" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/open, +/area/surface/station/park/skybridge) +"tNX" = ( +/obj/machinery/computer/rdconsole, +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/rnd/workshop) +"tOG" = ( +/obj/structure/sign/warning/secure_area, +/turf/simulated/wall/r_wall, +/area/surface/station/command/operations) +"tOQ" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/bordercorner{ + dir = 1 + }, +/obj/structure/closet/secure_closet/medical_wall{ + pixel_x = -31; + req_access = list(19) + }, +/obj/item/device/defib_kit/loaded, +/obj/item/roller, +/obj/item/bodybag/cryobag, +/obj/item/weapon/storage/firstaid/regular, +/obj/item/weapon/storage/pill_bottle/spaceacillin, +/turf/simulated/floor/tiled, +/area/surface/station/command/operations) +"tOU" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 10 + }, +/obj/structure/closet/secure_closet/personal/patient, +/obj/machinery/newscaster{ + pixel_y = -28 + }, +/obj/effect/floor_decal/corner/pink/border{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/patient_a) +"tOZ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/hallway/primary/secondfloor/east) +"tPi" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/effect/floor_decal/rust, +/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{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse, +/area/surface/outside/station/roof) +"tPG" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/engineering/foyer/secondfloor) +"tPR" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/closet/secure_closet/personal, +/obj/machinery/button/remote/airlock{ + dir = 4; + id = "droom3"; + name = "Door Bolt Control"; + pixel_x = -24; + pixel_y = 7; + specialfunctions = 4 + }, +/turf/simulated/floor/carpet, +/area/surface/station/crew_quarters/sleep/Dorm_3) +"tQH" = ( +/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/effect/zone_divider, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/reactor_monitoring) +"tRq" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/west) +"tRr" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/foyer) +"tRO" = ( +/turf/simulated/wall, +/area/surface/station/security/warden) +"tSg" = ( +/obj/machinery/flasher/portable, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/equiptment_storage) +"tSm" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/green, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/security/hallway/stairwell) +"tTX" = ( +/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, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/atmos/monitoring) +"tUc" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/engineering/reactor_airlock/snd) +"tUx" = ( +/obj/machinery/camera/network/security{ + c_tag = "SEC - Equipment Storage"; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/equiptment_storage) +"tUG" = ( +/obj/structure/bed/chair/office/light, +/obj/effect/landmark/start{ + name = "Research Director" + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/crew_quarters/heads/rdoffice) +"tUS" = ( +/obj/structure/table/glass, +/obj/item/weapon/folder/white, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 5 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 5 + }, +/obj/item/weapon/reagent_containers/food/drinks/britcup, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/office) +"tUU" = ( +/obj/machinery/teleport/station, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/camera/network/command{ + c_tag = "COM - Teleporter"; + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/command/teleporter) +"tUW" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/crew_quarters/sleep/Dorm_3) +"tUZ" = ( +/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/structure/closet/emcloset, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/cargo/snd) +"tWa" = ( +/turf/simulated/wall, +/area/surface/station/rnd/workshop) +"tWb" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/status_display, +/turf/simulated/floor/plating, +/area/surface/station/hallway/secondary/secondfloor/civilian) +"tWk" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + id = "crglockdown"; + layer = 3.3; + name = "Cargo Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/quartermaster/office) +"tWq" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock/glass{ + name = "Hallway" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/hallway/secondary/secondfloor/weststairwell) +"tWv" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/snd) +"tWB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Medical Doctor" + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/lockerroom) +"tWT" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/door/blast/regular/open{ + id = "prisongate"; + layer = 3.3; + name = "Communal Brig Blast Door" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/security/prison) +"tXh" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/rnd/research) +"tXx" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/door/blast/regular/open{ + id = "seclockdown"; + layer = 3.3; + name = "Security Lockdown" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/security/hallway/cell_hallway) +"tXQ" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/prison) +"tZh" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/foyer) +"tZt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_engineering{ + name = "Engineering Hallway" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/engineering/foyer/secondfloor) +"uao" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/carpet, +/area/surface/station/crew_quarters/captain) +"ubn" = ( +/turf/simulated/open, +/area/surface/station/security/lobby) +"ubq" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/bordercorner2{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/zone_divider, +/obj/machinery/computer/HolodeckControl{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/holodeck_control) +"ubE" = ( +/obj/machinery/vending/coffee, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/medical/patient_wing) +"ubW" = ( +/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/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/surface/station/quartermaster/office) +"ubX" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/mask/breath, +/obj/structure/table/rack{ + layer = 2.6 + }, +/obj/machinery/door/window/northright{ + name = "Engineering Suits"; + req_one_access = list(11,24) + }, +/obj/machinery/light, +/obj/item/clothing/suit/space/void/atmos, +/obj/item/clothing/head/helmet/space/void/atmos, +/turf/simulated/floor/tiled/dark, +/area/surface/station/engineering/engine_eva) +"ucJ" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/brown, +/turf/simulated/floor/carpet, +/area/surface/station/crew_quarters/sleep/Dorm_4) +"udq" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -24; + pixel_y = 12 + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/station/park/skybridge) +"udx" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/green/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/westskybridge) +"udE" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/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/surface/station/hallway/secondary/secondfloor/command) +"udK" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/command) +"uen" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/red/bordercorner, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/surface/station/security/prison) +"ues" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/exam_room) +"uey" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "lawyer_tint" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/surface/station/command/internalaffairs) +"ueC" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning/dust/corner, +/obj/effect/floor_decal/rust, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "steel_dirty" + }, +/area/surface/station/ai/upload_foyer) +"ufc" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/snd) +"ufh" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/red/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/snd) +"ufi" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/black, +/obj/machinery/door/window/southright{ + name = "Virology Isolation Room"; + req_access = list(39) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/medical/virology) +"ufN" = ( +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/patient_wing) +"ugm" = ( +/obj/structure/sign/goldenplaque{ + desc = "Done No Harm."; + name = "Best Doctor 2552" + }, +/turf/simulated/wall, +/area/surface/station/medical/office) +"ugP" = ( +/obj/structure/table/steel, +/obj/machinery/cell_charger, +/obj/item/clothing/head/soft, +/obj/item/clothing/head/soft, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/office) +"uhQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/virology) +"uiq" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/open, +/area/surface/station/engineering/reactor_room) +"uiu" = ( +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24; + pixel_y = -12 + }, +/obj/structure/table/standard, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/surface/station/crew_quarters/sleep/Dorm_3) +"uiT" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/command) +"ujj" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/door/blast/regular/open{ + id = "prisongate"; + layer = 3.3; + name = "Communal Brig Blast Door" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/security/prison) +"ujs" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/red/bordercorner, +/obj/machinery/camera/network/prison{ + c_tag = "SEC - Common Brig"; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/prison) +"ujF" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/wall/r_wall, +/area/surface/station/ai) +"uln" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/machinery/button/remote/airlock{ + id = "engentryaccess"; + name = "Door Bolt Control"; + pixel_y = 24; + req_access = list(10); + specialfunctions = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/sndaccess) +"ulG" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/industrial/warning, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/medbay/snd) +"unh" = ( +/obj/effect/floor_decal/techfloor{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/effect/floor_decal/techfloor/corner{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/ai) +"unC" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/floor_decal/corner/pink/border, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/patient_a) +"unJ" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/rnd/research_foyer) +"unL" = ( +/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/effect/floor_decal/corner/white{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central5, +/obj/structure/disposalpipe/sortjunction{ + name = "Robotics"; + sortType = "Robotics" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/rnd/research_foyer) +"uoJ" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/machinery/flasher{ + id = "cell2flash"; + pixel_x = -26 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/prison) +"uoM" = ( +/turf/simulated/wall, +/area/surface/station/medical/psych) +"upv" = ( +/turf/simulated/wall, +/area/surface/station/maintenance/substation/security/snd) +"upN" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/command) +"uso" = ( +/obj/structure/table/steel, +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/obj/item/device/integrated_electronics/wirer{ + pixel_x = 6 + }, +/obj/item/device/integrated_electronics/debugger{ + pixel_x = -4 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/rnd/workshop) +"usw" = ( +/obj/structure/table/woodentable, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/item/weapon/clipboard, +/turf/simulated/floor/wood, +/area/surface/station/command/liaison) +"usA" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/open, +/area/surface/station/park/skybridge) +"usH" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/green/border, +/obj/machinery/light/spot, +/turf/simulated/floor/tiled, +/area/surface/station/park/skybridge) +"usO" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/park/skybridge) +"utm" = ( +/turf/simulated/wall, +/area/surface/station/engineering/engi_restroom) +"uug" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/effect/catwalk_plated/dark, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/engineering/snd) +"uvz" = ( +/obj/structure/table/wooden_reinforced, +/obj/item/weapon/paper_bin, +/obj/item/weapon/clipboard, +/obj/item/weapon/folder/blue{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/folder/blue, +/obj/item/weapon/folder/red{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/weapon/pen, +/turf/simulated/floor/carpet/sblucarpet, +/area/surface/station/medical/psych) +"uvJ" = ( +/obj/effect/landmark/map_data{ + height = 3 + }, +/turf/unsimulated/wall/planetary/sif, +/area/surface/outside/plains/station/snd) +"uvM" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/effect/landmark/start{ + name = "Atmospheric Technician" + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/locker_room) +"uwi" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner{ + dir = 4 + }, +/turf/simulated/open, +/area/surface/station/park/skybridge) +"uwA" = ( +/turf/simulated/floor/tiled, +/area/surface/station/engineering/reactor_monitoring) +"uwO" = ( +/turf/simulated/open, +/area/surface/station/park/skybridge) +"uwX" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_security{ + name = "Warden's Office"; + req_one_access = list(3) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/security/warden) +"uxm" = ( +/turf/simulated/shuttle/floor, +/area/shuttle/large_escape_pod2/station) +"uxn" = ( +/obj/effect/floor_decal/borderfloor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/border, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/snd) +"uxX" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/hull{ + nitrogen = 93.7835; + outdoors = 1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/surface/outside/station/roof) +"uyg" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/west/elevator) +"uyh" = ( +/obj/structure/cable/green, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -24; + pixel_y = 12 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/eva_hallway) +"uyK" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/engineering/snd) +"uyM" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "meeting" + }, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "commandlockdown"; + layer = 3.3; + name = "Command Lockdown" + }, +/obj/machinery/ai_status_display, +/turf/simulated/floor/plating, +/area/surface/station/command/meeting_room) +"uyV" = ( +/obj/structure/table/wooden_reinforced, +/obj/machinery/computer/skills{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/surface/station/command/internalaffairs) +"uzg" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/bordercorner{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/effect/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/snd) +"uzk" = ( +/obj/machinery/recharge_station, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/freezer, +/area/surface/station/engineering/engi_restroom) +"uAw" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "lawyer_tint" + }, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "commandlockdown"; + layer = 3.3; + name = "Command Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/command/internalaffairs) +"uAz" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/command/teleporter) +"uAI" = ( +/obj/effect/zone_divider, +/turf/simulated/wall, +/area/surface/station/command/internalaffairs) +"uBB" = ( +/obj/structure/cable/green{ + d1 = 32; + d2 = 4; + icon_state = "32-4" + }, +/obj/structure/lattice, +/obj/machinery/door/firedoor/border_only, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/zpipe/up/supply{ + dir = 4 + }, +/turf/simulated/open, +/area/surface/station/maintenance/substation/cargo/snd) +"uBG" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/prison) +"uBI" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/maintenance{ + name = "E.V.A. Maintenance Access"; + req_one_access = list(18) + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/eva) +"uBS" = ( +/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/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/civilian) +"uBV" = ( +/obj/structure/shuttle/engine/heater{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/shuttle/wall/dark/no_join, +/area/shuttle/large_escape_pod2/station) +"uDG" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "captainlockdown"; + layer = 3.3; + name = "Site Manager Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/crew_quarters/captain) +"uDX" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/reactor_monitoring) +"uEd" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/grille, +/obj/structure/cable/green, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/ai_monitored/storage/eva) +"uEi" = ( +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/west) +"uEj" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "rdoffice" + }, +/obj/machinery/status_display, +/turf/simulated/floor/plating, +/area/surface/station/rnd/lab) +"uEx" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/east/snd) +"uEC" = ( +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/ai) +"uEI" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/status_display, +/turf/simulated/wall/r_wall, +/area/surface/station/ai) +"uFq" = ( +/obj/machinery/shower{ + dir = 8; + pixel_x = -5; + pixel_y = -1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 6 + }, +/obj/machinery/door/window/southright{ + name = "Shower" + }, +/obj/structure/curtain/open/shower/medical, +/turf/simulated/floor/tiled/eris, +/area/surface/station/medical/restroom) +"uFX" = ( +/obj/structure/disposalpipe/segment{ + 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/machinery/door/airlock/glass_security{ + name = "Security Cells" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/security/hallway/cell_hallway) +"uGe" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/industrial/danger, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/armoury) +"uGi" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/hallway/secondary/secondfloor/command) +"uHb" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/yellow/border, +/obj/item/weapon/storage/box/donkpockets, +/obj/item/weapon/book/manual/supermatter_engine, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/reactor_monitoring) +"uHy" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/green, +/turf/simulated/floor/plating, +/area/surface/station/ai_monitored/storage/eva) +"uIm" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/suit_cycler, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/command/teleporter) +"uII" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 6 + }, +/obj/structure/curtain/open/shower/security, +/obj/machinery/shower{ + dir = 4; + pixel_x = 5; + pixel_y = -1 + }, +/turf/simulated/floor/tiled/eris, +/area/surface/station/security/prison) +"uKq" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "seclockdown"; + layer = 3.3; + name = "Security Lockdown" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/security/hallway/cell_hallway) +"uKR" = ( +/obj/structure/table/standard, +/obj/machinery/computer/med_data/laptop{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/robotics) +"uLP" = ( +/obj/machinery/status_display, +/turf/simulated/wall, +/area/surface/station/holodeck_control) +"uMb" = ( +/turf/simulated/wall, +/area/surface/station/rnd/research) +"uMh" = ( +/obj/machinery/porta_turret/ai_defense, +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/ai) +"uMq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 6 + }, +/obj/effect/floor_decal/corner/lime/diagonal, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/virology) +"uMG" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "cmooffice" + }, +/turf/simulated/floor/plating, +/area/surface/station/crew_quarters/heads/cmo) +"uMZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/surface/station/hallway/primary/secondfloor/west) +"uNB" = ( +/turf/simulated/wall, +/area/surface/station/rnd/robotics) +"uND" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "seclockdown"; + layer = 3.3; + name = "Security Lockdown" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/security/hallway/cell_hallway) +"uNR" = ( +/obj/structure/cable/green{ + 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{ + id_tag = "droom5"; + name = "Room 5" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/crew_quarters/sleep/Dorm_5) +"uOA" = ( +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/monofloor{ + dir = 8 + }, +/area/surface/station/engineering/locker_room) +"uPo" = ( +/obj/effect/floor_decal/techfloor{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/sign/warning/cold{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/hallway/secondary/secondfloor/eva_hallway) +"uPw" = ( +/obj/machinery/ai_slipper, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/ai) +"uPL" = ( +/obj/structure/sign/warning/high_voltage, +/turf/simulated/wall/r_wall, +/area/surface/station/security/prison) +"uPM" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/surface/station/quartermaster/office) +"uPW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/surface/station/command/internalaffairs) +"uQN" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/hallway/stairwell) +"uRr" = ( +/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/surface/station/holodeck_control) +"uSc" = ( +/obj/structure/sign/warning/high_voltage, +/turf/simulated/wall, +/area/surface/station/maintenance/substation/engineering/snd) +"uSB" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/east) +"uSL" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/glass{ + name = "Hallway" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/holodeck_control) +"uSM" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner{ + dir = 8 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/hallway/snd) +"uSW" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/holodeck_control) +"uSY" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/snd) +"uTa" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/open, +/area/surface/station/ai) +"uUm" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/bordercorner{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/westskybridge) +"uUo" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/engineering/engine_eva) +"uUt" = ( +/turf/simulated/floor/wood, +/area/surface/station/command/meeting_room) +"uUW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/hallway/cell_hallway) +"uUX" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/soap/nanotrasen, +/obj/item/weapon/storage/box/cups{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/weapon/storage/box/donkpockets, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lime/diagonal, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/virology) +"uVg" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/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{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24; + pixel_y = -12 + }, +/obj/machinery/camera/network/medbay{ + c_tag = "MED - Patient Hallway North"; + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/patient_wing) +"uVA" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/holodeck_control) +"uVR" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/atmos{ + name = "Riot Control"; + req_one_access = list(1,11,24) + }, +/turf/simulated/floor/plating, +/area/surface/station/security/riot_control) +"uVZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/floor_decal/industrial/warning, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/machinery/airlock_sensor/airlock_interior{ + dir = 1; + id_tag = "eng_airlock_int_sensor"; + master_tag = "eng_airlock"; + pixel_x = -35; + pixel_y = -31 + }, +/obj/effect/map_helper/airlock/sensor/int_sensor, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/eva_hallway) +"uWn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/sndaccess) +"uWr" = ( +/obj/structure/extinguisher_cabinet{ + dir = 1; + pixel_y = 30 + }, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/captain) +"uWM" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/hull{ + nitrogen = 93.7835; + outdoors = 1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/surface/outside/station/roof) +"uXj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 21 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/snd) +"uXL" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "cmooffice" + }, +/obj/machinery/door/blast/regular/open{ + id = "medbayquar"; + layer = 3.3; + name = "Medbay Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/crew_quarters/heads/cmo) +"uYt" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 4 + }, +/turf/simulated/floor/carpet/blue, +/area/surface/station/command/meeting_room) +"uYI" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/bordercorner{ + dir = 1 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/office) +"uYN" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet{ + dir = 1; + pixel_y = 30 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/robotics) +"uZi" = ( +/obj/machinery/autolathe, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/structure/noticeboard{ + pixel_y = -30 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/office) +"uZq" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/snd) +"uZC" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "ceoffice" + }, +/turf/simulated/floor/plating, +/area/surface/station/crew_quarters/heads/chief) +"vad" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_atmos{ + name = "Atmospherics Monitoring" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/engineering/atmos/monitoring) +"vaw" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled, +/area/surface/station/ai_monitored/storage/eva) +"vcd" = ( +/obj/structure/table/glass, +/obj/item/weapon/folder/white, +/obj/item/weapon/disk/tech_disk, +/obj/item/weapon/disk/tech_disk, +/obj/item/weapon/disk/design_disk{ + pixel_y = 2 + }, +/obj/item/weapon/disk/design_disk{ + pixel_y = -2 + }, +/obj/item/weapon/reagent_containers/dropper, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/purple/border, +/obj/machinery/light, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/lab) +"vci" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/civilian) +"vcB" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/regular{ + dir = 4; + id = "armoury"; + name = "Emergency Access" + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/security/armoury) +"vdo" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/box/monkeycubes, +/obj/item/weapon/extinguisher, +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lime/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/virology) +"vdu" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/glass_security{ + id_tag = "prisonentry"; + name = "Brig Entry"; + req_one_access = list(2,4) + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/security/prison) +"vdW" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/open, +/area/surface/station/park/skybridge) +"vem" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/crew_quarters/heads/rdoffice) +"veA" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/rnd/chargebay) +"veF" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/yellow/border, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/snd) +"veI" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 10 + }, +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/effect/landmark/start{ + name = "Warden" + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/warden) +"vft" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/carpet, +/area/surface/station/crew_quarters/sleep/Dorm_5) +"vfC" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/structure/table/standard, +/obj/machinery/recharger/wallcharger{ + pixel_y = -28 + }, +/obj/item/device/binoculars, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/armoury) +"vfL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/command/operations) +"vgn" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/status_display, +/turf/simulated/floor/plating, +/area/surface/station/medical/virology) +"vgR" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 8 + }, +/turf/simulated/floor/hull{ + nitrogen = 93.7835; + outdoors = 1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/surface/outside/station/roof) +"vhk" = ( +/obj/machinery/deployable/barrier, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/equiptment_storage) +"vhv" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/snd) +"vhB" = ( +/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/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/surface/station/security/hallway/cell_hallway) +"vhP" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/command) +"viM" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/security/tactical) +"vjd" = ( +/obj/structure/table/rack{ + layer = 2.6 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/clothing/mask/breath, +/obj/item/clothing/suit/space/skrell/black, +/obj/item/clothing/head/helmet/space/skrell/black, +/obj/machinery/door/window/northright{ + name = "EVA Suits"; + req_one_access = list(18) + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/ai_monitored/storage/eva) +"vjy" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/quartermaster/qm) +"vkK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 8 + }, +/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{ + dir = 4; + pixel_x = -24; + pixel_y = 12 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/eva_hallway) +"vln" = ( +/mob/living/simple_mob/animal/passive/cat/runtime, +/turf/simulated/floor/tiled/white, +/area/surface/station/crew_quarters/heads/cmo) +"vlZ" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/green, +/obj/machinery/door/blast/regular/open{ + id = "seclockdown"; + layer = 3.3; + name = "Security Lockdown" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/security/hallway/cell_hallway) +"vmh" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/hallway/primary/secondfloor/east) +"vmu" = ( +/obj/structure/bed/chair, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/wood, +/area/surface/station/command/liaison) +"vne" = ( +/obj/structure/undies_wardrobe, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/quartermaster/restroom) +"vnz" = ( +/obj/machinery/status_display, +/turf/simulated/wall/r_wall, +/area/surface/station/ai_monitored/storage/eva) +"vnD" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/research) +"vnM" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 10 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 10 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/extinguisher_cabinet{ + dir = 8; + pixel_x = -30 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/lab) +"vnU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/disposalpipe/segment, +/obj/item/weapon/stool{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/prison) +"voo" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/structure/table/reinforced, +/obj/effect/floor_decal/corner/blue/border{ + dir = 6 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/weapon/storage/box/lights/mixed, +/obj/item/device/multitool, +/obj/item/weapon/storage/toolbox/mechanical, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/command/operations) +"vqg" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 1 + }, +/obj/machinery/camera/network/second_floor{ + c_tag = "Second Floor - West Hallway 1" + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/west) +"vsO" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner{ + dir = 1 + }, +/obj/effect/zone_divider, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/reactor_monitoring) +"vsP" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/engineering/atmos) +"vtM" = ( +/obj/machinery/atmospherics/valve, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/security/riot_control) +"vtV" = ( +/obj/machinery/computer/communications{ + dir = 1 + }, +/obj/machinery/light, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/captain) +"vtY" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 21 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/dormhallway) +"vuh" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/command) +"vuX" = ( +/turf/simulated/wall, +/area/surface/station/crew_quarters/heads/rdoffice) +"vvM" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/old_tile/gray, +/area/surface/station/security/tactical) +"vvW" = ( +/obj/effect/floor_decal/corner/lime/diagonal, +/obj/structure/sink/generic{ + dir = 4; + pixel_x = -12; + pixel_y = -4 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/virology) +"vws" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/turf/simulated/floor/tiled/old_tile/gray, +/area/surface/station/security/warden) +"vxN" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/purple/bordercorner, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/west/elevator) +"vyf" = ( +/obj/machinery/vending/medical, +/obj/effect/floor_decal/spline/plain{ + dir = 5 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/medical/patient_wing) +"vyZ" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/medical/lockerroom) +"vzd" = ( +/obj/structure/bed/padded, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/item/weapon/bedsheet/medical, +/obj/machinery/computer/security/telescreen/entertainment{ + icon_state = "frame"; + pixel_x = -32 + }, +/obj/effect/floor_decal/corner/pink/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/patient_a) +"vzj" = ( +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 6 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/crew_quarters/captain) +"vAR" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/surface/station/crew_quarters/sleep/Dorm_4) +"vAV" = ( +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/command) +"vBb" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/diagonal, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -21 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/crew_quarters/captain) +"vBg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/surface/station/construction/office) +"vBB" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "ai_airlock_inner"; + locked = 1; + name = "Internal Access" + }, +/obj/effect/map_helper/airlock/door/int_door, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/ai/upload_foyer) +"vDC" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + id = "atmoslockdown"; + layer = 3.3; + name = "Atmospherics Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/atmos) +"vEs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/east) +"vEE" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/engine_eva) +"vEQ" = ( +/obj/item/modular_computer/telescreen/preset/generic, +/turf/simulated/wall/r_wall, +/area/surface/station/rnd/workshop) +"vFa" = ( +/obj/machinery/power/smes/buildable{ + RCon_tag = "Substation - Command"; + charge = 2e+006 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/green, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/command) +"vFj" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/ai_status_display, +/turf/simulated/floor/plating, +/area/surface/station/rnd/robotics) +"vFV" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/orange/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/prison) +"vGw" = ( +/obj/structure/table/glass, +/obj/item/weapon/reagent_containers/spray/cleaner{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/device/radio/phone/medbay{ + name = "Emergency Phone"; + pixel_y = -6 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/virology) +"vGD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/crew_quarters/heads/rdoffice) +"vGN" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "bridge_center" + }, +/turf/simulated/floor/plating, +/area/surface/station/command/operations) +"vGY" = ( +/obj/machinery/door/airlock{ + name = "Unit 2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/medical/restroom) +"vHc" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/east) +"vHl" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/brown/bordercorner, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/west) +"vHm" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/command/operations) +"vHA" = ( +/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/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/security/hallway/stairwell) +"vHB" = ( +/obj/item/modular_computer/console/preset/command{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/machinery/camera/network/medbay{ + c_tag = "MED - CMO Office"; + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/crew_quarters/heads/cmo) +"vHY" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/sign/directions/dorms{ + dir = 4; + pixel_y = 32 + }, +/obj/structure/sign/directions/command{ + dir = 4; + pixel_y = 38 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/hallway/secondary/secondfloor/civilian) +"vIp" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/surface/station/quartermaster/foyer) +"vIJ" = ( +/obj/structure/sign/warning/secure_area, +/turf/simulated/wall/r_wall, +/area/surface/station/command/teleporter) +"vIV" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/techfloor{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/effect/floor_decal/techfloor/corner{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/ai) +"vJk" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock{ + name = "Engineering Restroom"; + req_one_access = list(10) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/engineering/engi_restroom) +"vJA" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 9 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/item/weapon/cartridge/quartermaster{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/weapon/cartridge/quartermaster{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/cartridge/quartermaster, +/obj/item/device/retail_scanner/cargo, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/qm) +"vKq" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/hallway/primary/secondfloor/west/elevator) +"vKv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/landmark{ + name = "xeno_spawn" + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/surface/station/medical/restroom) +"vKS" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/reactor_monitoring) +"vKX" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/snd) +"vLh" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock/glass_command{ + name = "E.V.A."; + req_one_access = list(18) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/ai_monitored/storage/eva) +"vLi" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/carpet/blue, +/area/surface/station/command/meeting_room) +"vLp" = ( +/obj/effect/zone_divider, +/turf/simulated/floor/reinforced, +/area/holodeck/alphadeck) +"vLq" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/camera/network/command{ + c_tag = "COM - Conference Room"; + dir = 1 + }, +/turf/simulated/floor/wood, +/area/surface/station/command/meeting_room) +"vLv" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 21 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/west/elevator) +"vMa" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/west) +"vMF" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/engine_eva) +"vNc" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/engineering/reactor_monitoring) +"vNj" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/maintenance/common{ + icon_state = "door_locked"; + id_tag = "reactor_raccess_south"; + locked = 1; + name = "Reactor Roof Access"; + req_access = list(10) + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/engineering/reactor_room) +"vNl" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/effect/floor_decal/corner/pink/border, +/obj/machinery/light, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/patient_b) +"vNu" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 1 + }, +/obj/item/clothing/ears/earmuffs, +/obj/item/clothing/ears/earmuffs, +/obj/machinery/clamp, +/obj/machinery/clamp, +/obj/machinery/clamp, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/reactor_monitoring) +"vNB" = ( +/obj/structure/ladder, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/research/snd) +"vOc" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/medical/office) +"vOi" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/techfloor/corner{ + dir = 6 + }, +/obj/effect/floor_decal/techfloor{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/ai) +"vOL" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 5 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/closet/secure_closet/atmos_personal, +/turf/simulated/floor/tiled/yellow, +/area/surface/station/engineering/locker_room) +"vPc" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass{ + name = "Hallway" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/hallway/secondary/secondfloor/civilian) +"vPg" = ( +/obj/effect/zone_divider, +/turf/simulated/wall/r_wall, +/area/surface/station/crew_quarters/sleep/Dorm_3) +"vPF" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/paper_bin, +/obj/item/weapon/pen/red{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/item/weapon/pen/blue, +/turf/simulated/floor/wood, +/area/surface/station/command/liaison) +"vPY" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/cable/green, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -12; + pixel_y = -24 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7, +/turf/simulated/floor/tiled/dark, +/area/surface/station/engineering/engine_eva) +"vQm" = ( +/obj/structure/table/standard, +/obj/machinery/recharger, +/obj/item/clothing/mask/breath/medical, +/obj/item/weapon/book/manual/robotics_cyborgs, +/obj/item/device/defib_kit/jumper_kit/loaded, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/robotics) +"vSt" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/patient_wing) +"vSR" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/floor_decal/techfloor, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/ai) +"vTu" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/zpipe/down/supply{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 32; + icon_state = "32-1" + }, +/obj/structure/disposalpipe/down{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only, +/obj/structure/lattice, +/turf/simulated/open, +/area/surface/station/maintenance/substation/medbay/snd) +"vTy" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/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/tiled, +/area/surface/station/security/prison) +"vUp" = ( +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/robotics) +"vWR" = ( +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/monofloor, +/area/surface/station/engineering/hallway/snd) +"vWU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/rnd/workshop) +"vXi" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/map_helper/airlock/door/ext_door, +/obj/machinery/access_button/airlock_exterior{ + dir = 8; + master_tag = "roof_airlock"; + pixel_y = -35 + }, +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "roof_airlock_outer"; + locked = 1; + name = "External Access" + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/hallway/primary/secondfloor/east) +"vXu" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/ai_monitored/storage/eva) +"vXG" = ( +/turf/simulated/wall, +/area/surface/station/crew_quarters/sleep/Dorm_5) +"vXN" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12 + }, +/obj/structure/mirror{ + pixel_x = -28 + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/surface/station/medical/restroom) +"vXX" = ( +/obj/effect/floor_decal/rust, +/obj/machinery/airlock_sensor/airlock_exterior{ + dir = 4; + id_tag = "eng_airlock_ext_sensor"; + master_tag = "eng_airlock"; + pixel_x = -31; + pixel_y = -35 + }, +/obj/effect/map_helper/airlock/sensor/ext_sensor, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "steel_dirty" + }, +/area/surface/station/engineering/hallway/eva_hallway) +"vXZ" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/office) +"vYK" = ( +/obj/structure/railing, +/turf/simulated/open, +/area/surface/station/engineering/reactor_room) +"wad" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 8 + }, +/obj/effect/zone_divider, +/turf/simulated/floor/carpet/blue, +/area/surface/station/command/meeting_room) +"waj" = ( +/obj/machinery/papershredder, +/obj/structure/extinguisher_cabinet{ + dir = 8; + pixel_x = -30 + }, +/turf/simulated/floor/wood, +/area/surface/station/command/meeting_room) +"wbL" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "medbayrecquar"; + layer = 3.3; + name = "Medbay Quarantine Shutters"; + opacity = 0; + open_layer = 3.3 + }, +/obj/machinery/button/remote/airlock{ + dir = 8; + id = "MedbayUpper"; + name = "Door Bolt Control"; + pixel_x = 24; + req_access = list(5); + specialfunctions = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/medical/office) +"wcW" = ( +/obj/structure/sign/warning/lethal_turrets, +/turf/simulated/wall/r_wall, +/area/surface/station/ai/upload_foyer) +"wdL" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/snd) +"wdQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 5 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/qm) +"weT" = ( +/obj/effect/landmark/start{ + name = "Atmospheric Technician" + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/locker_room) +"wfn" = ( +/obj/structure/toilet{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/quartermaster/restroom) +"wfL" = ( +/obj/structure/table/wooden_reinforced, +/obj/item/weapon/clipboard, +/obj/item/weapon/pen/blue, +/obj/item/weapon/pen/red{ + pixel_x = -4; + pixel_y = -4 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/surface/station/command/internalaffairs) +"wgn" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/zone_divider, +/turf/simulated/floor/tiled/dark, +/area/surface/station/engineering/reactor_monitoring) +"wgx" = ( +/obj/machinery/suit_cycler/security, +/obj/effect/floor_decal/industrial/warning, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/surface/station/ai_monitored/storage/eva) +"wgF" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/steeldecal/steel_decals_central5, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/west) +"wiz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/zone_divider, +/turf/simulated/floor/wood, +/area/surface/station/command/liaison) +"wiC" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/item/device/radio/beacon, +/turf/simulated/floor/tiled/monofloor, +/area/surface/station/hallway/primary/secondfloor/west) +"wiF" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/zone_divider, +/turf/simulated/open, +/area/surface/outside/plains/station/snd) +"wiR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/snd) +"wjs" = ( +/obj/structure/table/reinforced, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/computer/skills, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -21 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/crew_quarters/heads/chief) +"wkn" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/east) +"wkH" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/hallway/snd) +"wlg" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + frequency = 1379; + id_tag = "engine_airlock_exteriord2"; + name = "Reactor Access Exterior"; + req_access = list(11); + req_one_access = list() + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/engineering/reactor_airlock/snd) +"wlm" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "quart_tint" + }, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "crglockdown"; + layer = 3.3; + name = "Cargo Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/quartermaster/qm) +"wlB" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/east) +"wlU" = ( +/obj/item/weapon/banner/virgov, +/turf/simulated/floor/wood, +/area/surface/station/command/meeting_room) +"wnk" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/open, +/area/surface/station/engineering/atmos) +"wnB" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/surface/station/medical/virology) +"wnL" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/office) +"won" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/green/border, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/civilian) +"woW" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/obj/machinery/button/remote/blast_door{ + dir = 1; + id = "atmoslockdown"; + name = "Atmospherics Lockdown"; + pixel_x = 6; + pixel_y = -24; + req_one_access = list(10,24) + }, +/obj/machinery/button/remote/blast_door{ + dir = 1; + id = "englockdown"; + name = "Engineering Lockdown"; + pixel_x = -6; + pixel_y = -24; + req_one_access = list(10,24) + }, +/obj/machinery/button/remote/blast_door{ + desc = "A remote control-switch for the exterior vent port."; + dir = 1; + id = "ReactorVent"; + name = "Reactor Ventillatory Control"; + pixel_x = -6; + pixel_y = -35; + req_access = list(10) + }, +/obj/machinery/button/remote/airlock{ + desc = "A remote control-switch for the reactor core airlock hatch bolts."; + dir = 1; + id = "engine_access_hatch"; + name = "Reactor Hatch Bolt Control"; + pixel_x = 6; + pixel_y = -35; + req_access = list(10); + specialfunctions = 4 + }, +/obj/machinery/keycard_auth{ + pixel_y = -46 + }, +/turf/simulated/floor/tiled, +/area/surface/station/crew_quarters/heads/chief) +"wpd" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/bordercorner{ + dir = 8 + }, +/obj/structure/sign/directions/dorms{ + pixel_y = -32 + }, +/obj/machinery/camera/network/second_floor{ + c_tag = "Second Floor - Civilian Hallway 3"; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/civilian) +"wpx" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/surface/station/rnd/chargebay) +"wpR" = ( +/obj/structure/table/rack{ + layer = 2.6 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/clothing/suit/armor/pcarrier/medium/nt{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/clothing/suit/armor/pcarrier/medium/nt, +/obj/machinery/door/window/brigdoor/westleft{ + name = "Weapon Locker"; + req_access = list(3) + }, +/obj/item/clothing/suit/armor/pcarrier/medium/nt{ + pixel_x = 2; + pixel_y = 2 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/security/equiptment_storage) +"wqW" = ( +/obj/machinery/porta_turret/ai_defense, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/ai) +"wrl" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/effect/floor_decal/steeldecal/steel_decals3, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/crew_quarters/heads/cmo) +"wrI" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/surface/station/command/meeting_room) +"wsg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/rnd/research) +"wss" = ( +/turf/simulated/shuttle/wall/no_join{ + base_state = "orange"; + icon = 'icons/turf/shuttle_orange.dmi'; + icon_state = "orange" + }, +/area/shuttle/large_escape_pod2/station) +"wsI" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden, +/obj/item/weapon/stool, +/turf/simulated/floor/plating, +/area/surface/station/security/riot_control) +"wtg" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{ + frequency = 1380; + id_tag = "large_escape_pod_2_berth"; + pixel_y = 24; + tag_door = "large_escape_pod_2_berth_hatch" + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "steel_dirty"; + initial_flooring = /decl/flooring/tiling/steel_dirty; + outdoors = 0 + }, +/area/surface/station/hallway/primary/secondfloor/east) +"wtK" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/hallway/secondary/secondfloor/dormhallway) +"wuu" = ( +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/red/bordercorner, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/item/device/radio/intercom/department/security{ + dir = 1; + pixel_y = -21 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/cell_hallway) +"wuB" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/surface/station/hallway/primary/secondfloor/west/elevator) +"wuI" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + id = "medbayquar"; + layer = 3.3; + name = "Medbay Lockdown" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/medical/patient_wing) +"wvI" = ( +/obj/structure/sign/directions/command, +/obj/structure/sign/directions/dorms{ + pixel_y = 6 + }, +/obj/structure/sign/directions/ai_core{ + pixel_y = -6 + }, +/turf/simulated/wall, +/area/surface/station/hallway/primary/secondfloor/east) +"wvP" = ( +/obj/effect/zone_divider, +/turf/simulated/floor/wood, +/area/surface/station/command/liaison) +"wvW" = ( +/obj/structure/cable/cyan{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/porta_turret/ai_defense, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/dark, +/area/surface/station/ai) +"wvX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/research) +"wwd" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/hull{ + nitrogen = 93.7835; + outdoors = 1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/surface/outside/station/roof) +"wxh" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/patient_a) +"wxp" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/engineering/hallway/eva_hallway) +"wxR" = ( +/obj/structure/cable, +/obj/effect/catwalk_plated/dark, +/obj/machinery/power/terminal{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/surface/station/ai) +"wxY" = ( +/obj/effect/zone_divider, +/turf/simulated/open, +/area/surface/outside/plains/station/snd) +"wyh" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/engineering/hallway/snd) +"wym" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/carpet, +/area/surface/station/crew_quarters/captain) +"wyu" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass{ + name = "Hallway" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/hallway/secondary/secondfloor/civilian) +"wyG" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/quartermaster/office) +"wyP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/office) +"wze" = ( +/obj/structure/table/glass, +/obj/structure/disposalpipe/segment, +/obj/item/weapon/paper_bin, +/obj/item/weapon/clipboard, +/obj/item/weapon/clipboard, +/obj/item/weapon/pen, +/obj/item/sticky_pad/random, +/obj/item/weapon/storage/firstaid, +/turf/simulated/floor/wood/sif, +/area/surface/station/rnd/research) +"wzs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/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/manifold/hidden/supply{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/hallway/snd) +"wzS" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/bed/chair/comfy/brown{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/surface/station/crew_quarters/captain) +"wAE" = ( +/obj/item/weapon/banner/red, +/turf/simulated/wall, +/area/surface/station/construction/office) +"wAT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/medical{ + autoclose = 0; + frequency = 1379; + icon_state = "door_locked"; + id_tag = "virology_airlock_interior"; + locked = 1; + name = "Virology Interior Airlock"; + req_one_access = list(39) + }, +/obj/machinery/access_button/airlock_interior{ + dir = 4; + master_tag = "virology_airlock_control"; + pixel_y = 24; + req_one_access = list(39) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/medical/virology) +"wBy" = ( +/obj/effect/zone_divider, +/turf/unsimulated/wall/planetary/sif, +/area/surface/outside/plains/station/snd) +"wBB" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/door/airlock/security{ + name = "Riot Control" + }, +/turf/simulated/floor/plating, +/area/surface/station/security/riot_control) +"wCi" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + id = "medbayquar"; + layer = 3.3; + name = "Medbay Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/medical/psych) +"wCt" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/security/warden) +"wDb" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table/rack, +/obj/effect/floor_decal/corner_oldtile/green{ + dir = 6 + }, +/obj/random/projectile/sec, +/obj/machinery/door/window/brigdoor/westright{ + name = "Weapons Locker" + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/tactical) +"wDY" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/machinery/button/windowtint{ + dir = 1; + id = "meeting"; + pixel_x = -11; + pixel_y = 23 + }, +/obj/machinery/light_switch{ + pixel_x = 12; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/keycard_auth{ + pixel_y = 36 + }, +/turf/simulated/floor/wood, +/area/surface/station/command/meeting_room) +"wEo" = ( +/obj/machinery/door/blast/regular/open{ + id = "seclockdown"; + layer = 3.3; + name = "Security Lockdown" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/security/hallway/stairwell) +"wEr" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/hologram/holopad, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/monofloor{ + dir = 4 + }, +/area/surface/station/ai_monitored/storage/eva) +"wEv" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/hallway/primary/secondfloor/east) +"wED" = ( +/obj/structure/cable/green, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -12; + pixel_y = -24 + }, +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/green/border, +/obj/effect/floor_decal/steeldecal/steel_decals_central7, +/obj/random/junk, +/turf/simulated/floor/tiled/dark, +/area/surface/station/rnd/workshop) +"wFd" = ( +/obj/effect/floor_decal/corner_steel_grid{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/foyer) +"wFU" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/industrial/danger, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/armoury) +"wGm" = ( +/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/highsecurity{ + name = "Tactical Equipment"; + req_access = list(3); + req_one_access = list() + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/security/tactical) +"wGt" = ( +/obj/effect/floor_decal/corner_steel_grid{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/west) +"wGG" = ( +/obj/structure/table/standard, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 21 + }, +/obj/item/weapon/towel{ + color = "#FF8C00"; + name = "orange towel"; + pixel_x = -3; + pixel_y = -4 + }, +/obj/item/weapon/towel{ + color = "#FF8C00"; + name = "orange towel"; + pixel_x = -1; + pixel_y = -2 + }, +/obj/item/weapon/towel{ + color = "#FFD700"; + name = "gold towel" + }, +/obj/item/weapon/towel{ + color = "#FFD700"; + name = "gold towel"; + pixel_x = 1; + pixel_y = 2 + }, +/obj/item/weapon/towel{ + color = "#00FFFF"; + name = "cyan towel"; + pixel_x = 2; + pixel_y = 4 + }, +/obj/item/weapon/towel{ + color = "#00FFFF"; + name = "cyan towel"; + pixel_x = 3; + pixel_y = 6 + }, +/obj/random/soap, +/obj/random/soap, +/turf/simulated/floor/tiled/freezer, +/area/surface/station/engineering/engi_restroom) +"wGH" = ( +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/sndaccess) +"wGL" = ( +/obj/structure/table/wooden_reinforced, +/obj/effect/zone_divider, +/turf/simulated/floor/wood, +/area/surface/station/command/meeting_room) +"wGP" = ( +/obj/structure/sign/atmosplaque, +/turf/simulated/wall, +/area/surface/station/engineering/atmos/monitoring) +"wHk" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/ai) +"wHw" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "holodeck_tint" + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/station/holodeck_control) +"wIb" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/surface/station/rnd/chargebay) +"wIt" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 4 + }, +/obj/machinery/camera/network/second_floor{ + c_tag = "Second Floor -East Hallway 3"; + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/hallway/primary/secondfloor/east) +"wJe" = ( +/obj/structure/sign/warning/radioactive, +/turf/simulated/wall/r_wall, +/area/surface/station/engineering/reactor_airlock/snd) +"wJp" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/machinery/light_switch{ + pixel_x = 12; + pixel_y = 24 + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/cargo/snd) +"wJx" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/west/elevator) +"wJF" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/maintenance/common{ + icon_state = "door_locked"; + id_tag = "reactor_raccess_north"; + locked = 1; + name = "Reactor Roof Access"; + req_access = list(10) + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/engineering/reactor_room) +"wJL" = ( +/obj/item/weapon/banner/nt, +/turf/simulated/floor/tiled/dark, +/area/surface/station/hallway/primary/secondfloor/east) +"wLt" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/map_helper/airlock/door/ext_door, +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "roof_airlock_outer"; + locked = 1; + name = "External Access" + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/hallway/primary/secondfloor/east) +"wLy" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/computer/station_alert/all{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/station/crew_quarters/heads/chief) +"wLM" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/glass{ + name = "Hallway" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/hallway/secondary/secondfloor/command) +"wMP" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/green, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "seclockdown"; + layer = 3.3; + name = "Security Lockdown" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/security/hallway/cell_hallway) +"wNc" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/bordercorner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/cell_hallway) +"wNI" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/machinery/door/firedoor/border_only, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/cell_hallway) +"wNT" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/reactor_monitoring) +"wOg" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/camera/network/civilian{ + c_tag = "CIV - Holodeck South"; + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/holodeck_control) +"wOZ" = ( +/obj/structure/ladder, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/engineering/snd) +"wPj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/catwalk_plated/dark, +/obj/structure/table/steel, +/obj/machinery/cell_charger, +/obj/random/powercell, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/command) +"wPs" = ( +/obj/structure/table/standard, +/obj/structure/flora/pottedplant{ + pixel_y = 8 + }, +/obj/machinery/newscaster{ + pixel_x = -28 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/hallway/primary/secondfloor/west/elevator) +"wPt" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/snd) +"wPv" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/foyer) +"wPV" = ( +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/weststairwell) +"wRj" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/security/warden) +"wRE" = ( +/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 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled, +/area/surface/station/holodeck_control) +"wSf" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/surface/station/medical/restroom) +"wSJ" = ( +/turf/simulated/wall/r_wall, +/area/surface/station/security/prison) +"wSN" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/techfloor/corner{ + dir = 10 + }, +/obj/effect/floor_decal/techfloor/corner{ + dir = 6 + }, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/window/brigdoor/northleft{ + id = "Cell 1"; + name = "Cell 1"; + req_access = list(); + req_one_access = list(2,4) + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/security/prison) +"wTa" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/equiptment_storage) +"wTx" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/snd) +"wTL" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/red/bordercorner{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/camera/network/security{ + c_tag = "SEC - Hallway Upper North"; + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/snd) +"wUq" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "crglockdown"; + layer = 3.3; + name = "Cargo Lockdown" + }, +/obj/machinery/ai_status_display, +/turf/simulated/floor/plating, +/area/surface/station/quartermaster/foyer) +"wVS" = ( +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner_steel_grid, +/obj/effect/floor_decal/corner/paleblue/bordercorner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/patient_wing) +"wWB" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor/corner{ + dir = 10 + }, +/obj/effect/floor_decal/techfloor/corner{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/ai_monitored/storage/eva) +"wXf" = ( +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 21 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/camera/network/engineering{ + c_tag = "ENG - Locker Room"; + dir = 8 + }, +/obj/effect/landmark/start{ + name = "Atmospheric Technician" + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/locker_room) +"wXr" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/robotics) +"wXv" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/floor_decal/corner_oldtile/yellow{ + dir = 5 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/window/brigdoor/southleft{ + name = "Tactical Armor" + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/tactical) +"wXy" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "rdoffice" + }, +/turf/simulated/floor/plating, +/area/surface/station/rnd/lab) +"wXI" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/security/hallway/stairwell) +"wXM" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/command/operations) +"wXQ" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/orange/bordercorner{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 1 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/prison) +"wXY" = ( +/obj/machinery/flasher/portable, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/security/equiptment_storage) +"wYt" = ( +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/red/bordercorner, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/snd) +"wYQ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/item/weapon/folder/red, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/command/operations) +"wZi" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 10 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/purple/bordercorner2{ + dir = 8 + }, +/obj/structure/sign/directions/science/rnd{ + dir = 4; + pixel_x = -32 + }, +/obj/structure/sign/directions/science/robotics{ + dir = 4; + pixel_x = -32; + pixel_y = -6 + }, +/obj/structure/sign/directions/stairs_down{ + dir = 1; + pixel_x = -32; + pixel_y = 10 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/research) +"wZz" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/patient_a) +"wZZ" = ( +/obj/machinery/atm{ + pixel_y = 28 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/hallway/secondary/secondfloor/command) +"xai" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/prison) +"xao" = ( +/obj/machinery/recharge_station, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/quartermaster/restroom) +"xaE" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/office) +"xaJ" = ( +/obj/structure/sign/warning/high_voltage, +/turf/simulated/wall/r_wall, +/area/surface/station/engineering/engine_eva) +"xaT" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/surface/station/security/tactical) +"xaX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/yellow/border, +/turf/simulated/floor/tiled, +/area/surface/station/storage/art) +"xce" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/east) +"xcg" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/snd) +"xcE" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/wood, +/area/surface/station/command/meeting_room) +"xcF" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/surface/station/storage/art) +"xdj" = ( +/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/station/hallway/secondary/secondfloor/dormhallway) +"xdz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/bluespace_beacon, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/surface/station/command/teleporter) +"xdM" = ( +/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/surface/station/security/prison) +"xfa" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/surface/station/quartermaster/office) +"xfz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/office) +"xgD" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/browndouble, +/turf/simulated/floor/carpet, +/area/surface/station/crew_quarters/sleep/Dorm_5) +"xgF" = ( +/obj/structure/cable, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -12; + pixel_y = -24 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/green/border, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/green/bordercorner2{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/weststairwell) +"xgN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/westskybridge) +"xgT" = ( +/obj/structure/cable/cyan{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/floor_decal/techfloor/corner{ + dir = 10 + }, +/obj/effect/floor_decal/techfloor{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/ai) +"xgY" = ( +/obj/structure/sign/warning/secure_area, +/turf/simulated/wall/r_wall, +/area/surface/station/ai/upload_foyer) +"xiG" = ( +/obj/structure/disposalpipe/sortjunction{ + dir = 4; + name = "Cargo Bay"; + sortType = "Cargo Bay" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/surface/station/hallway/primary/secondfloor/west) +"xiU" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/shutters{ + density = 0; + icon_state = "shutter0"; + id = "visitgate"; + layer = 3.3; + name = "Privacy Shutters"; + opacity = 0; + open_layer = 3.3 + }, +/turf/simulated/floor/plating, +/area/surface/station/security/prison) +"xjg" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/robotics) +"xjH" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/engineering/foyer/secondfloor) +"xjN" = ( +/turf/simulated/floor/carpet/blue, +/area/surface/station/command/meeting_room) +"xjO" = ( +/obj/structure/bed/chair/comfy/blue, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/carpet/blue, +/area/surface/station/command/meeting_room) +"xkj" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/hallway/secondary/secondfloor/weststairwell) +"xkk" = ( +/obj/machinery/atmospherics/binary/passive_gate{ + icon_state = "on"; + unlocked = 1 + }, +/obj/effect/floor_decal/industrial/warning/full, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/surface/station/hallway/secondary/secondfloor/eva_hallway) +"xkl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + dir = 4; + id_tag = "virology_airlock_control"; + name = "Virology Access Console"; + pixel_x = -24; + req_one_access = list(39); + tag_exterior_door = "virology_airlock_exterior"; + tag_interior_door = "virology_airlock_interior" + }, +/obj/machinery/camera/network/medbay{ + c_tag = "MED - Virology West"; + dir = 5 + }, +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "virologyquar"; + layer = 2.9; + name = "Virology Lockdown Control"; + pixel_x = -36; + req_one_access = list(5) + }, +/obj/structure/sink/generic{ + dir = 4; + pixel_x = -12; + pixel_y = -4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/virology) +"xkW" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/structure/sign/directions/ladder_down{ + pixel_y = -26 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/ai_monitored/storage/eva) +"xld" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor/glass, +/obj/structure/noticeboard{ + pixel_x = -32 + }, +/obj/machinery/door/window/southleft{ + name = "Cargo Desk"; + req_access = list(50) + }, +/obj/item/sticky_pad/random, +/turf/simulated/floor/tiled/dark, +/area/surface/station/quartermaster/office) +"xlP" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/surface/station/quartermaster/office) +"xmu" = ( +/obj/structure/closet/crate/medical, +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/bodybag/cryobag{ + pixel_x = 5 + }, +/obj/item/bodybag/cryobag{ + pixel_x = 5 + }, +/obj/item/weapon/storage/firstaid/o2{ + layer = 2.8; + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/weapon/storage/box/masks, +/obj/item/weapon/storage/box/gloves{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/item/weapon/storage/firstaid/toxin, +/obj/item/weapon/storage/firstaid/fire{ + layer = 2.9; + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/weapon/storage/firstaid/adv{ + pixel_x = -2 + }, +/obj/item/weapon/reagent_containers/blood/empty, +/obj/item/weapon/reagent_containers/blood/empty, +/obj/item/weapon/reagent_containers/blood/empty, +/obj/item/weapon/reagent_containers/blood/empty, +/obj/item/weapon/reagent_containers/blood/empty, +/obj/machinery/light, +/turf/simulated/shuttle/floor/white, +/area/shuttle/large_escape_pod2/station) +"xmF" = ( +/obj/structure/bed/chair/comfy/purp{ + dir = 8 + }, +/turf/simulated/floor/wood/sif, +/area/surface/station/rnd/research) +"xmL" = ( +/obj/machinery/computer/cryopod{ + pixel_y = 26 + }, +/obj/structure/reagent_dispensers/watertank, +/obj/item/weapon/reagent_containers/glass/bucket, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/prison) +"xmO" = ( +/obj/structure/bed/chair, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/foyer) +"xmP" = ( +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/engineering/atmos) +"xmR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/surface/station/rnd/chargebay) +"xng" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/reactor_monitoring) +"xnA" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/office) +"xnC" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/dispenser, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/command/teleporter) +"xoe" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/office) +"xou" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/snd) +"xoH" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/storage/art) +"xpe" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "captainlockdown"; + layer = 3.3; + name = "Site Manager Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/crew_quarters/captain) +"xpk" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/east) +"xpt" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/medical/virology) +"xpF" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/hallway/snd) +"xpQ" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/open, +/area/surface/station/rnd/research) +"xpX" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/eva_hallway) +"xqr" = ( +/obj/structure/bed/chair/office/light, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/lab) +"xqK" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/surface/station/ai_monitored/storage/eva) +"xrf" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/security/hallway/stairwell) +"xsx" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/crew_quarters/heads/chief) +"xsF" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/security/equiptment_storage) +"xti" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/highsecurity{ + name = "Armoury Section"; + req_access = list(3); + req_one_access = list() + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/security/armoury) +"xtn" = ( +/turf/simulated/open, +/area/surface/station/engineering/foyer/secondfloor) +"xtQ" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/yellow/border, +/obj/machinery/computer/atmoscontrol{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/engineering/atmos/monitoring) +"xui" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "prisongate"; + layer = 3.3; + name = "Communal Brig Blast Door" + }, +/turf/simulated/floor/plating, +/area/surface/station/security/prison) +"xuq" = ( +/obj/structure/cable/cyan{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -12; + pixel_y = -24 + }, +/obj/effect/zone_divider, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/reactor_monitoring) +"xuv" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/eva) +"xuz" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/green, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "seclockdown"; + layer = 3.3; + name = "Security Lockdown" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/security/riot_control) +"xva" = ( +/obj/effect/floor_decal/techfloor{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1379; + id_tag = "engine_airlock_pumpd2" + }, +/obj/machinery/airlock_sensor{ + id_tag = "eng_al_c_snsrd2"; + pixel_x = 22 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/engineering/reactor_airlock/snd) +"xvb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/meter, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/command) +"xvi" = ( +/obj/machinery/photocopier, +/obj/machinery/newscaster{ + pixel_y = 28 + }, +/turf/simulated/floor/wood, +/area/surface/station/command/meeting_room) +"xvn" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/brown, +/turf/simulated/floor/carpet, +/area/surface/station/crew_quarters/sleep/Dorm_2) +"xvK" = ( +/obj/machinery/door/firedoor/border_only, +/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/airlock/medical{ + name = "Medbay Locker Room" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/medical/lockerroom) +"xwn" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/table/bench/padded, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/hallway/secondary/secondfloor/command) +"xwr" = ( +/obj/structure/sign/warning/high_voltage, +/turf/simulated/wall/r_wall, +/area/surface/station/security/riot_control) +"xwO" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/map_helper/airlock/door/ext_door, +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "com_airlock_outer"; + locked = 1; + name = "External Access" + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/hallway/secondary/secondfloor/eva_hallway) +"xwU" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/zone_divider, +/turf/simulated/floor/wood, +/area/surface/station/command/meeting_room) +"xxb" = ( +/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/surface/station/rnd/robotics) +"xxz" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "ceoffice" + }, +/turf/simulated/floor/plating, +/area/surface/station/crew_quarters/heads/chief) +"xxC" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/regular/open{ + id = "seclockdown"; + layer = 3.3; + name = "Security Lockdown" + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/green, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/security/lobby) +"xxD" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/hallway/primary/secondfloor/west/elevator) +"xyc" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/construction/office) +"xyd" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/status_display{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/engineering/hallway/sndaccess) +"xzd" = ( +/obj/structure/railing, +/obj/structure/window/reinforced, +/turf/simulated/open, +/area/surface/station/park/skybridge) +"xzL" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -21 + }, +/turf/simulated/floor/tiled, +/area/surface/station/command/operations) +"xzM" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/station/storage/art) +"xAk" = ( +/obj/structure/table/glass, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -24; + pixel_y = 12 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/item/weapon/packageWrap, +/obj/item/weapon/hand_labeler, +/obj/structure/noticeboard{ + pixel_y = 30 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 8 + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/surface/station/medical/lockerroom) +"xAM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/cell_hallway) +"xBu" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 9 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/modular_computer/console/preset/security, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/command/operations) +"xBw" = ( +/obj/structure/table/reinforced, +/obj/machinery/microwave, +/obj/effect/floor_decal/corner/lime/diagonal, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/medical/virology) +"xCW" = ( +/obj/structure/closet/secure_closet/engineering_personal, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/simulated/floor/tiled/yellow, +/area/surface/station/engineering/locker_room) +"xDt" = ( +/turf/simulated/floor/tiled/monotile, +/area/surface/station/command/operations) +"xDK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/surface/station/construction/office) +"xDN" = ( +/obj/structure/sign/examroom, +/turf/simulated/wall, +/area/surface/station/medical/exam_room) +"xDU" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/east) +"xFe" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/patient_wing) +"xFM" = ( +/obj/machinery/computer/rdconsole/core, +/turf/simulated/floor/tiled/old_tile/gray, +/area/surface/station/rnd/lab) +"xGr" = ( +/turf/simulated/wall, +/area/surface/station/security/hallway/snd) +"xGI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/civilian) +"xHg" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/bordercorner2{ + dir = 4 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/sndaccess) +"xHG" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/catwalk_plated, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/surface/station/security/equiptment_storage) +"xHL" = ( +/obj/structure/bed/chair, +/turf/simulated/floor/tiled, +/area/surface/station/command/operations) +"xHQ" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + dir = 1; + pixel_y = 30 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/hallway/secondary/secondfloor/westskybridge) +"xIo" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/mask/breath, +/obj/structure/table/rack{ + layer = 2.6 + }, +/obj/machinery/door/window/southright{ + name = "Engineering Suits"; + req_one_access = list(11,24) + }, +/obj/item/clothing/suit/space/void/atmos, +/obj/item/clothing/head/helmet/space/void/atmos, +/turf/simulated/floor/tiled/dark, +/area/surface/station/ai_monitored/storage/eva) +"xIu" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/surface/station/command/operations) +"xIG" = ( +/obj/structure/closet/secure_closet/brig, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/item/device/radio/headset, +/turf/simulated/floor/tiled/dark, +/area/surface/station/security/hallway/cell_hallway) +"xJA" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/park/skybridge) +"xJS" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing, +/turf/simulated/open, +/area/surface/station/ai) +"xJT" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/eva_hallway) +"xJX" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/surface/station/hallway/primary/secondfloor/east) +"xKh" = ( +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/machinery/light_switch{ + pixel_x = 12; + pixel_y = 24 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 1 + }, +/obj/structure/closet/crate/nanotrasen, +/obj/item/weapon/tool/crowbar/red{ + pixel_y = 2 + }, +/obj/item/weapon/tool/crowbar/red, +/turf/simulated/floor/tiled, +/area/surface/station/command/teleporter) +"xLg" = ( +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/glass_security{ + id_tag = null; + name = "Solitary Confinement 2"; + req_one_access = list(2) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/security/hallway/cell_hallway) +"xLu" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/office) +"xLx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/civilian) +"xLO" = ( +/obj/effect/zone_divider, +/turf/simulated/wall/r_wall, +/area/surface/station/ai_monitored/storage/eva) +"xMa" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/effect/floor_decal/corner/pink/border{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/patient_a) +"xMi" = ( +/obj/machinery/computer/supplycomp{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -21 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/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/station/quartermaster/foyer) +"xNb" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 5 + }, +/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{ + dir = 4; + pixel_x = -24; + pixel_y = 12 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/rnd/chargebay) +"xNv" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/robotics) +"xNH" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/blue/border, +/obj/machinery/computer/robotics{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/crew_quarters/heads/rdoffice) +"xNW" = ( +/obj/structure/grille, +/turf/simulated/wall/durasteel, +/area/surface/station/ai) +"xOs" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/orange/bordercorner{ + dir = 1 + }, +/obj/structure/table/steel, +/obj/item/weapon/material/minihoe, +/obj/item/device/analyzer/plant_analyzer, +/obj/item/clothing/head/greenbandana, +/turf/simulated/floor/tiled, +/area/surface/station/security/prison) +"xOO" = ( +/obj/structure/cable/cyan{ + d1 = 32; + d2 = 4; + icon_state = "32-4" + }, +/obj/structure/lattice, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/open, +/area/surface/station/engineering/atmos) +"xPi" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner_techfloor_gray{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 8 + }, +/obj/structure/sign/directions/science{ + dir = 1; + pixel_y = 26 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/hallway/primary/secondfloor/west) +"xQu" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/surface/station/security/hallway/snd) +"xQF" = ( +/obj/item/weapon/banner/nt, +/turf/simulated/floor/tiled/dark, +/area/surface/station/crew_quarters/captain) +"xRp" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/carpet, +/area/surface/station/crew_quarters/sleep/Dorm_4) +"xRB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/patient_wing) +"xRE" = ( +/obj/structure/filingcabinet, +/turf/simulated/floor/wood, +/area/surface/station/crew_quarters/captain) +"xSp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/wood, +/area/surface/station/command/meeting_room) +"xTr" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/locker_room) +"xTX" = ( +/obj/machinery/computer/supplycomp/control{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/surface/station/quartermaster/qm) +"xTY" = ( +/obj/structure/table/standard, +/obj/item/sticky_pad/random, +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "crglockdown"; + layer = 2.9; + name = "Cargo Lockdown"; + pixel_x = -4; + pixel_y = 15 + }, +/turf/simulated/floor/tiled/monotile, +/area/surface/station/quartermaster/qm) +"xUc" = ( +/obj/structure/disposalpipe/junction/yjunction, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/catwalk_plated, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/surface/station/security/hallway/cell_hallway) +"xUl" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass{ + name = "Hallway" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/hallway/secondary/secondfloor/command) +"xUr" = ( +/obj/structure/cable{ + 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/hull{ + nitrogen = 93.7835; + outdoors = 1; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/surface/outside/station/roof) +"xUN" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + 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 + }, +/obj/machinery/light/small, +/obj/effect/catwalk_plated/dark, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/surface/station/maintenance/substation/command) +"xUQ" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/open, +/area/surface/station/engineering/atmos) +"xUT" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/borderfloor/corner, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/yellow/bordercorner, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/snd) +"xVf" = ( +/obj/structure/catwalk, +/obj/machinery/button/remote/airlock{ + dir = 4; + id = "reactor_raccess_south"; + name = "Door Bolt Control"; + pixel_x = -24; + req_access = list(10); + specialfunctions = 4 + }, +/turf/simulated/open, +/area/surface/station/engineering/reactor_room) +"xVg" = ( +/turf/simulated/wall, +/area/surface/station/engineering/atmos) +"xVm" = ( +/obj/structure/cable/cyan{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/ai_status_display, +/turf/simulated/wall/r_wall, +/area/surface/station/ai) +"xVs" = ( +/obj/structure/closet/emcloset, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/reactor) +"xVv" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "captain_tint" + }, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "captainlockdown"; + layer = 3.3; + name = "Site Manager Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/crew_quarters/captain) +"xVx" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "holodeck_tint" + }, +/turf/simulated/floor/plating, +/area/surface/station/holodeck_control) +"xWa" = ( +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 21 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/hallway/secondary/secondfloor/command) +"xXJ" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/eva_hallway) +"xYs" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + id = "englockdown"; + layer = 3.3; + name = "Engineering Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/engineering/engine_eva) +"xYB" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/corner_techfloor_gray{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/west) +"xYF" = ( +/turf/simulated/floor/tiled, +/area/surface/station/hallway/primary/secondfloor/east) +"xYH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/structure/sign/directions/science/toxins{ + dir = 1; + icon_state = "direction_toxins"; + pixel_x = -32; + pixel_y = 2 + }, +/obj/structure/sign/directions/science/xenoarch{ + dir = 1; + pixel_x = -32; + pixel_y = 8 + }, +/obj/structure/sign/directions/science/xenoflora{ + dir = 1; + pixel_x = -32; + pixel_y = -4 + }, +/obj/structure/sign/directions/science/xenobiology{ + dir = 1; + pixel_x = -32; + pixel_y = -10 + }, +/obj/structure/sign/directions/science/exploration{ + dir = 1; + pixel_x = -32; + pixel_y = -16 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/research) +"xYW" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/carpet, +/area/surface/station/crew_quarters/sleep/Dorm_5) +"xZo" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/eva_hallway) +"xZH" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/blast/regular/open{ + id = "commandlockdown"; + layer = 3.3; + name = "Command Lockdown" + }, +/turf/simulated/floor/tiled/techfloor, +/area/surface/station/hallway/secondary/secondfloor/command) +"yaG" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/hallway/secondary/secondfloor/westskybridge) +"yaW" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/zone_divider, +/turf/simulated/floor/tiled, +/area/surface/station/command/teleporter) +"yaZ" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock/command{ + name = "Chief Engineer"; + req_access = list(56); + req_one_access = list() + }, +/turf/simulated/floor/tiled/steel_grid, +/area/surface/station/crew_quarters/heads/chief) +"ycz" = ( +/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/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/snd) +"ycG" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/surface/station/medical/office) +"ycN" = ( +/obj/machinery/status_display, +/turf/simulated/wall/r_wall, +/area/surface/station/medical/patient_wing) +"ycO" = ( +/turf/simulated/floor/wood, +/area/surface/station/command/internalaffairs) +"ycV" = ( +/obj/machinery/mech_recharger, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -21 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/rnd/chargebay) +"ydg" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/white, +/area/surface/station/crew_quarters/heads/rdoffice) +"ydp" = ( +/obj/item/device/radio/intercom/department/security{ + dir = 8; + pixel_x = 21 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/security/hallway/snd) +"ydx" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/rnd/chargebay) +"ydE" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "visitgate"; + layer = 3.3; + name = "Privacy Shutters"; + opacity = 0; + open_layer = 3.3 + }, +/turf/simulated/floor/plating, +/area/surface/station/security/prison) +"ydH" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/tiled/techmaint, +/area/surface/station/engineering/foyer/secondfloor) +"yeY" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "commandlockdown"; + layer = 3.3; + name = "Command Lockdown" + }, +/turf/simulated/floor/plating, +/area/surface/station/command/operations) +"yfF" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning/dust/corner{ + dir = 8 + }, +/obj/effect/floor_decal/rust, +/obj/machinery/camera/network/command{ + c_tag = "AI - Skybridge"; + dir = 1 + }, +/turf/simulated/floor/tiled/steel/sif/planetuse{ + icon_state = "steel_dirty" + }, +/area/surface/station/ai/upload_foyer) +"yfQ" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/command) +"yge" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/ai_status_display, +/turf/simulated/floor/plating, +/area/surface/station/medical/virology) +"ygl" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/monofloor{ + dir = 8 + }, +/area/surface/station/holodeck_control) +"ygv" = ( +/obj/effect/floor_decal/spline/plain, +/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 + }, +/turf/simulated/floor/tiled/dark, +/area/surface/station/hallway/primary/secondfloor/east) +"ygI" = ( +/obj/structure/table/glass, +/obj/item/weapon/cane, +/obj/item/weapon/cane{ + pixel_x = 4 + }, +/obj/random/medical, +/obj/random/firstaid, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/pink/border{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -21 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/exam_room) +"yhk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/westskybridge) +"yhA" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/open, +/area/surface/outside/plains/station/snd) +"yii" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled, +/area/surface/station/hallway/secondary/secondfloor/westskybridge) +"yjm" = ( +/obj/structure/table/wooden_reinforced, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/item/toy/plushie/therapy/blue, +/obj/machinery/button/remote/airlock{ + dir = 8; + id = "mentaldoor"; + layer = 2.9; + name = "Office Door"; + pixel_x = -6; + pixel_y = 3 + }, +/turf/simulated/floor/carpet/sblucarpet, +/area/surface/station/medical/psych) +"yjJ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/neutral, +/area/surface/station/rnd/research_foyer) +"yjT" = ( +/obj/structure/table/standard, +/obj/item/toy/plushie/corgi, +/turf/simulated/floor/tiled/dark, +/area/surface/station/hallway/secondary/secondfloor/dormhallway) +"yka" = ( +/obj/item/device/radio/intercom{ + desc = "Talk... listen through this."; + name = "Station Intercom (Brig Radio)"; + pixel_y = -21; + wires = 7 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/surface/station/crew_quarters/sleep/Dorm_2) +"yki" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/obj/machinery/camera/network/second_floor{ + c_tag = "Second Floor - Skybridge 2" + }, +/turf/simulated/floor/tiled, +/area/surface/station/park/skybridge) +"ykr" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/surface/station/engineering/hallway/eva_hallway) +"ykH" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/monofloor{ + dir = 4 + }, +/area/surface/station/hallway/primary/secondfloor/west/elevator) +"ykT" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/rnd/lab) +"ykY" = ( +/obj/structure/bed/padded, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/item/weapon/bedsheet/medical, +/obj/machinery/computer/security/telescreen/entertainment{ + icon_state = "frame"; + pixel_x = -32 + }, +/obj/effect/floor_decal/corner/pink/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/surface/station/medical/patient_b) +"ymd" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/brown, +/turf/simulated/floor/carpet, +/area/surface/station/crew_quarters/sleep/Dorm_3) + +(1,1,1) = {" +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +uvJ +"} +(2,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(3,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(4,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(5,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(6,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(7,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(8,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(9,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(10,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(11,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(12,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(13,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(14,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(15,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(16,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(17,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(18,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(19,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(20,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(21,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(22,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(23,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(24,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(25,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(26,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(27,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(28,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(29,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(30,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(31,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(32,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(33,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(34,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(35,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(36,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(37,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(38,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(39,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(40,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(41,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(42,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(43,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(44,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(45,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(46,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(47,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(48,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(49,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(50,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(51,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(52,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(53,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(54,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(55,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(56,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(57,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(58,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(59,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(60,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(61,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(62,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(63,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(64,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(65,1,1) = {" +wBy +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +bou +"} +(66,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(67,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(68,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(69,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(70,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(71,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(72,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(73,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(74,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(75,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(76,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(77,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +hmc +hmc +hmc +hmc +hmc +hmc +pGj +hmc +hmc +hmc +hmc +hmc +hmc +hmc +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(78,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +dWP +hoo +hoo +hoo +hoo +hoo +hoo +frT +hoo +hoo +hoo +hoo +hoo +hoo +hoo +rtS +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(79,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +pPO +rMU +dFq +rMU +sSF +xVx +wHw +xVx +sSF +lEa +xVx +sSF +xVx +wHw +xVx +sSF +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(80,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +pPO +bWH +tmx +fgt +sSF +cOD +cOD +cOD +cOD +vLp +cOD +cOD +cOD +cOD +cOD +xVx +sBb +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(81,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +pPO +oor +hYb +qHm +sSF +cOD +cOD +cOD +cOD +vLp +cOD +cOD +cOD +cOD +cOD +dfb +sBb +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(82,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +iLw +jbk +sfj +jbk +iLw +jbk +sfj +jbk +iLw +ddU +ddU +ddU +ddU +ddU +ddU +ddU +pPO +oor +sQm +pqN +sSF +cOD +cOD +cOD +cOD +vLp +cOD +cOD +cOD +cOD +cOD +xVx +sBb +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(83,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +fEP +xkj +xkj +fEP +iLw +jbk +sfj +jbk +iLw +iLw +iLw +xHQ +esY +aCF +mYW +aCF +esY +yaG +iLw +iLw +jbk +sfj +jbk +iLw +jbk +jbk +pPO +dQK +wyu +jDU +sSF +cOD +cOD +cOD +cOD +vLp +cOD +cOD +cOD +cOD +cOD +sSF +sSF +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(84,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +cFC +fEP +siU +eTf +sJK +sRh +fpg +yhk +bVk +pgL +aKC +aAd +xgN +sLV +qau +jjF +lDq +sLV +sLV +aAd +sLV +pLj +sFg +sFg +yii +izi +qCy +heE +vci +dtB +grS +mvN +cOD +cOD +cOD +cOD +vLp +cOD +cOD +cOD +cOD +cOD +enk +prL +clp +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(85,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +cFC +cFC +cFC +jLj +foJ +bLl +cXS +lwJ +fzA +nAp +lGl +djP +dWx +imr +dtn +djP +mim +bBi +udx +djP +eVX +imr +eVX +djP +eVX +muv +isw +uUm +hWq +vPc +gjN +xLx +oWj +xVx +cOD +cOD +cOD +cOD +vLp +cOD +cOD +cOD +cOD +cOD +wOg +gOn +okT +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(86,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +cFC +cFC +nSO +cFC +kLx +wPV +jNR +gCb +gCb +gCb +gCb +gCb +gCb +gCb +iLw +jbk +sfj +jbk +iLw +jbk +sfj +jbk +iLw +iLw +jbk +sfj +jbk +iLw +jbk +jbk +pWP +tDQ +dpy +jeX +oZX +cOD +cOD +cOD +cOD +vLp +cOD +cOD +cOD +cOD +cOD +sSF +sSF +aYi +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(87,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +cFC +pBM +sLp +cFC +lWb +lpJ +xgF +gCb +gvc +gvc +gvc +gvc +gvc +gCb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +pPO +pPO +qFL +won +xVx +cOD +cOD +cOD +cOD +vLp +cOD +cOD +cOD +cOD +cOD +xVx +sBb +aYi +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(88,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +hoQ +rXP +gAD +sgb +qGr +oJV +trJ +gCb +gvc +gvc +gvc +gvc +gvc +gCb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +rMU +iYW +oWj +dfb +cOD +cOD +cOD +cOD +vLp +cOD +cOD +cOD +cOD +cOD +dfb +sBb +aYi +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(89,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +hoQ +iUe +qOd +bhC +bUR +eUh +qRA +gCb +gvc +gvc +gvc +gvc +gvc +gCb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +dFq +iYW +gdJ +xVx +cOD +cOD +cOD +cOD +vLp +cOD +cOD +cOD +cOD +cOD +xVx +sBb +aYi +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(90,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +hmc +hmc +hmc +hmc +cFC +dSM +kvn +bhC +dET +nur +qRA +gCb +gvc +gvc +gvc +gvc +gvc +gCb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +rMU +iYW +jvK +oZX +xVx +pyj +uLP +mEt +lEa +xVx +mEt +oPZ +pyj +xVx +oZX +eMf +jJO +rkh +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(91,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +sBb +sBb +sBb +sBb +srn +cLp +sLp +mty +bhC +tWq +xkj +xkj +gCb +gvc +gvc +gvc +gvc +gvc +gCb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +pPO +ehf +jsy +cNG +hTP +bTU +eVk +ygl +ubq +oup +eaX +eMf +gTh +nod +gXY +blU +sKy +rkh +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(92,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +qbU +sBb +rlB +rlB +rlB +rlB +rlB +rlB +uyg +pzK +qll +gCb +gCb +kyA +gxe +vKq +gCb +gCb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +pPO +rmP +xGI +cNG +oqm +bID +thN +uVA +hlV +sKC +bAw +klr +buZ +xoH +iIy +gMO +hCn +eMf +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(93,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +eOZ +abG +hJt +eOZ +rlB +gOZ +vNB +rnJ +rlB +ifn +hdD +kaM +dWg +faq +qCD +gZa +rrK +lRQ +wPs +xxD +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +mxN +jIT +oQQ +gtF +lcF +ePk +bHm +pty +pKD +uRr +uSW +oVB +mLL +xcF +rBN +cmP +xaX +eMf +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(94,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +eOZ +vEQ +bYj +dfx +tWa +cEH +jcK +tLg +mkK +fON +ifn +oLQ +vxN +wJx +vLv +jcb +mGM +ykH +asM +qll +rbn +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +rMU +iYW +lyD +uSL +wRE +iVE +pfA +tGx +iQi +chK +fGj +eMf +pVR +orU +qbt +sNy +xzM +rkh +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(95,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +mAs +ibR +drT +vWU +lyr +qSH +tvU +pyb +pyb +rlB +rlB +veA +veA +veA +veA +veA +cWp +nPA +cWp +iTL +xxD +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +pPO +pPO +vHY +tws +cDA +cDA +cDA +cDA +kYR +aLp +kYR +kYR +kYR +eMf +tdB +klr +rkh +rkh +rkh +hoo +rtS +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(96,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +bsy +uso +juR +srN +tWa +sOB +pyb +pyb +rIC +uKR +epV +ydx +xNb +ycV +fee +veA +bHC +wuB +cxz +hyf +hyf +ddU +ddU +ddU +ddU +sBb +sBb +sBb +sBb +sBb +sBb +sBb +ddU +ddU +ddU +ddU +ddU +rMU +bOZ +uBS +frL +cDA +xvn +pjt +xvn +kYR +gWu +pHu +ucJ +kYR +gGy +kLp +doF +dFJ +sBb +sBb +hoo +rtS +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(97,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +mAs +oqQ +buh +wED +tWa +wsg +uMb +csM +dGb +jRh +lCM +nKY +wpx +cMy +wIb +fcm +gNY +ljE +iUc +shJ +ddU +ddU +ddU +ddU +ddU +sBb +sBb +sBb +sBb +sBb +sBb +sBb +ddU +ddU +ddU +ddU +ddU +dFq +fqz +iYW +nWo +cDA +adF +drJ +yka +kYR +iFF +xRp +gAT +kYR +bGW +mhy +cTy +dFJ +sBb +sBb +yhA +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(98,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +mno +eCu +eCu +eCu +eCu +eCu +dHp +kRo +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +eOZ +tNX +oyx +bGl +tWa +wsg +uMb +dpF +tvF +fTE +lCM +gcy +mrM +xmR +rDn +fcm +uEi +gNs +geQ +cCA +ddU +ddU +ddU +mVy +mVy +mVy +mVy +mVy +sBb +sBb +sBb +sBb +sBb +sBb +ddU +ddU +ddU +rMU +mXm +jIT +pFn +cDA +rCU +juO +nfY +kYR +lua +vAR +qjt +kYR +qOQ +mhy +aZU +dFJ +sBb +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(99,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +bFA +jlu +efC +gGW +efC +jlu +tKs +kRo +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +eOZ +tWa +dlr +ovY +tWa +sHr +uMb +uNB +mvl +vUp +epV +cEm +pWd +cMo +kKS +veA +dip +gNs +bja +cCA +ddU +ddU +ddU +mVy +xao +mya +wfn +mVy +sBb +sBb +sBb +sBb +sBb +sBb +ddU +ddU +ddU +pPO +pPO +otQ +wpd +cDA +cDA +eaD +iLV +kYR +aLp +rcQ +ppi +kYR +hKS +ebq +wtK +dFJ +dFJ +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(100,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +sBb +sBb +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +bFA +efC +oHb +suE +oHb +efC +tKs +kRo +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +gae +vnD +rLO +rRh +oao +xYH +wZi +uNB +uYN +lkS +epV +lCM +bto +hcl +veA +veA +pPc +agc +bja +shJ +ddU +ddU +ddU +mVy +bni +mya +gOo +vjy +vjy +sIY +fLJ +sIY +vjy +vjy +ddU +ddU +ddU +sBb +rMU +jIT +juh +tzq +xdj +rev +okQ +qMB +lqR +rev +oXF +htm +byD +mRZ +kBZ +rSN +qtM +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +sBb +sBb +sBb +ddU +ddU +sBb +sBb +sBb +sBb +ddU +sBb +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(101,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +sBb +sBb +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +bFA +efC +nXr +uxm +hYk +efC +tKs +kRo +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +jLK +nFr +hbT +fTe +iqE +mpg +kmH +uNB +vQm +xjg +emy +tuO +qPr +xNv +bNp +qcZ +vMa +qeZ +oxI +gTr +gTr +gTr +gTr +mVy +ciZ +tek +oVF +dmP +vJA +xTX +twl +jeP +swA +wlm +ddU +ddU +ddU +sBb +tWb +iYW +imI +pJV +kMa +aql +rYU +vtY +aUo +aql +sxk +iGD +mWG +qxv +aur +yjT +qtM +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +sBb +sBb +sBb +ddU +ddU +sBb +sBb +sBb +sBb +ddU +sBb +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(102,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +sBb +sBb +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +bFA +efC +asc +uxm +qlH +efC +tKs +kRo +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +cqp +xpQ +tNl +riA +tXh +tmR +aFQ +hix +xxb +sEo +tov +bQu +hOa +wXr +trl +iBF +vqg +lky +bTj +mzO +gTr +iPO +uBB +mya +bii +jJz +vne +dmP +asT +eDj +fiY +fiY +nkv +ghC +sBb +sBb +sBb +sBb +pPO +ePG +fdJ +cCD +cCD +aOo +cdu +fya +jDZ +oCU +bHs +vXG +vXG +uNR +gaZ +aMD +dFJ +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +sBb +sBb +sBb +ddU +ddU +sBb +sBb +sBb +sBb +ddU +sBb +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(103,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +sBb +sBb +sBb +sBb +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +bFA +wss +ahf +uxm +qlH +wss +hBB +kRo +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +jLK +riA +riA +riA +tXh +sdt +nfp +vFj +mcW +jID +crz +nph +iJf +byB +lEV +obD +cVj +kJF +hfJ +mzO +lZz +sZD +biM +mya +bFn +bMW +gUA +dmP +qBr +xTY +iPq +fiY +oAJ +wlm +sBb +sBb +sBb +sBb +pPO +qbj +ikV +cCD +szD +tJz +pkV +fya +eSs +eOH +tPR +vXG +jfF +mIP +oSD +aMD +sBb +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(104,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +sBb +sBb +sBb +sBb +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +bFA +efC +nsL +uxm +jjp +szd +cRp +kRo +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +gae +tXh +naq +tXh +uMb +svX +aFQ +hix +jnl +lUB +tov +mln +fJC +aBW +jZn +iBF +vMa +gNs +hfJ +mzO +gTr +wJp +tUZ +mya +mya +bIW +mya +dmP +kew +mAe +pqi +ctc +aSg +vjy +lnd +kst +kst +lnd +bow +iYW +qNP +cCD +lQR +csN +guA +fya +sgq +tgO +eaQ +vXG +xYW +vft +mHW +aMD +sBb +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(105,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +sBb +sBb +sBb +sBb +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +bFA +efC +fom +uxm +pwt +szd +cRp +kRo +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +gae +rLU +fOa +anO +tXh +eNg +arD +uNB +pee +nPy +txz +fEs +ljs +mIW +lSg +qcZ +vMa +qeZ +vHl +gTr +gTr +hkH +meJ +mjy +ofN +lod +ofR +dmP +wdQ +cNV +iqh +sYT +iMk +vjy +ciU +eIH +kkr +dYD +kbx +qzY +ovn +cCD +aPH +isJ +aPH +fya +cpQ +uiu +ymd +vXG +xgD +nmx +xgD +aMD +sBb +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(106,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +aVw +aVw +aVw +aVw +aVw +sBb +sBb +sBb +sBb +sBb +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +bFA +wss +jcR +uxm +xmu +wss +hBB +kRo +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +gae +rNi +rNi +rNi +tXh +fWi +aFQ +uNB +kVQ +iPd +qcZ +nBQ +bCu +hix +qcZ +cPi +vMa +qeZ +rLs +doE +bPV +tZh +xMi +ecx +dUn +jtm +ofR +dmP +iJy +hgN +cqr +hgN +hgN +vjy +iyT +sfy +ozu +iyT +lom +pCh +lom +qzp +qzp +qzp +qzp +tUW +vPg +tUW +tUW +aMD +aMD +aMD +aMD +aMD +sBb +sBb +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(107,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +aVw +aVw +aVw +aVw +aVw +sBb +sBb +sBb +sBb +sBb +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +bFA +efC +aQF +uxm +iVq +efC +tKs +kRo +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +jLK +thx +thx +rNi +gsH +sAj +jQG +uNB +hix +gXm +unJ +qfz +iJK +cJv +unJ +xPi +lMp +qeZ +oxI +wUq +xmO +oeC +cxL +xld +ijM +jtm +iPC +fCF +iSx +uYI +lod +iPC +ugP +mjy +ffk +izk +pnE +lnd +biN +gNq +fIt +biN +gWt +wPj +xvb +dWt +mHD +ipM +vFa +nen +sUL +sBb +sBb +sBb +sBb +sBb +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(108,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +aVw +aVw +aVw +aVw +aVw +sBb +sBb +sBb +sBb +sBb +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +bFA +efC +lHl +gux +bdk +efC +tKs +kRo +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +mxn +lei +wze +fBM +gNx +bvZ +hwK +qzb +oNS +aGs +unJ +eRj +mex +lFX +eSn +ger +uEi +gNs +jQL +fOO +wFd +gQD +ncp +mDw +fWv +xlP +gQv +pNj +jNx +dDQ +xfa +kGU +bRN +ryF +ffk +mFb +kbg +lnd +mrb +fau +iCT +kvN +hSf +dGS +mbu +sjJ +klG +dGp +vAV +xUN +sUL +sBb +sBb +sBb +sBb +sBb +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(109,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +aVw +aVw +aVw +aVw +aVw +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +bFA +efC +uBV +uBV +uBV +efC +tKs +kRo +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +jLK +gYa +xmF +tiP +tBq +rJn +sTH +dHZ +pEY +qGX +jen +unL +yjJ +kie +szO +xYB +wgF +wiC +wGt +ckn +cvd +dkR +jJA +chM +nXI +scv +ftN +onW +jNx +msr +xlP +msr +kOt +mjy +nWW +nWW +nWW +nWW +lMj +gdk +imJ +fAL +rvm +sUL +sUL +sUL +iVV +sUL +ayR +lRy +sUL +sBb +sBb +sBb +sBb +sBb +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(110,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +aVw +aVw +aVw +aVw +aVw +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +sBb +bFA +iFt +cgR +cgR +cgR +qmT +tKs +kRo +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +gae +aqf +rNi +huz +oTF +hlZ +wvX +lFB +oNS +pgm +unJ +iCo +lOs +lSZ +eSn +ger +uEi +kiA +gRK +qsb +pmL +vIp +lho +alB +xLu +uPM +dSt +xaE +vXZ +qxd +ubW +bqC +pNl +mjy +qsp +vBb +bHc +nWW +hlR +mRL +dki +lMj +uAz +mJi +mJi +rEx +nQy +uAz +uAz +aJH +sUL +sBb +sBb +sBb +sBb +sBb +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(111,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +aVw +aVw +aVw +aVw +aVw +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +sBb +qmH +hdh +hdh +hdh +hdh +hdh +puU +kRo +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +gae +owZ +erx +dGD +eVA +cgA +eJZ +mjQ +teq +rou +unJ +pga +dCF +hOE +unJ +olA +bqn +xiG +fFK +mrX +gdX +pLc +jfz +iKn +pYO +krl +mJz +mjy +mjy +wyG +bUg +pMU +mjy +mjy +dgv +mtd +ifT +nWW +xWa +mRL +mWt +lGq +uAz +xKh +rFi +hUl +qiU +bKi +uAz +tnX +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +ddU +ddU +sBb +sBb +sBb +sBb +ddU +sBb +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(112,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +aVw +aVw +aVw +aVw +aVw +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +tJU +tJU +vuX +bwE +bwE +atC +jeO +mjQ +bTI +hbX +twZ +teq +nsX +pBS +twZ +jpG +tGw +uMZ +bja +gUe +wPv +tRr +rZV +ecx +rgI +nuG +jDc +mjy +sFT +sFT +sFT +sFT +sFT +mjy +gdY +sTF +gdY +nWW +qop +eQJ +dYt +nDg +moK +sSs +xdz +cgE +dph +tUU +bOH +tnX +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +ddU +ddU +sBb +sBb +sBb +sBb +ddU +sBb +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(113,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +aVw +aVw +aVw +aVw +aVw +ddU +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +eAk +bOC +pFH +gsa +ydg +vem +oie +jhW +ids +iet +mFK +hjX +icL +ykT +vnM +twZ +vMa +jFI +mNA +mjy +ecx +mDw +ecx +ecx +flb +mSo +aiC +mjy +sFT +sFT +sFT +sFT +sFT +mjy +fXF +ezy +fct +nWW +cMh +adk +fto +dKS +vIJ +rFi +rFi +jkQ +yaW +prj +bOH +tnX +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +sBb +sBb +sBb +ddU +ddU +sBb +sBb +sBb +sBb +ddU +sBb +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(114,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +aVw +aVw +aVw +aVw +aVw +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +qXg +nue +mJF +mKt +ehY +vGD +nFG +wXy +dvr +hQe +cvn +xFM +qvT +azH +lpi +lUb +vMa +cQa +bja +bEX +hcz +tzG +ipD +ezx +bal +fOL +uZi +mjy +sFT +sFT +sFT +sFT +sFT +mjy +jHa +tlW +jTE +nWW +wZZ +mRL +dki +idl +uAz +uIm +jsV +mKo +iZO +xnC +uAz +tnX +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(115,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +aVw +aVw +aVw +aVw +aVw +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +eAk +rKg +tUG +pcD +gxI +sQK +xNH +uEj +afs +hQe +qvT +dxp +gZn +xqr +vcd +ctz +lMp +cQa +sNs +lCN +oDS +nFM +aDT +pmW +pvE +nbC +fFT +mjy +sFT +sFT +sFT +sFT +sFT +mjy +lyL +qVL +uao +nWW +lMj +mRL +biH +kHe +jKV +jKV +jKV +jKV +iOg +jKV +jKV +tnX +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(116,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +aVw +aVw +aVw +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +tJU +tJU +cUU +oEP +aMw +oDX +ihn +mjQ +qPF +hso +emq +iOC +hXB +nGI +bzc +twZ +tRq +erQ +tRq +mjy +jaC +gFT +gFT +mDw +hZc +jQf +wnL +mjy +sFT +sFT +sFT +sFT +sFT +mjy +kzF +fnp +wym +nWW +lMj +dLh +uiT +tsE +hEv +goT +rXY +jUn +sDi +tcI +jKV +tnX +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(117,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +tJU +aKr +aKr +aKr +tJU +tJU +twZ +djl +fNZ +djl +twZ +djl +fNZ +djl +twZ +rvR +aDu +rvR +mjy +tWk +cnN +tWk +mjy +tWk +cnN +tWk +mjy +mjy +mjy +mjy +mjy +mjy +mjy +nWW +nWW +tJt +nWW +nWW +mRL +mWt +hWl +hEv +lPK +olt +vPF +wiz +rXY +lwx +tnX +sBb +sBb +sBb +sBb +sBb +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(118,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +aVw +aVw +aVw +aVw +aVw +aVw +aVw +aVw +aVw +aVw +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +lIs +lIs +uwO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +udq +fVK +oUA +jpK +kox +usA +uwO +uwO +uwO +uwO +uwO +uwO +uwO +lIs +nWW +xQF +rwU +lkG +tiM +ees +hNy +ejL +syP +nWW +ghl +dYt +lFZ +mfo +prt +vmu +usw +hwX +rXY +lwx +tnX +sBb +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(119,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +aVw +aVw +aVw +aVw +aVw +aVw +aVw +aVw +aVw +aVw +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +lIs +lIs +uwO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +tNH +fWH +pkT +maE +kos +vdW +uwO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +nWW +nWW +uWr +aeT +iRn +tjd +mNj +qvN +xRE +nWW +dyo +izE +jbO +dcu +ljt +akK +cwa +wvP +tlr +jKV +tnX +sBb +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(120,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +aVw +aVw +aVw +aVw +aVw +aVw +aVw +aVw +aVw +aVw +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +lIs +uwO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +xzd +hXU +pos +qRF +usA +uwO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +nWW +rCD +aMp +nlh +iaD +oVf +iaD +jmm +nWW +ala +uGi +kHe +bKf +htw +bKf +bKf +uAI +kGh +kny +tnX +sBb +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(121,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +aVw +aVw +aVw +aVw +aVw +aVw +aVw +aVw +aVw +aVw +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +usO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +xzd +jaR +maE +qRF +usA +uwO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +xpe +pmw +mMW +nlh +vzj +rvI +juo +vtV +xVv +gar +jhC +bpV +uey +qbi +ciK +cWE +esH +uyV +kny +tnX +sBb +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(122,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +sBb +sBb +sBb +eMs +eMs +eMs +eMs +eMs +eMs +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +del +uwO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +xzd +jaR +gpz +qRF +usA +uwO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +qst +wzS +wzS +sjE +sjk +rII +jKk +hlU +pSN +vuh +dYt +nFo +jaZ +ooy +cwu +hRN +jKS +mMX +kny +jux +xUr +nEq +sBb +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(123,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +sBb +sBb +jzd +kxz +kzO +kxz +lHE +qJK +rGd +qJK +eMs +psx +psx +psx +psx +eMs +hWm +hWm +iVl +buf +buf +iVl +hWm +hWm +hWm +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +usO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +xzd +jaR +gpz +hZx +usA +uwO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +uDG +iaD +iaD +jIo +ifR +hXM +dvv +dvW +aPW +mRL +mKY +dKS +fEe +gMS +fFt +uPW +tFr +ycO +uAw +sBb +sBb +tnX +sBb +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(124,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +sBb +sBb +sBb +jzd +cKM +ykY +bWp +mce +iRT +vzd +tOU +eMs +psx +psx +psx +psx +eMs +ahD +ahD +ahD +ahD +ahD +ahD +ahD +ahD +nfV +nfV +uXL +sVb +uXL +nfV +nfV +sBb +sBb +sBb +sBb +sBb +lIs +uwO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +xzd +jaR +gpz +qRF +usA +uwO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +nWW +nWW +nWW +lqt +nWW +nWW +nWW +nWW +pNQ +jvl +bXv +sgd +sip +pph +cjU +pfM +rGS +rUW +gMC +sBb +sBb +tnX +sBb +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(125,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +sBb +bFk +sBb +jzd +hjD +bgQ +vNl +mce +xMa +wZz +unC +eMs +psx +psx +psx +psx +eMs +ahD +ahD +ahD +ahD +ahD +ahD +ahD +ahD +nfV +iIc +did +vHB +szT +dTW +nfV +sBb +sBb +sBb +sBb +sBb +lIs +uwO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +xzd +jaR +maE +qRF +usA +uwO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +qrc +hkh +tOQ +xIu +dMo +xzL +nVz +aOX +nVz +vhP +dki +oXY +fEe +boW +wfL +iTA +rGS +sxG +uAw +sBb +sBb +tnX +sBb +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(126,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +aVw +aVw +aVw +aVw +aVw +aVw +aVw +aVw +aVw +aVw +aVw +aVw +ddU +ddU +ddU +ddU +ddU +ddU +sBb +eMs +wuI +hZu +jzd +gIn +cOb +oOd +mce +hat +wxh +nRY +eMs +psx +psx +psx +psx +eMs +ahD +ahD +ahD +ahD +ahD +ahD +ahD +ahD +lkU +gWC +jtQ +vln +pqW +kgY +oJF +sBb +sBb +sBb +sBb +sBb +usO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +xzd +jaR +fFn +qqT +usA +uwO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +daf +qqQ +mKi +ixn +sGc +ogh +gNu +jEz +gNu +upN +cIX +jsF +fEe +sHz +sMI +gzl +kBk +sod +kny +sBb +sBb +tnX +sBb +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(127,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +aVw +aVw +aVw +aVw +aVw +aVw +aVw +aVw +aVw +aVw +aVw +aVw +aVw +aVw +aVw +ddU +ddU +ddU +ddU +ddU +ddU +ddU +eMs +eMs +erq +jSI +jJQ +jsY +rcv +jsY +mce +avw +djZ +avw +ycN +eMs +bic +roC +eMs +eMs +ahD +ahD +ahD +ahD +ahD +ahD +ahD +ahD +uMG +msb +rmw +aqD +cjj +oNM +jua +sBb +sBb +sBb +sBb +sBb +del +uwO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +xzd +jaR +nwd +usH +uwi +uwO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +aUu +hzb +wXM +gBf +xDt +cht +eRA +eRA +tOG +yfQ +rIO +hYK +hYK +hYK +hYK +hYK +jXJ +hYK +lEj +lEj +sBb +tnX +sBb +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(128,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +aVw +aVw +aVw +aVw +aVw +aVw +aVw +aVw +aVw +aVw +aVw +aVw +aVw +aVw +aVw +aVw +ddU +ddU +ddU +ddU +ddU +ddU +ddU +eSz +jCJ +kYa +wVS +nBG +jzU +pmn +ktV +gud +jhN +dYd +aad +hCO +xFe +edr +lct +cfT +hlD +ahD +ahD +ahD +ahD +ahD +ahD +ahD +ahD +lkU +iAb +pzI +wrl +pqW +rbN +oJF +sBb +sBb +sBb +sBb +sBb +usO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +xzd +kpn +nyo +qRF +usA +uwO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +atE +lPp +mxR +dGa +fVr +eSa +tix +oKZ +nzR +mRL +ohQ +hYK +dPI +waj +kNE +gGr +pIC +khp +ige +lEj +sBb +tnX +sBb +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(129,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +aVw +aVw +aVw +aVw +aVw +aVw +aVw +aVw +aVw +aVw +aVw +aVw +aVw +aVw +aVw +aVw +aVw +ddU +ddU +ddU +ddU +ddU +ddU +bAh +lrP +jjg +fDM +guV +oHK +rcW +rcW +uVg +hrt +gYO +kaN +srf +saC +eFH +ikv +ubE +jWd +ahD +ahD +ahD +ahD +ahD +ahD +ahD +ahD +nfV +bCz +qUo +bop +rDC +sOk +nfV +sBb +sBb +sBb +sBb +sBb +lIs +uwO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +xzd +jaR +maE +qRF +usA +uwO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +eRA +gwh +mKi +qaw +leV +xHL +mwp +pim +lMj +mRL +dki +hYK +wDY +uUt +uUt +uUt +siw +uUt +mJs +ths +sBb +tnX +sBb +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(130,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +aVw +aVw +aVw +aVw +aVw +aVw +aVw +aVw +aVw +aVw +aVw +aVw +aVw +aVw +aVw +aVw +aVw +ddU +ddU +ddU +ddU +ddU +ddU +eMs +eGT +oBl +rEL +cVS +mMC +pYY +pYY +qcH +lkp +qcH +qcH +qcH +xDN +vSt +fDq +cFz +qfg +ahD +ahD +ahD +ahD +ahD +ahD +ahD +ahD +nfV +nfV +lkU +rJW +jzs +oqy +nfV +sBb +sBb +sBb +sBb +sBb +lIs +uwO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +xzd +jaR +gpz +qRF +usA +uwO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +eRA +sJA +oks +niC +xDt +mKi +srw +bQX +lMj +jgu +pBd +ibd +xcE +uUt +uUt +qgK +xwU +uUt +uUt +uyM +sBb +tnX +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(131,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +aVw +aVw +aVw +aVw +aVw +aVw +aVw +aVw +aVw +aVw +aVw +aVw +aVw +aVw +aVw +aVw +aVw +ddU +ddU +ddU +ddU +ddU +ddU +hkz +jEt +tzd +igY +igY +igY +igY +igY +qcH +sGF +ygI +kjV +iPj +kAw +smR +ikv +eDh +jWd +ahD +ahD +ahD +ahD +ahD +ahD +ahD +ahD +ycG +fbe +qjc +iRy +xfz +fxA +dFl +sBb +sBb +sBb +sBb +sBb +usO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +xzd +yki +gpz +qRF +usA +uwO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +yeY +xBu +mKi +kUc +lOf +oks +tfI +eRA +xwn +gZO +mWt +eua +wrI +xjN +uYt +uYt +rKk +xjN +uUt +ths +sBb +tnX +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +sBb +sBb +sBb +ddU +ddU +ddU +ddU +gEU +gEU +gEU +gEU +gEU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(132,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +aVw +aVw +aVw +aVw +aVw +aVw +aVw +aVw +aVw +aVw +aVw +aVw +aVw +aVw +aVw +aVw +ddU +ddU +ddU +ddU +ddU +ddU +ddU +hkz +sZL +qKP +igY +lkP +aks +mEG +vvW +qcH +kxK +ues +dlA +qcL +pBB +iLi +eLZ +lhj +cVS +ahD +ahD +ahD +ahD +ahD +ahD +ahD +ahD +ycG +tUS +nnh +jYc +jmQ +qvm +dFl +sBb +sBb +rfP +tlG +tlG +ePE +uwO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +xzd +jaR +gpz +qRF +usA +uwO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +aUu +wYQ +cDW +ccB +vfL +vHm +eLU +dmy +oXY +oAv +udE +kki +xSp +xjO +iQy +suc +tvG +tvW +vLq +lEj +sBb +tnX +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +sBb +sBb +sBb +sBb +ddU +ddU +gEU +gEU +gEU +gEU +mvm +gEU +gEU +gEU +gEU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(133,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +aVw +aVw +aVw +aVw +aVw +aVw +aVw +aVw +aVw +aVw +aVw +aVw +aVw +aVw +aVw +ddU +ddU +ddU +ddU +ddU +ddU +ddU +hkz +slG +kuE +rDf +nad +jFv +jzz +mms +qcH +qcH +lQB +qwW +eWY +kAw +cKD +lqX +vyf +nqo +rJi +caY +caY +caY +caY +caY +caY +qLR +gcQ +ugm +qHC +xnA +wyP +aVK +gNo +nUo +nUo +gNo +wtg +nrJ +usO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +xzd +jaR +maE +qRF +usA +uwO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +sru +tAV +mKi +nOp +oVJ +xHL +cAf +jVB +oXY +ksz +hAN +eua +uUt +xjN +vLi +fNz +wad +xjN +uUt +ths +sBb +tnX +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +sBb +sBb +sBb +sBb +ddU +gEU +gEU +gEU +gEU +tla +tla +tla +gEU +gEU +gEU +gEU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(134,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +aVw +aVw +aVw +aVw +aVw +aVw +aVw +aVw +aVw +aVw +aVw +aVw +ddU +ddU +ddU +ddU +ddU +ddU +hkz +gWG +xpt +hFv +uMq +slR +hWW +uUX +xBw +igY +uoM +uoM +uoM +uoM +oga +fEp +jxX +mIp +uSM +kRm +wkH +bZx +kRm +cpk +kRm +cpk +jMe +bBz +tkc +aEh +nHk +prq +cII +gcc +mOK +gNo +wLt +vXi +lIs +uwO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +xzd +jaR +oyC +mwc +usA +uwO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +eRA +bWg +nmG +nmG +eXV +mKi +dNq +bQX +lMj +kzK +qIh +eua +uUt +uUt +fAu +uUt +siw +uUt +uUt +foD +sBb +tnX +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +sBb +sBb +sBb +sBb +gEU +gEU +gEU +nDY +fUJ +gbJ +rIU +gbJ +fUJ +kOE +gEU +gEU +gEU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(135,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +hkz +jEt +wAT +igY +hkg +hFv +igY +igY +igY +igY +akZ +mCl +sfI +iuQ +ufN +rpB +guq +aRn +sfK +jQk +mGQ +lMF +jQk +nNt +jQk +wzs +epI +vOc +jGy +bmi +kob +gKP +wbL +xoe +lCy +gNo +tfO +dyz +lIs +lIs +uwO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +erp +xJA +gJr +qcX +hYU +lki +uwO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +lIs +eRA +eRA +mqX +mqX +eRA +mhc +voo +qrc +iPp +udK +mZt +hYK +xvi +sGK +hyC +uUt +svd +sGK +pYh +ths +sBb +tnX +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +uWM +wwd +wwd +wwd +wwd +hXf +uEI +ewW +scw +giR +iai +npz +giR +iai +unh +bfk +gEU +gEU +gEU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(136,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +hkz +dhc +hsp +xkl +uhQ +vdo +hFv +giU +fpf +igY +uvz +yjm +fnz +jnI +xRB +sDD +oTv +hlD +sYd +aAo +cBN +bGz +aNK +gLr +gLr +xvK +gLr +gLr +lOl +fCe +hBh +dcv +gcQ +kvf +nei +gNo +qQg +gAu +aTg +lIs +lIs +uwO +uwO +uwO +uwO +uwO +uwO +uwO +xzd +ayM +czT +maE +czT +hua +uwO +uwO +uwO +uwO +uwO +uwO +uwO +uwO +lIs +lIs +wJL +eRA +oAp +oAp +eRA +vGN +hFI +eRA +kHe +wLM +xUl +lEj +eUJ +eSC +cyU +gpA +wGL +pEv +wlU +lEj +sBb +tnX +rtS +ddU +ddU +ddU +ddU +ddU +ddU +hmc +ddU +ddU +ddU +iEj +qQt +iEj +iEj +iEj +iEj +gEU +vOi +scw +giR +fOc +sCn +uEC +jbK +fOc +qKU +blx +atF +gEU +gEU +gEU +gEU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(137,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +hFv +syk +dmb +mFk +rft +fvB +ufi +rHg +knJ +igY +tNg +liG +lbU +iuQ +jLt +kQR +pYb +tLL +mdo +mdo +iue +xpF +nbm +gLr +xAk +pHn +dGi +vyZ +fWf +fWf +fWf +fWf +fWf +eOT +mZx +lYY +gOK +erC +aTg +gmx +mCA +mCA +pJK +kSP +pJK +mCA +pJK +fhs +pJK +mCA +ptl +cNN +ptl +mCA +pJK +kSP +pJK +mCA +pJK +fhs +pJK +mCA +mCA +ncP +rTf +eRA +mqX +mqX +tOG +eMY +eMY +pNg +lom +ePK +xZH +fpm +lEj +lEj +fke +eeH +kPb +lEj +lEj +lEj +fGY +tnX +qzI +hmc +hmc +hmc +hmc +hmc +iXX +ueC +iEj +iEj +iEj +iEj +hhP +eJm +bVy +eJm +xgY +gEU +mjt +nmd +jvB +fOc +sCn +uEC +jbK +fOc +sCn +fXT +wqW +gEU +dOC +mJt +gEU +gEU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(138,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +rDf +avU +sCl +iDD +ouq +ntf +hFv +tMd +kVU +igY +ryO +ndO +hMg +uoM +ssg +mDj +kzq +ssg +jBh +jBh +jBh +ows +jBh +jBh +kRF +tWB +tuI +cHC +hsx +qbV +sOQ +rOp +cAN +fzI +rwZ +phU +rmT +gwq +dHO +wlB +pML +gmX +wkn +dWd +feu +oUW +feu +fJF +feu +iRC +kby +lvx +etV +poa +xYF +clG +uSB +uSB +uSB +jlZ +syR +iSF +cKe +cKe +cKe +kCl +dVt +dVt +cAb +hFP +xpk +ksR +xpX +nfG +hzm +iHM +uyh +anD +mXT +xkk +nVf +qIA +gGJ +uPo +xwO +izh +twS +twS +twS +twS +tPi +pkd +pKO +jAh +pYB +gGP +daW +vBB +mKm +pXG +eJm +eJm +iEj +nHy +bQa +iYk +wxR +xNW +xNW +aRl +xNW +xNW +anU +qKE +cco +iya +bwO +jvB +bVq +gEU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(139,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +vgn +mqi +jyM +jHw +nmz +tqs +igY +igY +igY +igY +lNV +qLx +mPp +uoM +dBq +kZO +ulG +vTu +jBh +jLM +vXN +wSf +aMh +jBh +iaS +jTF +thB +vyZ +bfL +hDC +vBg +xDK +bLI +rWd +gMa +rWd +izK +vHc +gMa +gMa +gMa +kQH +izK +kPE +gMa +pBN +gMa +oxx +vHc +rWd +rWd +dAV +ivO +lAn +ekz +ivO +oQG +oQG +oQG +ivO +dvZ +ivO +oQG +oQG +oQG +ivO +vEs +kvk +iPf +hWK +xYF +jxd +cNj +ozo +lox +ghO +xJT +nvt +pES +xZo +oaE +jal +hPp +jkj +meP +bzZ +jGf +hSp +hSp +hSp +aVd +kqe +oot +gEy +sxb +clw +rMG +pYT +edw +sgQ +eJm +eJm +iEj +pVd +lSb +dHb +gTM +xNW +qAW +sbp +pXi +xNW +fOc +sCn +ttt +iya +iUM +uPw +agj +gEU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(140,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +hFv +qes +sCl +fsK +epj +oBU +hFv +giU +fpf +hkz +wCi +sPZ +wCi +cbC +fMD +gxg +hON +oVt +jBh +oqD +mCN +vKv +iJk +jYZ +paD +qUt +hrj +vyZ +svO +qEj +exZ +qpB +cAN +req +xce +heZ +mkX +gHg +req +eXC +xYF +ewE +fVL +req +req +req +aGK +noG +sEN +rAY +oLz +oLz +oLz +poM +scB +noG +cxe +cxe +cxe +cxe +xDU +piX +kto +kto +kto +kto +gVf +kto +fyW +qrM +emo +ksR +lWT +xXJ +chG +sVO +vnz +sVO +mHY +rzL +dvC +sVO +bHE +uHy +sVO +sny +qil +yhA +yhA +yhA +yhA +yhA +sDX +yfF +xgY +pJa +pJa +iEj +rry +djH +eJm +eJm +iEj +tnW +vSR +dts +epW +xNW +xNW +eHn +xNW +xNW +rpD +hOs +jsU +iya +pNA +nuC +qNo +gEU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(141,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +hkz +vGw +cuz +fvB +kTM +fvB +ufi +rHg +knJ +hkz +sBb +sBb +sBb +sBb +fMD +fMD +eCT +spA +jBh +uFq +fLc +jOT +gqZ +jBh +fZa +qDT +bFF +ccL +bQC +kMZ +aoa +hIH +wAE +qQS +eVF +ryB +eVF +tOZ +qQS +plo +adG +fxU +lPP +ggd +jmb +ggd +mSX +ozf +ggd +bxR +lux +lux +lux +wvI +hMf +wIt +nUP +nUP +fAz +ggd +hWE +jRF +rcC +hWE +hWE +hWE +uUo +xYs +rhd +xYs +uUo +xaJ +acO +vLh +aSx +tjE +tBJ +tsY +qqx +poV +qAY +otF +rci +rsP +uEd +bOv +rtS +ddU +ddU +ddU +ddU +ddU +ddU +yhA +ddU +ddU +ddU +iEj +fXx +eJm +gfy +eJm +wcW +gEU +uMh +npe +nuC +fOc +sCn +fNA +jbK +fOc +sCn +gHx +cyO +gEU +sRX +kPa +gEU +gEU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(142,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +hkz +hkz +gRD +jit +asG +dGB +wnB +swj +kVU +hkz +sBb +sBb +sBb +sBb +sBb +fMD +fMD +fMD +fek +fek +fIl +jBh +vGY +jBh +oZZ +lVK +hYs +vyZ +pOo +jfm +xyc +ohH +wRj +njA +fYo +rbM +sEp +xxC +nGv +dWN +poa +ahF +pJK +pJK +mCA +mCA +xJX +vmh +mCA +mCA +oGF +fVX +old +cRg +mqZ +jQN +fKa +jQN +mRM +hWE +hWE +wLy +omq +lEM +frs +hWE +twi +oOe +vMF +iJF +kvc +uUo +iJP +gyI +jnN +lYR +aji +jnN +gbB +arQ +hKs +gbB +xqK +cjz +hDY +bOv +oQK +hmc +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +iEj +dpL +iEj +iEj +iEj +iEj +gEU +lnL +vIV +uTa +fOc +sCn +fNA +jbK +fOc +pyc +cfR +mLM +gEU +gEU +gEU +gEU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(143,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +hkz +hkz +hFv +yge +hFv +hkz +suH +hkz +hkz +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +fek +oOV +jBh +ezu +pYl +kqE +kqE +kqE +kqE +kqE +wRj +wRj +wRj +wRj +sdJ +qcG +hPK +ubn +ubn +ubn +dWN +pWG +ygv +eTe +jyY +mCA +lMh +lMh +lMh +lMh +mCA +uln +esP +xyd +dKp +xtn +xtn +xtn +xtn +xtn +xxz +wjs +bdv +aVH +woW +hWE +hWE +tHP +poz +qEX +bhk +ubX +uUo +fcv +mYm +otw +gRv +wEr +gDb +hFM +hee +gRP +vaw +aBj +vjd +esi +bOv +hoo +hoo +rtS +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +dtl +uxX +uxX +uxX +uxX +ujF +xVm +snx +vIV +uTa +xJS +wvW +uTa +xJS +rcq +dMJ +gEU +gEU +gEU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(144,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +oyg +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +pYl +pYl +pYl +pYl +pYl +pYl +bGU +iCn +tSg +odf +kgo +tRO +fwq +ozM +iSV +mVg +veI +wCt +ubn +ubn +ubn +gqX +tbh +lVP +eTe +jyY +mCA +lMh +lMh +lMh +lMh +mCA +xHg +ijK +iQk +oyp +xtn +xtn +xtn +xtn +xtn +iNZ +irB +ebW +ixp +mhw +dWs +hWE +gKO +njp +ono +grT +iTk +uUo +vXu +jmM +aGA +hOD +cWd +ccR +sVO +wgx +hYY +cQO +qyn +sFQ +sFQ +xuv +sFQ +hoo +rtS +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +sBb +sBb +sBb +sBb +gEU +gEU +gEU +xgT +sVz +wHk +fAt +wHk +oSa +eEh +gEU +gEU +gEU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(145,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +sBb +sBb +sBb +viM +viM +viM +viM +viM +pYl +pYl +pYl +pYl +pYl +pYl +mTF +vhk +wXY +wTa +sQv +uwX +cUZ +mIq +lop +rgZ +opg +tRO +ubn +ubn +ubn +tvz +bmp +tsZ +wEv +mRr +hGI +lMh +lMh +lMh +lMh +mCA +tir +ijt +eSt +oyp +xtn +xtn +xtn +xtn +xtn +iNZ +lyT +xsx +hQX +cSu +etu +hWE +kiW +poz +qlK +fbr +vPY +uUo +ngf +wWB +mVo +wWB +czP +wWB +sVO +qKJ +qVn +hxq +hWD +uBI +jpB +qWi +skQ +hoo +rtS +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +sBb +sBb +sBb +sBb +ddU +gEU +gEU +gEU +gEU +tla +tla +tla +gEU +gEU +gEU +gEU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(146,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +dWP +srn +srn +viM +viM +viM +viM +viM +ehU +pYl +mOg +nBy +sWT +sJY +pYl +qgo +qUl +xHG +slj +sOy +esb +jqI +koH +fYp +fYQ +oEy +jIY +ubn +ubn +ubn +rLX +lcv +qQS +qQS +gib +mCA +lMh +lMh +lMh +lMh +mCA +uWn +jqR +inP +dKp +xtn +xtn +xtn +xtn +xtn +uZC +rSS +eCE +sUl +dBZ +gVY +hWE +gKO +poz +bYY +kgB +eJA +uUo +tzt +fQt +jbc +csC +xIo +fQt +sVO +dDD +jYR +ggq +xkW +sFQ +mfN +pMV +skQ +hoo +rtS +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +sBb +sBb +sBb +sBb +ddU +ddU +gEU +gEU +gEU +gEU +cOH +gEU +gEU +gEU +gEU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(147,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +dWP +srn +viM +viM +viM +axq +rqw +jFx +iFh +hBF +oMt +msc +oMt +wFU +xti +pOw +tUx +mFj +plZ +wpR +tRO +hQL +dwN +kgz +vws +hFV +cVu +ubn +ubn +ubn +npn +eum +wEo +wEo +bHi +mCA +mCA +mCA +mCA +mCA +mCA +lRd +rCp +dKp +cRg +fCT +iTu +iTu +iTu +oAn +hWE +iVC +lso +yaZ +hDL +oJw +hWE +gFF +gFF +cUV +gFF +vEE +uUo +sVO +sVO +sVO +sVO +sVO +sVO +sVO +sVO +xLO +sVO +sVO +sFQ +lfg +sFQ +sFQ +hoo +rtS +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +sBb +sBb +sBb +ddU +ddU +ddU +ddU +gEU +gEU +gEU +gEU +gEU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(148,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +dWP +srn +viM +viM +kcE +lNc +lyO +dkm +jGc +qPi +oMt +pQR +rPg +uGe +pYl +dpv +xsF +tew +hxj +hZz +tRO +nru +oWq +eGB +izo +guE +bDD +nno +nno +nno +nKU +mFW +fKw +tSm +mhI +mhI +iBx +cRg +wGH +oQm +kqP +dUQ +evo +lbt +tZt +fAS +rip +fAS +rip +bga +tZt +qaq +hwo +eJO +qyD +nvp +vkK +fvz +jpI +tzj +dQB +kaq +uVZ +rQJ +jBr +eRm +wxp +sBb +sBb +sBb +sBb +dUH +sBb +sBb +sFQ +sFQ +sFQ +hoo +hoo +rtS +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(149,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +dWP +pwG +viM +viM +juW +her +bpv +vvM +wGm +qXD +mQH +hEQ +ozI +szp +piL +lqJ +eFg +tvk +wTL +ufc +mrz +fZB +uSY +ufh +dVQ +iPI +apn +oFy +seV +ryk +bKn +agC +xrf +sBi +muw +mhI +raX +cRg +eyg +lqQ +nYj +fxm +mne +mOF +eeA +tPG +mFZ +ydH +xjH +qvf +mqI +qMd +sKX +ykr +oDv +rKf +kuD +npA +nyi +oFU +pEO +boV +dWJ +eZL +cFa +tAs +wxp +sBb +sBb +sBb +yhA +wiF +sDX +hoo +hoo +hoo +hoo +hoo +qil +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(150,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +dWP +srn +viM +viM +wXv +her +gSr +qZp +viM +rZp +cbE +fLs +oyL +dxY +vcB +beO +wYt +nrr +iAq +pRp +xou +dvg +pGE +tWv +xQu +uXj +ddE +tMZ +uzg +fVf +cNP +vHA +tuF +ahV +mhv +mhI +bHi +cRg +cRg +iUT +dzQ +iKe +bwn +eHO +hkL +hkL +hGx +nLJ +dmm +acQ +xVg +xVg +lmq +mkF +xVg +lmq +vsP +lmq +xVg +lmq +vsP +lmq +xVg +ojB +mxs +gmZ +mfs +sBb +ddU +ddU +ddU +wxY +ddU +yhA +yhA +yhA +yhA +yhA +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(151,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +dWP +srn +viM +viM +bAt +rkN +nYK +xaT +jSw +noL +oMt +dlj +gRQ +jms +pYl +fDm +fDm +cfH +suD +fDm +qYO +fDm +cfH +kYz +gDY +fDm +fDm +ydp +nuK +pEQ +wXI +fIy +fsY +sNV +uQN +lzm +dlk +bko +fzP +fzP +hkL +oOy +hkL +eHO +xCW +xCW +hkL +gef +gPP +fVU +lmq +ptO +gBK +gBK +pIq +wnk +frn +frn +frn +frn +frn +frn +frn +ojB +cBH +vXX +gyv +sBb +hmc +sBb +sBb +dUH +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(152,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +dWP +srn +viM +viM +viM +wDb +sSq +bXP +dFx +rPw +oMt +nnF +oMt +sWI +pYl +pYl +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +fDm +fDm +wTx +gyp +xGr +fDm +fDm +fDm +fDm +fDm +fDm +gdH +bmR +fzP +aNs +hyA +duL +dmV +duL +cYN +hkL +kao +aPo +fVU +vsP +isE +hUe +xmP +pZB +wnk +frn +frn +frn +frn +frn +frn +frn +lJD +vgR +vgR +kFf +sBb +hoo +sBb +sBb +dUH +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(153,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +dWP +srn +srn +viM +viM +viM +viM +viM +bxE +pYl +axb +lcq +fra +vfC +pYl +pYl +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +fHd +hgK +wdL +gvR +fDm +jso +jso +jso +jso +fDm +rEp +bmR +bTE +mRp +iby +rhk +rxx +uOA +inn +eHO +geq +cZQ +gvm +lmq +xOO +rBs +hSs +qby +wnk +frn +frn +frn +frn +frn +frn +frn +sua +sBb +sBb +sBb +sBb +yhA +sBb +sBb +dUH +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(154,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +prY +srn +srn +viM +viM +viM +viM +viM +pYl +pYl +pYl +pYl +pYl +pYl +pYl +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +pXz +jlL +wiR +aSo +amK +jso +jso +jso +jso +fDm +fHn +eHO +fzP +fpv +vOL +flA +sIO +xTr +qAS +gKb +vhv +fVP +eZa +xVg +hle +gHu +tEZ +nUb +wnk +frn +frn +frn +frn +frn +frn +frn +lJD +sBb +sBb +sBb +sBb +ddU +sBb +sBb +dUH +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(155,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +prY +srn +srn +srn +srn +srn +srn +pYl +pYl +pYl +pYl +pYl +pYl +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +pXz +pZu +cyj +nbw +dST +jso +jso +jso +jso +fDm +bvI +aDS +fzP +fGl +weT +wXf +uvM +juM +nuq +oSS +cIu +cZQ +veF +lmq +tzF +cfz +osR +osR +frn +frn +frn +frn +frn +frn +frn +frn +ojB +sBb +sBb +sBb +sBb +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(156,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +yhA +yhA +yhA +yhA +prY +srn +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +gbs +nKq +gBc +sPt +fDm +jso +jso +jso +jso +fDm +rEp +cim +fzP +geK +eFe +eHO +utm +vJk +utm +utm +uZq +gzF +veF +vsP +axl +xUQ +fUB +fUB +frn +frn +frn +frn +frn +frn +frn +frn +lJD +sBb +sBb +sBb +sBb +hmc +sBb +sBb +dUH +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(157,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +yhA +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +cTr +uFX +pdf +lAM +fDm +fDm +fDm +fDm +fDm +fDm +uEx +cbr +dLD +utm +utm +utm +haR +mhN +mDL +utm +erV +lrc +hlh +lmq +tzF +mrU +iFg +mrU +wnk +frn +frn +frn +frn +frn +frn +frn +sua +sBb +sBb +sBb +sBb +hoo +sBb +sBb +dUH +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(158,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +kUD +kUD +sVx +aGM +eMr +upv +hBe +pXw +sGX +upv +kqH +gMd +piT +dLD +iGj +fhQ +lWj +aYP +kOm +ixx +utm +pxx +tsl +fdP +mkc +lrq +epM +mkc +mrU +wnk +frn +frn +frn +frn +frn +frn +frn +lJD +sBb +sBb +sBb +sBb +yhA +sBb +sBb +dUH +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(159,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +uKq +xIG +xUc +jlY +cPs +faF +mth +hpz +noa +jPR +kqH +gMd +bjr +dLD +utm +utm +rES +nXm +lVV +tNt +iqB +ckU +ofr +epM +nGk +dqZ +xtQ +epM +mrU +wnk +frn +frn +frn +frn +frn +frn +frn +ojB +sBb +sBb +sBb +sBb +ddU +sBb +sBb +dUH +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(160,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +gnO +qvp +olJ +bES +iGv +upv +ark +bFV +nkm +mFa +kqH +gMd +gqJ +dLD +uzk +qgu +lWj +wGG +bpj +mgS +utm +pLQ +qtv +byE +tTX +eOo +dtd +epM +mrU +wnk +frn +frn +frn +frn +frn +frn +frn +lJD +sBb +sBb +sBb +sBb +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(161,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +uPL +tWT +rQD +rYR +snd +wSJ +sBb +sBb +uND +pKC +hWR +hAZ +qXc +qXc +qXc +uVR +qXc +ghW +mFa +lys +lys +kjd +kjd +kjd +kjd +kjd +kjd +kjd +eUC +gaM +fXe +mkc +bsG +kFY +pXb +epM +mrU +wnk +frn +frn +frn +xVg +frn +frn +frn +lJD +sBb +sBb +sBb +sBb +hmc +sBb +sBb +dUH +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(162,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +wSJ +gCH +ctr +cqy +dMc +wSJ +wSJ +wSJ +wSJ +oDD +wNI +pXt +qXc +nQN +sQe +eQB +mVx +xuz +sBb +sBb +sBb +kjd +lNK +lNK +lNK +lNK +lNK +kjd +rDq +kao +din +mkc +jyL +blF +cZG +epM +mrU +wnk +frn +frn +frn +frn +frn +frn +frn +ojB +sBb +sBb +sBb +sBb +hoo +sBb +sBb +dUH +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(163,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +sBb +sBb +sBb +sBb +sBb +sBb +wSJ +wSJ +wSJ +xmL +kfW +nHR +sPE +fCJ +rhR +xui +sGg +gCg +nMg +qio +wBB +iIF +ciX +wsI +qJa +hFF +sBb +sBb +sBb +kjd +lNK +lNK +lNK +lNK +lNK +wyh +wPt +hXu +uxn +mkc +mkc +vad +epM +wGP +mrU +wnk +frn +frn +frn +frn +frn +frn +frn +lJD +sBb +sBb +sBb +sBb +yhA +sBb +sBb +dUH +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(164,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +sBb +sBb +sBb +sBb +sBb +sBb +wSJ +tlg +oDD +imi +qGp +qRK +mLp +xiU +jTe +tjD +oQx +ydE +sXx +wuu +qXc +cVQ +vtM +oww +ghW +xwr +sBb +sBb +sBb +kjd +lNK +lNK +lNK +lNK +lNK +mbL +eOr +vWR +vKX +mcr +lmq +mrU +mrU +mrU +mrU +wnk +frn +frn +frn +frn +frn +frn +frn +sua +sBb +sBb +sBb +sBb +ddU +sBb +sBb +dUH +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(165,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +sBb +sBb +sBb +sBb +wSJ +wSJ +wSJ +tet +oDD +ase +big +cEl +vFV +oDD +oDD +oDD +oDD +oDD +rLD +wNc +lAM +lAM +lAM +lAM +kUD +sBb +sBb +sBb +sBb +kjd +lNK +lNK +lNK +lNK +lNK +ctd +fYv +xcg +cZQ +veF +vsP +nDb +cfz +osR +osR +frn +frn +frn +frn +frn +frn +frn +frn +lJD +sBb +sBb +sBb +sBb +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(166,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +sBb +sBb +sBb +sBb +wSJ +uII +sYf +poc +oDD +xOs +suX +otm +nwP +fkz +tGN +lWe +xai +wSN +vhB +xAM +xLg +iMF +hap +aNp +kUD +sBb +sBb +sBb +sBb +kjd +lNK +lNK +lNK +lNK +lNK +kjd +rDq +gaM +cZQ +veF +lmq +mrU +wnk +frn +frn +frn +frn +frn +frn +frn +frn +frn +frn +ojB +sBb +sBb +sBb +sBb +hmc +sBb +sBb +dUH +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(167,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +sBb +sBb +sBb +sBb +wSJ +dSh +rZS +oWN +qpE +xdM +jXS +eza +ujs +ujj +hPd +kiS +sjc +eQg +fhY +huC +lAM +iRU +srz +smV +kUD +sBb +sBb +sBb +sBb +kjd +kjd +kjd +kjd +kjd +kjd +kjd +bQS +bWG +cZQ +bgY +xVg +pUx +wnk +frn +frn +frn +frn +frn +frn +frn +frn +frn +frn +lJD +sBb +sBb +sBb +sBb +hoo +sBb +sBb +dUH +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(168,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +sBb +sBb +sBb +sBb +wSJ +oDD +oDD +oDD +oDD +jGI +jlQ +khS +wXQ +oDD +oDD +oDD +oDD +oDD +aAk +hTe +lAM +lAM +lAM +lAM +kUD +sBb +sBb +sBb +sBb +pmc +wOZ +uyK +ebp +uSc +wPt +wPt +wPt +bzP +ogc +veF +lmq +mrU +wnk +frn +frn +frn +frn +frn +frn +frn +frn +frn +frn +sua +sBb +sBb +sBb +sBb +yhA +sBb +sBb +dUH +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(169,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +sBb +sBb +sBb +sBb +wSJ +ljg +uBG +fbv +fgN +pjk +rBG +nUl +czC +cfl +tGN +uoJ +xai +cyN +vhB +xAM +nJj +iMF +hap +mLF +kUD +sBb +sBb +sBb +sBb +pmc +rPi +uug +qRn +dbI +ycz +xUT +aUF +hnb +bzL +hlh +vsP +mrU +wnk +frn +frn +frn +frn +frn +frn +frn +frn +frn +frn +lJD +sBb +sBb +sBb +sBb +ddU +sBb +sBb +dUH +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(170,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +sBb +sBb +sBb +sBb +wSJ +fcn +qYq +vTy +jqQ +kzw +aqR +ouX +uen +ujj +hPd +kiS +sjc +eQg +bRL +kHR +lAM +iRU +srz +qrW +kUD +sBb +sBb +sBb +sBb +pmc +pmc +oJW +bpb +pmc +lyz +cDL +lyz +kjd +bhp +rDq +lmq +mrU +wnk +frn +frn +frn +frn +frn +frn +frn +frn +frn +ojB +ojB +sBb +sBb +sBb +sBb +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(171,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +sBb +sBb +sBb +sBb +wSJ +pUj +kuY +dwW +eis +jyd +tdY +tXQ +ihS +oDD +oDD +oDD +oDD +oDD +gZo +iDK +liY +kUD +kUD +kUD +kUD +sBb +sBb +sBb +sBb +sBb +pmc +bUM +bUM +pmc +sBb +sBb +sBb +kjd +lyz +lyz +ojB +igo +vDC +igo +ojB +igo +vDC +igo +ojB +igo +vDC +igo +ojB +sBb +sBb +sBb +sBb +sBb +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(172,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +sBb +sBb +ddU +wSJ +aki +reO +auR +fgN +mlD +vnU +buT +mNe +vdu +gGa +tnb +sek +uUW +cMv +eOn +bpf +wMP +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +dWP +hoo +rtS +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(173,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +sBb +sBb +ddU +wSJ +tWT +qFA +tAW +wSJ +eta +nst +rpY +lDE +hZe +eWj +lOc +nPI +agI +ozR +iwI +rbU +uND +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +hmc +sBb +sBb +sBb +sBb +hmc +sBb +sBb +sBb +sBb +hmc +sBb +sBb +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(174,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +sBb +sBb +ddU +ddU +ddU +ddU +ddU +uPL +tWT +rQD +jCs +snd +wSJ +wSJ +wSJ +wSJ +kUD +tXx +vlZ +kUD +cTr +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +hoo +sBb +sBb +sBb +sBb +hoo +sBb +sBb +sBb +sBb +hoo +sBb +sBb +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(175,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +sBb +sBb +sBb +yhA +sBb +sBb +sBb +sBb +yhA +sBb +sBb +sBb +sBb +yhA +sBb +sBb +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(176,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +sBb +sBb +sBb +sBb +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +sBb +sBb +sBb +ddU +sBb +sBb +sBb +sBb +ddU +sBb +sBb +sBb +sBb +ddU +sBb +sBb +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(177,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +sBb +sBb +sBb +sBb +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +sBb +sBb +sBb +ddU +sBb +sBb +sBb +sBb +ddU +sBb +sBb +sBb +sBb +ddU +sBb +sBb +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(178,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +sBb +sBb +sBb +rtS +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(179,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +sBb +sBb +sBb +rtS +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(180,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +sBb +sBb +sBb +rtS +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(181,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +sBb +sBb +sBb +rtS +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(182,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +sBb +sBb +sBb +rtS +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(183,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +sBb +sBb +sBb +rtS +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(184,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +sBb +sBb +sBb +rtS +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(185,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +sBb +sBb +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(186,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +sBb +sBb +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(187,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +sBb +sBb +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(188,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +kaF +kaF +joP +lYQ +lYQ +joP +kaF +kaF +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(189,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +joP +njg +njg +njg +njg +njg +njg +joP +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(190,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +lYQ +njg +njg +njg +njg +njg +njg +lYQ +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(191,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +joP +njg +nZe +jjB +jjB +jjB +jjB +joP +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(192,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +kaF +dNg +gTO +fww +bUh +jjY +xVs +kaF +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(193,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +sBb +sBb +tUc +tUc +tUc +wJe +bba +vNc +qkI +vNc +sij +bsk +dOD +dOD +bsk +sBb +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(194,1,1) = {" +bou +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +dUH +dUH +dUH +dUH +kjE +kcN +ftk +lVk +wgn +vsO +tQH +cNy +xuq +tGL +quR +eeI +dHm +dUH +dUH +dUH +dUH +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +wxY +bou +"} +(195,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +sBb +sBb +sBb +sIU +qDn +oIk +haq +pSZ +fUk +wNT +itI +jcf +bup +btZ +mkS +bsk +sBb +sBb +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(196,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +sBb +sBb +sBb +tUc +wlg +pDF +tUc +uDX +vKS +pRi +xng +twF +bsk +bsk +bsk +bsk +sBb +sBb +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(197,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +sBb +sBb +sBb +sIU +jmW +fGd +sIU +vNu +epb +uwA +epb +uHb +vNc +sBb +sBb +sBb +sBb +sBb +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(198,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +sBb +sBb +sBb +sBb +sIU +xva +qhE +sIU +dwc +evK +iIE +fSH +tDf +vNc +sBb +sBb +sBb +sBb +sBb +sBb +sBb +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(199,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +aTJ +wJF +aTJ +aTJ +tUc +tUc +cPM +wJe +anQ +oOD +anQ +oOD +anQ +grI +aTJ +aTJ +aTJ +aTJ +aTJ +vNj +aTJ +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(200,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +aTJ +fkm +iZK +eqb +eqb +dSr +eqb +oTw +eqb +eqb +eqb +eqb +eqb +oTw +eqb +noj +eqb +eqb +xVf +fkm +aTJ +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(201,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +aTJ +iEe +iEe +iEe +iEe +iEe +gdP +aJd +uiq +iEe +iEe +iEe +gdP +aJd +uiq +iEe +iEe +iEe +iEe +iEe +aTJ +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(202,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +aTJ +hPv +hPv +hPv +hPv +hPv +vYK +aJd +riP +hPv +hPv +hPv +vYK +aJd +riP +hPv +hPv +hPv +hPv +hPv +aTJ +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(203,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +aTJ +hPv +hPv +hPv +hPv +hPv +vYK +aJd +sFW +fxw +fxw +fxw +anj +aJd +riP +hPv +hPv +hPv +hPv +hPv +aTJ +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(204,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +aTJ +hPv +hPv +hPv +hPv +hPv +vYK +aJd +aJd +aJd +aJd +aJd +aJd +aJd +riP +hPv +hPv +hPv +hPv +hPv +aTJ +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(205,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +aTJ +hPv +hPv +hPv +hPv +hPv +vYK +aJd +aTJ +keB +keB +keB +aTJ +aJd +riP +hPv +hPv +hPv +hPv +hPv +aTJ +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(206,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +aTJ +hPv +hPv +hPv +hPv +hPv +vYK +aJd +mMz +hPv +hPv +hPv +mMz +aJd +riP +hPv +hPv +hPv +hPv +hPv +aTJ +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(207,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +aTJ +aTJ +hPv +hPv +mPV +hPv +vYK +iKZ +mMz +hPv +hPv +hPv +mMz +iKZ +riP +hPv +mPV +hPv +hPv +aTJ +aTJ +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(208,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +aTJ +aTJ +aTJ +tBu +tBu +tBu +aTJ +aTJ +hPv +hPv +hPv +aTJ +aTJ +tBu +tBu +tBu +aTJ +aTJ +aTJ +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(209,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +aTJ +aTJ +aTJ +aTJ +aTJ +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(210,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(211,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(212,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(213,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(214,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(215,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(216,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(217,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(218,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(219,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(220,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(221,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(222,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(223,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(224,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(225,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(226,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(227,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(228,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(229,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(230,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(231,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(232,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(233,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(234,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(235,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(236,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(237,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(238,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(239,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(240,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(241,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(242,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(243,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(244,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(245,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(246,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(247,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(248,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(249,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(250,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(251,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(252,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(253,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(254,1,1) = {" +bou +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +wxY +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +ddU +bou +"} +(255,1,1) = {" +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +bou +"} diff --git a/maps/cynosure/cynosure-4.dmm b/maps/cynosure/cynosure-4.dmm new file mode 100644 index 0000000000..0f67278d5c --- /dev/null +++ b/maps/cynosure/cynosure-4.dmm @@ -0,0 +1,70791 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ag" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet{ + dir = 1; + pixel_y = 30 + }, +/turf/simulated/floor/tiled, +/area/tcommsat/cynosure/computer) +"ar" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/turf/simulated/floor/plating, +/area/tcommsat/cynosure) +"au" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/tcommsat/cynosure/teleporter) +"ax" = ( +/obj/effect/floor_decal/techfloor{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/techfloor, +/area/tcommsat/cynosure/foyer) +"aH" = ( +/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/tiled/dark{ + nitrogen = 100; + oxygen = 0; + temperature = 73 + }, +/area/tcommsat/cynosure/chamber) +"aQ" = ( +/obj/structure/lattice, +/obj/structure/grille, +/turf/space, +/area/space) +"aX" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/cable{ + 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/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/tcommsat/cynosure) +"bh" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/tcommsat/cynosure/teleporter) +"bk" = ( +/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/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/tcommsat/cynosure/teleporter) +"bm" = ( +/turf/simulated/wall/r_wall, +/area/tcommsat/cynosure/teleporter) +"bn" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/telecomms/server/presets/engineering, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark{ + nitrogen = 100; + oxygen = 0; + temperature = 73 + }, +/area/tcommsat/cynosure/chamber) +"br" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/telecomms/relay/preset/cynosure/gnd, +/turf/simulated/floor/tiled/dark{ + nitrogen = 100; + oxygen = 0; + temperature = 73 + }, +/area/tcommsat/cynosure/chamber) +"bI" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/tcommsat/cynosure) +"cb" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/lattice, +/turf/space, +/area/tcommsat/cynosure) +"cj" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/tcommsat/cynosure) +"cm" = ( +/obj/random/maintenance/research, +/obj/random/contraband, +/obj/random/crate, +/obj/random/maintenance/medical, +/turf/simulated/floor/plating, +/area/tcommsat/cynosure/lounge) +"cr" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 9 + }, +/obj/item/weapon/cell, +/turf/simulated/floor/tiled/techmaint, +/area/tcommsat/cynosure/teleporter) +"cw" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/manifold/hidden, +/obj/effect/floor_decal/rust, +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "tcomdock_airlock_inner"; + locked = 1; + name = "Internal Access" + }, +/obj/machinery/access_button/airlock_interior{ + dir = 8; + master_tag = "tcomdock_airlock"; + pixel_y = -35; + req_one_access = list(13) + }, +/obj/effect/map_helper/airlock/door/int_door, +/turf/simulated/floor/tiled/techfloor, +/area/tcommsat/cynosure/entrance) +"cB" = ( +/obj/structure/lattice, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/space, +/area/tcommsat/cynosure) +"cE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/tcommsat/cynosure/powercontrol) +"cF" = ( +/obj/structure/window/reinforced, +/turf/space, +/area/tcommsat/cynosure) +"cH" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/telecomms/server/presets/command, +/turf/simulated/floor/tiled/dark{ + nitrogen = 100; + oxygen = 0; + temperature = 73 + }, +/area/tcommsat/cynosure/chamber) +"cM" = ( +/obj/item/weapon/camera_assembly, +/turf/simulated/floor/tiled/techmaint, +/area/tcommsat/cynosure/teleporter) +"cN" = ( +/turf/simulated/floor/tiled/techmaint, +/area/tcommsat/cynosure/teleporter) +"cO" = ( +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/solar, +/turf/simulated/floor/airless{ + icon_state = "solarpanel" + }, +/area/tcommsat/cynosure) +"cR" = ( +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/airless, +/area/tcommsat/cynosure) +"cV" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/tcommsat/cynosure/teleporter) +"da" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only, +/turf/simulated/floor/tiled/steel_grid, +/area/tcommsat/cynosure/entrance) +"de" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 9 + }, +/obj/effect/floor_decal/rust/part_rusted3, +/turf/simulated/floor/tiled, +/area/tcommsat/cynosure/entrance) +"dr" = ( +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/solar, +/turf/simulated/floor/airless{ + icon_state = "solarpanel" + }, +/area/tcommsat/cynosure) +"ds" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor, +/obj/machinery/turretid/lethal{ + ailock = 1; + check_synth = 1; + control_area = "\improper Telecoms Satellite"; + desc = "A firewall prevents AIs from interacting with this device."; + name = "Telecoms lethal turret control"; + pixel_y = 24; + req_access = list(61) + }, +/obj/machinery/camera/network/telecom{ + c_tag = "Tcoms - Foyer" + }, +/turf/simulated/floor/tiled/techfloor, +/area/tcommsat/cynosure/foyer) +"dt" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Telecomms Solar Control"; + req_access = null; + req_one_access = list(61) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/tcommsat/cynosure/powercontrol) +"dE" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/tcommsat/cynosure) +"dI" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "telecoms_inner"; + locked = 1; + name = "External Access"; + req_access = list(13) + }, +/obj/machinery/access_button/airlock_interior{ + dir = 4; + master_tag = "telecoms_airlock"; + pixel_y = -24; + req_one_access = list(13) + }, +/obj/effect/map_helper/airlock/door/int_door, +/turf/simulated/floor/plating, +/area/tcommsat/cynosure/powercontrol) +"dN" = ( +/obj/structure/lattice, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/space, +/area/tcommsat/cynosure) +"dS" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark{ + nitrogen = 100; + oxygen = 0; + temperature = 73 + }, +/area/tcommsat/cynosure/chamber) +"eh" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/floor_decal/rust/mono_rusted3, +/turf/simulated/floor/tiled/monotile, +/area/tcommsat/cynosure/entrance) +"eF" = ( +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/airless, +/area/tcommsat/cynosure) +"eK" = ( +/obj/structure/frame, +/turf/simulated/floor/tiled/techmaint, +/area/tcommsat/cynosure/teleporter) +"eT" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/airless, +/area/tcommsat/cynosure) +"fg" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/tcommsat/cynosure) +"fh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/tiled/old_tile/gray, +/area/tcommsat/cynosure/storage) +"fi" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/techmaint, +/area/tcommsat/cynosure/teleporter) +"fj" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/airless, +/area/tcommsat/cynosure) +"ft" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/space, +/area/tcommsat/cynosure) +"fv" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tcommsat/cynosure/entrance) +"fH" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/green/bordercorner, +/obj/effect/floor_decal/rust/part_rusted1, +/obj/effect/floor_decal/rust/steel_decals_rusted1{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tcommsat/cynosure/lounge) +"fR" = ( +/obj/structure/sign/warning/high_voltage, +/turf/simulated/wall/r_wall, +/area/tcommsat/cynosure/chamber) +"fU" = ( +/obj/machinery/atmospherics/unary/freezer{ + set_temperature = 73; + use_power = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled, +/area/tcommsat/cynosure/computer) +"gf" = ( +/turf/simulated/floor/tiled, +/area/tcommsat/cynosure/entrance) +"go" = ( +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/airless, +/area/tcommsat/cynosure) +"gH" = ( +/obj/effect/floor_decal/rust/part_rusted2, +/obj/machinery/camera/network/telecom{ + c_tag = "Telecoms Storage" + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/tcommsat/cynosure/storage) +"gO" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/airless, +/area/tcommsat/cynosure) +"ha" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/camera/network/telecom{ + c_tag = "Tcoms - Solar Fore"; + dir = 1 + }, +/turf/simulated/floor/airless, +/area/tcommsat/cynosure) +"hu" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/space, +/area/tcommsat/cynosure) +"hv" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled, +/area/tcommsat/cynosure/teleporter) +"hx" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/airless, +/area/tcommsat/cynosure) +"hy" = ( +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/airless, +/area/tcommsat/cynosure) +"hA" = ( +/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/atmospherics/pipe/simple/hidden{ + dir = 8 + }, +/obj/effect/catwalk_plated/dark, +/obj/machinery/airlock_sensor/airlock_interior{ + dir = 4; + id_tag = "telecoms_airlock_int_sensor"; + master_tag = "telecoms_airlock"; + pixel_x = -31; + pixel_y = -35; + req_one_access = list(11,24) + }, +/obj/effect/map_helper/airlock/sensor/int_sensor, +/turf/simulated/floor/plating, +/area/tcommsat/cynosure/powercontrol) +"hB" = ( +/obj/effect/floor_decal/rust/part_rusted3{ + dir = 8 + }, +/obj/structure/table/standard, +/obj/item/weapon/stock_parts/subspace/transmitter, +/obj/item/weapon/stock_parts/subspace/transmitter{ + pixel_x = 2; + pixel_y = 2 + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/tcommsat/cynosure/storage) +"hJ" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/tcommsat/cynosure) +"hO" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tcommsat/cynosure/teleporter) +"ia" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/monotile, +/area/tcommsat/cynosure/teleporter) +"ig" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/airless, +/area/tcommsat/cynosure) +"ir" = ( +/turf/simulated/shuttle/wall, +/area/shuttle/escape_pod1/station) +"iy" = ( +/obj/effect/shuttle_landmark/cynosure/tcomms/dock, +/turf/space, +/area/space) +"iJ" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/space, +/area/tcommsat/cynosure) +"iM" = ( +/obj/structure/sign/warning/lethal_turrets, +/turf/simulated/wall/r_wall, +/area/tcommsat/cynosure/foyer) +"jn" = ( +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/tcommsat/cynosure/chamber) +"jr" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tcommsat/cynosure/teleporter) +"jw" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark{ + nitrogen = 100; + oxygen = 0; + temperature = 73 + }, +/area/tcommsat/cynosure/chamber) +"jC" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/telecomms/processor/preset_four, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark{ + nitrogen = 100; + oxygen = 0; + temperature = 73 + }, +/area/tcommsat/cynosure/chamber) +"jH" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/tcommsat/cynosure) +"jJ" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/space, +/area/tcommsat/cynosure) +"jK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 8 + }, +/obj/structure/closet/emcloset, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/tcommsat/cynosure/powercontrol) +"jL" = ( +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/airless, +/area/tcommsat/cynosure) +"jP" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -21 + }, +/obj/structure/closet/crate/nanotrasen{ + dir = 2 + }, +/obj/item/device/aicard, +/obj/item/device/multitool, +/turf/simulated/floor/tiled, +/area/tcommsat/cynosure/teleporter) +"jW" = ( +/obj/machinery/atmospherics/valve/digital/open{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 21 + }, +/turf/simulated/floor/plating, +/area/tcommsat/cynosure) +"ke" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/camera/network/telecom{ + c_tag = "Tcoms - Central Compartment Fore" + }, +/turf/simulated/floor/bluegrid{ + nitrogen = 100; + oxygen = 0; + temperature = 73 + }, +/area/tcommsat/cynosure/chamber) +"ko" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/space, +/area/tcommsat/cynosure) +"kq" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/tcommsat/cynosure) +"ku" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/space, +/area/tcommsat/cynosure) +"ky" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor/hole{ + dir = 1 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/airlock_sensor/airlock_interior{ + id_tag = null; + name = "interior sensor"; + pixel_x = -35; + pixel_y = 31 + }, +/obj/effect/map_helper/airlock/sensor/int_sensor, +/turf/simulated/floor/tiled/techfloor/grid{ + nitrogen = 100; + oxygen = 0; + temperature = 73 + }, +/area/tcommsat/cynosure/computer) +"kA" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/tcommsat/cynosure/entrance) +"kM" = ( +/obj/structure/sign/warning/server_room{ + name = "\improper TELECOMMUNICATIONS" + }, +/turf/simulated/wall/r_wall, +/area/tcommsat/cynosure/computer) +"kT" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled, +/area/tcommsat/cynosure/teleporter) +"ll" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tcommsat/cynosure/computer) +"lx" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/tcommsat/cynosure) +"lz" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/tcommsat/cynosure) +"lA" = ( +/obj/effect/floor_decal/rust/part_rusted2, +/obj/effect/floor_decal/rust/part_rusted2{ + dir = 4 + }, +/obj/structure/table/standard, +/obj/item/weapon/stock_parts/subspace/sub_filter{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/weapon/stock_parts/subspace/sub_filter{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/weapon/stock_parts/subspace/sub_filter, +/obj/item/weapon/stock_parts/subspace/sub_filter{ + pixel_x = 2; + pixel_y = -2 + }, +/obj/item/weapon/stock_parts/subspace/sub_filter{ + pixel_x = 4; + pixel_y = -4 + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/tcommsat/cynosure/storage) +"lC" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/tcommsat/cynosure) +"lG" = ( +/obj/structure/girder/reinforced, +/turf/simulated/floor/plating, +/area/tcommsat/cynosure/teleporter) +"lK" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/tcommsat/cynosure/entrance) +"lM" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/telecomms/server/presets/medical, +/turf/simulated/floor/tiled/dark{ + nitrogen = 100; + oxygen = 0; + temperature = 73 + }, +/area/tcommsat/cynosure/chamber) +"lQ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 9 + }, +/obj/item/weapon/bedsheet/green, +/obj/structure/bed/padded, +/obj/item/weapon/material/twohanded/riding_crop, +/turf/simulated/floor/tiled, +/area/tcommsat/cynosure/lounge) +"lT" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/machinery/light_switch{ + pixel_x = 12; + pixel_y = 24 + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/tcommsat/cynosure/lounge) +"lU" = ( +/obj/machinery/ai_status_display, +/turf/simulated/wall/r_wall, +/area/tcommsat/cynosure/teleporter) +"lZ" = ( +/obj/effect/shuttle_landmark/cynosure/tcomms/solars, +/turf/space, +/area/space) +"mc" = ( +/obj/structure/loot_pile/maint/technical, +/turf/simulated/floor/plating, +/area/tcommsat/cynosure/lounge) +"mj" = ( +/obj/structure/lattice, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/space, +/area/tcommsat/cynosure) +"mm" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/telecomms/bus/preset_four, +/turf/simulated/floor/tiled/dark{ + nitrogen = 100; + oxygen = 0; + temperature = 73 + }, +/area/tcommsat/cynosure/chamber) +"mu" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor, +/obj/effect/floor_decal/industrial/warning/cee{ + dir = 8 + }, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + id_tag = "server_access_airlock"; + name = "Server Access Airlock"; + pixel_y = 25 + }, +/obj/machinery/airlock_sensor{ + id_tag = "server_access_sensor"; + pixel_x = -11; + pixel_y = 25 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1379; + id_tag = "server_access_pump" + }, +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tcommsat/cynosure/computer) +"mA" = ( +/obj/structure/lattice, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/space, +/area/tcommsat/cynosure) +"mE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 6 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/machinery/light_switch{ + pixel_x = 12; + pixel_y = 24 + }, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/tcommsat/cynosure) +"mP" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/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/machinery/airlock_sensor/airlock_exterior{ + id_tag = "telecoms_airlock_ext_sensor"; + master_tag = "telecoms_airlock"; + pixel_x = 24; + pixel_y = 31 + }, +/obj/effect/map_helper/airlock/sensor/ext_sensor, +/turf/simulated/floor/airless, +/area/tcommsat/cynosure/powercontrol) +"mV" = ( +/obj/effect/floor_decal/techfloor/corner{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark{ + nitrogen = 100; + oxygen = 0; + temperature = 73 + }, +/area/tcommsat/cynosure/chamber) +"nf" = ( +/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 + }, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/shuttle/escape_pod1/station) +"np" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 10 + }, +/obj/machinery/ai_status_display, +/turf/simulated/floor/plating, +/area/tcommsat/cynosure/chamber) +"ns" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/space, +/area/tcommsat/cynosure) +"nw" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/rust/mono_rusted1, +/turf/simulated/floor/tiled/monotile, +/area/tcommsat/cynosure/teleporter) +"ny" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/floor_decal/rust/mono_rusted1, +/turf/simulated/floor/tiled/monotile, +/area/tcommsat/cynosure/teleporter) +"nR" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/hatch{ + name = "Telecomms"; + req_one_access = list(61) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/tcommsat/cynosure/lounge) +"nS" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/glass_external{ + frequency = 1380; + icon_state = "door_locked"; + id_tag = "escape_pod_1_berth_hatch"; + locked = 1; + name = "Escape Pod 1"; + req_access = list(13) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/tcommsat/cynosure/entrance) +"nU" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1; + frequency = 1379; + id_tag = "telecoms_pump" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/turf/simulated/floor/plating, +/area/tcommsat/cynosure/powercontrol) +"nV" = ( +/obj/structure/sign/warning/caution, +/turf/simulated/wall/r_wall, +/area/tcommsat/cynosure/entrance) +"oe" = ( +/turf/simulated/wall/r_wall, +/area/tcommsat/cynosure) +"oh" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/tcommsat/cynosure) +"ok" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/telecomms/bus/preset_two/cynosure, +/turf/simulated/floor/tiled/dark{ + nitrogen = 100; + oxygen = 0; + temperature = 73 + }, +/area/tcommsat/cynosure/chamber) +"on" = ( +/obj/effect/floor_decal/rust/mono_rusted3, +/turf/simulated/floor/tiled/monotile, +/area/tcommsat/cynosure/teleporter) +"oO" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/floor_decal/rust, +/obj/machinery/door/airlock/external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "tcomdock_airlock_outer"; + locked = 1; + name = "External Access" + }, +/obj/effect/map_helper/airlock/door/ext_door, +/turf/simulated/floor/tiled/techfloor, +/area/tcommsat/cynosure/entrance) +"oP" = ( +/turf/simulated/wall/r_wall, +/area/tcommsat/cynosure/foyer) +"pe" = ( +/obj/structure/cable, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -24 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -12; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/dark, +/area/tcommsat/cynosure/foyer) +"ph" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/tcommsat/cynosure/foyer) +"pj" = ( +/turf/simulated/wall/r_wall, +/area/tcommsat/cynosure/storage) +"pm" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark{ + nitrogen = 100; + oxygen = 0; + temperature = 73 + }, +/area/tcommsat/cynosure/chamber) +"po" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black, +/obj/effect/floor_decal/techfloor/corner{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor, +/area/tcommsat/cynosure/chamber) +"pq" = ( +/obj/structure/cable/yellow, +/obj/machinery/power/tracker, +/turf/simulated/floor/airless, +/area/tcommsat/cynosure) +"px" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled/techfloor, +/area/tcommsat/cynosure) +"py" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tcommsat/cynosure/teleporter) +"pO" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/space, +/area/tcommsat/cynosure) +"pP" = ( +/obj/effect/floor_decal/rust/part_rusted1{ + dir = 1 + }, +/obj/effect/floor_decal/rust/part_rusted1{ + dir = 4 + }, +/obj/structure/table/standard, +/obj/item/weapon/stock_parts/micro_laser, +/obj/item/weapon/stock_parts/manipulator{ + pixel_x = 3; + pixel_y = -4 + }, +/obj/item/weapon/stock_parts/manipulator{ + pixel_x = 2; + pixel_y = -2 + }, +/obj/item/weapon/stock_parts/manipulator{ + pixel_x = -3 + }, +/obj/item/weapon/stock_parts/manipulator{ + pixel_x = -4; + pixel_y = 3 + }, +/obj/item/weapon/stock_parts/capacitor, +/obj/item/weapon/stock_parts/micro_laser/high{ + pixel_x = 4; + pixel_y = 2 + }, +/obj/item/weapon/stock_parts/micro_laser/high{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/weapon/stock_parts/micro_laser/high{ + pixel_x = -2 + }, +/obj/item/weapon/stock_parts/micro_laser/high{ + pixel_x = -4; + pixel_y = 4 + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/tcommsat/cynosure/storage) +"pT" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/brown, +/turf/simulated/floor/tiled, +/area/tcommsat/cynosure/lounge) +"pZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black, +/obj/effect/floor_decal/techfloor/corner{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor, +/area/tcommsat/cynosure/chamber) +"qc" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/obj/machinery/camera/network/telecom{ + c_tag = "Tcoms - Lounge" + }, +/turf/simulated/floor/tiled, +/area/tcommsat/cynosure/lounge) +"qk" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/red, +/turf/simulated/floor/tiled, +/area/tcommsat/cynosure/lounge) +"qm" = ( +/obj/structure/lattice, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/space, +/area/tcommsat/cynosure) +"qt" = ( +/obj/machinery/telecomms/receiver/preset_right/cynosure, +/turf/simulated/floor/bluegrid{ + nitrogen = 100; + oxygen = 0; + temperature = 73 + }, +/area/tcommsat/cynosure/chamber) +"qI" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/tcommsat/cynosure/lounge) +"qP" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/telecomms/bus/preset_one, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark{ + nitrogen = 100; + oxygen = 0; + temperature = 73 + }, +/area/tcommsat/cynosure/chamber) +"qY" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 8 + }, +/obj/machinery/airlock_sensor/airlock_interior{ + dir = 8; + id_tag = "tcomdock_airlock_int_sensor"; + master_tag = "tcomdock_airlock"; + pixel_x = 31; + pixel_y = -24; + req_one_access = list(13) + }, +/obj/effect/map_helper/airlock/sensor/int_sensor, +/turf/simulated/floor/tiled/steel_dirty, +/area/tcommsat/cynosure/entrance) +"re" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/tcommsat/cynosure/foyer) +"rh" = ( +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-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" + }, +/turf/simulated/floor/airless, +/area/tcommsat/cynosure) +"rj" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/airlock_sensor/airlock_exterior{ + dir = 8; + id_tag = "server_access_ex_sensor"; + master_tag = "server_access_airlock"; + pixel_x = 31; + pixel_y = 35 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/obj/effect/floor_decal/rust/part_rusted3{ + dir = 1 + }, +/obj/effect/map_helper/airlock/sensor/ext_sensor, +/turf/simulated/floor/tiled, +/area/tcommsat/cynosure/computer) +"rn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/airless, +/area/tcommsat/cynosure) +"ro" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/tcommsat/cynosure) +"rr" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 9 + }, +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled, +/area/tcommsat/cynosure/computer) +"rH" = ( +/obj/structure/lattice, +/obj/structure/window/reinforced, +/obj/machinery/light{ + dir = 1 + }, +/turf/space, +/area/tcommsat/cynosure) +"rI" = ( +/turf/simulated/wall/r_wall, +/area/tcommsat/cynosure/powercontrol) +"rL" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor/border_only, +/obj/effect/floor_decal/rust/mono_rusted1, +/obj/machinery/door/airlock/hatch{ + name = "Telecomms Starboard Bridge"; + req_access = null; + req_one_access = list(61) + }, +/turf/simulated/floor/tiled/techfloor, +/area/tcommsat/cynosure/foyer) +"rR" = ( +/obj/structure/cable/yellow, +/obj/machinery/power/solar, +/turf/simulated/floor/airless{ + icon_state = "solarpanel" + }, +/area/tcommsat/cynosure) +"rY" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black, +/turf/simulated/floor/bluegrid{ + nitrogen = 100; + oxygen = 0; + temperature = 73 + }, +/area/tcommsat/cynosure/chamber) +"sa" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/floor_decal/rust/mono_rusted3, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/tcommsat/cynosure/storage) +"sh" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/tcommsat/cynosure/teleporter) +"sj" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/telecomms/relay/preset/cynosure/snd, +/turf/simulated/floor/tiled/dark{ + nitrogen = 100; + oxygen = 0; + temperature = 73 + }, +/area/tcommsat/cynosure/chamber) +"sp" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/bordercorner{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tcommsat/cynosure/entrance) +"sw" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/plating, +/area/tcommsat/cynosure/powercontrol) +"sI" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 21 + }, +/obj/effect/floor_decal/rust/part_rusted3{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tcommsat/cynosure/computer) +"sN" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/computer/telecomms/server{ + dir = 1; + network = "tcommsat" + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled, +/area/tcommsat/cynosure/computer) +"sP" = ( +/obj/effect/floor_decal/techfloor{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/effect/floor_decal/rust, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tcommsat/cynosure/entrance) +"sQ" = ( +/obj/machinery/bluespace_beacon, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/tcommsat/cynosure/teleporter) +"sZ" = ( +/obj/effect/floor_decal/techfloor/corner{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor, +/area/tcommsat/cynosure/chamber) +"ta" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/tcommsat/cynosure/foyer) +"tG" = ( +/turf/simulated/wall/r_wall, +/area/tcommsat/cynosure/lounge) +"tI" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/tcommsat/cynosure/foyer) +"tX" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/tcommsat/cynosure/powercontrol) +"tZ" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/tcommsat/cynosure) +"uf" = ( +/obj/effect/floor_decal/rust/part_rusted1{ + dir = 1 + }, +/obj/item/weapon/storage/toolbox/mechanical, +/turf/simulated/floor/tiled/old_tile/gray, +/area/tcommsat/cynosure/storage) +"ug" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/camera/network/telecom{ + c_tag = "Tcoms - Teleporter"; + dir = 5 + }, +/obj/structure/closet/malf/suits, +/turf/simulated/floor/tiled/techmaint, +/area/tcommsat/cynosure/teleporter) +"uj" = ( +/obj/structure/lattice, +/turf/space, +/area/tcommsat/cynosure) +"ut" = ( +/obj/effect/floor_decal/techfloor{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/effect/floor_decal/rust, +/obj/machinery/airlock_sensor{ + id_tag = "tcomdock_airlock_sensor"; + pixel_x = -11; + pixel_y = 25 + }, +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + frequency = 1380; + id_tag = "tcomdock_airlock"; + pixel_y = 25; + req_one_access = list(13) + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tcommsat/cynosure/entrance) +"uM" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/machinery/camera/network/telecom{ + c_tag = "Tcoms - Central Compartment Aft"; + dir = 1 + }, +/turf/simulated/floor/bluegrid{ + nitrogen = 100; + oxygen = 0; + temperature = 73 + }, +/area/tcommsat/cynosure/chamber) +"uX" = ( +/obj/machinery/telecomms/hub/preset/cynosure, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/bluegrid{ + nitrogen = 100; + oxygen = 0; + temperature = 73 + }, +/area/tcommsat/cynosure/chamber) +"vj" = ( +/turf/simulated/floor/airless, +/area/tcommsat/cynosure) +"vu" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/tcommsat/cynosure/teleporter) +"vz" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/tcommsat/cynosure) +"vB" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/camera/network/telecom{ + c_tag = "Tcoms - Solar Starboard"; + dir = 4 + }, +/turf/simulated/floor/airless, +/area/tcommsat/cynosure) +"vD" = ( +/obj/structure/cable{ + 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 = 24 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 1 + }, +/obj/machinery/camera/network/telecom{ + c_tag = "Tcoms - Main Computer Room" + }, +/turf/simulated/floor/tiled, +/area/tcommsat/cynosure/computer) +"vH" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24; + pixel_y = -12 + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/tcommsat/cynosure/teleporter) +"vI" = ( +/obj/item/stack/cable_coil{ + pixel_x = 2; + pixel_y = 2 + }, +/turf/simulated/floor/tiled/techmaint, +/area/tcommsat/cynosure/teleporter) +"vK" = ( +/obj/machinery/pda_multicaster/prebuilt, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/bluegrid{ + nitrogen = 100; + oxygen = 0; + temperature = 73 + }, +/area/tcommsat/cynosure/chamber) +"vY" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/tcommsat/cynosure) +"wh" = ( +/obj/machinery/camera/network/telecom{ + c_tag = "Tcoms - Starboard Bridge Aft"; + dir = 8 + }, +/turf/space, +/area/tcommsat/cynosure) +"wm" = ( +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24; + pixel_y = -12 + }, +/obj/machinery/power/sensor{ + long_range = 1; + name_tag = "Telecommunications" + }, +/turf/simulated/floor/plating, +/area/tcommsat/cynosure/powercontrol) +"ws" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/camera/network/telecom{ + c_tag = "Tcoms - Port Bridge Central"; + dir = 8 + }, +/turf/space, +/area/tcommsat/cynosure) +"wx" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 5 + }, +/obj/structure/filingcabinet, +/turf/simulated/floor/tiled, +/area/tcommsat/cynosure/computer) +"wz" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/tcommsat/cynosure) +"wB" = ( +/turf/simulated/floor/tiled/dark{ + nitrogen = 100; + oxygen = 0; + temperature = 73 + }, +/area/tcommsat/cynosure/chamber) +"wE" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/tcommsat/cynosure/entrance) +"xc" = ( +/obj/structure/table/standard, +/obj/item/weapon/paper_bin, +/obj/item/weapon/pen/blue{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/item/device/multitool, +/turf/simulated/floor/tiled/dark, +/area/tcommsat/cynosure/computer) +"xe" = ( +/obj/structure/cable{ + 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/industrial/warning{ + dir = 1 + }, +/obj/effect/floor_decal/rust/part_rusted2{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/tcommsat/cynosure/teleporter) +"xA" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/tcommsat/cynosure/lounge) +"xB" = ( +/turf/simulated/floor/tiled/monotile, +/area/tcommsat/cynosure/lounge) +"xN" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/telecomms/server/presets/unused, +/obj/effect/floor_decal/rust/mono_rusted3, +/turf/simulated/floor/tiled/dark{ + nitrogen = 100; + oxygen = 0; + temperature = 73 + }, +/area/tcommsat/cynosure/chamber) +"xR" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/tcommsat/cynosure/powercontrol) +"yp" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/tcommsat/cynosure/foyer) +"yr" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/telecomms/processor/preset_three, +/turf/simulated/floor/tiled/dark{ + nitrogen = 100; + oxygen = 0; + temperature = 73 + }, +/area/tcommsat/cynosure/chamber) +"yx" = ( +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/camera/network/telecom{ + c_tag = "Tcoms - Solar Aft" + }, +/turf/simulated/floor/airless, +/area/tcommsat/cynosure) +"yF" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/tcommsat/cynosure/teleporter) +"yT" = ( +/obj/effect/floor_decal/techfloor{ + dir = 9 + }, +/obj/machinery/computer/teleporter, +/turf/simulated/floor/tiled/techfloor, +/area/tcommsat/cynosure/teleporter) +"yX" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/space, +/area/tcommsat/cynosure) +"yY" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/turf/simulated/floor/tiled/monofloor{ + dir = 8 + }, +/area/tcommsat/cynosure/lounge) +"zb" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/maintenance_hatch{ + frequency = 1381; + icon_state = "door_locked"; + id_tag = "server_access_inner"; + locked = 1; + name = "Telecoms Server Access"; + req_access = list(61) + }, +/obj/machinery/access_button/airlock_interior{ + master_tag = "server_access_airlock"; + pixel_x = -24 + }, +/obj/effect/map_helper/airlock/door/int_door, +/turf/simulated/floor/tiled/techfloor, +/area/tcommsat/cynosure/computer) +"zi" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central6{ + dir = 8 + }, +/turf/simulated/floor/tiled/monofloor{ + dir = 4 + }, +/area/tcommsat/cynosure/lounge) +"zk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/industrial/warning, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/tcommsat/cynosure/lounge) +"zp" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable, +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/tcommsat/cynosure/chamber) +"zu" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor/hole{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark{ + nitrogen = 100; + oxygen = 0; + temperature = 73 + }, +/area/tcommsat/cynosure/chamber) +"zy" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/floor_decal/techfloor{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/tcommsat/cynosure) +"zG" = ( +/obj/effect/floor_decal/techfloor{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor, +/area/tcommsat/cynosure/chamber) +"zJ" = ( +/obj/effect/floor_decal/techfloor/corner{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor, +/area/tcommsat/cynosure/chamber) +"zO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black, +/turf/simulated/floor/tiled/dark{ + nitrogen = 100; + oxygen = 0; + temperature = 73 + }, +/area/tcommsat/cynosure/chamber) +"zR" = ( +/obj/structure/bed/chair/shuttle, +/obj/machinery/vending/wallmed1{ + layer = 3.3; + name = "Emergency NanoMed"; + pixel_x = -28 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 21 + }, +/turf/simulated/shuttle/floor, +/area/shuttle/escape_pod1/station) +"Ac" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/effect/floor_decal/rust/mono_rusted3, +/obj/item/device/radio/intercom{ + pixel_y = -21 + }, +/turf/simulated/floor/tiled/techmaint, +/area/tcommsat/cynosure/teleporter) +"AK" = ( +/obj/effect/floor_decal/rust/mono_rusted1, +/turf/simulated/floor/tiled/monotile, +/area/tcommsat/cynosure/lounge) +"AP" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/tcommsat/cynosure) +"AZ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/tcommsat/cynosure/lounge) +"Bc" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "server_access_outer"; + locked = 1; + name = "Telecoms Server Access"; + req_access = list(61) + }, +/obj/machinery/access_button/airlock_exterior{ + dir = 8; + master_tag = "server_access_airlock"; + pixel_y = 24 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 8 + }, +/obj/effect/map_helper/airlock/door/ext_door, +/turf/simulated/floor/tiled/techfloor, +/area/tcommsat/cynosure/computer) +"Bs" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/airless, +/area/tcommsat/cynosure) +"Bt" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/tcommsat/cynosure/teleporter) +"Bv" = ( +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/dark, +/area/tcommsat/cynosure/foyer) +"Bx" = ( +/obj/effect/floor_decal/techfloor/corner{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor, +/area/tcommsat/cynosure/chamber) +"BD" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled, +/area/tcommsat/cynosure/computer) +"BI" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/table/standard, +/obj/machinery/cell_charger, +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/tcommsat/cynosure/powercontrol) +"BO" = ( +/obj/machinery/telecomms/broadcaster/preset_right, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/bluegrid{ + nitrogen = 100; + oxygen = 0; + temperature = 73 + }, +/area/tcommsat/cynosure/chamber) +"BP" = ( +/obj/structure/lattice, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/space, +/area/tcommsat/cynosure) +"BS" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/bordercorner{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + pixel_y = -21 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/tcommsat/cynosure/lounge) +"BT" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/exonet_node{ + anchored = 1 + }, +/turf/simulated/floor/tiled/dark{ + nitrogen = 100; + oxygen = 0; + temperature = 73 + }, +/area/tcommsat/cynosure/chamber) +"Cq" = ( +/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/airless, +/area/tcommsat/cynosure) +"Cs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/monotile, +/area/tcommsat/cynosure/computer) +"Cx" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/tcommsat/cynosure/computer) +"CC" = ( +/turf/space, +/area/tcommsat/cynosure) +"CF" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/tcommsat/cynosure/foyer) +"CM" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/airless, +/area/tcommsat/cynosure) +"CQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tcommsat/cynosure/entrance) +"CU" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc/super/critical{ + dir = 1; + name = "north bump"; + pixel_y = 24 + }, +/obj/machinery/light_switch{ + pixel_x = 12; + pixel_y = 24 + }, +/turf/simulated/floor/bluegrid{ + nitrogen = 100; + oxygen = 0; + temperature = 73 + }, +/area/tcommsat/cynosure/chamber) +"De" = ( +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -24; + pixel_y = 12 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tcommsat/cynosure/entrance) +"Do" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/obj/effect/floor_decal/rust, +/obj/machinery/door/airlock/glass_external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "tcomdock_airlock_inner"; + locked = 1; + name = "Internal Access" + }, +/obj/effect/map_helper/airlock/door/int_door, +/turf/simulated/floor/tiled/techfloor, +/area/tcommsat/cynosure/entrance) +"DF" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tcommsat/cynosure/computer) +"DH" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/monofloor{ + dir = 1 + }, +/area/tcommsat/cynosure/teleporter) +"DJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/rust/mono_rusted1, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/techmaint, +/area/tcommsat/cynosure/teleporter) +"DU" = ( +/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/tiled/dark{ + nitrogen = 100; + oxygen = 0; + temperature = 73 + }, +/area/tcommsat/cynosure/chamber) +"Ec" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 5 + }, +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled, +/area/tcommsat/cynosure/entrance) +"El" = ( +/obj/effect/floor_decal/techfloor{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor, +/area/tcommsat/cynosure/chamber) +"Eq" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/tcommsat/cynosure) +"Er" = ( +/obj/structure/sign/warning/secure_area, +/turf/simulated/wall/r_wall, +/area/tcommsat/cynosure/foyer) +"EJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/tiled, +/area/tcommsat/cynosure/entrance) +"EL" = ( +/turf/simulated/shuttle/wall/no_join{ + base_state = "orange"; + icon = 'icons/turf/shuttle_orange.dmi'; + icon_state = "orange" + }, +/area/shuttle/escape_pod1/station) +"EQ" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/tcommsat/cynosure) +"ES" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/machinery/teleport/station, +/turf/simulated/floor/tiled/techfloor, +/area/tcommsat/cynosure/teleporter) +"EV" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/effect/catwalk_plated/dark, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/window/southright, +/turf/simulated/floor/plating, +/area/tcommsat/cynosure) +"Fa" = ( +/obj/structure/table/standard, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/obj/item/weapon/folder/yellow, +/obj/item/weapon/folder/yellow{ + pixel_x = 2; + pixel_y = 2 + }, +/turf/simulated/floor/tiled/dark, +/area/tcommsat/cynosure/computer) +"Fe" = ( +/obj/structure/loot_pile/maint/technical, +/turf/simulated/floor/tiled/techmaint, +/area/tcommsat/cynosure/teleporter) +"Fw" = ( +/obj/structure/lattice, +/turf/space, +/area/space) +"FJ" = ( +/obj/structure/lattice, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/light, +/turf/space, +/area/tcommsat/cynosure) +"FL" = ( +/obj/structure/lattice, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/space, +/area/tcommsat/cynosure) +"FN" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/telecomms/relay/preset/telecomms, +/turf/simulated/floor/tiled/dark{ + nitrogen = 100; + oxygen = 0; + temperature = 73 + }, +/area/tcommsat/cynosure/chamber) +"FO" = ( +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/atmospherics/pipe/manifold/hidden/black{ + dir = 8 + }, +/obj/machinery/status_display, +/turf/simulated/floor/plating, +/area/tcommsat/cynosure/chamber) +"FS" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/tcommsat/cynosure/powercontrol) +"FZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black, +/obj/effect/floor_decal/techfloor/corner{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor, +/area/tcommsat/cynosure/chamber) +"Gq" = ( +/obj/structure/bed/chair/shuttle, +/obj/structure/closet/walllocker/emerglocker{ + pixel_x = 28 + }, +/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod{ + dir = 4; + frequency = 1380; + id_tag = "escape_pod_1"; + pixel_x = -24; + tag_door = "escape_pod_1_hatch" + }, +/obj/effect/shuttle_landmark/cynosure/escape_pod1/station, +/turf/simulated/shuttle/floor, +/area/shuttle/escape_pod1/station) +"GC" = ( +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/dark, +/area/tcommsat/cynosure) +"GH" = ( +/obj/effect/floor_decal/rust/mono_rusted1, +/turf/simulated/floor/tiled/techmaint, +/area/tcommsat/cynosure/teleporter) +"GI" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/tcommsat/cynosure) +"GM" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/effect/floor_decal/rust/mono_rusted1, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tcommsat/cynosure/lounge) +"GU" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/tcommsat/cynosure/storage) +"GY" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/tcommsat/cynosure/lounge) +"GZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/tcommsat/cynosure/lounge) +"Hb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/table, +/obj/effect/floor_decal/rust/mono_rusted2, +/turf/simulated/floor/tiled/monotile, +/area/tcommsat/cynosure/lounge) +"Hg" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/item/weapon/storage/box/lights/mixed{ + pixel_x = 2; + pixel_y = 2 + }, +/turf/simulated/floor/tiled/monotile, +/area/tcommsat/cynosure/lounge) +"Hi" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/telecomms/relay/preset/cynosure/centcomm, +/turf/simulated/floor/tiled/dark{ + nitrogen = 100; + oxygen = 0; + temperature = 73 + }, +/area/tcommsat/cynosure/chamber) +"Hj" = ( +/obj/effect/floor_decal/techfloor{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor, +/area/tcommsat/cynosure/chamber) +"Hk" = ( +/obj/effect/floor_decal/techfloor, +/turf/simulated/floor/tiled/dark{ + nitrogen = 100; + oxygen = 0; + temperature = 73 + }, +/area/tcommsat/cynosure/chamber) +"Hp" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/space, +/area/tcommsat/cynosure) +"Hs" = ( +/obj/structure/sign/warning/nosmoking_2{ + pixel_x = 32 + }, +/turf/simulated/floor/bluegrid{ + nitrogen = 100; + oxygen = 0; + temperature = 73 + }, +/area/tcommsat/cynosure/chamber) +"Hv" = ( +/obj/effect/floor_decal/rust/part_rusted1, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 22 + }, +/obj/structure/table/standard, +/obj/item/weapon/stock_parts/subspace/analyzer{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/weapon/stock_parts/subspace/analyzer, +/obj/item/weapon/stock_parts/subspace/analyzer{ + pixel_x = 3; + pixel_y = 2 + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/tcommsat/cynosure/storage) +"HG" = ( +/obj/structure/cable{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/smes/buildable{ + RCon_tag = "Telecommunications Satellite"; + charge = 5e+006; + input_attempt = 1; + input_level = 125000; + inputting = 1; + output_level = 100000; + output_level_max = 250000 + }, +/turf/simulated/floor/plating, +/area/tcommsat/cynosure/powercontrol) +"HI" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/telecomms/server/presets/service/cynosure, +/turf/simulated/floor/tiled/dark{ + nitrogen = 100; + oxygen = 0; + temperature = 73 + }, +/area/tcommsat/cynosure/chamber) +"HL" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/hatch{ + name = "Telecomms Satellite"; + req_access = null; + req_one_access = list(61) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/tcommsat/cynosure/entrance) +"HO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{ + dir = 1; + frequency = 1380; + id_tag = "escape_pod_1_berth"; + pixel_y = -24; + tag_door = "escape_pod_1_berth_hatch" + }, +/obj/machinery/camera/network/telecom{ + c_tag = "Tcoms - Enterance"; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tcommsat/cynosure/entrance) +"Ia" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/obj/item/frame/light, +/obj/item/stack/cable_coil{ + pixel_x = 2; + pixel_y = 2 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/tcommsat/cynosure/lounge) +"Id" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tcommsat/cynosure/computer) +"Ij" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/space, +/area/tcommsat/cynosure) +"Is" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/monotile, +/area/tcommsat/cynosure/entrance) +"Iu" = ( +/obj/effect/floor_decal/techfloor{ + dir = 5 + }, +/obj/machinery/teleport/hub, +/turf/simulated/floor/tiled/techfloor, +/area/tcommsat/cynosure/teleporter) +"Ix" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet{ + dir = 1; + pixel_y = 30 + }, +/turf/simulated/floor/tiled, +/area/tcommsat/cynosure/entrance) +"Iz" = ( +/turf/simulated/floor/bluegrid{ + nitrogen = 100; + oxygen = 0; + temperature = 73 + }, +/area/tcommsat/cynosure/chamber) +"IB" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/telecomms/processor/preset_two, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark{ + nitrogen = 100; + oxygen = 0; + temperature = 73 + }, +/area/tcommsat/cynosure/chamber) +"IC" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/table/standard, +/obj/machinery/recharger, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/plating, +/area/tcommsat/cynosure/powercontrol) +"IE" = ( +/obj/item/stack/cable_coil/yellow, +/turf/simulated/floor/airless, +/area/tcommsat/cynosure) +"IH" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/tcommsat/cynosure/foyer) +"IV" = ( +/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/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/hatch{ + name = "Telecomms Satellite"; + req_access = null; + req_one_access = list(61) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/tcommsat/cynosure/teleporter) +"IW" = ( +/turf/simulated/floor/plating, +/area/tcommsat/cynosure/powercontrol) +"Ja" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark{ + nitrogen = 100; + oxygen = 0; + temperature = 73 + }, +/area/tcommsat/cynosure/chamber) +"Jt" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 10 + }, +/obj/structure/closet/crate/freezer/rations, +/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle, +/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle, +/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle, +/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle, +/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle, +/obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle, +/turf/simulated/floor/tiled, +/area/tcommsat/cynosure/lounge) +"Ju" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/space, +/area/tcommsat/cynosure) +"Jw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/monotile, +/area/tcommsat/cynosure/computer) +"JC" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/monofloor{ + dir = 8 + }, +/area/tcommsat/cynosure/computer) +"JD" = ( +/obj/structure/sign/warning/high_voltage, +/turf/simulated/wall/r_wall, +/area/tcommsat/cynosure/powercontrol) +"JI" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/camera/network/telecom{ + c_tag = "Tcoms - Starboard Bridge Fore"; + dir = 4 + }, +/turf/space, +/area/tcommsat/cynosure) +"JM" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tcommsat/cynosure/computer) +"JT" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/effect/floor_decal/rust/part_rusted1, +/obj/machinery/turretid/stun{ + ailock = 1; + check_synth = 1; + control_area = "\improper Telecoms Foyer"; + desc = "A firewall prevents AIs from interacting with this device."; + name = "Telecoms Foyer turret control"; + pixel_y = 24; + req_access = list(61) + }, +/turf/simulated/floor/tiled/techmaint, +/area/tcommsat/cynosure/teleporter) +"JX" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -22 + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/tcommsat/cynosure/powercontrol) +"Kg" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled, +/area/tcommsat/cynosure/teleporter) +"Kz" = ( +/turf/simulated/wall/r_wall, +/area/tcommsat/cynosure/chamber) +"KG" = ( +/obj/effect/floor_decal/techfloor/corner{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark{ + nitrogen = 100; + oxygen = 0; + temperature = 73 + }, +/area/tcommsat/cynosure/chamber) +"KI" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/space, +/area/tcommsat/cynosure) +"KV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/light/small, +/obj/machinery/camera/network/telecom{ + c_tag = "Tcoms - Power Room Starboard" + }, +/turf/simulated/floor/tiled/techmaint, +/area/tcommsat/cynosure/teleporter) +"KX" = ( +/obj/effect/floor_decal/techfloor{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/effect/floor_decal/rust, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1379; + id_tag = "tcomdock_airlock_pump" + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tcommsat/cynosure/entrance) +"Lb" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tcommsat/cynosure/teleporter) +"Lc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled, +/area/tcommsat/cynosure/entrance) +"Lg" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/rust/mono_rusted1, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/tcommsat/cynosure/storage) +"Lk" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tcommsat/cynosure/computer) +"Lq" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/tcommsat/cynosure/foyer) +"LD" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/rust/mono_rusted3, +/turf/simulated/floor/tiled/monotile, +/area/tcommsat/cynosure/teleporter) +"LN" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/turf/simulated/floor/tiled/dark, +/area/tcommsat/cynosure/computer) +"LO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tcommsat/cynosure/entrance) +"LQ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/effect/floor_decal/rust/steel_decals_rusted1, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tcommsat/cynosure/entrance) +"Mj" = ( +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/tcommsat/cynosure) +"Mo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/bluegrid{ + nitrogen = 100; + oxygen = 0; + temperature = 73 + }, +/area/tcommsat/cynosure/chamber) +"Mr" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled, +/area/tcommsat/cynosure/lounge) +"Mv" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/meter, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/turf/simulated/floor/plating, +/area/tcommsat/cynosure) +"My" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/tiled/dark, +/area/tcommsat/cynosure/foyer) +"Mz" = ( +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 8 + }, +/obj/machinery/power/solar_control/autostart, +/turf/simulated/floor/plating, +/area/tcommsat/cynosure/powercontrol) +"MB" = ( +/obj/machinery/light, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/bluegrid{ + nitrogen = 100; + oxygen = 0; + temperature = 73 + }, +/area/tcommsat/cynosure/chamber) +"MC" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/lattice, +/turf/space, +/area/tcommsat/cynosure) +"ME" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/bluegrid{ + nitrogen = 100; + oxygen = 0; + temperature = 73 + }, +/area/tcommsat/cynosure/chamber) +"MM" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/tcommsat/cynosure) +"MO" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/techmaint, +/area/tcommsat/cynosure/teleporter) +"Nb" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/telecomms/server/presets/security, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark{ + nitrogen = 100; + oxygen = 0; + temperature = 73 + }, +/area/tcommsat/cynosure/chamber) +"Nd" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/hatch{ + name = "Telecomms Satellite"; + req_access = null; + req_one_access = list(61) + }, +/turf/simulated/floor/tiled/techfloor, +/area/tcommsat/cynosure/foyer) +"No" = ( +/obj/effect/floor_decal/rust/mono_rusted3, +/turf/simulated/floor/tiled/monotile, +/area/tcommsat/cynosure/computer) +"Np" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/telecomms/bus/preset_three, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark{ + nitrogen = 100; + oxygen = 0; + temperature = 73 + }, +/area/tcommsat/cynosure/chamber) +"NA" = ( +/obj/effect/overmap/visitable/telecomm_sat, +/turf/space, +/area/space) +"NC" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/camera/network/telecom{ + c_tag = "Tcoms - Solar Control"; + dir = 8 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 21 + }, +/turf/simulated/floor/plating, +/area/tcommsat/cynosure/powercontrol) +"NK" = ( +/obj/machinery/door/firedoor/border_only, +/turf/simulated/floor/tiled/steel_grid, +/area/tcommsat/cynosure/entrance) +"NQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Telecomms Storage"; + req_access = null; + req_one_access = list(61) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/tcommsat/cynosure/storage) +"NS" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/telecomms/server/presets/common, +/turf/simulated/floor/tiled/dark{ + nitrogen = 100; + oxygen = 0; + temperature = 73 + }, +/area/tcommsat/cynosure/chamber) +"NW" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "telecoms_outer"; + locked = 1; + name = "External Access"; + req_access = list(10,13) + }, +/obj/machinery/access_button/airlock_exterior{ + master_tag = "telecoms_airlock"; + pixel_x = 35; + req_one_access = list(13) + }, +/obj/effect/map_helper/airlock/door/ext_door, +/turf/simulated/floor/plating, +/area/tcommsat/cynosure/powercontrol) +"Og" = ( +/obj/effect/floor_decal/rust/part_rusted1, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/table/standard, +/obj/item/weapon/stock_parts/subspace/crystal{ + pixel_x = 3; + pixel_y = -2 + }, +/obj/item/weapon/stock_parts/subspace/crystal, +/obj/item/weapon/stock_parts/subspace/crystal{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 21 + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/tcommsat/cynosure/storage) +"Oh" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + 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/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/tcommsat/cynosure) +"Om" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/machinery/camera/network/telecom{ + c_tag = "Tcoms - solar Airlock" + }, +/turf/simulated/floor/plating, +/area/tcommsat/cynosure/powercontrol) +"On" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/effect/floor_decal/rust/steel_decals_rusted1, +/obj/effect/floor_decal/rust/part_rusted3{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/tcommsat/cynosure/teleporter) +"Ou" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/catwalk_plated/dark, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/tcommsat/cynosure) +"OE" = ( +/obj/structure/lattice, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/space, +/area/tcommsat/cynosure) +"OI" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/telecomms/server/presets/science, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark{ + nitrogen = 100; + oxygen = 0; + temperature = 73 + }, +/area/tcommsat/cynosure/chamber) +"OW" = ( +/obj/structure/sign/warning/nosmoking_2{ + pixel_x = -32 + }, +/turf/simulated/floor/bluegrid{ + nitrogen = 100; + oxygen = 0; + temperature = 73 + }, +/area/tcommsat/cynosure/chamber) +"Pf" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/tcommsat/cynosure) +"Pg" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/plating, +/area/tcommsat/cynosure/powercontrol) +"Pi" = ( +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/blue/bordercorner, +/obj/effect/floor_decal/rust/part_rusted1{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tcommsat/cynosure/teleporter) +"Pv" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/turf/space, +/area/tcommsat/cynosure) +"Pw" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor{ + dir = 6 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 21 + }, +/turf/simulated/floor/tiled/techfloor, +/area/tcommsat/cynosure/foyer) +"Px" = ( +/obj/effect/floor_decal/rust/part_rusted3, +/obj/effect/floor_decal/rust/part_rusted1{ + dir = 1 + }, +/obj/structure/table/standard, +/obj/item/weapon/stock_parts/subspace/treatment{ + pixel_x = 5; + pixel_y = -2 + }, +/obj/item/weapon/stock_parts/subspace/treatment, +/obj/item/weapon/stock_parts/subspace/treatment{ + pixel_x = -2; + pixel_y = 4 + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/tcommsat/cynosure/storage) +"PK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/effect/floor_decal/rust/steel_decals_rusted1{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/tcommsat/cynosure/teleporter) +"PL" = ( +/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/structure/bed/chair{ + dir = 4 + }, +/obj/effect/floor_decal/rust/mono_rusted3, +/turf/simulated/floor/tiled/monotile, +/area/tcommsat/cynosure/lounge) +"PN" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/bordercorner{ + dir = 8 + }, +/obj/effect/floor_decal/rust/part_rusted1{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tcommsat/cynosure/teleporter) +"PT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 8 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/steel_dirty, +/area/tcommsat/cynosure/entrance) +"PU" = ( +/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/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/airless, +/area/tcommsat/cynosure) +"Qe" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/cable{ + 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/dark, +/area/tcommsat/cynosure) +"Qg" = ( +/obj/random/maintenance/research, +/obj/random/contraband, +/obj/random/drinkbottle, +/obj/random/crate, +/obj/random/maintenance/medical, +/turf/simulated/floor/plating, +/area/tcommsat/cynosure/lounge) +"Qh" = ( +/obj/structure/table, +/obj/effect/floor_decal/rust/mono_rusted2, +/turf/simulated/floor/tiled/monotile, +/area/tcommsat/cynosure/lounge) +"Qi" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/bordercorner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled, +/area/tcommsat/cynosure/computer) +"Qn" = ( +/turf/simulated/floor/tiled/monotile, +/area/tcommsat/cynosure/teleporter) +"Qr" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/techfloor, +/area/tcommsat/cynosure) +"Qs" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/space, +/area/tcommsat/cynosure) +"Qt" = ( +/obj/effect/floor_decal/techfloor{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/structure/extinguisher_cabinet{ + dir = 1; + pixel_y = 30 + }, +/turf/simulated/floor/tiled/techfloor, +/area/tcommsat/cynosure/foyer) +"QF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black, +/obj/effect/floor_decal/techfloor/corner{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor, +/area/tcommsat/cynosure/chamber) +"QG" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/empty, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/tcommsat/cynosure) +"QH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/tcommsat/cynosure) +"QO" = ( +/turf/simulated/floor/tiled/monotile, +/area/tcommsat/cynosure/entrance) +"QP" = ( +/obj/machinery/camera/network/telecom{ + c_tag = "Tcoms - Port Bridge Aft"; + dir = 4 + }, +/turf/space, +/area/tcommsat/cynosure) +"QU" = ( +/obj/item/stack/material/steel{ + amount = 10 + }, +/obj/effect/floor_decal/rust/mono_rusted2, +/turf/simulated/floor/tiled/monotile, +/area/tcommsat/cynosure/lounge) +"RE" = ( +/obj/effect/floor_decal/techfloor, +/obj/effect/floor_decal/techfloor/hole, +/turf/simulated/floor/tiled/dark{ + nitrogen = 100; + oxygen = 0; + temperature = 73 + }, +/area/tcommsat/cynosure/chamber) +"RK" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/obj/effect/floor_decal/rust/steel_decals_rusted1{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/tcommsat/cynosure/lounge) +"RM" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central6, +/turf/simulated/floor/tiled/monotile, +/area/tcommsat/cynosure/computer) +"RP" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/floor_decal/rust, +/obj/machinery/door/airlock/external{ + frequency = 1379; + icon_state = "door_locked"; + id_tag = "tcomdock_airlock_outer"; + locked = 1; + name = "External Access" + }, +/obj/machinery/access_button/airlock_exterior{ + dir = 4; + master_tag = "tcomdock_airlock"; + pixel_y = -24; + req_one_access = list(13) + }, +/obj/effect/map_helper/airlock/door/ext_door, +/turf/simulated/floor/tiled/techfloor, +/area/tcommsat/cynosure/entrance) +"Sf" = ( +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/tcommsat/cynosure) +"Sg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black, +/turf/simulated/floor/bluegrid{ + nitrogen = 100; + oxygen = 0; + temperature = 73 + }, +/area/tcommsat/cynosure/chamber) +"Sh" = ( +/obj/structure/sign/warning/deathsposal, +/turf/simulated/wall/r_wall, +/area/tcommsat/cynosure/lounge) +"Si" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 5 + }, +/turf/simulated/floor/tiled/techmaint, +/area/tcommsat/cynosure/teleporter) +"Sn" = ( +/obj/structure/table/rack, +/obj/item/weapon/circuitboard/telecomms/processor, +/obj/item/weapon/circuitboard/telecomms/processor, +/obj/item/weapon/circuitboard/telecomms/receiver, +/obj/item/weapon/circuitboard/telecomms/server, +/obj/item/weapon/circuitboard/telecomms/server, +/obj/item/weapon/circuitboard/telecomms/bus, +/obj/item/weapon/circuitboard/telecomms/bus, +/obj/item/weapon/circuitboard/telecomms/broadcaster, +/obj/item/weapon/circuitboard/telecomms/exonet_node, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/tcommsat/cynosure/storage) +"Ss" = ( +/obj/effect/floor_decal/rust/mono_rusted3, +/turf/simulated/floor/tiled/monotile, +/area/tcommsat/cynosure/entrance) +"Sy" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/item/stack/material/plasteel, +/obj/item/stack/material/plasteel{ + pixel_x = -4; + pixel_y = -2 + }, +/turf/simulated/floor/airless, +/area/tcommsat/cynosure) +"SD" = ( +/obj/structure/girder/reinforced, +/turf/simulated/floor/airless, +/area/tcommsat/cynosure) +"SE" = ( +/turf/space, +/area/space) +"SF" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/tcommsat/cynosure) +"SG" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark{ + nitrogen = 100; + oxygen = 0; + temperature = 73 + }, +/area/tcommsat/cynosure/chamber) +"SH" = ( +/obj/effect/floor_decal/techfloor{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/techfloor, +/area/tcommsat/cynosure/foyer) +"SO" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/tcommsat/cynosure/teleporter) +"ST" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/hatch{ + name = "Telecoms Port Bridge"; + req_access = null; + req_one_access = list(61) + }, +/turf/simulated/floor/tiled/techfloor, +/area/tcommsat/cynosure/foyer) +"SV" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/tcommsat/cynosure) +"SW" = ( +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/camera/network/telecom{ + c_tag = "Tcoms - Solar Port"; + dir = 8 + }, +/turf/simulated/floor/airless, +/area/tcommsat/cynosure) +"SZ" = ( +/obj/effect/floor_decal/techfloor/corner{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark{ + nitrogen = 100; + oxygen = 0; + temperature = 73 + }, +/area/tcommsat/cynosure/chamber) +"Ta" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/ntnet_relay, +/turf/simulated/floor/tiled/dark{ + nitrogen = 100; + oxygen = 0; + temperature = 73 + }, +/area/tcommsat/cynosure/chamber) +"Te" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor, +/obj/effect/floor_decal/industrial/warning/cee{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tcommsat/cynosure/computer) +"Tf" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/telecomms/relay/preset/cynosure/bmt, +/turf/simulated/floor/tiled/dark{ + nitrogen = 100; + oxygen = 0; + temperature = 73 + }, +/area/tcommsat/cynosure/chamber) +"Th" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tcommsat/cynosure/teleporter) +"TB" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/tcommsat/cynosure) +"TD" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/bluegrid{ + nitrogen = 100; + oxygen = 0; + temperature = 73 + }, +/area/tcommsat/cynosure/chamber) +"TE" = ( +/obj/structure/cable/yellow, +/obj/machinery/power/terminal, +/obj/effect/floor_decal/industrial/warning, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/tcommsat/cynosure/powercontrol) +"TI" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/tcommsat/cynosure) +"TL" = ( +/obj/machinery/computer/telecomms/monitor{ + dir = 1; + network = "tcommsat" + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled, +/area/tcommsat/cynosure/computer) +"TN" = ( +/obj/structure/lattice, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/space, +/area/tcommsat/cynosure) +"TT" = ( +/obj/structure/sign/warning/pods{ + dir = 1 + }, +/turf/simulated/wall/r_wall, +/area/tcommsat/cynosure/entrance) +"TZ" = ( +/turf/simulated/wall/r_wall, +/area/tcommsat/cynosure/entrance) +"Ub" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/rust/mono_rusted2, +/turf/simulated/floor/tiled/old_cargo/gray, +/area/tcommsat/cynosure/storage) +"Ue" = ( +/obj/machinery/status_display, +/turf/simulated/wall/r_wall, +/area/tcommsat/cynosure/teleporter) +"Ul" = ( +/obj/structure/bed/chair/shuttle, +/obj/machinery/status_display{ + layer = 4; + pixel_x = -32 + }, +/obj/machinery/light, +/turf/simulated/shuttle/floor, +/area/shuttle/escape_pod1/station) +"Uq" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/space, +/area/tcommsat/cynosure) +"Uu" = ( +/obj/structure/sign/warning/vacuum, +/turf/simulated/wall/r_wall, +/area/tcommsat/cynosure/powercontrol) +"UB" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24; + pixel_y = -12 + }, +/obj/structure/cable, +/obj/effect/floor_decal/rust/part_rusted1, +/obj/effect/floor_decal/steeldecal/steel_decals_central7{ + dir = 4 + }, +/obj/structure/table/standard, +/obj/item/weapon/stock_parts/subspace/ansible, +/obj/item/weapon/stock_parts/subspace/ansible{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/stock_parts/subspace/ansible{ + pixel_x = -3; + pixel_y = -3 + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/tcommsat/cynosure/storage) +"UD" = ( +/obj/structure/cable/yellow{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/solar, +/turf/simulated/floor/airless{ + icon_state = "solarpanel" + }, +/area/tcommsat/cynosure) +"UI" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/telecomms/server/presets/supply, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark{ + nitrogen = 100; + oxygen = 0; + temperature = 73 + }, +/area/tcommsat/cynosure/chamber) +"UK" = ( +/obj/structure/shuttle/engine/propulsion/burst{ + dir = 1 + }, +/turf/simulated/shuttle/wall/dark/no_join, +/area/shuttle/escape_pod1/station) +"UL" = ( +/obj/effect/floor_decal/rust/mono_rusted3, +/turf/simulated/floor/tiled/monotile, +/area/tcommsat/cynosure/lounge) +"UM" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/effect/floor_decal/rust/part_rusted1, +/obj/structure/closet/malf/suits, +/turf/simulated/floor/tiled/techmaint, +/area/tcommsat/cynosure/teleporter) +"UP" = ( +/obj/effect/floor_decal/techfloor/corner{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor, +/area/tcommsat/cynosure/chamber) +"UY" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/tcommsat/cynosure) +"Vb" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/floor_decal/techfloor{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/techfloor, +/area/tcommsat/cynosure) +"Vk" = ( +/obj/structure/lattice, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/space, +/area/tcommsat/cynosure) +"Vs" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/item/weapon/deck/cah/black{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/weapon/deck/cah{ + pixel_x = -3; + pixel_y = 3 + }, +/turf/simulated/floor/plating, +/area/tcommsat/cynosure/lounge) +"VB" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/airlock/hatch{ + name = "Telecomms Control Room"; + req_access = null; + req_one_access = list(61) + }, +/turf/simulated/floor/tiled/steel_grid, +/area/tcommsat/cynosure/computer) +"VH" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/bluegrid{ + nitrogen = 100; + oxygen = 0; + temperature = 73 + }, +/area/tcommsat/cynosure/chamber) +"VQ" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/porta_turret/stationary, +/turf/simulated/floor/tiled/techmaint, +/area/tcommsat/cynosure/foyer) +"VU" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/camera/network/telecom{ + c_tag = "Tcoms - Port Bridge Fore" + }, +/turf/space, +/area/tcommsat/cynosure) +"VY" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/table/standard, +/obj/item/weapon/stock_parts/subspace/amplifier{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/weapon/stock_parts/subspace/amplifier, +/obj/item/weapon/stock_parts/subspace/amplifier{ + pixel_x = -2; + pixel_y = 3 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/tcommsat/cynosure/storage) +"Wd" = ( +/obj/effect/floor_decal/techfloor{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/effect/floor_decal/rust, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1379; + id_tag = "tcomdock_airlock_pump" + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/machinery/camera/network/telecom{ + c_tag = "Tcoms - Airlock" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tcommsat/cynosure/entrance) +"We" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/disposaloutlet{ + dir = 4 + }, +/turf/simulated/floor/airless, +/area/tcommsat/cynosure) +"Wg" = ( +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/tcommsat/cynosure/lounge) +"Wh" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tcommsat/cynosure/computer) +"Wm" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/table/standard, +/obj/item/stack/material/glass{ + amount = 50 + }, +/obj/item/stack/cable_coil/random{ + pixel_x = 3; + pixel_y = -2 + }, +/obj/item/stack/cable_coil/random, +/turf/simulated/floor/plating, +/area/tcommsat/cynosure/powercontrol) +"Wp" = ( +/obj/structure/sign/warning/secure_area, +/turf/simulated/wall/r_wall, +/area/tcommsat/cynosure/teleporter) +"Ws" = ( +/obj/machinery/door/airlock/external{ + frequency = 1380; + icon_state = "door_locked"; + id_tag = "escape_pod_1_hatch"; + locked = 1; + name = "Escape Pod Hatch 1"; + req_access = list(13) + }, +/turf/simulated/shuttle/floor, +/area/shuttle/escape_pod1/station) +"Xi" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/obj/structure/closet/crate/nanotrasen{ + dir = 2 + }, +/obj/item/clothing/glasses/night, +/turf/simulated/floor/tiled, +/area/tcommsat/cynosure/teleporter) +"Xk" = ( +/obj/structure/cable{ + 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/industrial/warning, +/turf/simulated/floor/tiled/dark, +/area/tcommsat/cynosure/foyer) +"Xm" = ( +/obj/effect/floor_decal/techfloor{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/tcommsat/cynosure/foyer) +"Xn" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/telecomms/processor/preset_one, +/turf/simulated/floor/tiled/dark{ + nitrogen = 100; + oxygen = 0; + temperature = 73 + }, +/area/tcommsat/cynosure/chamber) +"Xv" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/effect/floor_decal/rust/steel_decals_rusted1, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 21 + }, +/turf/simulated/floor/tiled, +/area/tcommsat/cynosure/entrance) +"Xy" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/broken{ + dir = 4 + }, +/turf/simulated/floor/airless, +/area/tcommsat/cynosure) +"XC" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/machinery/firealarm{ + pixel_y = 24 + }, +/obj/effect/floor_decal/techfloor{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor, +/area/tcommsat/cynosure/foyer) +"XM" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/tcommsat/cynosure) +"XO" = ( +/obj/structure/lattice, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/space, +/area/tcommsat/cynosure) +"XX" = ( +/obj/effect/floor_decal/techfloor{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor, +/area/tcommsat/cynosure/chamber) +"Yb" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/tcommsat/cynosure/entrance) +"Yd" = ( +/turf/simulated/wall/r_wall, +/area/tcommsat/cynosure/computer) +"Yg" = ( +/obj/effect/floor_decal/techfloor/corner{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark{ + nitrogen = 100; + oxygen = 0; + temperature = 73 + }, +/area/tcommsat/cynosure/chamber) +"Yr" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/tcommsat/cynosure) +"Yw" = ( +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + id_tag = "telecoms_airlock"; + pixel_y = 25; + req_one_access = list(13) + }, +/obj/machinery/airlock_sensor{ + id_tag = "telecoms_sensor"; + pixel_x = -11; + pixel_y = 25 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/turf/simulated/floor/plating, +/area/tcommsat/cynosure/powercontrol) +"YG" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/monotile, +/area/tcommsat/cynosure/teleporter) +"YI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/tcommsat/cynosure/powercontrol) +"YO" = ( +/obj/machinery/porta_turret/stationary, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/airless, +/area/tcommsat/cynosure) +"YZ" = ( +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/airless, +/area/tcommsat/cynosure/powercontrol) +"Zc" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/effect/floor_decal/rust/part_rusted1{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/tcommsat/cynosure/teleporter) +"Zh" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/tcommsat/cynosure/teleporter) +"Zj" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1; + frequency = 1379; + id_tag = "telecoms_pump" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/turf/simulated/floor/plating, +/area/tcommsat/cynosure/powercontrol) +"Zm" = ( +/obj/machinery/door/firedoor/border_only, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/tcommsat/cynosure/entrance) +"Zp" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/rust/mono_rusted3, +/turf/simulated/floor/tiled/monotile, +/area/tcommsat/cynosure/computer) +"ZD" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/bed/chair/office/dark, +/turf/simulated/floor/tiled/monotile, +/area/tcommsat/cynosure/computer) +"ZS" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/airless, +/area/tcommsat/cynosure) + +(1,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +NA +"} +(2,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(3,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(4,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(5,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(6,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(7,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(8,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(9,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(10,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(11,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(12,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(13,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(14,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(15,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(16,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(17,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(18,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(19,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(20,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(21,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(22,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(23,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(24,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(25,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(26,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(27,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(28,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(29,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(30,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(31,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(32,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(33,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(34,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(35,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(36,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(37,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(38,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(39,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(40,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(41,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(42,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(43,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(44,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(45,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(46,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(47,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(48,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(49,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(50,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(51,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(52,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(53,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(54,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(55,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(56,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(57,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(58,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(59,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(60,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(61,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(62,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(63,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(64,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(65,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(66,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(67,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(68,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(69,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(70,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(71,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(72,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(73,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(74,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(75,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(76,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(77,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(78,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(79,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(80,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(81,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(82,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(83,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(84,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(85,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(86,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(87,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(88,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(89,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(90,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(91,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(92,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(93,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(94,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(95,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(96,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +lZ +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(97,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +aQ +aQ +aQ +aQ +aQ +aQ +aQ +aQ +aQ +aQ +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(98,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +Fw +SE +SE +SE +SE +SE +Fw +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(99,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +aQ +SE +UD +Cq +rR +SE +SE +SE +UD +Cq +rR +SE +aQ +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(100,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +aQ +Fw +UD +rh +rR +Fw +Fw +Fw +UD +rh +rR +Fw +aQ +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(101,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +aQ +SE +UD +rh +rR +SE +Fw +SE +UD +rh +rR +SE +aQ +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(102,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +aQ +SE +UD +rh +rR +SE +Fw +SE +UD +rh +rR +SE +aQ +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(103,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +aQ +SE +UD +rh +rR +SE +Fw +SE +UD +rh +rR +SE +aQ +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(104,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +aQ +SE +UD +rh +rR +SE +Fw +SE +UD +rh +rR +SE +aQ +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(105,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +aQ +SE +UD +rh +rR +SE +Fw +SE +UD +rh +rR +SE +aQ +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(106,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +aQ +SE +UD +rh +rR +SE +Fw +SE +UD +rh +rR +SE +aQ +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(107,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +aQ +Fw +UD +rh +rR +Fw +Fw +Fw +UD +rh +rR +Fw +aQ +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(108,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +aQ +SE +UD +rh +rR +SE +Fw +SE +UD +rh +rR +SE +aQ +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(109,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +aQ +aQ +aQ +aQ +aQ +aQ +aQ +SE +SE +SE +SE +jL +hx +hx +Cq +hx +hx +gO +SE +SE +SE +SE +aQ +aQ +aQ +aQ +aQ +aQ +aQ +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(110,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +aQ +aQ +SE +SE +SE +SE +Fw +SE +SE +SE +SE +SE +Fw +SE +SE +fj +SE +SE +Fw +SE +SE +SE +SE +SE +Fw +SE +SE +SE +SE +aQ +aQ +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(111,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +aQ +aQ +SE +SE +hy +hx +hx +hx +hx +hx +hx +hx +hx +hx +hx +hx +SW +hx +hx +hx +hx +hx +hx +hx +hx +hx +hx +hx +eT +SE +SE +aQ +aQ +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(112,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +aQ +SE +SE +hy +gO +oe +oe +oe +oe +oe +oe +oe +oe +oe +oe +oe +oe +oe +oe +oe +oe +oe +oe +oe +oe +oe +oe +oe +jL +eT +SE +SE +aQ +aQ +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(113,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +aQ +SE +hy +gO +oe +oe +oe +oe +oe +oe +oe +oe +oe +oe +oe +oe +oe +oe +oe +oe +oe +oe +oe +oe +oe +oe +oe +oe +oe +jL +eT +SE +Fw +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(114,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +aQ +SE +fj +oe +oe +oe +uj +CC +CC +CC +CC +uj +CC +CC +CC +CC +uj +CC +CC +CC +CC +uj +CC +CC +QP +CC +uj +oe +oe +oe +jL +hx +hx +eT +Fw +Fw +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(115,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +aQ +SE +fj +oe +oe +uj +uj +uj +uj +uj +uj +YO +uj +uj +uj +uj +uj +uj +uj +uj +uj +YO +uj +uj +uj +uj +uj +uj +oe +rI +rI +rI +rI +fj +Fw +Fw +Fw +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(116,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +aQ +SE +fj +oe +oe +CC +uj +CC +CC +CC +CC +uj +CC +CC +CC +CC +uj +CC +CC +CC +CC +uj +CC +CC +CC +CC +uj +CC +oe +rI +Yw +Zj +NW +mP +pq +Fw +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(117,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +aQ +SE +fj +oe +oe +VU +qm +yX +CC +yX +yX +qm +yX +yX +yX +yX +qm +yX +yX +yX +yX +qm +yX +yX +CC +CC +uj +CC +oe +rI +Om +nU +rI +YZ +hx +hx +eT +SE +aQ +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(118,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +aQ +Fw +fj +oe +oe +TI +dE +Pf +KI +TB +EQ +Qe +bI +AP +wz +EQ +EQ +EQ +kq +oh +jH +Qe +EQ +vY +Uq +CC +uj +CC +oe +rI +dI +rI +rI +rI +rI +rI +fj +Fw +aQ +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(119,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +aQ +SE +fj +oe +oe +mE +ar +Mj +Hp +lz +ko +Ij +BP +TN +dN +ws +FL +Ij +hu +MC +iJ +Ij +Ju +tZ +Uq +CC +uj +CC +oe +Uu +hA +tX +JX +TE +HG +rI +fj +SE +aQ +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(120,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +fj +oe +oe +jW +ro +EV +Ou +GC +FJ +Kz +Kz +Kz +Kz +Kz +Kz +Kz +Kz +Kz +Kz +Kz +rH +hJ +mA +uj +uj +CC +oe +rI +Mz +IW +Pg +cE +BI +rI +fj +SE +aQ +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(121,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +aQ +aQ +aQ +aQ +aQ +aQ +aQ +aQ +aQ +aQ +SE +SE +fj +oe +oe +Mv +QH +Sf +ku +SF +Uq +Kz +Iz +Iz +Iz +Iz +OW +Iz +Iz +Iz +Iz +Kz +Qs +hJ +ns +CC +uj +oe +oe +rI +jK +IW +sw +YI +IC +rI +fj +SE +SE +SE +SE +aQ +aQ +aQ +aQ +aQ +aQ +aQ +aQ +aQ +aQ +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(122,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +Fw +SE +SE +SE +SE +SE +SE +Fw +SE +SE +SE +fj +oe +oe +vz +GI +QG +KI +SF +Uq +Kz +Iz +SG +UI +SG +IB +qP +SG +OI +VH +Kz +Vb +Eq +zy +bm +bh +bm +bm +rI +xR +wm +NC +FS +Wm +rI +fj +SE +SE +SE +SE +SE +Fw +SE +SE +SE +SE +SE +SE +Fw +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(123,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +aQ +SE +cO +cO +cO +cO +cO +cO +cO +cO +cO +cO +SE +SE +fj +oe +oe +oe +Ij +Ij +cF +UY +Uq +Kz +TD +SZ +HI +wB +ok +Xn +wB +lM +MB +Kz +iM +ST +Er +oP +cN +Fe +bm +rI +rI +rI +rI +dt +JD +rI +jL +eT +SE +SE +SE +cO +cO +cO +cO +cO +cO +cO +cO +cO +cO +SE +aQ +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(124,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +aQ +Fw +cR +eF +eF +eF +eF +eF +eF +eF +eF +eF +eT +Fw +fj +oe +oe +Yd +Yd +Yd +kM +VB +Yd +fR +Iz +pm +xN +wB +Tf +br +wB +FN +VH +Kz +Xm +IH +SH +oP +cM +fi +bm +bm +bm +lU +Zh +hO +Xi +bm +bm +jL +eT +Fw +hy +PU +PU +PU +PU +PU +PU +PU +PU +PU +CM +Fw +aQ +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(125,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +aQ +SE +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +fj +SE +fj +oe +oe +Yd +rr +BD +Id +Wh +fU +FO +Sg +Ja +zO +pZ +Mo +po +DU +KG +VH +Kz +VQ +ta +pe +oP +lG +DJ +bm +bm +bm +cr +jr +nw +PN +jP +bm +bm +fj +SE +fj +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +SE +aQ +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(126,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +aQ +SE +SE +Fw +SE +SE +SE +SE +SE +SE +Fw +SE +fj +SE +fj +oe +oe +Yd +sI +Cs +Jw +Zp +TL +jn +Iz +pm +zJ +zG +vK +El +UP +RE +VH +Kz +XC +CF +My +iM +On +Ac +bm +UM +ug +yF +ia +vu +on +py +yT +bm +fj +SE +fj +SE +Fw +SE +SE +SE +SE +SE +SE +Fw +SE +SE +aQ +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(127,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +aQ +SE +SE +Fw +Fw +Fw +Fw +Fw +Fw +Fw +Fw +Fw +go +hx +ha +oe +oe +Yd +vD +Cx +JC +ZD +sN +zp +ke +pm +BO +Iz +dS +Iz +qt +Hk +uM +Kz +ds +re +Xk +Nd +xe +Zc +IV +cV +ny +bk +bk +sQ +DH +Kg +ES +bm +yx +hx +ig +Fw +Fw +Fw +Fw +Fw +Fw +Fw +Fw +Fw +SE +SE +aQ +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(128,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +aQ +SE +SE +Fw +SE +SE +SE +SE +SE +SE +Fw +SE +fj +SE +fj +oe +oe +Yd +ag +No +JM +RM +ll +jn +ME +zu +sZ +XX +uX +Hj +Bx +Hk +VH +Kz +Pw +tI +yp +oP +JT +PK +Wp +sh +vH +Bt +YG +LD +Qn +py +Iu +bm +vj +SE +fj +SE +Fw +SE +SE +SE +SE +SE +SE +Fw +SE +SE +aQ +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(129,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +aQ +SE +cO +cO +cO +cO +cO +cO +cO +cO +cO +cO +fj +SE +fj +oe +oe +Yd +wx +DF +Lk +Qi +rj +np +rY +Ja +zO +QF +Mo +FZ +aH +mV +VH +Kz +VQ +ph +Bv +oP +bm +KV +bm +bm +bm +Si +au +SO +Pi +kT +bm +bm +vj +SE +fj +cO +cO +cO +cO +cO +cO +cO +cO +cO +cO +SE +aQ +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(130,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +aQ +Fw +cR +eF +eF +eF +eF +eF +eF +eF +eF +eF +gO +Fw +fj +oe +oe +Yd +xc +Fa +LN +Yd +Bc +Yd +CU +pm +BT +wB +Ta +sj +wB +Hi +VH +Kz +Qt +Lq +ax +oP +GH +MO +bm +bm +bm +Ue +hv +Th +Lb +bm +bm +vj +vj +Fw +jL +PU +PU +PU +PU +PU +PU +PU +PU +PU +CM +Fw +aQ +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(131,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +aQ +SE +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +SE +SE +fj +oe +oe +Yd +Yd +Yd +Yd +Yd +mu +Yd +TD +Yg +NS +wB +mm +yr +wB +cH +MB +Kz +iM +rL +Er +oP +eK +vI +bm +TZ +TZ +TZ +TZ +HL +TZ +TZ +vj +vj +SE +SE +SE +dr +dr +dr +dr +dr +dr +dr +dr +dr +dr +SE +aQ +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(132,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +Fw +SE +SE +SE +SE +SE +SE +Fw +SE +SE +SE +fj +oe +oe +mc +Qg +cm +cm +Yd +Te +zb +ky +jw +bn +jw +jC +Np +jw +Nb +VH +Kz +Qr +SV +px +bm +bh +bm +bm +TZ +de +De +sp +fv +wE +TZ +vj +SE +SE +SE +SE +SE +SE +SE +SE +Fw +SE +SE +SE +Fw +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(133,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +aQ +aQ +aQ +aQ +aQ +aQ +aQ +aQ +aQ +aQ +SE +SE +fj +oe +tG +tG +tG +tG +tG +tG +tG +Kz +Iz +Iz +Iz +Iz +Hs +Iz +Iz +Iz +Iz +Kz +Ju +SF +pO +CC +uj +oe +oe +TZ +Xv +QO +Is +CQ +TZ +TZ +TZ +TZ +TZ +SE +SE +SE +SE +SE +Fw +aQ +aQ +aQ +aQ +aQ +aQ +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(134,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +fj +oe +tG +lQ +xA +GM +Mr +Jt +tG +Kz +Kz +Kz +Kz +Kz +Kz +Kz +Kz +Kz +Kz +Kz +rH +SF +mA +uj +uj +CC +oe +TZ +LQ +Ss +eh +EJ +TT +UK +ir +EL +ir +ir +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(135,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +aQ +SE +fj +oe +tG +lT +xB +GY +UL +BS +tG +yX +mj +XO +OE +JI +Vk +yX +jJ +cb +ft +yX +Pv +lz +Uq +CC +uj +CC +oe +TZ +Ix +QO +Ss +Lc +nS +Ws +Gq +zR +Ul +nf +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(136,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +aQ +Fw +fj +oe +tG +pT +yY +GZ +PL +zk +nR +Qe +MM +fg +Yr +EQ +Oh +EQ +lx +cj +XM +Qe +EQ +aX +Uq +CC +uj +CC +oe +TZ +Ec +kA +gf +HO +TZ +UK +ir +EL +ir +ir +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(137,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +aQ +SE +fj +oe +tG +qc +zi +Hb +Qh +fH +tG +cB +Ij +Ij +Ij +Ju +lC +ko +Ij +Ij +Ij +cB +Ij +Ij +CC +CC +uj +CC +oe +TZ +TZ +TZ +NK +da +TZ +TZ +TZ +TZ +nV +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(138,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +aQ +SE +fj +oe +tG +qk +AK +Hg +QU +Vs +tG +uj +CC +GU +GU +GU +NQ +GU +GU +GU +CC +uj +CC +CC +CC +CC +uj +CC +oe +oe +SE +Zm +gf +LO +Zm +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(139,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +aQ +SE +fj +oe +tG +qI +AZ +Ia +RK +Wg +tG +YO +uj +GU +pP +Px +fh +uf +hB +GU +uj +YO +uj +uj +uj +uj +uj +uj +oe +oe +SE +Zm +gf +PT +Zm +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(140,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +aQ +SE +fj +oe +tG +tG +tG +tG +Sh +tG +tG +uj +CC +GU +gH +sa +Ub +Lg +lA +GU +CC +uj +CC +wh +CC +CC +uj +oe +oe +oe +fj +Zm +Yb +qY +Zm +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(141,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +aQ +SE +jL +eT +oe +oe +oe +oe +oe +oe +oe +oe +oe +pj +Sn +Hv +VY +UB +Og +pj +oe +oe +oe +oe +oe +oe +oe +oe +oe +vj +gO +TZ +Do +cw +TZ +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(142,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +aQ +SE +SE +jL +eT +oe +oe +oe +oe +SD +oe +oe +oe +pj +pj +pj +pj +pj +pj +pj +oe +oe +oe +oe +oe +oe +oe +oe +vj +vj +SE +lK +Wd +KX +lK +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(143,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +aQ +aQ +SE +SE +jL +hx +hx +hx +Sy +Xy +hx +hx +eT +oe +oe +oe +oe +oe +oe +oe +vj +vj +vj +vj +vj +vj +vj +vj +vj +SE +SE +lK +ut +sP +lK +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(144,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +aQ +aQ +SE +SE +SE +Fw +SE +SE +rn +SE +SE +jL +hx +hx +hx +vB +hx +hx +IE +vj +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +TZ +oO +RP +TZ +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(145,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +aQ +aQ +aQ +aQ +aQ +aQ +SE +We +SE +SE +SE +Fw +SE +SE +fj +SE +SE +Fw +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(146,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +hy +hx +hx +Bs +hx +hx +eT +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +iy +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(147,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +aQ +SE +UD +ZS +rR +SE +Fw +SE +UD +ZS +rR +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(148,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +aQ +Fw +UD +ZS +rR +Fw +Fw +Fw +UD +ZS +rR +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(149,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +aQ +SE +UD +ZS +rR +SE +Fw +SE +UD +ZS +rR +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(150,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +aQ +SE +UD +ZS +rR +SE +Fw +SE +UD +ZS +rR +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(151,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +aQ +SE +UD +ZS +rR +SE +Fw +SE +UD +ZS +rR +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(152,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +aQ +SE +UD +ZS +rR +SE +Fw +SE +UD +ZS +rR +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(153,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +aQ +SE +UD +ZS +rR +SE +Fw +SE +UD +ZS +rR +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(154,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +aQ +SE +UD +ZS +rR +SE +Fw +SE +UD +ZS +rR +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(155,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +aQ +Fw +UD +ZS +rR +Fw +Fw +Fw +UD +ZS +rR +Fw +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(156,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +aQ +SE +UD +Bs +rR +SE +SE +SE +UD +Bs +rR +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(157,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +Fw +SE +SE +SE +SE +SE +Fw +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(158,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +aQ +aQ +aQ +aQ +aQ +aQ +aQ +aQ +aQ +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(159,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(160,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(161,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(162,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(163,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(164,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(165,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(166,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(167,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(168,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(169,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(170,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(171,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(172,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(173,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(174,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(175,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(176,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(177,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(178,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(179,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(180,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(181,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(182,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(183,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(184,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(185,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(186,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(187,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(188,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(189,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(190,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(191,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(192,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(193,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(194,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(195,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(196,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(197,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(198,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(199,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(200,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(201,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(202,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(203,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(204,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(205,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(206,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(207,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(208,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(209,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(210,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(211,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(212,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(213,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(214,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(215,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(216,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(217,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(218,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(219,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(220,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(221,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(222,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(223,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(224,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(225,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(226,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(227,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(228,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(229,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(230,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(231,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(232,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(233,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(234,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(235,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(236,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(237,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(238,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(239,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(240,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(241,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(242,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(243,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(244,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(245,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(246,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(247,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(248,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(249,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(250,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(251,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(252,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(253,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(254,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} +(255,1,1) = {" +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +SE +"} diff --git a/maps/cynosure/cynosure-6.dmm b/maps/cynosure/cynosure-6.dmm new file mode 100644 index 0000000000..c736f85e2e --- /dev/null +++ b/maps/cynosure/cynosure-6.dmm @@ -0,0 +1,87374 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aab" = ( +/obj/structure/bed/chair/wood{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/brown/border, +/turf/simulated/floor/tiled/white, +/area/centcom/bar) +"aaf" = ( +/obj/structure/table/rack/holorack, +/obj/item/clothing/under/dress/dress_saloon, +/obj/item/clothing/head/pin/flower, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_theatre) +"aax" = ( +/obj/machinery/door/window/westleft{ + name = "Storefront"; + req_access = list(160) + }, +/obj/structure/window/reinforced, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 8; + icon_state = "shutter0"; + id = "trade"; + name = "Shop Shutters"; + opacity = 0 + }, +/obj/structure/table/marble, +/turf/simulated/shuttle/floor/darkred, +/area/shuttle/merchant/home) +"aaE" = ( +/obj/effect/overlay/palmtree_r, +/turf/simulated/floor/holofloor/beach/sand, +/area/holodeck/source_beach) +"abL" = ( +/obj/machinery/space_heater, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/wood.dmi'; + icon_state = "wood_broken3" + }, +/area/ninja_dojo/dojo) +"abS" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/shuttle/floor/darkred, +/area/skipjack_station/start) +"acY" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/machinery/chem_master, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "white" + }, +/area/centcom/medical) +"adC" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/main_hall) +"adQ" = ( +/obj/structure/bed/chair/wood{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/bar) +"adR" = ( +/obj/structure/table/steel_reinforced, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/wizard_station) +"aet" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 9 + }, +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1331; + master_tag = "ninja_shuttle"; + name = "interior access button"; + pixel_x = -25; + pixel_y = 25; + req_access = list(150) + }, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/ninja_dojo/start) +"aeC" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 4 + }, +/obj/structure/table/marble, +/obj/item/weapon/reagent_containers/food/drinks/cup{ + pixel_x = -4; + pixel_y = 12 + }, +/obj/item/weapon/reagent_containers/food/drinks/cup{ + pixel_x = 8; + pixel_y = 12 + }, +/obj/item/weapon/reagent_containers/food/drinks/cup{ + pixel_x = -4 + }, +/obj/item/weapon/reagent_containers/food/drinks/cup{ + pixel_x = 8 + }, +/obj/item/weapon/reagent_containers/food/drinks/cup{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/item/weapon/reagent_containers/food/drinks/cup{ + pixel_x = 8; + pixel_y = -4 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/bar) +"afB" = ( +/obj/effect/floor_decal/borderfloorblack/corner, +/obj/effect/floor_decal/industrial/danger/corner, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/main_hall) +"agi" = ( +/obj/structure/sign/warning/docking_area, +/turf/unsimulated/wall, +/area/centcom/terminal) +"agp" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/coin/diamond, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/wizard_station) +"ahv" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/box/glasses/square, +/turf/simulated/floor/carpet, +/area/shuttle/merchant/home) +"aiQ" = ( +/obj/structure/reagent_dispensers/beerkeg, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeobserve) +"ajc" = ( +/obj/machinery/door/airlock/medical{ + name = "Morgue" + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel_grid" + }, +/area/centcom/medical) +"ajd" = ( +/obj/structure/table/reinforced, +/obj/item/device/pda/captain, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/command) +"ajl" = ( +/obj/structure/closet/secure_closet/freezer/kitchen, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/skipjack_station) +"ajm" = ( +/obj/structure/table/rack, +/obj/item/device/camera_film, +/obj/item/device/camera_film, +/obj/item/device/camera_film, +/obj/item/device/camera_film, +/obj/item/device/camera_film, +/obj/item/device/camera_film, +/obj/item/device/camera, +/obj/item/device/camera, +/obj/item/device/camera, +/obj/item/device/camera, +/obj/item/device/camera, +/obj/item/device/camera, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/syndicate_station) +"ajG" = ( +/obj/item/robot_parts/r_leg, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/wizard_station) +"ajX" = ( +/obj/item/target/alien, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/wood.dmi'; + icon_state = "wood_broken2" + }, +/area/ninja_dojo/dojo) +"akY" = ( +/turf/simulated/shuttle/plating, +/area/shuttle/large_escape_pod2/centcom) +"ale" = ( +/obj/machinery/computer/station_alert{ + dir = 1 + }, +/turf/simulated/shuttle/floor, +/area/shuttle/escape/centcom) +"alR" = ( +/obj/effect/floor_decal/corner/green/full{ + dir = 1 + }, +/obj/structure/table/holotable, +/obj/machinery/readybutton, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_thunderdomecourt) +"alY" = ( +/obj/machinery/door/window{ + dir = 2; + name = "AI Core Door"; + req_access = list(109) + }, +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "freezerfloor" + }, +/area/centcom/command) +"ami" = ( +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet{ + dir = 9 + }, +/obj/effect/floor_decal/carpet{ + dir = 5 + }, +/turf/unsimulated/floor{ + icon_state = "carpet" + }, +/area/skipjack_station) +"amo" = ( +/obj/structure/table/rack, +/obj/item/weapon/gun/energy/stunrevolver, +/obj/item/weapon/gun/energy/stunrevolver, +/obj/item/weapon/gun/energy/stunrevolver, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/techfloor.dmi'; + icon_state = "techfloor_gray" + }, +/area/centcom/specops) +"amw" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/terminal) +"amV" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 4 + }, +/obj/machinery/meter, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"ano" = ( +/obj/structure/table/rack, +/obj/item/weapon/storage/toolbox/emergency{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/storage/toolbox/emergency, +/obj/item/weapon/storage/toolbox/emergency{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/weapon/storage/toolbox/emergency{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/storage/toolbox/emergency, +/obj/item/weapon/storage/toolbox/emergency{ + pixel_x = -3; + pixel_y = -3 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/syndicate_station) +"aok" = ( +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/red/border, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/security) +"aom" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/holostool{ + dir = 1 + }, +/turf/simulated/floor/holofloor/desert, +/area/holodeck/source_picnicarea) +"aoo" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet/orange, +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/security) +"apA" = ( +/obj/structure/holostool{ + dir = 4 + }, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_boxingcourt) +"aqb" = ( +/obj/effect/floor_decal/borderfloorblack/corner, +/obj/effect/floor_decal/corner/red/bordercorner, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/security) +"aqj" = ( +/obj/structure/table/rack, +/obj/random/rigsuit, +/turf/simulated/shuttle/floor/darkred, +/area/skipjack_station/start) +"aqF" = ( +/obj/structure/table/steel, +/obj/item/device/pda/syndicate, +/turf/unsimulated/floor{ + icon_state = "cult"; + name = "plating" + }, +/area/skipjack_station) +"aqH" = ( +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/machinery/shower{ + dir = 4; + pixel_x = 5; + pixel_y = -1 + }, +/obj/structure/curtain/open/shower, +/turf/simulated/shuttle/floor/white, +/area/centcom/evac) +"aro" = ( +/turf/simulated/shuttle/floor/yellow, +/area/centcom/evac) +"aso" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/main_hall) +"asC" = ( +/obj/structure/flora/ausbushes/brflowers, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_picnicarea) +"atC" = ( +/obj/structure/table/rack, +/obj/item/weapon/rig/ert/assetprotection, +/obj/item/weapon/rig/ert/assetprotection, +/obj/item/weapon/rig/ert/assetprotection, +/obj/item/weapon/rig/ert/assetprotection, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"atZ" = ( +/obj/structure/table/holotable, +/obj/effect/floor_decal/corner/red/full, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_thunderdomecourt) +"auc" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/airlock_sensor{ + frequency = 1331; + id_tag = "trade2_sensor"; + pixel_x = 25 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1; + frequency = 1331; + id_tag = "trade2_vent" + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"avo" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/gun/energy/gun/nuclear, +/obj/item/weapon/hand_tele, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/specops) +"avR" = ( +/obj/machinery/door/airlock{ + icon = 'icons/obj/doors/Dooruranium.dmi' + }, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/ninja_dojo/dojo) +"awh" = ( +/obj/machinery/embedded_controller/radio/docking_port_multi{ + child_names_txt = "Airlock One;Airlock Two"; + child_tags_txt = "arrivals_dock_north_airlock;arrivals_dock_south_airlock"; + frequency = 1380; + id_tag = "arrivals_dock"; + pixel_y = -32 + }, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/green/bordercorner, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/terminal) +"awt" = ( +/obj/structure/table/rack, +/obj/item/weapon/gun/energy/plasmastun, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/syndicate_station) +"awS" = ( +/obj/structure/shuttle/engine/heater, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 1e+006 + }, +/turf/simulated/shuttle/wall/dark/no_join, +/area/shuttle/arrival/pre_game) +"axn" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/shuttle/floor/red, +/area/shuttle/administration/centcom) +"ayf" = ( +/obj/structure/bed/chair, +/turf/unsimulated/floor{ + icon_state = "cult"; + name = "plating" + }, +/area/skipjack_station) +"ayD" = ( +/obj/effect/floor_decal/corner/blue/full, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_boxingcourt) +"azd" = ( +/obj/item/clothing/head/collectable/paper, +/turf/unsimulated/beach/sand, +/area/beach) +"azw" = ( +/obj/machinery/vending/cigarette{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/bar) +"aAf" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible, +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1331; + master_tag = "merc_shuttle"; + name = "interior access button"; + pixel_x = 25; + pixel_y = 25; + req_access = list(150) + }, +/turf/simulated/shuttle/floor/voidcraft, +/area/syndicate_station/start) +"aAv" = ( +/obj/structure/table/rack, +/obj/item/weapon/plastique, +/obj/item/weapon/plastique, +/obj/item/weapon/plastique, +/obj/item/weapon/plastique, +/obj/item/weapon/plastique, +/obj/item/weapon/plastique, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/techfloor.dmi'; + icon_state = "techfloor_gray" + }, +/area/centcom/specops) +"aBg" = ( +/obj/structure/table/rack, +/obj/item/weapon/storage/backpack/security, +/obj/item/clothing/under/syndicate/combat, +/obj/item/clothing/shoes/galoshes, +/obj/item/clothing/head/bio_hood/janitor, +/obj/item/clothing/suit/bio_suit/janitor, +/obj/item/clothing/gloves/purple, +/obj/item/clothing/glasses/science, +/obj/item/weapon/storage/backpack/security, +/obj/item/clothing/under/syndicate/combat, +/obj/item/clothing/shoes/galoshes, +/obj/item/clothing/head/bio_hood/janitor, +/obj/item/clothing/suit/bio_suit/janitor, +/obj/item/clothing/gloves/purple, +/obj/item/clothing/glasses/science, +/obj/item/weapon/reagent_containers/spray/cleaner{ + pixel_x = 6; + pixel_y = 3 + }, +/obj/item/weapon/reagent_containers/spray/cleaner{ + pixel_x = 6; + pixel_y = 3 + }, +/obj/item/weapon/reagent_containers/spray/plantbgone, +/obj/item/weapon/reagent_containers/spray/plantbgone, +/obj/item/weapon/storage/box/lights/mixed, +/obj/item/weapon/storage/box/lights/mixed, +/obj/item/weapon/grenade/chem_grenade/cleaner, +/obj/item/weapon/grenade/chem_grenade/cleaner, +/obj/item/weapon/grenade/chem_grenade/cleaner, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/specops) +"aBE" = ( +/obj/structure/table/reinforced, +/obj/machinery/chemical_dispenser/ert, +/obj/item/weapon/reagent_containers/glass/beaker/large, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/techfloor.dmi'; + icon_state = "techfloor_gray" + }, +/area/centcom/specops) +"aEG" = ( +/obj/machinery/door/airlock/glass{ + name = "Central Access" + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel_grid" + }, +/area/centcom/command) +"aFs" = ( +/obj/machinery/autolathe{ + desc = "Your typical Autolathe. It appears to have much more options than your regular one, however..."; + hacked = 1; + name = "Unlocked Autolathe" + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/specops) +"aHb" = ( +/turf/unsimulated/wall{ + icon = 'icons/obj/doors/Doormaint.dmi'; + icon_state = "door_closed"; + name = "Sealed Door" + }, +/area/centcom/security) +"aHH" = ( +/obj/structure/holostool{ + dir = 8 + }, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_boxingcourt) +"aHT" = ( +/obj/machinery/vending/snack{ + dir = 4; + name = "hacked Getmore Chocolate Corp"; + prices = list() + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"aIm" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/skipjack_station) +"aIH" = ( +/obj/structure/table/rack, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/syndicate_station) +"aIO" = ( +/obj/machinery/computer/pod{ + id = "thunderdomeaxe"; + name = "Thunderdome Axe Supply" + }, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome) +"aIU" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/shuttle/floor/darkred, +/area/skipjack_station/start) +"aKs" = ( +/obj/structure/table/steel, +/turf/unsimulated/floor{ + icon_state = "steel_dirty" + }, +/area/virtual_reality) +"aLL" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/item/weapon/storage/briefcase, +/turf/unsimulated/floor{ + icon_state = "carpet" + }, +/area/centcom/command) +"aMd" = ( +/obj/effect/floor_decal/corner/green/full{ + dir = 1 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_emptycourt) +"aMs" = ( +/obj/machinery/door/airlock/hatch, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/wizard_station) +"aMY" = ( +/obj/structure/closet/secure_closet/bar, +/turf/unsimulated/floor{ + icon_state = "freezerfloor" + }, +/area/centcom/bar) +"aNL" = ( +/obj/effect/floor_decal/carpet, +/turf/unsimulated/floor{ + icon_state = "carpet" + }, +/area/ninja_dojo/dojo) +"aOF" = ( +/obj/effect/floor_decal/borderfloorwhite/corner, +/obj/effect/floor_decal/corner/paleblue/bordercorner, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "white" + }, +/area/centcom/medical) +"aOO" = ( +/turf/unsimulated/wall, +/area/syndicate_mothership/elite_squad) +"aPx" = ( +/obj/item/weapon/circuitboard/aiupload, +/obj/item/weapon/circuitboard/borgupload, +/obj/item/weapon/circuitboard/smes, +/obj/item/weapon/aiModule/nanotrasen, +/obj/item/weapon/aiModule/reset, +/obj/item/weapon/aiModule/freeformcore, +/obj/item/weapon/aiModule/protectStation, +/obj/item/weapon/aiModule/quarantine, +/obj/item/weapon/aiModule/paladin, +/obj/item/weapon/aiModule/robocop, +/obj/item/weapon/aiModule/safeguard, +/obj/structure/table/steel_reinforced, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/techfloor.dmi'; + icon_state = "techfloor_gray" + }, +/area/centcom/specops) +"aPN" = ( +/obj/item/weapon/mop, +/obj/structure/mopbucket, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/specops) +"aQv" = ( +/obj/machinery/computer/med_data{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/centcom/command) +"aQL" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/wizard_station) +"aRp" = ( +/obj/effect/step_trigger/teleporter/planetary_fall/sif, +/turf/simulated/sky/moving/north, +/area/space) +"aRw" = ( +/obj/structure/window/reinforced/holowindow{ + dir = 8 + }, +/obj/structure/holostool{ + dir = 8 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_emptycourt) +"aRJ" = ( +/obj/structure/toilet{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/shuttle/floor/black, +/area/skipjack_station/start) +"aTS" = ( +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1331; + master_tag = "vox_west_control"; + req_one_access = list(150) + }, +/turf/simulated/wall/skipjack, +/area/skipjack_station/start) +"aTW" = ( +/obj/effect/step_trigger/thrower{ + affect_ghosts = 1; + direction = 8; + name = "thrower_throwwest"; + nostop = 1; + stopper = 0; + tiles = 0 + }, +/turf/space/transit/east, +/area/space) +"aUg" = ( +/obj/effect/step_trigger/thrower{ + affect_ghosts = 1; + direction = 1; + name = "thrower_throwup"; + nostop = 1; + stopper = 0; + tiles = 0 + }, +/turf/space/transit/west, +/area/space) +"aUE" = ( +/obj/machinery/light, +/obj/structure/closet/syndicate/suit{ + name = "suit closet" + }, +/turf/simulated/shuttle/floor/voidcraft, +/area/syndicate_station/start) +"aVy" = ( +/obj/structure/bed/chair/wood{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/bar) +"aVM" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/item/weapon/reagent_containers/glass/bucket{ + amount_per_transfer_from_this = 50 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/specops) +"aVX" = ( +/obj/machinery/autolathe{ + desc = "Your typical Autolathe. It appears to have much more options than your regular one, however..."; + hacked = 1; + name = "Unlocked Autolathe" + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"aVZ" = ( +/turf/simulated/shuttle/wall/dark, +/area/shuttle/syndicate_elite/mothership) +"aWS" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/specops) +"aXr" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/simulated/shuttle/floor/darkred, +/area/shuttle/merchant/home) +"aZp" = ( +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "monotile" + }, +/area/centcom/command) +"aZW" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/toolbox/mechanical, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"bbv" = ( +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/plating.dmi'; + icon_state = "plating"; + name = "plating" + }, +/area/centcom/command) +"bbF" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/bordercorner{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/terminal) +"bbP" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/tdome) +"bbQ" = ( +/obj/structure/holostool{ + dir = 8 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_emptycourt) +"bcf" = ( +/obj/item/weapon/reagent_containers/food/condiment/small/peppershaker{ + pixel_x = 2; + pixel_y = 6 + }, +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/yellow/diagonal, +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/living) +"bcu" = ( +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/wood.dmi'; + icon_state = "wood_broken3" + }, +/area/skipjack_station) +"bcB" = ( +/obj/structure/table/rack, +/obj/item/weapon/rig/ert, +/obj/item/clothing/accessory/storage/black_vest, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/specops) +"bcT" = ( +/obj/machinery/sleep_console, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "white" + }, +/area/centcom/medical) +"bcY" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 1; + icon_state = "propulsion_r" + }, +/turf/simulated/shuttle/plating/airless/carry, +/area/shuttle/syndicate_elite/mothership) +"bdh" = ( +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 10 + }, +/obj/structure/table/standard, +/obj/item/weapon/melee/classic_baton, +/turf/unsimulated/floor{ + icon_state = "carpet" + }, +/area/centcom/living) +"bej" = ( +/obj/effect/landmark/virtual_reality{ + name = "Thunderdome (Green Team)" + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/virtual_reality) +"bgk" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/terminal) +"bhd" = ( +/obj/structure/table/standard, +/turf/unsimulated/beach/sand, +/area/beach) +"bhh" = ( +/obj/effect/floor_decal/corner/green{ + dir = 5 + }, +/obj/structure/holohoop, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"bhv" = ( +/obj/structure/table/steel_reinforced, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/item/weapon/weldpack, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"bhJ" = ( +/turf/simulated/shuttle/wall/voidcraft/green, +/area/ninja_dojo/start) +"bii" = ( +/obj/structure/table/wooden_reinforced, +/obj/item/weapon/material/sword/katana, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/ninja_dojo/dojo) +"biG" = ( +/obj/machinery/computer/shuttle_control/arrivals{ + dir = 4 + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_red" + }, +/area/shuttle/arrival/pre_game) +"biP" = ( +/obj/structure/undies_wardrobe, +/obj/item/device/radio/intercom{ + desc = "Talk through this. Evilly"; + dir = 4; + frequency = 1213; + name = "Subversive Intercom"; + pixel_x = 32; + subspace_transmission = 1; + syndie = 1 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/wizard_station) +"bjr" = ( +/obj/structure/holostool{ + dir = 1 + }, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_boxingcourt) +"bkx" = ( +/obj/structure/table/rack, +/obj/item/weapon/gun/energy/stunrevolver, +/obj/item/weapon/gun/energy/stunrevolver, +/obj/item/device/flash, +/obj/item/device/flash, +/obj/item/clothing/accessory/storage/brown_vest, +/obj/item/clothing/accessory/storage/brown_vest, +/obj/item/clothing/accessory/storage/brown_vest, +/obj/item/clothing/accessory/storage/brown_vest, +/obj/item/clothing/accessory/storage/brown_vest, +/obj/item/clothing/accessory/storage/brown_vest, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/specops) +"bkZ" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 10 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 10 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "white" + }, +/area/centcom/medical) +"blc" = ( +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet{ + dir = 6 + }, +/obj/structure/closet/secure_closet/personal, +/turf/unsimulated/floor{ + icon_state = "carpet" + }, +/area/centcom/living) +"bmp" = ( +/obj/item/target/syndicate, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/wizard_station) +"bmR" = ( +/obj/structure/table/rack, +/obj/item/weapon/gun/launcher/rocket, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"bna" = ( +/obj/item/robot_parts/r_arm, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/wizard_station) +"bnk" = ( +/obj/structure/bed/chair/holochair{ + dir = 1 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"bnC" = ( +/obj/machinery/computer/security/telescreen, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome) +"bnS" = ( +/obj/machinery/optable, +/turf/simulated/shuttle/floor/white, +/area/skipjack_station/start) +"bos" = ( +/obj/effect/floor_decal/techfloor{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/techfloor.dmi'; + icon_state = "techfloor_grid" + }, +/area/centcom/terminal) +"boE" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 5 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/main_hall) +"boQ" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/security) +"bpf" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/coin/uranium, +/obj/item/weapon/coin/silver, +/obj/item/weapon/coin/platinum, +/obj/item/weapon/coin/phoron, +/obj/item/weapon/coin/iron, +/obj/item/weapon/coin/gold, +/obj/item/weapon/coin/diamond, +/obj/structure/window/reinforced, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"bpm" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 8 + }, +/obj/machinery/meter, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"bpn" = ( +/obj/effect/floor_decal/corner/red/full{ + dir = 1 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"bpI" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/mirror{ + pixel_x = -28 + }, +/turf/unsimulated/floor{ + icon_state = "freezerfloor" + }, +/area/ninja_dojo/dojo) +"brr" = ( +/obj/structure/table/wooden_reinforced, +/obj/item/weapon/flame/candle, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/ninja_dojo/dojo) +"bsI" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/largecrate/hoverpod, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"bsU" = ( +/obj/machinery/light/small, +/turf/simulated/shuttle/floor/darkred, +/area/skipjack_station/start) +"bsW" = ( +/obj/machinery/atmospherics/unary/cryo_cell, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "white" + }, +/area/centcom/medical) +"bth" = ( +/obj/effect/floor_decal/corner/green{ + dir = 9 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"btF" = ( +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "smindicate"; + name = "Outer Airlock"; + opacity = 0 + }, +/obj/machinery/door/airlock/voidcraft{ + frequency = 1331; + id_tag = "merc_shuttle_outer"; + name = "Ship External Access"; + req_access = list(150) + }, +/turf/simulated/shuttle/plating, +/area/syndicate_station/start) +"bvG" = ( +/obj/structure/table/rack, +/obj/item/device/lightreplacer, +/obj/item/device/lightreplacer, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/specops) +"bwZ" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/techfloor.dmi'; + icon_state = "techfloor_grid" + }, +/area/centcom/terminal) +"bxe" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/terminal) +"bxx" = ( +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/wizard_station) +"bxM" = ( +/obj/structure/window/reinforced, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/shuttle/plating, +/area/shuttle/merchant/home) +"bzH" = ( +/obj/structure/table/rack, +/obj/item/weapon/gun/projectile/automatic/z8, +/obj/item/weapon/gun/projectile/automatic/z8, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"bzZ" = ( +/obj/machinery/door/window/holowindoor, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_courtroom) +"bAM" = ( +/obj/structure/table/rack, +/obj/item/weapon/melee/energy/sword, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"bAY" = ( +/obj/structure/bed/chair/shuttle{ + dir = 4 + }, +/obj/effect/landmark{ + name = "JoinLate" + }, +/turf/simulated/shuttle/floor/white, +/area/shuttle/arrival/pre_game) +"bBh" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "white" + }, +/area/centcom/medical) +"bBm" = ( +/obj/structure/window/reinforced, +/obj/machinery/door/blast/shutters{ + density = 0; + icon_state = "shutter0"; + id = "tradestarshutters"; + name = "Blast Shutters"; + opacity = 0 + }, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced/full, +/turf/simulated/shuttle/plating, +/area/shuttle/merchant/home) +"bBK" = ( +/obj/structure/closet/emcloset, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/terminal) +"bCf" = ( +/obj/machinery/door/airlock{ + icon = 'icons/obj/doors/Dooruranium.dmi' + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/virtual_reality) +"bCo" = ( +/obj/machinery/atmospherics/pipe/tank/air{ + start_pressure = 740.5 + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"bCq" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 1 + }, +/turf/simulated/shuttle/plating/airless/carry, +/area/shuttle/syndicate_elite/mothership) +"bCv" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/portable_atmospherics/canister/oxygen/prechilled, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/shuttle/escape/centcom) +"bCA" = ( +/obj/structure/table/bench/padded, +/obj/effect/floor_decal/borderfloorblack{ + dir = 5 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 5 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/security) +"bDi" = ( +/obj/machinery/newscaster{ + layer = 3.3; + pixel_y = 30 + }, +/obj/item/target, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/wizard_station) +"bDm" = ( +/obj/structure/table/rack, +/obj/item/weapon/gun/projectile/automatic/l6_saw, +/obj/item/ammo_magazine/m545saw, +/obj/item/ammo_magazine/m545saw, +/obj/item/ammo_magazine/m545saw, +/obj/item/ammo_magazine/m545saw, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"bDr" = ( +/obj/structure/table/rack, +/obj/item/weapon/shield/energy, +/obj/item/weapon/shield/energy, +/obj/item/weapon/shield/energy, +/obj/item/weapon/shield/energy, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"bEU" = ( +/obj/effect/step_trigger/thrower{ + affect_ghosts = 1; + name = "thrower_throwdown"; + tiles = 0 + }, +/obj/effect/step_trigger/teleporter/random{ + affect_ghosts = 1; + name = "escapeshuttle_leave"; + teleport_x = 25; + teleport_x_offset = 245; + teleport_y = 25; + teleport_y_offset = 245; + teleport_z = 6; + teleport_z_offset = 6 + }, +/turf/simulated/mineral, +/area/space) +"bFp" = ( +/obj/machinery/door/window/holowindoor{ + base_state = "right"; + dir = 2; + icon_state = "right"; + name = "Red Corner" + }, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_boxingcourt) +"bFQ" = ( +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "carpet" + }, +/area/ninja_dojo/dojo) +"bIu" = ( +/obj/structure/frame/computer, +/turf/simulated/shuttle/floor/darkred, +/area/skipjack_station/start) +"bIL" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 6 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/bar) +"bIS" = ( +/obj/effect/shuttle_landmark/cynosure/arrivals_offsite, +/turf/simulated/shuttle/floor, +/area/shuttle/arrival/pre_game) +"bJF" = ( +/obj/machinery/door/airlock, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/specops) +"bJO" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/simulated/shuttle/floor, +/area/centcom/evac) +"bKZ" = ( +/obj/machinery/portable_atmospherics/powered/scrubber, +/turf/simulated/shuttle/plating, +/area/centcom/evac) +"bLe" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/card/id/gold/captain/spare, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/command) +"bLg" = ( +/obj/effect/shuttle_landmark{ + base_area = /area/space; + base_turf = /turf/space; + docking_controller = "merc_elite_shuttle"; + landmark_tag = "syndie_elite_start"; + name = "Merc Elite Dock" + }, +/turf/simulated/shuttle/floor/darkred, +/area/shuttle/syndicate_elite/mothership) +"bLG" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/mirror{ + pixel_x = -28 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/shuttle/trade) +"bMp" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/unsimulated/wall, +/area/space) +"bNR" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 4; + icon_state = "propulsion_r" + }, +/turf/simulated/shuttle/plating/airless/carry, +/area/shuttle/merchant/home) +"bOP" = ( +/turf/simulated/shuttle/floor/white, +/area/skipjack_station/start) +"bOR" = ( +/obj/item/toy/chess/knight_white, +/turf/simulated/floor/holofloor/wmarble, +/area/holodeck/source_chess) +"bQm" = ( +/obj/structure/sink/kitchen{ + pixel_y = 28 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/wizard_station) +"bQz" = ( +/obj/structure/table/standard, +/obj/random/plushie, +/turf/simulated/shuttle/floor/white, +/area/shuttle/arrival/pre_game) +"bQE" = ( +/obj/structure/table/rack, +/obj/item/weapon/melee/energy/sword/pirate, +/obj/item/clothing/suit/space/pirate, +/obj/item/clothing/suit/space/pirate, +/obj/item/weapon/tank/oxygen, +/obj/item/weapon/pinpointer/shuttle/heist, +/obj/item/weapon/pinpointer/shuttle/heist, +/turf/simulated/shuttle/floor/darkred, +/area/skipjack_station/start) +"bSm" = ( +/obj/machinery/door/morgue, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/ninja_dojo/dojo) +"bSM" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "white" + }, +/area/centcom/medical) +"bTo" = ( +/obj/structure/table/rack, +/obj/item/weapon/gun/energy/laser, +/obj/item/weapon/gun/energy/laser, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"bTD" = ( +/obj/structure/table/rack, +/obj/item/ammo_magazine/m9mmp90, +/obj/item/ammo_magazine/m9mmp90, +/obj/item/ammo_magazine/m9mmp90, +/obj/item/ammo_magazine/m9mmp90, +/obj/item/weapon/gun/projectile/automatic/p90, +/obj/item/weapon/gun/projectile/automatic/p90, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"bUB" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 1; + icon_state = "propulsion_l" + }, +/turf/simulated/shuttle/plating/airless/carry, +/area/shuttle/syndicate_elite/mothership) +"bVM" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/main_hall) +"bVT" = ( +/obj/structure/table/rack, +/obj/item/weapon/gun/energy/xray, +/obj/item/weapon/gun/energy/xray, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"bWN" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/hos, +/obj/structure/sign/poster{ + pixel_y = -32 + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"bXa" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/brown, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/skipjack_station) +"bXb" = ( +/obj/structure/bed/chair/shuttle, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/shuttle/floor/white, +/area/shuttle/escape/centcom) +"bXp" = ( +/obj/structure/flora/grass/brown, +/turf/simulated/floor/holofloor/snow, +/area/holodeck/source_snowfield) +"bXw" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/tank/air{ + dir = 1; + start_pressure = 740 + }, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"bXx" = ( +/obj/machinery/microwave{ + pixel_x = -1; + pixel_y = 8 + }, +/obj/structure/table/steel, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"bXF" = ( +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/wizard_station) +"bXZ" = ( +/obj/item/weapon/ore, +/obj/structure/reagent_dispensers/beerkeg, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/skipjack_station) +"bYf" = ( +/obj/structure/bed, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/prison/solitary) +"bYp" = ( +/obj/structure/table/standard, +/turf/simulated/shuttle/floor/white, +/area/shuttle/arrival/pre_game) +"bYU" = ( +/obj/machinery/door/airlock/external{ + frequency = 1380; + icon_state = "door_locked"; + id_tag = "centcom_dock_airlock"; + locked = 1; + name = "Arrivals Airlock"; + req_access = list(13) + }, +/obj/machinery/conveyor{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/plating.dmi'; + icon_state = "plating"; + name = "plating" + }, +/area/centcom/terminal) +"bZj" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/effect/floor_decal/corner/white/diagonal, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/bar) +"bZw" = ( +/obj/item/toy/chess/knight_white, +/turf/simulated/floor/holofloor/bmarble, +/area/holodeck/source_chess) +"caf" = ( +/obj/structure/shuttle/window, +/obj/structure/grille, +/turf/simulated/shuttle/plating, +/area/shuttle/arrival/pre_game) +"cbv" = ( +/obj/structure/closet/crate/freezer, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 10 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 10 + }, +/obj/item/weapon/reagent_containers/glass/bottle/biomass, +/obj/item/weapon/reagent_containers/glass/bottle/biomass, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "white" + }, +/area/centcom/medical) +"cbP" = ( +/obj/structure/table/woodentable/holotable, +/obj/structure/window/reinforced/holowindow, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_courtroom) +"ccc" = ( +/obj/machinery/airlock_sensor{ + frequency = 1331; + id_tag = "ninja_shuttle_sensor"; + pixel_y = 28 + }, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/ninja_dojo/start) +"ccf" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"ccw" = ( +/obj/machinery/telecomms/bus/preset_cent, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/main_hall) +"ceo" = ( +/obj/machinery/vending/dinnerware, +/obj/effect/floor_decal/corner/white/diagonal, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/bar) +"ceC" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/item/device/kit/paint/ripley/death, +/obj/item/device/kit/paint/ripley/flames_blue, +/obj/item/device/kit/paint/ripley/flames_red, +/obj/item/device/kit/paint/ripley, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"cfm" = ( +/obj/structure/table/rack, +/obj/item/weapon/gun/energy/gun, +/obj/item/weapon/gun/energy/gun, +/obj/item/weapon/gun/energy/gun, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/techfloor.dmi'; + icon_state = "techfloor_gray" + }, +/area/centcom/specops) +"cfy" = ( +/obj/structure/table/marble, +/obj/machinery/chemical_dispenser/bar_soft/full, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/bar) +"cfz" = ( +/obj/fiftyspawner/rods, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/skipjack_station) +"chb" = ( +/obj/structure/table/glass, +/obj/item/weapon/book/codex/lore/vir, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/main_hall) +"chh" = ( +/obj/structure/bed/chair/shuttle, +/turf/simulated/shuttle/floor/red, +/area/shuttle/escape/centcom) +"chC" = ( +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/mob/living/silicon/decoy{ + name = "A.L.I.C.E." + }, +/turf/unsimulated/floor{ + icon_state = "freezerfloor" + }, +/area/centcom/command) +"chP" = ( +/obj/effect/floor_decal/sign/dock/three, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/terminal) +"ciy" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced, +/obj/item/weapon/gun/projectile/shotgun/pump/combat, +/obj/item/weapon/gun/projectile/shotgun/pump/combat, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/techfloor.dmi'; + icon_state = "techfloor_gray" + }, +/area/centcom/specops) +"cky" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/main_hall) +"ckJ" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/weapon/gun/energy/ionrifle, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/weapon/gun/energy/ionrifle, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/techfloor.dmi'; + icon_state = "techfloor_gray" + }, +/area/centcom/specops) +"clN" = ( +/obj/effect/shuttle_landmark/cynosure/escape/offsite, +/turf/simulated/shuttle/floor, +/area/shuttle/escape/centcom) +"clW" = ( +/turf/simulated/shuttle/plating, +/area/centcom/evac) +"cmj" = ( +/obj/machinery/door/airlock/centcom{ + icon_state = "door_locked"; + locked = 1 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/specops) +"cmG" = ( +/obj/structure/table/woodentable/holotable, +/obj/structure/window/reinforced/holowindow, +/obj/structure/window/reinforced/holowindow{ + dir = 8 + }, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_courtroom) +"cmS" = ( +/obj/machinery/door/airlock/glass, +/turf/simulated/shuttle/floor/black, +/area/centcom/evac) +"cmW" = ( +/obj/structure/table/rack, +/obj/item/clothing/under/color/green, +/obj/item/clothing/shoes/brown, +/obj/item/weapon/melee/energy/axe, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/tdome/tdome1) +"cnb" = ( +/obj/effect/shuttle_landmark{ + base_area = /area/centcom/command; + base_turf = /turf/unsimulated/floor; + docking_controller = "centcom_shuttle"; + landmark_tag = "centcom_shuttle_start"; + name = "Transit Shuttle Bay" + }, +/turf/simulated/shuttle/floor, +/area/shuttle/transport1/centcom) +"cnx" = ( +/obj/structure/table/standard, +/obj/machinery/chemical_dispenser/bar_soft/full, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/skipjack_station) +"coC" = ( +/obj/effect/landmark/ai_multicam_room, +/turf/unsimulated/ai_visible, +/area/ai_multicam_room) +"cpa" = ( +/obj/item/weapon/tool/wrench, +/obj/item/weapon/mop, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"cqR" = ( +/obj/structure/closet/crate, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/shuttle/trade) +"crr" = ( +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/plating.dmi'; + icon_state = "plating"; + name = "plating" + }, +/area/centcom/specops) +"crT" = ( +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_meetinghall) +"cso" = ( +/obj/machinery/door/airlock/glass{ + icon_state = "door_locked"; + locked = 1; + name = "Central Access" + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel_grid" + }, +/area/centcom/main_hall) +"csP" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/box/bodybags, +/obj/item/weapon/storage/box/bodybags{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "white" + }, +/area/centcom/medical) +"csT" = ( +/obj/structure/table/rack, +/obj/item/device/megaphone, +/obj/item/device/megaphone, +/obj/item/device/megaphone, +/obj/item/device/megaphone, +/obj/item/device/megaphone, +/obj/item/device/megaphone, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/syndicate_station) +"csV" = ( +/obj/structure/table/rack, +/obj/item/weapon/gun/energy/gun, +/obj/item/weapon/gun/energy/gun, +/obj/item/weapon/gun/energy/gun, +/obj/item/weapon/cell/device/weapon, +/obj/item/weapon/cell/device/weapon, +/obj/item/weapon/cell/device/weapon, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/syndicate_station) +"ctM" = ( +/obj/machinery/door/airlock/hatch{ + frequency = 1331; + id_tag = "vox_southwest_lock"; + req_access = list(150) + }, +/obj/machinery/atmospherics/pipe/simple/visible, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"cug" = ( +/obj/structure/closet/cabinet, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"cum" = ( +/obj/effect/decal/cleanable/blood, +/turf/unsimulated/floor{ + icon_state = "freezerfloor" + }, +/area/skipjack_station) +"cuy" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/turf/simulated/shuttle/floor/voidcraft, +/area/syndicate_station/start) +"cuH" = ( +/mob/living/silicon/decoy{ + icon_state = "ai-malf"; + name = "GLaDOS" + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/syndicate_station) +"cuK" = ( +/obj/machinery/door/airlock/glass{ + icon_state = "door_locked"; + locked = 1; + name = "Arrivals Processing" + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel_grid" + }, +/area/centcom/terminal) +"cvJ" = ( +/obj/machinery/computer/pod{ + id = "thunderdomehea"; + name = "Thunderdome Heavy Supply" + }, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome) +"cwx" = ( +/obj/structure/kitchenspike, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/skipjack_station) +"cwL" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/mecha/working/ripley/mining, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"cwO" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/command) +"cxc" = ( +/obj/machinery/computer/station_alert/all{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + desc = "Talk through this. Evilly"; + dir = 4; + frequency = 1213; + name = "Subversive Intercom"; + pixel_x = 32; + subspace_transmission = 1; + syndie = 1 + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/wizard_station) +"cxk" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/unsimulated/wall, +/area/space) +"cxo" = ( +/obj/item/target, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/ninja_dojo/dojo) +"cxY" = ( +/obj/machinery/door/airlock{ + name = "Restroom" + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/shuttle/trade) +"cyu" = ( +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 10 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"cyx" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"czK" = ( +/obj/machinery/teleport/station, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/specops) +"cAh" = ( +/obj/structure/window/reinforced, +/obj/structure/shuttle/engine/heater{ + dir = 1 + }, +/turf/simulated/floor/airless, +/area/shuttle/syndicate_elite/mothership) +"cAI" = ( +/obj/machinery/cryopod/robot/door/dorms{ + time_till_despawn = 200 + }, +/turf/simulated/shuttle/floor/white, +/area/centcom/main_hall) +"cBj" = ( +/obj/machinery/light, +/obj/structure/table/standard, +/obj/item/weapon/soap, +/obj/item/weapon/towel{ + color = "#0000FF" + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"cCD" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/wizard_station) +"cDm" = ( +/obj/structure/table/standard, +/obj/item/weapon/book/codex/corp_regs, +/turf/simulated/shuttle/floor/white, +/area/shuttle/arrival/pre_game) +"cDr" = ( +/obj/structure/target_stake, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/wizard_station) +"cDE" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/unsimulated/wall, +/area/space) +"cEK" = ( +/obj/effect/step_trigger/thrower{ + affect_ghosts = 1; + direction = 8; + name = "thrower_throwwest"; + nostop = 1; + stopper = 0; + tiles = 0 + }, +/turf/space/transit/north, +/area/space) +"cFG" = ( +/obj/item/toy/chess/king_white, +/turf/simulated/floor/holofloor/bmarble, +/area/holodeck/source_chess) +"cIv" = ( +/obj/structure/table/rack, +/obj/item/device/flashlight/maglight, +/obj/item/device/flashlight/maglight, +/obj/item/device/flashlight/maglight, +/obj/item/device/flashlight/maglight, +/obj/item/device/flashlight/maglight, +/obj/item/device/flashlight/maglight, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/syndicate_station) +"cIP" = ( +/turf/unsimulated/wall{ + icon = 'icons/obj/doors/Doormaint.dmi'; + icon_state = "door_closed"; + name = "Sealed Door" + }, +/area/centcom/terminal) +"cJg" = ( +/obj/structure/table/steel_reinforced, +/obj/item/xenos_claw, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/wizard_station) +"cKc" = ( +/obj/structure/shuttle/engine/propulsion{ + icon_state = "burst_l" + }, +/turf/simulated/shuttle/plating/airless/carry, +/area/shuttle/supply) +"cKC" = ( +/obj/machinery/airlock_sensor{ + frequency = 1331; + id_tag = "vox_east_sensor"; + pixel_x = -25 + }, +/obj/effect/shuttle_landmark{ + base_area = /area/space; + base_turf = /turf/space; + landmark_tag = "skipjack_start"; + name = "The Hideaway" + }, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"cLf" = ( +/obj/machinery/door/airlock/external{ + frequency = 1380; + icon_state = "door_locked"; + id_tag = "supply_shuttle_hatch"; + locked = 1; + name = "Shuttle Hatch"; + req_access = list(13) + }, +/turf/simulated/shuttle/floor, +/area/shuttle/supply) +"cLJ" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/security) +"cLY" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 5 + }, +/turf/simulated/shuttle/floor/voidcraft, +/area/syndicate_station/start) +"cMH" = ( +/obj/structure/table/marble, +/obj/effect/floor_decal/corner/white/diagonal, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/bar) +"cNv" = ( +/obj/structure/table/woodentable, +/obj/structure/flora/pottedplant/fern{ + pixel_y = 8 + }, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/bar) +"cNF" = ( +/obj/structure/table/rack, +/obj/item/weapon/storage/box/handcuffs{ + pixel_x = 4; + pixel_y = 2 + }, +/obj/item/weapon/storage/box/flashbangs, +/obj/item/weapon/storage/box/smokes, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/syndicate_station) +"cOd" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/box/handcuffs, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/shuttle/trade) +"cOI" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/suit/wizrobe/red, +/obj/item/clothing/shoes/sandal, +/obj/item/clothing/head/wizard/red, +/obj/item/weapon/staff, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/wizard_station) +"cOS" = ( +/obj/machinery/mech_recharger, +/obj/mecha/combat/gygax/dark, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/centcom/specops) +"cPm" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/tdome) +"cRj" = ( +/obj/machinery/door/airlock/centcom{ + name = "General Access"; + req_access = list(101) + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/techfloor.dmi'; + icon_state = "techfloor_gray" + }, +/area/centcom/command) +"cRp" = ( +/obj/structure/table/marble, +/obj/effect/floor_decal/corner/white/diagonal, +/obj/item/weapon/reagent_containers/food/condiment/enzyme, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/bar) +"cSr" = ( +/obj/machinery/door/blast/regular{ + id = "crescent_thunderdome"; + name = "Thunderdome" + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel_grid" + }, +/area/tdome) +"cTw" = ( +/obj/effect/landmark{ + name = "wizard" + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/wizard_station) +"cTP" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/specops) +"cUf" = ( +/obj/structure/table/steel_reinforced, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/centcom/specops) +"cVN" = ( +/obj/machinery/door/blast/regular{ + id = "CREED"; + name = "Ready Room" + }, +/turf/simulated/shuttle/floor, +/area/centcom/evac) +"cVQ" = ( +/obj/structure/table/rack, +/obj/item/clothing/accessory/storage/white_vest, +/obj/item/clothing/accessory/storage/white_vest, +/obj/item/clothing/accessory/storage/white_vest, +/obj/item/clothing/accessory/storage/white_vest, +/obj/item/clothing/accessory/storage/white_vest, +/obj/item/clothing/accessory/storage/white_vest, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/syndicate_station) +"cXa" = ( +/obj/effect/floor_decal/corner/yellow/diagonal, +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/living) +"cXr" = ( +/obj/effect/floor_decal/corner/white{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/terminal) +"cYm" = ( +/obj/effect/wingrille_spawn/reinforced, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/ninja_dojo/dojo) +"dam" = ( +/obj/machinery/door/airlock/glass_medical{ + name = "Chemistry" + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel_grid" + }, +/area/centcom/medical) +"daE" = ( +/obj/structure/table/rack, +/turf/unsimulated/floor{ + icon_state = "asteroid" + }, +/area/skipjack_station) +"dcW" = ( +/obj/effect/floor_decal/corner/blue/full{ + dir = 1 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_boxingcourt) +"dcY" = ( +/obj/machinery/door/window/brigdoor/northright, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/main_hall) +"ddn" = ( +/obj/structure/toilet{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/shuttle/trade) +"ddv" = ( +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/skipjack_station) +"ddI" = ( +/obj/structure/bed/chair, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/security) +"dex" = ( +/obj/machinery/vending/boozeomat{ + req_access = null + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"deX" = ( +/obj/structure/table/steel_reinforced, +/obj/item/mecha_parts/mecha_equipment/weapon/energy/ion, +/obj/item/mecha_parts/mecha_equipment/weapon/energy/taser, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/centcom/specops) +"dfg" = ( +/obj/item/device/radio/intercom{ + broadcasting = 1; + dir = 1; + frequency = 1213; + name = "Syndicate Ops Intercom"; + pixel_y = 26; + subspace_transmission = 1; + syndie = 1 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/syndicate_station) +"dfh" = ( +/obj/machinery/body_scanconsole, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "white" + }, +/area/centcom/medical) +"dgl" = ( +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/terminal) +"dgH" = ( +/obj/item/weapon/bikehorn/rubberducky, +/turf/unsimulated/floor{ + icon_state = "freezerfloor" + }, +/area/centcom/specops) +"dgX" = ( +/obj/structure/bed/chair/wood/wings, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/bar) +"dhb" = ( +/obj/machinery/door/airlock/glass_security{ + name = "Airlock"; + req_access = list(150) + }, +/obj/machinery/door/blast/regular{ + id = "syndicate_elite_mech_room"; + name = "Mech Room Door" + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/syndicate_mothership/elite_squad) +"dhd" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/closet/crate/freezer/rations, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"dhO" = ( +/obj/effect/wingrille_spawn/reinforced, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/syndicate_mothership/elite_squad) +"dif" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/firstaid/adv{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/weapon/storage/firstaid/adv, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/ninja_dojo/dojo) +"diJ" = ( +/obj/effect/floor_decal/corner/green{ + dir = 6 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_thunderdomecourt) +"dja" = ( +/obj/item/weapon/storage/box, +/turf/unsimulated/floor{ + icon_state = "asteroid" + }, +/area/skipjack_station) +"djl" = ( +/obj/machinery/computer/security, +/turf/simulated/shuttle/floor/red, +/area/shuttle/administration/centcom) +"dju" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/main_hall) +"dkG" = ( +/obj/structure/table/rack, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/suit/space/syndicate/black/green, +/obj/item/clothing/mask/breath, +/obj/item/clothing/head/helmet/space/syndicate/black/green, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/syndicate_station) +"dlj" = ( +/obj/structure/undies_wardrobe, +/turf/unsimulated/floor{ + icon_state = "freezerfloor" + }, +/area/skipjack_station) +"dlk" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 4; + icon_state = "propulsion_r" + }, +/turf/simulated/shuttle/plating/airless/carry, +/area/shuttle/response_ship/start) +"dls" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/structure/table/glass, +/obj/structure/closet/secure_closet/medical_wall/pills{ + pixel_y = -32 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "white" + }, +/area/centcom/medical) +"dlC" = ( +/obj/structure/closet/wardrobe/suit, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/shuttle/trade) +"dmM" = ( +/obj/structure/table/rack, +/obj/item/clothing/under/color/green, +/obj/item/clothing/shoes/brown, +/obj/item/clothing/suit/armor/tdome/green, +/obj/item/clothing/head/helmet/thunderdome, +/obj/item/weapon/melee/baton/loaded, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/tdome/tdome1) +"dns" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/item/weapon/tank/nitrogen, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"dnS" = ( +/obj/machinery/door/airlock/hatch{ + req_access = list(150) + }, +/turf/unsimulated/floor{ + icon_state = "cult"; + name = "plating" + }, +/area/skipjack_station) +"dnZ" = ( +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet{ + dir = 10 + }, +/obj/effect/floor_decal/carpet{ + dir = 6 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_meetinghall) +"dpK" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "white" + }, +/area/centcom/medical) +"dpL" = ( +/obj/item/toy/chess/queen_white, +/turf/simulated/floor/holofloor/wmarble, +/area/holodeck/source_chess) +"dqf" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced/full, +/turf/simulated/shuttle/plating, +/area/shuttle/escape/centcom) +"dqj" = ( +/obj/machinery/door/airlock/hatch{ + req_access = list(150) + }, +/turf/simulated/shuttle/floor/black, +/area/skipjack_station/start) +"dqK" = ( +/obj/effect/floor_decal/corner/green{ + dir = 9 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_emptycourt) +"dqR" = ( +/obj/machinery/computer/teleporter, +/turf/simulated/shuttle/plating, +/area/ninja_dojo/start) +"dqX" = ( +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1331; + master_tag = "vox_east_control"; + req_access = list(150) + }, +/turf/simulated/wall/skipjack, +/area/skipjack_station/start) +"dsW" = ( +/obj/structure/table/steel, +/obj/item/device/radio/uplink, +/turf/unsimulated/floor{ + icon_state = "cult"; + name = "plating" + }, +/area/skipjack_station) +"dtg" = ( +/obj/machinery/vending/cola{ + name = "hacked Robust Softdrinks"; + prices = list() + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/specops) +"dti" = ( +/obj/machinery/door/airlock/hatch{ + req_access = list(150) + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/skipjack_station) +"duO" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/box/syndie_kit/chameleon, +/obj/item/weapon/storage/box/syndie_kit/clerical, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/shuttle/trade) +"dxq" = ( +/obj/effect/floor_decal/corner/red{ + dir = 10 + }, +/obj/structure/holohoop{ + dir = 1 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"dxQ" = ( +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/wood.dmi'; + icon_state = "wood_broken1" + }, +/area/ninja_dojo/dojo) +"dxS" = ( +/obj/effect/step_trigger/thrower{ + affect_ghosts = 1; + direction = 4; + name = "thrower_throweast"; + nostop = 1; + stopper = 0; + tiles = 0 + }, +/turf/space/transit/north, +/area/space) +"dyo" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 10 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/main_hall) +"dyr" = ( +/obj/effect/floor_decal/carpet, +/turf/unsimulated/floor{ + icon_state = "carpet" + }, +/area/centcom/living) +"dyT" = ( +/obj/structure/window/reinforced/holowindow{ + dir = 8 + }, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_boxingcourt) +"dzs" = ( +/obj/machinery/r_n_d/server/centcom, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/main_hall) +"dzx" = ( +/obj/structure/shuttle/engine/heater{ + dir = 4 + }, +/turf/simulated/shuttle/plating/airless, +/area/shuttle/merchant/home) +"dzS" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "white" + }, +/area/centcom/medical) +"dzV" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/book/manual/engineering_hacking, +/obj/item/device/radio/intercom{ + desc = "Talk through this. Evilly"; + dir = 4; + frequency = 1213; + name = "Subversive Intercom"; + pixel_x = 32; + subspace_transmission = 1; + syndie = 1 + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/wizard_station) +"dAl" = ( +/obj/machinery/button/remote/blast_door{ + id = "tradestationshutters"; + name = "warehouse control"; + pixel_x = 30; + req_access = list(160) + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/shuttle/trade) +"dAU" = ( +/obj/item/weapon/reagent_containers/food/snacks/spellburger{ + pixel_y = 8 + }, +/obj/structure/table/marble, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/wizard_station) +"dAV" = ( +/mob/living/simple_mob/animal/passive/tindalos, +/turf/simulated/shuttle/floor/black, +/area/skipjack_station/start) +"dCm" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/wizard_station) +"dCq" = ( +/obj/machinery/door/blast/shutters{ + density = 0; + icon_state = "shutter0"; + id = "tradebridgeshutters"; + name = "Blast Shutters"; + opacity = 0 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced/full, +/turf/simulated/shuttle/plating, +/area/shuttle/merchant/home) +"dDJ" = ( +/obj/machinery/icecream_vat, +/obj/effect/floor_decal/corner/white/diagonal, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/bar) +"dED" = ( +/obj/machinery/computer/teleporter, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/ninja_dojo/dojo) +"dEV" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/landmark{ + name = "tdomeobserve" + }, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeobserve) +"dFq" = ( +/obj/machinery/appliance/mixer/candy, +/obj/effect/floor_decal/corner/white/diagonal, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/bar) +"dFI" = ( +/obj/effect/landmark{ + name = "Syndicate-Commando-Bomb" + }, +/turf/simulated/shuttle/floor/darkred, +/area/shuttle/syndicate_elite/mothership) +"dFX" = ( +/obj/machinery/vending/cigarette{ + name = "hacked cigarette machine"; + prices = list(); + products = list(/obj/item/weapon/storage/fancy/cigarettes = 10, /obj/item/weapon/storage/box/matches = 10, /obj/item/weapon/flame/lighter/zippo = 4, /obj/item/clothing/mask/smokable/cigarette/cigar/havana = 2) + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/specops) +"dGf" = ( +/obj/machinery/flasher{ + id = "syndieflash"; + pixel_x = 28 + }, +/obj/structure/toilet{ + dir = 8 + }, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/syndicate_station/start) +"dGs" = ( +/obj/structure/bed/chair/comfy/teal{ + dir = 1 + }, +/obj/effect/floor_decal/carpet, +/turf/unsimulated/floor{ + icon_state = "carpet" + }, +/area/centcom/command) +"dGA" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "white" + }, +/area/centcom/medical) +"dHb" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/shoes/sandal/marisa{ + desc = "A set of fancy shoes that are as functional as they are comfortable."; + name = "Gentlemans Shoes" + }, +/obj/item/clothing/under/gentlesuit, +/obj/item/clothing/suit/wizrobe/gentlecoat, +/obj/item/clothing/head/wizard/cap, +/obj/item/weapon/staff/gentcane, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/wizard_station) +"dHt" = ( +/obj/structure/table/rack, +/obj/item/device/flashlight/flare, +/obj/item/device/flashlight/flare, +/obj/item/device/flashlight/flare, +/obj/item/device/flashlight/flare, +/obj/item/device/flashlight/flare, +/obj/item/device/flashlight/flare, +/obj/item/device/flashlight/flare, +/obj/item/device/flashlight/flare, +/obj/item/device/flashlight/flare, +/obj/item/device/flashlight/flare, +/obj/item/device/flashlight/flare, +/obj/item/device/flashlight/flare, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/syndicate_station) +"dHV" = ( +/obj/machinery/door/airlock/glass{ + name = "Elevator" + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel_grid" + }, +/area/centcom/main_hall) +"dIj" = ( +/obj/effect/shuttle_landmark/cynosure/large_escape_pod2/transit, +/turf/space/transit/east, +/area/shuttle/large_escape_pod2/transit) +"dIT" = ( +/obj/structure/table/rack, +/obj/item/device/binoculars, +/obj/item/device/binoculars, +/obj/item/device/binoculars, +/obj/item/device/binoculars, +/obj/item/device/binoculars, +/obj/item/device/binoculars, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/syndicate_station) +"dIV" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/largecrate/hoverpod, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"dJB" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + id_tag = "trade_shuttle_bay"; + name = "shuttle bay controller"; + pixel_x = 25; + tag_door = "trade_shuttle_bay_door" + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/shuttle/trade) +"dJK" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/bar) +"dKa" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/machinery/iv_drip, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "white" + }, +/area/centcom/medical) +"dKS" = ( +/obj/item/toy/chess/rook_white, +/turf/simulated/floor/holofloor/wmarble, +/area/holodeck/source_chess) +"dLk" = ( +/obj/structure/table/standard, +/obj/item/weapon/deck/cards, +/turf/simulated/shuttle/floor/black, +/area/skipjack_station/start) +"dOl" = ( +/obj/structure/table/steel, +/obj/random/energy, +/turf/unsimulated/floor{ + icon_state = "steel_dirty" + }, +/area/virtual_reality) +"dPK" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/space/vox/stealth, +/obj/item/clothing/suit/space/vox/stealth, +/obj/item/clothing/head/helmet/space/vox/stealth, +/obj/item/clothing/head/helmet/space/vox/stealth, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/skipjack_station) +"dQj" = ( +/obj/effect/wingrille_spawn/reinforced/crescent, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/shuttle/trade) +"dQy" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/structure/table/glass, +/obj/structure/closet/secure_closet/medical_wall{ + name = "O- Blood Locker"; + pixel_x = 32 + }, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OMinus, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "white" + }, +/area/centcom/medical) +"dQH" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/syndicate_station/start) +"dQV" = ( +/obj/effect/floor_decal/sign/small_6, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_chess) +"dSb" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/item/weapon/rig/ert/medical{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/rig/ert/medical, +/obj/item/weapon/rig/ert/medical{ + pixel_x = -2; + pixel_y = -2 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/techfloor.dmi'; + icon_state = "techfloor_gray" + }, +/area/centcom/specops) +"dSd" = ( +/obj/effect/floor_decal/corner/green{ + dir = 6 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_emptycourt) +"dST" = ( +/obj/structure/undies_wardrobe, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/specops) +"dTY" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/toolbox/emergency, +/obj/item/bodybag/cryobag, +/obj/item/bodybag/cryobag, +/obj/item/bodybag/cryobag, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "white" + }, +/area/centcom/medical) +"dVG" = ( +/obj/effect/floor_decal/corner/red/full{ + dir = 1 + }, +/obj/structure/window/reinforced/holowindow/disappearing{ + dir = 1 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_thunderdomecourt) +"dWr" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/space, +/area/space) +"dWQ" = ( +/obj/machinery/door/airlock/external{ + icon_state = "door_locked"; + locked = 1 + }, +/obj/effect/forcefield{ + desc = "You can't get in. Heh."; + invisibility = 60; + layer = 1; + name = "Blocker" + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/centcom/terminal) +"dXh" = ( +/obj/effect/floor_decal/corner/green{ + dir = 9 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_thunderdomecourt) +"dXm" = ( +/turf/unsimulated/floor{ + icon_state = "freezerfloor" + }, +/area/centcom/specops) +"dYu" = ( +/obj/structure/table/steel, +/obj/machinery/recharger, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/shuttle/floor/darkred, +/area/skipjack_station/start) +"dYv" = ( +/obj/structure/table/rack, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_vest, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/syndicate_station) +"dYA" = ( +/obj/structure/shuttle/engine/heater, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/shuttle/wall/dark/no_join, +/area/shuttle/arrival/pre_game) +"dZT" = ( +/obj/machinery/light, +/turf/simulated/shuttle/floor, +/area/shuttle/arrival/pre_game) +"ebh" = ( +/obj/machinery/shower{ + dir = 8 + }, +/obj/structure/curtain/open/shower, +/obj/structure/window/reinforced/tinted, +/turf/unsimulated/floor{ + icon_state = "freezerfloor" + }, +/area/centcom/specops) +"ebr" = ( +/obj/machinery/gibber, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/skipjack_station) +"ebR" = ( +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeobserve) +"ebS" = ( +/obj/structure/table/rack, +/obj/item/weapon/gun/projectile/automatic/sts35, +/obj/item/weapon/gun/projectile/automatic/sts35, +/obj/item/ammo_magazine/m545, +/obj/item/ammo_magazine/m545, +/obj/item/ammo_magazine/m545, +/obj/item/ammo_magazine/m545, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/syndicate_station) +"ebT" = ( +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/centcom/specops) +"ech" = ( +/turf/simulated/mineral, +/area/skipjack_station) +"eck" = ( +/obj/structure/table/rack, +/obj/item/taperoll/police, +/obj/item/taperoll/police, +/obj/item/taperoll/police, +/obj/item/taperoll/police, +/obj/item/taperoll/police, +/obj/item/taperoll/police, +/obj/item/device/flash, +/obj/item/device/flash, +/obj/item/device/flash, +/obj/item/device/flash, +/obj/item/device/flash, +/obj/item/device/flash, +/obj/item/weapon/melee/baton/loaded, +/obj/item/weapon/melee/baton/loaded, +/obj/item/weapon/melee/baton/loaded, +/obj/item/weapon/melee/baton/loaded, +/obj/item/weapon/melee/baton/loaded, +/obj/item/weapon/melee/baton/loaded, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/techfloor.dmi'; + icon_state = "techfloor_gray" + }, +/area/centcom/specops) +"ecz" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/box/handcuffs, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome) +"ecR" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/ninja_dojo/start) +"edj" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/weapon/gun/launcher/grenade, +/obj/item/weapon/gun/launcher/grenade, +/obj/structure/window/reinforced, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/techfloor.dmi'; + icon_state = "techfloor_gray" + }, +/area/centcom/specops) +"een" = ( +/obj/effect/step_trigger/thrower{ + affect_ghosts = 1; + name = "thrower_throwdown"; + tiles = 0 + }, +/turf/simulated/sky/moving/south, +/area/space) +"eeJ" = ( +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "carpet" + }, +/area/ninja_dojo/dojo) +"eeY" = ( +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 32 + }, +/obj/structure/bed/chair, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/vending/wallmed1{ + layer = 3.3; + name = "Emergency NanoMed"; + pixel_x = -28 + }, +/turf/simulated/shuttle/floor/red, +/area/shuttle/response_ship/start) +"efr" = ( +/turf/simulated/shuttle/floor, +/area/shuttle/transport1/centcom) +"egd" = ( +/obj/effect/step_trigger/teleporter/landmark{ + landmark_id = "fall_sif" + }, +/turf/simulated/sky/moving/north, +/area/space) +"egp" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + id_tag = "centcom_shuttle"; + pixel_y = -25; + tag_door = "centcom_shuttle_hatch" + }, +/turf/simulated/shuttle/floor, +/area/shuttle/transport1/centcom) +"ehm" = ( +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/shuttle/trade) +"ehU" = ( +/obj/machinery/door/airlock/external{ + req_access = list(150) + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/syndicate_mothership/elite_squad) +"eid" = ( +/obj/structure/table/standard, +/obj/item/device/paicard, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/skipjack_station) +"ekW" = ( +/obj/machinery/door/airlock/glass_centcom{ + name = "General Access"; + req_one_access = list(101) + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/techfloor.dmi'; + icon_state = "techfloor_gray" + }, +/area/centcom/living) +"eln" = ( +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/skipjack_station) +"elO" = ( +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 32 + }, +/obj/structure/bed/chair, +/turf/simulated/shuttle/floor/red, +/area/shuttle/response_ship/start) +"enr" = ( +/obj/structure/table/rack, +/obj/item/weapon/reagent_containers/spray/cleaner, +/turf/simulated/shuttle/plating, +/area/centcom/evac) +"eoa" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/shuttle/merchant/home) +"eon" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_picnicarea) +"eox" = ( +/obj/structure/closet/emcloset, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/terminal) +"eoG" = ( +/obj/structure/bed/chair/wood/wings{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/bar) +"eoQ" = ( +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 9 + }, +/obj/structure/holostool{ + dir = 8 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_theatre) +"epa" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/book/codex/corp_regs, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/wizard_station) +"epP" = ( +/turf/simulated/floor/holofloor/bmarble, +/area/holodeck/source_chess) +"epQ" = ( +/obj/machinery/door/airlock/hatch{ + req_access = list(150) + }, +/turf/simulated/shuttle/floor/white, +/area/skipjack_station/start) +"epV" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/book/manual/robotics_cyborgs, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/wizard_station) +"epY" = ( +/obj/structure/closet/chefcloset, +/obj/item/glass_jar, +/obj/item/device/retail_scanner/civilian, +/obj/item/weapon/soap/nanotrasen, +/obj/item/device/destTagger{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/weapon/packageWrap, +/obj/item/weapon/packageWrap, +/obj/item/weapon/packageWrap, +/obj/effect/floor_decal/corner/white/diagonal, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/bar) +"eqg" = ( +/obj/structure/table/standard, +/obj/item/stack/medical/bruise_pack, +/obj/item/stack/medical/bruise_pack, +/obj/item/stack/medical/bruise_pack, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome) +"eqx" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 9 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/main_hall) +"erT" = ( +/obj/machinery/sleep_console{ + dir = 4 + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"esl" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/simulated/shuttle/floor/white, +/area/skipjack_station/start) +"ess" = ( +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/syndicate_mothership/elite_squad) +"esB" = ( +/obj/item/weapon/gun/launcher/crossbow, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/skipjack_station) +"esQ" = ( +/obj/machinery/door/airlock/external{ + req_access = list(150) + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/syndicate_mothership/elite_squad) +"etB" = ( +/obj/structure/table/marble, +/obj/machinery/chemical_dispenser/bar_alc/full, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/bar) +"etC" = ( +/obj/structure/table/standard, +/obj/item/weapon/surgical/cautery, +/obj/item/weapon/surgical/retractor, +/obj/item/weapon/reagent_containers/glass/bottle/stoxin, +/obj/item/weapon/reagent_containers/glass/bottle/stoxin, +/obj/item/weapon/reagent_containers/syringe, +/turf/simulated/shuttle/floor/white, +/area/skipjack_station/start) +"eup" = ( +/obj/machinery/recharge_station, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/centcom/specops) +"eur" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/carpet, +/area/shuttle/merchant/home) +"euw" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/red/border, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/security) +"euX" = ( +/obj/machinery/sleeper{ + dir = 8 + }, +/turf/simulated/shuttle/floor/white, +/area/centcom/evac) +"eva" = ( +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/industrial/danger, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/main_hall) +"evg" = ( +/obj/machinery/door/airlock/external{ + id_tag = "merc_elite_shuttle_hatch"; + name = "Shuttle Airlock"; + req_access = list(150) + }, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "syndicate_elite"; + name = "Side Hull Door"; + opacity = 0 + }, +/turf/simulated/shuttle/floor/skipjack, +/area/shuttle/syndicate_elite/mothership) +"evi" = ( +/obj/structure/table/rack, +/obj/item/clothing/under/color/red, +/obj/item/clothing/shoes/brown, +/obj/item/weapon/melee/energy/axe, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/tdome/tdome2) +"evy" = ( +/obj/machinery/chem_master, +/obj/item/weapon/reagent_containers/glass/beaker/large, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/techfloor.dmi'; + icon_state = "techfloor_gray" + }, +/area/centcom/specops) +"ewB" = ( +/turf/simulated/shuttle/wall/dark/hard_corner, +/area/centcom/specops) +"exo" = ( +/obj/structure/table/steel_reinforced, +/obj/item/mecha_parts/mecha_equipment/tool/passenger, +/obj/item/mecha_parts/mecha_equipment/tool/passenger, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/centcom/specops) +"eyk" = ( +/obj/machinery/appliance/cooker/grill, +/obj/effect/floor_decal/corner/white/diagonal, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/bar) +"eyW" = ( +/obj/machinery/recharge_station, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/wizard_station) +"ezf" = ( +/obj/item/mecha_parts/mecha_equipment/teleporter, +/obj/item/mecha_parts/mecha_tracking, +/obj/item/mecha_parts/mecha_tracking, +/obj/item/mecha_parts/mecha_tracking, +/obj/item/mecha_parts/mecha_tracking, +/obj/structure/table/steel_reinforced, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/centcom/specops) +"ezG" = ( +/obj/machinery/computer/cloning{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/purple/border, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "white" + }, +/area/centcom/medical) +"eAi" = ( +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"eAF" = ( +/obj/machinery/sleeper{ + dir = 4 + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"eCy" = ( +/obj/item/robot_parts/head, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"eCS" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/brigdoor/northleft, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/security) +"eDh" = ( +/obj/structure/window/reinforced/holowindow{ + dir = 1 + }, +/obj/structure/table/woodentable/holotable, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_courtroom) +"eDt" = ( +/obj/effect/forcefield{ + desc = "You can't get in. Heh."; + invisibility = 60; + layer = 1; + name = "Blocker" + }, +/turf/simulated/shuttle/floor/white, +/area/centcom/main_hall) +"eDu" = ( +/obj/item/mecha_parts/mecha_equipment/tool/sleeper, +/obj/item/mecha_parts/mecha_equipment/tool/sleeper, +/obj/item/mecha_parts/mecha_equipment/tool/syringe_gun, +/obj/structure/table/steel_reinforced, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/centcom/specops) +"eEu" = ( +/obj/item/mecha_parts/mecha_equipment/tesla_energy_relay, +/obj/item/mecha_parts/mecha_equipment/tesla_energy_relay, +/obj/item/mecha_parts/mecha_equipment/tesla_energy_relay, +/obj/item/mecha_parts/mecha_equipment/tesla_energy_relay, +/obj/item/mecha_parts/mecha_equipment/repair_droid, +/obj/item/mecha_parts/mecha_equipment/repair_droid, +/obj/item/mecha_parts/mecha_equipment/repair_droid, +/obj/item/mecha_parts/mecha_equipment/repair_droid, +/obj/structure/table/steel_reinforced, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/centcom/specops) +"eFb" = ( +/obj/machinery/door/airlock/silver{ + name = "Sleeping" + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"eFs" = ( +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 5 + }, +/obj/structure/holostool{ + dir = 8 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_theatre) +"eFR" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/structure/largecrate/animal/cat, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"eHb" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 8; + icon_state = "burst_l" + }, +/turf/simulated/shuttle/wall/dark/hard_corner, +/area/shuttle/transport1/centcom) +"eHd" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 6 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/terminal) +"eHq" = ( +/obj/effect/step_trigger/thrower{ + affect_ghosts = 1; + direction = 4; + name = "thrower_throwwest"; + nostop = 1; + stopper = 0; + tiles = 0 + }, +/obj/effect/step_trigger/thrower{ + affect_ghosts = 1; + direction = 4; + name = "thrower_throweast"; + nostop = 1; + stopper = 0; + tiles = 0 + }, +/turf/space/transit/west, +/area/space) +"eIi" = ( +/obj/machinery/door/window/brigdoor/eastright{ + name = "Holding Cell" + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/security) +"eJH" = ( +/obj/machinery/door/airlock, +/turf/simulated/shuttle/floor/black, +/area/centcom/evac) +"eJJ" = ( +/obj/machinery/recharge_station, +/turf/unsimulated/floor{ + icon_state = "freezerfloor" + }, +/area/ninja_dojo/dojo) +"eKG" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/weapon/storage/backpack/ert/engineer{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/weapon/storage/backpack/ert/engineer, +/obj/item/weapon/storage/backpack/ert/engineer{ + pixel_x = 2; + pixel_y = 2 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/techfloor.dmi'; + icon_state = "techfloor_gray" + }, +/area/centcom/specops) +"eLG" = ( +/obj/structure/mopbucket, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "monotile" + }, +/area/centcom/terminal) +"eMi" = ( +/obj/machinery/sleeper{ + dir = 4 + }, +/turf/simulated/shuttle/floor/white, +/area/shuttle/escape/centcom) +"eMX" = ( +/obj/machinery/door/airlock/multi_tile/metal, +/obj/machinery/door/blast/regular{ + id = "spawngreen"; + name = "Green Team Spawn" + }, +/turf/unsimulated/floor{ + icon_state = "steel_dirty" + }, +/area/virtual_reality) +"eNX" = ( +/obj/machinery/computer/shuttle_control/multi/ninja{ + dir = 1 + }, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/ninja_dojo/start) +"eOt" = ( +/obj/machinery/door/airlock/voidcraft/vertical{ + frequency = 1331; + id_tag = "ninja_shuttle_outer"; + name = "Ship External Hatch"; + req_access = list(150) + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 8; + icon_state = "pdoor0"; + id = "blastninja"; + name = "Outer Airlock"; + opacity = 0 + }, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/ninja_dojo/start) +"eRh" = ( +/obj/structure/table/glass, +/obj/machinery/reagentgrinder, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 10 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 10 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "white" + }, +/area/centcom/medical) +"eRt" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/space/vox/pressure, +/obj/item/clothing/suit/space/vox/pressure, +/obj/item/clothing/head/helmet/space/vox/pressure, +/obj/item/clothing/head/helmet/space/vox/pressure, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/skipjack_station) +"eRA" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/main_hall) +"eRB" = ( +/obj/machinery/computer/arcade/orion_trail, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/wizard_station) +"eRI" = ( +/obj/structure/flora/ausbushes/brflowers, +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_picnicarea) +"eSU" = ( +/obj/machinery/appliance/mixer/cereal, +/obj/effect/floor_decal/corner/white/diagonal, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/bar) +"eSW" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/security) +"eUF" = ( +/turf/simulated/shuttle/floor/darkred, +/area/shuttle/syndicate_elite/mothership) +"eVe" = ( +/obj/machinery/door/airlock/glass_security{ + name = "Security Processing"; + req_access = list(1) + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel_grid" + }, +/area/centcom/security) +"eVJ" = ( +/turf/simulated/shuttle/wall/hard_corner, +/area/shuttle/escape/centcom) +"eVU" = ( +/obj/structure/bed/chair/holochair, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_courtroom) +"eWj" = ( +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/plating.dmi'; + icon_state = "plating"; + name = "plating" + }, +/area/centcom/suppy) +"eWA" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/cell/high, +/obj/item/weapon/cell/high, +/obj/item/weapon/cell/hyper, +/obj/item/weapon/cell/potato, +/obj/structure/window/reinforced, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"eWJ" = ( +/obj/machinery/button/remote/blast_door{ + id = "crescent_thunderdome"; + name = "Thunderdome Access"; + pixel_x = 6; + pixel_y = -24; + req_access = list(101) + }, +/obj/machinery/button/remote/blast_door{ + id = "crescent_vip_shuttle"; + name = "VIP Shuttle Access"; + pixel_x = 6; + pixel_y = -34; + req_access = list(101) + }, +/obj/machinery/button/remote/blast_door{ + id = "crescent_checkpoint_access"; + name = "Crescent Checkpoint Access"; + pixel_x = -6; + pixel_y = -24; + req_access = list(101) + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/command) +"eXb" = ( +/obj/structure/table/standard, +/turf/simulated/shuttle/floor, +/area/centcom/evac) +"eXo" = ( +/obj/structure/mirror{ + dir = 4; + pixel_x = -32 + }, +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/unsimulated/floor{ + icon_state = "freezerfloor" + }, +/area/syndicate_station) +"eXu" = ( +/obj/machinery/shower{ + dir = 8 + }, +/obj/structure/curtain/open/shower, +/turf/unsimulated/floor{ + icon_state = "freezerfloor" + }, +/area/centcom/specops) +"eXR" = ( +/obj/structure/table/rack, +/obj/item/weapon/storage/secure/briefcase, +/obj/item/weapon/storage/fancy/cigarettes, +/obj/item/weapon/flame/lighter/zippo, +/obj/item/weapon/storage/belt/utility, +/obj/item/weapon/storage/backpack/satchel, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/creed) +"eYl" = ( +/turf/simulated/shuttle/floor/darkred, +/area/skipjack_station/start) +"eYU" = ( +/obj/structure/table/marble, +/obj/machinery/microwave{ + pixel_x = -3; + pixel_y = 6 + }, +/obj/effect/floor_decal/corner/white/diagonal, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/bar) +"eZr" = ( +/obj/machinery/computer/security/telescreen{ + desc = ""; + name = "Spec. Ops. Monitor"; + network = list("NETWORK_ERT"); + pixel_y = 26 + }, +/turf/simulated/shuttle/floor/red, +/area/shuttle/response_ship/start) +"faA" = ( +/obj/structure/table/rack, +/obj/item/clothing/mask/balaclava/tactical, +/obj/item/clothing/mask/balaclava/tactical, +/obj/item/clothing/mask/balaclava/tactical, +/obj/item/clothing/mask/balaclava/tactical, +/obj/item/clothing/mask/balaclava/tactical, +/obj/item/clothing/mask/balaclava/tactical, +/obj/item/clothing/mask/balaclava, +/obj/item/clothing/mask/balaclava, +/obj/item/clothing/mask/balaclava, +/obj/item/clothing/mask/balaclava, +/obj/item/clothing/mask/balaclava, +/obj/item/clothing/mask/balaclava, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/syndicate_station) +"fbf" = ( +/obj/structure/bed/chair/comfy/teal, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "carpet" + }, +/area/centcom/command) +"fcJ" = ( +/obj/machinery/computer/card{ + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/centcom/command) +"fcN" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "white" + }, +/area/centcom/medical) +"fdg" = ( +/obj/effect/floor_decal/corner/green/full{ + dir = 8 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"fdj" = ( +/obj/structure/table/rack, +/obj/item/weapon/storage/box/flashbangs, +/obj/item/weapon/storage/box/flashbangs, +/obj/item/weapon/storage/box/emps{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/weapon/storage/box/frags, +/obj/item/weapon/storage/box/smokes, +/obj/item/weapon/storage/box/smokes, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/techfloor.dmi'; + icon_state = "techfloor_gray" + }, +/area/centcom/specops) +"fdn" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/material/knife/ritual, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/wizard_station) +"feX" = ( +/obj/item/weapon/bedsheet/rd, +/obj/structure/bed/padded, +/turf/simulated/shuttle/floor/red, +/area/skipjack_station/start) +"ffj" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/ammo_magazine/m9mmt/rubber, +/obj/item/ammo_magazine/m9mmt/rubber, +/obj/item/ammo_magazine/m9mmt/rubber, +/obj/item/ammo_magazine/m9mmt/rubber, +/obj/item/ammo_magazine/m9mmt/rubber, +/obj/item/ammo_magazine/m9mmt/rubber, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/techfloor.dmi'; + icon_state = "techfloor_gray" + }, +/area/centcom/specops) +"ffP" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1331; + master_tag = "vox_east_control"; + pixel_x = 22; + req_access = list(150) + }, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"ffZ" = ( +/obj/effect/decal/cleanable/cobweb2{ + icon_state = "spiderling"; + name = "dead spider" + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/skipjack_station) +"fhd" = ( +/obj/structure/table/rack, +/obj/item/weapon/gun/projectile/automatic/wt550, +/obj/item/weapon/gun/projectile/automatic/wt550, +/obj/item/weapon/gun/projectile/automatic/wt550, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/techfloor.dmi'; + icon_state = "techfloor_gray" + }, +/area/centcom/specops) +"fiE" = ( +/obj/structure/table/standard, +/obj/item/roller, +/obj/item/roller{ + pixel_y = 8 + }, +/obj/item/roller{ + pixel_y = 16 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/centcom/medical) +"fjf" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/cell_charger, +/obj/item/weapon/cell/high, +/obj/item/weapon/cell/high, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/specops) +"fju" = ( +/obj/structure/table/standard, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/machinery/light, +/turf/simulated/shuttle/floor/white, +/area/shuttle/arrival/pre_game) +"fjB" = ( +/obj/effect/floor_decal/borderfloorblack/corner{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger/corner{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/main_hall) +"fkj" = ( +/obj/structure/table/rack, +/obj/item/weapon/gun/energy/ionrifle, +/obj/machinery/recharger/wallcharger{ + pixel_x = 5; + pixel_y = 32 + }, +/obj/item/weapon/gun/energy/ionrifle, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/syndicate_station) +"fkt" = ( +/obj/item/weapon/bedsheet/green, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/bed/padded, +/turf/simulated/shuttle/floor/red, +/area/skipjack_station/start) +"fkC" = ( +/turf/unsimulated/beach/sand{ + icon_state = "beach" + }, +/area/holodeck/source_beach) +"fkL" = ( +/obj/structure/table/rack, +/obj/item/clothing/accessory/storage/brown_vest, +/obj/item/clothing/accessory/storage/brown_vest, +/obj/item/clothing/accessory/storage/brown_vest, +/obj/item/clothing/accessory/storage/brown_vest, +/obj/item/clothing/accessory/storage/brown_vest, +/obj/item/clothing/accessory/storage/brown_vest, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/syndicate_station) +"fli" = ( +/obj/structure/table/rack, +/obj/item/ammo_magazine/m9mmt, +/obj/item/ammo_magazine/m9mmt, +/obj/item/ammo_magazine/m9mmt, +/obj/item/ammo_magazine/m9mmt, +/obj/item/ammo_magazine/m9mmt, +/obj/item/ammo_magazine/m9mmt, +/obj/item/ammo_magazine/m9mmt, +/obj/item/ammo_magazine/m9mmt, +/obj/item/ammo_magazine/m9mmt, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/techfloor.dmi'; + icon_state = "techfloor_gray" + }, +/area/centcom/specops) +"flk" = ( +/obj/machinery/door/window/brigdoor/southleft, +/obj/structure/table/reinforced, +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/red/border, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/main_hall) +"fmQ" = ( +/obj/machinery/door/window/holowindoor{ + dir = 8 + }, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_emptycourt) +"fnh" = ( +/obj/structure/table/marble, +/obj/item/weapon/reagent_containers/food/drinks/teapot, +/turf/simulated/floor/tiled/white, +/area/centcom/bar) +"fnp" = ( +/obj/structure/flora/ausbushes/brflowers, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_picnicarea) +"fnw" = ( +/obj/structure/closet/emcloset, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/terminal) +"fnx" = ( +/obj/structure/table/wooden_reinforced, +/obj/machinery/computer/security/telescreen{ + name = "Spec. Ops. Monitor"; + network = list("ERT") + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/creed) +"fnR" = ( +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 10 + }, +/turf/unsimulated/floor{ + icon_state = "carpet" + }, +/area/ninja_dojo/dojo) +"fnY" = ( +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/structure/holostool{ + dir = 8 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_theatre) +"fok" = ( +/obj/structure/table/standard, +/obj/item/weapon/reagent_containers/food/drinks/bottle/small/beer, +/obj/item/weapon/reagent_containers/food/drinks/bottle/small/beer, +/obj/item/weapon/reagent_containers/food/drinks/bottle/small/beer, +/obj/item/weapon/flame/lighter/zippo, +/obj/item/weapon/storage/fancy/cigarettes, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeobserve) +"fpO" = ( +/obj/machinery/computer/pod{ + desc = "A control panel used to open and close Spawn Kill Prevention barriers."; + dir = 1; + id = "spawnred"; + name = "Spawn Kill Prevention"; + title = "Spawn Kill Prevention" + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/virtual_reality) +"frv" = ( +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "carpet" + }, +/area/skipjack_station) +"fry" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/machinery/portable_atmospherics/hydroponics, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"fsx" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/modular_computer/console/preset/command{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/main_hall) +"fsP" = ( +/turf/simulated/shuttle/floor/voidcraft/light, +/area/syndicate_station/start) +"fte" = ( +/obj/structure/table/standard, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/item/clothing/gloves/yellow, +/obj/item/clothing/gloves/yellow, +/obj/item/clothing/gloves/yellow, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"fts" = ( +/obj/structure/AIcore, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/wizard_station) +"fuj" = ( +/obj/machinery/door/airlock/silver{ + icon_state = "door_locked"; + locked = 1; + name = "Employees Only"; + secured_wires = 1 + }, +/turf/simulated/shuttle/floor, +/area/shuttle/arrival/pre_game) +"fvA" = ( +/obj/structure/table/rack, +/obj/item/weapon/storage/box/shotgunammo/large, +/obj/item/weapon/storage/box/stunshells/large, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/shuttle/trade) +"fvG" = ( +/obj/structure/closet{ + name = "custodial" + }, +/obj/item/weapon/mop, +/obj/item/weapon/reagent_containers/spray/cleaner, +/obj/item/weapon/reagent_containers/glass/bucket, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/syndicate_station/start) +"fwt" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/specops) +"fym" = ( +/obj/machinery/vending/boozeomat{ + req_access = null + }, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/bar) +"fyR" = ( +/obj/structure/dispenser, +/turf/simulated/shuttle/floor/red, +/area/shuttle/administration/centcom) +"fzP" = ( +/obj/machinery/teleport/station, +/turf/simulated/shuttle/plating, +/area/ninja_dojo/start) +"fzX" = ( +/turf/unsimulated/wall, +/area/centcom/medical) +"fAB" = ( +/obj/structure/window/reinforced{ + dir = 1; + health = 1e+006 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table/rack, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_drop_pouches, +/obj/item/clothing/accessory/storage/black_drop_pouches, +/obj/item/clothing/accessory/storage/black_drop_pouches, +/obj/item/clothing/accessory/storage/black_drop_pouches, +/obj/item/clothing/accessory/storage/black_drop_pouches, +/obj/item/clothing/accessory/storage/black_drop_pouches, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/techfloor.dmi'; + icon_state = "techfloor_gray" + }, +/area/centcom/specops) +"fBf" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/wizard_station) +"fBS" = ( +/obj/machinery/door/airlock/medical{ + name = "Operating Theatre" + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel_grid" + }, +/area/centcom/medical) +"fCz" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/shield_diffuser, +/obj/item/weapon/shield_diffuser, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/specops) +"fCC" = ( +/obj/structure/table/steel_reinforced, +/obj/item/clothing/head/bearpelt, +/obj/item/clothing/head/bowler, +/obj/item/clothing/head/caphat/cap, +/obj/item/clothing/head/beaverhat, +/obj/item/clothing/head/beret/centcom, +/obj/item/clothing/head/beret/sec, +/obj/item/clothing/head/collectable/kitty, +/obj/item/clothing/head/collectable/kitty, +/obj/item/clothing/head/collectable/kitty, +/obj/item/clothing/head/collectable/rabbitears, +/obj/item/clothing/head/collectable/rabbitears, +/obj/item/clothing/head/collectable/rabbitears, +/obj/item/clothing/head/collectable/petehat, +/obj/item/clothing/head/collectable/pirate, +/obj/item/clothing/head/collectable/wizard, +/obj/item/clothing/head/collectable/xenom, +/obj/item/clothing/head/cowboy_hat, +/obj/item/clothing/head/pin/flower/violet, +/obj/item/clothing/head/pin/flower/blue, +/obj/item/clothing/head/pin/flower/orange, +/obj/item/clothing/head/pin/flower/pink, +/obj/item/clothing/head/justice, +/obj/item/clothing/head/justice/blue, +/obj/item/clothing/head/justice/green, +/obj/item/clothing/head/justice/pink, +/obj/item/clothing/head/justice/yellow, +/obj/item/clothing/head/philosopher_wig, +/obj/item/clothing/head/plaguedoctorhat, +/obj/item/clothing/head/xenos, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"fCK" = ( +/obj/machinery/door/airlock/glass_centcom{ + name = "General Access"; + req_one_access = list(101) + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/techfloor.dmi'; + icon_state = "techfloor_gray" + }, +/area/centcom/command) +"fDX" = ( +/obj/structure/bed/chair/shuttle{ + dir = 8 + }, +/obj/effect/landmark{ + name = "JoinLate" + }, +/turf/simulated/shuttle/floor/white, +/area/shuttle/arrival/pre_game) +"fED" = ( +/obj/machinery/ai_status_display, +/turf/simulated/shuttle/wall, +/area/shuttle/arrival/pre_game) +"fEH" = ( +/obj/item/robot_parts/l_leg, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/wizard_station) +"fEL" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/item/weapon/shield_diffuser, +/obj/item/weapon/shield_diffuser, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/specops) +"fER" = ( +/obj/machinery/door/airlock/hatch{ + req_access = list(150) + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/skipjack_station) +"fFy" = ( +/turf/simulated/shuttle/wall/voidcraft/red, +/area/syndicate_station/start) +"fGf" = ( +/turf/simulated/mineral, +/area/space) +"fHs" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "white" + }, +/area/centcom/medical) +"fHE" = ( +/obj/machinery/computer/card/centcom, +/obj/item/weapon/card/id/centcom, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/creed) +"fIt" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/storage/vest/heavy/merc{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/clothing/suit/storage/vest/heavy/merc{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/clothing/suit/storage/vest/heavy/merc, +/obj/item/clothing/suit/storage/vest/heavy/merc, +/obj/item/clothing/suit/storage/vest/heavy/merc, +/obj/item/clothing/suit/storage/vest/heavy/merc, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/syndicate_station) +"fJr" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "white" + }, +/area/centcom/medical) +"fJx" = ( +/obj/machinery/door/airlock/glass{ + name = "Central Access" + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel_grid" + }, +/area/centcom/main_hall) +"fJz" = ( +/obj/structure/bookcase, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/wizard_station) +"fJN" = ( +/obj/machinery/telecomms/server/presets/centcomm, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/main_hall) +"fKy" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/closet/crate/secure/loot, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"fKI" = ( +/obj/effect/landmark{ + name = "Response Team" + }, +/obj/effect/landmark{ + name = "Commando" + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/specops) +"fLN" = ( +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_emptycourt) +"fLT" = ( +/obj/machinery/igniter, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/tdome) +"fMz" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 1e+006 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/snow_new.dmi'; + icon_state = "snow"; + name = "snow" + }, +/area/ninja_dojo/dojo) +"fMG" = ( +/obj/structure/flora/tree/dead, +/turf/simulated/floor/holofloor/snow, +/area/holodeck/source_snowfield) +"fNj" = ( +/obj/machinery/crystal, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/wizard_station) +"fOX" = ( +/obj/structure/kitchenspike, +/turf/unsimulated/floor{ + icon_state = "freezerfloor" + }, +/area/centcom/bar) +"fPj" = ( +/obj/structure/table/reinforced, +/obj/item/mecha_parts/mecha_equipment/tool/hydraulic_clamp, +/obj/item/mecha_parts/mecha_equipment/tool/hydraulic_clamp, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/centcom/specops) +"fPC" = ( +/obj/structure/table/steel_reinforced, +/obj/item/clothing/accessory/holster/hip, +/obj/item/clothing/accessory/holster/armpit, +/obj/item/clothing/accessory/holster/armpit, +/obj/item/clothing/accessory/holster/hip, +/obj/item/clothing/accessory/storage/white_vest, +/obj/item/clothing/accessory/storage/white_vest, +/obj/item/clothing/accessory/storage/webbing, +/obj/item/clothing/accessory/storage/webbing, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/brown_vest, +/obj/item/clothing/accessory/storage/brown_vest, +/obj/item/clothing/accessory/scarf/white, +/obj/item/clothing/accessory/scarf/lightblue, +/obj/item/clothing/accessory/scarf/red, +/obj/item/clothing/accessory/scarf/purple, +/obj/item/clothing/accessory/armband/science, +/obj/item/clothing/accessory/armband/med, +/obj/item/clothing/accessory/armband/engine, +/obj/item/clothing/accessory/armband/cargo, +/obj/item/clothing/accessory/armband, +/obj/item/clothing/accessory/medal/nobel_science, +/obj/item/clothing/accessory/medal/silver, +/obj/item/clothing/accessory/medal/gold, +/obj/item/clothing/accessory/medal/bronze_heart, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"fRL" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + frequency = 1331; + id_tag = "merc_elite_shuttle"; + pixel_x = -24; + pixel_y = -2; + req_access = list(150); + tag_exterior_door = "merc_elite_shuttle_hatch" + }, +/turf/simulated/shuttle/floor/darkred, +/area/shuttle/syndicate_elite/mothership) +"fSe" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/simulated/shuttle/floor/darkred, +/area/shuttle/syndicate_elite/mothership) +"fSY" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"fTz" = ( +/obj/effect/floor_decal/borderfloorblack/corner{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/danger/corner{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/main_hall) +"fTK" = ( +/obj/machinery/door/airlock/external{ + frequency = 1380; + glass = 1380; + icon_state = "door_locked"; + id_tag = "centcom_shuttle_bay_door"; + locked = 1; + name = "Transport Airlock" + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel_grid" + }, +/area/centcom/command) +"fTY" = ( +/obj/structure/table/standard, +/obj/machinery/chemical_dispenser/bar_alc/full, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"fUA" = ( +/obj/machinery/door/unpowered/shuttle, +/turf/simulated/shuttle/floor, +/area/shuttle/transport1/centcom) +"fUC" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/bar) +"fUL" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/machinery/door/window/northleft, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "white" + }, +/area/centcom/medical) +"fVh" = ( +/turf/simulated/floor/holofloor/reinforced, +/area/holodeck/source_plating) +"fVm" = ( +/turf/unsimulated/wall, +/area/centcom/bar) +"fWP" = ( +/obj/structure/holostool{ + dir = 8 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_theatre) +"fWS" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/skipjack_station) +"fXf" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table/rack, +/obj/item/clothing/head/helmet/ert/security, +/obj/item/clothing/head/helmet/ert/security, +/obj/item/clothing/head/helmet/ert/security, +/obj/item/clothing/head/helmet/ert/security, +/obj/item/clothing/suit/armor/vest/ert/security, +/obj/item/clothing/suit/armor/vest/ert/security, +/obj/item/clothing/suit/armor/vest/ert/security, +/obj/item/clothing/suit/armor/vest/ert/security, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/techfloor.dmi'; + icon_state = "techfloor_gray" + }, +/area/centcom/specops) +"fXC" = ( +/obj/structure/frame/computer{ + dir = 4 + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"fYE" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 4 + }, +/turf/simulated/shuttle/plating/airless/carry, +/area/shuttle/response_ship/start) +"fYY" = ( +/obj/effect/floor_decal/borderfloorblack/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/bordercorner{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/security) +"fZs" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "white" + }, +/area/centcom/medical) +"fZu" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 1e+006 + }, +/turf/unsimulated/floor{ + icon_state = "asteroid" + }, +/area/ninja_dojo/dojo) +"fZU" = ( +/obj/machinery/door/airlock/centcom{ + name = "Storage" + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/syndicate_station) +"gaf" = ( +/obj/structure/table/rack, +/obj/item/weapon/storage/toolbox/syndicate{ + pixel_x = -1; + pixel_y = 3 + }, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/syndicate_station/start) +"gba" = ( +/obj/machinery/button/remote/blast_door{ + id = "tradestationshutters"; + name = "warehouse control"; + pixel_x = -30; + req_access = list(160) + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/shuttle/trade) +"gbd" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/centcom/command) +"gbs" = ( +/obj/item/device/radio/intercom{ + desc = "Talk through this. Evilly"; + dir = 4; + frequency = 1213; + name = "Subversive Intercom"; + pixel_x = 32; + subspace_transmission = 1; + syndie = 1 + }, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/syndicate_station/start) +"gbz" = ( +/obj/structure/shuttle/engine/heater, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/shuttle/plating/airless, +/area/skipjack_station/start) +"gcn" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/tool/crowbar, +/obj/item/weapon/tool/screwdriver, +/obj/item/weapon/tool/wrench, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 32 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/specops) +"gcS" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/mecha/working/ripley/firefighter, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"gde" = ( +/obj/structure/table/bench/padded, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/specops) +"gdQ" = ( +/obj/machinery/appliance/cooker/oven, +/obj/effect/floor_decal/corner/white/diagonal, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/bar) +"gfU" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/medical, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/structure/curtain/open/privacy, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "white" + }, +/area/centcom/medical) +"gfY" = ( +/obj/structure/window/reinforced{ + dir = 1; + health = 1e+006 + }, +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "freezerfloor" + }, +/area/centcom/command) +"ggb" = ( +/obj/machinery/sleep_console, +/turf/simulated/shuttle/floor/white, +/area/centcom/evac) +"ggg" = ( +/turf/simulated/shuttle/floor/darkred, +/area/shuttle/merchant/home) +"ggl" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/main_hall) +"ggE" = ( +/obj/machinery/door/airlock/centcom{ + icon_state = "door_locked"; + locked = 1 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/syndicate_station) +"ghe" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/blast/regular{ + id = "skipjackshutters"; + name = "Skipjack Blast Shielding" + }, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"ghs" = ( +/obj/structure/inflatable, +/turf/unsimulated/floor{ + icon_state = "asteroid" + }, +/area/skipjack_station) +"ghB" = ( +/obj/item/toy/chess/bishop_white, +/turf/simulated/floor/holofloor/bmarble, +/area/holodeck/source_chess) +"gjl" = ( +/obj/structure/sign/double/barsign, +/turf/unsimulated/wall, +/area/centcom/bar) +"gjJ" = ( +/turf/simulated/floor/holofloor/beach/sand, +/area/holodeck/source_beach) +"gjK" = ( +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"gkx" = ( +/obj/machinery/computer/communications{ + dir = 4 + }, +/turf/simulated/shuttle/floor/red, +/area/shuttle/response_ship/start) +"gkV" = ( +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/command) +"glV" = ( +/obj/machinery/door/blast/regular{ + id = "thunderdomehea"; + name = "Heavy Supply" + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/techfloor.dmi'; + icon_state = "techfloor_gray" + }, +/area/tdome/tdome1) +"gme" = ( +/obj/item/weapon/bedsheet/rainbow, +/obj/structure/bed/padded, +/turf/simulated/shuttle/floor/red, +/area/skipjack_station/start) +"gmf" = ( +/obj/structure/table/steel_reinforced, +/obj/item/stack/material/mhydrogen, +/obj/item/stack/material/diamond, +/obj/item/stack/material/sandstone, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"gmi" = ( +/obj/machinery/microwave{ + pixel_x = -1; + pixel_y = 8 + }, +/obj/structure/table/marble, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/wizard_station) +"gmM" = ( +/obj/structure/table/holotable, +/obj/item/clothing/head/helmet/thunderdome, +/obj/item/clothing/under/color/green, +/obj/item/clothing/suit/armor/tdome/green, +/obj/item/weapon/holo/esword/green, +/obj/effect/floor_decal/corner/green{ + dir = 5 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_thunderdomecourt) +"gno" = ( +/turf/simulated/shuttle/wall/dark{ + join_group = "shuttle_ert" + }, +/area/shuttle/response_ship/start) +"gnL" = ( +/obj/item/weapon/grenade/chem_grenade/cleaner, +/obj/item/weapon/grenade/chem_grenade/cleaner, +/obj/item/weapon/grenade/chem_grenade/cleaner, +/obj/item/weapon/grenade/chem_grenade/cleaner, +/obj/item/weapon/grenade/chem_grenade/cleaner, +/obj/item/weapon/grenade/chem_grenade/cleaner, +/obj/item/weapon/grenade/chem_grenade/cleaner, +/obj/item/weapon/grenade/chem_grenade/cleaner, +/obj/item/weapon/grenade/chem_grenade/cleaner, +/obj/item/weapon/grenade/chem_grenade/cleaner, +/obj/structure/table/standard, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome) +"gow" = ( +/obj/machinery/recharge_station, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/syndicate_station/start) +"goz" = ( +/obj/structure/bed/chair/holochair, +/obj/structure/window/reinforced/holowindow, +/obj/structure/window/reinforced/holowindow{ + dir = 4 + }, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_courtroom) +"goS" = ( +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/ninja_dojo/dojo) +"gqd" = ( +/obj/structure/table/standard, +/obj/random/soap, +/obj/random/soap, +/obj/item/weapon/towel/random, +/obj/item/weapon/towel/random, +/obj/item/weapon/towel/random, +/obj/item/weapon/towel/random, +/turf/simulated/shuttle/floor, +/area/centcom/evac) +"gqi" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/main_hall) +"gqk" = ( +/obj/effect/landmark{ + name = "Holocarp Spawn" + }, +/turf/simulated/floor/holofloor/reinforced, +/area/holodeck/source_wildlife) +"grd" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/fancy/cigarettes, +/obj/item/weapon/flame/lighter/zippo, +/obj/item/clothing/gloves/yellow, +/obj/item/stack/material/steel{ + amount = 50 + }, +/obj/item/stack/material/glass{ + amount = 50 + }, +/obj/item/weapon/card/emag, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"grn" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/terminal) +"grH" = ( +/obj/effect/floor_decal/corner/green/full, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"gtC" = ( +/obj/item/toy/chess/bishop_white, +/turf/simulated/floor/holofloor/wmarble, +/area/holodeck/source_chess) +"guR" = ( +/obj/item/device/radio/intercom/specops{ + pixel_y = -21 + }, +/turf/simulated/shuttle/floor/red, +/area/shuttle/response_ship/start) +"gvl" = ( +/obj/machinery/door/window/northleft, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "white" + }, +/area/centcom/medical) +"gvU" = ( +/obj/machinery/door/airlock, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel_grid" + }, +/area/centcom/specops) +"gxj" = ( +/obj/structure/table/standard, +/obj/machinery/chemical_dispenser/bar_soft/full, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/syndicate_station) +"gxr" = ( +/obj/machinery/computer/crew{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 10 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 10 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "white" + }, +/area/centcom/medical) +"gxO" = ( +/obj/structure/reagent_dispensers/beerkeg/fakenuke{ + desc = "Something seems off about this bomb."; + name = "\improper Nuclear Fission Explosive" + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/syndicate_station) +"gyQ" = ( +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 5 + }, +/turf/unsimulated/floor{ + icon_state = "carpet" + }, +/area/centcom/living) +"gzc" = ( +/obj/machinery/body_scanconsole{ + dir = 4 + }, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/syndicate_station/start) +"gzS" = ( +/turf/simulated/shuttle/wall, +/area/shuttle/supply) +"gAO" = ( +/obj/machinery/door/airlock/centcom{ + name = "Courthouse" + }, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/centcom/command) +"gBn" = ( +/obj/structure/closet/crate, +/obj/item/clothing/accessory/storage/vox, +/obj/item/clothing/accessory/storage/vox, +/obj/item/clothing/accessory/storage/vox, +/obj/item/clothing/accessory/storage/vox, +/obj/item/clothing/accessory/storage/vox, +/obj/item/clothing/accessory/storage/vox, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/skipjack_station) +"gBq" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + id_tag = "response_base"; + name = "docking port controller"; + pixel_y = -25; + req_one_access = list(103); + tag_door = "response_base_door" + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/specops) +"gBw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/holostool, +/turf/simulated/floor/holofloor/desert, +/area/holodeck/source_picnicarea) +"gBA" = ( +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/main_hall) +"gCc" = ( +/obj/structure/sink/kitchen{ + pixel_y = 28 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/syndicate_station) +"gCm" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/holofloor/desert, +/area/holodeck/source_picnicarea) +"gCo" = ( +/obj/effect/step_trigger/thrower{ + affect_ghosts = 1; + direction = 8; + name = "thrower_throwwest"; + nostop = 1; + stopper = 0; + tiles = 0 + }, +/turf/space/transit/west, +/area/space) +"gEw" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/main_hall) +"gFN" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/storage/firstaid/adv{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/weapon/storage/firstaid/combat, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/ninja_dojo/start) +"gFO" = ( +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_theatre) +"gGh" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/forcefield{ + desc = "You can't get in. Heh."; + invisibility = 60; + layer = 1; + name = "Blocker" + }, +/obj/machinery/door/airlock/external{ + icon_state = "door_locked"; + locked = 1 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/techfloor.dmi'; + icon_state = "techfloor_gray" + }, +/area/centcom/terminal) +"gHs" = ( +/obj/structure/window/reinforced/holowindow{ + dir = 8 + }, +/obj/structure/holostool{ + dir = 8 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_thunderdomecourt) +"gHB" = ( +/obj/structure/table/marble, +/turf/simulated/floor/tiled/white, +/area/centcom/bar) +"gHN" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 4; + icon_state = "propulsion_l" + }, +/turf/simulated/shuttle/plating/airless/carry, +/area/shuttle/response_ship/start) +"gHW" = ( +/obj/structure/bed/chair/wood/wings{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/bar) +"gIh" = ( +/obj/structure/closet/secure_closet/bar, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/bar) +"gJo" = ( +/obj/structure/table/reinforced, +/obj/item/device/defib_kit/loaded{ + pixel_y = 2 + }, +/obj/item/device/defib_kit/loaded{ + pixel_y = -2 + }, +/turf/simulated/shuttle/floor/white, +/area/centcom/evac) +"gJJ" = ( +/obj/item/mecha_parts/mecha_equipment/tool/extinguisher, +/obj/item/mecha_parts/mecha_equipment/tool/rcd, +/obj/item/weapon/pickaxe/diamonddrill, +/obj/structure/table/steel_reinforced, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/centcom/specops) +"gJQ" = ( +/obj/structure/window/reinforced{ + dir = 1; + health = 1e+006 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table/rack, +/obj/item/weapon/rig/ert/security{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/weapon/rig/ert/security, +/obj/item/weapon/rig/ert/security{ + pixel_x = 2; + pixel_y = 2 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/techfloor.dmi'; + icon_state = "techfloor_gray" + }, +/area/centcom/specops) +"gKB" = ( +/obj/structure/flora/tree/pine, +/turf/simulated/floor/holofloor/snow, +/area/holodeck/source_snowfield) +"gKQ" = ( +/obj/structure/table/standard, +/obj/item/weapon/surgical/surgicaldrill, +/obj/item/weapon/autopsy_scanner, +/obj/item/weapon/reagent_containers/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner"; + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/surgical/FixOVein, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 5 + }, +/obj/effect/floor_decal/corner/pink/border{ + dir = 5 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "white" + }, +/area/centcom/medical) +"gKX" = ( +/obj/structure/shuttle/window, +/obj/structure/grille, +/turf/simulated/shuttle/plating, +/area/centcom/evac) +"gLT" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/ninja_dojo/dojo) +"gMa" = ( +/obj/effect/floor_decal/sign/small_c, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_chess) +"gMy" = ( +/obj/machinery/door/airlock/hatch{ + req_access = list(150) + }, +/turf/simulated/shuttle/floor/darkred, +/area/skipjack_station/start) +"gMS" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/syndicate_station) +"gNf" = ( +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_theatre) +"gOm" = ( +/turf/simulated/floor/tiled/white, +/area/centcom/bar) +"gOp" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 2 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel_grid" + }, +/area/centcom/bar) +"gOt" = ( +/obj/machinery/door/airlock/external{ + icon_state = "door_locked"; + locked = 1 + }, +/turf/simulated/shuttle/floor, +/area/shuttle/escape/centcom) +"gPb" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 2; + req_one_access = list(1) + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel_grid" + }, +/area/centcom/security) +"gPC" = ( +/obj/effect/shuttle_landmark/cynosure/large_escape_pod1/offsite, +/turf/simulated/shuttle/plating, +/area/shuttle/large_escape_pod1/centcom) +"gQs" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced/full, +/turf/simulated/shuttle/plating, +/area/shuttle/escape/centcom) +"gRw" = ( +/obj/machinery/computer/pod{ + id = "thunderdomegen"; + name = "Thunderdome General Supply" + }, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome) +"gRE" = ( +/obj/machinery/door/airlock/glass_security{ + name = "Escape Shuttle Cell"; + req_access = list(1) + }, +/turf/simulated/shuttle/floor/red, +/area/shuttle/escape/centcom) +"gSi" = ( +/obj/machinery/door/airlock/silver{ + name = "Toilet" + }, +/turf/simulated/shuttle/floor/white, +/area/shuttle/merchant/home) +"gSq" = ( +/obj/effect/wingrille_spawn/reinforced/crescent, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/plating.dmi'; + icon_state = "plating"; + name = "plating" + }, +/area/centcom/main_hall) +"gSH" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 4; + icon_state = "propulsion_l" + }, +/turf/simulated/shuttle/plating/airless/carry, +/area/shuttle/merchant/home) +"gTz" = ( +/obj/item/device/camera{ + desc = "A one use - polaroid camera. 30 photos left."; + name = "detectives camera"; + pictures_left = 30; + pixel_x = 2; + pixel_y = 3 + }, +/obj/structure/table/reinforced, +/obj/effect/floor_decal/borderfloorblack{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 6 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/security) +"gTU" = ( +/obj/structure/table/rack, +/obj/item/clothing/accessory/holster/waist, +/obj/item/clothing/accessory/holster/waist, +/obj/item/clothing/accessory/holster/waist, +/obj/item/clothing/accessory/holster/waist, +/obj/item/clothing/accessory/holster/waist, +/obj/item/clothing/accessory/holster/waist, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/specops) +"gUh" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-03" + }, +/obj/item/device/radio/intercom{ + desc = "Talk through this. Evilly"; + dir = 8; + frequency = 1213; + name = "Subversive Intercom"; + pixel_x = -32; + subspace_transmission = 1; + syndie = 1 + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/wizard_station) +"gUs" = ( +/obj/structure/undies_wardrobe, +/turf/unsimulated/floor{ + icon_state = "freezerfloor" + }, +/area/syndicate_station) +"gUy" = ( +/obj/effect/step_trigger/thrower{ + affect_ghosts = 1; + name = "thrower_throwdown"; + tiles = 0 + }, +/obj/effect/step_trigger/teleporter/random{ + affect_ghosts = 1; + name = "escapeshuttle_leave"; + teleport_x = 25; + teleport_x_offset = 245; + teleport_y = 25; + teleport_y_offset = 245; + teleport_z = 6; + teleport_z_offset = 6 + }, +/turf/space, +/area/space) +"gUT" = ( +/obj/machinery/bodyscanner{ + dir = 1 + }, +/turf/simulated/shuttle/floor/white, +/area/centcom/evac) +"gWi" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/weapon/storage/backpack/ert/medical, +/obj/item/weapon/storage/backpack/ert/medical{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/weapon/storage/backpack/ert/medical{ + pixel_x = -4; + pixel_y = -4 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/techfloor.dmi'; + icon_state = "techfloor_gray" + }, +/area/centcom/specops) +"gWT" = ( +/turf/simulated/floor/holofloor/lino, +/area/holodeck/source_meetinghall) +"gXc" = ( +/obj/machinery/computer/rcon, +/obj/structure/window/reinforced{ + dir = 1; + health = 1e+006 + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/centcom/command) +"gXn" = ( +/obj/structure/table/rack, +/obj/item/clothing/mask/gas/swat/vox, +/obj/item/clothing/mask/gas/swat/vox, +/obj/item/clothing/mask/gas/swat/vox, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/skipjack_station) +"gZL" = ( +/turf/unsimulated/beach/coastline, +/area/beach) +"haV" = ( +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/bar) +"hbb" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 10 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "white" + }, +/area/centcom/medical) +"hcH" = ( +/obj/structure/sign/poster{ + pixel_y = -32 + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"hek" = ( +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome) +"hev" = ( +/turf/unsimulated/floor{ + icon_state = "cult"; + name = "plating" + }, +/area/skipjack_station) +"hfY" = ( +/obj/structure/curtain/open/shower/security, +/obj/machinery/shower{ + dir = 8; + pixel_x = -5; + pixel_y = -1 + }, +/turf/unsimulated/floor{ + icon_state = "freezerfloor" + }, +/area/syndicate_station) +"hgp" = ( +/obj/structure/table/woodentable/holotable, +/obj/structure/window/reinforced/holowindow{ + dir = 1 + }, +/obj/structure/window/reinforced/holowindow{ + dir = 4 + }, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_courtroom) +"hgJ" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/syndicate_station/start) +"hgN" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/terminal) +"hht" = ( +/obj/structure/bed/chair, +/turf/simulated/shuttle/floor/darkred, +/area/shuttle/syndicate_elite/mothership) +"hhv" = ( +/obj/structure/table/standard, +/obj/item/weapon/surgical/circular_saw{ + pixel_y = 8 + }, +/obj/item/weapon/surgical/hemostat, +/obj/item/weapon/surgical/scalpel, +/obj/item/stack/medical/advanced/bruise_pack, +/turf/simulated/shuttle/floor/white, +/area/skipjack_station/start) +"hia" = ( +/obj/structure/table/steel_reinforced, +/obj/item/stack/telecrystal, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/wizard_station) +"hix" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/simulated/shuttle/floor, +/area/centcom/evac) +"hiU" = ( +/obj/structure/table/standard, +/obj/item/weapon/handcuffs/legcuffs, +/turf/simulated/shuttle/floor/black, +/area/skipjack_station/start) +"hjb" = ( +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/wizard_station) +"hjy" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/bar) +"hkb" = ( +/obj/item/device/radio/intercom{ + desc = "Talk through this. Evilly"; + frequency = 1213; + name = "Subversive Intercom"; + pixel_y = -32; + subspace_transmission = 1; + syndie = 1 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/wizard_station) +"hkh" = ( +/obj/structure/table/rack, +/obj/item/clothing/accessory/holster/hip, +/obj/item/clothing/accessory/holster/hip, +/obj/item/clothing/accessory/holster/hip, +/obj/item/clothing/accessory/holster/hip, +/obj/item/clothing/accessory/holster/hip, +/obj/item/clothing/accessory/holster/hip, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/specops) +"hkk" = ( +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "white" + }, +/area/centcom/medical) +"hkW" = ( +/obj/machinery/computer/pod{ + dir = 1; + id = "syndicate_elite"; + name = "Hull Door Control" + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/creed) +"hle" = ( +/obj/effect/floor_decal/borderfloorblack/corner{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/danger/corner{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/main_hall) +"hlE" = ( +/obj/machinery/door/window/holowindoor{ + dir = 1; + name = "Green Corner" + }, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_boxingcourt) +"hlX" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/sign/kiddieplaque{ + desc = "A plaque commemorating the construction of the cargo ship Beruang."; + name = "Beruang"; + pixel_x = 32 + }, +/mob/living/simple_mob/animal/passive/dog/tamaskan/Spice, +/turf/simulated/shuttle/floor/darkred, +/area/shuttle/merchant/home) +"hmB" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "white" + }, +/area/centcom/medical) +"hmR" = ( +/obj/structure/table/rack, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/suit/space/syndicate/black/engie, +/obj/item/clothing/mask/breath, +/obj/item/clothing/head/helmet/space/syndicate/black/engie, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/syndicate_station) +"hmW" = ( +/obj/structure/table/rack, +/obj/item/clothing/accessory/holster/armpit, +/obj/item/clothing/accessory/holster/armpit, +/obj/item/clothing/accessory/holster/armpit, +/obj/item/clothing/accessory/holster/armpit, +/obj/item/clothing/accessory/holster/armpit, +/obj/item/clothing/accessory/holster/armpit, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 32 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/specops) +"hok" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/wizard_station) +"hpp" = ( +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_boxingcourt) +"hpK" = ( +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet{ + dir = 9 + }, +/obj/effect/floor_decal/carpet{ + dir = 5 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_theatre) +"hqt" = ( +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel_grid" + }, +/area/centcom/bar) +"hsn" = ( +/turf/unsimulated/wall{ + desc = "That looks like it doesn't open easily."; + icon = 'icons/obj/doors/rapid_pdoor.dmi'; + icon_state = "pdoor1"; + name = "Shuttle Bay Blast Door" + }, +/area/centcom/command) +"huf" = ( +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/obj/structure/window/reinforced/holowindow/disappearing, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_thunderdomecourt) +"hui" = ( +/obj/machinery/door/airlock/multi_tile/glass, +/turf/simulated/shuttle/floor/darkred, +/area/shuttle/merchant/home) +"huZ" = ( +/obj/effect/floor_decal/corner/red/full{ + dir = 4 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"hvq" = ( +/obj/structure/flora/grass/green, +/turf/simulated/floor/holofloor/snow, +/area/holodeck/source_snowfield) +"hvu" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_picnicarea) +"hvB" = ( +/obj/effect/step_trigger/thrower{ + affect_ghosts = 1; + name = "thrower_throwdown"; + tiles = 0 + }, +/obj/effect/step_trigger/teleporter/landmark{ + landmark_id = "fall_sif" + }, +/turf/simulated/sky/moving/south, +/area/space) +"hvM" = ( +/obj/effect/landmark{ + name = "Syndicate-Uplink" + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/syndicate_station) +"hwF" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/bordercorner{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/main_hall) +"hyg" = ( +/obj/machinery/iv_drip, +/turf/simulated/shuttle/floor/white, +/area/shuttle/escape/centcom) +"hyN" = ( +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/structure/holostool{ + dir = 8 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_theatre) +"hzg" = ( +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 5 + }, +/obj/structure/bed/chair/holochair{ + dir = 4 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"hzK" = ( +/obj/structure/closet/secure_closet/security, +/obj/effect/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 9 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/security) +"hzT" = ( +/obj/structure/window/reinforced, +/turf/unsimulated/wall, +/area/space) +"hzY" = ( +/obj/effect/floor_decal/industrial/outline/blue, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/specops) +"hBY" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/armor/vest/ert/command, +/obj/item/clothing/head/helmet/ert/command, +/obj/item/weapon/storage/backpack/ert/commander, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/specops) +"hCj" = ( +/obj/structure/closet{ + name = "Prisoner's Locker" + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 10 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/security) +"hCX" = ( +/obj/machinery/door/airlock/external, +/turf/simulated/shuttle/floor, +/area/centcom/evac) +"hDd" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 8 + }, +/turf/simulated/shuttle/wall/dark/hard_corner, +/area/centcom/evac) +"hEb" = ( +/obj/machinery/door/blast/regular{ + id = "thunderdomeaxe"; + name = "Axe Supply" + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/techfloor.dmi'; + icon_state = "techfloor_gray" + }, +/area/tdome/tdome1) +"hEt" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + id_tag = "escape_shuttle"; + pixel_y = 25; + req_one_access = list(13); + tag_door = "escape_shuttle_hatch" + }, +/turf/simulated/shuttle/floor, +/area/shuttle/escape/centcom) +"hFy" = ( +/obj/machinery/door/airlock/external{ + frequency = 1331; + icon_state = "door_locked"; + id_tag = "trade2_shuttle_outer"; + locked = 1; + name = "Ship Hatch"; + req_access = list(13) + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"hFB" = ( +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel_grid" + }, +/area/centcom/medical) +"hFD" = ( +/obj/machinery/computer/robotics{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1; + health = 1e+006 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/centcom/command) +"hGk" = ( +/obj/machinery/mech_recharger, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/virtual_reality) +"hHA" = ( +/obj/item/broken_device, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/ninja_dojo/dojo) +"hHU" = ( +/obj/item/weapon/inflatable_duck, +/turf/simulated/floor/holofloor/beach/sand, +/area/holodeck/source_beach) +"hIf" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/centcom/command) +"hIC" = ( +/obj/structure/flora/pottedplant/stoutbush, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/main_hall) +"hIL" = ( +/obj/machinery/door/window/northleft, +/turf/simulated/shuttle/floor/yellow, +/area/centcom/evac) +"hIM" = ( +/obj/machinery/door/airlock/external{ + frequency = 1380; + icon_state = "door_locked"; + id_tag = "trade_shuttle_bay_door"; + locked = 1 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/shuttle/trade) +"hIP" = ( +/obj/machinery/appliance/cooker/fryer, +/obj/effect/floor_decal/corner/white/diagonal, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/bar) +"hIT" = ( +/obj/machinery/door/airlock/external{ + req_access = list(150) + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/skipjack_station) +"hJc" = ( +/obj/machinery/body_scanconsole{ + dir = 1 + }, +/turf/simulated/shuttle/floor/white, +/area/centcom/evac) +"hJF" = ( +/obj/structure/curtain/open/shower, +/obj/machinery/shower{ + pixel_y = 3 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/shuttle/trade) +"hJM" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/security) +"hKy" = ( +/obj/structure/table/bench/wooden, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/ninja_dojo/dojo) +"hKA" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/structure/flora/ausbushes/ywflowers, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_picnicarea) +"hKU" = ( +/obj/machinery/door/window/northright{ + name = "Cargo Hold"; + req_access = list(160) + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"hMR" = ( +/obj/structure/table/reinforced, +/obj/machinery/microwave{ + pixel_x = -1; + pixel_y = 8 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/syndicate_station) +"hMT" = ( +/obj/effect/wingrille_spawn/reinforced/crescent, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/plating.dmi'; + icon_state = "plating"; + name = "plating" + }, +/area/centcom/living) +"hNd" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/centcom/command) +"hNz" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/portable_atmospherics/canister/oxygen/prechilled, +/turf/simulated/shuttle/floor/black, +/area/centcom/evac) +"hOk" = ( +/obj/machinery/door/airlock{ + name = "Unit 2" + }, +/turf/unsimulated/floor{ + icon_state = "freezerfloor" + }, +/area/syndicate_station) +"hOI" = ( +/obj/machinery/telecomms/processor/preset_cent, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/main_hall) +"hPC" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/firstaid/adv{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/weapon/storage/firstaid/adv, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "white" + }, +/area/centcom/medical) +"hPK" = ( +/obj/machinery/porta_turret{ + anchored = 0; + check_records = 0; + enabled = 0; + req_one_access = list(103); + use_power = 0 + }, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/specops) +"hQg" = ( +/obj/structure/bed/roller, +/turf/simulated/shuttle/floor/white, +/area/centcom/evac) +"hQt" = ( +/obj/machinery/door/airlock/glass_medical{ + id_tag = null; + name = "Patient Ward" + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel_grid" + }, +/area/centcom/medical) +"hQJ" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 5 + }, +/obj/structure/bed/roller, +/turf/simulated/shuttle/floor/white, +/area/shuttle/escape/centcom) +"hRs" = ( +/obj/machinery/recharge_station, +/turf/unsimulated/floor{ + icon_state = "freezerfloor" + }, +/area/syndicate_station) +"hRV" = ( +/obj/structure/table/steel_reinforced, +/obj/random/toolbox, +/obj/random/toolbox, +/obj/random/toolbox, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"hSg" = ( +/obj/machinery/button/flasher{ + id = "syndieflash"; + name = "Flasher"; + pixel_x = -27 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/shuttle/floor/voidcraft, +/area/syndicate_station/start) +"hSF" = ( +/turf/unsimulated/wall{ + desc = "That looks like it doesn't open easily."; + icon = 'icons/obj/doors/rapid_pdoor.dmi'; + icon_state = "pdoor1"; + name = "Shuttle Bay Blast Door" + }, +/area/skipjack_station) +"hTd" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/firstaid/adv{ + pixel_x = 1 + }, +/obj/item/weapon/storage/firstaid/toxin{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/closet/secure_closet/medical_wall{ + pixel_x = -32; + req_access = list(150) + }, +/obj/item/weapon/storage/firstaid/fire{ + pixel_x = 1 + }, +/obj/item/weapon/storage/firstaid/o2{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/storage/firstaid/regular, +/turf/simulated/shuttle/floor/white, +/area/skipjack_station/start) +"hTk" = ( +/obj/effect/floor_decal/sign/small_7, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_chess) +"hTv" = ( +/obj/machinery/door/airlock/centcom{ + name = "Living Quarters"; + req_one_access = list(105) + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel_grid" + }, +/area/centcom/living) +"hTz" = ( +/obj/structure/toilet{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "freezerfloor" + }, +/area/centcom/bar) +"hTP" = ( +/obj/machinery/vending/medical{ + pixel_y = -32; + req_access = null + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"hUo" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/bar) +"hUw" = ( +/obj/structure/mirror{ + pixel_y = 28 + }, +/turf/simulated/shuttle/floor/white, +/area/shuttle/merchant/home) +"hUy" = ( +/obj/machinery/computer/pod{ + dir = 1; + id = "syndicate_elite"; + name = "Hull Door Control" + }, +/turf/simulated/shuttle/floor/darkred, +/area/shuttle/syndicate_elite/mothership) +"hUB" = ( +/obj/machinery/computer/pod{ + id = "thunderdome"; + name = "Thunderdome Blast Door Control" + }, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome) +"hUI" = ( +/turf/unsimulated/wall{ + icon = 'icons/obj/doors/Doormaint.dmi'; + icon_state = "door_closed"; + name = "Sealed Door" + }, +/area/centcom/main_hall) +"hVa" = ( +/obj/machinery/computer/shuttle_control{ + dir = 8; + req_access = list(101); + shuttle_tag = "Centcom" + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/centcom/command) +"hWL" = ( +/obj/machinery/teleport/hub, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/specops) +"hXl" = ( +/obj/machinery/door/airlock/external, +/turf/simulated/shuttle/floor/black, +/area/centcom/evac) +"hXB" = ( +/obj/structure/table/standard, +/obj/item/weapon/reagent_containers/syringe/antiviral, +/obj/item/weapon/reagent_containers/syringe/antiviral, +/obj/item/weapon/storage/firstaid/clotting, +/obj/item/stack/medical/splint, +/turf/simulated/shuttle/floor/white, +/area/skipjack_station/start) +"hXQ" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/mirror{ + pixel_x = -28 + }, +/turf/unsimulated/floor{ + icon_state = "freezerfloor" + }, +/area/centcom/specops) +"hYD" = ( +/obj/item/device/multitool, +/obj/item/weapon/reagent_containers/spray/cleaner, +/obj/structure/table/reinforced, +/turf/simulated/shuttle/floor/red, +/area/shuttle/administration/centcom) +"hZm" = ( +/obj/machinery/door/blast/regular{ + id = "thunderdomegen"; + name = "General Supply" + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/techfloor.dmi'; + icon_state = "techfloor_gray" + }, +/area/tdome/tdome1) +"hZL" = ( +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel_grid" + }, +/area/centcom/living) +"iai" = ( +/obj/machinery/computer/shuttle_control/multi/mercenary_elite{ + dir = 1 + }, +/turf/simulated/shuttle/floor/darkred, +/area/shuttle/syndicate_elite/mothership) +"ian" = ( +/turf/simulated/floor/holofloor/beach/water, +/area/holodeck/source_beach) +"iby" = ( +/obj/effect/wingrille_spawn/reinforced/crescent, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/plating.dmi'; + icon_state = "plating"; + name = "plating" + }, +/area/centcom/medical) +"ibJ" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 9 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "white" + }, +/area/centcom/medical) +"ibU" = ( +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_theatre) +"idd" = ( +/obj/machinery/optable, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/syndicate_station/start) +"idn" = ( +/obj/structure/table/rack, +/obj/item/weapon/storage/belt/utility/full, +/obj/item/device/multitool, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/syndicate_station/start) +"idR" = ( +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + frequency = 1331; + id_tag = "vox_west_control"; + pixel_x = 24; + req_access = list(150); + tag_airpump = "vox_west_vent"; + tag_chamber_sensor = "vox_west_sensor"; + tag_exterior_door = "vox_northwest_lock"; + tag_interior_door = "vox_southwest_lock" + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1331; + id_tag = "vox_west_vent" + }, +/obj/machinery/light/small, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"ieY" = ( +/obj/machinery/door/airlock/glass_security{ + name = "Security Processing"; + req_access = list(1) + }, +/turf/space, +/area/centcom/security) +"ift" = ( +/obj/machinery/door/airlock{ + name = "Unit 1" + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel_grid" + }, +/area/centcom/specops) +"ifF" = ( +/obj/machinery/optable, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "white" + }, +/area/centcom/medical) +"igu" = ( +/obj/structure/bed/chair/wood/wings{ + dir = 8 + }, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/wizard_station) +"ihn" = ( +/obj/item/weapon/storage/toolbox/mechanical, +/obj/structure/table/reinforced, +/turf/simulated/shuttle/floor/red, +/area/shuttle/administration/centcom) +"iiz" = ( +/obj/effect/landmark{ + name = "Nuclear-Bomb" + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/syndicate_station) +"ijr" = ( +/obj/structure/closet/crate/medical{ + dir = 8 + }, +/obj/item/clothing/mask/surgical, +/obj/item/clothing/mask/surgical, +/obj/item/stack/nanopaste{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/stack/nanopaste, +/obj/item/weapon/storage/firstaid/surgery, +/turf/simulated/shuttle/floor/white, +/area/centcom/evac) +"ijP" = ( +/obj/structure/bookcase, +/turf/simulated/shuttle/floor/red, +/area/shuttle/administration/centcom) +"iki" = ( +/obj/machinery/computer/power_monitor{ + dir = 1 + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/wizard_station) +"ikC" = ( +/obj/machinery/door/window/westright{ + name = "Storefront"; + req_access = list(160) + }, +/obj/structure/table/marble, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 8; + icon_state = "shutter0"; + id = "trade"; + name = "Shop Shutters"; + opacity = 0 + }, +/turf/simulated/shuttle/floor/darkred, +/area/shuttle/merchant/home) +"ikS" = ( +/obj/structure/table/reinforced, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/main_hall) +"ils" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"ilS" = ( +/obj/item/clothing/glasses/night/vox, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/skipjack_station) +"ilY" = ( +/obj/structure/table/reinforced, +/turf/simulated/shuttle/floor/red, +/area/shuttle/administration/centcom) +"imr" = ( +/obj/machinery/embedded_controller/radio/docking_port_multi{ + child_names_txt = "Airlock Three;Airlock Four"; + child_tags_txt = "escape_dock_snorth_airlock;escape_dock_ssouth_airlock"; + frequency = 1380; + id_tag = "escape_dock"; + pixel_y = -32; + req_one_access = list(13) + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/green/border, +/obj/item/weapon/reagent_containers/glass/bucket, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/terminal) +"inZ" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/tray{ + pixel_y = 5 + }, +/obj/effect/landmark{ + name = "Nuclear-Code" + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/syndicate_station) +"ios" = ( +/obj/structure/reagent_dispensers/watertank/high, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/specops) +"ioC" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/box/donkpockets{ + pixel_x = 3; + pixel_y = 3 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/syndicate_station) +"irx" = ( +/obj/structure/bed/chair/shuttle, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/shuttle/floor/white, +/area/shuttle/escape/centcom) +"irR" = ( +/obj/machinery/door/airlock{ + name = "Unit 2" + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel_grid" + }, +/area/centcom/specops) +"isR" = ( +/turf/unsimulated/beach/coastline{ + density = 1; + opacity = 1 + }, +/area/beach) +"ith" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/pill_bottle/tramadol{ + pixel_x = -6; + pixel_y = -6 + }, +/obj/item/weapon/storage/pill_bottle/tramadol{ + pixel_x = -6; + pixel_y = -6 + }, +/obj/item/weapon/storage/pill_bottle/tramadol{ + pixel_x = -6; + pixel_y = -6 + }, +/obj/item/weapon/storage/pill_bottle/dylovene{ + pixel_y = -6 + }, +/obj/item/weapon/storage/pill_bottle/dylovene{ + pixel_x = -6 + }, +/obj/item/weapon/storage/pill_bottle/dylovene{ + pixel_x = -6 + }, +/obj/item/weapon/storage/pill_bottle/dermaline{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/weapon/storage/pill_bottle/dermaline{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/weapon/storage/pill_bottle/dermaline{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/weapon/storage/pill_bottle/spaceacillin, +/obj/item/weapon/storage/pill_bottle/dexalin_plus{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/weapon/storage/pill_bottle/dexalin_plus{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/weapon/storage/pill_bottle/dexalin_plus{ + pixel_x = 4; + pixel_y = 4 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/specops) +"iuf" = ( +/turf/unsimulated/wall, +/area/centcom/security) +"ivf" = ( +/obj/structure/table/reinforced, +/obj/machinery/librarycomp, +/turf/simulated/shuttle/floor/red, +/area/shuttle/administration/centcom) +"ivA" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/lockbox, +/turf/simulated/shuttle/floor/black, +/area/centcom/evac) +"ivO" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/simulated/shuttle/floor/voidcraft, +/area/syndicate_station/start) +"iwk" = ( +/turf/unsimulated/wall, +/area/virtual_reality) +"iwW" = ( +/obj/mecha/working/hoverpod, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/centcom/specops) +"ixy" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/wizard_station) +"ixP" = ( +/obj/structure/bed/chair/wood{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/bar) +"iym" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/turf/unsimulated/floor{ + icon_state = "grass0"; + name = "grass" + }, +/area/wizard_station) +"iyy" = ( +/obj/item/clothing/mask/gas/swat{ + desc = "A close-fitting mask clearly not made for a human face."; + name = "\improper alien mask" + }, +/turf/unsimulated/floor{ + icon_state = "asteroid" + }, +/area/skipjack_station) +"iyN" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/hos, +/turf/simulated/shuttle/floor/red, +/area/shuttle/administration/centcom) +"iyY" = ( +/obj/structure/table/standard, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/turf/simulated/shuttle/floor/red, +/area/shuttle/administration/centcom) +"izK" = ( +/obj/item/weapon/storage/box/evidence, +/obj/item/weapon/folder/red, +/obj/structure/table/reinforced, +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/security) +"izR" = ( +/obj/mecha/working/ripley/firefighter, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/centcom/specops) +"izS" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/orange, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/skipjack_station) +"iAT" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/terminal) +"iBh" = ( +/obj/structure/table/standard, +/obj/item/weapon/surgical/bonesetter, +/obj/item/weapon/surgical/bonegel, +/obj/item/weapon/surgical/FixOVein, +/obj/item/stack/nanopaste, +/turf/simulated/shuttle/floor/white, +/area/skipjack_station/start) +"iBk" = ( +/obj/item/stack/material/steel{ + amount = 50 + }, +/turf/simulated/shuttle/floor/red, +/area/shuttle/administration/centcom) +"iBJ" = ( +/obj/structure/table/holotable, +/obj/item/clothing/gloves/boxing/hologlove, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_boxingcourt) +"iBK" = ( +/obj/mecha/medical/odysseus/loaded, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/centcom/specops) +"iDo" = ( +/obj/effect/wingrille_spawn/reinforced, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/skipjack_station) +"iDE" = ( +/obj/effect/floor_decal/corner/red/full{ + dir = 8 + }, +/obj/structure/window/reinforced/holowindow/disappearing{ + dir = 1 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_thunderdomecourt) +"iFh" = ( +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_boxingcourt) +"iFo" = ( +/obj/structure/table/woodentable, +/obj/effect/floor_decal/corner/yellow{ + dir = 5 + }, +/obj/item/weapon/reagent_containers/food/condiment/small/sugar, +/turf/simulated/floor/tiled/white, +/area/centcom/bar) +"iFP" = ( +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/security) +"iGm" = ( +/obj/effect/floor_decal/corner/green/full{ + dir = 8 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_emptycourt) +"iGo" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/mirror{ + dir = 4; + pixel_x = -28 + }, +/turf/unsimulated/floor{ + icon_state = "freezerfloor" + }, +/area/skipjack_station) +"iGx" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 5 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/tdome) +"iGL" = ( +/obj/machinery/autolathe{ + desc = "Your typical Autolathe. It appears to have much more options than your regular one, however..."; + hacked = 1; + name = "Thunderdome Autolathe" + }, +/turf/simulated/shuttle/floor/red, +/area/shuttle/administration/centcom) +"iHa" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + id_tag = "large_escape_pod_1_recovery"; + pixel_x = -25; + pixel_y = 25; + req_one_access = list(13); + tag_door = "large_escape_pod_1_recovery_hatch" + }, +/turf/simulated/shuttle/floor/yellow, +/area/centcom/evac) +"iHh" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 8; + icon_state = "shutter0"; + id = "tradestarshutters"; + name = "Blast Shutters"; + opacity = 0 + }, +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced/full, +/turf/simulated/shuttle/plating, +/area/shuttle/merchant/home) +"iHp" = ( +/obj/structure/toilet, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/shuttle/floor/white, +/area/shuttle/merchant/home) +"iIh" = ( +/obj/item/mecha_parts/mecha_equipment/tool/drill/diamonddrill, +/obj/item/mecha_parts/mecha_equipment/tool/cable_layer, +/obj/structure/table/steel_reinforced, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/centcom/specops) +"iIp" = ( +/turf/unsimulated/wall, +/area/centcom/suppy) +"iIG" = ( +/obj/structure/closet/secure_closet/hos, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/creed) +"iJr" = ( +/obj/structure/sign/warning/moving_parts, +/turf/unsimulated/wall, +/area/centcom/terminal) +"iKp" = ( +/turf/unsimulated/wall, +/area/syndicate_station) +"iKT" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/box/glasses/square{ + pixel_x = 1; + pixel_y = 4 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/skipjack_station) +"iKU" = ( +/obj/structure/table/steel_reinforced, +/obj/random/tool, +/obj/random/tool, +/obj/random/tool, +/obj/random/tool, +/obj/random/tool, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"iLE" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "syndieshutters_infirmary"; + name = "Blast Shutters"; + opacity = 0 + }, +/obj/structure/window/reinforced/full, +/turf/simulated/shuttle/plating, +/area/syndicate_station/start) +"iLU" = ( +/obj/machinery/door/airlock/multi_tile/metal, +/obj/machinery/door/blast/regular{ + id = "spawnred"; + name = "Red Team Spawn" + }, +/turf/unsimulated/floor{ + icon_state = "steel_dirty" + }, +/area/virtual_reality) +"iMc" = ( +/obj/machinery/door/airlock/glass_medical{ + name = "Medical Bay"; + req_access = list(160) + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"iNa" = ( +/obj/structure/table/reinforced, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/command) +"iNR" = ( +/obj/item/robot_parts/robot_suit, +/obj/item/robot_parts/r_leg, +/obj/item/robot_parts/r_arm, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"iOk" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/shuttle/floor/red, +/area/shuttle/administration/centcom) +"iOt" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/blast/regular{ + id = "skipjackshutters"; + name = "Skipjack Blast Shielding" + }, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"iOG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "white" + }, +/area/centcom/medical) +"iPG" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/window{ + name = "Surgery"; + req_access = list(150) + }, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/syndicate_station/start) +"iPP" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/hop, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/skipjack_station) +"iQH" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/table/rack, +/obj/item/ammo_magazine/m45/rubber{ + pixel_y = -8 + }, +/obj/item/ammo_magazine/m45/rubber{ + pixel_y = -6 + }, +/obj/item/ammo_magazine/m45/rubber{ + pixel_y = -6 + }, +/obj/item/ammo_magazine/m45/rubber{ + pixel_y = -6 + }, +/obj/item/ammo_magazine/m45/rubber{ + pixel_y = -8 + }, +/obj/item/ammo_magazine/m45/rubber{ + pixel_y = -8 + }, +/obj/item/ammo_magazine/m45/flash{ + pixel_x = -2; + pixel_y = -4 + }, +/obj/item/ammo_magazine/m45/flash{ + pixel_x = -2; + pixel_y = -4 + }, +/obj/item/ammo_magazine/m45/flash{ + pixel_x = -2; + pixel_y = -4 + }, +/obj/item/ammo_magazine/m45, +/obj/item/ammo_magazine/m45, +/obj/item/ammo_magazine/m45, +/obj/item/ammo_magazine/m45, +/obj/item/ammo_magazine/m45, +/obj/item/ammo_magazine/m45, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/techfloor.dmi'; + icon_state = "techfloor_gray" + }, +/area/centcom/specops) +"iQT" = ( +/obj/structure/table/rack, +/obj/item/weapon/material/harpoon, +/obj/item/weapon/tank/oxygen, +/obj/item/weapon/tank/oxygen, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/random/rigsuit, +/obj/random/multiple/voidsuit, +/obj/random/multiple/voidsuit, +/obj/random/energy, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"iRf" = ( +/obj/machinery/floodlight, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"iRL" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/shuttle/floor/yellow, +/area/shuttle/transport1/centcom) +"iSO" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/firstaid/fire{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/weapon/storage/firstaid/fire, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 6 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 6 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "white" + }, +/area/centcom/medical) +"iSX" = ( +/turf/simulated/shuttle/wall/dark/hard_corner, +/area/shuttle/syndicate_elite/mothership) +"iTB" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/main_hall) +"iTF" = ( +/obj/structure/flora/tree/pine, +/turf/unsimulated/floor{ + icon = 'icons/turf/snow_new.dmi'; + icon_state = "snow"; + name = "snow" + }, +/area/ninja_dojo/dojo) +"iTU" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 8; + icon_state = "shutter0"; + id = "tradeportshutters"; + name = "Blast Shutters"; + opacity = 0 + }, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced/full, +/turf/simulated/shuttle/plating, +/area/shuttle/merchant/home) +"iTV" = ( +/obj/structure/window/reinforced/holowindow{ + dir = 1 + }, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_boxingcourt) +"iUS" = ( +/obj/structure/table/glass, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/main_hall) +"iVh" = ( +/obj/structure/bed/chair/holochair, +/obj/structure/window/reinforced/holowindow, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_courtroom) +"iVD" = ( +/turf/simulated/shuttle/wall/no_join{ + base_state = "orange"; + icon = 'icons/turf/shuttle_orange.dmi'; + icon_state = "orange" + }, +/area/centcom/evac) +"iWu" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/blast/regular{ + id = "skipjackshutters"; + name = "Skipjack Blast Shielding" + }, +/obj/structure/window/reinforced/full, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"iXj" = ( +/obj/structure/window/reinforced/holowindow{ + dir = 4 + }, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_courtroom) +"iXO" = ( +/obj/machinery/door/airlock/multi_tile/glass, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/security) +"iXW" = ( +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"iYa" = ( +/obj/structure/table/steel_reinforced, +/obj/random/medical, +/obj/random/medical, +/obj/random/medical, +/obj/random/medical, +/obj/structure/window/reinforced, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"iYD" = ( +/obj/structure/table/rack, +/obj/item/weapon/gun/energy/darkmatter, +/obj/item/weapon/gun/energy/darkmatter, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/skipjack_station) +"iYI" = ( +/obj/machinery/door/airlock/command{ + name = "Captain's Quarters"; + req_access = list(160) + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"iZE" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/shuttle/plating, +/area/shuttle/merchant/home) +"iZQ" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/paper/dockingcodes{ + codes_from_z = 4; + name = "Telecomms Docking Codes" + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/command) +"jbx" = ( +/obj/machinery/door/window/holowindoor{ + dir = 1 + }, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_courtroom) +"jbD" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/item/weapon/gun/projectile/sec{ + pixel_x = 2; + pixel_y = -4 + }, +/obj/item/weapon/gun/projectile/sec, +/obj/item/weapon/gun/projectile/sec{ + pixel_x = -2; + pixel_y = 4 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/techfloor.dmi'; + icon_state = "techfloor_gray" + }, +/area/centcom/specops) +"jbY" = ( +/obj/machinery/computer/cryopod/dorms{ + pixel_x = -32 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/main_hall) +"jcp" = ( +/turf/simulated/shuttle/floor/red, +/area/shuttle/administration/centcom) +"jcx" = ( +/obj/effect/landmark{ + name = "voxstart" + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/wood.dmi'; + icon_state = "wood_broken2" + }, +/area/skipjack_station) +"jcy" = ( +/obj/machinery/computer/communications, +/turf/simulated/shuttle/floor/red, +/area/shuttle/administration/centcom) +"jcL" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/box/handcuffs{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/storage/box/handcuffs, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/techfloor.dmi'; + icon_state = "techfloor_gray" + }, +/area/centcom/specops) +"jdB" = ( +/obj/machinery/computer/shuttle{ + dir = 8 + }, +/turf/simulated/shuttle/floor/black, +/area/centcom/evac) +"jdD" = ( +/obj/machinery/door/airlock/centcom{ + name = "Administrative Office"; + req_access = list(108) + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/creed) +"jdF" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/shuttle/trade) +"jdG" = ( +/obj/effect/overlay/palmtree_l, +/obj/effect/overlay/coconut, +/turf/simulated/floor/holofloor/beach/sand, +/area/holodeck/source_beach) +"jeE" = ( +/obj/machinery/recharge_station, +/turf/simulated/shuttle/floor, +/area/centcom/evac) +"jeV" = ( +/obj/structure/table/woodentable/holotable, +/turf/simulated/floor/holofloor/desert, +/area/holodeck/source_picnicarea) +"jeX" = ( +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/wizard_station) +"jgo" = ( +/obj/item/weapon/ore, +/turf/unsimulated/floor{ + icon_state = "asteroid_dug"; + name = "plating" + }, +/area/skipjack_station) +"jhi" = ( +/obj/structure/shuttle/engine/propulsion, +/turf/simulated/shuttle/plating/airless/carry, +/area/shuttle/supply) +"jhI" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/bar) +"jiW" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/bordercorner{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/main_hall) +"jiY" = ( +/turf/unsimulated/floor{ + icon_state = "freezerfloor" + }, +/area/ninja_dojo/dojo) +"jjt" = ( +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/structure/bed/chair/holochair{ + dir = 4 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"jjI" = ( +/obj/structure/table/glass, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"jlI" = ( +/obj/machinery/sleeper{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "white" + }, +/area/centcom/medical) +"jnd" = ( +/obj/machinery/door/airlock/hatch{ + req_access = list(150) + }, +/turf/unsimulated/floor{ + icon_state = "steel_dirty" + }, +/area/skipjack_station) +"jnM" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/turf/simulated/shuttle/floor/red, +/area/shuttle/administration/centcom) +"jqg" = ( +/obj/structure/closet{ + name = "Prisoner's Locker" + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 5 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 5 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/security) +"jqs" = ( +/obj/machinery/door/airlock/hatch{ + req_access = list(150) + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/skipjack_station) +"jqO" = ( +/obj/item/device/suit_cooling_unit, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"jrv" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/creed) +"jsj" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/space/vox/carapace, +/obj/item/clothing/suit/space/vox/carapace, +/obj/item/clothing/head/helmet/space/vox/carapace, +/obj/item/clothing/head/helmet/space/vox/carapace, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/skipjack_station) +"jsD" = ( +/obj/machinery/suit_cycler/syndicate, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"jsM" = ( +/obj/machinery/door/airlock/external{ + id_tag = "merc_elite_shuttle_hatch"; + name = "Shuttle Airlock"; + req_access = list(150) + }, +/obj/machinery/door/blast/regular{ + id = "syndicate_elite"; + name = "Front Hull Door" + }, +/turf/simulated/shuttle/plating, +/area/shuttle/syndicate_elite/mothership) +"juz" = ( +/obj/item/robot_parts/chest, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/wizard_station) +"jwB" = ( +/obj/item/weapon/material/knife/tacknife/combatknife, +/obj/item/weapon/material/knife/tacknife/combatknife, +/obj/item/weapon/material/knife/tacknife/combatknife, +/obj/item/weapon/material/knife/tacknife/combatknife, +/obj/item/weapon/material/knife/tacknife/combatknife, +/obj/item/weapon/material/knife/tacknife/combatknife, +/obj/structure/table/reinforced, +/obj/item/weapon/reagent_containers/spray/pepper, +/obj/item/weapon/reagent_containers/spray/pepper, +/obj/item/weapon/reagent_containers/spray/pepper, +/obj/item/weapon/reagent_containers/spray/pepper, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/techfloor.dmi'; + icon_state = "techfloor_gray" + }, +/area/centcom/specops) +"jwL" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/syndicate_station) +"jxk" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/structure/window/reinforced{ + dir = 4; + health = 1e+006 + }, +/obj/structure/window/reinforced, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/syndicate_station) +"jxP" = ( +/obj/structure/table/rack, +/obj/item/weapon/tank/jetpack/carbondioxide, +/obj/item/weapon/tank/jetpack/carbondioxide, +/obj/item/weapon/tank/jetpack/carbondioxide, +/obj/item/weapon/tank/jetpack/carbondioxide, +/obj/item/weapon/tank/jetpack/carbondioxide, +/obj/item/weapon/tank/jetpack/carbondioxide, +/obj/structure/window/reinforced{ + dir = 4; + health = 1e+006 + }, +/obj/structure/window/reinforced, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/syndicate_station) +"jyk" = ( +/obj/structure/table/rack, +/obj/item/weapon/gun/energy/taser, +/obj/item/weapon/gun/energy/taser, +/obj/item/weapon/gun/energy/taser, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/techfloor.dmi'; + icon_state = "techfloor_gray" + }, +/area/centcom/specops) +"jyq" = ( +/obj/machinery/vending/security, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/techfloor.dmi'; + icon_state = "techfloor_gray" + }, +/area/centcom/specops) +"jyC" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/reagent_containers/food/drinks/bottle/vodka{ + pixel_x = 3; + pixel_y = 12 + }, +/obj/item/weapon/reagent_containers/food/drinks/bottle/wine{ + pixel_x = -1; + pixel_y = 8 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/syndicate_station) +"jyL" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/shuttle/floor/darkred, +/area/skipjack_station/start) +"jzs" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_red" + }, +/area/shuttle/arrival/pre_game) +"jAm" = ( +/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{ + pixel_x = -6 + }, +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/yellow/diagonal, +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/living) +"jAZ" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/security) +"jCT" = ( +/obj/machinery/vending/sovietsoda{ + dir = 1 + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"jDo" = ( +/obj/structure/table/standard, +/obj/item/weapon/towel{ + color = "#ff0000"; + name = "red towel" + }, +/obj/item/weapon/towel{ + color = "#ff0000"; + name = "red towel" + }, +/obj/item/weapon/towel{ + color = "#ff0000"; + name = "red towel" + }, +/obj/item/weapon/towel{ + color = "#ff0000"; + name = "red towel" + }, +/obj/item/weapon/towel{ + color = "#ff0000"; + name = "red towel" + }, +/obj/item/weapon/soap/syndie, +/obj/item/weapon/soap/syndie, +/turf/simulated/floor/tiled/freezer, +/area/syndicate_station) +"jDp" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/terminal) +"jDJ" = ( +/turf/unsimulated/wall{ + desc = "That looks like it doesn't open easily."; + dir = 8; + icon = 'icons/obj/doors/rapid_pdoor.dmi'; + icon_state = "pdoor1"; + name = "Shuttle Bay Blast Door" + }, +/area/centcom/evac) +"jEH" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/security) +"jFu" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table/rack, +/obj/item/weapon/storage/backpack/ert/security{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/weapon/storage/backpack/ert/security, +/obj/item/weapon/storage/backpack/ert/security{ + pixel_x = 2; + pixel_y = 2 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/techfloor.dmi'; + icon_state = "techfloor_gray" + }, +/area/centcom/specops) +"jFD" = ( +/obj/item/device/radio/intercom{ + desc = "Talk through this. Evilly"; + dir = 8; + frequency = 1213; + name = "Subversive Intercom"; + pixel_x = -32; + subspace_transmission = 1; + syndie = 1 + }, +/turf/simulated/shuttle/floor/voidcraft, +/area/syndicate_station/start) +"jGa" = ( +/obj/machinery/door/airlock/external{ + frequency = 1380; + icon_state = "door_locked"; + id_tag = "admin_shuttle_hatch"; + locked = 1; + name = "Shuttle Hatch"; + req_access = list(13) + }, +/turf/simulated/floor/plating, +/area/shuttle/administration/centcom) +"jGi" = ( +/obj/machinery/door/airlock/glass, +/turf/simulated/shuttle/floor/red, +/area/shuttle/administration/centcom) +"jGM" = ( +/obj/machinery/door/airlock{ + icon = 'icons/obj/doors/Dooruranium.dmi' + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/ninja_dojo/dojo) +"jHE" = ( +/obj/effect/landmark{ + name = "voxstart" + }, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/skipjack_station) +"jHG" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "syndieshutters_infirmary"; + name = "Blast Shutters"; + opacity = 0 + }, +/obj/structure/window/reinforced/full, +/turf/simulated/shuttle/plating, +/area/syndicate_station/start) +"jHN" = ( +/obj/machinery/recharge_station, +/turf/simulated/shuttle/floor/red, +/area/shuttle/administration/centcom) +"jHW" = ( +/obj/effect/forcefield{ + desc = "You can't get in. Heh."; + layer = 1; + name = "Blocker" + }, +/obj/effect/wingrille_spawn/reinforced/crescent, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/tdome) +"jIe" = ( +/obj/effect/landmark{ + name = "Commando" + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/specops) +"jIu" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/structure/closet/crate/solar, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"jJx" = ( +/obj/item/weapon/reagent_containers/food/drinks/bottle/pwine{ + pixel_x = -4; + pixel_y = 10 + }, +/obj/structure/table/marble, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/wizard_station) +"jJL" = ( +/turf/simulated/floor/holofloor/reinforced, +/area/holodeck/source_wildlife) +"jJS" = ( +/obj/machinery/computer/arcade/battle, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/wizard_station) +"jJZ" = ( +/turf/simulated/floor/carpet/bcarpet, +/area/centcom/bar) +"jKw" = ( +/turf/unsimulated/wall, +/area/centcom/creed) +"jKX" = ( +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"jLw" = ( +/obj/effect/floor_decal/corner/blue/full{ + dir = 4 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_boxingcourt) +"jMp" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/item/weapon/reagent_containers/glass/beaker/large, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "white" + }, +/area/centcom/medical) +"jMC" = ( +/obj/item/toy/chess/king_black, +/turf/simulated/floor/holofloor/wmarble, +/area/holodeck/source_chess) +"jNQ" = ( +/turf/unsimulated/wall{ + desc = "That looks like it doesn't open easily."; + icon = 'icons/obj/doors/rapid_pdoor.dmi'; + icon_state = "pdoor1"; + name = "Shuttle Bay Blast Door" + }, +/area/syndicate_mothership/elite_squad) +"jPM" = ( +/turf/simulated/wall/skipjack, +/area/skipjack_station/start) +"jQJ" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + dir = 1; + frequency = 1380; + id_tag = "escape_pod_1_recovery"; + pixel_x = 25; + pixel_y = -25; + req_one_access = list(13); + tag_door = "escape_pod_1_recovery_hatch" + }, +/turf/simulated/shuttle/floor/yellow, +/area/centcom/evac) +"jQQ" = ( +/obj/structure/window/reinforced, +/obj/machinery/door/blast/shutters{ + density = 0; + icon_state = "shutter0"; + id = "tradestarshutters"; + name = "Blast Shutters"; + opacity = 0 + }, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced/full, +/turf/simulated/shuttle/plating, +/area/shuttle/merchant/home) +"jQR" = ( +/obj/machinery/door/airlock{ + name = "Unit 1" + }, +/turf/unsimulated/floor{ + icon_state = "freezerfloor" + }, +/area/syndicate_station) +"jRa" = ( +/obj/structure/table/standard, +/turf/unsimulated/floor{ + icon_state = "carpet" + }, +/area/shuttle/trade) +"jRm" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/item/weapon/bananapeel, +/turf/unsimulated/floor{ + icon_state = "carpet" + }, +/area/centcom/command) +"jRz" = ( +/obj/machinery/computer/operating, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/pink/border{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "white" + }, +/area/centcom/medical) +"jRF" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/machinery/chemical_dispenser/ert, +/obj/item/weapon/reagent_containers/glass/beaker/large, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "white" + }, +/area/centcom/medical) +"jRO" = ( +/obj/item/clothing/suit/caution, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/terminal) +"jRZ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/largecrate/animal/cow, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"jSa" = ( +/turf/unsimulated/wall, +/area/tdome) +"jSC" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/snow_new.dmi'; + icon_state = "snow"; + name = "snow" + }, +/area/ninja_dojo/dojo) +"jTv" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"jTD" = ( +/obj/item/toy/chess/rook_black, +/turf/simulated/floor/holofloor/wmarble, +/area/holodeck/source_chess) +"jUa" = ( +/obj/structure/table/rack, +/obj/item/weapon/grenade/empgrenade, +/obj/item/weapon/grenade/flashbang, +/obj/item/weapon/grenade/spawnergrenade/manhacks, +/turf/simulated/shuttle/floor/darkred, +/area/skipjack_station/start) +"jUW" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/turf/unsimulated/floor{ + icon_state = "freezerfloor" + }, +/area/centcom/bar) +"jVR" = ( +/obj/machinery/sleep_console{ + dir = 4 + }, +/turf/simulated/shuttle/floor/white, +/area/shuttle/escape/centcom) +"jWI" = ( +/obj/machinery/door/blast/regular{ + id = "ASSAULT"; + name = "Assault Weapon Storage" + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"jXl" = ( +/turf/unsimulated/beach/sand{ + density = 1; + opacity = 1 + }, +/area/beach) +"jYm" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/administration/centcom) +"jYn" = ( +/obj/machinery/atmospherics/valve{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome) +"jYW" = ( +/turf/simulated/shuttle/wall/voidcraft/hard_corner, +/area/ninja_dojo/start) +"kbj" = ( +/obj/structure/table/rack, +/obj/item/clothing/accessory/holster/leg, +/obj/item/clothing/accessory/holster/leg, +/obj/item/clothing/accessory/holster/leg, +/obj/item/clothing/accessory/holster/leg, +/obj/item/clothing/accessory/holster/leg, +/obj/item/clothing/accessory/holster/leg, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/specops) +"kcd" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/shuttle/floor/darkred, +/area/skipjack_station/start) +"kcj" = ( +/obj/machinery/cell_charger, +/obj/structure/table/reinforced, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/item/weapon/cell/high, +/obj/item/weapon/cell/high, +/obj/item/weapon/cell/high{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/cell/high{ + pixel_x = 4; + pixel_y = 4 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/specops) +"kdh" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/bordercorner{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/terminal) +"ket" = ( +/obj/structure/toilet{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "freezerfloor" + }, +/area/syndicate_station) +"kfp" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/bordercorner{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/main_hall) +"kfC" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/snacks/fortunecookie, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/ninja_dojo/dojo) +"kga" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/blast/regular{ + id = "skipjackshutters"; + name = "Skipjack Blast Shielding" + }, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"kgy" = ( +/obj/machinery/door/airlock/glass_command{ + name = "Escape Shuttle Cockpit"; + req_access = list(19) + }, +/turf/simulated/shuttle/floor, +/area/shuttle/escape/centcom) +"kgI" = ( +/obj/structure/table/glass, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/specops) +"kgL" = ( +/obj/structure/holostool, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_boxingcourt) +"khb" = ( +/obj/structure/table/woodentable, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/bar) +"khu" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/shuttle/floor/yellow, +/area/centcom/evac) +"khR" = ( +/obj/structure/toilet{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "freezerfloor" + }, +/area/centcom/specops) +"khX" = ( +/turf/unsimulated/wall{ + icon = 'icons/obj/doors/Doormaint.dmi'; + icon_state = "door_closed"; + name = "Sealed Door" + }, +/area/centcom/medical) +"kid" = ( +/turf/simulated/floor/airless, +/area/shuttle/syndicate_elite/mothership) +"kih" = ( +/obj/structure/table/woodentable, +/obj/effect/floor_decal/corner/yellow{ + dir = 10 + }, +/obj/item/weapon/reagent_containers/food/condiment/small/sugar, +/turf/simulated/floor/tiled/white, +/area/centcom/bar) +"kiC" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/shuttle/floor, +/area/shuttle/arrival/pre_game) +"kiG" = ( +/obj/machinery/door/airlock/centcom{ + name = "Special Operations"; + req_access = list(103) + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/centcom/specops) +"kiI" = ( +/obj/machinery/door/airlock/external{ + frequency = null; + icon_state = "door_locked"; + id_tag = null; + locked = 1; + name = "Recovery Shuttle Dock 2" + }, +/turf/simulated/shuttle/floor/black, +/area/centcom/evac) +"kjb" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/wizard_station) +"kje" = ( +/obj/machinery/door/airlock/centcom{ + name = "Suit Storage" + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/syndicate_station) +"kjf" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/blast/regular{ + id = "skipjackshutters"; + name = "Skipjack Blast Shielding" + }, +/obj/structure/window/reinforced/full, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"kjI" = ( +/obj/structure/closet/wardrobe/mixed, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/shuttle/trade) +"kka" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/glass_centcom{ + name = "Special Operations"; + req_one_access = list(103) + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/techfloor.dmi'; + icon_state = "techfloor_gray" + }, +/area/centcom/specops) +"kkf" = ( +/obj/machinery/button/remote/blast_door{ + id = "trade"; + name = "Shop Shutters"; + pixel_y = -26 + }, +/turf/simulated/shuttle/floor/darkred, +/area/shuttle/merchant/home) +"kkm" = ( +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet{ + dir = 5 + }, +/turf/unsimulated/floor{ + icon_state = "carpet" + }, +/area/centcom/command) +"kkU" = ( +/obj/structure/table/rack, +/obj/item/weapon/tank/oxygen, +/obj/item/weapon/tank/oxygen, +/obj/random/multiple/voidsuit, +/obj/random/multiple/voidsuit, +/obj/random/energy, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"kmb" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/obj/item/weapon/mop, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/terminal) +"knf" = ( +/obj/machinery/door/airlock/centcom{ + name = "Kitchen"; + req_access = list(150) + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/syndicate_station) +"knl" = ( +/obj/structure/table/wooden_reinforced, +/obj/item/device/radio/intercom/specops{ + pixel_y = -21 + }, +/obj/machinery/button/remote/blast_door{ + id = "CREED"; + name = "Spec Ops Ready Room"; + pixel_y = 15; + req_access = list(11) + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/creed) +"knp" = ( +/obj/machinery/shower{ + dir = 4; + pixel_x = 5; + pixel_y = -1 + }, +/obj/structure/curtain/open/shower, +/turf/simulated/shuttle/floor/white, +/area/centcom/evac) +"knt" = ( +/obj/machinery/computer/crew{ + dir = 1 + }, +/turf/simulated/shuttle/floor/black, +/area/centcom/evac) +"knH" = ( +/obj/item/seeds/potatoseed, +/obj/item/seeds/potatoseed, +/obj/item/seeds/ambrosiavulgarisseed, +/obj/item/weapon/material/minihoe, +/obj/item/weapon/beartrap, +/obj/structure/table/steel, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"knY" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/bar) +"knZ" = ( +/obj/machinery/door/airlock{ + name = "Unit 2" + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel_grid" + }, +/area/centcom/bar) +"koq" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-22" + }, +/turf/simulated/floor/carpet, +/area/shuttle/merchant/home) +"kpv" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet/orange, +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/red/border, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/security) +"kpE" = ( +/turf/unsimulated/floor{ + icon_state = "asteroid" + }, +/area/centcom/terminal) +"kpG" = ( +/turf/simulated/shuttle/floor, +/area/shuttle/escape/centcom) +"kqh" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4; + frequency = 1331; + id_tag = "merc_shuttle_pump" + }, +/obj/machinery/light/small, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/syndicate_station/start) +"kqD" = ( +/turf/simulated/shuttle/floor/red, +/area/skipjack_station/start) +"kqS" = ( +/obj/machinery/airlock_sensor{ + frequency = 1331; + id_tag = "vox_west_sensor"; + pixel_x = 25 + }, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"krB" = ( +/turf/unsimulated/wall{ + icon = 'icons/obj/doors/Dooruranium.dmi'; + icon_state = "door_closed"; + name = "Sealed Door" + }, +/area/ninja_dojo/dojo) +"ksg" = ( +/obj/machinery/power/emitter{ + anchored = 1; + desc = "It is a heavy duty industrial laser used in a very non-industrial way."; + name = "teleport defender" + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/wizard_station) +"ktS" = ( +/obj/machinery/computer/shuttle_control{ + dir = 4; + req_access = list(101); + shuttle_tag = "Centcom" + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/centcom/command) +"ktX" = ( +/obj/structure/table/standard, +/obj/item/weapon/soap/deluxe, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/shuttle/trade) +"kuj" = ( +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"kut" = ( +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/syndicate_station/start) +"kuy" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "white" + }, +/area/centcom/medical) +"kuN" = ( +/obj/machinery/door/airlock/external{ + frequency = 1380; + icon_state = "door_locked"; + id_tag = "escape_shuttle_hatch"; + locked = 1; + name = "Shuttle Hatch"; + req_access = list(13) + }, +/turf/simulated/shuttle/floor, +/area/shuttle/escape/centcom) +"kuU" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/medical) +"kvf" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/terminal) +"kxd" = ( +/obj/machinery/door/airlock/centcom{ + name = "General Access"; + req_access = list(101) + }, +/turf/simulated/floor/plating, +/area/shuttle/administration/centcom) +"kxT" = ( +/obj/machinery/button/remote/blast_door{ + id = "tradeportshutters"; + name = "remote shutter control"; + pixel_x = 30; + req_access = list(160) + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"kya" = ( +/obj/effect/floor_decal/sign/small_3, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_chess) +"kyi" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_picnicarea) +"kyq" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/bar) +"kyA" = ( +/obj/item/xenos_claw, +/obj/item/organ/internal/brain/vox, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/skipjack_station) +"kyI" = ( +/obj/structure/table/glass, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/ninja_dojo/dojo) +"kyJ" = ( +/obj/machinery/door/window/southright{ + name = "Cargo Hold"; + req_access = list(160) + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"kyO" = ( +/obj/effect/floor_decal/techfloor{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/techfloor.dmi'; + icon_state = "techfloor_grid" + }, +/area/centcom/terminal) +"kyQ" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/rd, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"kyR" = ( +/obj/machinery/door/blast/regular{ + id = "thunderdomehea"; + name = "Heavy Supply" + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/techfloor.dmi'; + icon_state = "techfloor_gray" + }, +/area/tdome/tdome2) +"kzb" = ( +/obj/structure/window/reinforced{ + dir = 1; + health = 1e+006 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/computer/supplycomp/control{ + dir = 4 + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/centcom/command) +"kzI" = ( +/obj/structure/mopbucket, +/obj/item/weapon/mop, +/turf/simulated/shuttle/plating, +/area/centcom/evac) +"kzL" = ( +/obj/machinery/computer/security{ + dir = 1 + }, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/ninja_dojo/start) +"kAx" = ( +/obj/machinery/door/airlock{ + name = "Restroom" + }, +/turf/unsimulated/floor{ + icon_state = "freezerfloor" + }, +/area/syndicate_station) +"kBp" = ( +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 5 + }, +/obj/structure/holostool{ + dir = 4 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_meetinghall) +"kBx" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/box/glasses/square{ + pixel_x = 1; + pixel_y = 4 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/syndicate_station) +"kBC" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 4 + }, +/obj/structure/table/marble, +/obj/machinery/chemical_dispenser/bar_coffee/full{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/bar) +"kBU" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/main_hall) +"kDg" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/borderfloorblack{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 6 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/security) +"kDB" = ( +/obj/structure/bed/chair, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/specops) +"kDD" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-20" + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/wizard_station) +"kEd" = ( +/obj/machinery/computer/cryopod/dorms{ + pixel_x = 32 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/main_hall) +"kEg" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 9 + }, +/turf/simulated/shuttle/floor/white, +/area/shuttle/escape/centcom) +"kEj" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"kEo" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/main_hall) +"kEx" = ( +/obj/effect/overlay/coconut, +/turf/unsimulated/beach/sand, +/area/beach) +"kER" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/item/weapon/tool/crowbar, +/obj/item/device/suit_cooling_unit, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"kFb" = ( +/obj/structure/bed/chair/office/dark, +/turf/simulated/floor/carpet, +/area/shuttle/merchant/home) +"kFw" = ( +/turf/simulated/floor/holofloor/desert, +/area/holodeck/source_desert) +"kGu" = ( +/obj/machinery/door/airlock/glass{ + name = "Dock" + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel_grid" + }, +/area/centcom/terminal) +"kGG" = ( +/obj/structure/closet, +/turf/unsimulated/beach/sand, +/area/beach) +"kHc" = ( +/obj/machinery/door/airlock/external{ + frequency = 1380; + icon_state = "door_locked"; + id_tag = "centcom_dock_airlock"; + locked = 1; + name = "Arrivals Airlock"; + req_access = list(13) + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/techfloor.dmi'; + icon_state = "techfloor_gray" + }, +/area/centcom/terminal) +"kHn" = ( +/obj/machinery/vending/snack{ + dir = 4; + name = "hacked Getmore Chocolate Corp"; + prices = list() + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/syndicate_station) +"kHM" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/blast/regular{ + id = "skipjackshutters"; + name = "Skipjack Blast Shielding" + }, +/obj/structure/window/reinforced/full, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"kIq" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/tool/crowbar, +/obj/item/weapon/tool/screwdriver, +/obj/item/weapon/tool/wrench, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/specops) +"kIr" = ( +/obj/structure/table/bench/padded, +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/security) +"kIB" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"kJA" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "tradeportshutters"; + name = "Blast Shutters"; + opacity = 0 + }, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced/full, +/turf/simulated/shuttle/plating, +/area/shuttle/merchant/home) +"kJK" = ( +/obj/structure/morgue{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/medical) +"kKs" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/terminal) +"kKD" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 6 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/tdome) +"kKO" = ( +/obj/machinery/atmospherics/pipe/tank/air, +/turf/simulated/shuttle/floor/voidcraft, +/area/syndicate_station/start) +"kLb" = ( +/obj/item/weapon/storage/box/syndie_kit/clerical, +/obj/structure/table/standard, +/turf/unsimulated/floor{ + icon_state = "cult"; + name = "plating" + }, +/area/syndicate_station) +"kMf" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/wizard_station) +"kNj" = ( +/obj/item/toy/chess/rook_white, +/turf/simulated/floor/holofloor/bmarble, +/area/holodeck/source_chess) +"kND" = ( +/obj/machinery/vending/snack{ + name = "hacked Getmore Chocolate Corp"; + prices = list() + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/specops) +"kNX" = ( +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/centcom/command) +"kOA" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + id_tag = "admin_shuttle"; + pixel_y = -25; + req_one_access = list(101); + tag_door = "admin_shuttle_hatch" + }, +/obj/effect/shuttle_landmark{ + base_area = /area/centcom/command; + base_turf = /turf/unsimulated/floor; + landmark_tag = "admin_shuttle_start"; + name = "Administration Shuttle Bay" + }, +/turf/simulated/floor/plating, +/area/shuttle/administration/centcom) +"kPq" = ( +/obj/structure/bed/chair/comfy/black, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"kPP" = ( +/obj/structure/table/woodentable, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/brown/border, +/turf/simulated/floor/tiled/white, +/area/centcom/bar) +"kPT" = ( +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_boxingcourt) +"kPZ" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/storage/vest/heavy/merc, +/obj/item/clothing/suit/storage/vest/heavy, +/obj/item/clothing/suit/storage/vest, +/obj/item/clothing/head/helmet, +/obj/item/clothing/head/helmet, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/shuttle/trade) +"kQq" = ( +/obj/structure/window/reinforced/holowindow{ + dir = 8 + }, +/obj/structure/holostool{ + dir = 8 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"kRi" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/blast/regular{ + id = "skipjackshutters"; + name = "Skipjack Blast Shielding" + }, +/obj/structure/window/reinforced/full, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"kRq" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/recharger, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/ninja_dojo/start) +"kRO" = ( +/obj/structure/table/steel_reinforced, +/obj/item/broken_device, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/wizard_station) +"kSs" = ( +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "white" + }, +/area/centcom/medical) +"kSP" = ( +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 9 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"kST" = ( +/obj/machinery/vending/medical, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/techfloor.dmi'; + icon_state = "techfloor_gray" + }, +/area/centcom/specops) +"kTa" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/box/donkpockets, +/turf/simulated/floor/carpet, +/area/shuttle/merchant/home) +"kTp" = ( +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/syndicate_station) +"kTy" = ( +/obj/effect/floor_decal/corner/blue/full{ + dir = 8 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_boxingcourt) +"kTT" = ( +/obj/machinery/light, +/turf/simulated/shuttle/floor/red, +/area/shuttle/administration/centcom) +"kTU" = ( +/obj/structure/table/rack, +/obj/item/clothing/mask/breath, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/random/multiple/voidsuit, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"kUC" = ( +/obj/structure/bed/chair, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/shuttle/floor, +/area/shuttle/transport1/centcom) +"kUD" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/machinery/light, +/turf/simulated/shuttle/floor, +/area/shuttle/transport1/centcom) +"kVF" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/stamp/centcomm, +/obj/item/weapon/pen, +/obj/item/weapon/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/specops) +"kWA" = ( +/obj/machinery/bodyscanner{ + dir = 8 + }, +/turf/simulated/shuttle/floor/white, +/area/skipjack_station/start) +"kXc" = ( +/obj/machinery/computer/shuttle{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/wizard_station) +"kXS" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/main_hall) +"kYD" = ( +/obj/structure/table/reinforced, +/obj/item/device/taperecorder, +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/security) +"kYU" = ( +/obj/structure/bed/chair/comfy/black, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/ninja_dojo/start) +"kZc" = ( +/obj/structure/table/steel, +/obj/effect/spawner/newbomb/timer/syndicate, +/obj/item/weapon/tool/screwdriver, +/obj/item/device/assembly/signaler{ + pixel_y = 2 + }, +/turf/simulated/shuttle/floor/voidcraft, +/area/syndicate_station/start) +"kZo" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/porta_turret/crescent, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/main_hall) +"laa" = ( +/obj/machinery/optable, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"lac" = ( +/obj/machinery/pipedispenser/orderable, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/specops) +"lao" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/main_hall) +"laK" = ( +/obj/machinery/iv_drip, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"lbC" = ( +/obj/item/weapon/ore, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/skipjack_station) +"ldx" = ( +/turf/unsimulated/floor{ + icon_state = "asteroid" + }, +/area/ninja_dojo/dojo) +"lem" = ( +/obj/structure/frame/computer, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/shuttle/trade) +"leY" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"lfk" = ( +/obj/machinery/vending/deathmatch/red, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/virtual_reality) +"lfu" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/main_hall) +"lgz" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_vest, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/specops) +"lgW" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"lhd" = ( +/obj/machinery/newscaster{ + layer = 3.3; + pixel_y = 30 + }, +/obj/structure/bedsheetbin, +/obj/structure/table/woodentable, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/wizard_station) +"lht" = ( +/obj/structure/table/steel, +/obj/item/weapon/deck/cards, +/turf/simulated/shuttle/floor/darkred, +/area/skipjack_station/start) +"lhE" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "ninjawindow"; + name = "Blast Shutters"; + opacity = 0 + }, +/obj/structure/window/reinforced/full, +/turf/simulated/shuttle/plating, +/area/ninja_dojo/start) +"liK" = ( +/obj/structure/table/reinforced, +/obj/item/device/paicard, +/obj/item/device/paicard, +/obj/item/device/paicard, +/obj/item/device/paicard, +/obj/item/weapon/storage/box/donut, +/obj/item/weapon/storage/box, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/specops) +"lja" = ( +/mob/living/simple_mob/animal/passive/mouse/gray{ + desc = "He looks kingly."; + name = "Arthur" + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/wizard_station) +"lky" = ( +/obj/machinery/microwave{ + pixel_x = -1; + pixel_y = 8 + }, +/obj/structure/table/standard, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/skipjack_station) +"lkV" = ( +/obj/structure/table/standard, +/obj/machinery/microwave, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"llZ" = ( +/obj/structure/closet/emcloset, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/terminal) +"lmj" = ( +/turf/simulated/floor/carpet, +/area/shuttle/merchant/home) +"lmx" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/weapon/gun/energy/gun/nuclear, +/obj/item/weapon/gun/energy/gun/nuclear, +/obj/item/weapon/gun/energy/gun/nuclear, +/obj/structure/window/reinforced, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/techfloor.dmi'; + icon_state = "techfloor_gray" + }, +/area/centcom/specops) +"lmW" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/hos, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/syndicate_station) +"lnp" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-06" + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_theatre) +"lov" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 9 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/security) +"loN" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/bookcase, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"loQ" = ( +/obj/machinery/computer/secure_data, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/main_hall) +"loZ" = ( +/obj/item/clothing/head/philosopher_wig, +/turf/unsimulated/floor{ + icon_state = "asteroid" + }, +/area/skipjack_station) +"lpK" = ( +/obj/effect/forcefield{ + desc = "You can't get in. Heh."; + layer = 1; + name = "Blocker" + }, +/obj/effect/wingrille_spawn/reinforced/crescent, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/tdome) +"lqf" = ( +/obj/machinery/door/airlock/external{ + frequency = 1380; + icon_state = "door_locked"; + id_tag = "arrivals_shuttle_hatch"; + locked = 1; + name = "Shuttle Hatch"; + req_access = list(13) + }, +/turf/simulated/shuttle/floor, +/area/shuttle/arrival/pre_game) +"lse" = ( +/obj/structure/closet/crate/nanotrasen, +/obj/item/weapon/storage/firstaid/fire, +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = 2; + pixel_y = 3 + }, +/turf/simulated/shuttle/floor, +/area/shuttle/escape/centcom) +"lsS" = ( +/obj/structure/table/rack, +/obj/item/weapon/storage/briefcase/inflatable, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/syndicate_station) +"ltJ" = ( +/obj/machinery/door/window/brigdoor/westleft{ + name = "Holding Cell" + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/security) +"ltY" = ( +/obj/machinery/vending/coffee{ + dir = 4 + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"luW" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + id_tag = "arrivals_shuttle"; + pixel_y = 25; + req_one_access = list(13); + tag_door = "arrivals_shuttle_hatch" + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_red" + }, +/area/shuttle/arrival/pre_game) +"lvQ" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "white" + }, +/area/centcom/medical) +"lwf" = ( +/obj/machinery/smartfridge, +/turf/unsimulated/wall, +/area/centcom/bar) +"lwt" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"lwT" = ( +/obj/machinery/door/airlock/glass_centcom{ + name = "Special Operations"; + req_one_access = list(103) + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/techfloor.dmi'; + icon_state = "techfloor_gray" + }, +/area/centcom/specops) +"lxd" = ( +/obj/machinery/door/airlock{ + icon = 'icons/obj/doors/Dooruranium.dmi'; + name = "Object Deletion" + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/virtual_reality) +"lzk" = ( +/obj/machinery/washing_machine, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"lzo" = ( +/obj/effect/floor_decal/borderfloorblack/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/bordercorner{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/security) +"lAq" = ( +/obj/structure/sign/warning/secure_area/armory, +/turf/simulated/shuttle/wall/dark/hard_corner, +/area/centcom/specops) +"lAt" = ( +/obj/structure/table/reinforced, +/obj/machinery/microwave, +/turf/simulated/shuttle/floor/red, +/area/shuttle/administration/centcom) +"lAu" = ( +/obj/machinery/portable_atmospherics/canister/oxygen/prechilled, +/obj/machinery/atmospherics/portables_connector, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "white" + }, +/area/centcom/medical) +"lCr" = ( +/obj/structure/curtain/open/shower/security, +/obj/machinery/shower{ + dir = 4; + pixel_x = 5; + pixel_y = -1 + }, +/turf/unsimulated/floor{ + icon_state = "freezerfloor" + }, +/area/syndicate_station) +"lCA" = ( +/turf/simulated/sky/moving/north, +/area/space) +"lCP" = ( +/obj/structure/closet/secure_closet/personal/patient, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "white" + }, +/area/centcom/medical) +"lCS" = ( +/obj/effect/floor_decal/corner/white{ + dir = 5 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/terminal) +"lDu" = ( +/obj/item/toy/chess/pawn_black, +/turf/simulated/floor/holofloor/wmarble, +/area/holodeck/source_chess) +"lDN" = ( +/obj/item/toy/chess/pawn_white, +/turf/simulated/floor/holofloor/bmarble, +/area/holodeck/source_chess) +"lDQ" = ( +/obj/structure/table/rack, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/suit/space/syndicate/black/blue, +/obj/item/clothing/mask/breath, +/obj/item/clothing/head/helmet/space/syndicate/black/blue, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/syndicate_station) +"lEH" = ( +/obj/structure/table/rack, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/suit/space/syndicate/black/med, +/obj/item/clothing/mask/breath, +/obj/item/clothing/head/helmet/space/syndicate/black/med, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/syndicate_station) +"lFj" = ( +/turf/unsimulated/wall{ + desc = "That looks like it doesn't open easily."; + icon = 'icons/obj/doors/rapid_pdoor.dmi'; + icon_state = "pdoor1"; + name = "Shuttle Bay Blast Door" + }, +/area/centcom/suppy) +"lFo" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + id_tag = "centcom_shuttle_bay"; + pixel_y = -32; + tag_door = "centcom_shuttle_bay_door" + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/terminal) +"lFQ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/terminal) +"lGW" = ( +/obj/machinery/vending/assist, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/techfloor.dmi'; + icon_state = "techfloor_gray" + }, +/area/centcom/specops) +"lHG" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 8 + }, +/obj/item/weapon/pen{ + pixel_y = 4 + }, +/turf/simulated/floor/carpet, +/area/shuttle/merchant/home) +"lHY" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/shuttle/floor, +/area/shuttle/transport1/centcom) +"lIc" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/simulated/shuttle/floor/darkred, +/area/skipjack_station/start) +"lIh" = ( +/obj/machinery/door/airlock/maintenance_hatch, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/wizard_station) +"lIS" = ( +/obj/machinery/robotic_fabricator, +/turf/simulated/shuttle/floor/red, +/area/shuttle/administration/centcom) +"lJk" = ( +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/holofloor/lino, +/area/holodeck/source_meetinghall) +"lJJ" = ( +/obj/machinery/door/airlock{ + name = "Coffee Shop" + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel_grid" + }, +/area/centcom/bar) +"lJP" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/table/steel, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/obj/item/device/defib_kit/compact/combat/loaded, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/syndicate_station/start) +"lKk" = ( +/obj/structure/closet/crate/nanotrasen, +/obj/item/weapon/storage/mre/random, +/obj/item/weapon/storage/mre/random, +/obj/item/weapon/storage/mre/random, +/obj/item/weapon/storage/mre/random, +/obj/item/weapon/storage/mre/random, +/obj/item/weapon/storage/mre/random, +/turf/simulated/shuttle/floor, +/area/shuttle/escape/centcom) +"lKy" = ( +/obj/structure/window/reinforced{ + dir = 1; + health = 1e+006 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/centcom/command) +"lLl" = ( +/obj/item/weapon/gun/magic/firestaff, +/turf/unsimulated/floor{ + icon_state = "steel_dirty" + }, +/area/virtual_reality) +"lLR" = ( +/obj/machinery/door/airlock/command{ + name = "Bridge"; + req_access = list(160) + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"lMq" = ( +/obj/structure/table/standard, +/obj/item/clothing/accessory/permit, +/obj/item/clothing/accessory/permit, +/obj/item/clothing/accessory/permit, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/shuttle/trade) +"lMy" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 5 + }, +/obj/machinery/atm{ + pixel_x = -32 + }, +/obj/machinery/meter, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"lMN" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/bordercorner{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/terminal) +"lMO" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/main_hall) +"lMX" = ( +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet{ + dir = 5 + }, +/obj/structure/window/reinforced/holowindow{ + dir = 4 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"lNa" = ( +/obj/machinery/vending/tool, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/techfloor.dmi'; + icon_state = "techfloor_gray" + }, +/area/centcom/specops) +"lNf" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/shuttle/merchant/home) +"lNz" = ( +/obj/machinery/computer/shuttle_control/multi/heist, +/turf/simulated/shuttle/floor/darkred, +/area/skipjack_station/start) +"lNN" = ( +/obj/structure/table/steel, +/obj/item/stack/medical/advanced/bruise_pack, +/obj/item/stack/nanopaste, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/syndicate_station/start) +"lNT" = ( +/obj/machinery/vending/cola{ + dir = 4; + name = "hacked Robust Softdrinks"; + prices = list() + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/syndicate_station) +"lOG" = ( +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/bar) +"lOM" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_picnicarea) +"lON" = ( +/obj/effect/landmark{ + name = "Syndicate-Spawn" + }, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/syndicate_station) +"lPk" = ( +/obj/item/weapon/ore, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/skipjack_station) +"lPU" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 5 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 5 + }, +/obj/machinery/iv_drip, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "white" + }, +/area/centcom/medical) +"lQg" = ( +/obj/structure/table/standard, +/obj/item/weapon/reagent_containers/food/drinks/cans/cola, +/obj/item/weapon/reagent_containers/food/drinks/cans/cola, +/obj/item/weapon/reagent_containers/food/drinks/cans/cola, +/obj/item/weapon/reagent_containers/food/drinks/cans/cola, +/obj/item/weapon/reagent_containers/food/drinks/cans/cola, +/obj/item/weapon/reagent_containers/food/drinks/cans/cola, +/turf/unsimulated/beach/sand, +/area/beach) +"lQh" = ( +/obj/structure/table/standard, +/obj/item/device/radio/headset/syndicate/alt, +/obj/item/device/radio/headset/syndicate/alt, +/obj/item/device/radio/headset/syndicate/alt, +/obj/item/device/radio/headset/syndicate/alt, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/syndicate_station) +"lQG" = ( +/obj/structure/table/standard, +/obj/item/weapon/clipboard, +/obj/item/weapon/pen, +/turf/simulated/shuttle/floor/black, +/area/centcom/evac) +"lRH" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 8; + icon_state = "shutter0"; + id = "tradestarshutters"; + name = "Blast Shutters"; + opacity = 0 + }, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced/full, +/turf/simulated/shuttle/plating, +/area/shuttle/merchant/home) +"lSb" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/book/manual/ripley_build_and_repair, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/wizard_station) +"lSE" = ( +/turf/unsimulated/floor{ + icon_state = "cult"; + name = "plating" + }, +/area/syndicate_station) +"lSV" = ( +/obj/machinery/computer/security/telescreen, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeobserve) +"lTU" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad" + }, +/turf/simulated/shuttle/floor, +/area/shuttle/supply) +"lUp" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 2; + req_one_access = list(5) + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel_grid" + }, +/area/centcom/medical) +"lUr" = ( +/turf/simulated/shuttle/floor/black, +/area/centcom/evac) +"lXr" = ( +/obj/machinery/door/airlock/hatch, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/wizard_station) +"lYO" = ( +/obj/structure/table/reinforced, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/shuttle/floor/red, +/area/shuttle/administration/centcom) +"maT" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/bar) +"mbn" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/industrial/danger, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/main_hall) +"mcc" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/ninja_dojo/dojo) +"mch" = ( +/obj/structure/sink/kitchen{ + dir = 4; + pixel_x = -12 + }, +/obj/effect/floor_decal/corner/white/diagonal, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/bar) +"mcr" = ( +/obj/structure/table/standard, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"mct" = ( +/obj/machinery/door/window/southright, +/turf/simulated/shuttle/floor/yellow, +/area/centcom/evac) +"mcx" = ( +/obj/structure/inflatable, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/skipjack_station) +"mcL" = ( +/obj/structure/table/rack, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/suit/space/syndicate/black/orange, +/obj/item/clothing/mask/breath, +/obj/item/clothing/head/helmet/space/syndicate/black/orange, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/syndicate_station) +"meu" = ( +/obj/machinery/vending/engivend, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/techfloor.dmi'; + icon_state = "techfloor_gray" + }, +/area/centcom/specops) +"meM" = ( +/obj/effect/decal/cleanable/blood, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/skipjack_station) +"meZ" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/terminal) +"mfc" = ( +/obj/structure/bed/chair/wood/wings, +/obj/machinery/newscaster{ + layer = 3.3; + pixel_y = 30 + }, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/wizard_station) +"mfs" = ( +/obj/machinery/door/blast/shutters{ + density = 0; + icon_state = "shutter0"; + id = "tradebridgeshutters"; + name = "Blast Shutters"; + opacity = 0 + }, +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced/full, +/turf/simulated/shuttle/plating, +/area/shuttle/merchant/home) +"mfK" = ( +/obj/machinery/vending/engineering, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/techfloor.dmi'; + icon_state = "techfloor_gray" + }, +/area/centcom/specops) +"mgC" = ( +/obj/structure/table/rack, +/obj/item/clothing/glasses/welding/superior, +/obj/item/clothing/glasses/welding/superior, +/obj/item/clothing/glasses/welding/superior, +/obj/item/weapon/grenade/chem_grenade/metalfoam, +/obj/item/weapon/grenade/chem_grenade/metalfoam, +/obj/item/weapon/grenade/chem_grenade/metalfoam, +/obj/item/weapon/grenade/chem_grenade/metalfoam, +/obj/item/weapon/grenade/chem_grenade/metalfoam, +/obj/item/weapon/grenade/chem_grenade/metalfoam, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/techfloor.dmi'; + icon_state = "techfloor_gray" + }, +/area/centcom/specops) +"mgK" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/item/weapon/storage/box/shotgunshells, +/obj/item/weapon/storage/box/shotgunshells, +/obj/item/weapon/storage/box/shotgunammo, +/obj/item/weapon/storage/box/shotgunammo, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/techfloor.dmi'; + icon_state = "techfloor_gray" + }, +/area/centcom/specops) +"mgZ" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/main_hall) +"mhv" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/holofloor/desert, +/area/holodeck/source_desert) +"mig" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "white" + }, +/area/centcom/medical) +"miF" = ( +/turf/unsimulated/floor{ + icon_state = "freezerfloor" + }, +/area/skipjack_station) +"mjf" = ( +/obj/effect/shuttle_landmark/cynosure/large_escape_pod2/offsite, +/turf/simulated/shuttle/plating, +/area/shuttle/large_escape_pod2/centcom) +"mjE" = ( +/obj/structure/table/reinforced, +/obj/machinery/chemical_dispenser/full, +/obj/item/weapon/reagent_containers/glass/beaker/large, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/techfloor.dmi'; + icon_state = "techfloor_gray" + }, +/area/centcom/specops) +"mjX" = ( +/obj/machinery/atmospherics/unary/freezer{ + icon_state = "freezer" + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "white" + }, +/area/centcom/medical) +"mkb" = ( +/obj/structure/table/steel_reinforced, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/wizard_station) +"mkJ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 6 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/main_hall) +"mlP" = ( +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/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/random/soap, +/turf/unsimulated/floor{ + icon_state = "freezerfloor" + }, +/area/ninja_dojo/dojo) +"moq" = ( +/obj/machinery/computer/communications{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/wizard_station) +"moI" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/box/bodybags{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/weapon/storage/box/bodybags, +/obj/structure/window/reinforced, +/turf/simulated/shuttle/floor/white, +/area/centcom/evac) +"moR" = ( +/obj/effect/step_trigger/thrower{ + affect_ghosts = 1; + direction = 4; + name = "thrower_throweast"; + nostop = 1; + stopper = 0; + tiles = 0 + }, +/turf/space/transit/west, +/area/space) +"mpf" = ( +/obj/machinery/door/airlock/centcom{ + name = "Armory" + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/syndicate_station) +"mpn" = ( +/turf/simulated/shuttle/floor, +/area/shuttle/supply) +"mpv" = ( +/obj/item/toy/chess/bishop_black, +/turf/simulated/floor/holofloor/bmarble, +/area/holodeck/source_chess) +"mpP" = ( +/obj/structure/table/rack, +/obj/item/clothing/under/color/red, +/obj/item/clothing/shoes/brown, +/obj/item/clothing/suit/armor/tdome/red, +/obj/item/clothing/head/helmet/thunderdome, +/obj/item/weapon/melee/baton/loaded, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/tdome/tdome2) +"mqp" = ( +/obj/structure/table/woodentable, +/obj/structure/flora/pottedplant/large{ + pixel_y = 10 + }, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/bar) +"mqt" = ( +/obj/machinery/teleport/hub, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/ninja_dojo/dojo) +"mra" = ( +/obj/structure/closet{ + name = "custodial" + }, +/obj/item/weapon/reagent_containers/spray/cleaner, +/obj/item/weapon/reagent_containers/glass/bucket, +/obj/item/weapon/mop, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"mrg" = ( +/obj/machinery/door/airlock/centcom{ + name = "Thunderdome"; + req_access = list(101) + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/techfloor.dmi'; + icon_state = "techfloor_gray" + }, +/area/tdome) +"mrt" = ( +/turf/simulated/floor/holofloor/desert, +/area/holodeck/source_picnicarea) +"mrF" = ( +/obj/machinery/door/airlock/hatch{ + frequency = 1331; + id_tag = "vox_southeast_lock"; + req_access = list(150) + }, +/obj/machinery/atmospherics/pipe/simple/visible, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"msh" = ( +/obj/machinery/computer/communications{ + dir = 1 + }, +/turf/simulated/shuttle/floor, +/area/shuttle/escape/centcom) +"mtX" = ( +/obj/item/weapon/bedsheet/clown, +/obj/structure/bed/padded, +/turf/simulated/shuttle/floor/red, +/area/skipjack_station/start) +"mur" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/weapon/book/codex/corp_regs, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/security) +"muV" = ( +/obj/machinery/door/airlock/centcom{ + name = "Barracks"; + req_access = list(150) + }, +/turf/unsimulated/floor{ + icon_state = "cult"; + name = "plating" + }, +/area/syndicate_station) +"mvX" = ( +/obj/machinery/door/airlock/external{ + frequency = 1380; + icon_state = "door_locked"; + id_tag = "trade_shuttle_hatch"; + locked = 1; + name = "Shuttle Hatch"; + req_access = list(13) + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"mws" = ( +/obj/machinery/computer/scan_consolenew{ + dir = 4 + }, +/turf/simulated/shuttle/floor/red, +/area/shuttle/administration/centcom) +"mwS" = ( +/obj/structure/table/wooden_reinforced, +/obj/machinery/button/remote/blast_door{ + id = "ASSAULT"; + name = "Mech Storage"; + req_access = list(11) + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/creed) +"mwZ" = ( +/obj/effect/floor_decal/corner/green/full, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_emptycourt) +"mxf" = ( +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/bar) +"mxq" = ( +/obj/structure/table/reinforced, +/obj/item/device/megaphone, +/obj/item/weapon/storage/box/trackimp, +/obj/item/weapon/storage/box/cdeathalarm_kit, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/specops) +"mxy" = ( +/obj/machinery/status_display{ + layer = 4; + pixel_y = 32 + }, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/wizard_station) +"mxZ" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/command) +"myX" = ( +/turf/unsimulated/floor{ + icon_state = "carpet" + }, +/area/shuttle/trade) +"mzB" = ( +/obj/structure/sign/electricshock, +/turf/simulated/shuttle/wall/dark/hard_corner, +/area/wizard_station) +"mAg" = ( +/obj/machinery/door/airlock/freezer{ + name = "Kitchen Cold Room" + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel_grid" + }, +/area/centcom/bar) +"mAW" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/table/standard, +/obj/item/weapon/reagent_containers/glass/beaker/large, +/turf/simulated/shuttle/floor/red, +/area/shuttle/administration/centcom) +"mBj" = ( +/obj/machinery/door/airlock/centcom{ + name = "General Access"; + req_access = list(101) + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel_grid" + }, +/area/centcom/main_hall) +"mCF" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 8 + }, +/obj/item/weapon/pen{ + pixel_y = 4 + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"mCX" = ( +/obj/machinery/door/airlock/silver{ + name = "Toilet" + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/shuttle/trade) +"mCZ" = ( +/obj/effect/floor_decal/corner/red{ + dir = 10 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_emptycourt) +"mDN" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{ + pixel_x = 4; + pixel_y = -2 + }, +/obj/item/weapon/reagent_containers/food/condiment/small/peppershaker, +/obj/item/weapon/flame/candle, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/bar) +"mEq" = ( +/obj/structure/table/rack, +/obj/item/clothing/under/color/red, +/obj/item/clothing/shoes/brown, +/obj/item/clothing/suit/armor/vest, +/obj/item/clothing/head/helmet/swat, +/obj/item/weapon/gun/energy/laser, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/tdome/tdome2) +"mEx" = ( +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/command) +"mEK" = ( +/turf/simulated/mineral, +/area/ninja_dojo/dojo) +"mET" = ( +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 8; + icon_state = "shutter0"; + id = "tradebridgeshutters"; + name = "Blast Shutters"; + opacity = 0 + }, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced/full, +/turf/simulated/shuttle/plating, +/area/shuttle/merchant/home) +"mEX" = ( +/turf/unsimulated/floor{ + icon = 'icons/turf/snow_new.dmi'; + icon_state = "snow"; + name = "snow" + }, +/area/ninja_dojo/dojo) +"mGD" = ( +/obj/structure/table/reinforced, +/obj/item/device/pda/ert, +/obj/item/device/pda/ert, +/obj/item/device/pda/ert, +/obj/item/device/pda/ert, +/obj/item/device/pda/ert, +/obj/item/device/pda/ert, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/specops) +"mHV" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad2" + }, +/turf/simulated/shuttle/floor, +/area/shuttle/supply) +"mHX" = ( +/obj/machinery/vending/cigarette{ + dir = 4 + }, +/turf/simulated/shuttle/floor/red, +/area/shuttle/administration/centcom) +"mIb" = ( +/obj/structure/table/steel_reinforced, +/obj/item/clothing/glasses/thermal/plain/monocle, +/obj/item/clothing/head/pirate, +/turf/simulated/shuttle/floor/darkred, +/area/skipjack_station/start) +"mIs" = ( +/obj/structure/table/standard, +/obj/machinery/chemical_dispenser/ert, +/turf/simulated/shuttle/floor/red, +/area/shuttle/administration/centcom) +"mJH" = ( +/obj/structure/frame/computer, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/wizard_station) +"mKq" = ( +/obj/effect/landmark{ + name = "tdome1" + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/tdome/tdome1) +"mKQ" = ( +/obj/machinery/sleep_console, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/ninja_dojo/dojo) +"mLr" = ( +/obj/item/weapon/tool/wrench, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome) +"mLw" = ( +/turf/simulated/mineral, +/area/centcom/terminal) +"mLD" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/table/steel_reinforced, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/ninja_dojo/start) +"mLQ" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/tank/air{ + dir = 1; + start_pressure = 740 + }, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"mLY" = ( +/obj/machinery/dna_scannernew, +/turf/simulated/shuttle/floor/red, +/area/shuttle/administration/centcom) +"mMT" = ( +/obj/structure/table/standard, +/obj/item/weapon/book/codex/lore/vir, +/turf/simulated/shuttle/floor/white, +/area/shuttle/arrival/pre_game) +"mMW" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "white" + }, +/area/centcom/medical) +"mNf" = ( +/obj/effect/floor_decal/corner/white{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/terminal) +"mNX" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "cult"; + name = "plating" + }, +/area/syndicate_station) +"mNY" = ( +/obj/effect/step_trigger/teleporter/random{ + affect_ghosts = 1; + name = "escapeshuttle_leave"; + teleport_x = 25; + teleport_x_offset = 245; + teleport_y = 25; + teleport_y_offset = 245; + teleport_z = 6; + teleport_z_offset = 6 + }, +/turf/space/transit/west, +/area/space) +"mOd" = ( +/obj/structure/closet/secure_closet/chemical, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "white" + }, +/area/centcom/medical) +"mOC" = ( +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "tradebridgeshutters"; + name = "Blast Shutters"; + opacity = 0 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced/full, +/turf/simulated/shuttle/plating, +/area/shuttle/merchant/home) +"mQd" = ( +/obj/structure/table/marble, +/obj/effect/floor_decal/corner/white/diagonal, +/obj/item/weapon/storage/box/glasses/square{ + pixel_x = 1; + pixel_y = 4 + }, +/obj/item/weapon/storage/box/glasses/square, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/bar) +"mQx" = ( +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"mQE" = ( +/obj/machinery/chem_master{ + dir = 8 + }, +/turf/simulated/shuttle/floor/red, +/area/shuttle/administration/centcom) +"mRa" = ( +/obj/machinery/light, +/turf/simulated/shuttle/floor, +/area/shuttle/transport1/centcom) +"mRL" = ( +/turf/simulated/shuttle/wall/dark, +/area/centcom/specops) +"mRQ" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/main_hall) +"mRV" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/storage/toolbox/syndicate{ + pixel_x = -1; + pixel_y = 3 + }, +/obj/machinery/button/remote/blast_door{ + id = "ninjawindow"; + name = "remote shutter control"; + pixel_y = -25; + req_access = list(150) + }, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/ninja_dojo/start) +"mSv" = ( +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/syndicate_station) +"mTz" = ( +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/main_hall) +"mVy" = ( +/obj/structure/sign/warning/docking_area, +/turf/unsimulated/wall, +/area/centcom/command) +"mWm" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 4 + }, +/obj/structure/table/marble, +/obj/item/weapon/reagent_containers/food/drinks/glass2/square{ + pixel_x = 8; + pixel_y = 8 + }, +/obj/item/weapon/reagent_containers/food/drinks/glass2/square{ + pixel_y = 8 + }, +/obj/item/weapon/reagent_containers/food/drinks/glass2/square{ + pixel_x = -8; + pixel_y = 8 + }, +/obj/item/weapon/reagent_containers/food/drinks/glass2/square{ + pixel_x = 8; + pixel_y = 4 + }, +/obj/item/weapon/reagent_containers/food/drinks/glass2/square{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/item/weapon/reagent_containers/food/drinks/glass2/square{ + pixel_x = 4; + pixel_y = 5 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/bar) +"mWp" = ( +/turf/simulated/shuttle/floor, +/area/centcom/evac) +"mXs" = ( +/obj/structure/closet/crate/medical, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/specops) +"mXA" = ( +/obj/structure/toilet{ + dir = 8 + }, +/turf/simulated/shuttle/floor/white, +/area/centcom/evac) +"mXF" = ( +/obj/structure/shuttle/engine/heater{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4; + health = 1e+006 + }, +/turf/simulated/shuttle/plating/airless, +/area/shuttle/transport1/centcom) +"mYN" = ( +/obj/machinery/computer/arcade/battle{ + dir = 1 + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"mZd" = ( +/obj/structure/shuttle/engine/heater, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 1e+006 + }, +/turf/simulated/shuttle/wall/dark/no_join, +/area/shuttle/arrival/pre_game) +"mZs" = ( +/obj/machinery/atmospherics/unary/cryo_cell{ + layer = 3.3 + }, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/shuttle/escape/centcom) +"nac" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 5 + }, +/obj/structure/table/reinforced, +/obj/item/weapon/tool/wrench, +/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = -4 + }, +/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/shuttle/floor/white, +/area/centcom/evac) +"nbo" = ( +/obj/machinery/shower{ + dir = 8; + pixel_x = -5; + pixel_y = -1 + }, +/obj/structure/curtain/open/shower/medical, +/turf/unsimulated/floor{ + icon_state = "freezerfloor" + }, +/area/ninja_dojo/dojo) +"nbI" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/industrial/danger, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/main_hall) +"ncd" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "cult"; + name = "plating" + }, +/area/syndicate_station) +"nch" = ( +/obj/item/weapon/storage/box/syringegun{ + pixel_x = -2; + pixel_y = -4 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/specops) +"ncD" = ( +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"ncP" = ( +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/ninja_dojo/dojo) +"ndw" = ( +/obj/structure/table/rack, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/syndicate_mothership/elite_squad) +"ndy" = ( +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"nei" = ( +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 6 + }, +/turf/unsimulated/floor{ + icon_state = "carpet" + }, +/area/ninja_dojo/dojo) +"new" = ( +/obj/structure/table/standard, +/obj/item/clothing/gloves/sterile/latex, +/obj/item/clothing/mask/surgical, +/obj/item/weapon/surgical/retractor{ + pixel_y = 6 + }, +/obj/item/weapon/surgical/scalpel, +/obj/item/weapon/surgical/surgicaldrill, +/obj/item/weapon/surgical/circular_saw, +/obj/item/stack/nanopaste, +/obj/item/weapon/surgical/hemostat{ + pixel_y = 4 + }, +/obj/item/weapon/surgical/cautery{ + pixel_y = 4 + }, +/obj/item/weapon/surgical/FixOVein{ + pixel_x = -6; + pixel_y = 1 + }, +/obj/item/stack/medical/advanced/bruise_pack, +/obj/item/weapon/surgical/bonesetter, +/obj/item/weapon/surgical/bonegel{ + pixel_x = 4; + pixel_y = 3 + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"nex" = ( +/obj/machinery/computer/secure_data{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/centcom/command) +"neE" = ( +/obj/structure/bed/chair, +/turf/simulated/floor/carpet, +/area/shuttle/merchant/home) +"neN" = ( +/obj/machinery/door/window/holowindoor{ + dir = 8 + }, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_basketball) +"nfO" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/simulated/shuttle/floor/darkred, +/area/shuttle/syndicate_elite/mothership) +"ngK" = ( +/obj/structure/holostool{ + dir = 4 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_meetinghall) +"nhz" = ( +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 6 + }, +/obj/structure/bed/chair/holochair{ + dir = 4 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"nir" = ( +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/syndicate_station) +"niH" = ( +/obj/structure/table/standard, +/obj/item/clothing/suit/space/void/merc, +/obj/item/clothing/suit/space/void/merc, +/obj/item/clothing/suit/space/void/merc, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/head/helmet/space/void/merc, +/obj/item/clothing/head/helmet/space/void/merc, +/obj/item/clothing/head/helmet/space/void/merc, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"niR" = ( +/obj/item/weapon/stool/padded{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/specops) +"niY" = ( +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_courtroom) +"njc" = ( +/obj/structure/table/steel_reinforced, +/obj/random/action_figure, +/obj/random/action_figure, +/obj/random/action_figure, +/obj/random/action_figure, +/obj/random/action_figure, +/obj/random/action_figure, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"njq" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/obj/item/weapon/stool/padded{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/bar) +"njD" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 10 + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"njM" = ( +/obj/machinery/computer/shuttle_control/multi/centcom{ + dir = 8 + }, +/turf/simulated/shuttle/floor, +/area/shuttle/transport1/centcom) +"nkO" = ( +/obj/structure/lattice, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/space, +/area/space) +"nmu" = ( +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet{ + dir = 6 + }, +/turf/unsimulated/floor{ + icon_state = "carpet" + }, +/area/centcom/command) +"nnn" = ( +/obj/structure/table/steel_reinforced, +/obj/item/mecha_parts/mecha_equipment/anticcw_armor_booster, +/obj/item/mecha_parts/mecha_equipment/antiproj_armor_booster, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/centcom/specops) +"nol" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/shuttle/floor, +/area/shuttle/arrival/pre_game) +"noE" = ( +/obj/item/robot_parts/head, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/wizard_station) +"npO" = ( +/obj/machinery/computer/security{ + dir = 1 + }, +/turf/simulated/shuttle/floor, +/area/shuttle/escape/centcom) +"nqn" = ( +/obj/structure/mopbucket, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/syndicate_station/start) +"nqu" = ( +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/industrial/danger, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/main_hall) +"nqU" = ( +/obj/machinery/door/airlock/external{ + icon_state = "door_locked"; + locked = 1 + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/centcom/terminal) +"nrd" = ( +/obj/machinery/vending/coffee{ + dir = 4 + }, +/obj/machinery/vending/boozeomat{ + pixel_y = -32 + }, +/turf/simulated/shuttle/floor/red, +/area/shuttle/administration/centcom) +"nrP" = ( +/obj/structure/table/reinforced, +/obj/item/device/megaphone, +/obj/item/device/megaphone, +/obj/item/device/megaphone, +/obj/item/device/megaphone, +/obj/item/device/megaphone, +/obj/item/device/megaphone, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/specops) +"nsa" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + frequency = 1331; + id_tag = "vox_west_vent" + }, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"nsD" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/wizard_station) +"nuQ" = ( +/obj/item/weapon/antag_spawner/technomancer_apprentice, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/wizard_station) +"nvQ" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/bordercorner{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/main_hall) +"nxT" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/wizard_station) +"nxV" = ( +/turf/unsimulated/wall, +/area/centcom/terminal) +"nyq" = ( +/obj/structure/window/reinforced/holowindow, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_boxingcourt) +"nyS" = ( +/obj/machinery/computer/arcade{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/bar) +"nzU" = ( +/turf/simulated/shuttle/floor/red, +/area/shuttle/escape/centcom) +"nAf" = ( +/obj/machinery/door/airlock/centcom{ + name = "Barracks"; + req_access = list(150) + }, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/syndicate_station) +"nAm" = ( +/obj/item/weapon/stool/padded, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/bar) +"nAG" = ( +/obj/structure/bed/chair/office/dark, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/ninja_dojo/dojo) +"nBw" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/structure/closet/secure_closet/medical_wall{ + pixel_x = -32; + req_access = list(150) + }, +/obj/item/weapon/tank/anesthetic, +/obj/item/clothing/mask/breath/medical, +/obj/item/clothing/mask/surgical, +/obj/item/clothing/gloves/sterile/latex, +/obj/item/weapon/reagent_containers/syringe, +/obj/item/weapon/reagent_containers/glass/bottle/stoxin, +/obj/item/weapon/reagent_containers/glass/bottle/stoxin, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/syndicate_station/start) +"nCe" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/obj/structure/sink/kitchen{ + pixel_y = 28 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/bar) +"nCl" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/specops) +"nDQ" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/space/vox/medic, +/obj/item/clothing/suit/space/vox/medic, +/obj/item/clothing/head/helmet/space/vox/medic, +/obj/item/clothing/head/helmet/space/vox/medic, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/skipjack_station) +"nEo" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/simulated/shuttle/floor/black, +/area/skipjack_station/start) +"nEB" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + dir = 4; + frequency = 1380; + id_tag = "centcom_dock"; + name = "docking port controller"; + pixel_x = -25; + req_one_access = list(13); + tag_door = "centcom_dock_airlock" + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/terminal) +"nEC" = ( +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/virtual_reality) +"nEE" = ( +/turf/unsimulated/floor{ + icon_state = "steel_dirty" + }, +/area/skipjack_station) +"nFB" = ( +/obj/effect/floor_decal/carpet, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_theatre) +"nFK" = ( +/obj/item/toy/chess/pawn_white, +/turf/simulated/floor/holofloor/wmarble, +/area/holodeck/source_chess) +"nIb" = ( +/obj/item/toy/chess/bishop_black, +/turf/simulated/floor/holofloor/wmarble, +/area/holodeck/source_chess) +"nJi" = ( +/obj/structure/table/rack, +/obj/item/device/aicard, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/syndicate_station/start) +"nKa" = ( +/obj/structure/table/standard, +/obj/item/device/flashlight/lamp{ + pixel_x = 4; + pixel_y = 8 + }, +/obj/item/clothing/glasses/sunglasses/prescription, +/obj/item/clothing/glasses/sunglasses/prescription, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/syndicate_station) +"nKr" = ( +/obj/machinery/chemical_dispenser/bar_soft/full, +/obj/structure/table/marble, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/wizard_station) +"nKt" = ( +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/bordercorner{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "white" + }, +/area/centcom/medical) +"nKR" = ( +/obj/machinery/door/blast/regular{ + id = "thunderdomegen"; + name = "General Supply" + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/techfloor.dmi'; + icon_state = "techfloor_gray" + }, +/area/tdome/tdome2) +"nMJ" = ( +/obj/machinery/photocopier, +/turf/simulated/floor/carpet, +/area/shuttle/merchant/home) +"nND" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/security) +"nNQ" = ( +/obj/structure/holostool{ + dir = 8 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"nOm" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/fancy/vials{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/weapon/storage/fancy/vials, +/obj/item/weapon/reagent_containers/hypospray/vial{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/reagent_containers/hypospray/vial, +/obj/item/weapon/storage/box/pillbottles, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/techfloor.dmi'; + icon_state = "techfloor_gray" + }, +/area/centcom/specops) +"nOB" = ( +/obj/machinery/flasher{ + id = "flash"; + name = "Thunderdome Flash" + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/tdome) +"nOI" = ( +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 10 + }, +/obj/structure/table/standard, +/turf/unsimulated/floor{ + icon_state = "carpet" + }, +/area/centcom/living) +"nOU" = ( +/obj/structure/window/reinforced, +/turf/simulated/shuttle/wall/dark/no_join, +/area/shuttle/supply) +"nQt" = ( +/obj/structure/bed/chair/wood{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/brown/border, +/turf/simulated/floor/tiled/white, +/area/centcom/bar) +"nRZ" = ( +/obj/structure/morgue/crematorium{ + desc = "qdel"; + id = "vr_thunderdome"; + name = "Object Deletorinator" + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/virtual_reality) +"nSs" = ( +/obj/structure/closet/crate/internals{ + name = "Mask Crate" + }, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/specops) +"nSu" = ( +/obj/machinery/door/airlock{ + name = "Restroom" + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel_grid" + }, +/area/centcom/bar) +"nSY" = ( +/obj/machinery/door/airlock/external{ + frequency = 1380; + icon_state = "door_locked"; + id_tag = "escape_pod_1_recovery_hatch"; + locked = 1; + name = "Recovery Shuttle Dock 1"; + req_access = list(13) + }, +/turf/simulated/shuttle/floor/black, +/area/centcom/evac) +"nUC" = ( +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"nUO" = ( +/obj/structure/flora/ausbushes/ywflowers, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_picnicarea) +"nVp" = ( +/obj/effect/floor_decal/corner/red/full{ + dir = 8 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"nVE" = ( +/obj/structure/table/standard, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/skipjack_station) +"nXg" = ( +/turf/unsimulated/wall{ + desc = "That looks like it doesn't open easily."; + dir = 8; + icon = 'icons/obj/doors/rapid_pdoor.dmi'; + icon_state = "pdoor1"; + name = "Shuttle Bay Blast Door" + }, +/area/centcom/command) +"nXk" = ( +/obj/structure/closet/wardrobe/pjs, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/shuttle/trade) +"nYl" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/main_hall) +"nYC" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/skipjack_station) +"nYE" = ( +/obj/machinery/computer/station_alert/all, +/obj/structure/window/reinforced{ + dir = 1; + health = 1e+006 + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/centcom/command) +"nYF" = ( +/obj/structure/bed/chair/wood{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/bar) +"nYH" = ( +/obj/structure/table/standard, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/tdome/tdome1) +"nYW" = ( +/obj/structure/flora/ausbushes/ppflowers, +/turf/unsimulated/floor{ + icon_state = "grass0"; + name = "grass" + }, +/area/centcom/main_hall) +"nZO" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/inflatable_duck, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"nZP" = ( +/obj/machinery/clonepod, +/turf/simulated/shuttle/floor/red, +/area/shuttle/administration/centcom) +"oat" = ( +/obj/structure/table/glass, +/turf/unsimulated/floor{ + icon_state = "cult"; + name = "plating" + }, +/area/syndicate_station) +"oaw" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/machinery/door/airlock/voidcraft/vertical{ + frequency = 1331; + id_tag = "ninja_shuttle_inner"; + name = "Ship Internal Hatch"; + req_access = list(150) + }, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/ninja_dojo/start) +"oaC" = ( +/turf/unsimulated/ai_visible, +/area/ai_multicam_room) +"obj" = ( +/obj/structure/shuttle/engine/heater{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 1e+006 + }, +/turf/simulated/shuttle/plating/airless, +/area/shuttle/transport1/centcom) +"obq" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/landmark{ + name = "tdomeadmin" + }, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome) +"oby" = ( +/obj/structure/table/reinforced, +/obj/item/device/aicard, +/obj/item/weapon/stamp/centcomm, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/specops) +"oci" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/firstaid/surgery, +/turf/simulated/shuttle/floor/red, +/area/shuttle/administration/centcom) +"ocL" = ( +/obj/machinery/vending/medical{ + dir = 8 + }, +/turf/simulated/shuttle/floor/red, +/area/shuttle/administration/centcom) +"odB" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/recharger, +/turf/simulated/shuttle/floor/voidcraft, +/area/syndicate_station/start) +"oea" = ( +/obj/machinery/chem_master, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 9 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "white" + }, +/area/centcom/medical) +"oet" = ( +/obj/effect/floor_decal/corner/green/full{ + dir = 4 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_emptycourt) +"ofp" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/wizard_station) +"ofC" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + req_one_access = list() + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/plating.dmi'; + icon_state = "plating"; + name = "plating" + }, +/area/centcom/evac) +"ogc" = ( +/obj/structure/mirror{ + pixel_x = -28 + }, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/wizard_station) +"ogr" = ( +/obj/effect/overlay/palmtree_r, +/turf/unsimulated/beach/sand, +/area/beach) +"ogY" = ( +/obj/effect/wingrille_spawn/reinforced/crescent, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/plating.dmi'; + icon_state = "plating"; + name = "plating" + }, +/area/centcom/bar) +"ohh" = ( +/turf/unsimulated/wall, +/area/beach) +"ohz" = ( +/obj/effect/wingrille_spawn/reinforced, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/syndicate_station) +"oil" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/syndicate_station) +"oiV" = ( +/obj/machinery/recharge_station, +/turf/unsimulated/floor{ + icon_state = "freezerfloor" + }, +/area/centcom/bar) +"oja" = ( +/obj/structure/bed/chair/wood/wings{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/bar) +"okj" = ( +/obj/effect/floor_decal/industrial/warning/cee{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "monotile" + }, +/area/centcom/terminal) +"oku" = ( +/obj/structure/bed/chair/holochair{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"olC" = ( +/obj/item/weapon/stool{ + dir = 8 + }, +/turf/simulated/shuttle/floor/red, +/area/shuttle/administration/centcom) +"olO" = ( +/obj/structure/table/rack, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/suit/space/syndicate/black/red, +/obj/item/clothing/mask/breath, +/obj/item/clothing/head/helmet/space/syndicate/black/red, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/syndicate_station) +"olZ" = ( +/turf/simulated/floor/holofloor/snow, +/area/holodeck/source_snowfield) +"omb" = ( +/obj/machinery/computer/cloning{ + dir = 4 + }, +/turf/simulated/shuttle/floor/red, +/area/shuttle/administration/centcom) +"omv" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"omB" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced/full, +/turf/simulated/shuttle/plating, +/area/shuttle/escape/centcom) +"omM" = ( +/obj/structure/mirror/raider{ + pixel_x = -32 + }, +/turf/unsimulated/floor{ + icon_state = "freezerfloor" + }, +/area/skipjack_station) +"onB" = ( +/obj/machinery/vending/engivend{ + dir = 1 + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"ooa" = ( +/obj/structure/window/reinforced{ + dir = 1; + health = 1e+006 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "freezerfloor" + }, +/area/centcom/command) +"ooh" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/medical, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 10 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 10 + }, +/obj/structure/curtain/open/privacy, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "white" + }, +/area/centcom/medical) +"oot" = ( +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/ninja_dojo/dojo) +"oow" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/machinery/chemical_dispenser/full, +/obj/item/weapon/reagent_containers/glass/beaker/large, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "white" + }, +/area/centcom/medical) +"opn" = ( +/obj/structure/table/steel_reinforced, +/obj/item/clothing/under/cheongsam, +/obj/item/clothing/under/hosformalmale, +/obj/item/clothing/under/hosformalfem, +/obj/item/clothing/under/harness, +/obj/item/clothing/under/gladiator, +/obj/item/clothing/under/ert, +/obj/item/clothing/under/schoolgirl, +/obj/item/clothing/under/redcoat, +/obj/item/clothing/under/sexymime, +/obj/item/clothing/under/sexyclown, +/obj/item/clothing/under/soviet, +/obj/item/clothing/under/space, +/obj/item/clothing/under/swimsuit/stripper/mankini, +/obj/item/clothing/under/suit_jacket/female, +/obj/item/clothing/under/rank/psych/turtleneck, +/obj/item/clothing/under/syndicate/combat, +/obj/item/clothing/under/syndicate/combat, +/obj/item/clothing/under/syndicate/tacticool, +/obj/item/clothing/under/syndicate/tacticool, +/obj/item/clothing/under/dress/sailordress, +/obj/item/clothing/under/dress/redeveninggown, +/obj/item/clothing/under/dress/dress_saloon, +/obj/item/clothing/under/dress/blacktango, +/obj/item/clothing/under/dress/blacktango/alt, +/obj/item/clothing/under/dress/dress_orange, +/obj/item/clothing/under/dress/maid/janitor, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"opI" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/effect/floor_decal/borderfloorblack{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 6 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/main_hall) +"opX" = ( +/turf/space/transit/north, +/area/space) +"oqK" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel_grid" + }, +/area/centcom/main_hall) +"orn" = ( +/turf/space/transit/west, +/area/shuttle/large_escape_pod1/transit) +"orI" = ( +/obj/machinery/optable, +/turf/simulated/shuttle/floor/red, +/area/shuttle/administration/centcom) +"orQ" = ( +/obj/structure/table/woodentable, +/obj/item/device/paicard, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/wizard_station) +"orR" = ( +/obj/structure/table/woodentable, +/obj/item/device/flashlight/lamp/green{ + on = 0; + pixel_x = -3; + pixel_y = 8 + }, +/obj/item/toy/figure/ninja, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/wizard_station) +"orV" = ( +/obj/structure/table/rack, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/suit/space/syndicate/black, +/obj/item/clothing/mask/breath, +/obj/item/clothing/head/helmet/space/syndicate/black, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/syndicate_station) +"osD" = ( +/obj/structure/frame/computer, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/syndicate_station/start) +"otk" = ( +/obj/machinery/door/airlock/hatch{ + frequency = 1331; + id_tag = "vox_northeast_lock"; + req_access = list(150) + }, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"oty" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-24" + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/wizard_station) +"ouG" = ( +/obj/machinery/teleport/station, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/wizard_station) +"ouQ" = ( +/obj/machinery/vending/wallmed1{ + pixel_y = -30 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "white" + }, +/area/centcom/medical) +"ovg" = ( +/obj/effect/floor_decal/sign/small_g, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_chess) +"ovx" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/shuttle/engine/heater, +/turf/simulated/shuttle/wall/dark/no_join, +/area/shuttle/administration/centcom) +"owP" = ( +/obj/structure/flora/ausbushes/palebush, +/turf/unsimulated/floor{ + icon = 'icons/turf/snow_new.dmi'; + icon_state = "snow"; + name = "snow" + }, +/area/ninja_dojo/dojo) +"owZ" = ( +/turf/simulated/shuttle/floor/red, +/area/shuttle/response_ship/start) +"oxc" = ( +/obj/structure/shuttle/engine/propulsion{ + icon_state = "burst_l" + }, +/turf/simulated/shuttle/plating/airless/carry, +/area/shuttle/administration/centcom) +"oyi" = ( +/obj/structure/shuttle/engine/propulsion{ + icon_state = "burst_r" + }, +/turf/simulated/shuttle/plating/airless/carry, +/area/shuttle/supply) +"oys" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/shuttle/floor, +/area/shuttle/supply) +"oyt" = ( +/obj/machinery/shower{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "freezerfloor" + }, +/area/skipjack_station) +"oyX" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/wizard_station) +"ozF" = ( +/obj/structure/table/glass, +/obj/item/device/paicard, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/syndicate_station) +"oAb" = ( +/obj/machinery/account_database{ + dir = 8; + name = "CentComm Accounts database" + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/main_hall) +"oBf" = ( +/obj/structure/table/rack, +/obj/item/weapon/tank/vox, +/turf/unsimulated/floor{ + icon_state = "asteroid" + }, +/area/skipjack_station) +"oCd" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/tank/air{ + start_pressure = 740.5 + }, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/ninja_dojo/start) +"oCy" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/shuttle/floor/red, +/area/shuttle/administration/centcom) +"oCJ" = ( +/obj/structure/table/reinforced, +/obj/machinery/computer/skills, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/main_hall) +"oDp" = ( +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/obj/structure/window/reinforced/holowindow/disappearing{ + dir = 1 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_thunderdomecourt) +"oEF" = ( +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/ninja_dojo/dojo) +"oGt" = ( +/obj/structure/bed/chair, +/turf/simulated/shuttle/floor/red, +/area/shuttle/response_ship/start) +"oHh" = ( +/obj/machinery/door/airlock{ + icon = 'icons/obj/doors/Dooruranium.dmi'; + name = "Spawn" + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/virtual_reality) +"oHF" = ( +/obj/machinery/vending/snack{ + dir = 1 + }, +/turf/simulated/shuttle/floor/red, +/area/shuttle/administration/centcom) +"oJj" = ( +/obj/structure/closet/wardrobe/grey, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/shuttle/trade) +"oJA" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "cult"; + name = "plating" + }, +/area/skipjack_station) +"oKb" = ( +/obj/effect/floor_decal/corner/white{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/terminal) +"oKc" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/centcom/command) +"oKg" = ( +/obj/machinery/iv_drip, +/obj/item/device/radio/intercom{ + desc = "Talk through this. Evilly"; + dir = 8; + frequency = 1213; + name = "Subversive Intercom"; + pixel_x = -32; + subspace_transmission = 1; + syndie = 1 + }, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/syndicate_station/start) +"oLl" = ( +/obj/structure/table/steel, +/turf/simulated/shuttle/floor/darkred, +/area/skipjack_station/start) +"oLN" = ( +/obj/structure/table/holotable, +/obj/item/clothing/gloves/boxing/hologlove{ + icon_state = "boxinggreen"; + item_state = "boxinggreen" + }, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_boxingcourt) +"oLV" = ( +/obj/structure/shuttle/engine/propulsion{ + icon_state = "burst_r" + }, +/turf/simulated/shuttle/plating/airless/carry, +/area/shuttle/administration/centcom) +"oNc" = ( +/obj/structure/table/standard, +/obj/item/weapon/reagent_containers/food/snacks/chips, +/turf/unsimulated/beach/sand, +/area/beach) +"oNs" = ( +/obj/structure/table/rack, +/obj/item/clothing/gloves/yellow, +/obj/item/clothing/gloves/yellow, +/obj/item/clothing/gloves/yellow, +/obj/item/clothing/gloves/yellow, +/obj/item/clothing/gloves/yellow, +/obj/item/clothing/gloves/yellow, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/syndicate_station/start) +"oNF" = ( +/obj/structure/table/marble, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/bar) +"oNZ" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/main_hall) +"oOg" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/main_hall) +"oOi" = ( +/obj/effect/landmark{ + name = "tdome2" + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/tdome/tdome2) +"oOI" = ( +/obj/effect/floor_decal/corner/green/full{ + dir = 4 + }, +/obj/structure/window/reinforced/holowindow/disappearing, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_thunderdomecourt) +"oOR" = ( +/obj/machinery/atmospherics/pipe/manifold/visible, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/shuttle/floor/white, +/area/centcom/evac) +"oOW" = ( +/turf/unsimulated/beach/sand, +/area/beach) +"oOZ" = ( +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet{ + dir = 9 + }, +/obj/effect/floor_decal/carpet{ + dir = 5 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_meetinghall) +"oPn" = ( +/obj/machinery/light, +/turf/simulated/floor/carpet, +/area/shuttle/merchant/home) +"oPQ" = ( +/obj/structure/table/standard, +/obj/item/clothing/under/color/rainbow, +/obj/item/clothing/glasses/sunglasses, +/obj/item/clothing/head/collectable/petehat{ + pixel_y = 5 + }, +/turf/unsimulated/beach/sand, +/area/beach) +"oPX" = ( +/obj/structure/holostool{ + dir = 8 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_thunderdomecourt) +"oQs" = ( +/turf/simulated/shuttle/wall/dark/no_join, +/area/centcom/evac) +"oSZ" = ( +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_meetinghall) +"oTv" = ( +/turf/unsimulated/floor{ + icon_state = "carpet" + }, +/area/ninja_dojo/dojo) +"oTA" = ( +/obj/structure/toilet, +/turf/unsimulated/floor{ + icon_state = "freezerfloor" + }, +/area/skipjack_station) +"oTZ" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/shuttle/floor/voidcraft, +/area/syndicate_station/start) +"oUZ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/main_hall) +"oVn" = ( +/obj/structure/lattice, +/turf/space, +/area/space) +"oVG" = ( +/obj/machinery/door/airlock/centcom{ + name = "General Access"; + req_access = list(101) + }, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome) +"oWy" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/bordercorner{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/terminal) +"oWP" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"oWQ" = ( +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 10 + }, +/obj/structure/holostool{ + dir = 4 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_meetinghall) +"oWU" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1; + frequency = 1331; + id_tag = "trade2_vent" + }, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + frequency = 1331; + id_tag = "trade2_control"; + pixel_x = -24; + req_access = list(150); + tag_airpump = "trade2_vent"; + tag_chamber_sensor = "trade2_sensor"; + tag_exterior_door = "trade2_shuttle_outer"; + tag_interior_door = "trade2_shuttle_inner" + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"oWZ" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/item/weapon/reagent_containers/glass/bucket, +/turf/simulated/shuttle/plating, +/area/centcom/evac) +"oXu" = ( +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_chess) +"oXD" = ( +/obj/structure/table/standard, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 8 + }, +/obj/item/weapon/pen{ + pixel_y = 4 + }, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/syndicate_station) +"oXY" = ( +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_thunderdomecourt) +"oYh" = ( +/obj/structure/bed/chair/wood/wings{ + dir = 1 + }, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/wizard_station) +"oYm" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "cult"; + name = "plating" + }, +/area/syndicate_station) +"oZH" = ( +/turf/unsimulated/mineral, +/area/ninja_dojo/dojo) +"oZJ" = ( +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/holofloor/desert, +/area/holodeck/source_desert) +"paJ" = ( +/obj/machinery/door/airlock/centcom{ + name = "General Access" + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel_grid" + }, +/area/centcom/terminal) +"pbz" = ( +/obj/structure/table/standard, +/obj/item/device/pda/syndicate, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/syndicate_station) +"pbG" = ( +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet{ + dir = 5 + }, +/turf/unsimulated/floor{ + icon_state = "carpet" + }, +/area/ninja_dojo/dojo) +"pbT" = ( +/turf/simulated/shuttle/wall/dark/no_join, +/area/centcom/specops) +"pbW" = ( +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 8; + icon_state = "shutter0"; + id = "tradebridgeshutters"; + name = "Blast Shutters"; + opacity = 0 + }, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced/full, +/turf/simulated/shuttle/plating, +/area/shuttle/merchant/home) +"pcu" = ( +/turf/unsimulated/beach/water, +/area/beach) +"pfP" = ( +/obj/effect/floor_decal/corner/green/full, +/obj/structure/window/reinforced/holowindow/disappearing, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_thunderdomecourt) +"pgW" = ( +/obj/machinery/vending/deathmatch, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/virtual_reality) +"phj" = ( +/obj/item/robot_parts/l_leg, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"phU" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/main_hall) +"pia" = ( +/turf/simulated/shuttle/wall/no_join, +/area/shuttle/arrival/pre_game) +"piF" = ( +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "monotile" + }, +/area/centcom/main_hall) +"pjv" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/modular_computer/console/preset/security{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/main_hall) +"pjV" = ( +/obj/structure/bed/chair/wood/wings{ + dir = 4 + }, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/wizard_station) +"pjZ" = ( +/obj/effect/landmark/teleport_mark{ + landmark_id = "fall_sif" + }, +/obj/effect/step_trigger/thrower{ + affect_ghosts = 1; + name = "thrower_throwdown"; + nostop = 1; + stopper = 0; + tiles = 0 + }, +/turf/simulated/sky/moving/north, +/area/space) +"pka" = ( +/obj/structure/undies_wardrobe, +/turf/unsimulated/floor{ + icon_state = "freezerfloor" + }, +/area/ninja_dojo/dojo) +"pke" = ( +/obj/machinery/door/airlock{ + name = "Unit 1" + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel_grid" + }, +/area/centcom/bar) +"plu" = ( +/obj/machinery/computer/shuttle_control/multi/merchant{ + dir = 4 + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"plx" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/bar) +"plP" = ( +/obj/structure/table/rack, +/obj/item/device/suit_cooling_unit, +/obj/item/device/suit_cooling_unit, +/obj/item/device/suit_cooling_unit, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/syndicate_station) +"plV" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "white" + }, +/area/centcom/medical) +"pmh" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/shuttle/floor/red, +/area/shuttle/response_ship/start) +"pnf" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/table/steel_reinforced, +/obj/item/device/paicard, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/ninja_dojo/start) +"pnP" = ( +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 9 + }, +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/captain, +/turf/unsimulated/floor{ + icon_state = "carpet" + }, +/area/centcom/living) +"pol" = ( +/turf/simulated/shuttle/wall, +/area/shuttle/arrival/pre_game) +"poo" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/blast/regular{ + id = "skipjackshutters"; + name = "Skipjack Blast Shielding" + }, +/obj/structure/window/reinforced/full, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"pqt" = ( +/obj/structure/table/rack, +/obj/item/weapon/tank/emergency/oxygen/double, +/obj/item/weapon/tank/emergency/oxygen/double, +/obj/item/weapon/tank/emergency/oxygen/double, +/obj/item/weapon/tank/emergency/oxygen/double, +/obj/item/weapon/tank/emergency/oxygen/double, +/obj/item/weapon/tank/emergency/oxygen/double, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/syndicate_station) +"pqM" = ( +/turf/unsimulated/beach/water{ + density = 1; + opacity = 1 + }, +/area/beach) +"pry" = ( +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "carpet" + }, +/area/centcom/living) +"prV" = ( +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_emptycourt) +"pte" = ( +/obj/item/weapon/stool/padded, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/wizard_station) +"ptB" = ( +/obj/structure/closet/secure_closet/security, +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/security) +"ptC" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"ptZ" = ( +/obj/structure/bed/chair/holochair{ + dir = 1 + }, +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet{ + dir = 6 + }, +/obj/structure/window/reinforced/holowindow{ + dir = 4 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"pue" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/machinery/door/airlock/external{ + frequency = 1331; + icon_state = "door_locked"; + id_tag = "trade2_shuttle_inner"; + locked = 1; + name = "Ship Hatch"; + req_access = list(13) + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"puh" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "white" + }, +/area/centcom/medical) +"pui" = ( +/obj/structure/table/rack, +/obj/item/weapon/rig/merc/empty, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/syndicate_station) +"puk" = ( +/turf/space, +/area/space) +"puw" = ( +/obj/machinery/suit_cycler/syndicate{ + locked = 0 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/syndicate_station) +"pux" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/wizard_station) +"puV" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/button/crematorium{ + desc = "Used to delete objects totally not by burning them."; + id = "vr_thunderdome"; + name = "DEL"; + req_access = newlist() + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/virtual_reality) +"pva" = ( +/obj/machinery/door/airlock/command{ + name = "Thunderdome Administration"; + req_access = list(102) + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel_grid" + }, +/area/tdome) +"pwi" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/main_hall) +"pwK" = ( +/obj/effect/floor_decal/borderfloorblack/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/bordercorner{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/security) +"pwV" = ( +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/tdome/tdome1) +"pxt" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/bordercorner{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/terminal) +"pyX" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced/full, +/turf/simulated/shuttle/plating, +/area/shuttle/escape/centcom) +"pAB" = ( +/obj/machinery/recharger/wallcharger{ + pixel_x = 32 + }, +/obj/structure/table/steel, +/obj/item/weapon/storage/box/frags, +/turf/simulated/shuttle/floor/voidcraft, +/area/syndicate_station/start) +"pAD" = ( +/turf/unsimulated/wall, +/area/centcom/main_hall) +"pBh" = ( +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/shuttle/trade) +"pBJ" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/clothing/accessory/storage/brown_drop_pouches{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/clothing/accessory/storage/brown_drop_pouches, +/obj/item/clothing/accessory/storage/brown_drop_pouches{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/clothing/accessory/storage/brown_vest{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/clothing/accessory/storage/brown_vest, +/obj/item/clothing/accessory/storage/brown_vest{ + pixel_x = 2; + pixel_y = 2 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/techfloor.dmi'; + icon_state = "techfloor_gray" + }, +/area/centcom/specops) +"pCM" = ( +/obj/structure/bed/chair/comfy/teal{ + dir = 4 + }, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "carpet" + }, +/area/centcom/command) +"pDi" = ( +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/skipjack_station) +"pDq" = ( +/obj/effect/floor_decal/corner/green{ + dir = 6 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"pDS" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/lattice, +/turf/space, +/area/space) +"pEd" = ( +/obj/structure/table/standard, +/obj/item/stack/material/steel{ + amount = 2 + }, +/obj/item/stack/material/steel{ + amount = 2 + }, +/obj/item/stack/material/glass{ + amount = 15 + }, +/obj/item/stack/material/glass{ + amount = 15 + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"pEe" = ( +/obj/effect/wingrille_spawn/reinforced/crescent, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/plating.dmi'; + icon_state = "plating"; + name = "plating" + }, +/area/centcom/terminal) +"pEj" = ( +/turf/simulated/floor/holofloor/space, +/area/holodeck/source_space) +"pEo" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/clothing/accessory/storage/white_vest{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/clothing/accessory/storage/white_vest, +/obj/item/clothing/accessory/storage/white_vest{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/clothing/accessory/storage/white_drop_pouches{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/item/clothing/accessory/storage/white_drop_pouches{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/clothing/accessory/storage/white_drop_pouches, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/techfloor.dmi'; + icon_state = "techfloor_gray" + }, +/area/centcom/specops) +"pFt" = ( +/turf/space/transit/north, +/area/shuttle/escape/transit) +"pFK" = ( +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1331; + master_tag = "merc_shuttle"; + name = "interior access button"; + pixel_x = -25; + pixel_y = 25; + req_access = list(150) + }, +/turf/simulated/shuttle/floor/voidcraft, +/area/syndicate_station/start) +"pFT" = ( +/obj/machinery/door/airlock/external{ + frequency = 1380; + icon_state = "door_locked"; + id_tag = "response_base_door"; + locked = 1 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/techfloor.dmi'; + icon_state = "techfloor_gray" + }, +/area/centcom/specops) +"pGg" = ( +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_theatre) +"pGP" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced/full, +/turf/simulated/shuttle/plating, +/area/shuttle/escape/centcom) +"pHl" = ( +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_basketball) +"pHF" = ( +/obj/machinery/door/airlock/external{ + frequency = 1331; + id_tag = "merc_base_hatch"; + req_access = list(150) + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/syndicate_station) +"pHK" = ( +/obj/effect/wingrille_spawn/reinforced/crescent, +/obj/structure/curtain/open/bed, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/plating.dmi'; + icon_state = "plating"; + name = "plating" + }, +/area/centcom/living) +"pHS" = ( +/obj/machinery/door/airlock/external{ + frequency = 1380; + icon_state = "door_locked"; + id_tag = "response_shuttle_door"; + locked = 1; + name = "Forward Docking Hatch"; + req_access = list(13) + }, +/turf/simulated/shuttle/floor/red, +/area/shuttle/response_ship/start) +"pJO" = ( +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_meetinghall) +"pKj" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/closet/emcloset, +/turf/simulated/shuttle/floor/yellow, +/area/centcom/evac) +"pLy" = ( +/obj/item/device/suit_cooling_unit, +/obj/structure/table/steel_reinforced, +/obj/machinery/newscaster{ + layer = 3.3; + pixel_y = 30 + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/wizard_station) +"pLM" = ( +/obj/structure/table/reinforced, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/security) +"pMu" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"pME" = ( +/obj/structure/closet/wardrobe/green, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/shuttle/trade) +"pNa" = ( +/obj/structure/table/woodentable/holotable, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_meetinghall) +"pNn" = ( +/obj/machinery/conveyor{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/plating.dmi'; + icon_state = "plating"; + name = "plating" + }, +/area/centcom/terminal) +"pNU" = ( +/turf/simulated/shuttle/floor, +/area/shuttle/arrival/pre_game) +"pOm" = ( +/obj/structure/lattice, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/space, +/area/space) +"pPu" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "asteroid" + }, +/area/ninja_dojo/dojo) +"pPB" = ( +/obj/machinery/sleeper{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/ninja_dojo/dojo) +"pPC" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/lattice, +/turf/space, +/area/space) +"pQq" = ( +/obj/machinery/vending/cigarette{ + name = "hacked cigarette machine"; + prices = list(); + products = list(/obj/item/weapon/storage/fancy/cigarettes = 10, /obj/item/weapon/storage/box/matches = 10, /obj/item/weapon/flame/lighter/zippo = 4, /obj/item/clothing/mask/smokable/cigarette/cigar/havana = 2) + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/living) +"pQt" = ( +/obj/structure/table/reinforced, +/obj/machinery/computer/med_data/laptop, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "white" + }, +/area/centcom/medical) +"pQD" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/closet/crate/internals, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"pRl" = ( +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/structure/holostool{ + dir = 4 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_meetinghall) +"pSk" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/turf/unsimulated/floor{ + icon_state = "carpet" + }, +/area/centcom/command) +"pTc" = ( +/obj/structure/table/standard, +/obj/item/weapon/surgical/bonesetter, +/obj/item/weapon/surgical/bonegel, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/pink/border{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "white" + }, +/area/centcom/medical) +"pTl" = ( +/obj/machinery/computer/station_alert{ + dir = 1 + }, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/ninja_dojo/start) +"pTo" = ( +/obj/structure/table/marble, +/obj/effect/floor_decal/corner/white/diagonal, +/obj/item/weapon/storage/box/donkpockets{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/material/kitchen/rollingpin, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/bar) +"pTs" = ( +/obj/machinery/door/window/southleft{ + name = "Cargo Hold"; + req_access = list(160) + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"pTZ" = ( +/obj/machinery/vending/cigarette, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeobserve) +"pUr" = ( +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_emptycourt) +"pUv" = ( +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/specops) +"pVm" = ( +/obj/structure/closet/secure_closet/guncabinet, +/obj/item/weapon/gun/energy/gun/burst, +/obj/item/weapon/gun/energy/gun/burst, +/obj/item/weapon/gun/energy/ionrifle/pistol, +/obj/item/weapon/gun/projectile/shotgun/pump/combat, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/shuttle/trade) +"pVs" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + id_tag = "response_shuttle"; + pixel_y = -25; + tag_door = "response_shuttle_door" + }, +/obj/effect/shuttle_landmark{ + base_area = /area/centcom/specops; + base_turf = /turf/simulated/floor/plating; + docking_controller = "response_base"; + landmark_tag = "response_ship_start"; + name = "ERT Shuttle Bay" + }, +/turf/simulated/shuttle/floor/red, +/area/shuttle/response_ship/start) +"pWl" = ( +/obj/structure/table/rack, +/obj/item/ammo_casing/rocket, +/obj/item/ammo_casing/rocket, +/obj/item/ammo_casing/rocket, +/obj/item/ammo_casing/rocket, +/obj/item/ammo_casing/rocket, +/obj/item/ammo_casing/rocket, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"pWO" = ( +/turf/simulated/sky/moving/south, +/area/space) +"pXt" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/main_hall) +"pXS" = ( +/obj/machinery/porta_turret/ai_defense{ + req_one_access = list(150) + }, +/turf/simulated/shuttle/floor/voidcraft, +/area/syndicate_station/start) +"pXW" = ( +/obj/structure/table/marble, +/obj/effect/floor_decal/corner/white/diagonal, +/obj/machinery/chemical_dispenser/bar_soft/full, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/bar) +"pYb" = ( +/obj/effect/wingrille_spawn/reinforced/crescent, +/turf/simulated/floor/plating, +/area/shuttle/administration/centcom) +"pYJ" = ( +/turf/simulated/shuttle/wall/dark, +/area/shuttle/merchant/home) +"pYL" = ( +/obj/machinery/light, +/turf/simulated/shuttle/floor/voidcraft, +/area/syndicate_station/start) +"pZu" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/bar) +"pZO" = ( +/obj/machinery/body_scanconsole, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"qcp" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 2 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel_grid" + }, +/area/centcom/security) +"qcS" = ( +/obj/structure/shuttle/window, +/obj/structure/grille, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/plating.dmi'; + icon_state = "plating"; + name = "plating" + }, +/area/centcom/evac) +"qcX" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/centcom/command) +"qdW" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/shuttle/merchant/home) +"qep" = ( +/obj/machinery/door/blast/regular{ + id = "thunderdomeaxe"; + name = "Axe Supply" + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/techfloor.dmi'; + icon_state = "techfloor_gray" + }, +/area/tdome/tdome2) +"qeE" = ( +/obj/structure/sign/directions/security{ + dir = 1; + pixel_y = -10 + }, +/turf/unsimulated/wall, +/area/centcom/terminal) +"qeJ" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/blast/regular{ + id = "skipjackshutters"; + name = "Skipjack Blast Shielding" + }, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"qfC" = ( +/turf/simulated/floor/holofloor/wmarble, +/area/holodeck/source_chess) +"qgr" = ( +/obj/effect/floor_decal/carpet, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"qhn" = ( +/obj/machinery/button/remote/blast_door{ + id = "tradestarshutters"; + name = "remote shutter control"; + pixel_x = 30; + req_access = list(160) + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"qhu" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/shuttle/floor/red, +/area/shuttle/response_ship/start) +"qhU" = ( +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner{ + dir = 1 + }, +/obj/structure/closet/secure_closet/personal/patient, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "white" + }, +/area/centcom/medical) +"qhV" = ( +/obj/structure/curtain/open/shower, +/obj/machinery/shower{ + dir = 4; + pixel_x = 5 + }, +/obj/structure/window/reinforced/tinted, +/turf/unsimulated/floor{ + icon_state = "freezerfloor" + }, +/area/centcom/specops) +"qhY" = ( +/obj/effect/floor_decal/corner/green/full{ + dir = 1 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"qiU" = ( +/obj/structure/table/rack, +/obj/item/weapon/gun/launcher/crossbow, +/obj/item/stack/rods{ + amount = 10 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/item/weapon/beartrap, +/obj/item/weapon/beartrap, +/obj/item/weapon/beartrap, +/obj/item/weapon/beartrap, +/obj/item/weapon/beartrap, +/obj/item/weapon/beartrap, +/turf/simulated/shuttle/floor/darkred, +/area/skipjack_station/start) +"qjK" = ( +/obj/machinery/vending/cigarette{ + dir = 4; + name = "hacked cigarette machine"; + prices = list(); + products = list(/obj/item/weapon/storage/fancy/cigarettes = 10, /obj/item/weapon/storage/box/matches = 10, /obj/item/weapon/flame/lighter/zippo = 4, /obj/item/clothing/mask/smokable/cigarette/cigar/havana = 2) + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/syndicate_station) +"qjO" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/body_scanconsole, +/turf/simulated/shuttle/floor/white, +/area/skipjack_station/start) +"qjZ" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced/full, +/turf/simulated/shuttle/plating, +/area/syndicate_station/start) +"qle" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/techfloor.dmi'; + icon_state = "techfloor_gray" + }, +/area/tdome) +"qlq" = ( +/obj/item/weapon/gun/energy/plasmastun, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/skipjack_station) +"qmk" = ( +/obj/structure/table/steel, +/turf/simulated/shuttle/floor/voidcraft, +/area/syndicate_station/start) +"qmm" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced/full, +/turf/simulated/shuttle/plating, +/area/syndicate_station/start) +"qmo" = ( +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/wizard_station) +"qmP" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/syndicate_station) +"qne" = ( +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 9 + }, +/obj/structure/holostool{ + dir = 4 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_meetinghall) +"qnw" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/machinery/vending/medical{ + req_access = null + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "white" + }, +/area/centcom/medical) +"qoH" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/simulated/shuttle/plating, +/area/syndicate_station/start) +"qpd" = ( +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/ninja_dojo/start) +"qqa" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/effect/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 10 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/main_hall) +"qqm" = ( +/obj/structure/closet/secure_closet/personal, +/turf/simulated/shuttle/floor, +/area/centcom/evac) +"qqE" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "white" + }, +/area/centcom/medical) +"qqG" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/syndicate_station) +"qrS" = ( +/obj/effect/shuttle_landmark/cynosure/escape/transit, +/turf/space/transit/north, +/area/shuttle/escape/transit) +"qsn" = ( +/obj/structure/signpost, +/turf/unsimulated/beach/sand, +/area/beach) +"qtK" = ( +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"qtQ" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/security) +"qup" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/main_hall) +"quv" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-08" + }, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/wizard_station) +"quw" = ( +/obj/machinery/door/airlock/glass{ + name = "Dock" + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel_grid" + }, +/area/centcom/main_hall) +"quS" = ( +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/terminal) +"qvu" = ( +/obj/effect/floor_decal/sign/small_4, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_chess) +"qxg" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/shuttle/floor/yellow, +/area/shuttle/transport1/centcom) +"qxC" = ( +/obj/item/weapon/storage/box/syndie_kit/spy, +/turf/unsimulated/floor{ + icon_state = "cult"; + name = "plating" + }, +/area/skipjack_station) +"qyu" = ( +/obj/machinery/computer/shuttle_control/multi/response{ + dir = 4 + }, +/turf/simulated/shuttle/floor/red, +/area/shuttle/response_ship/start) +"qzf" = ( +/obj/structure/table/bench/steel, +/obj/effect/landmark{ + name = "Trader" + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/shuttle/trade) +"qzu" = ( +/obj/item/toy/chess/pawn_black, +/turf/simulated/floor/holofloor/bmarble, +/area/holodeck/source_chess) +"qzA" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/simulated/shuttle/floor/red, +/area/shuttle/response_ship/start) +"qzF" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/button/remote/blast_door{ + id = "tradebridgeshutters"; + name = "remote shutter control"; + pixel_x = 30; + req_access = list(150) + }, +/obj/structure/flora/pottedplant{ + icon_state = "plant-09"; + name = "Esteban"; + pixel_y = 8 + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"qzI" = ( +/obj/structure/table/glass, +/obj/item/clothing/mask/balaclava, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/ninja_dojo/dojo) +"qzL" = ( +/obj/machinery/door/airlock/external{ + icon_state = "door_locked"; + locked = 1; + name = "Shuttle Hatch" + }, +/turf/simulated/shuttle/floor, +/area/shuttle/arrival/pre_game) +"qAv" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/shuttle/engine/heater{ + dir = 4 + }, +/turf/simulated/shuttle/wall/dark/no_join, +/area/shuttle/response_ship/start) +"qAQ" = ( +/obj/effect/landmark{ + name = "ninjastart" + }, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/ninja_dojo/dojo) +"qCs" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/rig/internalaffairs, +/obj/item/clothing/head/helmet/space/void/wizard, +/obj/item/clothing/suit/space/void/wizard, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"qDH" = ( +/turf/unsimulated/wall, +/area/centcom/living) +"qDY" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/suit/wizrobe/magusred, +/obj/item/clothing/head/wizard/magus, +/obj/item/weapon/staff, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/wizard_station) +"qEe" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced/full, +/turf/simulated/shuttle/plating, +/area/syndicate_station/start) +"qFr" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/under/psysuit, +/obj/item/clothing/suit/wizrobe/psypurple, +/obj/item/clothing/head/wizard/amp, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/wizard_station) +"qFu" = ( +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 9 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"qFF" = ( +/obj/structure/closet/wardrobe/ert, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/specops) +"qFT" = ( +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/bodybag/cryobag{ + pixel_x = 5 + }, +/obj/item/bodybag/cryobag{ + pixel_x = 5 + }, +/obj/item/weapon/storage/firstaid/o2{ + layer = 2.8; + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/weapon/storage/box/masks, +/obj/item/weapon/storage/box/gloves{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/item/weapon/storage/firstaid/toxin, +/obj/item/weapon/storage/firstaid/fire{ + layer = 2.9; + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/weapon/storage/firstaid/adv{ + pixel_x = -2 + }, +/obj/item/weapon/reagent_containers/blood/empty, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/structure/closet/medical_wall{ + pixel_y = 32 + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"qGl" = ( +/obj/item/weapon/beach_ball, +/turf/unsimulated/beach/sand, +/area/beach) +"qGJ" = ( +/obj/effect/shuttle_landmark/cynosure/escape_pod1/offsite, +/turf/simulated/shuttle/plating, +/area/shuttle/escape_pod1/centcom) +"qHh" = ( +/obj/item/weapon/gun/launcher/pneumatic, +/turf/unsimulated/floor{ + icon_state = "asteroid" + }, +/area/skipjack_station) +"qHj" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 4 + }, +/obj/item/weapon/stool/padded{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/bar) +"qHW" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/turf/simulated/shuttle/wall/voidcraft/red, +/area/syndicate_station/start) +"qIo" = ( +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/syndicate_mothership/elite_squad) +"qIt" = ( +/obj/item/weapon/farmbot_arm_assembly, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/wizard_station) +"qIR" = ( +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/tdome) +"qKK" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/space, +/area/space) +"qKZ" = ( +/obj/machinery/door/airlock/glass_medical{ + name = "Lobby" + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel_grid" + }, +/area/centcom/medical) +"qLf" = ( +/obj/structure/table/rack, +/obj/machinery/recharger/wallcharger{ + pixel_x = 5; + pixel_y = 32 + }, +/obj/item/weapon/material/knife/tacknife/combatknife, +/obj/item/weapon/material/knife/tacknife/combatknife, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/syndicate_station) +"qLj" = ( +/obj/machinery/deployable/barrier, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/techfloor.dmi'; + icon_state = "techfloor_gray" + }, +/area/centcom/specops) +"qLv" = ( +/obj/structure/urinal{ + pixel_y = 32 + }, +/obj/item/weapon/soap/syndie, +/turf/unsimulated/floor{ + icon_state = "freezerfloor" + }, +/area/skipjack_station) +"qLH" = ( +/obj/structure/table/wooden_reinforced, +/obj/machinery/recharger, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/ninja_dojo/dojo) +"qOh" = ( +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/structure/holostool{ + dir = 4 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_meetinghall) +"qOt" = ( +/obj/structure/window/reinforced{ + dir = 1; + health = 1e+006 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table/rack, +/obj/item/weapon/storage/belt/security/tactical/bandolier, +/obj/item/weapon/storage/belt/security/tactical/bandolier, +/obj/item/weapon/storage/belt/security/tactical/bandolier, +/obj/item/weapon/storage/belt/security/tactical, +/obj/item/weapon/storage/belt/security/tactical, +/obj/item/weapon/storage/belt/security/tactical, +/obj/item/weapon/storage/belt/security/tactical, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/techfloor.dmi'; + icon_state = "techfloor_gray" + }, +/area/centcom/specops) +"qOL" = ( +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/tdome/tdome2) +"qOU" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 8; + icon_state = "propulsion_l" + }, +/turf/simulated/shuttle/plating/airless/carry, +/area/syndicate_station/start) +"qPy" = ( +/obj/structure/urinal{ + pixel_y = 32 + }, +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "freezerfloor" + }, +/area/centcom/specops) +"qPA" = ( +/obj/structure/shuttle/engine/router{ + dir = 8 + }, +/turf/simulated/floor/airless, +/area/syndicate_station/start) +"qPK" = ( +/obj/machinery/vending/cigarette{ + dir = 4; + name = "hacked cigarette machine"; + prices = list(); + products = list(/obj/item/weapon/storage/fancy/cigarettes = 10, /obj/item/weapon/storage/box/matches = 10, /obj/item/weapon/flame/lighter/zippo = 4, /obj/item/clothing/mask/smokable/cigarette/cigar/havana = 2) + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"qQW" = ( +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "tradebridgeshutters"; + name = "Blast Shutters"; + opacity = 0 + }, +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced/full, +/turf/simulated/shuttle/plating, +/area/shuttle/merchant/home) +"qRq" = ( +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "white" + }, +/area/centcom/medical) +"qSo" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 9 + }, +/obj/structure/closet/secure_closet/personal/patient, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "white" + }, +/area/centcom/medical) +"qTc" = ( +/obj/effect/floor_decal/carpet, +/obj/structure/holostool{ + dir = 8 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_theatre) +"qTl" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1331; + master_tag = "vox_west_control"; + pixel_x = -22; + req_one_access = list(150) + }, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"qTA" = ( +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "monotile" + }, +/area/centcom/terminal) +"qTD" = ( +/obj/effect/floor_decal/techfloor, +/obj/effect/floor_decal/industrial/warning, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/techfloor.dmi'; + icon_state = "techfloor_grid" + }, +/area/centcom/terminal) +"qTK" = ( +/obj/structure/shuttle/engine/heater{ + dir = 8 + }, +/turf/simulated/floor/airless, +/area/syndicate_station/start) +"qUj" = ( +/obj/effect/floor_decal/sign/small_2, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_chess) +"qUl" = ( +/turf/unsimulated/wall/planetary/sif/alt, +/area/space) +"qUO" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/bordercorner{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/terminal) +"qVg" = ( +/obj/structure/bed/chair/comfy/red{ + dir = 1 + }, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/syndicate_station/start) +"qVZ" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/specops) +"qWz" = ( +/turf/simulated/shuttle/floor/white, +/area/shuttle/arrival/pre_game) +"qWM" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/main_hall) +"qXg" = ( +/obj/structure/bed/chair/shuttle, +/turf/simulated/shuttle/floor/white, +/area/shuttle/escape/centcom) +"qXp" = ( +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/main_hall) +"qXv" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/weapon/folder/red, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/security) +"qXU" = ( +/obj/machinery/telecomms/receiver/preset_cent, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/main_hall) +"qYH" = ( +/obj/structure/table/steel_reinforced, +/obj/item/clothing/glasses/meson, +/obj/item/clothing/glasses/meson, +/obj/item/clothing/glasses/meson, +/obj/item/taperoll/engineering, +/obj/item/taperoll/engineering, +/obj/item/taperoll/engineering, +/obj/item/taperoll/engineering, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/specops) +"qYU" = ( +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "tradestationshutters"; + name = "Warehouse Shutters" + }, +/turf/unsimulated/floor{ + dir = 1; + icon_state = "vault" + }, +/area/shuttle/trade) +"qZn" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/security) +"qZq" = ( +/obj/structure/table/steel_reinforced, +/obj/item/clothing/gloves/black, +/obj/item/clothing/gloves/blue, +/obj/item/clothing/gloves/brown, +/obj/item/clothing/gloves/captain, +/obj/item/clothing/gloves/combat, +/obj/item/clothing/gloves/green, +/obj/item/clothing/gloves/grey, +/obj/item/clothing/gloves/light_brown, +/obj/item/clothing/gloves/purple, +/obj/item/clothing/gloves/rainbow, +/obj/item/clothing/gloves/swat, +/obj/item/clothing/gloves/white, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"rar" = ( +/obj/structure/table/steel_reinforced, +/obj/random/plushie, +/obj/random/plushie, +/obj/random/plushie, +/obj/random/plushie, +/obj/random/plushie, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"raB" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/unsimulated/wall, +/area/space) +"rba" = ( +/obj/structure/closet/wardrobe/white, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/shuttle/trade) +"rbe" = ( +/obj/structure/table/woodentable/holotable, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"rbi" = ( +/obj/machinery/door/airlock/voidcraft/vertical{ + req_access = list(150) + }, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/syndicate_station/start) +"rbA" = ( +/obj/machinery/vending/coffee, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeobserve) +"rbD" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + id_tag = "trade_shuttle"; + pixel_x = -25; + req_one_access = list(101); + tag_door = "trade_shuttle_hatch" + }, +/obj/effect/shuttle_landmark{ + base_area = /area/space; + base_turf = /turf/space; + docking_controller = "trade_shuttle_bay"; + landmark_tag = "trade_shuttle_start"; + name = "Trade Station" + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"rcm" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/techfloor.dmi'; + icon_state = "techfloor_gray" + }, +/area/centcom/terminal) +"rdo" = ( +/obj/effect/floor_decal/corner/red/full, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_emptycourt) +"rdM" = ( +/obj/machinery/door/blast/regular{ + id = "thunderdome"; + name = "Thunderdome Blast Door" + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/techfloor.dmi'; + icon_state = "techfloor_gray" + }, +/area/tdome/tdome1) +"rdN" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/bordercorner{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/terminal) +"rei" = ( +/obj/structure/closet/crate, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/ninja_dojo/dojo) +"rej" = ( +/obj/machinery/autolathe{ + hacked = 1; + name = "hacked autolathe" + }, +/turf/simulated/shuttle/floor/voidcraft, +/area/syndicate_station/start) +"rer" = ( +/obj/machinery/chem_master/condimaster, +/turf/unsimulated/floor{ + icon_state = "freezerfloor" + }, +/area/centcom/bar) +"reU" = ( +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 10 + }, +/obj/structure/holostool{ + dir = 8 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_theatre) +"reV" = ( +/obj/machinery/vending/coffee, +/turf/unsimulated/beach/sand, +/area/beach) +"rfk" = ( +/obj/effect/floor_decal/industrial/warning/cee{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "monotile" + }, +/area/centcom/terminal) +"rfr" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 6 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/security) +"rfY" = ( +/obj/effect/floor_decal/borderfloorblack/corner{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/danger/corner{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/main_hall) +"rgg" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 8 + }, +/turf/simulated/shuttle/plating/airless/carry, +/area/syndicate_station/start) +"rgj" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "white" + }, +/area/centcom/medical) +"rgS" = ( +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/obj/effect/floor_decal/corner/white{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/terminal) +"rhp" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/arrow/quill, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/wizard_station) +"rhW" = ( +/obj/item/weapon/ore, +/turf/unsimulated/floor{ + icon_state = "asteroid" + }, +/area/skipjack_station) +"rhZ" = ( +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/ywflowers, +/turf/unsimulated/floor{ + icon_state = "grass0"; + name = "grass" + }, +/area/centcom/main_hall) +"rio" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/shuttle/floor/voidcraft, +/area/syndicate_station/start) +"riQ" = ( +/obj/structure/table/steel_reinforced, +/obj/item/taperoll/atmos, +/obj/item/taperoll/atmos, +/obj/item/taperoll/atmos, +/obj/item/weapon/pickaxe/drill, +/obj/item/weapon/pickaxe/drill, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/specops) +"rjJ" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_picnicarea) +"rjT" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/centcom/command) +"rkn" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/unsimulated/wall, +/area/space) +"rkU" = ( +/obj/structure/table/steel, +/obj/item/stack/medical/splint, +/obj/item/stack/medical/splint, +/obj/item/weapon/storage/belt/medical/emt, +/obj/item/weapon/storage/belt/medical/emt, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/syndicate_station/start) +"rlf" = ( +/obj/structure/table/standard, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/virtual_reality) +"rnE" = ( +/obj/effect/step_trigger/teleporter/landmark{ + landmark_id = "fall_sif" + }, +/turf/simulated/sky/moving/south, +/area/space) +"rnN" = ( +/obj/machinery/door/airlock/external{ + frequency = 1380; + icon_state = "door_locked"; + id_tag = "large_escape_pod_1_recovery_hatch"; + locked = 1; + name = "Recovery Shuttle Dock 01"; + req_access = list(13) + }, +/turf/simulated/shuttle/floor/black, +/area/centcom/evac) +"rnP" = ( +/obj/structure/table/rack, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/shuttle/floor/voidcraft, +/area/syndicate_station/start) +"rnY" = ( +/obj/machinery/door/airlock/hatch{ + name = "Cockpit"; + req_access = list(109) + }, +/turf/simulated/shuttle/floor/black, +/area/centcom/evac) +"rof" = ( +/obj/item/device/radio/intercom{ + broadcasting = 1; + dir = 1; + frequency = 1443; + listening = 0; + name = "Spec Ops Intercom"; + pixel_y = 22 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "freezerfloor" + }, +/area/centcom/command) +"roT" = ( +/obj/effect/wingrille_spawn/reinforced/crescent, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/plating.dmi'; + icon_state = "plating"; + name = "plating" + }, +/area/centcom/command) +"roX" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "freezerfloor" + }, +/area/centcom/bar) +"rpb" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 5 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "white" + }, +/area/centcom/medical) +"rqz" = ( +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "white" + }, +/area/centcom/medical) +"rqR" = ( +/obj/item/weapon/gun/launcher/spikethrower, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/skipjack_station) +"rro" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/toolbox/mechanical, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome) +"rrI" = ( +/turf/unsimulated/shuttle/wall/dark, +/area/centcom/main_hall) +"rrP" = ( +/obj/item/toy/chess/knight_black, +/turf/simulated/floor/holofloor/bmarble, +/area/holodeck/source_chess) +"rsf" = ( +/obj/machinery/telecomms/broadcaster/preset_cent, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/main_hall) +"rsq" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"rsU" = ( +/turf/unsimulated/wall, +/area/space) +"rtW" = ( +/obj/machinery/computer/pod{ + desc = "A control panel used to open and close Spawn Kill Prevention barriers."; + id = "spawngreen"; + name = "Spawn Kill Prevention"; + title = "Spawn Kill Prevention" + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/virtual_reality) +"ruP" = ( +/obj/machinery/vending/tool{ + dir = 1 + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"rva" = ( +/obj/effect/landmark{ + name = "endgame_exit" + }, +/turf/unsimulated/beach/sand, +/area/beach) +"rvC" = ( +/obj/item/stack/material/glass{ + amount = 50 + }, +/obj/item/stack/material/glass{ + amount = 50 + }, +/obj/item/stack/material/glass{ + amount = 50 + }, +/obj/item/stack/material/glass{ + amount = 50 + }, +/obj/item/stack/material/steel{ + amount = 50; + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/stack/material/steel{ + amount = 50; + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/stack/material/steel{ + amount = 50; + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/stack/material/steel{ + amount = 50; + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/stack/material/plasteel{ + amount = 50 + }, +/obj/item/stack/material/plasteel{ + amount = 50 + }, +/obj/item/stack/material/plasteel{ + amount = 50 + }, +/obj/item/stack/material/plasteel{ + amount = 50 + }, +/obj/item/stack/material/glass/reinforced{ + amount = 50 + }, +/obj/item/stack/material/glass/reinforced{ + amount = 50 + }, +/obj/item/stack/material/glass/reinforced{ + amount = 50 + }, +/obj/item/weapon/storage/briefcase/inflatable{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/storage/briefcase/inflatable{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/storage/briefcase/inflatable{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/storage/briefcase/inflatable{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/structure/table/steel_reinforced, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/specops) +"rvI" = ( +/turf/simulated/shuttle/wall/dark/hard_corner, +/area/shuttle/merchant/home) +"rwb" = ( +/obj/effect/overlay/palmtree_l, +/turf/unsimulated/beach/sand, +/area/beach) +"rwA" = ( +/obj/structure/closet/wardrobe/yellow, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/shuttle/trade) +"rwU" = ( +/obj/structure/table/standard, +/obj/random/soap, +/turf/unsimulated/floor{ + icon_state = "freezerfloor" + }, +/area/centcom/bar) +"rwV" = ( +/obj/vehicle/train/engine, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"rwX" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/blast/regular{ + id = "skipjackshutters"; + name = "Skipjack Blast Shielding" + }, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"rxB" = ( +/obj/effect/shuttle_landmark/cynosure/large_escape_pod1/transit, +/turf/space/transit/west, +/area/shuttle/large_escape_pod1/transit) +"rym" = ( +/obj/machinery/door/airlock/voidcraft/vertical{ + req_access = list(150) + }, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/syndicate_station/start) +"ryC" = ( +/obj/machinery/iv_drip, +/turf/simulated/shuttle/floor/white, +/area/centcom/evac) +"ryE" = ( +/obj/structure/closet/wardrobe/pink, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/shuttle/trade) +"ryM" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced/full, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/turf/simulated/shuttle/plating, +/area/syndicate_station/start) +"rzt" = ( +/obj/structure/bed/chair, +/obj/effect/landmark{ + name = "endgame_exit" + }, +/turf/unsimulated/beach/sand, +/area/beach) +"rzx" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1331; + id_tag = "merc_shuttle_pump" + }, +/obj/effect/shuttle_landmark{ + base_area = /area/space; + base_turf = /turf/space; + landmark_tag = "syndie_start"; + name = "Merc Base Dock" + }, +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "smindicate"; + name = "ship lockdown control"; + pixel_x = -25 + }, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/syndicate_station/start) +"rzF" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/security) +"rzI" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 2; + req_access = list(160) + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"rzJ" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/turf/simulated/shuttle/floor/black, +/area/centcom/evac) +"rAB" = ( +/obj/effect/decal/cleanable/cobweb2, +/turf/unsimulated/floor{ + icon_state = "cult"; + name = "plating" + }, +/area/skipjack_station) +"rAI" = ( +/obj/machinery/mecha_part_fabricator, +/obj/machinery/status_display{ + layer = 4; + pixel_y = 32 + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/wizard_station) +"rBk" = ( +/obj/structure/bed/chair/shuttle{ + dir = 4 + }, +/obj/structure/closet/walllocker/emerglocker{ + pixel_x = -32 + }, +/obj/effect/landmark{ + name = "JoinLate" + }, +/turf/simulated/shuttle/floor/white, +/area/shuttle/arrival/pre_game) +"rBz" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 1 + }, +/turf/simulated/shuttle/plating/airless/carry, +/area/shuttle/escape/centcom) +"rCR" = ( +/obj/item/weapon/beach_ball, +/turf/simulated/floor/holofloor/beach/sand, +/area/holodeck/source_beach) +"rDn" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 10 + }, +/turf/simulated/shuttle/wall/voidcraft/red, +/area/syndicate_station/start) +"rDr" = ( +/obj/structure/table/rack, +/obj/item/weapon/gun/energy/sniperrifle, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"rDY" = ( +/obj/machinery/door/airlock/silver{ + name = "Restroom" + }, +/turf/simulated/shuttle/floor/white, +/area/shuttle/merchant/home) +"rEg" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/security) +"rFu" = ( +/obj/machinery/door/window/brigdoor/northleft, +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/security) +"rGD" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/suit/wizrobe/magusblue, +/obj/item/clothing/head/wizard/magus, +/obj/item/weapon/staff, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/wizard_station) +"rGF" = ( +/obj/vehicle/train/trolley, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"rGJ" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/machinery/meter, +/turf/simulated/shuttle/floor/voidcraft, +/area/syndicate_station/start) +"rGU" = ( +/obj/machinery/door/airlock/voidcraft/vertical{ + frequency = 1331; + id_tag = "merc_shuttle_inner"; + name = "Ship External Access"; + req_access = list(150) + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/syndicate_station/start) +"rHT" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + frequency = 1331; + id_tag = "vox_east_vent" + }, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"rJp" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/centcom/command) +"rKf" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/firstaid/o2{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/weapon/storage/firstaid/o2, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "white" + }, +/area/centcom/medical) +"rKs" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "white" + }, +/area/centcom/medical) +"rKS" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1331; + id_tag = "merc_shuttle_pump" + }, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/syndicate_station/start) +"rLv" = ( +/obj/structure/sink{ + pixel_y = 16 + }, +/obj/structure/mirror{ + pixel_y = 32 + }, +/turf/unsimulated/floor{ + icon_state = "freezerfloor" + }, +/area/centcom/bar) +"rLA" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/green/border, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/terminal) +"rLI" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/shuttle/plating, +/area/centcom/evac) +"rLV" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/obj/machinery/turretid{ + pixel_y = 28; + req_access = list(101) + }, +/turf/unsimulated/floor{ + icon_state = "freezerfloor" + }, +/area/centcom/command) +"rND" = ( +/obj/machinery/door/airlock/centcom{ + name = "General Access"; + req_access = list(101) + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/tdome) +"rNR" = ( +/obj/structure/table/woodentable/holotable, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/structure/window/reinforced/holowindow{ + dir = 4 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"rNU" = ( +/obj/machinery/bodyscanner{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "white" + }, +/area/centcom/medical) +"rOb" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/holofloor/lino, +/area/holodeck/source_meetinghall) +"rOh" = ( +/obj/machinery/door/window/westleft{ + name = "Storefront"; + req_access = list(160) + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"rON" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/main_hall) +"rOP" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 8 + }, +/obj/machinery/door/airlock/voidcraft/vertical{ + frequency = 1331; + id_tag = "merc_shuttle_inner"; + name = "Ship External Access"; + req_access = list(150) + }, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/syndicate_station/start) +"rOS" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/main_hall) +"rPw" = ( +/obj/machinery/door/airlock/external, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel_grid" + }, +/area/centcom/command) +"rPy" = ( +/obj/machinery/pipedispenser/disposal/orderable, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/specops) +"rQI" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/handcuffs, +/obj/item/device/flash, +/obj/item/weapon/melee/baton/loaded, +/obj/item/weapon/storage/belt/security/tactical, +/obj/item/weapon/gun/energy/stunrevolver, +/obj/item/clothing/glasses/sunglasses/sechud/tactical, +/obj/item/weapon/material/knife/tacknife/combatknife, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/specops) +"rQT" = ( +/obj/machinery/floodlight, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/wizard_station) +"rQZ" = ( +/obj/effect/floor_decal/corner/red/full, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"rRw" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/clothing/head/helmet/ert/engineer{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/clothing/head/helmet/ert/engineer, +/obj/item/clothing/head/helmet/ert/engineer{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/clothing/suit/armor/vest/ert/engineer{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/clothing/suit/armor/vest/ert/engineer, +/obj/item/clothing/suit/armor/vest/ert/engineer{ + pixel_x = 3; + pixel_y = 2 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/techfloor.dmi'; + icon_state = "techfloor_gray" + }, +/area/centcom/specops) +"rRH" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_theatre) +"rRM" = ( +/obj/item/device/radio/electropack, +/obj/structure/table/steel, +/turf/simulated/shuttle/floor/voidcraft, +/area/syndicate_station/start) +"rSb" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 8; + icon_state = "propulsion_r" + }, +/turf/simulated/shuttle/plating/airless/carry, +/area/syndicate_station/start) +"rSd" = ( +/obj/effect/floor_decal/techfloor{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/techfloor.dmi'; + icon_state = "techfloor_grid" + }, +/area/centcom/terminal) +"rSj" = ( +/obj/machinery/atm{ + pixel_x = -32 + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"rSn" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/shuttle/plating, +/area/shuttle/merchant/home) +"rTu" = ( +/obj/machinery/clonepod, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/purple/border, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "white" + }, +/area/centcom/medical) +"rTY" = ( +/obj/effect/landmark/virtual_reality{ + name = "Thunderdome (Red Team)" + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/virtual_reality) +"rUh" = ( +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 8 + }, +/obj/item/weapon/pen{ + pixel_y = 4 + }, +/obj/machinery/light, +/obj/structure/table/glass, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"rXy" = ( +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/centcom/command) +"rYe" = ( +/obj/machinery/door/airlock/external{ + icon_state = "door_locked"; + locked = 1; + name = "Recovery Shuttle Dock 3" + }, +/turf/simulated/shuttle/floor/black, +/area/centcom/evac) +"rYJ" = ( +/turf/unsimulated/floor{ + icon_state = "freezerfloor" + }, +/area/syndicate_station) +"rZf" = ( +/obj/structure/table/holotable, +/obj/effect/floor_decal/corner/green/full{ + dir = 8 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_thunderdomecourt) +"rZg" = ( +/obj/structure/morgue{ + dir = 8 + }, +/turf/simulated/shuttle/plating, +/area/centcom/evac) +"rZm" = ( +/obj/structure/closet/wardrobe/captain, +/obj/item/weapon/gun/projectile/revolver/mateba, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"rZv" = ( +/obj/item/weapon/stool/padded, +/obj/effect/floor_decal/corner/yellow/diagonal, +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/living) +"sar" = ( +/obj/machinery/door/airlock/hatch{ + req_access = list(150) + }, +/turf/simulated/shuttle/floor/red, +/area/skipjack_station/start) +"saR" = ( +/obj/structure/bed/chair/holochair{ + dir = 1 + }, +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 10 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"sbj" = ( +/obj/effect/floor_decal/borderfloorblack/corner{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger/corner{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/main_hall) +"sbq" = ( +/obj/machinery/iv_drip, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/specops) +"sbM" = ( +/obj/machinery/media/jukebox, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/wizard_station) +"sda" = ( +/obj/structure/closet/walllocker/emerglocker{ + pixel_y = 32 + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"sdc" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/shuttle/floor/darkred, +/area/skipjack_station/start) +"sdg" = ( +/obj/structure/bed/chair/wood{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/bar) +"sdu" = ( +/obj/structure/closet/emcloset, +/obj/item/weapon/extinguisher, +/obj/item/weapon/tool/crowbar, +/turf/simulated/shuttle/floor, +/area/shuttle/escape/centcom) +"sdE" = ( +/obj/structure/table/reinforced, +/obj/item/device/defib_kit/compact/combat/loaded{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/cell/high{ + pixel_y = -4 + }, +/obj/item/weapon/cell/high, +/obj/item/device/defib_kit/compact/combat/loaded{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/weapon/tool/screwdriver, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/specops) +"sex" = ( +/obj/item/robot_parts/l_arm, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/wizard_station) +"sfb" = ( +/obj/item/weapon/reagent_containers/food/drinks/cans/cola, +/obj/item/weapon/reagent_containers/food/drinks/cans/cola, +/obj/item/weapon/reagent_containers/food/drinks/cans/cola, +/obj/structure/table/standard, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeobserve) +"sfu" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/stock_parts/matter_bin/super, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/wizard_station) +"sfZ" = ( +/obj/machinery/atmospherics/unary/freezer{ + icon_state = "freezer" + }, +/turf/simulated/shuttle/floor/black, +/area/centcom/evac) +"shh" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/creed) +"shq" = ( +/obj/structure/table/rack, +/obj/item/weapon/gun/launcher/spikethrower, +/turf/unsimulated/floor{ + icon_state = "asteroid" + }, +/area/skipjack_station) +"shD" = ( +/obj/structure/table/steel_reinforced, +/obj/item/device/mmi/radio_enabled, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/wizard_station) +"shM" = ( +/obj/structure/table/rack, +/obj/item/clothing/under/color/green, +/obj/item/clothing/shoes/brown, +/obj/item/clothing/suit/armor/vest, +/obj/item/clothing/head/helmet/swat, +/obj/item/weapon/gun/energy/laser, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/tdome/tdome1) +"shQ" = ( +/obj/machinery/computer/shuttle_control/multi/mercenary{ + dir = 8 + }, +/turf/simulated/shuttle/floor/voidcraft, +/area/syndicate_station/start) +"shY" = ( +/obj/structure/device/piano{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/diagonal, +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/living) +"siU" = ( +/obj/effect/decal/mecha_wreckage/phazon, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/wizard_station) +"sko" = ( +/obj/machinery/door/blast/regular{ + id = "spawnred"; + name = "Red Team Spawn" + }, +/turf/unsimulated/floor{ + icon_state = "steel_dirty" + }, +/area/virtual_reality) +"skQ" = ( +/obj/machinery/recharger/wallcharger{ + pixel_x = 32 + }, +/obj/structure/table/steel, +/obj/item/weapon/plastique, +/obj/item/weapon/plastique, +/obj/item/weapon/plastique, +/obj/item/weapon/plastique, +/obj/item/weapon/plastique, +/obj/item/weapon/plastique, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/shuttle/floor/voidcraft, +/area/syndicate_station/start) +"slo" = ( +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1331; + master_tag = "trade2_control"; + pixel_x = -22; + pixel_y = -32; + req_one_access = list(150) + }, +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 1 + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"smc" = ( +/obj/machinery/suit_cycler/syndicate{ + locked = 0 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/skipjack_station) +"sml" = ( +/obj/structure/bed/chair, +/obj/effect/landmark{ + name = "endgame_exit" + }, +/obj/item/toy/plushie/mouse{ + desc = "A plushie of a small fuzzy rodent."; + name = "Woodrat" + }, +/turf/unsimulated/beach/sand, +/area/beach) +"smw" = ( +/obj/structure/bed/chair/comfy/black, +/turf/unsimulated/floor{ + icon_state = "cult"; + name = "plating" + }, +/area/syndicate_station) +"smB" = ( +/obj/effect/floor_decal/corner/red/full{ + dir = 4 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_emptycourt) +"sno" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/external{ + icon_state = "door_locked"; + locked = 1 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/techfloor.dmi'; + icon_state = "techfloor_gray" + }, +/area/centcom/terminal) +"snx" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/medical, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 6 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 6 + }, +/obj/structure/curtain/open/privacy, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "white" + }, +/area/centcom/medical) +"snZ" = ( +/obj/item/weapon/stool/barstool/padded{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/bar) +"soo" = ( +/obj/item/clothing/glasses/sunglasses, +/turf/simulated/floor/holofloor/beach/sand, +/area/holodeck/source_beach) +"sor" = ( +/obj/effect/floor_decal/corner/green{ + dir = 5 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_emptycourt) +"spg" = ( +/obj/effect/landmark/costume, +/obj/structure/table/rack/holorack, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_theatre) +"spy" = ( +/obj/machinery/space_heater, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/ninja_dojo/dojo) +"spL" = ( +/turf/unsimulated/wall{ + icon = 'icons/obj/doors/Doormaint.dmi'; + icon_state = "door_closed"; + name = "Sealed Door" + }, +/area/centcom/bar) +"spP" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/blue, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/skipjack_station) +"sqm" = ( +/obj/machinery/vending/hydronutrients, +/turf/unsimulated/floor{ + icon_state = "grass0"; + name = "grass" + }, +/area/wizard_station) +"sqs" = ( +/obj/structure/table/wooden_reinforced, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/creed) +"srA" = ( +/obj/structure/sign/greencross{ + name = "First-Aid" + }, +/turf/simulated/shuttle/wall/dark/hard_corner, +/area/centcom/specops) +"ssp" = ( +/obj/structure/frame/computer{ + dir = 8 + }, +/turf/simulated/shuttle/floor/voidcraft, +/area/syndicate_station/start) +"ssK" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/security) +"stR" = ( +/obj/effect/floor_decal/corner/red/full{ + dir = 8 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_emptycourt) +"svl" = ( +/obj/machinery/telecomms/hub/preset/cynosure/centcomm, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/main_hall) +"sww" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/box/syringes{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/box/syringes, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/specops) +"swE" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad" + }, +/obj/machinery/door/airlock/external{ + frequency = 1380; + icon_state = "door_locked"; + id_tag = "supply_shuttle_hatch"; + locked = 1; + name = "Shuttle Hatch"; + req_access = list(13) + }, +/turf/simulated/shuttle/plating, +/area/shuttle/supply) +"sxL" = ( +/obj/structure/bed/chair/office/light, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/main_hall) +"syd" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/unsimulated/floor{ + icon_state = "freezerfloor" + }, +/area/centcom/bar) +"syp" = ( +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "syndieshutters_telebay"; + name = "remote shutter control"; + pixel_x = -25; + req_access = list(150) + }, +/turf/simulated/shuttle/floor/voidcraft, +/area/syndicate_station/start) +"szv" = ( +/obj/structure/table/reinforced, +/obj/item/roller/adv, +/obj/item/roller/adv{ + pixel_y = 3 + }, +/obj/item/roller/adv{ + pixel_y = 6 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/specops) +"sBp" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 9 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/bar) +"sBr" = ( +/obj/effect/floor_decal/corner/red{ + dir = 10 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"sEr" = ( +/obj/machinery/portable_atmospherics/powered/pump, +/turf/simulated/shuttle/plating, +/area/centcom/evac) +"sFa" = ( +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/skipjack_station) +"sFf" = ( +/obj/effect/step_trigger/thrower{ + affect_ghosts = 1; + direction = 1; + name = "thrower_throwup"; + nostop = 1; + stopper = 0; + tiles = 0 + }, +/obj/effect/step_trigger/teleporter/random{ + affect_ghosts = 1; + name = "escapeshuttle_leave"; + teleport_x = 25; + teleport_x_offset = 245; + teleport_y = 25; + teleport_y_offset = 245; + teleport_z = 6; + teleport_z_offset = 6 + }, +/turf/space/transit/north, +/area/space) +"sFD" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/largecrate/animal/corgi, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"sGe" = ( +/obj/effect/floor_decal/sign/small_h, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_chess) +"sGi" = ( +/obj/effect/step_trigger/thrower{ + affect_ghosts = 1; + name = "thrower_throwdown"; + nostop = 1; + stopper = 0; + tiles = 0 + }, +/turf/simulated/sky/moving/north, +/area/space) +"sHe" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "ninjawindow"; + name = "Blast Shutters"; + opacity = 0 + }, +/turf/simulated/shuttle/plating, +/area/ninja_dojo/start) +"sHu" = ( +/turf/unsimulated/floor{ + icon_state = "steel_dirty" + }, +/area/virtual_reality) +"sIa" = ( +/obj/structure/table/marble, +/obj/item/weapon/reagent_containers/glass/beaker, +/obj/effect/floor_decal/corner/white/diagonal, +/obj/machinery/reagentgrinder, +/obj/effect/floor_decal/corner/white/diagonal, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/bar) +"sIi" = ( +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1331; + master_tag = "trade2_control"; + pixel_x = 24; + req_one_access = list(150) + }, +/obj/machinery/door/airlock/external{ + frequency = 1331; + icon_state = "door_locked"; + id_tag = "trade2_shuttle_outer"; + locked = 1; + name = "Ship Hatch"; + req_access = list(13) + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"sII" = ( +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 9 + }, +/turf/unsimulated/floor{ + icon_state = "carpet" + }, +/area/centcom/command) +"sJy" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 5 + }, +/turf/simulated/shuttle/wall/voidcraft/red, +/area/syndicate_station/start) +"sJO" = ( +/obj/structure/table/bench/wooden, +/obj/effect/landmark{ + name = "ninjastart" + }, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/ninja_dojo/dojo) +"sJY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "white" + }, +/area/centcom/medical) +"sKk" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/main_hall) +"sKp" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/box/autoinjectors{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/weapon/storage/box/beakers, +/obj/item/weapon/storage/box/gloves{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/box/masks{ + pixel_x = 4; + pixel_y = 4 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/specops) +"sKx" = ( +/turf/simulated/shuttle/wall/dark/hard_corner, +/area/shuttle/administration/centcom) +"sKz" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 4 + }, +/turf/simulated/shuttle/plating/airless/carry, +/area/shuttle/merchant/home) +"sKH" = ( +/turf/space/transit/north, +/area/shuttle/escape_pod1/transit) +"sKT" = ( +/obj/effect/floor_decal/corner/green/full{ + dir = 4 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_boxingcourt) +"sLv" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/terminal) +"sLM" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/clothing/head/helmet/ert/medical{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/clothing/head/helmet/ert/medical, +/obj/item/clothing/head/helmet/ert/medical{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/clothing/suit/armor/vest/ert/medical{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/clothing/suit/armor/vest/ert/medical, +/obj/item/clothing/suit/armor/vest/ert/medical{ + pixel_x = -2; + pixel_y = -2 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/techfloor.dmi'; + icon_state = "techfloor_gray" + }, +/area/centcom/specops) +"sLO" = ( +/obj/machinery/computer/communications{ + dir = 8 + }, +/turf/simulated/shuttle/floor/black, +/area/centcom/evac) +"sLX" = ( +/turf/unsimulated/wall, +/area/skipjack_station) +"sNA" = ( +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "syndieshutters_infirmary"; + name = "remote shutter control"; + pixel_x = 25 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/syndicate_station/start) +"sNL" = ( +/obj/structure/table/wooden_reinforced, +/obj/item/device/radio/uplink, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/ninja_dojo/dojo) +"sNN" = ( +/obj/machinery/door/airlock/medical{ + name = "Cloning Laboratory"; + req_one_access = list(66) + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel_grid" + }, +/area/centcom/medical) +"sOQ" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/shuttle/floor/white, +/area/centcom/evac) +"sPf" = ( +/obj/structure/table/woodentable, +/obj/machinery/librarycomp{ + pixel_y = 6 + }, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/wizard_station) +"sPV" = ( +/obj/item/pizzabox/meat, +/turf/unsimulated/floor{ + icon_state = "asteroid" + }, +/area/skipjack_station) +"sQw" = ( +/obj/structure/table/rack, +/obj/item/rig_module/device/rcd, +/obj/item/rig_module/device/rcd, +/obj/item/rig_module/device/plasmacutter, +/obj/item/rig_module/device/plasmacutter, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/specops) +"sQT" = ( +/obj/structure/table/rack, +/obj/item/rig_module/chem_dispenser/combat, +/obj/item/rig_module/chem_dispenser/combat, +/obj/item/rig_module/chem_dispenser/injector, +/obj/item/rig_module/chem_dispenser/injector, +/obj/item/rig_module/device/healthscanner, +/obj/item/rig_module/device/healthscanner, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/specops) +"sRd" = ( +/obj/structure/table/rack, +/obj/item/rig_module/mounted/egun, +/obj/item/rig_module/mounted/egun, +/obj/structure/window/reinforced{ + dir = 4; + health = 1e+006 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/specops) +"sRz" = ( +/obj/item/device/radio/intercom{ + desc = "Talk through this. Evilly"; + dir = 8; + frequency = 1213; + name = "Subversive Intercom"; + pixel_x = -32; + subspace_transmission = 1; + syndie = 1 + }, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/syndicate_station/start) +"sRF" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/cell_charger, +/obj/random/powercell, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/ninja_dojo/dojo) +"sRU" = ( +/obj/item/weapon/tray{ + pixel_y = 5 + }, +/obj/structure/table/standard, +/obj/item/weapon/material/knife/butch, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/skipjack_station) +"sSU" = ( +/obj/structure/table/rack, +/obj/item/clothing/glasses/thermal/plain/monocle, +/turf/unsimulated/floor{ + icon_state = "asteroid" + }, +/area/skipjack_station) +"sTE" = ( +/obj/structure/table/marble, +/obj/effect/floor_decal/corner/white/diagonal, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/bar) +"sTF" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/blast/regular{ + id = "skipjackshutters"; + name = "Skipjack Blast Shielding" + }, +/obj/structure/window/reinforced/full, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"sUe" = ( +/obj/machinery/media/jukebox, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/bar) +"sUB" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 9 + }, +/turf/simulated/shuttle/wall/voidcraft/red, +/area/syndicate_station/start) +"sUW" = ( +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/machinery/door/window/holowindoor, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"sVj" = ( +/obj/effect/wingrille_spawn/reinforced/crescent, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/wizard_station) +"sVQ" = ( +/obj/structure/table/standard, +/obj/random/projectile, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/skipjack_station) +"sVW" = ( +/obj/machinery/door/airlock/external{ + frequency = 1380; + icon_state = "door_locked"; + id_tag = "large_escape_pod_2_recovery_hatch"; + locked = 1; + name = "Recovery Shuttle Dock 02"; + req_access = list(13) + }, +/turf/simulated/shuttle/floor/black, +/area/centcom/evac) +"sYO" = ( +/obj/structure/closet/secure_closet/medical2, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/pink/border{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "white" + }, +/area/centcom/medical) +"sYS" = ( +/obj/structure/flora/ausbushes/brflowers, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_picnicarea) +"sYW" = ( +/obj/effect/step_trigger/thrower{ + affect_ghosts = 1; + direction = 1; + name = "thrower_throwup"; + nostop = 1; + stopper = 0; + tiles = 0 + }, +/obj/effect/step_trigger/thrower{ + affect_ghosts = 1; + direction = 1; + name = "thrower_throwup"; + nostop = 1; + stopper = 0; + tiles = 0 + }, +/turf/space/transit/north, +/area/space) +"sZr" = ( +/obj/machinery/teleport/station, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/syndicate_station/start) +"tay" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 10 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/bar) +"taT" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 8 + }, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_picnicarea) +"tbt" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/wizard_station) +"tbG" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/shuttle/floor, +/area/shuttle/escape/centcom) +"tck" = ( +/turf/simulated/shuttle/wall/voidcraft/blue, +/area/ninja_dojo/start) +"tdh" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 8; + icon_state = "shutter0"; + id = "syndieshutters"; + name = "Blast Shutters"; + opacity = 0 + }, +/obj/structure/window/reinforced/full, +/turf/simulated/shuttle/plating, +/area/syndicate_station/start) +"tds" = ( +/obj/structure/window/reinforced, +/obj/machinery/door/blast/shutters{ + density = 0; + icon_state = "shutter0"; + id = "tradestarshutters"; + name = "Blast Shutters"; + opacity = 0 + }, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced/full, +/turf/simulated/shuttle/plating, +/area/shuttle/merchant/home) +"tes" = ( +/obj/structure/bed/chair/comfy/red, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/syndicate_station/start) +"teN" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-04" + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/wizard_station) +"teW" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4; + frequency = 1331; + id_tag = "merc_shuttle_pump" + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + frequency = 1331; + id_tag = "merc_shuttle"; + pixel_x = 24; + pixel_y = -2; + req_access = list(150) + }, +/obj/machinery/airlock_sensor{ + frequency = 1331; + id_tag = "merc_shuttle_sensor"; + pixel_x = 28; + pixel_y = 8 + }, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/syndicate_station/start) +"tfb" = ( +/obj/machinery/suit_cycler/syndicate{ + locked = 0 + }, +/turf/simulated/shuttle/floor/voidcraft, +/area/syndicate_station/start) +"tfr" = ( +/obj/machinery/computer/teleporter, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/specops) +"tfA" = ( +/obj/machinery/portable_atmospherics/canister/nitrous_oxide{ + pixel_x = 1 + }, +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome) +"tgG" = ( +/obj/structure/table/rack, +/obj/item/weapon/storage/belt/security, +/obj/item/weapon/storage/belt/security, +/turf/simulated/shuttle/floor/voidcraft, +/area/syndicate_station/start) +"tgH" = ( +/obj/structure/table/steel, +/obj/item/weapon/gun/projectile/pistol, +/obj/item/ammo_magazine/m9mm, +/obj/item/weapon/gun/projectile/pistol, +/obj/item/ammo_magazine/m9mm, +/turf/simulated/shuttle/floor/voidcraft, +/area/syndicate_station/start) +"tgY" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/shuttle/floor, +/area/shuttle/arrival/pre_game) +"thr" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + req_access = list(160) + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"thM" = ( +/obj/structure/closet/emcloset, +/obj/item/device/radio/intercom{ + dir = 8; + name = "Station Intercom (General)"; + pixel_x = -21 + }, +/turf/simulated/shuttle/floor/white, +/area/shuttle/arrival/pre_game) +"tim" = ( +/obj/structure/table/steel, +/obj/item/weapon/storage/toolbox/syndicate/powertools, +/turf/simulated/shuttle/floor/voidcraft, +/area/syndicate_station/start) +"tiB" = ( +/obj/structure/bed/chair, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/centcom/command) +"tiP" = ( +/obj/structure/table/rack, +/obj/item/weapon/storage/belt/security/tactical/bandolier, +/turf/simulated/shuttle/floor/voidcraft, +/area/syndicate_station/start) +"tjP" = ( +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "carpet" + }, +/area/ninja_dojo/dojo) +"tjZ" = ( +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/brflowers, +/turf/unsimulated/floor{ + icon_state = "grass0"; + name = "grass" + }, +/area/centcom/main_hall) +"tlu" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"tmq" = ( +/obj/item/weapon/beach_ball/holoball, +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"tnB" = ( +/obj/item/weapon/gun/energy/sonic, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/skipjack_station) +"tnL" = ( +/turf/simulated/shuttle/wall/dark{ + hard_corner = 1; + join_group = "shuttle_ert" + }, +/area/shuttle/response_ship/start) +"tos" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/shuttle/floor/red, +/area/shuttle/response_ship/start) +"tpm" = ( +/obj/structure/table/woodentable/holotable, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_courtroom) +"tpT" = ( +/obj/effect/floor_decal/sign/small_1, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_chess) +"tqp" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/shuttle/floor/red, +/area/shuttle/response_ship/start) +"tqq" = ( +/obj/structure/table/steel, +/obj/structure/flora/pottedplant{ + icon_state = "plant-09"; + name = "Dave"; + pixel_y = 15 + }, +/obj/item/toy/plushie/mouse{ + desc = "A plushie of a small fuzzy rodent."; + name = "Doorstop" + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_red" + }, +/area/shuttle/arrival/pre_game) +"tra" = ( +/obj/machinery/telecomms/relay/preset/centcom, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/creed) +"trt" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "syndieshutters"; + name = "remote shutter control"; + req_access = list(150) + }, +/turf/simulated/shuttle/floor/voidcraft, +/area/syndicate_station/start) +"tsG" = ( +/obj/structure/window/reinforced{ + dir = 1; + health = 1e+006 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "freezerfloor" + }, +/area/centcom/command) +"tsP" = ( +/obj/machinery/telecomms/relay/preset/cynosure/centcomm, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/main_hall) +"ttw" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "cult"; + name = "plating" + }, +/area/skipjack_station) +"ttY" = ( +/obj/machinery/atmospherics/pipe/vent{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/tdome) +"tui" = ( +/turf/simulated/shuttle/wall/dark, +/area/shuttle/administration/centcom) +"tuD" = ( +/obj/item/clothing/mask/gas/swat/vox, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/skipjack_station) +"tuK" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"tuN" = ( +/obj/structure/table/standard, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome) +"tuY" = ( +/obj/machinery/vending/snack, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome/tdomeobserve) +"tvf" = ( +/obj/effect/step_trigger/thrower{ + affect_ghosts = 1; + direction = 1; + name = "thrower_throwup"; + nostop = 1; + stopper = 0; + tiles = 0 + }, +/turf/space/transit/north, +/area/space) +"tvq" = ( +/obj/structure/table/rack, +/obj/item/weapon/tank/jetpack/oxygen, +/obj/item/weapon/tank/jetpack/oxygen, +/obj/item/weapon/tank/jetpack/oxygen, +/obj/item/weapon/tank/jetpack/oxygen, +/obj/item/weapon/tank/jetpack/oxygen, +/obj/item/weapon/tank/jetpack/oxygen, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/syndicate_station) +"tvU" = ( +/obj/machinery/computer/security/nuclear, +/turf/simulated/shuttle/floor/voidcraft, +/area/syndicate_station/start) +"twp" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "tradeportshutters"; + name = "Blast Shutters"; + opacity = 0 + }, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced/full, +/turf/simulated/shuttle/plating, +/area/shuttle/merchant/home) +"twM" = ( +/obj/structure/bed/chair/shuttle, +/turf/simulated/shuttle/floor, +/area/shuttle/escape/centcom) +"txz" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_red" + }, +/area/shuttle/arrival/pre_game) +"tze" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/machinery/meter, +/obj/structure/largecrate/animal/cat, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"tzO" = ( +/obj/structure/closet{ + name = "Prisoner's Locker" + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 6 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/security) +"tBS" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/shuttle/floor/black, +/area/skipjack_station/start) +"tCa" = ( +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 9 + }, +/turf/unsimulated/floor{ + icon_state = "carpet" + }, +/area/ninja_dojo/dojo) +"tCp" = ( +/obj/machinery/door/airlock/external, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/command) +"tDh" = ( +/obj/structure/frame/computer, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/shuttle/floor/voidcraft, +/area/syndicate_station/start) +"tDm" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/shuttle/floor/darkred, +/area/skipjack_station/start) +"tDn" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/closet/crate/secure/loot, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"tDD" = ( +/turf/simulated/shuttle/floor/white, +/area/centcom/evac) +"tDF" = ( +/obj/machinery/door/airlock{ + icon = 'icons/obj/doors/Dooruranium.dmi' + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/ninja_dojo/dojo) +"tDM" = ( +/obj/structure/table/standard, +/obj/item/weapon/paper_bin, +/obj/item/device/radio/off, +/turf/simulated/shuttle/floor/black, +/area/centcom/evac) +"tDS" = ( +/obj/structure/bed/chair/shuttle, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/shuttle/floor/white, +/area/shuttle/escape/centcom) +"tEA" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/turf/simulated/shuttle/floor/black, +/area/centcom/evac) +"tEZ" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced/full, +/turf/simulated/shuttle/plating, +/area/shuttle/escape/centcom) +"tFm" = ( +/obj/effect/overlay/palmtree_r, +/obj/effect/overlay/coconut, +/turf/unsimulated/beach/sand, +/area/beach) +"tFV" = ( +/obj/structure/table/rack, +/obj/item/clothing/glasses/night, +/obj/item/clothing/glasses/night, +/obj/item/clothing/glasses/night, +/obj/item/clothing/glasses/night, +/obj/item/clothing/glasses/night, +/obj/item/clothing/glasses/night, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/syndicate_station/start) +"tHT" = ( +/obj/machinery/camera/network/thunder{ + c_tag = "Thunderdome Arena"; + invisibility = 101 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/tdome) +"tIC" = ( +/obj/structure/shuttle/engine/propulsion, +/turf/simulated/shuttle/plating/airless/carry, +/area/skipjack_station/start) +"tIH" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/machinery/button/remote/blast_door{ + desc = "A remote control switch for port-side blast doors."; + id = "CentComPort"; + name = "Security Doors"; + pixel_x = -25; + pixel_y = -25; + req_access = list(101) + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/main_hall) +"tJi" = ( +/obj/machinery/door/airlock/external{ + frequency = 1380; + icon_state = "door_locked"; + id_tag = "centcom_dock_airlock"; + locked = 1; + name = "Arrivals Airlock"; + req_access = list(13) + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/plating.dmi'; + icon_state = "plating"; + name = "plating" + }, +/area/centcom/terminal) +"tJC" = ( +/mob/living/simple_mob/animal/passive/dog/corgi/puppy/Bockscar, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/creed) +"tKn" = ( +/obj/machinery/door/airlock/glass{ + name = "Kitchen" + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel_grid" + }, +/area/centcom/bar) +"tKQ" = ( +/turf/unsimulated/wall, +/area/shuttle/trade) +"tKS" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet/rd, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/wizard_station) +"tLG" = ( +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 10 + }, +/turf/unsimulated/floor{ + icon_state = "carpet" + }, +/area/centcom/command) +"tLW" = ( +/obj/effect/floor_decal/carpet{ + dir = 5 + }, +/obj/effect/floor_decal/carpet{ + dir = 6 + }, +/obj/effect/floor_decal/carpet{ + dir = 9 + }, +/obj/effect/floor_decal/carpet{ + dir = 10 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"tMx" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/unsimulated/wall, +/area/space) +"tMB" = ( +/obj/structure/closet/crate/freezer/rations, +/turf/simulated/shuttle/plating, +/area/centcom/evac) +"tNb" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/holofloor/lino, +/area/holodeck/source_meetinghall) +"tOF" = ( +/obj/effect/floor_decal/sign/small_f, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_chess) +"tPB" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/machinery/meter, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/ninja_dojo/start) +"tQa" = ( +/turf/simulated/shuttle/wall/hard_corner, +/area/shuttle/arrival/pre_game) +"tQt" = ( +/turf/space/transit/east, +/area/space) +"tQx" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/storage/toolbox/syndicate{ + pixel_x = -1; + pixel_y = 3 + }, +/obj/random/tech_supply, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/ninja_dojo/dojo) +"tQy" = ( +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/virtual_reality) +"tQS" = ( +/obj/effect/floor_decal/sign/small_5, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_chess) +"tQX" = ( +/obj/item/weapon/storage/box, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/specops) +"tRx" = ( +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/living) +"tRA" = ( +/obj/machinery/optable, +/obj/machinery/oxygen_pump/anesthetic{ + pixel_y = -32 + }, +/turf/simulated/shuttle/floor/white, +/area/centcom/evac) +"tSe" = ( +/turf/simulated/shuttle/wall/hard_corner, +/area/centcom/evac) +"tSs" = ( +/obj/machinery/door/airlock/hatch{ + req_access = list(150) + }, +/turf/unsimulated/floor{ + icon_state = "carpet" + }, +/area/shuttle/trade) +"tTj" = ( +/obj/structure/closet/crate/medical, +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/bodybag/cryobag{ + pixel_x = 5 + }, +/obj/item/bodybag/cryobag{ + pixel_x = 5 + }, +/obj/item/weapon/storage/firstaid/o2{ + layer = 2.8; + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/weapon/storage/box/masks, +/obj/item/weapon/storage/box/gloves{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/item/weapon/storage/firstaid/toxin, +/obj/item/weapon/storage/firstaid/fire{ + layer = 2.9; + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/weapon/storage/firstaid/adv{ + pixel_x = -2 + }, +/obj/item/weapon/reagent_containers/blood/empty, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OMinus, +/turf/simulated/shuttle/floor/white, +/area/shuttle/escape/centcom) +"tTz" = ( +/obj/structure/table/steel_reinforced, +/obj/item/clothing/suit/hgpirate, +/obj/item/clothing/suit/imperium_monk, +/obj/item/clothing/suit/leathercoat, +/obj/item/clothing/suit/justice, +/obj/item/clothing/suit/justice, +/obj/item/clothing/suit/justice, +/obj/item/clothing/suit/justice, +/obj/item/clothing/suit/justice, +/obj/item/clothing/suit/pirate, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"tTN" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/gloves/yellow, +/obj/item/clothing/gloves/yellow, +/obj/item/clothing/gloves/yellow{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/clothing/gloves/yellow{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/weapon/storage/belt/utility/full, +/obj/item/weapon/storage/belt/utility/full, +/obj/item/weapon/storage/belt/utility/full{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/belt/utility/full{ + pixel_x = 4; + pixel_y = 4 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/techfloor.dmi'; + icon_state = "techfloor_gray" + }, +/area/centcom/specops) +"tUc" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-10" + }, +/turf/simulated/floor/carpet, +/area/shuttle/merchant/home) +"tUq" = ( +/obj/item/weapon/bedsheet/orange, +/obj/structure/bed/padded, +/turf/simulated/shuttle/floor/red, +/area/skipjack_station/start) +"tUu" = ( +/obj/effect/floor_decal/carpet, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_meetinghall) +"tUV" = ( +/obj/structure/table/rack, +/obj/item/ammo_magazine/m762, +/obj/item/ammo_magazine/m762, +/obj/item/ammo_magazine/m762, +/obj/item/ammo_magazine/m762, +/obj/item/ammo_magazine/m762, +/obj/item/ammo_magazine/m762, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/centcom/specops) +"tVo" = ( +/obj/mecha/combat/marauder/mauler, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/syndicate_mothership/elite_squad) +"tVE" = ( +/obj/structure/toilet{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "freezerfloor" + }, +/area/ninja_dojo/dojo) +"tWC" = ( +/obj/effect/floor_decal/corner/red/full{ + dir = 1 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_emptycourt) +"tXe" = ( +/obj/structure/closet/crate/medical, +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/bodybag/cryobag{ + pixel_x = 5 + }, +/obj/item/bodybag/cryobag{ + pixel_x = 5 + }, +/obj/item/weapon/storage/firstaid/o2{ + layer = 2.8; + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/weapon/storage/box/masks, +/obj/item/weapon/storage/box/gloves{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/item/weapon/storage/firstaid/toxin, +/obj/item/weapon/storage/firstaid/fire{ + layer = 2.9; + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/weapon/storage/firstaid/adv{ + pixel_x = -2 + }, +/obj/item/weapon/reagent_containers/blood/empty, +/obj/item/weapon/reagent_containers/blood/empty, +/turf/simulated/shuttle/floor/white, +/area/centcom/evac) +"tXW" = ( +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_picnicarea) +"tYi" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OMinus, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/specops) +"tYq" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/shuttle/merchant/home) +"tZC" = ( +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/structure/holostool{ + dir = 4 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_meetinghall) +"uak" = ( +/obj/structure/table/standard, +/obj/item/device/defib_kit/loaded, +/obj/item/weapon/tool/wrench, +/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = -4 + }, +/turf/simulated/shuttle/floor/white, +/area/shuttle/escape/centcom) +"uav" = ( +/obj/structure/bed/chair/holochair{ + dir = 1 + }, +/obj/effect/floor_decal/carpet, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"uaD" = ( +/obj/structure/bed/chair/comfy/red{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/shuttle/floor/voidcraft, +/area/syndicate_station/start) +"uaS" = ( +/obj/effect/floor_decal/sign/small_d, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_chess) +"uaZ" = ( +/turf/simulated/shuttle/floor/voidcraft, +/area/syndicate_station/start) +"ubf" = ( +/obj/structure/bed/chair, +/turf/simulated/shuttle/floor, +/area/shuttle/transport1/centcom) +"ubh" = ( +/obj/effect/floor_decal/sign/small_8, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_chess) +"uca" = ( +/obj/effect/step_trigger/thrower{ + affect_ghosts = 1; + name = "thrower_throwdown"; + nostop = 1; + stopper = 0; + tiles = 0 + }, +/turf/space/transit/west, +/area/space) +"ucc" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_picnicarea) +"uch" = ( +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel_grid" + }, +/area/centcom/security) +"uct" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/box, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/specops) +"ucH" = ( +/obj/structure/shuttle/engine/propulsion, +/turf/simulated/shuttle/wall/dark/no_join, +/area/shuttle/arrival/pre_game) +"ucM" = ( +/obj/machinery/door/airlock/external{ + frequency = 1380; + icon_state = "door_locked"; + id_tag = "centcom_shuttle_hatch"; + locked = 1; + name = "Shuttle Hatch"; + req_access = list(13) + }, +/turf/simulated/shuttle/floor, +/area/shuttle/transport1/centcom) +"udk" = ( +/obj/machinery/door/airlock{ + icon = 'icons/obj/doors/Dooruranium.dmi' + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/ninja_dojo/dojo) +"uer" = ( +/obj/machinery/recharger, +/obj/structure/table/steel_reinforced, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/ninja_dojo/dojo) +"ues" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/pink/border{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "white" + }, +/area/centcom/medical) +"ueT" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/security) +"ufJ" = ( +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/shuttle/trade) +"uiD" = ( +/obj/structure/shuttle/engine/heater, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/shuttle/wall/dark/no_join, +/area/shuttle/supply) +"ujN" = ( +/obj/structure/table/standard, +/obj/item/weapon/towel, +/obj/item/weapon/towel, +/obj/item/weapon/towel, +/obj/item/weapon/towel, +/obj/random/soap, +/obj/random/soap, +/turf/unsimulated/floor{ + icon_state = "freezerfloor" + }, +/area/centcom/specops) +"uki" = ( +/turf/unsimulated/wall, +/area/prison/solitary) +"ukC" = ( +/obj/machinery/teleport/hub, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/syndicate_station/start) +"ukN" = ( +/obj/structure/sign/warning/secure_area, +/turf/simulated/shuttle/wall, +/area/shuttle/arrival/pre_game) +"ulh" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/accessory/stethoscope, +/obj/item/clothing/accessory/stethoscope, +/obj/item/clothing/accessory/stethoscope, +/obj/item/clothing/accessory/stethoscope, +/obj/item/clothing/accessory/stethoscope, +/obj/item/weapon/packageWrap, +/obj/item/weapon/hand_labeler, +/obj/item/weapon/reagent_containers/spray/cleaner, +/obj/item/weapon/reagent_containers/spray/cleaner, +/obj/item/weapon/reagent_containers/spray/sterilizine, +/obj/item/weapon/reagent_containers/spray/sterilizine, +/obj/item/device/flashlight/pen, +/obj/item/device/flashlight/pen, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/specops) +"unp" = ( +/obj/structure/table/reinforced, +/obj/item/bodybag/cryobag{ + pixel_x = -3 + }, +/obj/item/bodybag/cryobag{ + pixel_x = 6 + }, +/obj/item/bodybag/cryobag, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/specops) +"unV" = ( +/obj/machinery/atmospherics/unary/cryo_cell{ + layer = 3.3 + }, +/turf/simulated/shuttle/floor/black, +/area/centcom/evac) +"uoL" = ( +/turf/simulated/shuttle/wall, +/area/shuttle/transport1/centcom) +"uqp" = ( +/obj/structure/table/rack, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/suit/space/void/merc, +/obj/item/clothing/mask/gas/syndicate, +/obj/item/clothing/head/helmet/space/void/merc, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/syndicate_station) +"uqy" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 8; + icon_state = "burst_r" + }, +/turf/simulated/shuttle/wall/dark/hard_corner, +/area/shuttle/transport1/centcom) +"uqM" = ( +/obj/machinery/door/airlock/voidcraft{ + req_access = list(150) + }, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/syndicate_station/start) +"uru" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/firstaid/clotting{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/firstaid/clotting, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/specops) +"urG" = ( +/obj/effect/step_trigger/thrower{ + affect_ghosts = 1; + name = "thrower_throwdown"; + tiles = 0 + }, +/obj/effect/step_trigger/teleporter/random{ + affect_ghosts = 1; + name = "escapeshuttle_leave"; + teleport_x = 25; + teleport_x_offset = 245; + teleport_y = 25; + teleport_y_offset = 245; + teleport_z = 6; + teleport_z_offset = 6 + }, +/obj/effect/step_trigger/teleporter/random{ + affect_ghosts = 1; + name = "escapeshuttle_leave"; + teleport_x = 25; + teleport_x_offset = 245; + teleport_y = 25; + teleport_y_offset = 245; + teleport_z = 6; + teleport_z_offset = 6 + }, +/turf/simulated/mineral, +/area/space) +"usc" = ( +/obj/machinery/computer/shuttle_control{ + dir = 8; + name = "Beruang control console"; + req_access = list(160); + shuttle_tag = "Trade" + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/shuttle/trade) +"use" = ( +/obj/structure/sign/directions/medical{ + dir = 1; + pixel_y = -10 + }, +/turf/unsimulated/wall, +/area/centcom/terminal) +"usm" = ( +/obj/structure/closet/crate/medical, +/obj/item/weapon/storage/firstaid/surgery, +/obj/item/weapon/storage/firstaid/surgery{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/stack/nanopaste, +/obj/item/stack/nanopaste{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/weapon/tank/anesthetic, +/obj/item/weapon/tank/anesthetic{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/weapon/autopsy_scanner, +/obj/item/clothing/mask/breath/medical, +/obj/item/clothing/mask/breath/medical, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/specops) +"utc" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/security) +"utq" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4; + health = 1e+006 + }, +/obj/item/weapon/storage/belt/medical{ + pixel_x = -2; + pixel_y = -3 + }, +/obj/item/weapon/storage/belt/medical, +/obj/item/weapon/storage/belt/medical{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/belt/medical/emt{ + pixel_x = -2 + }, +/obj/item/weapon/storage/belt/medical/emt{ + pixel_y = 2 + }, +/obj/item/weapon/storage/belt/medical/emt{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/techfloor.dmi'; + icon_state = "techfloor_gray" + }, +/area/centcom/specops) +"uwu" = ( +/obj/structure/shuttle/engine/heater{ + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/simulated/shuttle/wall/dark/no_join, +/area/shuttle/escape/centcom) +"uwR" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 1e+006 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/specops) +"uyv" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/terminal) +"uzf" = ( +/obj/machinery/gibber, +/turf/unsimulated/floor{ + icon_state = "freezerfloor" + }, +/area/centcom/bar) +"uzu" = ( +/turf/unsimulated/wall, +/area/ninja_dojo/dojo) +"uAa" = ( +/obj/machinery/mech_recharger, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/centcom/specops) +"uAd" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 5 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 5 + }, +/obj/structure/flora/pottedplant/decorative, +/turf/simulated/floor/tiled/white, +/area/centcom/bar) +"uAk" = ( +/obj/machinery/vending/cigarette{ + name = "hacked cigarette machine"; + prices = list(); + products = list(/obj/item/weapon/storage/fancy/cigarettes = 10, /obj/item/weapon/storage/box/matches = 10, /obj/item/weapon/flame/lighter/zippo = 4, /obj/item/clothing/mask/smokable/cigarette/cigar/havana = 2) + }, +/turf/simulated/shuttle/floor/voidcraft, +/area/syndicate_station/start) +"uAD" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/box/flashbangs, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/specops) +"uAI" = ( +/obj/structure/bed/chair/shuttle{ + dir = 8 + }, +/obj/structure/closet/walllocker/emerglocker{ + pixel_x = 32 + }, +/obj/effect/landmark{ + name = "JoinLate" + }, +/turf/simulated/shuttle/floor/white, +/area/shuttle/arrival/pre_game) +"uAX" = ( +/obj/machinery/the_singularitygen, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/wizard_station) +"uBy" = ( +/obj/machinery/portable_atmospherics/canister/phoron, +/obj/item/weapon/tank/vox, +/turf/unsimulated/floor{ + icon_state = "asteroid" + }, +/area/skipjack_station) +"uBX" = ( +/obj/effect/wingrille_spawn/reinforced/crescent, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/centcom/specops) +"uCr" = ( +/obj/structure/closet{ + name = "Prisoner's Locker" + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 9 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/security) +"uCF" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/wizard_station) +"uDp" = ( +/obj/machinery/door/airlock/centcom{ + name = "General Access"; + req_access = list(101) + }, +/obj/machinery/door/blast/regular{ + id = "CREED"; + name = "Ready Room" + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel_grid" + }, +/area/centcom/command) +"uES" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 8; + icon_state = "shutter0"; + id = "tradeportshutters"; + name = "Blast Shutters"; + opacity = 0 + }, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced/full, +/turf/simulated/shuttle/plating, +/area/shuttle/merchant/home) +"uFi" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 9 + }, +/turf/simulated/floor/holofloor/lino, +/area/holodeck/source_meetinghall) +"uFD" = ( +/obj/machinery/computer/shuttle_control/multi/administration, +/turf/simulated/shuttle/floor/red, +/area/shuttle/administration/centcom) +"uGg" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/blast/regular{ + id = "skipjackshutters"; + name = "Skipjack Blast Shielding" + }, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"uHS" = ( +/obj/structure/bed/chair/comfy/red{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/shuttle/floor/voidcraft, +/area/syndicate_station/start) +"uIh" = ( +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_thunderdomecourt) +"uIW" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/shuttle/floor/voidcraft, +/area/syndicate_station/start) +"uJz" = ( +/obj/effect/floor_decal/sign/small_a, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_chess) +"uJJ" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/paper_bin, +/obj/item/weapon/pen, +/obj/item/device/radio/intercom{ + desc = "Talk through this. Evilly"; + dir = 8; + frequency = 1213; + name = "Subversive Intercom"; + pixel_x = -32; + subspace_transmission = 1; + syndie = 1 + }, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/wizard_station) +"uJQ" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/green, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/skipjack_station) +"uKb" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 8; + icon_state = "shutter0"; + id = "syndieshutters"; + name = "Blast Shutters"; + opacity = 0 + }, +/obj/structure/window/reinforced/full, +/turf/simulated/shuttle/plating, +/area/syndicate_station/start) +"uKm" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/bar) +"uLb" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/main_hall) +"uLm" = ( +/obj/structure/table/steel_reinforced, +/obj/item/rig_module/mounted/energy_blade, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/ninja_dojo/dojo) +"uLU" = ( +/obj/machinery/door/airlock/external{ + frequency = 1331; + icon_state = "door_locked"; + id_tag = "trade2_shuttle_inner"; + locked = 1; + name = "Ship Hatch"; + req_access = list(13) + }, +/obj/machinery/atmospherics/pipe/simple/visible, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"uLV" = ( +/obj/machinery/turretid{ + pixel_x = -28; + pixel_y = -28; + req_access = list(101) + }, +/obj/structure/table/reinforced, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/main_hall) +"uOH" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/newscaster{ + pixel_x = 32 + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"uOQ" = ( +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/paleblue/bordercorner, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/main_hall) +"uPa" = ( +/obj/structure/table/rack, +/obj/item/ammo_magazine/m10mm, +/obj/item/ammo_magazine/m10mm, +/obj/item/ammo_magazine/m10mm, +/obj/item/ammo_magazine/m10mm, +/obj/item/ammo_magazine/m10mm, +/obj/item/ammo_magazine/m10mm, +/obj/item/weapon/gun/projectile/automatic/c20r, +/obj/item/weapon/gun/projectile/automatic/c20r, +/obj/item/weapon/gun/projectile/automatic/c20r, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/syndicate_station) +"uPn" = ( +/obj/machinery/turretid{ + pixel_y = 32; + req_access = list(150) + }, +/turf/simulated/shuttle/floor/voidcraft, +/area/syndicate_station/start) +"uQC" = ( +/obj/effect/step_trigger/thrower{ + affect_ghosts = 1; + direction = 4; + name = "thrower_throwwest"; + nostop = 1; + stopper = 0; + tiles = 0 + }, +/obj/effect/step_trigger/thrower{ + affect_ghosts = 1; + direction = 4; + name = "thrower_throweast"; + nostop = 1; + stopper = 0; + tiles = 0 + }, +/turf/space/transit/east, +/area/space) +"uQV" = ( +/obj/machinery/porta_turret/crescent, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/command) +"uRu" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 1 + }, +/turf/simulated/shuttle/plating/airless/carry, +/area/ninja_dojo/start) +"uRB" = ( +/obj/machinery/computer/communications{ + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/centcom/command) +"uRP" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/gun/energy/ionrifle/pistol, +/obj/item/weapon/gun/energy/ionrifle/pistol, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/techfloor.dmi'; + icon_state = "techfloor_gray" + }, +/area/centcom/specops) +"uSh" = ( +/obj/structure/table/steel, +/obj/item/weapon/material/knife{ + pixel_x = -6 + }, +/obj/item/weapon/reagent_containers/syringe/drugs{ + pixel_x = 3; + pixel_y = 9 + }, +/obj/item/weapon/reagent_containers/syringe/drugs{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/item/weapon/reagent_containers/syringe/drugs{ + pixel_x = 3; + pixel_y = -1 + }, +/turf/simulated/shuttle/floor/voidcraft, +/area/syndicate_station/start) +"uSn" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/firstaid/toxin{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/weapon/storage/firstaid/toxin, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "white" + }, +/area/centcom/medical) +"uTx" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/shuttle/floor/red, +/area/shuttle/escape/centcom) +"uTz" = ( +/obj/structure/bed/chair/comfy/red{ + dir = 4 + }, +/turf/simulated/shuttle/floor/voidcraft, +/area/syndicate_station/start) +"uUA" = ( +/obj/item/clothing/glasses/hud/health{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/clothing/glasses/hud/health{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/obj/structure/table/rack, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/techfloor.dmi'; + icon_state = "techfloor_gray" + }, +/area/centcom/specops) +"uUH" = ( +/obj/structure/bed/chair/comfy/red{ + dir = 8 + }, +/turf/simulated/shuttle/floor/voidcraft, +/area/syndicate_station/start) +"uVK" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 2 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel_grid" + }, +/area/centcom/medical) +"uWn" = ( +/obj/structure/closet/emcloset, +/obj/item/device/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_x = 21 + }, +/turf/simulated/shuttle/floor/white, +/area/shuttle/arrival/pre_game) +"uWu" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/main_hall) +"uWM" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/shuttle/plating, +/area/centcom/evac) +"uXK" = ( +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet{ + dir = 10 + }, +/obj/effect/floor_decal/carpet{ + dir = 6 + }, +/turf/unsimulated/floor{ + icon_state = "carpet" + }, +/area/skipjack_station) +"uYi" = ( +/obj/machinery/shield_gen, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/techfloor.dmi'; + icon_state = "techfloor_gray" + }, +/area/centcom/specops) +"uYO" = ( +/obj/machinery/shield_gen/external, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/techfloor.dmi'; + icon_state = "techfloor_gray" + }, +/area/centcom/specops) +"vaE" = ( +/obj/machinery/turretid{ + pixel_x = -32; + req_access = list(150) + }, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/syndicate_station/start) +"vaV" = ( +/mob/living/simple_mob/animal/passive/cat/kitten{ + name = "Enola" + }, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/syndicate_station/start) +"vbt" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/bar) +"vcK" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 10 + }, +/turf/simulated/floor/holofloor/lino, +/area/holodeck/source_meetinghall) +"vcS" = ( +/turf/simulated/shuttle/plating, +/area/shuttle/large_escape_pod1/centcom) +"vfj" = ( +/turf/simulated/shuttle/floor{ + icon_state = "floor_red" + }, +/area/shuttle/arrival/pre_game) +"vft" = ( +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_boxingcourt) +"vfW" = ( +/obj/structure/flora/ausbushes/brflowers, +/obj/effect/floor_decal/spline/fancy/wood/corner, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_picnicarea) +"vgW" = ( +/obj/machinery/computer/operating{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/shuttle/floor/white, +/area/centcom/evac) +"vhz" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/main_hall) +"vis" = ( +/obj/effect/decal/cleanable/cobweb2{ + icon_state = "spiderling"; + name = "dead spider" + }, +/turf/unsimulated/floor{ + icon_state = "steel_dirty" + }, +/area/skipjack_station) +"viE" = ( +/obj/structure/bed/chair/comfy/black, +/turf/simulated/shuttle/floor/black, +/area/centcom/evac) +"viV" = ( +/obj/structure/table/steel_reinforced, +/obj/item/rig_module/fabricator/energy_net, +/obj/item/rig_module/vision/multi, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/ninja_dojo/dojo) +"vjn" = ( +/obj/machinery/cell_charger, +/obj/structure/table/reinforced, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/shuttle/floor/red, +/area/shuttle/administration/centcom) +"vjy" = ( +/obj/machinery/door/blast/regular{ + dir = 4; + id = "syndieshutters_telebay"; + name = "Outer Airlock" + }, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/syndicate_station/start) +"vjD" = ( +/obj/structure/table/standard, +/turf/simulated/shuttle/floor/black, +/area/centcom/evac) +"vjU" = ( +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/green/bordercorner, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/terminal) +"vjY" = ( +/obj/structure/closet/walllocker/emerglocker{ + pixel_y = -32 + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"vkR" = ( +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/shuttle/trade) +"vle" = ( +/obj/item/device/suit_cooling_unit, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/ninja_dojo/dojo) +"vlH" = ( +/turf/unsimulated/wall, +/area/centcom/command) +"vmi" = ( +/obj/structure/bed/chair/comfy/red{ + dir = 4 + }, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/syndicate_station/start) +"vmq" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/medical) +"vmH" = ( +/obj/machinery/computer/message_monitor, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/wizard_station) +"vnu" = ( +/obj/machinery/power/emitter, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/techfloor.dmi'; + icon_state = "techfloor_gray" + }, +/area/centcom/specops) +"vnJ" = ( +/obj/effect/floor_decal/asteroid, +/turf/unsimulated/floor{ + icon = 'icons/turf/snow_new.dmi'; + icon_state = "snow"; + name = "snow" + }, +/area/ninja_dojo/dojo) +"voj" = ( +/obj/structure/table/woodentable, +/obj/item/clothing/shoes/boots/workboots, +/obj/item/clothing/under/technomancer, +/obj/item/clothing/head/technomancer, +/obj/item/weapon/storage/box/syndie_kit/chameleon, +/obj/item/weapon/storage/box/syndie_kit/chameleon, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/wizard_station) +"voy" = ( +/obj/effect/wingrille_spawn/reinforced/crescent, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/plating.dmi'; + icon_state = "plating"; + name = "plating" + }, +/area/centcom/security) +"vpq" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/shuttle/floor, +/area/shuttle/supply) +"vpD" = ( +/obj/structure/table/bench/padded, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/main_hall) +"vqj" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/shuttle/floor, +/area/shuttle/arrival/pre_game) +"vqL" = ( +/obj/structure/table/reinforced, +/obj/machinery/photocopier/faxmachine, +/obj/structure/window/reinforced, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/centcom/command) +"vrh" = ( +/obj/item/weapon/storage/box/donkpockets{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/structure/table/marble, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/wizard_station) +"vrl" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/structure/largecrate/animal/corgi, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"vry" = ( +/obj/machinery/portable_atmospherics/powered/scrubber, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/techfloor.dmi'; + icon_state = "techfloor_gray" + }, +/area/centcom/specops) +"vsd" = ( +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/wizard_station) +"vtk" = ( +/obj/item/weapon/paper_bin, +/obj/item/weapon/pen, +/obj/structure/table/reinforced, +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/security) +"vty" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/brown, +/turf/unsimulated/floor{ + icon_state = "carpet" + }, +/area/shuttle/trade) +"vtF" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "white" + }, +/area/centcom/medical) +"vtH" = ( +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_thunderdomecourt) +"vtI" = ( +/obj/machinery/teleport/hub, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/shuttle/plating, +/area/ninja_dojo/start) +"vuY" = ( +/obj/machinery/telecomms/allinone{ + intercept = 1 + }, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/syndicate_station/start) +"vwm" = ( +/obj/effect/wingrille_spawn/reinforced/crescent, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/plating.dmi'; + icon_state = "plating"; + name = "plating" + }, +/area/centcom/specops) +"vxa" = ( +/obj/structure/closet/crate, +/obj/item/clothing/gloves/vox, +/obj/item/clothing/gloves/vox, +/obj/item/clothing/gloves/vox, +/obj/item/clothing/gloves/vox, +/obj/item/clothing/gloves/vox, +/obj/item/clothing/gloves/vox, +/obj/item/clothing/shoes/magboots/vox, +/obj/item/clothing/shoes/magboots/vox, +/obj/item/clothing/shoes/magboots/vox, +/obj/item/clothing/shoes/magboots/vox, +/obj/item/clothing/shoes/magboots/vox, +/obj/item/clothing/shoes/magboots/vox, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/skipjack_station) +"vxl" = ( +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 6 + }, +/obj/structure/holostool{ + dir = 4 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_meetinghall) +"vxA" = ( +/obj/effect/floor_decal/borderfloorblack/corner{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/danger/corner{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/main_hall) +"vyi" = ( +/obj/structure/table/woodentable/holotable, +/obj/structure/window/reinforced/holowindow{ + dir = 4 + }, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_courtroom) +"vyH" = ( +/obj/item/toy/chess/queen_black, +/turf/simulated/floor/holofloor/bmarble, +/area/holodeck/source_chess) +"vyM" = ( +/obj/machinery/computer/crew{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/wizard_station) +"vzY" = ( +/obj/structure/table/rack, +/obj/item/weapon/storage/belt/utility/full, +/obj/item/device/multitool, +/obj/machinery/light/small, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/syndicate_station/start) +"vAB" = ( +/obj/effect/decal/cleanable/cobweb2{ + icon_state = "cobweb1" + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/skipjack_station) +"vBc" = ( +/obj/structure/showcase{ + desc = "So that's how the shuttle moves on its own."; + icon = 'icons/mob/AI.dmi'; + icon_state = "ai-red"; + name = "Arrivals Announcement Computer" + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_red" + }, +/area/shuttle/arrival/pre_game) +"vBH" = ( +/obj/effect/step_trigger/thrower{ + affect_ghosts = 1; + direction = 1; + name = "thrower_throwup"; + nostop = 1; + stopper = 0; + tiles = 0 + }, +/turf/space/transit/east, +/area/space) +"vCc" = ( +/turf/unsimulated/floor{ + icon_state = "sandwater" + }, +/area/beach) +"vCL" = ( +/obj/structure/table/steel, +/obj/item/clothing/glasses/regular, +/obj/item/clothing/glasses/regular, +/turf/simulated/shuttle/floor/darkred, +/area/skipjack_station/start) +"vDV" = ( +/obj/effect/wingrille_spawn/reinforced/crescent, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/plating.dmi'; + icon_state = "plating"; + name = "plating" + }, +/area/centcom/creed) +"vEO" = ( +/obj/machinery/teleport/hub, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/wizard_station) +"vFe" = ( +/obj/structure/bed/chair/comfy/teal{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "carpet" + }, +/area/centcom/command) +"vFx" = ( +/obj/machinery/portable_atmospherics/powered/pump/filled, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/techfloor.dmi'; + icon_state = "techfloor_gray" + }, +/area/centcom/specops) +"vFy" = ( +/obj/machinery/portable_atmospherics/canister/air, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/techfloor.dmi'; + icon_state = "techfloor_gray" + }, +/area/centcom/specops) +"vGC" = ( +/obj/machinery/light, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"vGH" = ( +/obj/machinery/teleport/station, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/ninja_dojo/dojo) +"vHz" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/security) +"vIw" = ( +/obj/machinery/mech_recharger, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/syndicate_mothership/elite_squad) +"vJE" = ( +/obj/structure/table/steel_reinforced, +/obj/random/contraband, +/obj/random/contraband, +/obj/random/contraband, +/obj/random/contraband, +/obj/random/contraband, +/obj/random/contraband, +/obj/item/weapon/bikehorn, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"vJH" = ( +/obj/item/weapon/firstaid_arm_assembly, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/wizard_station) +"vKg" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 5 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 5 + }, +/obj/structure/closet{ + name = "Evidence Closet" + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/security) +"vKY" = ( +/obj/structure/table/standard, +/obj/item/weapon/surgical/circular_saw{ + pixel_y = 8 + }, +/obj/item/weapon/surgical/scalpel, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/pink/border{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "white" + }, +/area/centcom/medical) +"vMn" = ( +/obj/structure/table/steel_reinforced, +/turf/simulated/shuttle/floor/darkred, +/area/skipjack_station/start) +"vMI" = ( +/obj/machinery/shieldwallgen, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/techfloor.dmi'; + icon_state = "techfloor_gray" + }, +/area/centcom/specops) +"vMJ" = ( +/obj/machinery/atmospherics/unary/cryo_cell, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/syndicate_station/start) +"vMS" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "white" + }, +/area/centcom/medical) +"vNz" = ( +/obj/item/weapon/extinguisher, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome) +"vNO" = ( +/obj/machinery/shieldgen, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/techfloor.dmi'; + icon_state = "techfloor_gray" + }, +/area/centcom/specops) +"vNY" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_picnicarea) +"vOF" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 10 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/security) +"vPk" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/terminal) +"vPo" = ( +/obj/machinery/vending/medical{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/techfloor.dmi'; + icon_state = "techfloor_gray" + }, +/area/centcom/specops) +"vPL" = ( +/obj/machinery/vending/assist{ + contraband = null; + name = "AntagCorpVend"; + products = list(/obj/item/device/assembly/prox_sensor = 5, /obj/item/device/assembly/signaler = 4, /obj/item/device/assembly/infra = 4, /obj/item/device/assembly/prox_sensor = 4, /obj/item/weapon/handcuffs = 8, /obj/item/device/flash = 4, /obj/item/weapon/cartridge/signal = 4, /obj/item/clothing/glasses/sunglasses = 4) + }, +/turf/simulated/shuttle/floor/voidcraft, +/area/syndicate_station/start) +"vPM" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 8; + icon_state = "shutter0"; + id = "syndieshutters"; + name = "Blast Shutters"; + opacity = 0 + }, +/obj/structure/window/reinforced/full, +/turf/simulated/shuttle/plating, +/area/syndicate_station/start) +"vQy" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/main_hall) +"vRa" = ( +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_meetinghall) +"vRp" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/iv_drip, +/turf/simulated/shuttle/floor/white, +/area/centcom/evac) +"vRB" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/machinery/light/small, +/turf/simulated/shuttle/floor/white, +/area/shuttle/merchant/home) +"vRJ" = ( +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet{ + dir = 10 + }, +/obj/effect/floor_decal/carpet{ + dir = 6 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_theatre) +"vSV" = ( +/obj/effect/landmark{ + name = "Syndicate-Commando" + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/syndicate_mothership/elite_squad) +"vTq" = ( +/obj/machinery/computer/station_alert, +/turf/simulated/shuttle/floor/darkred, +/area/skipjack_station/start) +"vTt" = ( +/obj/structure/table/steel_reinforced, +/obj/item/clothing/head/philosopher_wig, +/obj/item/device/radio/intercom{ + desc = "Talk through this. Evilly"; + dir = 4; + frequency = 1213; + name = "Subversive Intercom"; + pixel_x = 32; + subspace_transmission = 1; + syndie = 1 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/wizard_station) +"vTG" = ( +/obj/structure/window/reinforced/holowindow{ + dir = 4 + }, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_boxingcourt) +"vTL" = ( +/obj/structure/closet/wardrobe/white, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 9 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 9 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "white" + }, +/area/centcom/medical) +"vTW" = ( +/obj/machinery/door/morgue, +/turf/unsimulated/floor{ + icon_state = "freezerfloor" + }, +/area/ninja_dojo/dojo) +"vUG" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 6 + }, +/turf/simulated/shuttle/wall/voidcraft/red, +/area/syndicate_station/start) +"vUO" = ( +/obj/machinery/door/blast/regular{ + id = "ASSAULT"; + name = "Assault Armor Storage" + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/centcom/specops) +"vVq" = ( +/obj/structure/shuttle/engine/heater{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/shuttle/wall/dark/no_join, +/area/centcom/evac) +"vWd" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "cult"; + name = "plating" + }, +/area/skipjack_station) +"vWV" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/specops) +"vYZ" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/bar) +"vZC" = ( +/obj/item/weapon/rig/light/stealth, +/obj/structure/table/rack, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/ninja_dojo/dojo) +"waw" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/medical, +/turf/simulated/shuttle/floor, +/area/centcom/evac) +"waS" = ( +/obj/machinery/computer/power_monitor, +/obj/structure/window/reinforced{ + dir = 1; + health = 1e+006 + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/centcom/command) +"wbu" = ( +/obj/effect/floor_decal/corner/red/full{ + dir = 4 + }, +/obj/structure/table/holotable, +/obj/machinery/readybutton, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_thunderdomecourt) +"wbD" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "tradeportshutters"; + name = "Blast Shutters"; + opacity = 0 + }, +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced/full, +/turf/simulated/shuttle/plating, +/area/shuttle/merchant/home) +"wbS" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 5 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + desc = "Talk through this. Evilly"; + dir = 8; + frequency = 1213; + name = "Subversive Intercom"; + pixel_x = -32; + subspace_transmission = 1; + syndie = 1 + }, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/syndicate_station/start) +"wcv" = ( +/obj/effect/step_trigger/thrower{ + affect_ghosts = 1; + name = "thrower_throwdown"; + tiles = 0 + }, +/turf/space, +/area/space) +"wcx" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/main_hall) +"wdn" = ( +/obj/machinery/computer/crew{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/centcom/command) +"wdr" = ( +/obj/structure/closet/crate, +/obj/item/clothing/under/vox/vox_casual, +/obj/item/clothing/under/vox/vox_casual, +/obj/item/clothing/under/vox/vox_casual, +/obj/item/clothing/under/vox/vox_robes, +/obj/item/clothing/under/vox/vox_robes, +/obj/item/clothing/under/vox/vox_robes, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/skipjack_station) +"wdP" = ( +/turf/simulated/shuttle/wall/hard_corner, +/area/shuttle/supply) +"wdS" = ( +/obj/effect/floor_decal/borderfloorblack/corner, +/obj/effect/floor_decal/industrial/danger/corner, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/main_hall) +"wej" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/pinpointer/advpinpointer, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/specops) +"wer" = ( +/turf/unsimulated/wall{ + desc = "That looks like it doesn't open easily."; + dir = 8; + icon = 'icons/obj/doors/rapid_pdoor.dmi'; + icon_state = "pdoor1"; + name = "Shuttle Bay Blast Door" + }, +/area/centcom/specops) +"wfp" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/main_hall) +"wfT" = ( +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/centcom/command) +"wfW" = ( +/obj/effect/step_trigger/thrower{ + affect_ghosts = 1; + name = "thrower_throwdown"; + nostop = 1; + stopper = 0; + tiles = 0 + }, +/turf/space/transit/east, +/area/space) +"wgl" = ( +/obj/effect/floor_decal/techfloor{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/techfloor.dmi'; + icon_state = "techfloor_grid" + }, +/area/centcom/terminal) +"wgn" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "ninjawindow"; + name = "Blast Shutters"; + opacity = 0 + }, +/turf/simulated/shuttle/plating, +/area/ninja_dojo/start) +"wgp" = ( +/obj/structure/table/standard, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/tdome/tdome2) +"wha" = ( +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/creed) +"whz" = ( +/obj/machinery/shield_capacitor, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/techfloor.dmi'; + icon_state = "techfloor_gray" + }, +/area/centcom/specops) +"whC" = ( +/obj/machinery/bodyscanner{ + dir = 4 + }, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/syndicate_station/start) +"wie" = ( +/obj/effect/shuttle_landmark/cynosure/escape_pod1/transit, +/turf/space/transit/north, +/area/shuttle/escape_pod1/transit) +"wiL" = ( +/obj/item/toy/chess/knight_black, +/turf/simulated/floor/holofloor/wmarble, +/area/holodeck/source_chess) +"wiM" = ( +/obj/machinery/computer/rdservercontrol{ + badmin = 1; + dir = 8; + name = "Master R&D Server Controller" + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/main_hall) +"wiN" = ( +/obj/structure/bed/chair/holochair{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/structure/window/reinforced/holowindow{ + dir = 4 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"wja" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/main_hall) +"wjf" = ( +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_picnicarea) +"wjq" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/warning, +/obj/item/device/kit/paint/gygax/darkgygax, +/obj/item/device/kit/paint/gygax/recitence, +/obj/item/device/kit/paint/durand, +/obj/item/device/kit/paint/durand/phazon, +/obj/item/device/kit/paint/durand/seraph, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"wjG" = ( +/obj/machinery/computer/security{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/centcom/command) +"wjT" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 4 + }, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/syndicate_station/start) +"wkC" = ( +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_boxingcourt) +"wkQ" = ( +/obj/structure/closet/secure_closet/medical_wall{ + pixel_y = 32; + req_access = list(150) + }, +/obj/item/bodybag, +/obj/item/weapon/reagent_containers/syringe/antiviral, +/obj/item/weapon/reagent_containers/syringe/antiviral, +/obj/item/weapon/reagent_containers/syringe/antiviral, +/obj/item/weapon/reagent_containers/glass/bottle/antitoxin{ + pixel_x = -4; + pixel_y = 8 + }, +/obj/item/weapon/reagent_containers/glass/bottle/inaprovaline{ + pixel_x = 4; + pixel_y = 7 + }, +/obj/item/weapon/reagent_containers/syringe, +/obj/item/weapon/storage/firstaid/combat, +/obj/item/weapon/storage/firstaid/clotting, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/syndicate_station/start) +"wlf" = ( +/obj/structure/flora/ausbushes/brflowers, +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 1 + }, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_picnicarea) +"wmh" = ( +/obj/item/weapon/extinguisher, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/techfloor.dmi'; + icon_state = "techfloor_gray" + }, +/area/centcom/specops) +"wnf" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/item/weapon/rig/ert/engineer{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/weapon/rig/ert/engineer, +/obj/item/weapon/rig/ert/engineer{ + pixel_x = 2; + pixel_y = 2 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/techfloor.dmi'; + icon_state = "techfloor_gray" + }, +/area/centcom/specops) +"wnH" = ( +/obj/structure/table/steel_reinforced, +/obj/random/firstaid, +/obj/random/firstaid, +/obj/random/firstaid, +/obj/random/firstaid, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"wnS" = ( +/obj/item/trash/cigbutt, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/syndicate_station/start) +"woe" = ( +/obj/machinery/oxygen_pump/mobile/stabilizer, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/techfloor.dmi'; + icon_state = "techfloor_gray" + }, +/area/centcom/specops) +"woU" = ( +/obj/machinery/door/window/northleft{ + name = "Cargo Hold"; + req_access = list(160) + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"wpb" = ( +/obj/structure/frame/computer{ + dir = 1 + }, +/turf/simulated/shuttle/floor/voidcraft, +/area/syndicate_station/start) +"wpt" = ( +/obj/structure/frame/computer{ + dir = 1 + }, +/obj/machinery/light, +/turf/simulated/shuttle/floor/voidcraft, +/area/syndicate_station/start) +"wpL" = ( +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/medical) +"wqa" = ( +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"wqh" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/terminal) +"wqm" = ( +/obj/machinery/door/airlock/centcom{ + name = "General Access" + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/techfloor.dmi'; + icon_state = "techfloor_gray" + }, +/area/centcom/terminal) +"wqw" = ( +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"wrb" = ( +/obj/item/weapon/tank/vox, +/turf/unsimulated/floor{ + icon_state = "asteroid" + }, +/area/skipjack_station) +"wrA" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/orange, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/wood.dmi'; + icon_state = "wood_broken1" + }, +/area/skipjack_station) +"wsc" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/main_hall) +"wug" = ( +/obj/machinery/status_display{ + layer = 4; + pixel_y = 32 + }, +/obj/structure/table/steel_reinforced, +/obj/item/weapon/gun/energy/laser/practice, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/wizard_station) +"wux" = ( +/obj/structure/table/marble, +/obj/item/weapon/reagent_containers/food/drinks/glass2/square, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/bar) +"wuD" = ( +/obj/random/energy, +/turf/unsimulated/floor{ + icon_state = "steel_dirty" + }, +/area/virtual_reality) +"wuR" = ( +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_emptycourt) +"wvp" = ( +/obj/structure/closet/wardrobe/black, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/shuttle/trade) +"wvu" = ( +/obj/machinery/atmospherics/unary/freezer{ + dir = 4 + }, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/syndicate_station/start) +"wvQ" = ( +/obj/machinery/smartfridge, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/centcom/bar) +"wwH" = ( +/obj/structure/table/steel, +/obj/item/weapon/storage/firstaid/surgery, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/syndicate_station/start) +"wyq" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/wizard_station) +"wBb" = ( +/obj/item/toy/chess/rook_black, +/turf/simulated/floor/holofloor/bmarble, +/area/holodeck/source_chess) +"wBN" = ( +/obj/structure/closet/wardrobe/pjs, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"wCB" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/terminal) +"wDu" = ( +/obj/structure/table/woodentable, +/obj/item/device/radio/headset, +/obj/item/weapon/spacecash/c500, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/wizard_station) +"wEC" = ( +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_emptycourt) +"wEP" = ( +/obj/structure/table/steel_reinforced, +/obj/item/rig_module/chem_dispenser/ninja, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/ninja_dojo/dojo) +"wFE" = ( +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_theatre) +"wFL" = ( +/turf/space/transit/west, +/area/space) +"wFZ" = ( +/obj/machinery/door/airlock/security{ + name = "Equipment Storage"; + req_access = list(2) + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/security) +"wGm" = ( +/obj/structure/table/steel, +/obj/item/weapon/storage/firstaid/o2{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/storage/firstaid/regular, +/obj/machinery/atmospherics/pipe/manifold/visible, +/obj/item/weapon/storage/firstaid/fire, +/obj/item/weapon/storage/firstaid/toxin, +/obj/item/weapon/storage/firstaid/adv, +/obj/item/weapon/storage/firstaid/clotting, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/syndicate_station/start) +"wGD" = ( +/obj/structure/flora/ausbushes/brflowers, +/obj/structure/flora/ausbushes/ppflowers, +/turf/unsimulated/floor{ + icon_state = "grass0"; + name = "grass" + }, +/area/centcom/main_hall) +"wGI" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + id_tag = "supply_shuttle"; + pixel_x = 25; + req_one_access = list(13,31); + tag_door = "supply_shuttle_hatch" + }, +/obj/effect/shuttle_landmark/cynosure/supply_offsite, +/turf/simulated/shuttle/floor, +/area/shuttle/supply) +"wGX" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table/rack, +/obj/item/clothing/glasses/night{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/clothing/glasses/night{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/clothing/glasses/night{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/clothing/glasses/night{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/clothing/glasses/sunglasses/sechud/tactical{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/clothing/glasses/sunglasses/sechud/tactical{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/clothing/glasses/sunglasses/sechud/tactical{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/clothing/glasses/sunglasses/sechud/tactical{ + pixel_x = -2; + pixel_y = -2 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/techfloor.dmi'; + icon_state = "techfloor_gray" + }, +/area/centcom/specops) +"wHb" = ( +/obj/machinery/door/blast/regular{ + id = "CREED"; + name = "Ready Room" + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/techfloor.dmi'; + icon_state = "techfloor_gray" + }, +/area/centcom/terminal) +"wHj" = ( +/obj/effect/floor_decal/corner/white{ + dir = 6 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/terminal) +"wHt" = ( +/obj/machinery/power/port_gen/pacman, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/wizard_station) +"wHy" = ( +/obj/structure/table/woodentable/holotable, +/obj/structure/window/reinforced/holowindow, +/obj/structure/window/reinforced/holowindow{ + dir = 4 + }, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_courtroom) +"wHz" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/table/steel_reinforced, +/obj/machinery/cell_charger, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/ninja_dojo/start) +"wHH" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad2" + }, +/obj/machinery/door/airlock/external{ + frequency = 1380; + icon_state = "door_locked"; + id_tag = "supply_shuttle_hatch"; + locked = 1; + name = "Shuttle Hatch"; + req_access = list(13) + }, +/turf/simulated/shuttle/plating, +/area/shuttle/supply) +"wHK" = ( +/obj/structure/table/woodentable, +/obj/machinery/status_display{ + layer = 4; + pixel_y = 32 + }, +/obj/item/weapon/ore/slag{ + desc = "Well at least Arthur doesn't have to share now..."; + name = "pet rock" + }, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/wizard_station) +"wHN" = ( +/obj/machinery/door/blast/regular{ + id = "spawngreen"; + name = "Green Team Spawn" + }, +/turf/unsimulated/floor{ + icon_state = "steel_dirty" + }, +/area/virtual_reality) +"wHT" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/terminal) +"wIp" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/oxygen/prechilled, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/syndicate_station/start) +"wJs" = ( +/obj/machinery/door/airlock/hatch{ + frequency = 1331; + id_tag = "vox_northwest_lock"; + req_access = list(150) + }, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"wLi" = ( +/obj/effect/wingrille_spawn/reinforced/crescent, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/centcom/terminal) +"wLy" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/cell_charger, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/wizard_station) +"wLX" = ( +/turf/simulated/shuttle/plating, +/area/shuttle/escape_pod1/centcom) +"wMD" = ( +/obj/machinery/vending/hydroseeds, +/turf/unsimulated/floor{ + icon_state = "grass0"; + name = "grass" + }, +/area/wizard_station) +"wMI" = ( +/obj/structure/undies_wardrobe, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/shuttle/trade) +"wNd" = ( +/obj/structure/table/steel_reinforced, +/obj/item/organ/internal/stack, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/wizard_station) +"wNk" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4; + frequency = 1331; + id_tag = "vox_east_vent" + }, +/obj/machinery/light/small, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + frequency = 1331; + id_tag = "skipjack_shuttle"; + pixel_x = -24; + req_access = list(150); + tag_airpump = "vox_east_vent"; + tag_chamber_sensor = "vox_east_sensor"; + tag_exterior_door = "vox_northeast_lock"; + tag_interior_door = "vox_southeast_lock" + }, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"wNS" = ( +/obj/structure/table/wooden_reinforced, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/ninja_dojo/dojo) +"wOm" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table/steel_reinforced, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"wOt" = ( +/obj/structure/ore_box, +/turf/unsimulated/floor{ + icon_state = "asteroid" + }, +/area/skipjack_station) +"wOI" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/tool/crowbar, +/obj/item/weapon/tool/crowbar, +/obj/item/weapon/tool/crowbar, +/obj/item/weapon/tool/crowbar, +/obj/item/weapon/tool/crowbar, +/obj/item/weapon/tool/crowbar, +/obj/item/device/radio/off, +/obj/item/device/radio/off, +/obj/item/device/radio/off, +/obj/item/device/radio/off, +/obj/item/device/radio/off, +/obj/item/device/radio/off, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/specops) +"wPl" = ( +/obj/item/weapon/bucket_sensor, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/wizard_station) +"wPO" = ( +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_thunderdomecourt) +"wQj" = ( +/obj/effect/floor_decal/corner/green/full{ + dir = 4 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"wQv" = ( +/obj/structure/toilet{ + dir = 4 + }, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"wQJ" = ( +/obj/item/stack/material/glass{ + amount = 50 + }, +/turf/simulated/shuttle/floor/red, +/area/shuttle/administration/centcom) +"wQR" = ( +/obj/structure/closet/secure_closet/medical_wall/pills{ + pixel_y = 32 + }, +/obj/structure/table/glass, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/item/weapon/tool/wrench, +/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = 7; + pixel_y = 1 + }, +/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = -4 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "white" + }, +/area/centcom/medical) +"wRu" = ( +/obj/structure/table/woodentable, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/bar) +"wTz" = ( +/obj/structure/grille, +/obj/structure/shuttle/window, +/turf/simulated/shuttle/plating, +/area/shuttle/transport1/centcom) +"wUu" = ( +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_emptycourt) +"wUL" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/firstaid/combat{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/firstaid/combat, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/techfloor.dmi'; + icon_state = "techfloor_gray" + }, +/area/centcom/specops) +"wUM" = ( +/obj/structure/table/steel_reinforced, +/obj/item/device/pda/syndicate, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/ninja_dojo/start) +"wWb" = ( +/obj/structure/closet/secure_closet/freezer/kitchen{ + req_access = list(150) + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/syndicate_station) +"wXa" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/toolbox/electrical, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome) +"wXr" = ( +/obj/machinery/computer/crew{ + dir = 1 + }, +/turf/simulated/shuttle/floor, +/area/shuttle/escape/centcom) +"wXy" = ( +/obj/structure/table/glass, +/obj/item/stack/material/phoron{ + amount = 25 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "white" + }, +/area/centcom/medical) +"wYj" = ( +/obj/effect/floor_decal/corner/red/full{ + dir = 8 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_boxingcourt) +"wYp" = ( +/turf/space/transit/east, +/area/shuttle/large_escape_pod2/transit) +"wZn" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "white" + }, +/area/centcom/medical) +"wZE" = ( +/obj/effect/floor_decal/sign/small_b, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_chess) +"wZL" = ( +/obj/machinery/vending/hydroseeds, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"wZS" = ( +/obj/structure/table/rack, +/obj/item/weapon/pinpointer/shuttle/merc, +/obj/item/weapon/pinpointer/shuttle/merc, +/obj/item/weapon/pinpointer/shuttle/merc, +/obj/item/weapon/pinpointer/shuttle/merc, +/obj/item/weapon/pinpointer/shuttle/merc, +/obj/item/weapon/pinpointer/shuttle/merc, +/obj/item/weapon/shield/energy, +/obj/item/weapon/shield/energy, +/obj/item/weapon/shield/energy, +/obj/item/weapon/shield/energy, +/obj/item/weapon/shield/energy, +/obj/item/weapon/shield/energy, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/syndicate_station) +"wZT" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/shuttle/floor, +/area/shuttle/transport1/centcom) +"xbf" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + id_tag = "large_escape_pod_2_recovery"; + pixel_x = -25; + pixel_y = 25; + req_one_access = list(13); + tag_door = "large_escape_pod_2_recovery_hatch" + }, +/turf/simulated/shuttle/floor/yellow, +/area/centcom/evac) +"xbZ" = ( +/obj/structure/table/standard, +/obj/effect/decal/cleanable/cobweb2, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/skipjack_station) +"xcv" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/wizard_station) +"xcN" = ( +/obj/structure/table/standard, +/obj/item/device/flash, +/obj/item/device/flash, +/obj/item/weapon/reagent_containers/spray/pepper, +/obj/item/weapon/reagent_containers/spray/pepper, +/obj/item/clothing/glasses/sunglasses/sechud/tactical, +/obj/item/clothing/glasses/sunglasses, +/obj/item/clothing/glasses/sunglasses, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/shuttle/trade) +"xcQ" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/shuttle/plating, +/area/shuttle/merchant/home) +"xcR" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/green/border, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/terminal) +"xdd" = ( +/obj/structure/AIcore/deactivated, +/turf/simulated/shuttle/floor, +/area/shuttle/escape/centcom) +"xdf" = ( +/obj/machinery/door/airlock/glass_engineering{ + name = "Engineering"; + req_access = list(160) + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"xdr" = ( +/obj/machinery/iv_drip, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/pink/border{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "white" + }, +/area/centcom/medical) +"xds" = ( +/obj/item/stack/medical/ointment, +/obj/item/stack/medical/ointment, +/obj/item/stack/medical/ointment, +/obj/structure/table/standard, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome) +"xdw" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/terminal) +"xdM" = ( +/turf/unsimulated/floor{ + icon_state = "freezerfloor" + }, +/area/centcom/bar) +"xer" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/firstaid/fire{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/firstaid/fire, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/techfloor.dmi'; + icon_state = "techfloor_gray" + }, +/area/centcom/specops) +"xeL" = ( +/turf/simulated/shuttle/wall, +/area/shuttle/escape/centcom) +"xeP" = ( +/obj/machinery/computer/teleporter, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/wizard_station) +"xfC" = ( +/obj/item/clothing/head/xenos, +/turf/unsimulated/floor{ + icon_state = "asteroid" + }, +/area/skipjack_station) +"xgO" = ( +/obj/structure/flora/ausbushes/brflowers, +/turf/unsimulated/floor{ + icon_state = "grass0"; + name = "grass" + }, +/area/centcom/main_hall) +"xgX" = ( +/obj/structure/table/steel_reinforced, +/obj/item/toy/sword, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/wizard_station) +"xhJ" = ( +/obj/structure/window/reinforced, +/turf/simulated/shuttle/floor/white, +/area/centcom/evac) +"xid" = ( +/obj/machinery/dna_scannernew, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 6 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "white" + }, +/area/centcom/medical) +"xiD" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10 + }, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_picnicarea) +"xiF" = ( +/turf/simulated/shuttle/floor/white, +/area/shuttle/escape/centcom) +"xiN" = ( +/obj/structure/table/standard, +/obj/item/weapon/surgical/hemostat, +/obj/item/weapon/surgical/cautery, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 9 + }, +/obj/effect/floor_decal/corner/pink/border{ + dir = 9 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "white" + }, +/area/centcom/medical) +"xiP" = ( +/obj/effect/step_trigger/teleporter/random{ + affect_ghosts = 1; + name = "escapeshuttle_leave"; + teleport_x = 25; + teleport_x_offset = 245; + teleport_y = 25; + teleport_y_offset = 245; + teleport_z = 6; + teleport_z_offset = 6 + }, +/turf/space/transit/east, +/area/space) +"xjQ" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/firstaid/toxin{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/firstaid/toxin, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/techfloor.dmi'; + icon_state = "techfloor_gray" + }, +/area/centcom/specops) +"xjU" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/firstaid/adv{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/firstaid/adv, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/techfloor.dmi'; + icon_state = "techfloor_gray" + }, +/area/centcom/specops) +"xkU" = ( +/obj/effect/floor_decal/corner/green{ + dir = 6 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_boxingcourt) +"xlj" = ( +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 6 + }, +/obj/structure/holostool{ + dir = 8 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_theatre) +"xmN" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/main_hall) +"xmS" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"xnb" = ( +/obj/structure/table/glass, +/obj/item/clothing/mask/balaclava/tactical{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/clothing/mask/balaclava, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/ninja_dojo/dojo) +"xnv" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/firstaid/o2{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/firstaid/o2, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/techfloor.dmi'; + icon_state = "techfloor_gray" + }, +/area/centcom/specops) +"xnO" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/simulated/shuttle/floor/darkred, +/area/skipjack_station/start) +"xov" = ( +/obj/structure/table/holotable, +/obj/item/clothing/head/helmet/thunderdome, +/obj/item/clothing/under/color/red, +/obj/item/clothing/suit/armor/tdome/red, +/obj/item/weapon/holo/esword/red, +/obj/effect/floor_decal/corner/red{ + dir = 10 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_thunderdomecourt) +"xoy" = ( +/obj/structure/closet/crate/secure/weapon, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"xoE" = ( +/obj/machinery/computer/shuttle_control/emergency{ + dir = 1 + }, +/obj/machinery/light, +/turf/simulated/shuttle/floor, +/area/shuttle/escape/centcom) +"xpp" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/suit/wizrobe/marisa, +/obj/item/clothing/shoes/sandal/marisa, +/obj/item/clothing/head/wizard/marisa, +/obj/item/weapon/staff/broom, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/wizard_station) +"xpu" = ( +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_courtroom) +"xra" = ( +/obj/effect/floor_decal/borderfloorwhite/corner, +/obj/effect/floor_decal/corner/brown/bordercorner, +/turf/simulated/floor/tiled/white, +/area/centcom/bar) +"xrk" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/terminal) +"xrA" = ( +/obj/structure/table/reinforced, +/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/item/weapon/cell/device/weapon, +/obj/item/weapon/cell/device/weapon, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/techfloor.dmi'; + icon_state = "techfloor_gray" + }, +/area/centcom/specops) +"xsa" = ( +/obj/structure/table/standard, +/turf/simulated/shuttle/floor/red, +/area/shuttle/administration/centcom) +"xsq" = ( +/obj/structure/closet/crate/freezer/rations, +/turf/simulated/shuttle/floor/voidcraft, +/area/syndicate_station/start) +"xtc" = ( +/turf/simulated/shuttle/wall, +/area/centcom/evac) +"xtg" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/pink/border{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "white" + }, +/area/centcom/medical) +"xtK" = ( +/obj/effect/step_trigger/teleporter/random{ + affect_ghosts = 1; + name = "escapeshuttle_leave"; + teleport_x = 25; + teleport_x_offset = 245; + teleport_y = 25; + teleport_y_offset = 245; + teleport_z = 6; + teleport_z_offset = 6 + }, +/turf/space/transit/north, +/area/space) +"xui" = ( +/obj/effect/floor_decal/carpet{ + dir = 5 + }, +/obj/effect/floor_decal/carpet{ + dir = 6 + }, +/obj/effect/floor_decal/carpet{ + dir = 9 + }, +/obj/effect/floor_decal/carpet{ + dir = 10 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_meetinghall) +"xuX" = ( +/obj/machinery/door/airlock/external{ + icon_state = "door_locked"; + locked = 1 + }, +/obj/effect/forcefield{ + desc = "You can't get in. Heh."; + layer = 1; + name = "Blocker" + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/centcom/terminal) +"xvd" = ( +/obj/machinery/door/window/holowindoor{ + dir = 8 + }, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_thunderdomecourt) +"xvQ" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/firstaid/regular, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/techfloor.dmi'; + icon_state = "techfloor_gray" + }, +/area/centcom/specops) +"xxj" = ( +/obj/effect/landmark{ + name = "Holocarp Spawn Random" + }, +/turf/simulated/floor/holofloor/space, +/area/holodeck/source_space) +"xyf" = ( +/obj/effect/floor_decal/sign/small_e, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_chess) +"xyq" = ( +/obj/machinery/vending/wallmed1{ + name = "Emergency NanoMed"; + pixel_x = 28 + }, +/obj/structure/table/standard, +/obj/machinery/recharger, +/obj/item/weapon/tool/screwdriver, +/turf/simulated/shuttle/floor/white, +/area/centcom/evac) +"xyu" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + req_access = list(160) + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/shuttle/trade) +"xyO" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/lipstick/black, +/obj/item/weapon/lipstick/jade, +/obj/item/weapon/lipstick/purple, +/obj/item/weapon/lipstick, +/obj/item/weapon/lipstick/random, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"xyV" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 4 + }, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_picnicarea) +"xAh" = ( +/obj/structure/table/woodentable/holotable, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"xAp" = ( +/obj/structure/flora/grass/both, +/turf/simulated/floor/holofloor/snow, +/area/holodeck/source_snowfield) +"xAB" = ( +/obj/structure/table/rack, +/obj/item/weapon/tank/emergency/oxygen/double, +/obj/item/weapon/tank/emergency/oxygen/double, +/obj/item/weapon/tank/emergency/oxygen/double, +/obj/item/weapon/tank/emergency/oxygen/double, +/obj/item/weapon/tank/emergency/oxygen/double, +/obj/item/weapon/tank/emergency/oxygen/double, +/obj/item/weapon/tank/emergency/oxygen/double, +/obj/item/weapon/tank/emergency/oxygen/double, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/item/weapon/cell/high, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/specops) +"xAP" = ( +/obj/machinery/sleep_console{ + dir = 4 + }, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/syndicate_station/start) +"xBj" = ( +/obj/item/weapon/reagent_containers/food/snacks/cheesewedge, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/wizard_station) +"xCg" = ( +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/techfloor.dmi'; + icon_state = "techfloor_gray" + }, +/area/centcom/specops) +"xCo" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "white" + }, +/area/centcom/medical) +"xDI" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/simulated/shuttle/floor, +/area/shuttle/transport1/centcom) +"xEn" = ( +/obj/item/weapon/reagent_containers/food/drinks/cans/cola, +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/yellow/diagonal, +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/living) +"xEu" = ( +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/structure/holostool{ + dir = 8 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_theatre) +"xFu" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/shuttle/floor/white, +/area/centcom/evac) +"xFQ" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/bar) +"xGf" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/shuttle/floor/yellow, +/area/shuttle/transport1/centcom) +"xGh" = ( +/obj/effect/landmark{ + name = "prisonwarp" + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/prison/solitary) +"xHj" = ( +/obj/effect/floor_decal/carpet, +/obj/structure/holostool{ + dir = 4 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_meetinghall) +"xIb" = ( +/obj/structure/table/standard, +/obj/item/stack/medical/advanced/bruise_pack, +/obj/item/weapon/surgical/retractor, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/pink/border{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "white" + }, +/area/centcom/medical) +"xIh" = ( +/turf/simulated/shuttle/wall/dark/hard_corner, +/area/wizard_station) +"xIs" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_theatre) +"xIU" = ( +/obj/structure/window/reinforced{ + dir = 1; + health = 1e+006 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/centcom/command) +"xJb" = ( +/obj/machinery/door/airlock/centcom{ + name = "Special Operations"; + req_access = list(103) + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/techfloor.dmi'; + icon_state = "techfloor_gray" + }, +/area/centcom/specops) +"xJC" = ( +/obj/structure/closet/wardrobe/xenos, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/shuttle/trade) +"xJW" = ( +/obj/item/target/syndicate, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/ninja_dojo/dojo) +"xJX" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/wizard_station) +"xKt" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/terminal) +"xKF" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/porta_turret/crescent, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/terminal) +"xKM" = ( +/obj/structure/table/rack, +/obj/item/weapon/storage/belt/utility/full, +/obj/item/weapon/storage/belt/utility/full, +/obj/item/device/multitool, +/obj/item/device/multitool, +/obj/item/clothing/shoes/magboots, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"xMZ" = ( +/obj/structure/curtain/open/shower, +/obj/machinery/shower{ + dir = 4; + pixel_x = 5 + }, +/turf/unsimulated/floor{ + icon_state = "freezerfloor" + }, +/area/centcom/specops) +"xNf" = ( +/obj/item/weapon/bedsheet/hos, +/obj/structure/bed/padded, +/turf/simulated/shuttle/floor/red, +/area/skipjack_station/start) +"xNG" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/terminal) +"xNI" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 10 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/security) +"xNP" = ( +/obj/machinery/status_display, +/turf/simulated/shuttle/wall, +/area/shuttle/arrival/pre_game) +"xNV" = ( +/obj/machinery/sleeper{ + dir = 4 + }, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/syndicate_station/start) +"xOh" = ( +/obj/machinery/vending/assist{ + contraband = null; + dir = 1; + name = "Old Vending Machine"; + products = list(/obj/item/device/assembly/prox_sensor = 5, /obj/item/device/assembly/signaler = 4, /obj/item/device/assembly/infra = 4, /obj/item/device/assembly/prox_sensor = 4, /obj/item/weapon/handcuffs = 8, /obj/item/device/flash = 4, /obj/item/weapon/cartridge/signal = 4, /obj/item/clothing/glasses/sunglasses = 4) + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"xOi" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/main_hall) +"xOv" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/box/bodybags{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/box/bodybags, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/techfloor.dmi'; + icon_state = "techfloor_gray" + }, +/area/centcom/specops) +"xOH" = ( +/turf/unsimulated/wall, +/area/ai_multicam_room) +"xOL" = ( +/turf/simulated/shuttle/floor/black, +/area/skipjack_station/start) +"xOX" = ( +/obj/machinery/bodyscanner{ + dir = 8 + }, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"xPQ" = ( +/obj/machinery/door/window{ + name = "Cell"; + req_access = list(150) + }, +/obj/item/device/radio/intercom{ + desc = "Talk through this. Evilly"; + frequency = 1213; + name = "Subversive Intercom"; + pixel_y = -32; + subspace_transmission = 1; + syndie = 1 + }, +/turf/simulated/shuttle/floor/voidcraft, +/area/syndicate_station/start) +"xQE" = ( +/obj/machinery/photocopier, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/wizard_station) +"xSa" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-06" + }, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_meetinghall) +"xSD" = ( +/obj/machinery/door/airlock/voidcraft{ + req_access = list(150) + }, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/syndicate_station/start) +"xTk" = ( +/obj/structure/table/rack, +/obj/item/rig_module/device/drill, +/obj/item/rig_module/device/drill, +/obj/item/rig_module/maneuvering_jets, +/obj/item/rig_module/maneuvering_jets, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/specops) +"xUc" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/security) +"xUd" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/shuttle/floor/yellow, +/area/shuttle/transport1/centcom) +"xUk" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/security) +"xUL" = ( +/obj/structure/bed/chair/wood{ + dir = 8 + }, +/obj/effect/floor_decal/corner/yellow{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/bar) +"xVk" = ( +/obj/structure/window/reinforced, +/turf/simulated/shuttle/floor/yellow, +/area/centcom/evac) +"xVB" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table/steel, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OMinus, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/syndicate_station/start) +"xVH" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/syndicate_station/start) +"xWp" = ( +/turf/unsimulated/floor{ + icon_state = "asteroid" + }, +/area/skipjack_station) +"xWw" = ( +/obj/item/target, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/device/radio/intercom{ + desc = "Talk through this. Evilly"; + dir = 8; + frequency = 1213; + name = "Subversive Intercom"; + pixel_x = -32; + subspace_transmission = 1; + syndie = 1 + }, +/turf/unsimulated/floor{ + dir = 5; + icon_state = "vault" + }, +/area/wizard_station) +"xWO" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/terminal) +"xXs" = ( +/obj/machinery/button/remote/blast_door{ + id = "skipjackshutters"; + name = "remote shutter control"; + req_access = list(150) + }, +/turf/simulated/wall/skipjack, +/area/skipjack_station/start) +"xXD" = ( +/obj/machinery/door/blast/regular{ + id = "thunderdome"; + name = "Thunderdome Blast Door" + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/techfloor.dmi'; + icon_state = "techfloor_gray" + }, +/area/tdome/tdome2) +"xYB" = ( +/obj/structure/table/rack, +/obj/item/rig_module/mounted/taser, +/obj/item/rig_module/mounted/taser, +/obj/item/rig_module/mounted/taser, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/specops) +"yae" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_picnicarea) +"yah" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/ninja_dojo/start) +"ybs" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/machinery/computer/security/telescreen/entertainment{ + icon_state = "frame"; + pixel_x = 32 + }, +/turf/simulated/floor/carpet, +/area/shuttle/merchant/home) +"ybI" = ( +/obj/structure/table/rack, +/obj/item/rig_module/grenade_launcher, +/obj/item/rig_module/grenade_launcher, +/obj/structure/window/reinforced{ + dir = 4; + health = 1e+006 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/specops) +"ybR" = ( +/obj/machinery/vending/cola{ + name = "hacked Robust Softdrinks"; + prices = list() + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "steel" + }, +/area/centcom/living) +"yce" = ( +/obj/machinery/floor_light{ + anchored = 1 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/plating.dmi'; + icon_state = "plating"; + name = "plating" + }, +/area/centcom/bar) +"ydQ" = ( +/obj/item/weapon/storage/box/flashshells, +/obj/item/weapon/storage/box/flashshells, +/obj/item/weapon/storage/box/stunshells, +/obj/item/weapon/storage/box/stunshells, +/obj/item/weapon/storage/box/beanbags, +/obj/item/weapon/storage/box/beanbags, +/obj/structure/window/reinforced, +/obj/structure/table/rack, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/techfloor.dmi'; + icon_state = "techfloor_gray" + }, +/area/centcom/specops) +"yer" = ( +/obj/structure/curtain/open/shower, +/obj/machinery/shower{ + pixel_y = 3 + }, +/turf/simulated/shuttle/floor/white, +/area/shuttle/merchant/home) +"yeA" = ( +/obj/machinery/smartfridge/chemistry, +/turf/unsimulated/wall, +/area/centcom/medical) +"yeY" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/captain, +/turf/simulated/shuttle/floor/black, +/area/shuttle/merchant/home) +"yfe" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced/full, +/turf/simulated/shuttle/plating, +/area/shuttle/escape/centcom) +"yfp" = ( +/obj/effect/landmark{ + name = "Trader" + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/shuttle/trade) +"yfs" = ( +/obj/structure/table/standard, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/turf/unsimulated/floor{ + icon_state = "lino" + }, +/area/tdome) +"ygE" = ( +/obj/structure/closet/emcloset, +/turf/simulated/shuttle/floor/yellow, +/area/centcom/evac) +"yhh" = ( +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/bar) +"yhq" = ( +/obj/effect/floor_decal/corner/green{ + dir = 5 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"yhy" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/simulated/shuttle/floor/darkred, +/area/shuttle/merchant/home) +"yib" = ( +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/structure/sink{ + dir = 4; + pixel_x = 12 + }, +/obj/structure/mirror{ + pixel_x = 28 + }, +/turf/simulated/shuttle/floor/white, +/area/centcom/evac) +"yjB" = ( +/obj/structure/bed/padded, +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/item/weapon/bedsheet/medical, +/turf/simulated/shuttle/floor, +/area/centcom/evac) +"yjS" = ( +/obj/structure/table/reinforced, +/obj/item/device/pda/ert, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/specops) +"yjW" = ( +/obj/structure/closet/crate, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/item/weapon/storage/box, +/obj/item/weapon/storage/box, +/obj/item/weapon/storage/box, +/obj/item/weapon/storage/box, +/obj/item/weapon/storage/box, +/obj/item/weapon/storage/box, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "dark" + }, +/area/centcom/specops) +"ylo" = ( +/obj/machinery/door/airlock/glass_medical{ + name = "Escape Shuttle Infirmary"; + req_access = list(5) + }, +/turf/simulated/shuttle/floor/white, +/area/shuttle/escape/centcom) +"ymb" = ( +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + frequency = 1331; + id_tag = "ninja_shuttle"; + pixel_y = -25; + req_access = list(150) + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4; + frequency = 1331; + id_tag = "ninja_shuttle_pump" + }, +/obj/machinery/button/remote/blast_door{ + id = "blastninja"; + name = "ship lockdown control"; + pixel_x = -25 + }, +/obj/effect/shuttle_landmark{ + base_area = /area/ninja_dojo/dojo; + base_turf = /turf/snow; + landmark_tag = "ninja_start"; + name = "Dojo Outpost" + }, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/ninja_dojo/start) +"ymh" = ( +/obj/item/pizzabox/meat, +/turf/simulated/shuttle/floor/red, +/area/skipjack_station/start) + +(1,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(2,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(3,1,1) = {" +puk +puk +puk +iwk +iwk +iwk +iwk +iwk +iwk +iwk +iwk +iwk +iwk +iwk +iwk +iwk +iwk +iwk +iwk +iwk +iwk +iwk +iwk +iwk +iwk +iwk +iwk +iwk +iwk +iwk +iwk +iwk +puk +puk +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(4,1,1) = {" +puk +puk +puk +iwk +lfk +lfk +lfk +lfk +lfk +iwk +sHu +sHu +sHu +sHu +sHu +sHu +sHu +sHu +sHu +sHu +sHu +sHu +sHu +sHu +sHu +iwk +pgW +pgW +pgW +pgW +pgW +iwk +puk +puk +rsU +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +rsU +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(5,1,1) = {" +puk +puk +puk +iwk +tQy +tQy +tQy +tQy +tQy +iwk +sHu +sHu +sHu +aKs +sHu +sHu +aKs +aKs +aKs +sHu +sHu +aKs +sHu +sHu +sHu +iwk +tQy +tQy +tQy +tQy +tQy +iwk +puk +puk +rsU +qUl +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +qUl +rsU +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(6,1,1) = {" +puk +puk +puk +iwk +tQy +tQy +tQy +tQy +tQy +iLU +sHu +sHu +sHu +aKs +sHu +sHu +sHu +sHu +sHu +sHu +sHu +aKs +sHu +sHu +sHu +eMX +tQy +tQy +tQy +tQy +tQy +iwk +puk +puk +rsU +qUl +aRp +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +aRp +qUl +rsU +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(7,1,1) = {" +puk +puk +puk +iwk +tQy +tQy +tQy +tQy +tQy +sko +sHu +sHu +sHu +aKs +sHu +sHu +sHu +sHu +sHu +sHu +sHu +aKs +sHu +sHu +sHu +wHN +tQy +tQy +tQy +tQy +tQy +iwk +puk +puk +rsU +qUl +aRp +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +aRp +qUl +rsU +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +jSa +jSa +jSa +jSa +jSa +jSa +jSa +jSa +jSa +jSa +jSa +jSa +jSa +jSa +jSa +jSa +jSa +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(8,1,1) = {" +puk +puk +puk +iwk +tQy +tQy +tQy +tQy +tQy +iLU +sHu +sHu +sHu +aKs +sHu +sHu +sHu +sHu +sHu +sHu +sHu +aKs +sHu +sHu +sHu +eMX +tQy +tQy +tQy +tQy +tQy +iwk +puk +puk +rsU +qUl +aRp +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +aRp +qUl +rsU +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +jSa +jSa +jSa +yfs +yfs +yfs +gnL +aIO +gRw +cvJ +hek +hUB +xds +eqg +ecz +tuN +wXa +rro +jSa +jSa +jSa +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(9,1,1) = {" +puk +puk +puk +iwk +tQy +tQy +tQy +tQy +tQy +sko +sHu +sHu +sHu +aKs +sHu +sHu +sHu +sHu +sHu +sHu +sHu +aKs +sHu +sHu +sHu +wHN +tQy +tQy +tQy +tQy +tQy +iwk +puk +puk +rsU +qUl +aRp +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +aRp +qUl +rsU +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +jSa +qIR +oVG +hek +hek +hek +hek +hek +hek +hek +hek +hek +hek +hek +hek +hek +hek +hek +oVG +qIR +jSa +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(10,1,1) = {" +puk +puk +puk +iwk +tQy +rlf +rlf +tQy +fpO +iwk +sHu +sHu +sHu +aKs +sHu +sHu +sHu +sHu +sHu +sHu +sHu +aKs +sHu +sHu +sHu +iwk +rtW +tQy +rlf +rlf +tQy +iwk +puk +puk +rsU +qUl +aRp +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +aRp +qUl +rsU +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +jSa +jSa +jSa +jSa +jSa +jSa +jSa +qIR +jSa +hek +hek +bnC +hek +bnC +hek +mLr +tfA +hek +hek +bnC +hek +bnC +hek +hek +jSa +qIR +jSa +jSa +jSa +jSa +jSa +jSa +jSa +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(11,1,1) = {" +puk +puk +puk +iwk +tQy +rlf +rlf +tQy +tQy +iwk +sHu +sHu +sHu +sHu +sHu +sHu +sHu +sHu +sHu +sHu +sHu +sHu +sHu +sHu +sHu +iwk +tQy +tQy +rlf +rlf +tQy +iwk +puk +puk +rsU +qUl +aRp +sGi +sGi +sGi +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +aRp +qUl +rsU +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +jSa +qIR +qIR +qIR +qIR +qIR +qIR +qIR +jSa +hek +obq +obq +obq +obq +obq +hek +jYn +vNz +obq +obq +obq +obq +obq +hek +jSa +qIR +qIR +qIR +qIR +qIR +qIR +qIR +jSa +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(12,1,1) = {" +puk +puk +puk +iwk +tQy +tQy +tQy +tQy +hGk +iwk +sHu +sHu +sHu +sHu +sHu +sHu +aKs +aKs +aKs +sHu +sHu +sHu +sHu +sHu +sHu +iwk +hGk +tQy +tQy +tQy +tQy +iwk +puk +puk +rsU +qUl +aRp +sGi +pjZ +sGi +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +aRp +qUl +rsU +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +jSa +jSa +jSa +qIR +jSa +jSa +jSa +jSa +jSa +jSa +jSa +jSa +lpK +lpK +lpK +lpK +lpK +pva +jHW +pva +lpK +lpK +lpK +lpK +lpK +jSa +jSa +jSa +jSa +jSa +jSa +jSa +jSa +qIR +jSa +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(13,1,1) = {" +puk +puk +puk +iwk +tQy +tQy +tQy +tQy +tQy +iwk +sHu +sHu +sHu +sHu +sHu +sHu +aKs +lLl +aKs +sHu +sHu +sHu +sHu +sHu +sHu +iwk +tQy +tQy +tQy +tQy +tQy +iwk +puk +puk +rsU +qUl +aRp +sGi +sGi +sGi +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +aRp +qUl +rsU +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +jSa +qIR +qIR +qIR +jSa +mEq +mEq +mEq +mEq +mEq +jSa +fLT +qIR +qIR +qIR +qIR +qIR +qIR +bbP +qIR +qIR +qIR +qIR +qIR +qIR +fLT +jSa +shM +shM +shM +shM +shM +jSa +qIR +jSa +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(14,1,1) = {" +puk +puk +puk +iwk +tQy +tQy +tQy +tQy +tQy +iwk +sHu +sHu +sHu +sHu +sHu +sHu +aKs +aKs +aKs +sHu +sHu +sHu +sHu +sHu +sHu +iwk +tQy +tQy +tQy +tQy +tQy +iwk +puk +puk +rsU +qUl +aRp +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +aRp +qUl +rsU +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +jSa +qIR +jSa +jSa +jSa +kyR +kyR +kyR +kyR +kyR +jSa +qIR +qIR +qIR +qIR +qIR +qIR +qIR +bbP +qIR +qIR +qIR +qIR +qIR +qIR +qIR +jSa +glV +glV +glV +glV +glV +jSa +qIR +jSa +jSa +jSa +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(15,1,1) = {" +puk +puk +puk +iwk +tQy +tQy +tQy +tQy +tQy +iwk +sHu +sHu +sHu +sHu +sHu +sHu +sHu +sHu +sHu +sHu +sHu +sHu +sHu +sHu +sHu +iwk +tQy +tQy +tQy +tQy +tQy +iwk +puk +puk +rsU +qUl +aRp +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +aRp +qUl +rsU +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +jSa +qIR +jSa +mpP +nKR +qOL +qOL +qOL +qOL +qOL +xXD +qIR +qIR +qIR +qIR +qIR +qIR +qIR +bbP +qIR +qIR +qIR +qIR +qIR +qIR +qIR +rdM +pwV +pwV +pwV +pwV +pwV +pva +qIR +qIR +qIR +jSa +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(16,1,1) = {" +puk +puk +puk +iwk +tQy +lfk +lfk +lfk +tQy +iwk +sHu +sHu +sHu +sHu +sHu +sHu +sHu +sHu +sHu +sHu +sHu +sHu +sHu +sHu +sHu +iwk +tQy +pgW +pgW +pgW +tQy +iwk +puk +puk +rsU +qUl +aRp +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +aRp +qUl +rsU +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +jSa +qIR +jSa +mpP +nKR +qOL +oOi +wgp +oOi +qOL +xXD +qIR +qIR +qIR +qIR +qIR +qIR +kKD +cPm +iGx +qIR +qIR +qIR +qIR +qIR +qIR +rdM +pwV +mKq +nYH +mKq +pwV +jSa +jSa +jSa +qIR +jSa +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(17,1,1) = {" +puk +puk +puk +iwk +oHh +iwk +iwk +iwk +lxd +iwk +sHu +sHu +sHu +aKs +sHu +sHu +sHu +sHu +sHu +sHu +sHu +aKs +sHu +sHu +sHu +iwk +bCf +iwk +iwk +iwk +lxd +iwk +puk +puk +rsU +qUl +aRp +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +aRp +qUl +rsU +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +jSa +qIR +jSa +mpP +nKR +qOL +oOi +wgp +oOi +qOL +xXD +qIR +qIR +qIR +qIR +qIR +qIR +ttY +tHT +ttY +qIR +qIR +qIR +qIR +qIR +qIR +rdM +pwV +mKq +nYH +mKq +pwV +hZm +dmM +jSa +qIR +jSa +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +nxV +nxV +nxV +nxV +nxV +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(18,1,1) = {" +puk +puk +puk +iwk +nEC +nEC +iwk +nRZ +nEC +iwk +sHu +sHu +sHu +aKs +sHu +sHu +sHu +sHu +sHu +sHu +sHu +aKs +sHu +sHu +sHu +iwk +nEC +nRZ +iwk +nEC +nEC +iwk +puk +puk +rsU +qUl +aRp +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +lCA +aRp +qUl +rsU +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +jSa +qIR +jSa +mpP +nKR +qOL +oOi +wgp +oOi +qOL +xXD +qIR +qIR +qIR +qIR +qIR +qIR +qIR +nOB +qIR +qIR +qIR +qIR +qIR +qIR +qIR +rdM +pwV +mKq +nYH +mKq +pwV +hZm +dmM +jSa +qIR +jSa +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +nxV +quS +quS +quS +nxV +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(19,1,1) = {" +puk +puk +puk +iwk +nEC +nEC +iwk +nEC +nEC +iwk +sHu +sHu +sHu +dOl +sHu +sHu +sHu +sHu +sHu +sHu +sHu +dOl +sHu +sHu +sHu +iwk +nEC +nEC +iwk +nEC +nEC +iwk +puk +puk +rsU +qUl +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +aRp +qUl +rsU +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +jSa +qIR +jSa +jSa +jSa +qOL +oOi +wgp +oOi +qOL +xXD +qIR +qIR +qIR +qIR +qIR +qIR +qIR +qIR +qIR +qIR +qIR +qIR +qIR +qIR +qIR +rdM +pwV +mKq +nYH +mKq +pwV +hZm +dmM +jSa +qIR +jSa +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +nxV +quS +quS +quS +nxV +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(20,1,1) = {" +puk +puk +puk +iwk +rTY +nEC +iwk +nRZ +nEC +iwk +sHu +sHu +sHu +aKs +sHu +sHu +sHu +sHu +sHu +sHu +sHu +aKs +sHu +sHu +sHu +iwk +nEC +nRZ +iwk +nEC +bej +iwk +puk +puk +rsU +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +rsU +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +jSa +qIR +qIR +qIR +pva +qOL +qOL +qOL +qOL +qOL +xXD +qIR +qIR +qIR +qIR +qIR +qIR +qIR +qIR +qIR +qIR +qIR +qIR +qIR +qIR +qIR +rdM +pwV +pwV +pwV +pwV +pwV +hZm +dmM +jSa +qIR +jSa +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +nxV +quS +quS +quS +nxV +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(21,1,1) = {" +puk +puk +puk +iwk +iwk +iwk +iwk +nEC +nEC +iwk +sHu +sHu +sHu +aKs +sHu +sHu +sHu +sHu +sHu +sHu +sHu +aKs +sHu +sHu +sHu +iwk +nEC +nEC +iwk +iwk +iwk +iwk +puk +puk +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +jSa +jSa +jSa +qIR +jSa +qep +qep +qep +qep +qep +jSa +qIR +qIR +qIR +qIR +qIR +qIR +qIR +qIR +qIR +qIR +qIR +qIR +qIR +qIR +qIR +jSa +hEb +hEb +hEb +hEb +hEb +jSa +jSa +jSa +qIR +jSa +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +nxV +nxV +paJ +nxV +nxV +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(22,1,1) = {" +puk +puk +puk +puk +puk +puk +iwk +puV +nEC +iwk +sHu +sHu +sHu +sHu +sHu +sHu +aKs +aKs +aKs +sHu +sHu +sHu +sHu +sHu +sHu +iwk +nEC +puV +iwk +puk +puk +puk +puk +puk +rsU +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +rsU +xiP +xiP +xiP +xiP +xiP +xiP +xiP +xiP +xiP +xiP +xiP +xiP +xiP +xiP +xiP +xiP +xiP +xiP +xiP +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +jSa +qIR +jSa +evi +evi +evi +evi +evi +jSa +fLT +qIR +qIR +qIR +qIR +qIR +qIR +qIR +qIR +qIR +qIR +qIR +qIR +qIR +fLT +jSa +cmW +cmW +cmW +cmW +cmW +jSa +qIR +qIR +qIR +jSa +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +nxV +nxV +nxV +nxV +pEe +amw +quS +rLA +pEe +puk +puk +puk +puk +puk +puk +agi +puk +puk +puk +puk +puk +agi +puk +puk +puk +puk +puk +agi +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(23,1,1) = {" +puk +puk +puk +puk +puk +puk +iwk +iwk +iwk +iwk +sHu +sHu +sHu +sHu +aKs +sHu +sHu +wuD +sHu +sHu +aKs +sHu +sHu +sHu +sHu +iwk +iwk +iwk +iwk +puk +puk +puk +puk +puk +rsU +qUl +rnE +rnE +rnE +rnE +rnE +rnE +rnE +rnE +rnE +rnE +hvB +hvB +hvB +hvB +hvB +hvB +hvB +hvB +hvB +hvB +hvB +hvB +hvB +hvB +rnE +rnE +rnE +rnE +rnE +rnE +rnE +qUl +rsU +xiP +tQt +tQt +tQt +tQt +tQt +tQt +tQt +tQt +tQt +tQt +tQt +tQt +tQt +tQt +tQt +tQt +tQt +xiP +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +jSa +qIR +jSa +jSa +jSa +jSa +jSa +jSa +jSa +jSa +jSa +lpK +lpK +lpK +lpK +lpK +lpK +lpK +lpK +lpK +lpK +lpK +jSa +jSa +jSa +jSa +jSa +jSa +jSa +jSa +jSa +qIR +jSa +jSa +jSa +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +nxV +kpE +kpE +kpE +pEe +amw +qTA +rLA +pEe +puk +puk +puk +puk +puk +puk +nxV +puk +puk +puk +puk +puk +nxV +puk +puk +puk +puk +puk +nxV +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(24,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +iwk +sHu +sHu +sHu +sHu +aKs +sHu +sHu +sHu +sHu +sHu +aKs +sHu +sHu +sHu +sHu +iwk +puk +puk +puk +puk +puk +puk +puk +puk +rsU +qUl +rnE +pWO +pWO +pWO +pWO +pWO +pWO +pWO +pWO +pWO +een +een +een +een +een +een +een +een +een +een +een +een +een +een +pWO +pWO +pWO +pWO +pWO +pWO +rnE +qUl +rsU +xiP +tQt +tQt +tQt +tQt +tQt +tQt +tQt +tQt +tQt +tQt +tQt +tQt +tQt +tQt +tQt +tQt +tQt +xiP +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +jSa +qIR +qIR +qIR +qIR +qIR +qIR +qIR +qIR +qIR +jSa +dEV +dEV +dEV +dEV +dEV +ebR +ebR +ebR +dEV +dEV +dEV +jSa +qIR +qIR +qIR +qIR +qIR +qIR +qIR +qIR +qIR +jSa +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +iuf +iuf +iuf +iuf +iuf +iuf +iuf +iuf +iuf +iuf +iuf +iuf +iuf +kpE +kpE +kpE +pEe +amw +qTA +rLA +pEe +puk +puk +puk +puk +puk +puk +wLi +puk +puk +puk +puk +puk +wLi +puk +puk +puk +puk +puk +wLi +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(25,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +iwk +iwk +iwk +iwk +iwk +iwk +iwk +iwk +iwk +iwk +iwk +iwk +iwk +iwk +iwk +iwk +iwk +puk +puk +puk +puk +puk +puk +puk +puk +rsU +qUl +rnE +pWO +pWO +pWO +pWO +pWO +pWO +pWO +pWO +pWO +een +een +een +een +een +een +een +een +een +een +een +een +een +een +pWO +pWO +pWO +pWO +pWO +pWO +rnE +qUl +rsU +xiP +tQt +tQt +tQt +tQt +tQt +tQt +tQt +tQt +tQt +tQt +tQt +tQt +tQt +tQt +tQt +tQt +tQt +xiP +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +jSa +jSa +jSa +jSa +jSa +jSa +jSa +jSa +jSa +qIR +jSa +ebR +lSV +ebR +lSV +ebR +ebR +ebR +ebR +ebR +lSV +ebR +jSa +qIR +jSa +jSa +jSa +jSa +jSa +jSa +jSa +jSa +jSa +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +iuf +hzK +vHz +vOF +iuf +uCr +vHz +hCj +iuf +uCr +vHz +hCj +iuf +kpE +kpE +kpE +pEe +amw +qTA +rLA +pEe +puk +puk +puk +puk +puk +puk +wLi +puk +puk +puk +puk +puk +wLi +puk +puk +puk +puk +puk +wLi +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(26,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +rsU +qUl +rnE +pWO +pWO +pWO +pWO +pWO +pWO +pWO +pWO +pWO +een +een +een +een +een +een +een +een +een +een +een +een +een +een +pWO +pWO +pWO +pWO +pWO +pWO +rnE +qUl +rsU +xiP +tQt +tQt +tQt +tQt +tQt +tQt +tQt +tQt +tQt +tQt +tQt +tQt +tQt +tQt +tQt +tQt +tQt +xiP +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +jSa +qIR +rND +ebR +ebR +ebR +ebR +ebR +ebR +ebR +ebR +ebR +ebR +ebR +jSa +qIR +jSa +puk +puk +puk +puk +puk +fVm +fVm +fVm +fVm +fVm +puk +puk +puk +puk +puk +puk +puk +puk +iuf +ptB +iFP +aok +iuf +aoo +iFP +kpv +iuf +aoo +iFP +kpv +iuf +kpE +kpE +kpE +pEe +amw +quS +rLA +pEe +puk +puk +puk +puk +puk +puk +wLi +puk +puk +puk +puk +puk +wLi +puk +puk +puk +puk +puk +wLi +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(27,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +rsU +qUl +rnE +pWO +pWO +pWO +pWO +pWO +pWO +pWO +pWO +pWO +een +een +een +een +een +een +een +een +een +een +een +een +een +een +pWO +pWO +pWO +pWO +pWO +pWO +rnE +qUl +rsU +xiP +tQt +tQt +tQt +tQt +tQt +tQt +tQt +tQt +tQt +tQt +tQt +tQt +tQt +tQt +tQt +tQt +tQt +xiP +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +jSa +qIR +jSa +pTZ +rbA +tuY +fok +aiQ +ebR +ebR +ebR +aiQ +fok +sfb +jSa +qIR +jSa +puk +puk +puk +puk +puk +fVm +fOX +fOX +rer +fVm +spL +fVm +fVm +puk +puk +puk +puk +puk +iuf +ptB +hJM +aok +iuf +utc +iFP +aok +iuf +utc +iFP +aok +iuf +kpE +kpE +kpE +pEe +amw +qTA +rLA +pEe +puk +puk +puk +puk +puk +puk +nxV +puk +puk +puk +puk +puk +nxV +puk +puk +puk +puk +puk +nxV +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(28,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +rsU +qUl +rnE +pWO +pWO +pWO +pWO +pWO +pWO +pWO +pWO +pWO +een +een +een +een +een +een +een +een +een +een +een +een +een +een +pWO +pWO +pWO +pWO +pWO +pWO +rnE +qUl +rsU +xiP +tQt +tQt +tQt +tQt +tQt +tQt +vBH +vBH +vBH +wfW +wfW +aTW +aTW +aTW +aTW +aTW +aTW +xiP +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +jSa +qIR +jSa +jSa +jSa +jSa +jSa +cSr +jSa +cSr +jSa +jSa +jSa +jSa +jSa +qIR +jSa +puk +puk +puk +puk +puk +fVm +xdM +xdM +xdM +xdM +xdM +xdM +fVm +puk +puk +puk +puk +puk +iuf +iuf +wFZ +iuf +iuf +voy +ltJ +voy +iuf +voy +ltJ +voy +iuf +kpE +kpE +kpE +nxV +kmb +qTA +imr +nxV +puk +puk +puk +puk +puk +puk +nxV +puk +puk +puk +puk +puk +nxV +puk +puk +puk +puk +puk +nxV +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(29,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +rsU +qUl +rnE +pWO +pWO +pWO +pWO +pWO +pWO +pWO +pWO +pWO +een +een +een +een +een +een +een +een +een +een +een +een +een +een +pWO +pWO +pWO +pWO +pWO +pWO +rnE +qUl +rsU +xiP +tQt +tQt +tQt +tQt +tQt +aTW +vBH +wYp +wYp +wYp +wfW +uQC +aTW +aTW +aTW +aTW +aTW +xiP +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +jSa +qIR +qIR +qIR +qIR +qIR +qIR +qIR +qIR +qIR +qIR +qIR +qIR +qIR +qIR +qIR +jSa +puk +puk +puk +puk +puk +fVm +uzf +xdM +xdM +xdM +jUW +aMY +fVm +puk +puk +puk +puk +puk +iuf +pwK +rEg +boQ +iXO +jAZ +iFP +fYY +vHz +pwK +iFP +aok +iuf +kpE +kpE +kpE +pEe +lMN +eLG +rdN +pEe +puk +puk +wLi +nqU +wLi +puk +nxV +puk +wLi +nqU +wLi +puk +nxV +puk +wLi +nqU +wLi +puk +nxV +puk +wLi +nqU +wLi +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(30,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +rsU +qUl +rnE +pWO +pWO +pWO +pWO +pWO +pWO +pWO +pWO +pWO +pol +tQa +lqf +lqf +pia +caf +caf +pia +lqf +lqf +pol +pol +pol +pWO +pWO +pWO +pWO +pWO +pWO +pWO +rnE +qUl +rsU +xiP +tQt +tQt +tQt +tQt +tQt +aTW +wYp +wYp +wYp +wYp +wYp +aTW +aTW +aTW +aTW +aTW +aTW +xiP +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +mRL +ewB +ewB +ewB +ewB +ewB +ewB +ewB +ewB +mRL +puk +puk +mRL +ewB +ewB +ewB +ewB +ewB +ewB +ewB +mRL +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +jSa +jSa +jSa +jSa +jSa +jSa +jSa +jSa +mrg +jSa +jSa +jSa +jSa +jSa +jSa +jSa +jSa +puk +puk +puk +puk +puk +fVm +fVm +fVm +mAg +fVm +fVm +fVm +fVm +fVm +fVm +fVm +fVm +puk +aHb +ueT +iFP +qZn +iFP +xUc +iFP +aqb +qtQ +lzo +iFP +aok +iuf +kpE +kpE +kpE +pEe +wHT +quS +wHT +pEe +puk +puk +wLi +okj +wLi +puk +nxV +puk +wLi +okj +wLi +puk +nxV +puk +wLi +okj +wLi +puk +nxV +puk +wLi +okj +wLi +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(31,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +rsU +qUl +rnE +pWO +pWO +pWO +pWO +pWO +pWO +pWO +pol +pol +pol +thM +bIS +pNU +rBk +bAY +bAY +rBk +pNU +pNU +thM +mZd +ucH +pWO +pWO +pWO +pWO +pWO +pWO +pWO +rnE +qUl +rsU +xiP +tQt +tQt +tQt +tQt +tQt +aTW +wYp +wYp +wYp +wYp +wYp +aTW +aTW +aTW +aTW +aTW +aTW +xiP +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +ewB +ebT +uAa +cUf +ewB +eup +ebT +ebT +uAa +ewB +puk +puk +ewB +aPx +pUv +pUv +pUv +tQX +uYi +whz +ewB +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +jSa +qle +qle +qle +jSa +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +fVm +gdQ +mch +xFQ +bZj +eyk +hIP +sIa +dDJ +xFQ +epY +fVm +puk +iuf +lzo +iFP +aqb +iuf +voy +eIi +voy +iuf +voy +eIi +voy +iuf +kpE +kpE +kpE +nxV +cuK +pEe +cuK +nxV +wLi +wLi +wLi +rfk +wLi +wLi +nxV +wLi +wLi +rfk +wLi +wLi +nxV +wLi +wLi +rfk +wLi +wLi +nxV +wLi +wLi +rfk +wLi +wLi +wLi +nxV +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(32,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +rsU +qUl +rnE +pWO +pWO +pWO +pWO +pWO +pWO +pol +pol +biG +xNP +bQz +pNU +pNU +pNU +pNU +pNU +pNU +pNU +pNU +qWz +qWz +pol +pol +pWO +pWO +pWO +pWO +pWO +pWO +rnE +qUl +rsU +xiP +tQt +tQt +tQt +tQt +tQt +aTW +wYp +wYp +wYp +wYp +wYp +aTW +aTW +aTW +aTW +aTW +aTW +xiP +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +ewB +ebT +ebT +ebT +vUO +ebT +ebT +ebT +iwW +ewB +ewB +ewB +ewB +lGW +pUv +pUv +pUv +pUv +uYO +whz +ewB +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +pAD +kXS +kXS +kXS +pAD +pAD +pAD +pAD +pAD +pAD +pAD +puk +puk +puk +puk +puk +fVm +dFq +xFQ +xFQ +xFQ +xFQ +xFQ +xFQ +xFQ +xFQ +sTE +fVm +puk +iuf +utc +iFP +aok +iuf +utc +iFP +aok +iuf +utc +iFP +aok +iuf +nxV +nxV +nxV +nxV +jRO +quS +jRO +nxV +sLv +fnw +wLi +xuX +wLi +bBK +dgl +bBK +wLi +xuX +wLi +bBK +dgl +bBK +wLi +xuX +wLi +bBK +dgl +bBK +wLi +xuX +wLi +bBK +dgl +nxV +wLi +wLi +wLi +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(33,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +rsU +qUl +rnE +pWO +pWO +pWO +pWO +pWO +pWO +pol +luW +txz +ukN +kiC +pNU +pNU +fDX +fDX +fDX +fDX +pNU +pNU +pNU +mMT +dYA +ucH +pWO +pWO +pWO +pWO +pWO +pWO +rnE +qUl +rsU +xiP +tQt +tQt +tQt +tQt +tQt +aTW +wYp +wYp +wYp +wYp +wYp +aTW +aTW +aTW +aTW +aTW +aTW +xiP +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +ewB +ebT +ebT +ebT +vUO +ebT +ebT +ebT +uAa +ewB +pUv +pUv +vwm +lNa +pUv +ios +qVZ +pUv +vnu +vnu +ewB +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +pAD +gBA +gBA +gBA +pAD +oCJ +ikS +uLV +qXU +svl +pAD +puk +puk +puk +puk +puk +fVm +eSU +xFQ +cRp +pTo +mQd +pXW +xFQ +xFQ +xFQ +eYU +fVm +puk +iuf +pwK +iFP +aok +iuf +aoo +iFP +kpv +iuf +aoo +iFP +kpv +iuf +puk +puk +nxV +dgl +pxt +qTA +bgk +kGu +vPk +quS +hgN +wqh +kdh +sLv +sLv +sLv +bbF +wqh +kdh +sLv +sLv +sLv +bbF +wqh +kdh +sLv +sLv +sLv +bbF +wqh +kdh +sLv +jDp +wLi +rSd +bos +wLi +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(34,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +rsU +qUl +rnE +pWO +pWO +pWO +pWO +pWO +pWO +pol +vBc +vfj +fuj +tgY +pNU +dZT +caf +caf +caf +caf +nol +pNU +pNU +fju +dYA +ucH +pWO +pWO +pWO +pWO +pWO +pWO +rnE +qUl +rsU +xiP +tQt +tQt +tQt +tQt +tQt +aTW +wYp +wYp +wYp +wYp +wYp +aTW +aTW +aTW +aTW +aTW +aTW +xiP +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +ewB +ebT +uAa +cUf +ewB +exo +ebT +ebT +izR +ewB +pUv +pUv +vwm +meu +pUv +fjf +qYH +pUv +vry +vry +ewB +puk +puk +puk +puk +puk +iIp +lFj +lFj +lFj +lFj +lFj +lFj +lFj +lFj +lFj +lFj +lFj +lFj +iIp +puk +puk +puk +puk +puk +puk +puk +puk +pAD +gBA +piF +gBA +pAD +loQ +tIH +mTz +mTz +ccw +pAD +puk +puk +puk +puk +puk +fVm +ceo +xFQ +xFQ +xFQ +xFQ +xFQ +xFQ +xFQ +xFQ +eYU +fVm +puk +iuf +ssK +cLJ +aok +iuf +jqg +qtQ +tzO +iuf +jqg +qtQ +tzO +iuf +puk +puk +cIP +dgl +amw +qTA +quS +pEe +quS +quS +lCS +oKb +lCS +quS +qTA +qTA +qTA +quS +qTA +qTA +qTA +quS +quS +qTA +qTA +qTA +quS +quS +qTA +qTA +qTA +chP +xNG +gGh +bwZ +qTD +sno +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(35,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +rsU +qUl +rnE +pWO +pWO +pWO +pWO +pWO +pWO +pol +vfj +jzs +pol +vqj +pNU +pNU +bAY +bAY +bAY +bAY +pNU +pNU +pNU +cDm +dYA +ucH +pWO +pWO +pWO +pWO +pWO +pWO +rnE +qUl +rsU +xiP +tQt +tQt +tQt +tQt +tQt +aTW +wYp +wYp +wYp +dIj +wYp +aTW +aTW +aTW +aTW +aTW +aTW +xiP +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +ewB +ewB +ewB +ewB +ewB +ezf +ebT +ebT +uAa +ewB +pUv +pUv +vwm +mfK +pUv +rvC +riQ +pUv +vFx +vFx +ewB +puk +puk +puk +puk +puk +iIp +eWj +gzS +gzS +gzS +gzS +gzS +gzS +gzS +gzS +gzS +gzS +eWj +iIp +puk +puk +puk +puk +puk +puk +puk +puk +pAD +gBA +piF +gBA +gSq +mTz +mTz +mTz +mTz +hOI +pAD +puk +puk +puk +fVm +fVm +fVm +fVm +fVm +fVm +cMH +cMH +ogY +tKn +lwf +fVm +fVm +fVm +fVm +iuf +uch +gPb +iuf +iuf +iuf +iuf +iuf +iuf +iuf +iuf +iuf +iuf +puk +puk +nxV +bBK +amw +qTA +bgk +kGu +vPk +quS +cXr +cXr +quS +quS +quS +quS +quS +kvf +xKt +xKt +grn +quS +quS +quS +kvf +xKt +xKt +grn +quS +quS +quS +quS +xNG +gGh +kyO +wgl +sno +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(36,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +rsU +qUl +rnE +pWO +pWO +pWO +pWO +pWO +pWO +pol +pol +tqq +fED +bYp +pNU +pNU +pNU +pNU +pNU +pNU +pNU +pNU +qWz +qWz +pol +pol +pWO +pWO +pWO +pWO +pWO +pWO +rnE +qUl +rsU +xiP +tQt +tQt +tQt +tQt +tQt +aTW +wYp +wYp +wYp +wYp +wYp +aTW +aTW +aTW +aTW +aTW +aTW +xiP +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +ewB +ebT +cOS +deX +ewB +eDu +ebT +ebT +iBK +ewB +pUv +pUv +ewB +mgC +pUv +lac +rPy +pUv +vFy +vFy +ewB +puk +puk +puk +puk +puk +iIp +gzS +wdP +oys +mpn +mpn +mpn +mpn +mpn +oys +wdP +gzS +cKc +iIp +puk +puk +puk +puk +puk +puk +puk +puk +pAD +gBA +piF +gBA +mBj +mTz +mTz +mTz +mTz +fJN +pAD +puk +puk +puk +fVm +wvQ +haV +haV +haV +haV +haV +haV +haV +haV +haV +nAm +nyS +azw +mqp +iuf +jEH +eSW +iuf +lov +vHz +vHz +vHz +vOF +iuf +vHz +xNI +iuf +nxV +nxV +nxV +nxV +amw +quS +vjU +nxV +wCB +xWO +lFQ +xWO +lFQ +xWO +lFQ +xWO +wCB +wLi +dWQ +dWQ +wLi +eox +lFQ +eox +wLi +dWQ +dWQ +wLi +wCB +xWO +lFQ +xWO +meZ +agi +wLi +wLi +wLi +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(37,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +rsU +qUl +rnE +pWO +pWO +pWO +pWO +pWO +pWO +pWO +pol +pol +pol +uWn +pNU +pNU +uAI +fDX +fDX +uAI +pNU +pNU +uWn +awS +ucH +pWO +pWO +pWO +pWO +pWO +pWO +pWO +rnE +qUl +rsU +xiP +tQt +tQt +tQt +tQt +tQt +aTW +wYp +wYp +wYp +wYp +wYp +aTW +aTW +aTW +aTW +aTW +aTW +xiP +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +ewB +ebT +ebT +ebT +vUO +ebT +ebT +ebT +ebT +kiG +pUv +pUv +kka +pUv +pUv +pUv +pUv +pUv +vMI +vMI +ewB +puk +puk +puk +puk +puk +iIp +gzS +nOU +mpn +mpn +mpn +mpn +mpn +mpn +mpn +mpn +uiD +jhi +iIp +puk +puk +puk +puk +puk +puk +puk +puk +pAD +gBA +gBA +gBA +gSq +oAb +wiM +dzs +rsf +tsP +pAD +puk +puk +puk +fVm +fym +haV +haV +wux +snZ +haV +haV +haV +haV +haV +haV +haV +haV +haV +iuf +lzo +iFP +iuf +pwK +iFP +iFP +iFP +fYY +iuf +iFP +euw +iuf +kpE +kpE +kpE +nxV +amw +qTA +rLA +nxV +wLi +wLi +nxV +wLi +wLi +wLi +nxV +wLi +wLi +wLi +rSd +bos +wLi +wLi +nxV +wLi +wLi +rSd +bos +wLi +wLi +wLi +nxV +wLi +wLi +nxV +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(38,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +rsU +qUl +rnE +pWO +pWO +pWO +pWO +pWO +pWO +pWO +pWO +pWO +pol +tQa +qzL +qzL +pia +caf +caf +pia +qzL +qzL +pol +pol +pol +pWO +pWO +pWO +pWO +pWO +pWO +pWO +rnE +qUl +rsU +xiP +tQt +tQt +tQt +tQt +tQt +aTW +wYp +wYp +wYp +wYp +wYp +aTW +aTW +aTW +aTW +aTW +aTW +xiP +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +ewB +ebT +ebT +ebT +vUO +ebT +ebT +ebT +ebT +kiG +pUv +pUv +lwT +pUv +pUv +pUv +pUv +pUv +xCg +wmh +ewB +puk +puk +puk +puk +puk +iIp +gzS +nOU +mpn +mHV +mpn +mpn +mpn +lTU +mpn +mpn +uiD +jhi +iIp +puk +puk +puk +puk +puk +puk +puk +puk +pAD +gBA +gBA +gBA +pAD +pAD +pAD +pAD +pAD +pAD +pAD +puk +puk +puk +gjl +gIh +haV +haV +wux +snZ +haV +haV +eoG +haV +haV +haV +eoG +haV +haV +iuf +utc +nND +ieY +ueT +iFP +pLM +iFP +nND +eVe +ueT +euw +iuf +kpE +kpE +kpE +nxV +amw +qTA +rLA +pEe +puk +puk +puk +puk +puk +puk +oVn +puk +puk +wLi +kyO +wgl +wLi +puk +puk +puk +wLi +kyO +wgl +wLi +puk +oVn +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(39,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +rsU +qUl +rnE +pWO +pWO +pWO +pWO +pWO +pWO +lCA +pWO +pWO +een +een +een +een +een +een +een +een +een +een +een +een +een +een +pWO +pWO +pWO +pWO +pWO +pWO +rnE +qUl +rsU +xiP +tQt +tQt +tQt +tQt +tQt +aTW +wYp +wYp +wYp +wYp +wYp +aTW +aTW +aTW +aTW +aTW +aTW +xiP +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +ewB +ebT +uAa +nnn +ewB +eEu +fPj +gJJ +iIh +ewB +pUv +pUv +vwm +eKG +wnf +pBJ +rRw +tTN +vNO +vNO +ewB +puk +puk +puk +puk +puk +iIp +gzS +nOU +mpn +mHV +mpn +mpn +mpn +lTU +mpn +mpn +uiD +jhi +iIp +puk +vlH +vlH +vlH +vlH +vlH +vlH +vlH +vlH +gBA +piF +gBA +pAD +puk +puk +puk +puk +puk +puk +puk +puk +puk +fVm +etB +haV +nAm +oNF +snZ +haV +dgX +mDN +oja +haV +dgX +khb +oja +haV +iuf +pwK +iFP +iuf +lzo +ddI +pLM +xUk +aqb +iuf +iFP +aok +iuf +kpE +kpE +kpE +pEe +amw +quS +rLA +nxV +puk +puk +puk +puk +puk +puk +oVn +puk +puk +wLi +nqU +nqU +wLi +puk +puk +puk +wLi +nqU +nqU +wLi +puk +oVn +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(40,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +rsU +qUl +rnE +pWO +pWO +pWO +pWO +pWO +pWO +lCA +pWO +pWO +een +een +een +een +een +een +een +een +een +een +een +een +een +een +pWO +pWO +pWO +pWO +pWO +pWO +rnE +qUl +rsU +xiP +tQt +tQt +tQt +tQt +tQt +aTW +wYp +wYp +wYp +wYp +wYp +aTW +aTW +aTW +aTW +aTW +aTW +xiP +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +ewB +ewB +ewB +ewB +ewB +ewB +ewB +ewB +ewB +ewB +pUv +pUv +ewB +ewB +ewB +ewB +ewB +ewB +ewB +ewB +ewB +puk +puk +puk +puk +puk +iIp +gzS +wdP +vpq +mHV +mpn +wGI +mpn +lTU +vpq +wdP +gzS +oyi +iIp +puk +vlH +wfT +wfT +wfT +wfT +wfT +wfT +vlH +gBA +piF +gBA +pAD +pAD +pAD +pAD +pAD +hUI +pAD +pAD +pAD +pAD +fVm +cfy +haV +haV +oNF +snZ +haV +dgX +khb +oja +haV +dgX +mDN +oja +haV +iuf +ssK +cLJ +iuf +vKg +kYD +vtk +izK +gTz +iuf +hJM +aok +iuf +kpE +kpE +kpE +pEe +amw +qTA +rLA +pEe +oVn +oVn +oVn +oVn +oVn +oVn +oVn +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(41,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +rsU +qUl +rnE +pWO +pWO +pWO +pWO +pWO +pWO +lCA +pWO +pWO +een +een +een +een +een +een +een +een +een +een +een +een +een +een +pWO +pWO +pWO +pWO +pWO +pWO +rnE +qUl +rsU +xiP +tQt +tQt +tQt +tQt +tQt +aTW +aTW +aTW +aTW +aTW +aTW +aTW +tQt +tQt +tQt +tQt +tQt +xiP +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +mRL +ewB +ewB +ewB +ewB +ewB +ewB +ewB +ewB +ewB +qLj +pUv +pUv +edj +aAv +pUv +pUv +iQH +uBX +pUv +pUv +ewB +nOm +mXs +ith +sbq +tYi +pUv +woe +ewB +puk +puk +puk +puk +puk +iIp +eWj +gzS +gzS +wHH +cLf +gzS +cLf +swE +gzS +gzS +gzS +eWj +iIp +puk +vlH +wfT +sII +pCM +pCM +tLG +wfT +vlH +gBA +piF +gBA +pAD +mTz +mTz +mTz +mTz +mTz +mTz +mTz +mTz +mTz +fVm +oNF +wux +wux +oNF +snZ +haV +haV +gHW +haV +haV +haV +gHW +haV +haV +iuf +uch +gPb +iuf +iuf +iuf +iuf +iuf +iuf +iuf +eVe +iuf +iuf +kpE +kpE +kpE +pEe +amw +qTA +rLA +pEe +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(42,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +rsU +qUl +rnE +pWO +pWO +pWO +pWO +pWO +pWO +lCA +pWO +pWO +een +een +een +een +een +een +een +een +een +een +een +een +een +een +pWO +pWO +pWO +pWO +pWO +pWO +rnE +qUl +rsU +xiP +tQt +tQt +tQt +tQt +tQt +tQt +tQt +tQt +tQt +tQt +tQt +tQt +tQt +tQt +tQt +tQt +tQt +xiP +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +ewB +pWl +bmR +ewB +atC +bAM +ewB +bDr +bTD +ewB +qLj +pUv +pUv +lmx +fdj +pUv +pUv +jbD +uBX +pUv +pUv +vwm +mjE +nch +pUv +pUv +pUv +pUv +wUL +ewB +puk +puk +puk +puk +puk +iIp +eWj +eWj +eWj +eWj +eWj +eWj +eWj +eWj +eWj +eWj +eWj +eWj +iIp +puk +vlH +wfT +fbf +jRm +pSk +dGs +wfT +vlH +gBA +gBA +gBA +pAD +mTz +afB +gEw +gEw +gEw +gEw +gEw +hle +mTz +fVm +sUe +hjy +hjy +hjy +hjy +haV +haV +haV +haV +haV +haV +haV +haV +haV +iuf +jEH +eSW +fYY +vHz +vHz +vHz +rFu +vHz +pwK +rEg +aok +iuf +kpE +kpE +kpE +nxV +amw +qTA +rLA +pEe +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(43,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +rsU +qUl +rnE +pWO +pWO +pWO +pWO +pWO +pWO +lCA +pWO +pWO +een +een +een +een +een +een +een +een +een +een +een +een +een +een +pWO +pWO +pWO +pWO +pWO +pWO +rnE +qUl +rsU +xiP +tQt +tQt +tQt +tQt +tQt +tQt +tQt +tQt +tQt +tQt +tQt +tQt +tQt +tQt +tQt +tQt +tQt +xiP +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +ewB +jWI +jWI +ewB +jWI +jWI +ewB +jWI +jWI +ewB +xCg +pUv +pUv +mgK +ffj +pUv +pUv +jcL +uBX +pUv +pUv +vwm +evy +niR +pUv +sdE +ulh +pUv +xer +ewB +puk +puk +puk +puk +puk +iIp +eWj +eWj +eWj +eWj +eWj +eWj +eWj +eWj +eWj +eWj +eWj +eWj +iIp +puk +vlH +wfT +fbf +pSk +pSk +dGs +wfT +vlH +gBA +gBA +gBA +pAD +mTz +nqu +rrI +rrI +rrI +rrI +rrI +xOi +mTz +fVm +yce +yce +yce +yce +yce +dJK +haV +haV +haV +haV +haV +eoG +haV +haV +iuf +iFP +iFP +iFP +iFP +iFP +iFP +qXv +iFP +iFP +iFP +aok +iuf +kpE +kpE +kpE +nxV +amw +quS +rLA +nxV +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(44,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +rsU +qUl +rnE +pWO +pWO +pWO +pWO +pWO +pWO +lCA +pWO +pWO +een +een +een +een +een +een +een +een +een +een +een +een +een +een +pWO +pWO +pWO +pWO +pWO +pWO +rnE +qUl +rsU +mNY +mNY +mNY +mNY +mNY +mNY +mNY +mNY +mNY +mNY +mNY +mNY +mNY +mNY +mNY +mNY +mNY +mNY +mNY +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +ewB +ndy +ndy +ndy +ndy +ndy +ndy +ndy +ndy +jWI +xCg +pUv +pUv +ciy +fhd +pUv +pUv +jwB +uBX +pUv +pUv +vwm +aBE +pUv +pUv +sww +unp +pUv +xjQ +ewB +puk +puk +puk +puk +vlH +vlH +vlH +vlH +vlH +vlH +cRj +roT +cRj +vlH +vlH +vlH +vlH +vlH +vlH +vlH +vlH +wfT +fbf +pSk +pSk +dGs +wfT +roT +gBA +piF +gBA +gSq +mTz +nqu +rrI +eDt +rrI +eDt +rrI +xOi +mTz +fVm +yce +yce +yce +yce +yce +dJK +haV +haV +haV +haV +dgX +mDN +oja +haV +iuf +lzo +iFP +iFP +iFP +iFP +iFP +eCS +xUk +iFP +aqb +rfr +iuf +kpE +kpE +kpE +pEe +amw +qTA +rLA +pEe +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(45,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +rsU +qUl +rnE +rnE +rnE +rnE +rnE +rnE +rnE +egd +rnE +rnE +hvB +hvB +hvB +hvB +hvB +hvB +hvB +hvB +hvB +hvB +hvB +hvB +hvB +hvB +rnE +rnE +rnE +rnE +rnE +rnE +rnE +qUl +rsU +mNY +wFL +wFL +wFL +wFL +wFL +wFL +wFL +wFL +wFL +wFL +wFL +wFL +wFL +wFL +wFL +wFL +wFL +mNY +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +ewB +ndy +ndy +ndy +ndy +ndy +ndy +ndy +ndy +jWI +xCg +pUv +pUv +ydQ +fli +pUv +pUv +jyq +uBX +pUv +pUv +ewB +kST +pUv +pUv +szv +uru +pUv +xjU +ewB +puk +puk +puk +puk +vlH +vlH +vlH +mEx +mEx +mEx +mEx +mEx +mEx +mEx +mEx +mEx +mEx +mEx +vlH +vlH +vlH +wfT +fbf +pSk +pSk +dGs +wfT +roT +gBA +piF +gBA +gSq +qWM +mbn +rrI +eDt +rrI +eDt +rrI +nYl +qWM +fVm +yce +yce +yce +yce +yce +dJK +haV +haV +haV +haV +dgX +khb +oja +haV +iuf +utc +iFP +iFP +iFP +iFP +iFP +mur +iFP +iFP +aok +iuf +iuf +kpE +kpE +kpE +pEe +amw +qTA +rLA +pEe +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(46,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +rsU +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +qUl +rsU +mNY +wFL +wFL +wFL +wFL +wFL +wFL +wFL +wFL +wFL +wFL +wFL +wFL +wFL +wFL +wFL +wFL +wFL +mNY +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +ewB +ndy +ndy +ndy +ndy +ndy +ndy +ndy +ndy +jWI +xCg +pUv +pUv +jyk +amo +pUv +pUv +eck +lAq +pUv +pUv +srA +uUA +pUv +pUv +sKp +usm +pUv +xnv +ewB +puk +puk +puk +puk +vlH +vlH +uQV +mEx +mEx +mEx +mEx +mEx +mEx +mEx +mEx +mEx +mEx +mEx +uQV +vlH +vlH +wfT +fbf +pSk +aLL +dGs +wfT +roT +gBA +piF +gBA +gSq +gBA +eva +rrI +cAI +rrI +cAI +rrI +pXt +gBA +fVm +yce +yce +yce +yce +yce +dJK +jJZ +jJZ +haV +haV +haV +gHW +haV +haV +iuf +bCA +kIr +kIr +lzo +ssK +cLJ +voy +rzF +rzF +kDg +iuf +kpE +kpE +kpE +kpE +pEe +amw +qTA +rLA +pEe +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(47,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +mNY +wFL +wFL +wFL +wFL +wFL +moR +moR +moR +moR +moR +moR +gCo +moR +moR +moR +moR +moR +mNY +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +ewB +jWI +jWI +ewB +jWI +jWI +ewB +jWI +jWI +ewB +cfm +pUv +pUv +pUv +pUv +pUv +pUv +pUv +kka +pUv +pUv +kka +pUv +pUv +pUv +pUv +pUv +pUv +xvQ +ewB +puk +puk +puk +puk +roT +mEx +mEx +mEx +mEx +xIU +rXy +nex +gbd +wjG +rXy +hIf +mEx +mEx +mEx +mEx +vlH +wfT +kkm +vFe +vFe +nmu +wfT +vlH +gBA +gBA +gBA +pAD +gBA +fTz +qup +qup +jbY +qup +qup +sbj +gBA +fVm +yce +yce +yce +yce +yce +fVm +hqt +gOp +fVm +cNv +haV +haV +haV +mqp +iuf +voy +voy +voy +iuf +uch +qcp +iuf +voy +voy +voy +iuf +kpE +kpE +kpE +kpE +nxV +amw +quS +rLA +nxV +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(48,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +xtK +xtK +xtK +xtK +xtK +xtK +sFf +sFf +sFf +sFf +sFf +sFf +sFf +sFf +sFf +sFf +sFf +sFf +sFf +sFf +sFf +sFf +sFf +xtK +xtK +xtK +xtK +xtK +xtK +xtK +xtK +xtK +xtK +xtK +mNY +wFL +wFL +wFL +wFL +wFL +moR +orn +orn +orn +orn +orn +eHq +moR +moR +moR +moR +moR +mNY +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +ewB +tUV +bzH +ewB +rDr +bDm +ewB +bTo +bVT +ewB +ckJ +pUv +pUv +pUv +pUv +pUv +pUv +pUv +kka +pUv +pUv +lwT +pUv +pUv +pUv +pUv +pUv +pUv +xOv +ewB +puk +puk +puk +puk +roT +mEx +mEx +mEx +kzb +rXy +rXy +qcX +rXy +qcX +rXy +rXy +ktS +mEx +mEx +mEx +vlH +wfT +wfT +wfT +wfT +wfT +wfT +vlH +gBA +gBA +gBA +pAD +gBA +gBA +gBA +gBA +gBA +gBA +gBA +gBA +gBA +fVm +fVm +ogY +ogY +ogY +fVm +fVm +wfp +mgZ +fVm +fVm +ogY +ogY +ogY +fVm +pAD +mTz +kZo +lao +pAD +phU +pwi +pAD +cky +kZo +mTz +pAD +kpE +kpE +kpE +kpE +nxV +amw +qTA +rLA +pEe +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(49,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +xtK +opX +opX +opX +opX +opX +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +opX +opX +opX +opX +opX +opX +opX +opX +opX +opX +xtK +mNY +wFL +wFL +wFL +wFL +wFL +moR +orn +orn +orn +orn +orn +gCo +moR +moR +moR +moR +moR +mNY +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +mRL +ewB +ewB +ewB +ewB +ewB +ewB +ewB +ewB +ewB +uRP +xrA +qOt +wGX +fAB +fXf +gJQ +jFu +lAq +pUv +pUv +vwm +gWi +dSb +pEo +sLM +utq +vPo +ewB +ewB +puk +puk +puk +puk +roT +mEx +mEx +xIU +rXy +rXy +rXy +gkV +gkV +gkV +rXy +rXy +rXy +hIf +mEx +mEx +vlH +vlH +roT +roT +gAO +roT +roT +vlH +fJx +gSq +fJx +pAD +iUS +iUS +pAD +gSq +dHV +gSq +pAD +chb +iUS +pAD +hIC +vpD +vpD +vpD +gBA +gBA +gBA +gBA +gBA +gBA +vpD +vpD +vpD +hIC +pAD +eqx +oOg +jiW +oqK +wja +rOS +oqK +nvQ +oOg +dyo +pAD +pEe +pEe +pEe +nxV +qeE +amw +qTA +rLA +pEe +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(50,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +xtK +opX +opX +opX +opX +opX +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +opX +opX +opX +opX +opX +opX +opX +opX +opX +opX +xtK +mNY +wFL +wFL +wFL +wFL +wFL +moR +orn +orn +orn +orn +orn +gCo +moR +moR +moR +moR +moR +mNY +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +mRL +ewB +ewB +ewB +ewB +ewB +ewB +ewB +ewB +ewB +xCg +xCg +ewB +ewB +ewB +ewB +ewB +ewB +ewB +ewB +ewB +mVy +roT +roT +roT +vlH +mEx +mEx +rXy +rXy +rXy +gkV +iNa +mxZ +gkV +gkV +rXy +rXy +rXy +mEx +mEx +vlH +vlH +mEx +mEx +mEx +mEx +mEx +vlH +gBA +gBA +gBA +pAD +gSq +gSq +pAD +gBA +gBA +gBA +pAD +gSq +gSq +pAD +gBA +gBA +piF +piF +piF +gBA +piF +piF +gBA +piF +piF +piF +gBA +gBA +pAD +kfp +gBA +rOS +oqK +wja +rOS +oqK +wja +gBA +hwF +pAD +dgl +dgl +xKF +pEe +dgl +amw +quS +rLA +pEe +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(51,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +xtK +opX +opX +opX +opX +opX +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +opX +opX +opX +opX +opX +opX +opX +opX +opX +opX +xtK +mNY +wFL +wFL +wFL +wFL +wFL +moR +orn +orn +orn +orn +orn +gCo +moR +moR +moR +moR +moR +mNY +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +ewB +aBg +pUv +bkx +ewB +pUv +pUv +pUv +pUv +pUv +pUv +pUv +pUv +pUv +pUv +ewB +pUv +pUv +ewB +xCg +roT +mEx +mEx +mEx +uDp +mEx +mEx +gXc +rjT +gkV +iNa +tsG +vlH +rof +bLe +gkV +tiB +fcJ +mEx +mEx +fCK +mEx +mEx +mEx +mEx +mEx +mEx +aEG +gBA +piF +gBA +cso +gBA +gBA +gBA +gBA +gBA +gBA +gBA +gBA +gBA +fJx +gBA +gBA +gBA +gBA +gBA +gBA +gBA +gBA +gBA +gBA +gBA +gBA +gBA +kBU +fJx +vQy +piF +iTB +sKk +kEo +fsx +qqa +xmN +piF +kBU +quw +xdw +rdN +sLv +sLv +sLv +lMN +qTA +rLA +nxV +oVn +oVn +oVn +oVn +oVn +oVn +oVn +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(52,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +xtK +opX +opX +opX +opX +opX +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +opX +opX +opX +opX +opX +opX +opX +opX +opX +opX +xtK +mNY +wFL +wFL +wFL +wFL +wFL +moR +orn +orn +orn +orn +orn +gCo +moR +moR +moR +moR +moR +mNY +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +ewB +aPN +pUv +pUv +bJF +pUv +pUv +pUv +pUv +pUv +pUv +pUv +pUv +pUv +pUv +xJb +pUv +pUv +xJb +xCg +tCp +mEx +mEx +mEx +roT +mEx +mEx +nYE +rXy +eWJ +iNa +gfY +chC +alY +gkV +gkV +rXy +vqL +mEx +mEx +roT +mEx +mEx +aZp +aZp +aZp +mEx +roT +gBA +piF +gBA +gSq +piF +piF +gBA +piF +piF +piF +gBA +gBA +gBA +gSq +gBA +gBA +nYW +rhZ +tjZ +dju +gBA +gBA +gBA +xgO +wGD +xgO +dju +gBA +gSq +gBA +piF +gBA +dcY +mTz +sxL +flk +gBA +piF +gBA +gSq +quS +qTA +qTA +qTA +quS +qTA +qTA +rLA +pEe +puk +puk +puk +puk +puk +puk +oVn +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(53,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +xtK +opX +opX +opX +opX +opX +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +opX +opX +opX +opX +opX +opX +opX +opX +opX +opX +xtK +mNY +wFL +wFL +wFL +wFL +wFL +moR +orn +orn +orn +rxB +orn +gCo +moR +moR +moR +moR +moR +mNY +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +ewB +aVM +aWS +bvG +ewB +pUv +pUv +pUv +pUv +pUv +pUv +pUv +pUv +pUv +pUv +ewB +pUv +pUv +ewB +xCg +roT +mEx +mEx +mEx +uDp +mEx +mEx +waS +rjT +gkV +iNa +ooa +vlH +rLV +ajd +gkV +tiB +uRB +mEx +mEx +fCK +mEx +mEx +mEx +mEx +mEx +mEx +aEG +gBA +piF +gBA +cso +gBA +gBA +gBA +gBA +gBA +gBA +gBA +gBA +gBA +fJx +gBA +gBA +gBA +gBA +gBA +gBA +gBA +gBA +gBA +gBA +gBA +gBA +gBA +kBU +fJx +vQy +piF +bVM +rON +vhz +pjv +opI +uWu +piF +kBU +quw +xdw +vjU +lFQ +lFQ +lFQ +pxt +qTA +rLA +nxV +oVn +oVn +oVn +oVn +oVn +oVn +oVn +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(54,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +xtK +opX +opX +opX +opX +opX +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +opX +opX +opX +opX +opX +opX +xtK +mNY +wFL +wFL +wFL +wFL +wFL +moR +orn +orn +orn +orn +orn +gCo +moR +moR +moR +moR +moR +mNY +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +mRL +ewB +ewB +ewB +ewB +ewB +ewB +ewB +ewB +ewB +xCg +xCg +ewB +ewB +ewB +ewB +ewB +ewB +ewB +ewB +ewB +mVy +roT +roT +roT +vlH +mEx +mEx +rXy +rXy +rXy +gkV +gkV +cwO +iZQ +gkV +rXy +rXy +rXy +mEx +mEx +vlH +vlH +mEx +mEx +mEx +mEx +mEx +vlH +gBA +gBA +gBA +pAD +gSq +gSq +pAD +gBA +gBA +gBA +pAD +gSq +gSq +pAD +gBA +gBA +piF +piF +piF +gBA +piF +piF +gBA +piF +piF +piF +gBA +gBA +pAD +lfu +gBA +rOS +oqK +wja +rOS +oqK +wja +gBA +uOQ +pAD +dgl +dgl +xKF +pEe +dgl +amw +quS +rLA +pEe +puk +puk +puk +puk +xeL +xeL +xeL +xeL +xeL +eVJ +gOt +gOt +eVJ +dqf +yfe +eVJ +gOt +gOt +eVJ +xeL +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(55,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +xtK +opX +opX +opX +opX +opX +tvf +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +cEK +cEK +cEK +cEK +opX +opX +opX +opX +opX +opX +xtK +mNY +wFL +wFL +wFL +wFL +wFL +moR +orn +orn +orn +orn +orn +gCo +moR +moR +moR +moR +moR +mNY +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +ewB +tfr +pUv +pUv +pUv +fCz +vwm +gTU +kbj +pUv +pUv +pUv +pUv +mGD +nrP +vwm +sQw +pUv +pUv +xTk +ewB +puk +puk +puk +puk +vlH +mEx +mEx +lKy +rXy +rXy +rXy +gkV +gkV +gkV +rXy +rXy +rXy +oKc +mEx +mEx +vlH +jKw +vDV +vDV +jdD +vDV +vDV +jKw +fJx +gSq +fJx +pAD +iUS +chb +pAD +gSq +dHV +gSq +pAD +iUS +iUS +pAD +hIC +gBA +gBA +gBA +wcx +gBA +vpD +vpD +gBA +gBA +mRQ +wcx +gBA +hIC +pAD +boE +oUZ +aso +oqK +wja +rOS +oqK +qXp +oUZ +mkJ +pAD +pEe +pEe +pEe +nxV +use +amw +qTA +rLA +pEe +puk +puk +puk +puk +rBz +uwu +chh +chh +chh +omB +kpG +kpG +qXg +qXg +bXb +qXg +kpG +kpG +sdu +eVJ +omB +xeL +xeL +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(56,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +xtK +opX +opX +opX +opX +opX +tvf +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +cEK +opX +opX +opX +opX +opX +opX +xtK +mNY +wFL +wFL +wFL +wFL +wFL +moR +orn +orn +orn +orn +orn +gCo +moR +moR +moR +moR +moR +mNY +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +ewB +czK +pUv +pUv +pUv +fCz +vwm +hkh +pUv +pUv +pUv +pUv +pUv +pUv +nCl +vwm +sQT +pUv +pUv +xYB +ewB +mRL +puk +puk +puk +vlH +mEx +mEx +mEx +hFD +rXy +rXy +rJp +rXy +rJp +rXy +rXy +hVa +mEx +mEx +mEx +vlH +wha +wha +wha +wha +sqs +sqs +jKw +gBA +gBA +gBA +pAD +gBA +gBA +gBA +gBA +gBA +gBA +gBA +gBA +gBA +fVm +fVm +fVm +fVm +fVm +nSu +fVm +fVm +fVm +fVm +ogY +hqt +gOp +ogY +fVm +pAD +mTz +kZo +lMO +pAD +eRA +wsc +pAD +gqi +kZo +mTz +pAD +kpE +kpE +kpE +kpE +nxV +amw +qTA +rLA +pEe +puk +puk +puk +puk +rBz +uwu +uTx +nzU +nzU +gRE +kpG +kpG +qXg +qXg +qXg +qXg +kpG +kpG +kpG +kgy +kpG +kpG +eVJ +xeL +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(57,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +xtK +opX +opX +opX +opX +tvf +tvf +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +opX +opX +opX +opX +opX +opX +xtK +mNY +wFL +wFL +wFL +wFL +wFL +moR +orn +orn +orn +orn +orn +gCo +moR +moR +moR +moR +moR +mNY +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +ewB +hWL +cTP +pUv +cTP +fEL +ewB +hmW +pUv +pUv +pUv +pUv +pUv +pUv +hzY +ewB +sRd +uwR +pUv +ybI +ewB +ewB +puk +puk +puk +vlH +mEx +mEx +mEx +mEx +lKy +rXy +aQv +hNd +wdn +rXy +oKc +mEx +mEx +mEx +mEx +vlH +wha +tJC +wha +wha +sqs +jrv +jKw +gBA +gBA +gBA +pAD +gBA +wdS +uLb +uLb +kEd +uLb +uLb +rfY +gBA +fVm +puk +puk +fVm +rwU +roX +xdM +xdM +fVm +sBp +lOG +uKm +pZu +yhh +tay +fzX +iby +iby +iby +fzX +hFB +uVK +fzX +iby +iby +iby +fzX +kpE +kpE +kpE +kpE +nxV +amw +quS +rLA +nxV +puk +puk +puk +xeL +xeL +xeL +chh +chh +chh +omB +kpG +kpG +kpG +kpG +kpG +kpG +kpG +kpG +lKk +omB +kpG +twM +npO +pyX +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(58,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +xtK +opX +opX +opX +opX +tvf +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +opX +opX +opX +opX +opX +opX +xtK +mNY +wFL +wFL +wFL +wFL +wFL +moR +orn +orn +orn +orn +orn +gCo +moR +moR +moR +moR +moR +mNY +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +ewB +pUv +pUv +pUv +pUv +pUv +xJb +pUv +pUv +kDB +kIq +uct +fwt +pUv +pUv +lwT +pUv +pUv +pUv +pUv +yjW +ewB +puk +puk +puk +vlH +vlH +uQV +mEx +mEx +mEx +mEx +mEx +mEx +mEx +mEx +mEx +mEx +mEx +uQV +vlH +vlH +mwS +knl +sqs +wha +sqs +wha +vDV +gBA +piF +gBA +gSq +gBA +eva +rrI +cAI +rrI +cAI +rrI +pXt +gBA +fVm +puk +puk +spL +syd +xdM +xdM +xdM +fVm +sdg +adQ +fUC +fUC +nYF +nQt +fzX +oea +fJr +eRh +fzX +fZs +mig +fiE +ibJ +dGA +gxr +fzX +kpE +kpE +kpE +kpE +pEe +amw +qTA +rLA +pEe +puk +puk +puk +rBz +uwu +xeL +xeL +xeL +xeL +xeL +kpG +kpG +qXg +qXg +qXg +qXg +kpG +kpG +eVJ +eVJ +kpG +twM +ale +tEZ +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(59,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +xtK +opX +opX +opX +opX +tvf +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +opX +opX +opX +opX +opX +opX +xtK +mNY +wFL +wFL +wFL +wFL +wFL +moR +aUg +orn +orn +orn +uca +gCo +moR +moR +moR +moR +moR +mNY +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +ewB +pUv +pUv +pUv +pUv +pUv +xJb +pUv +pUv +kDB +kVF +lgz +fwt +pUv +pUv +lwT +pUv +pUv +pUv +pUv +aFs +ewB +puk +puk +puk +vlH +vlH +vlH +mEx +mEx +mEx +mEx +mEx +mEx +mEx +mEx +mEx +mEx +mEx +vlH +vlH +vlH +fnx +shh +hkW +wha +wha +wha +vDV +gBA +piF +gBA +gSq +adC +nbI +rrI +eDt +rrI +eDt +rrI +oNZ +adC +fVm +puk +puk +fVm +rLv +xdM +fVm +fVm +fVm +wRu +kih +gOm +gOm +iFo +kPP +fzX +oow +hkk +wXy +iby +hkk +hmB +hkk +pQt +hkk +mMW +fzX +fzX +kpE +kpE +kpE +pEe +amw +qTA +rLA +pEe +puk +puk +puk +rBz +uwu +mZs +hQJ +hyg +uak +pyX +kpG +kpG +dqf +gQs +gQs +yfe +tbG +kpG +omB +xdd +kpG +kpG +xoE +tEZ +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(60,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +xtK +opX +opX +opX +opX +tvf +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +opX +opX +opX +opX +opX +opX +xtK +mNY +wFL +wFL +wFL +wFL +wFL +gCo +gCo +gCo +gCo +gCo +gCo +gCo +wFL +wFL +wFL +wFL +wFL +mNY +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +ewB +vWV +vWV +pUv +vWV +vWV +ewB +gcn +pUv +kDB +wOI +liK +fwt +pUv +hzY +ewB +mxq +vWV +pUv +vWV +rQI +ewB +puk +puk +vlH +vlH +vlH +vlH +vlH +vlH +vlH +vlH +cRj +roT +cRj +vlH +vlH +vlH +vlH +vlH +vlH +vlH +fHE +wha +wha +wha +wha +wha +vDV +gBA +piF +gBA +gSq +mTz +nqu +rrI +eDt +rrI +eDt +rrI +xOi +mTz +fVm +puk +puk +fVm +rLv +xdM +knZ +oiV +fVm +aVy +xUL +gOm +gOm +ixP +aab +fzX +jMp +hkk +mOd +iby +hbb +dpK +rpb +fUL +qqE +rqz +bkZ +fzX +kpE +kpE +kpE +pEe +amw +qTA +rLA +pEe +puk +puk +puk +rBz +uwu +bCv +kEg +xiF +tTj +pGP +kpG +kpG +qXg +qXg +qXg +qXg +kpG +kpG +eVJ +eVJ +hEt +twM +msh +tEZ +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(61,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +xtK +opX +opX +opX +opX +tvf +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +opX +opX +opX +opX +opX +opX +xtK +mNY +wFL +wFL +wFL +wFL +wFL +wFL +wFL +wFL +wFL +wFL +wFL +wFL +wFL +wFL +wFL +wFL +wFL +mNY +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +ewB +pUv +pUv +pUv +pUv +pUv +vwm +hzY +pUv +pUv +pUv +pUv +pUv +pUv +nSs +vwm +hBY +pUv +pUv +pUv +bcB +ewB +puk +puk +vlH +kNX +kNX +kNX +kNX +kNX +kNX +kNX +kNX +kNX +kNX +kNX +kNX +kNX +kNX +kNX +kNX +jKw +wha +wha +wha +wha +wha +wha +jKw +gBA +gBA +gBA +pAD +mTz +nqu +rrI +rrI +rrI +rrI +rrI +xOi +mTz +fVm +puk +puk +fVm +xdM +xdM +fVm +fVm +fVm +hUo +jhI +fUC +fUC +knY +yhh +fzX +jRF +hkk +mOd +iby +hkk +plV +hkk +wZn +hkk +hkk +mMW +fzX +kpE +kpE +kpE +nxV +amw +quS +rLA +nxV +puk +puk +puk +xeL +xeL +eVJ +tDS +xiF +xiF +ylo +kpG +kpG +kpG +kpG +kpG +kpG +kpG +kpG +lse +omB +kpG +twM +wXr +pGP +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(62,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +xtK +opX +opX +opX +opX +tvf +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +opX +opX +opX +opX +opX +opX +xtK +mNY +wFL +wFL +wFL +wFL +wFL +wFL +wFL +wFL +wFL +wFL +wFL +wFL +wFL +wFL +wFL +wFL +wFL +mNY +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +ewB +pUv +pUv +pUv +pUv +pUv +vwm +hPK +hPK +pUv +pUv +pUv +pUv +xAB +kcj +vwm +oby +uAD +wej +yjS +avo +ewB +puk +puk +vlH +kNX +kNX +kNX +kNX +kNX +kNX +kNX +kNX +kNX +kNX +kNX +kNX +kNX +kNX +kNX +kNX +jKw +wha +wha +wha +wha +wha +wha +jKw +gBA +gBA +gBA +pAD +mTz +vxA +ggl +ggl +ggl +ggl +ggl +fjB +mTz +fVm +puk +puk +fVm +fVm +xdM +pke +hTz +fVm +uAd +qHj +qHj +qHj +mxf +maT +fzX +acY +lvQ +dls +fzX +puh +bBh +aOF +gvl +qRq +bSM +mMW +fzX +kpE +kpE +kpE +nxV +amw +qTA +rLA +pEe +puk +puk +puk +puk +rBz +uwu +jVR +xiF +jVR +pyX +kpG +kpG +qXg +qXg +qXg +qXg +kpG +kpG +kpG +kgy +kpG +kpG +eVJ +xeL +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(63,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +xtK +opX +opX +opX +opX +tvf +tvf +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +opX +opX +opX +opX +opX +opX +xtK +mNY +wFL +wFL +wFL +wFL +wFL +wFL +wFL +wFL +wFL +wFL +wFL +wFL +wFL +wFL +wFL +wFL +wFL +mNY +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +mRL +ewB +ewB +ewB +ewB +ewB +ewB +ewB +ewB +ewB +xCg +xCg +ewB +ewB +ewB +ewB +ewB +ewB +ewB +ewB +ewB +mRL +puk +puk +vlH +kNX +kNX +kNX +kNX +kNX +kNX +kNX +kNX +kNX +kNX +kNX +kNX +kNX +kNX +kNX +kNX +jKw +eXR +iIG +wha +wha +wha +tra +jKw +gBA +piF +gBA +pAD +mTz +mTz +mTz +mTz +mTz +mTz +mTz +mTz +mTz +fVm +puk +puk +puk +fVm +fVm +fVm +fVm +fVm +fVm +fnh +gHB +gHB +fVm +lJJ +fzX +fzX +dam +yeA +fzX +hFB +lUp +fzX +fzX +fzX +qKZ +fzX +fzX +kpE +kpE +kpE +pEe +amw +qTA +rLA +pEe +puk +puk +puk +puk +rBz +uwu +eMi +xiF +eMi +pGP +kpG +kpG +qXg +qXg +irx +qXg +kpG +clN +sdu +eVJ +omB +xeL +xeL +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(64,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +xtK +opX +opX +opX +opX +opX +tvf +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +qrS +pFt +pFt +pFt +pFt +pFt +dxS +opX +opX +opX +opX +opX +opX +xtK +mNY +wFL +wFL +wFL +wFL +wFL +wFL +wFL +wFL +wFL +wFL +wFL +wFL +wFL +wFL +wFL +wFL +wFL +mNY +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +ewB +qFF +fKI +gde +fKI +qFF +ewB +pUv +pUv +pUv +pUv +pUv +pUv +pUv +pUv +ewB +puk +puk +puk +puk +puk +vlH +kNX +kNX +kNX +tui +tui +tui +sKx +jGa +jGa +sKx +tui +tui +tui +tui +kNX +kNX +jKw +jKw +jKw +jKw +jKw +jKw +jKw +jKw +gBA +piF +gBA +pAD +pAD +pAD +pAD +pAD +hUI +pAD +pAD +pAD +pAD +fVm +puk +puk +puk +puk +puk +puk +puk +fVm +nCe +vYZ +njq +vYZ +lOG +vbt +fzX +wQR +rKs +rqz +kSs +fZs +mig +rqz +fJr +kSs +rKs +dTY +fzX +kpE +kpE +kpE +pEe +amw +qTA +rLA +pEe +oVn +oVn +oVn +oVn +xeL +xeL +xeL +xeL +xeL +eVJ +kuN +kuN +eVJ +dqf +yfe +eVJ +kuN +kuN +eVJ +xeL +iJr +bYU +nxV +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(65,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +xtK +opX +opX +opX +opX +opX +tvf +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +pFt +dxS +dxS +dxS +dxS +opX +opX +opX +opX +opX +opX +xtK +mNY +wFL +wFL +wFL +wFL +wFL +wFL +wFL +wFL +wFL +wFL +wFL +wFL +wFL +wFL +wFL +wFL +wFL +mNY +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +ewB +qFF +fKI +gde +fKI +qFF +ewB +pUv +pUv +pUv +pUv +pUv +pUv +pUv +gBq +ewB +puk +puk +puk +puk +puk +vlH +kNX +tui +tui +tui +iOk +oCy +tui +jYm +kOA +tui +lAt +mHX +nrd +tui +tui +kNX +kNX +vlH +puk +puk +puk +puk +puk +pAD +gBA +piF +gBA +pAD +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +spL +plx +gOm +gOm +gOm +gOm +xra +fzX +lAu +sJY +hkk +hkk +hkk +hkk +hkk +hkk +hkk +hkk +hPC +fzX +kpE +kpE +kpE +pEe +amw +quS +rLA +nxV +puk +puk +puk +puk +puk +puk +oVn +puk +puk +pEe +kHc +kHc +pEe +puk +puk +pEe +kHc +kHc +pEe +puk +pEe +pNn +pEe +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(66,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +xtK +opX +opX +opX +opX +opX +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +opX +opX +opX +opX +opX +opX +xtK +mNY +mNY +mNY +mNY +mNY +mNY +mNY +mNY +mNY +mNY +mNY +mNY +mNY +mNY +mNY +mNY +mNY +mNY +mNY +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +ewB +qFF +fKI +gde +fKI +qFF +ewB +pUv +pUv +pbT +pbT +pbT +pFT +pbT +pbT +pbT +puk +puk +puk +puk +puk +vlH +tui +tui +vjn +iyY +jcp +jcp +tui +kxd +kxd +tui +jcp +jcp +jcp +jcp +tui +tui +kNX +vlH +puk +puk +puk +puk +puk +pAD +gBA +gBA +gBA +pAD +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +fVm +aeC +mWm +kBC +kyq +kyq +bIL +fzX +bsW +kuy +hkk +hkk +rNU +hkk +jlI +hkk +jlI +hkk +rKf +fzX +kpE +kpE +kpE +nxV +amw +qTA +rLA +pEe +puk +puk +puk +puk +puk +puk +oVn +puk +puk +pEe +rSd +bos +pEe +puk +puk +pEe +rSd +bos +pEe +puk +pEe +pNn +pEe +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(67,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +xtK +opX +opX +opX +opX +opX +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +opX +opX +opX +opX +opX +opX +opX +opX +opX +opX +xtK +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +ewB +dtg +jIe +pUv +jIe +pUv +xJb +pUv +pUv +pbT +crr +gno +pHS +gno +crr +wer +puk +puk +puk +puk +puk +vlH +tui +hYD +jcp +iBk +wQJ +jcp +jGi +jcp +kTT +tui +lYO +ilY +ilY +jcp +sKx +tui +tui +vlH +puk +puk +puk +puk +puk +pAD +hUI +pAD +hUI +pAD +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +fVm +fVm +fVm +fVm +fVm +fVm +fVm +fzX +bsW +kuy +hkk +hkk +dfh +hkk +bcT +hkk +bcT +hkk +uSn +fzX +kpE +kpE +kpE +nxV +amw +qTA +rLA +nxV +pEe +pEe +nxV +pEe +pEe +pEe +nxV +pEe +pEe +pEe +kyO +wgl +pEe +pEe +pEe +pEe +kyO +wgl +pEe +puk +pEe +pNn +pEe +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(68,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +xtK +opX +opX +opX +opX +opX +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +opX +opX +opX +opX +opX +opX +opX +opX +opX +opX +xtK +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +ewB +dFX +pUv +pUv +pUv +pUv +xJb +pUv +pUv +pbT +gno +tnL +pVs +tnL +gno +wer +puk +puk +puk +puk +puk +vlH +tui +ihn +fyR +iGL +lIS +jHN +tui +jcp +jcp +tui +olC +olC +olC +jcp +oHF +ovx +oxc +vlH +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +fzX +mjX +iOG +hkk +hkk +hkk +hkk +aOF +vMS +vMS +vMS +iSO +fzX +kpE +kpE +nxV +nxV +amw +quS +rdN +nxV +uyv +bxe +sLv +bxe +sLv +bxe +nEB +bxe +uyv +pEe +kHc +kHc +pEe +bBK +bBK +pEe +kHc +kHc +pEe +pEe +nxV +tJi +nxV +nxV +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(69,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +xtK +opX +opX +opX +opX +opX +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +opX +opX +opX +opX +opX +opX +opX +opX +opX +opX +xtK +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +ewB +kND +pUv +pUv +pUv +kgI +ewB +pUv +pUv +pbT +gno +eeY +owZ +tos +gno +wer +puk +puk +puk +puk +puk +vlH +tui +tui +tui +tui +tui +tui +tui +jcp +jcp +jGi +jcp +jcp +jcp +jcp +jcp +ovx +oLV +vlH +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +fzX +qnw +hkk +hkk +hkk +hkk +hkk +rqz +fzX +iby +iby +fzX +fzX +nxV +nxV +nxV +bBK +amw +qTA +bgk +kGu +vPk +quS +wHj +oKb +quS +quS +quS +quS +quS +hgN +wqh +wqh +qUO +sLv +sLv +oWy +wqh +wqh +qUO +sLv +nxV +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(70,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +xtK +opX +opX +opX +opX +opX +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +opX +opX +opX +opX +opX +opX +opX +opX +opX +opX +xtK +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +ewB +dST +pUv +pUv +pUv +kgI +ewB +pUv +pUv +pbT +gno +elO +owZ +owZ +gno +wer +puk +puk +puk +puk +puk +vlH +kNX +kNX +kNX +kNX +pYb +jcy +jcp +jcp +jcp +tui +jcp +jcp +jcp +jcp +jcp +tui +tui +vlH +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +fzX +lPU +dKa +dQy +vMS +qRq +puh +bBh +fzX +qSo +fJr +ooh +fzX +puk +puk +cIP +dgl +amw +qTA +quS +pEe +quS +quS +wHj +rgS +oKb +quS +qTA +qTA +qTA +quS +qTA +qTA +qTA +quS +quS +qTA +qTA +qTA +quS +bgk +cIP +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(71,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +xtK +opX +opX +opX +opX +opX +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +tvf +opX +opX +opX +opX +opX +opX +opX +opX +opX +opX +xtK +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +ewB +ewB +ewB +gvU +ewB +ewB +ewB +cmj +cmj +pbT +gno +oGt +owZ +owZ +gno +wer +puk +puk +puk +puk +puk +vlH +kNX +kNX +kNX +kNX +pYb +uFD +jnM +jcp +jcp +tui +tui +tui +tui +tui +tui +tui +kNX +vlH +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +fzX +fzX +fzX +fzX +fzX +fzX +hFB +uVK +fzX +qhU +hkk +fcN +fzX +puk +puk +nxV +dgl +lMN +qTA +bgk +kGu +vPk +quS +quS +mNf +quS +quS +quS +quS +quS +quS +quS +quS +quS +quS +quS +quS +quS +quS +quS +vjU +nxV +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(72,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +xtK +xtK +xtK +xtK +xtK +xtK +xtK +xtK +xtK +sFf +sFf +sFf +sFf +sFf +sFf +sFf +sFf +sFf +sFf +sFf +sFf +sFf +sFf +xtK +xtK +xtK +xtK +xtK +xtK +xtK +xtK +xtK +xtK +xtK +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +ewB +ujN +dXm +dXm +hXQ +hXQ +ewB +pUv +pUv +pbT +gno +owZ +owZ +tqp +gno +wer +puk +puk +puk +puk +puk +vlH +kNX +kNX +kNX +kNX +pYb +djl +jcp +jcp +jcp +tui +mws +mLY +nZP +omb +mLY +tui +tui +vlH +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +fzX +xiN +pTc +xtg +ues +fzX +fZs +mig +iby +lCP +hkk +gfU +fzX +puk +puk +nxV +nxV +wHT +quS +wHT +nxV +wCB +xWO +lFQ +xWO +lFQ +xWO +lFQ +xWO +wCB +xWO +lFQ +xWO +llZ +wCB +wCB +eox +xWO +lFQ +xWO +eHd +nxV +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(73,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +xtK +tvf +tvf +tvf +tvf +tvf +tvf +opX +opX +opX +opX +opX +opX +opX +opX +opX +opX +opX +xtK +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +ewB +qPy +dXm +dXm +dXm +dXm +ewB +pUv +pUv +pbT +gno +owZ +owZ +tqp +gno +wer +puk +puk +puk +puk +puk +vlH +tui +tui +tui +tui +tui +tui +tui +jcp +jcp +jGi +jcp +jcp +jcp +jcp +jcp +ovx +oxc +vlH +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +fzX +xIb +hkk +hkk +fHs +fBS +vtF +fHs +hQt +vtF +hkk +fcN +fzX +puk +puk +puk +nxV +cuK +pEe +cuK +nxV +pEe +pEe +nxV +pEe +pEe +pEe +nxV +pEe +pEe +nxV +pEe +pEe +pEe +nxV +nxV +pEe +pEe +pEe +nxV +nxV +nxV +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(74,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +xtK +tvf +tvf +tvf +tvf +tvf +tvf +opX +opX +opX +opX +opX +opX +opX +opX +opX +opX +opX +xtK +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +mRL +ewB +ewB +dXm +dXm +ewB +ewB +ewB +pUv +pUv +pbT +gno +owZ +qhu +pmh +gno +wer +puk +puk +puk +puk +puk +vlH +tui +ijP +axn +tui +jcp +jcp +jcp +jcp +jcp +tui +jcp +jcp +jcp +jcp +orI +ovx +oLV +vlH +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +fzX +vKY +hkk +ifF +ouQ +fzX +qRq +aOF +iby +vMS +vMS +snx +fzX +puk +puk +puk +nxV +iAT +quS +iAT +wLi +kpE +kpE +kpE +kpE +kpE +kpE +kpE +kpE +kpE +kpE +kpE +kpE +kpE +kpE +kpE +kpE +kpE +kpE +kpE +mLw +nxV +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(75,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +xtK +tvf +tvf +tvf +tvf +tvf +tvf +opX +opX +opX +opX +opX +opX +opX +opX +opX +opX +opX +xtK +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +ewB +xMZ +qhV +dXm +dXm +ift +khR +ewB +pUv +pUv +pbT +gno +owZ +qyu +gkx +gno +wer +puk +puk +puk +puk +puk +vlH +tui +ivf +jcp +jGi +jcp +xsa +xsa +xsa +kTT +tui +mAW +xsa +oci +jcp +sKx +tui +tui +vlH +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +fzX +gKQ +xdr +jRz +sYO +fzX +rgj +mMW +fzX +fzX +fzX +fzX +fzX +puk +puk +puk +nxV +pxt +qTA +awh +nxV +kpE +kpE +kpE +kpE +kpE +kpE +kpE +kpE +kpE +kpE +kpE +kpE +kpE +kpE +kpE +kpE +kpE +kpE +mLw +mLw +nxV +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(76,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +xtK +tvf +tvf +tvf +tvf +tvf +tvf +opX +opX +opX +opX +opX +opX +opX +opX +opX +opX +opX +xtK +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +ewB +dgH +dXm +dXm +dXm +ewB +ewB +ewB +pUv +pUv +pbT +gno +eZr +qzA +guR +gno +wer +puk +puk +puk +puk +puk +vlH +tui +tui +iyN +tui +jcp +xsa +xsa +xsa +jcp +tui +jcp +jcp +jcp +jcp +tui +tui +kNX +vlH +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +fzX +fzX +fzX +fzX +fzX +fzX +rgj +mMW +fzX +vTL +xCo +cbv +fzX +puk +puk +puk +nxV +amw +qTA +rLA +nxV +kpE +kpE +kpE +kpE +kpE +kpE +kpE +kpE +kpE +kpE +kpE +mLw +mLw +kpE +kpE +kpE +mLw +mLw +mLw +mLw +nxV +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(77,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +xtK +sYW +sYW +sYW +sYW +sYW +sYW +sKH +sKH +sKH +sKH +sKH +opX +opX +opX +opX +opX +opX +xtK +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +ewB +eXu +ebh +dXm +dXm +irR +khR +ewB +pUv +pUv +pbT +gno +qAv +qAv +qAv +gno +wer +puk +puk +puk +puk +puk +vlH +kNX +tui +tui +tui +jcp +jcp +jcp +jcp +jcp +tui +mIs +mQE +ocL +tui +tui +kNX +kNX +vlH +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +fzX +kuU +kuU +kuU +fzX +csP +kSs +rqz +fzX +nKt +hkk +rTu +fzX +puk +puk +puk +nxV +amw +qTA +rLA +nxV +kpE +kpE +mLw +kpE +kpE +kpE +kpE +kpE +kpE +kpE +mLw +mLw +mLw +mLw +mLw +mLw +mLw +mLw +mLw +mLw +nxV +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(78,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +xtK +sYW +sYW +sYW +sYW +sYW +sYW +sKH +wie +sKH +sKH +sKH +opX +opX +opX +opX +opX +opX +xtK +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +mRL +ewB +ewB +ewB +ewB +ewB +ewB +ewB +pUv +pUv +pbT +dlk +fYE +fYE +fYE +gHN +wer +puk +puk +puk +puk +puk +vlH +kNX +kNX +kNX +tui +tui +tui +tui +tui +tui +tui +tui +tui +tui +tui +kNX +kNX +kNX +vlH +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +fzX +wpL +wpL +vmq +ajc +vtF +hkk +fHs +sNN +vtF +hkk +ezG +fzX +puk +puk +puk +nxV +amw +quS +rLA +qDH +pHK +pHK +qDH +pHK +pHK +qDH +pHK +pHK +qDH +mLw +mLw +mLw +mLw +mLw +mLw +mLw +mLw +mLw +mLw +mLw +nxV +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(79,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +xtK +sYW +sYW +sYW +sYW +sYW +sYW +sKH +sKH +sKH +sKH +sKH +opX +opX +opX +opX +opX +opX +xtK +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +mRL +ewB +ewB +pbT +pbT +pbT +pbT +pbT +pbT +pbT +puk +puk +puk +puk +puk +vlH +kNX +kNX +kNX +kNX +kNX +kNX +kNX +kNX +kNX +kNX +kNX +kNX +kNX +kNX +kNX +kNX +kNX +vlH +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +fzX +kJK +kJK +kJK +fzX +qRq +hkk +aOF +fzX +dzS +dzS +xid +fzX +puk +puk +puk +nxV +xrk +xKt +xcR +qDH +pnP +bdh +qDH +pnP +nOI +qDH +pnP +nOI +qDH +nxV +nxV +nxV +nxV +nxV +nxV +nxV +nxV +nxV +nxV +nxV +nxV +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(80,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +xtK +tvf +tvf +tvf +tvf +tvf +tvf +opX +opX +opX +opX +opX +opX +opX +opX +opX +opX +opX +xtK +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +vlH +hsn +hsn +hsn +hsn +hsn +hsn +hsn +hsn +hsn +hsn +hsn +hsn +hsn +hsn +hsn +hsn +hsn +vlH +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +fzX +fzX +fzX +fzX +fzX +fzX +khX +fzX +fzX +fzX +fzX +fzX +fzX +puk +puk +puk +nxV +rcm +rcm +rcm +qDH +pry +dyr +qDH +pry +dyr +qDH +pry +dyr +qDH +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(81,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +xtK +tvf +tvf +tvf +tvf +tvf +tvf +opX +opX +opX +opX +opX +opX +opX +opX +opX +opX +opX +xtK +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +nxV +nxV +wqm +nxV +qDH +gyQ +blc +qDH +gyQ +blc +qDH +gyQ +blc +qDH +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(82,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +xtK +tvf +tvf +tvf +tvf +tvf +tvf +opX +opX +opX +opX +opX +opX +opX +opX +opX +opX +opX +xtK +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +nxV +nxV +nxV +nxV +nxV +nxV +cIP +nxV +nxV +nxV +nxV +nxV +nxV +nxV +nxV +nxV +nxV +hgN +wqh +kKs +qDH +hTv +qDH +qDH +hTv +qDH +qDH +hTv +qDH +qDH +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(83,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +xtK +tvf +tvf +tvf +tvf +tvf +tvf +opX +opX +opX +opX +opX +opX +opX +opX +opX +opX +opX +xtK +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +cIP +quS +quS +quS +quS +quS +quS +quS +quS +quS +quS +quS +quS +quS +quS +quS +quS +quS +qTA +quS +ekW +tRx +tRx +tRx +tRx +tRx +tRx +tRx +tRx +qDH +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(84,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +xtK +tvf +tvf +tvf +tvf +tvf +tvf +opX +opX +opX +opX +opX +opX +opX +opX +opX +opX +opX +xtK +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +nxV +quS +quS +qTA +qTA +qTA +quS +quS +qTA +qTA +quS +quS +qTA +qTA +qTA +quS +quS +qTA +qTA +quS +hMT +tRx +tRx +tRx +tRx +tRx +tRx +tRx +ybR +qDH +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(85,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +xtK +tvf +tvf +tvf +tvf +tvf +tvf +opX +opX +opX +opX +opX +opX +opX +opX +opX +opX +opX +xtK +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +cIP +quS +quS +quS +quS +quS +quS +quS +quS +quS +quS +quS +quS +quS +quS +quS +quS +quS +qTA +quS +ekW +tRx +tRx +tRx +tRx +tRx +tRx +tRx +pQq +qDH +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(86,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +xtK +xtK +xtK +xtK +xtK +xtK +xtK +xtK +xtK +xtK +xtK +xtK +xtK +xtK +xtK +xtK +xtK +xtK +xtK +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +nxV +nxV +nxV +wHb +wHb +wHb +nxV +nxV +nxV +nxV +nxV +nxV +nxV +nxV +nxV +nxV +nxV +quS +quS +quS +qDH +qDH +hMT +hMT +hZL +hZL +hMT +hMT +qDH +qDH +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(87,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +vlH +roT +rPw +vlH +vlH +puk +puk +puk +puk +puk +puk +puk +puk +puk +nxV +quS +quS +quS +qDH +cXa +cXa +cXa +cXa +cXa +cXa +cXa +cXa +qDH +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(88,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +vlH +mEx +mEx +mEx +vlH +puk +puk +puk +puk +puk +puk +puk +puk +puk +nxV +quS +qTA +quS +qDH +rZv +rZv +cXa +cXa +cXa +cXa +rZv +rZv +qDH +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(89,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +roT +mEx +mEx +mEx +roT +puk +puk +puk +puk +puk +puk +puk +puk +puk +nxV +quS +qTA +quS +qDH +bcf +xEn +cXa +cXa +cXa +cXa +xEn +jAm +qDH +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(90,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +mVy +roT +rPw +vlH +mVy +puk +puk +puk +puk +puk +puk +puk +puk +puk +nxV +quS +qTA +quS +qDH +rZv +rZv +cXa +shY +cXa +cXa +rZv +rZv +qDH +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(91,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +xtc +hDd +hDd +hDd +hDd +iVD +xtc +hCX +xtc +iVD +hDd +hDd +hDd +hDd +xtc +puk +puk +puk +puk +nxV +quS +quS +quS +qDH +cXa +cXa +cXa +rZv +cXa +cXa +cXa +cXa +qDH +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(92,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +tSe +vVq +vVq +vVq +vVq +tSe +cVN +cVN +cVN +tSe +vVq +vVq +vVq +vVq +tSe +puk +puk +puk +puk +nxV +quS +quS +quS +qDH +qDH +qDH +qDH +qDH +qDH +qDH +qDH +qDH +qDH +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(93,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +iVD +uWM +uWM +uWM +uWM +xtc +mWp +mWp +mWp +xtc +uWM +uWM +uWM +uWM +iVD +puk +puk +puk +puk +nxV +quS +quS +lFo +nxV +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(94,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +iVD +clW +clW +clW +clW +tSe +qcS +hXl +qcS +tSe +clW +clW +clW +clW +iVD +puk +puk +puk +vlH +mVy +roT +fTK +roT +vlH +vlH +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(95,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +xtc +clW +clW +clW +clW +ofC +aro +mWp +aro +ofC +clW +clW +clW +clW +xtc +puk +puk +puk +vlH +eHb +uqy +ucM +eHb +uqy +nXg +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(96,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +xtc +xtc +xtc +xtc +xtc +xtc +tSe +aro +mWp +aro +tSe +xtc +xtc +xtc +xtc +xtc +xtc +puk +puk +vlH +uoL +mXF +cnb +obj +uoL +nXg +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(97,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +jDJ +clW +akY +akY +akY +clW +xtc +aro +mWp +aro +xtc +clW +clW +clW +clW +clW +jDJ +puk +puk +vlH +uoL +ubf +efr +wZT +uoL +nXg +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(98,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +jDJ +akY +akY +akY +akY +akY +xtc +aro +mWp +aro +rYe +clW +clW +clW +clW +clW +jDJ +puk +puk +vlH +wTz +ubf +efr +wZT +wTz +nXg +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(99,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +jDJ +akY +akY +akY +akY +akY +qcS +aro +mWp +aro +qcS +clW +clW +clW +clW +clW +jDJ +puk +puk +vlH +wTz +kUC +efr +kUD +wTz +nXg +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(100,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +jDJ +akY +akY +akY +akY +akY +xtc +aro +mWp +aro +xtc +oQs +oQs +oQs +oQs +oQs +oQs +puk +puk +vlH +wTz +ubf +efr +wZT +wTz +nXg +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(101,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +jDJ +akY +akY +akY +akY +akY +xtc +aro +mWp +aro +xtc +clW +clW +clW +clW +clW +jDJ +puk +puk +vlH +uoL +qxg +efr +xGf +uoL +nXg +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(102,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +jDJ +akY +akY +akY +akY +akY +sVW +xbf +mWp +aro +kiI +clW +clW +clW +clW +clW +jDJ +puk +puk +vlH +uoL +xUd +efr +iRL +uoL +nXg +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(103,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +jDJ +akY +akY +akY +mjf +akY +sVW +aro +mWp +aro +oQs +clW +clW +clW +clW +clW +jDJ +puk +puk +vlH +uoL +uoL +fUA +uoL +uoL +nXg +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(104,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +jDJ +akY +akY +akY +akY +akY +xtc +aro +mWp +aro +xtc +oQs +oQs +oQs +oQs +oQs +oQs +puk +puk +vlH +uoL +efr +efr +egp +uoL +nXg +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(105,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +jDJ +akY +akY +akY +akY +akY +xtc +aro +mWp +aro +xtc +kzI +oWZ +enr +tMB +tMB +oQs +puk +puk +vlH +uoL +lHY +xDI +mRa +uoL +nXg +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(106,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +jDJ +akY +akY +akY +akY +akY +xtc +aro +mWp +aro +xtc +clW +clW +clW +clW +clW +oQs +puk +puk +vlH +uoL +uoL +njM +uoL +uoL +nXg +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(107,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +jDJ +akY +akY +akY +akY +akY +gKX +aro +mWp +aro +eJH +clW +clW +clW +clW +clW +oQs +puk +puk +vlH +bbv +uoL +wTz +uoL +bbv +nXg +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(108,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +jDJ +akY +akY +akY +akY +akY +xtc +ygE +mWp +ygE +xtc +rLI +bKZ +sEr +rZg +rZg +oQs +puk +puk +vlH +vlH +vlH +vlH +vlH +vlH +vlH +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(109,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +xtc +xtc +xtc +xtc +xtc +xtc +xtc +qcS +cmS +qcS +xtc +xtc +xtc +xtc +xtc +xtc +xtc +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(110,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +jDJ +vcS +vcS +vcS +vcS +vcS +xtc +ygE +mWp +ygE +xtc +wLX +wLX +wLX +wLX +wLX +jDJ +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(111,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +jDJ +vcS +vcS +vcS +vcS +vcS +qcS +aro +mWp +jQJ +nSY +wLX +qGJ +wLX +wLX +wLX +jDJ +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(112,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +jDJ +vcS +vcS +vcS +vcS +vcS +xtc +aro +hix +aro +xtc +wLX +wLX +wLX +wLX +wLX +jDJ +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(113,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +jDJ +vcS +vcS +vcS +vcS +vcS +xtc +aro +eXb +aro +xtc +oQs +oQs +oQs +oQs +oQs +oQs +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(114,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +jDJ +vcS +vcS +vcS +vcS +vcS +xtc +aro +bJO +aro +xtc +qqm +qqm +jeE +aqH +knp +jDJ +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(115,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +jDJ +vcS +vcS +vcS +gPC +vcS +rnN +iHa +mWp +aro +eJH +mWp +mWp +mWp +tDD +tDD +jDJ +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(116,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +jDJ +vcS +vcS +vcS +vcS +vcS +rnN +aro +hix +aro +oQs +qqm +qqm +gqd +yib +mXA +jDJ +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(117,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +jDJ +vcS +vcS +vcS +vcS +vcS +xtc +aro +eXb +aro +xtc +oQs +oQs +oQs +oQs +oQs +oQs +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(118,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +jDJ +vcS +vcS +vcS +vcS +vcS +xtc +aro +bJO +aro +xtc +waw +yjB +yjB +yjB +yjB +oQs +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(119,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +jDJ +vcS +vcS +vcS +vcS +vcS +qcS +aro +mWp +aro +eJH +mWp +mWp +mWp +mWp +mWp +oQs +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(120,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +jDJ +vcS +vcS +vcS +vcS +vcS +xtc +aro +mWp +aro +xtc +mWp +mWp +mWp +mWp +mWp +oQs +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(121,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +jDJ +clW +vcS +vcS +vcS +clW +xtc +aro +mWp +aro +tSe +waw +yjB +yjB +yjB +yjB +oQs +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(122,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +xtc +xtc +xtc +xtc +xtc +xtc +iVD +qcS +cmS +qcS +iVD +xtc +xtc +xtc +xtc +xtc +xtc +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(123,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +xtc +hNz +nac +gUT +hJc +xhJ +khu +mWp +xVk +vRp +hQg +tDD +tDD +tXe +xtc +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(124,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +iVD +unV +oOR +tDD +tDD +tDD +hIL +mWp +mct +tDD +tDD +tDD +tDD +euX +iVD +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(125,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +iVD +unV +oOR +tDD +hQg +moI +pKj +mWp +xVk +xFu +tDD +tDD +tDD +ggb +iVD +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(126,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +xtc +sfZ +sOQ +tDD +ijr +xtc +qcS +rnY +qcS +xtc +ryC +tDD +tDD +tDD +xtc +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(127,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +xtc +xtc +vgW +tRA +xtc +xtc +lUr +lUr +lUr +xtc +xtc +xyq +gJo +xtc +xtc +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(128,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +xtc +xtc +xtc +xtc +vjD +tEA +lUr +viE +knt +xtc +xtc +xtc +xtc +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(129,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +xtc +vjD +rzJ +lUr +rzJ +vjD +xtc +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(130,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +qcS +tDM +sLO +ivA +jdB +lQG +qcS +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(131,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +xtc +xtc +qcS +qcS +qcS +xtc +xtc +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(132,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(133,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(134,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(135,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(136,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(137,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(138,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(139,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(140,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(141,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(142,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(143,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(144,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(145,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(146,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(147,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(148,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(149,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(150,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(151,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(152,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(153,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(154,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(155,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(156,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(157,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(158,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(159,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(160,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(161,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +bEU +gUy +gUy +gUy +gUy +gUy +gUy +gUy +gUy +gUy +gUy +gUy +gUy +gUy +gUy +gUy +gUy +gUy +gUy +gUy +gUy +puk +puk +"} +(162,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +rsU +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +gUy +puk +puk +"} +(163,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +rsU +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +fGf +puk +puk +puk +puk +puk +puk +gUy +puk +puk +"} +(164,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +rsU +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +fGf +fGf +fGf +puk +puk +puk +puk +gUy +puk +puk +"} +(165,1,1) = {" +puk +puk +rsU +bMp +bMp +bMp +bMp +bMp +bMp +bMp +bMp +bMp +bMp +rsU +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +rsU +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +fGf +fGf +fGf +fGf +puk +puk +puk +puk +gUy +puk +puk +"} +(166,1,1) = {" +puk +puk +hzT +oXu +ubh +hTk +dQV +tQS +qvu +kya +qUj +tpT +oXu +cxk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +rsU +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +fGf +fGf +fGf +fGf +fGf +puk +puk +puk +gUy +puk +puk +"} +(167,1,1) = {" +puk +puk +hzT +oXu +jTD +qzu +qfC +epP +qfC +epP +nFK +kNj +uJz +cxk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +rsU +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +fGf +fGf +fGf +fGf +fGf +fGf +puk +puk +gUy +puk +puk +"} +(168,1,1) = {" +puk +puk +hzT +oXu +rrP +lDu +epP +qfC +epP +qfC +lDN +bOR +wZE +cxk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +rsU +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +fGf +fGf +fGf +fGf +fGf +puk +puk +gUy +puk +puk +"} +(169,1,1) = {" +puk +puk +hzT +oXu +nIb +qzu +qfC +epP +qfC +epP +nFK +ghB +gMa +cxk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +rsU +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +jPM +jPM +puk +puk +puk +puk +puk +puk +puk +puk +fGf +fGf +fGf +puk +puk +puk +gUy +puk +puk +"} +(170,1,1) = {" +puk +puk +hzT +oXu +vyH +lDu +epP +qfC +epP +qfC +lDN +dpL +uaS +cxk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +rsU +ech +ech +ech +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +sLX +sLX +sLX +sLX +sLX +nkO +nkO +nkO +jPM +jPM +jPM +jPM +jPM +jPM +jPM +kjf +iWu +sTF +jPM +jPM +jPM +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +gUy +puk +puk +"} +(171,1,1) = {" +puk +puk +hzT +oXu +jMC +qzu +qfC +epP +qfC +epP +nFK +cFG +xyf +cxk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +sLX +ech +xWp +ech +ech +fGf +sLX +sLX +sLX +sLX +sLX +sLX +sLX +sLX +ddv +ddv +nEE +ddv +hIT +aIm +hIT +aTS +nsa +bpm +ctM +qTl +ptC +ptC +ptC +fry +fry +bXw +gbz +tIC +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +gUy +puk +puk +"} +(172,1,1) = {" +puk +puk +hzT +oXu +mpv +lDu +epP +qfC +epP +qfC +lDN +gtC +tOF +cxk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +sLX +ech +xWp +xWp +ech +ech +sLX +wrA +jHE +eln +jHE +spP +sLX +vAB +ddv +ddv +ddv +nEE +hIT +fWS +hIT +wJs +kqS +idR +jPM +iQT +kuj +kuj +kuj +kuj +kuj +tuK +gbz +tIC +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +gUy +puk +puk +"} +(173,1,1) = {" +puk +puk +hzT +oXu +wiL +qzu +qfC +epP +qfC +epP +nFK +bZw +ovg +cxk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +sLX +xWp +xWp +xWp +xWp +ech +sLX +nVE +eln +bcu +eln +nVE +sLX +ddv +ddv +ddv +sLX +sLX +pOm +pOm +pOm +jPM +jPM +jPM +jPM +jPM +bXx +kuj +kuj +iRf +kuj +tuK +jPM +jPM +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +gUy +puk +puk +"} +(174,1,1) = {" +puk +puk +hzT +oXu +wBb +lDu +epP +qfC +epP +qfC +lDN +dKS +sGe +cxk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +sLX +sLX +mcx +ghs +sLX +sLX +sLX +bXa +jHE +eln +jHE +izS +sLX +ddv +ddv +ddv +iDo +puk +puk +puk +puk +puk +puk +puk +puk +jPM +knH +kuj +kuj +jqO +jPM +jPM +jPM +jPM +jPM +jPM +jPM +jPM +puk +puk +puk +puk +puk +puk +puk +puk +puk +gUy +puk +puk +"} +(175,1,1) = {" +puk +puk +hzT +oXu +oXu +oXu +oXu +oXu +oXu +oXu +oXu +oXu +oXu +cxk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +sLX +sVQ +ddv +xWp +ffZ +ddv +sLX +nVE +eln +eln +eln +nVE +sLX +nEE +ddv +ddv +iDo +puk +puk +puk +puk +puk +puk +puk +puk +jPM +wZL +kIB +kuj +kuj +dqj +xOL +xOL +hiU +xOL +xOL +jPM +jPM +puk +puk +puk +puk +puk +puk +puk +puk +puk +gUy +puk +puk +"} +(176,1,1) = {" +puk +puk +rsU +cDE +cDE +cDE +cDE +cDE +cDE +cDE +cDE +cDE +cDE +rsU +bMp +bMp +bMp +bMp +bMp +bMp +bMp +bMp +bMp +bMp +rsU +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +sLX +sVQ +ddv +ddv +ddv +ddv +sLX +uJQ +jHE +eln +jcx +iPP +sLX +nEE +nEE +ddv +iDo +puk +puk +puk +puk +puk +puk +jPM +jPM +jPM +jPM +jPM +gMy +jPM +jPM +tBS +xOL +dLk +dAV +xOL +aRJ +jPM +jPM +puk +puk +puk +puk +puk +puk +puk +puk +gUy +puk +puk +"} +(177,1,1) = {" +puk +puk +hzT +kFw +kFw +kFw +kFw +kFw +kFw +kFw +kFw +kFw +mhv +rkn +pEj +pEj +pEj +pEj +pEj +pEj +pEj +pEj +pEj +pEj +cxk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +sLX +eid +ddv +ddv +ddv +ddv +sLX +xbZ +ami +frv +uXK +nVE +sLX +sLX +sLX +dnS +sLX +sLX +sLX +puk +puk +jPM +jPM +jPM +jPM +aqj +bQE +uGg +eYl +qiU +jPM +xOL +xOL +xOL +xOL +nEo +xOL +jPM +jPM +jPM +puk +puk +puk +puk +puk +puk +puk +gUy +puk +puk +"} +(178,1,1) = {" +puk +puk +hzT +kFw +kFw +oZJ +kFw +kFw +kFw +kFw +kFw +kFw +kFw +rkn +pEj +pEj +pEj +xxj +pEj +pEj +pEj +pEj +xxj +pEj +cxk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +sLX +sLX +sLX +dti +sLX +sLX +sLX +sLX +sLX +jnd +sLX +sLX +sLX +hev +hev +hev +hev +qxC +sLX +puk +puk +puk +poo +vTq +abS +eYl +eYl +rwX +eYl +jUa +jPM +kga +qeJ +ghe +jPM +jPM +jPM +jPM +gbz +tIC +puk +puk +puk +puk +puk +puk +puk +gUy +puk +puk +"} +(179,1,1) = {" +puk +puk +hzT +kFw +kFw +kFw +kFw +mhv +kFw +kFw +oZJ +kFw +kFw +rkn +pEj +pEj +pEj +pEj +pEj +pEj +pEj +pEj +pEj +pEj +cxk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +sLX +vAB +ddv +ddv +ddv +ddv +ddv +ddv +ddv +ddv +ddv +nEE +iDo +hev +hev +ttw +ttw +hev +iDo +puk +puk +puk +kRi +vMn +eYl +eYl +eYl +iOt +eYl +eYl +jyL +xnO +xnO +bsU +jPM +gme +tUq +feX +gbz +tIC +puk +puk +puk +puk +puk +puk +puk +gUy +puk +puk +"} +(180,1,1) = {" +puk +puk +hzT +mhv +kFw +kFw +kFw +kFw +kFw +kFw +kFw +kFw +kFw +rkn +pEj +xxj +pEj +pEj +pEj +pEj +xxj +pEj +pEj +pEj +cxk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +sLX +ddv +ddv +ddv +ddv +ddv +ddv +ddv +ddv +ddv +ddv +ddv +dnS +hev +ayf +aqF +dsW +oJA +iDo +puk +puk +puk +kRi +lNz +sdc +eYl +eYl +gMy +eYl +eYl +vCL +lht +oLl +eYl +sar +kqD +kqD +ymh +gbz +tIC +puk +puk +puk +puk +puk +puk +puk +gUy +puk +puk +"} +(181,1,1) = {" +puk +puk +hzT +kFw +kFw +kFw +kFw +kFw +kFw +kFw +kFw +kFw +oZJ +rkn +pEj +pEj +pEj +pEj +pEj +pEj +pEj +pEj +pEj +pEj +cxk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +sLX +ddv +lPk +ddv +ddv +ddv +ddv +ddv +ddv +ddv +ddv +ddv +iDo +hev +hev +vWd +vWd +hev +iDo +puk +puk +puk +kRi +mIb +eYl +eYl +eYl +uGg +eYl +eYl +kcd +lIc +lIc +bsU +jPM +xNf +fkt +mtX +gbz +tIC +puk +puk +puk +puk +puk +puk +puk +gUy +puk +puk +"} +(182,1,1) = {" +puk +puk +hzT +kFw +kFw +kFw +mhv +kFw +kFw +oZJ +kFw +kFw +kFw +rkn +pEj +pEj +pEj +pEj +pEj +pEj +pEj +pEj +pEj +pEj +cxk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +sLX +sLX +pDi +sLX +sLX +sLX +jqs +sLX +sLX +sLX +ddv +ddv +sLX +rAB +hev +hev +hev +hev +sLX +puk +puk +puk +kHM +bIu +aIU +eYl +eYl +rwX +eYl +tDm +jPM +kga +qeJ +ghe +jPM +jPM +jPM +jPM +gbz +tIC +puk +puk +puk +puk +puk +puk +puk +gUy +puk +puk +"} +(183,1,1) = {" +puk +puk +hzT +kFw +kFw +kFw +kFw +mhv +kFw +kFw +kFw +kFw +kFw +rkn +pEj +pEj +pEj +xxj +pEj +pEj +pEj +pEj +xxj +pEj +cxk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +sLX +ech +ech +iKT +cnx +lky +sFa +sFa +meM +sLX +ddv +ddv +sLX +sLX +sLX +dnS +sLX +sLX +sLX +puk +puk +jPM +jPM +jPM +xXs +aqj +bQE +iOt +eYl +dYu +jPM +kWA +bOP +bOP +bnS +bOP +hXB +jPM +jPM +jPM +puk +puk +puk +puk +puk +puk +puk +gUy +puk +puk +"} +(184,1,1) = {" +puk +puk +hzT +kFw +kFw +kFw +kFw +kFw +kFw +kFw +kFw +kFw +kFw +rkn +pEj +pEj +pEj +pEj +pEj +pEj +pEj +pEj +pEj +pEj +cxk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +rsU +fGf +ech +sRU +sFa +sFa +sFa +sFa +ebr +sLX +ddv +ddv +sLX +smc +ddv +ddv +iDo +puk +puk +puk +puk +puk +puk +jPM +jPM +jPM +jPM +jPM +gMy +jPM +jPM +qjO +bOP +bOP +bOP +bOP +hTd +jPM +jPM +puk +puk +puk +puk +puk +puk +puk +puk +gUy +puk +puk +"} +(185,1,1) = {" +puk +puk +hzT +kFw +oZJ +kFw +kFw +kFw +mhv +kFw +kFw +kFw +kFw +rkn +pEj +xxj +pEj +pEj +pEj +pEj +xxj +pEj +pEj +pEj +cxk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +rsU +fGf +ech +ech +bXZ +sFa +sFa +sFa +cwx +sLX +ddv +ddv +sLX +ddv +ddv +ddv +iDo +puk +puk +puk +puk +puk +puk +puk +puk +jPM +xKM +kTU +kuj +kuj +epQ +bOP +esl +hhv +etC +iBh +jPM +jPM +puk +puk +puk +puk +puk +puk +puk +puk +puk +gUy +puk +puk +"} +(186,1,1) = {" +puk +puk +hzT +kFw +kFw +kFw +kFw +kFw +kFw +kFw +kFw +kFw +oZJ +rkn +pEj +pEj +pEj +pEj +pEj +pEj +pEj +pEj +pEj +pEj +cxk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +rsU +fGf +fGf +ech +ech +pDi +ajl +nYC +sLX +sLX +ddv +ddv +sLX +ddv +ddv +ddv +iDo +puk +puk +puk +puk +puk +puk +puk +puk +jPM +lzk +kuj +kuj +lwt +jPM +jPM +jPM +jPM +jPM +jPM +jPM +jPM +puk +puk +puk +puk +puk +puk +puk +puk +puk +gUy +puk +puk +"} +(187,1,1) = {" +puk +puk +rsU +cDE +cDE +cDE +cDE +cDE +cDE +cDE +cDE +cDE +cDE +rsU +cDE +cDE +cDE +cDE +cDE +cDE +cDE +cDE +cDE +cDE +rsU +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +rsU +fGf +fGf +fGf +ech +ech +sLX +sLX +sLX +ddv +ddv +ddv +sLX +ddv +ddv +ddv +sLX +sLX +nkO +nkO +nkO +jPM +jPM +jPM +jPM +jPM +grd +kuj +phj +kuj +lgW +wQv +jPM +jPM +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +gUy +puk +puk +"} +(188,1,1) = {" +puk +puk +hzT +wjf +lOM +wjf +lOM +wjf +lOM +lOM +wjf +lOM +wjf +rkn +olZ +olZ +olZ +olZ +xAp +olZ +olZ +bXp +olZ +olZ +cxk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +rsU +fGf +fGf +fGf +sLX +lbC +omM +iGo +sLX +ddv +ddv +ddv +sLX +vis +nEE +ddv +ddv +ddv +hIT +aIm +hIT +otk +cKC +wNk +jPM +kkU +kuj +eCy +kuj +iNR +cpa +dns +gbz +tIC +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +gUy +puk +puk +"} +(189,1,1) = {" +puk +puk +hzT +lOM +tXW +nUO +nUO +nUO +tXW +nUO +nUO +tXW +lOM +rkn +olZ +xAp +olZ +olZ +olZ +olZ +olZ +olZ +hvq +olZ +cxk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +rsU +fGf +fGf +fGf +sLX +qLv +miF +miF +dti +ddv +ddv +sLX +sLX +sLX +nEE +nEE +ddv +ddv +hIT +fWS +hIT +dqX +rHT +amV +mrF +ffP +ptC +ptC +ptC +ptC +kER +mLQ +gbz +tIC +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +gUy +puk +puk +"} +(190,1,1) = {" +puk +puk +hzT +wjf +nUO +vfW +sYS +hKA +rjJ +sYS +wlf +nUO +wjf +rkn +olZ +olZ +olZ +fMG +olZ +olZ +olZ +olZ +olZ +olZ +cxk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +rsU +fGf +fGf +fGf +sLX +dlj +miF +miF +sLX +ddv +ddv +sLX +ech +sLX +sLX +sLX +sLX +sLX +pOm +pOm +pOm +jPM +jPM +jPM +jPM +jPM +jPM +jPM +kjf +iWu +sTF +jPM +jPM +jPM +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +gUy +puk +puk +"} +(191,1,1) = {" +puk +puk +hzT +lOM +tXW +hvu +mrt +gCm +gCm +mrt +kyi +tXW +lOM +rkn +olZ +olZ +olZ +olZ +hvq +olZ +olZ +olZ +fMG +olZ +cxk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +rsU +fGf +fGf +fGf +sLX +oTA +cum +oyt +sLX +pDi +ddv +sLX +ech +ech +ech +ech +ech +ech +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +jPM +jPM +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +gUy +puk +puk +"} +(192,1,1) = {" +puk +puk +hzT +wjf +nUO +eRI +gBw +jeV +jeV +aom +asC +nUO +wjf +rkn +olZ +olZ +olZ +gKB +olZ +olZ +xAp +olZ +olZ +bXp +cxk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +rsU +fGf +fGf +fGf +sLX +sLX +sLX +sLX +sLX +jnd +fER +ech +ech +ech +ech +fGf +fGf +fGf +fGf +fGf +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +fGf +fGf +puk +gUy +puk +puk +"} +(193,1,1) = {" +puk +puk +hzT +wjf +tXW +hvu +gBw +jeV +jeV +aom +kyi +tXW +wjf +rkn +olZ +olZ +olZ +olZ +olZ +olZ +olZ +bXp +olZ +olZ +cxk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +uki +uki +uki +uki +uki +jsj +nDQ +eRt +sLX +nEE +nEE +rhW +ech +ech +ech +ech +fGf +fGf +fGf +fGf +fGf +fGf +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +fGf +fGf +fGf +puk +gUy +puk +puk +"} +(194,1,1) = {" +puk +puk +hzT +lOM +nUO +eRI +gCm +gCm +gCm +gCm +asC +nUO +lOM +rkn +olZ +xAp +olZ +olZ +olZ +olZ +fMG +olZ +hvq +olZ +cxk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +uki +bYf +uki +bYf +uki +tnB +pDi +qlq +sLX +kyA +xWp +nEE +dja +xWp +wrb +ech +ech +fGf +fGf +fGf +fGf +fGf +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +fGf +fGf +fGf +puk +gUy +puk +puk +"} +(195,1,1) = {" +puk +puk +hzT +wjf +tXW +taT +xiD +gCm +gCm +ucc +xyV +tXW +wjf +rkn +olZ +olZ +olZ +olZ +olZ +olZ +olZ +olZ +olZ +olZ +cxk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +uki +xGh +uki +xGh +uki +wdr +ilS +esB +hSF +xWp +sSU +xWp +xWp +oBf +xWp +uBy +ech +fGf +fGf +fGf +fGf +fGf +fGf +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +fGf +fGf +puk +puk +gUy +puk +puk +"} +(196,1,1) = {" +puk +puk +hzT +lOM +nUO +vfW +fnp +gCm +gCm +vNY +wlf +tXW +lOM +rkn +olZ +olZ +gKB +olZ +hvq +olZ +olZ +olZ +fMG +olZ +cxk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +uki +uki +uki +uki +uki +gBn +pDi +cfz +hSF +xWp +daE +xWp +xWp +daE +xWp +loZ +ech +ech +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +fGf +fGf +puk +puk +puk +puk +puk +puk +puk +gUy +puk +puk +"} +(197,1,1) = {" +puk +puk +hzT +wjf +wjf +eon +gCm +gCm +gCm +gCm +yae +lOM +wjf +rkn +olZ +olZ +olZ +olZ +olZ +olZ +olZ +olZ +olZ +bXp +cxk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +uzu +uzu +uzu +uzu +uzu +uzu +uzu +uzu +uzu +uzu +uzu +uzu +uzu +uzu +uzu +uzu +uzu +uzu +uzu +krB +krB +uzu +uzu +uzu +uzu +uzu +uki +bYf +uki +bYf +uki +vxa +pDi +ilS +hSF +jgo +shq +xWp +xWp +daE +xWp +xWp +qHh +ech +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +puk +puk +puk +puk +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +puk +puk +puk +puk +puk +gUy +puk +puk +"} +(198,1,1) = {" +puk +puk +rsU +cDE +cDE +cDE +cDE +cDE +cDE +cDE +cDE +cDE +cDE +rsU +cDE +cDE +cDE +cDE +cDE +cDE +cDE +cDE +cDE +cDE +rsU +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +uzu +mqt +mcc +oot +uzu +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +uzu +ncP +ncP +cYm +vZC +rei +wEP +sRF +uki +xGh +uki +xGh +uki +rqR +pDi +tuD +sLX +xWp +xWp +xfC +iyy +sPV +xWp +ech +xWp +wOt +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +puk +puk +puk +puk +gUy +puk +puk +"} +(199,1,1) = {" +puk +puk +hzT +aaf +spg +spg +spg +spg +spg +spg +spg +spg +spg +rkn +xSa +crT +crT +crT +crT +crT +crT +crT +crT +xSa +cxk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +uzu +vGH +mcc +oot +uzu +mEX +mEX +mEX +iTF +mEX +mEX +vnJ +mEX +mEX +mEX +mEX +mEX +mEX +uzu +ncP +ncP +tDF +oot +oot +nAG +uLm +uki +uki +uki +uki +uki +dPK +iYD +gXn +sLX +ech +ech +ech +ech +ech +ech +ech +ech +ech +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +urG +puk +puk +"} +(200,1,1) = {" +puk +puk +hzT +pGg +pGg +pGg +pGg +pGg +pGg +pGg +pGg +pGg +pGg +rkn +crT +crT +crT +oOZ +vRa +vRa +dnZ +crT +crT +crT +cxk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +uzu +dED +mcc +oot +uzu +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +uzu +ncP +ncP +cYm +vle +hHA +tQx +viV +uki +bYf +uki +bYf +uki +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +urG +puk +puk +"} +(201,1,1) = {" +puk +puk +hzT +rRH +rRH +rRH +rRH +rRH +rRH +rRH +rRH +rRH +rRH +rkn +crT +crT +crT +pNa +pNa +pNa +pNa +crT +crT +crT +cxk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +uzu +uzu +tDF +uzu +uzu +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +iTF +mEX +mEX +cYm +ncP +ncP +uzu +uzu +uzu +uzu +uzu +uki +xGh +uki +xGh +uki +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +puk +puk +puk +puk +puk +puk +puk +puk +puk +bEU +puk +puk +"} +(202,1,1) = {" +puk +puk +hzT +xIs +xIs +xIs +xIs +xIs +xIs +xIs +xIs +xIs +xIs +rkn +crT +uFi +rOb +rOb +rOb +rOb +rOb +rOb +vcK +crT +cxk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +uzu +uzu +uzu +uzu +ncP +ncP +ncP +uzu +uzu +uzu +uzu +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +cYm +ncP +ncP +uer +cYm +oEF +oEF +pPB +uki +uki +uki +uki +uki +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +oVn +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +gUy +puk +puk +"} +(203,1,1) = {" +puk +puk +hzT +gNf +gNf +eoQ +fnY +fnY +fnY +fnY +reU +gNf +gNf +rkn +crT +tNb +qne +pRl +pRl +pRl +pRl +oWQ +lJk +crT +cxk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +uzu +ajX +cxo +xJW +ncP +ncP +ncP +ncP +ncP +hKy +uzu +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +cYm +ncP +ncP +ncP +udk +oEF +oEF +mKQ +uki +bYf +uki +bYf +uki +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +puk +puk +puk +oVn +oVn +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +gUy +puk +puk +"} +(204,1,1) = {" +puk +puk +hzT +gNf +gNf +wFE +gFO +gFO +gFO +gFO +nFB +gNf +gNf +rkn +crT +tNb +oSZ +pJO +pJO +pJO +pJO +tUu +lJk +crT +cxk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +uzu +ncP +ncP +ncP +ncP +ncP +ncP +ncP +ncP +hKy +uzu +owP +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +cYm +ncP +ncP +ncP +cYm +oEF +oEF +dif +uki +xGh +uki +xGh +uki +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +puk +puk +puk +puk +puk +puk +puk +puk +oVn +oVn +puk +puk +puk +puk +puk +puk +puk +puk +puk +gUy +puk +puk +"} +(205,1,1) = {" +puk +puk +hzT +gNf +gNf +xEu +fWP +fWP +fWP +fWP +qTc +gNf +gNf +rkn +crT +tNb +tZC +ngK +ngK +ngK +ngK +xHj +lJk +crT +cxk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +pYJ +pbW +mET +pYJ +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +uzu +ncP +ncP +tCa +bFQ +bFQ +bFQ +fnR +ncP +hKy +uzu +fMz +fMz +fMz +fMz +fMz +fMz +fMz +fMz +fMz +fMz +uzu +ncP +ncP +ncP +uzu +uzu +uzu +uzu +uki +uki +uki +uki +uki +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +oVn +oVn +puk +fGf +puk +puk +puk +puk +puk +puk +gUy +puk +puk +"} +(206,1,1) = {" +puk +puk +hzT +gNf +gNf +wFE +gFO +gFO +gFO +gFO +nFB +gNf +gNf +rkn +crT +tNb +oSZ +pJO +pJO +pJO +pJO +tUu +lJk +crT +cxk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +pYJ +pYJ +fXC +plu +pYJ +pYJ +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +uzu +brr +ncP +tjP +oTv +oTv +oTv +aNL +ncP +ncP +cYm +pPu +pPu +pPu +pPu +pPu +pPu +pPu +pPu +pPu +pPu +cYm +ncP +ncP +ncP +ncP +ncP +ncP +krB +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +oVn +fGf +fGf +fGf +fGf +puk +puk +puk +puk +gUy +puk +puk +"} +(207,1,1) = {" +puk +puk +hzT +gNf +gNf +eFs +hyN +hyN +hyN +hyN +xlj +gNf +gNf +rkn +crT +tNb +kBp +qOh +qOh +qOh +qOh +vxl +lJk +crT +cxk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +mfs +mCF +ggg +aXr +mYN +qQW +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +uzu +bii +ncP +tjP +oTv +oTv +oTv +aNL +ncP +ncP +avR +ldx +ldx +ldx +ldx +ldx +ldx +ldx +ldx +ldx +ldx +avR +ncP +ncP +ncP +ncP +ncP +ncP +uzu +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +fGf +fGf +fGf +fGf +fGf +puk +puk +puk +gUy +puk +puk +"} +(208,1,1) = {" +puk +puk +hzT +gNf +gNf +gNf +hpK +ibU +ibU +vRJ +gNf +gNf +lnp +rkn +xSa +tNb +gWT +xui +gWT +gWT +xui +gWT +lJk +xSa +cxk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +dCq +uOH +hlX +ggg +qzF +mOC +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +uzu +brr +ncP +tjP +oTv +oTv +oTv +aNL +ncP +ncP +cYm +fZu +fZu +fZu +fZu +fZu +fZu +fZu +fZu +ldx +ldx +cYm +xnb +ncP +ncP +ncP +ncP +ncP +krB +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +fGf +fGf +fGf +fGf +fGf +fGf +puk +puk +gUy +puk +puk +"} +(209,1,1) = {" +puk +puk +rsU +cDE +cDE +cDE +cDE +cDE +cDE +cDE +cDE +cDE +cDE +rsU +cDE +cDE +cDE +cDE +cDE +cDE +cDE +cDE +cDE +cDE +rsU +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +pYJ +pYJ +pYJ +lLR +pYJ +pYJ +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +uzu +ncP +ncP +pbG +eeJ +eeJ +eeJ +nei +ncP +hKy +uzu +jSC +jSC +jSC +jSC +jSC +jSC +jSC +jSC +uzu +uzu +uzu +uzu +uzu +uzu +uzu +ncP +ncP +uzu +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +puk +puk +puk +puk +puk +puk +fFy +fFy +fFy +fFy +fFy +puk +puk +puk +puk +puk +puk +puk +puk +fGf +fGf +fGf +fGf +fGf +fGf +puk +puk +gUy +puk +puk +"} +(210,1,1) = {" +puk +puk +hzT +tpm +xpu +jbx +qFu +iXW +iXW +iXW +iXW +iXW +cyu +raB +fdg +bth +bth +bth +grH +nVp +eAi +eAi +eAi +rQZ +cxk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +pYJ +iHp +gSi +qtK +xOh +pYJ +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +uzu +ncP +ncP +ncP +ncP +ncP +ncP +ncP +dxQ +hKy +uzu +owP +mEX +mEX +mEX +mEX +mEX +mEX +mEX +uzu +qLH +ncP +ncP +ncP +sNL +cYm +ncP +ncP +uzu +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +puk +puk +puk +puk +puk +puk +fFy +fFy +gow +kut +vuY +fFy +fFy +puk +puk +puk +puk +puk +puk +puk +fGf +fGf +fGf +fGf +fGf +fGf +puk +puk +gUy +puk +puk +"} +(211,1,1) = {" +puk +puk +hzT +tpm +xpu +eDh +hzg +jjt +jjt +jjt +jjt +jjt +nhz +raB +yhq +jKX +jKX +jKX +gjK +wqa +jKX +jKX +jKX +sBr +cxk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +pYJ +lRH +iHh +pYJ +puk +pYJ +pYJ +rvI +qtK +mra +pYJ +puk +pYJ +iTU +uES +pYJ +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +uzu +spy +ncP +ncP +ncP +ncP +ncP +ncP +ncP +hKy +uzu +mEX +mEX +mEX +mEX +mEX +iTF +mEX +mEX +cYm +ncP +ncP +hKy +ncP +ncP +uzu +ncP +ncP +uzu +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +puk +fFy +qOU +rgg +rgg +rSb +fFy +nJi +kut +kut +kut +idn +fFy +qOU +rgg +rgg +rSb +fFy +puk +puk +puk +fGf +fGf +fGf +fGf +fGf +fGf +puk +gUy +puk +puk +"} +(212,1,1) = {" +puk +puk +hzT +tpm +xpu +hgp +vyi +vyi +vyi +vyi +vyi +vyi +vyi +raB +fdg +bth +yhq +jKX +gjK +wqa +jKX +sBr +eAi +rQZ +cxk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +pYJ +rvI +kEj +wBN +pYJ +puk +pYJ +vRB +pYJ +qtK +jCT +pYJ +puk +pYJ +rZm +qtK +rvI +pYJ +puk +puk +puk +puk +puk +wcv +wcv +wcv +wcv +wcv +wcv +wcv +wcv +wcv +wcv +wcv +wcv +wcv +wcv +wcv +wcv +wcv +wcv +wcv +wcv +wcv +wcv +wcv +wcv +wcv +wcv +wcv +wcv +wcv +puk +puk +puk +puk +uzu +uzu +uzu +uzu +uzu +uzu +uzu +uzu +ncP +ncP +ncP +uzu +uzu +uzu +uzu +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +cYm +ncP +hKy +kfC +sJO +ncP +bSm +ncP +ncP +uzu +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +puk +puk +fFy +qPA +qPA +qPA +qPA +fFy +tFV +kut +kut +kut +vzY +fFy +qPA +qPA +qPA +qPA +fFy +puk +puk +puk +puk +fGf +fGf +fGf +fGf +fGf +puk +gUy +puk +puk +"} +(213,1,1) = {" +puk +puk +hzT +tpm +xpu +xpu +iVh +kSP +xAh +oku +iXW +oku +saR +raB +bhh +jKX +yhq +jKX +gjK +tmq +jKX +sBr +jKX +dxq +cxk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +pYJ +cug +qtK +rUh +pYJ +puk +pYJ +hUw +rDY +qtK +cBj +pYJ +puk +pYJ +loN +qtK +yeY +pYJ +puk +puk +puk +puk +puk +wcv +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +wcv +puk +puk +puk +puk +uzu +oZH +oZH +oZH +mEK +mEX +mEX +uzu +uzu +jGM +uzu +uzu +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +cYm +ncP +ncP +hKy +ncP +ncP +uzu +ncP +ncP +uzu +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +puk +puk +fFy +qTK +qTK +qTK +qTK +fFy +oNs +kut +kut +gbs +gaf +fFy +qTK +qTK +qTK +qTK +fFy +puk +puk +puk +puk +fGf +fGf +fGf +fGf +fGf +puk +gUy +puk +puk +"} +(214,1,1) = {" +puk +puk +hzT +tpm +xpu +tpm +cmG +wqw +rbe +bnk +nUC +bnk +uav +raB +qhY +pDq +yhq +jKX +gjK +wqa +jKX +sBr +ncD +huZ +cxk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +tKQ +tKQ +tKQ +tKQ +tKQ +tKQ +tKQ +puk +puk +puk +puk +pYJ +kyQ +qtK +bWN +pYJ +puk +pYJ +yer +pYJ +mQx +hcH +pYJ +puk +pYJ +kPq +qtK +jjI +pYJ +puk +puk +puk +puk +puk +wcv +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +wcv +puk +puk +puk +puk +uzu +oZH +mEK +mEK +mEX +vnJ +mEX +cYm +goS +goS +goS +cYm +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +uzu +wNS +ncP +ncP +ncP +wNS +cYm +ncP +ncP +uzu +uzu +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +puk +puk +puk +fFy +fFy +fFy +fFy +fFy +fFy +fFy +fFy +rym +fFy +fFy +fFy +fFy +fFy +fFy +fFy +fFy +puk +puk +puk +puk +puk +fGf +fGf +fGf +fGf +puk +gUy +puk +puk +"} +(215,1,1) = {" +puk +puk +hzT +tpm +xpu +eVU +cbP +wqw +nUC +nUC +nUC +nUC +qgr +raB +yhq +jKX +jKX +jKX +gjK +wqa +jKX +jKX +jKX +sBr +cxk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +tKQ +hJF +vkR +bLG +bLG +wMI +tKQ +puk +puk +puk +puk +pYJ +pYJ +eFb +pYJ +pYJ +pYJ +pYJ +rvI +rsq +qtK +qtK +pYJ +pYJ +pYJ +pYJ +iYI +pYJ +pYJ +puk +puk +puk +puk +puk +wcv +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +xIh +xIh +sVj +sVj +sVj +xIh +xIh +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +wcv +puk +puk +puk +puk +uzu +oZH +mEK +mEX +mEX +mEX +mEX +cYm +goS +goS +goS +cYm +mEX +vnJ +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +uzu +uzu +uzu +uzu +uzu +uzu +uzu +ncP +ncP +uzu +uzu +fGf +fGf +fGf +fGf +fGf +fGf +iKp +iKp +iKp +iKp +fGf +fGf +fGf +fGf +fGf +fGf +puk +puk +puk +fFy +rej +rnP +fFy +osD +sZr +ukC +fFy +kut +fFy +vMJ +wbS +wvu +xVB +nBw +oKg +fFy +puk +puk +puk +puk +puk +puk +fGf +fGf +puk +puk +gUy +puk +puk +"} +(216,1,1) = {" +puk +puk +hzT +tpm +xpu +tpm +wHy +wqw +rbe +bnk +nUC +bnk +uav +raB +qhY +pDq +pDq +pDq +wQj +bpn +ncD +ncD +ncD +huZ +cxk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +tKQ +ktX +vkR +vkR +vkR +tKQ +tKQ +tKQ +puk +puk +puk +pYJ +fTY +qtK +qtK +pYJ +pYJ +pYJ +pYJ +pYJ +qtK +rzI +rvI +pYJ +qtK +qtK +qtK +tlu +pYJ +puk +puk +puk +puk +puk +wcv +puk +puk +puk +puk +puk +puk +puk +puk +xIh +sVj +xIh +jeX +moq +kXc +vyM +jeX +xIh +sVj +xIh +puk +puk +puk +puk +puk +puk +puk +puk +wcv +puk +puk +puk +puk +uzu +oZH +mEK +mEX +vnJ +mEX +mEX +uzu +uzu +jGM +uzu +uzu +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +cYm +qzI +ncP +ncP +uzu +ncP +ncP +ncP +uzu +fGf +fGf +fGf +fGf +fGf +fGf +iKp +nir +iiz +iKp +fGf +fGf +fGf +fGf +fGf +fGf +puk +puk +puk +fFy +uaZ +uaZ +fFy +hgJ +kut +kut +fFy +kut +fFy +vMJ +wjT +wGm +xVH +fsP +idd +fFy +puk +puk +puk +puk +puk +puk +oVn +puk +puk +puk +gUy +puk +puk +"} +(217,1,1) = {" +puk +puk +hzT +vyi +bzZ +iXj +goz +lMX +rNR +wiN +sUW +wiN +ptZ +raB +kQq +kQq +neN +kQq +kQq +kQq +kQq +neN +kQq +kQq +cxk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +tKQ +tKQ +tKQ +tKQ +tKQ +tKQ +tKQ +hJF +vkR +vkR +vkR +mCX +ddn +tKQ +puk +puk +puk +pYJ +lkV +qtK +qtK +vjY +pYJ +ltY +aHT +qPK +qtK +qtK +dex +pYJ +sda +qtK +qtK +qtK +pYJ +puk +puk +puk +puk +puk +wcv +puk +puk +puk +puk +puk +puk +xIh +xIh +xIh +sPf +xIh +xIh +jeX +jeX +jeX +xIh +xIh +eyW +xIh +xIh +xIh +puk +puk +puk +puk +puk +puk +wcv +puk +puk +puk +puk +uzu +oZH +mEX +mEX +mEX +mEX +mEX +mEX +bhJ +eOt +bhJ +bhJ +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +uzu +gLT +qAQ +ncP +bSm +ncP +ncP +spy +uzu +fGf +fGf +fGf +fGf +fGf +iKp +iKp +iKp +iKp +iKp +iKp +fGf +fGf +fGf +fGf +fGf +puk +puk +puk +fFy +uaZ +uaZ +fFy +fFy +vjy +fFy +fFy +kut +fFy +fFy +wkQ +wIp +iPG +lNN +wwH +fFy +puk +puk +puk +puk +puk +puk +oVn +puk +puk +puk +gUy +puk +puk +"} +(218,1,1) = {" +puk +puk +hzT +niY +niY +niY +niY +niY +niY +niY +niY +niY +niY +raB +nNQ +nNQ +pHl +nNQ +nNQ +nNQ +nNQ +pHl +nNQ +nNQ +cxk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +tKQ +vty +myX +tKQ +vty +myX +tKQ +tKQ +tKQ +cxY +tKQ +tKQ +tKQ +tKQ +puk +puk +puk +tds +qdW +lmj +tYq +qtK +thr +qtK +qtK +ggg +ggg +qtK +qtK +thr +qtK +lmj +lHG +oPn +twp +puk +puk +puk +puk +puk +wcv +puk +puk +puk +puk +puk +xIh +xIh +pjV +bxx +bxx +xQE +xIh +bXF +nsD +bXF +xIh +rAI +jeX +qmo +qmo +xIh +xIh +puk +puk +puk +puk +puk +wcv +puk +puk +puk +puk +uzu +oZH +vnJ +mEX +mEX +mEX +mEX +bhJ +bhJ +ccc +ymb +jYW +bhJ +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +uzu +uzu +uzu +uzu +uzu +ncP +ncP +abL +iKp +iKp +iKp +iKp +iKp +iKp +iKp +nir +nir +nir +nir +iKp +iKp +iKp +iKp +iKp +iKp +iKp +puk +puk +qEe +uaZ +uaZ +jFD +syp +uaZ +uqM +fsP +fsP +fsP +uqM +fsP +fsP +fsP +fsP +rkU +jHG +puk +puk +puk +puk +puk +puk +oVn +puk +puk +puk +gUy +puk +puk +"} +(219,1,1) = {" +puk +puk +hzT +niY +niY +niY +tLW +niY +niY +tLW +niY +niY +niY +raB +pHl +pHl +pHl +pHl +pHl +pHl +pHl +pHl +pHl +pHl +cxk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +tKQ +jRa +myX +tKQ +jRa +myX +tKQ +lMq +pBh +pBh +pBh +ryE +tKQ +puk +puk +puk +puk +bBm +neE +kTa +ahv +qtK +qtK +qtK +ggg +ggg +ggg +ggg +qtK +qtK +qtK +kFb +eur +lNf +wbD +puk +puk +puk +puk +puk +wcv +puk +puk +puk +puk +xIh +xIh +uJJ +orQ +oYh +bxx +fJz +xIh +bXF +jeX +bXF +xIh +wLy +jeX +bna +ajG +fts +xIh +xIh +puk +puk +puk +puk +wcv +puk +puk +puk +puk +uzu +oZH +mEX +mEX +mEX +mEX +mEX +uRu +jYW +bhJ +oaw +jYW +jYW +bhJ +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +uzu +gLT +qAQ +ncP +bSm +ncP +ncP +iKp +iKp +csT +cIv +dHt +faA +fIt +ohz +nir +nir +nir +jwL +ohz +uqp +uqp +uqp +uqp +uqp +iKp +puk +puk +qjZ +uaZ +uaZ +uaZ +uaZ +pYL +qmm +rio +fsP +pYL +qmm +lJP +xAP +fsP +fsP +gzc +iLE +puk +puk +puk +puk +puk +puk +oVn +puk +puk +puk +gUy +puk +puk +"} +(220,1,1) = {" +puk +puk +rsU +cDE +cDE +cDE +cDE +cDE +cDE +cDE +cDE +cDE +cDE +rsU +cDE +cDE +cDE +cDE +cDE +cDE +cDE +cDE +cDE +cDE +rsU +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +tKQ +tKQ +tSs +tKQ +tKQ +tSs +tKQ +lMq +ufJ +qzf +ufJ +rwA +tKQ +puk +puk +puk +puk +jQQ +koq +eoa +ybs +qhn +pYJ +qtK +ggg +eFR +vrl +ggg +qtK +pYJ +kxT +nMJ +eur +tUc +kJA +puk +puk +puk +puk +puk +wcv +puk +puk +puk +puk +xIh +mfc +wDu +epa +oYh +bxx +bxx +aMs +jeX +jeX +jeX +lXr +jeX +jeX +qmo +juz +qmo +siU +xIh +puk +puk +puk +puk +wcv +puk +puk +puk +puk +uzu +oZH +mEX +bhJ +bhJ +bhJ +bhJ +bhJ +oCd +tPB +aet +pnf +wUM +bhJ +bhJ +mEX +mEX +mEX +mEX +mEX +mEX +mEX +vnJ +mEX +mEX +cYm +kyI +ncP +ncP +uzu +ncP +ncP +iKp +ajm +nir +nir +nir +nir +nir +ohz +nir +nir +nir +jxk +ohz +nir +nir +nir +nir +nir +iKp +iKp +puk +fFy +qmk +skQ +pAB +kZc +fFy +fFy +uaZ +fsP +uaZ +fFy +fFy +xNV +fsP +sNA +whC +fFy +puk +puk +puk +puk +puk +puk +oVn +puk +puk +puk +gUy +puk +puk +"} +(221,1,1) = {" +puk +puk +hzT +jJL +jJL +jJL +jJL +jJL +jJL +jJL +jJL +jJL +jJL +raB +gjJ +gjJ +gjJ +gjJ +gjJ +gjJ +fkC +ian +ian +ian +cxk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +tKQ +pBh +pBh +pBh +pBh +pBh +pBh +pBh +ufJ +qzf +ufJ +kjI +tKQ +puk +puk +puk +puk +pYJ +pYJ +pYJ +pYJ +pYJ +rvI +qtK +ggg +jRZ +sFD +ggg +qtK +rvI +pYJ +pYJ +pYJ +pYJ +pYJ +puk +puk +puk +puk +puk +wcv +puk +puk +puk +xIh +xIh +mxy +igu +igu +bxx +bxx +quv +xIh +vmH +jeX +iki +xIh +lSb +jeX +fEH +sex +qmo +noE +xIh +xIh +puk +puk +puk +wcv +puk +puk +puk +puk +uzu +oZH +mEX +mEX +mEX +mEX +uRu +bhJ +dqR +ecR +qpd +qpd +qpd +pTl +lhE +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +uzu +uzu +uzu +uzu +uzu +ncP +ncP +iKp +ano +nir +nir +nir +nir +nir +iKp +nir +hvM +nir +nir +iKp +nir +nir +nir +nir +nir +plP +iKp +puk +fFy +fFy +fFy +fFy +fFy +fFy +uAk +uaZ +vaV +uaZ +vPL +fFy +fFy +fFy +fFy +fFy +fFy +puk +puk +puk +puk +puk +puk +oVn +puk +puk +puk +gUy +puk +puk +"} +(222,1,1) = {" +puk +puk +hzT +jJL +gqk +jJL +jJL +jJL +jJL +jJL +jJL +gqk +jJL +raB +gjJ +gjJ +gjJ +gjJ +gjJ +gjJ +fkC +ian +ian +ian +cxk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +tKQ +pBh +pBh +pBh +pBh +pBh +pBh +pBh +ufJ +qzf +ufJ +nXk +tKQ +puk +puk +puk +puk +puk +pYJ +pYJ +nZO +wnH +iYa +jTv +ggg +dhd +pQD +ggg +vGC +wOm +vJE +njc +pYJ +pYJ +puk +puk +puk +puk +puk +puk +wcv +puk +puk +puk +sVj +jJS +bxx +bxx +bxx +bxx +bxx +fJz +xIh +mJH +jeX +cxc +xIh +pLy +jeX +jeX +jeX +jeX +jeX +wPl +sVj +puk +puk +puk +wcv +puk +puk +puk +puk +uzu +oZH +mEX +mEX +mEX +mEX +tck +bhJ +fzP +ecR +qpd +qpd +kYU +eNX +wgn +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +uzu +tVE +mlP +bpI +uzu +vTW +uzu +iKp +awt +nir +cNF +dIT +wZS +nir +fZU +nir +nir +nir +nir +kje +nir +lsS +uqp +oil +nir +pqt +iKp +puk +puk +fFy +oTZ +uaZ +pXS +fFy +fFy +uaZ +fsP +uaZ +fFy +fFy +ivO +hSg +rRM +fFy +puk +puk +puk +puk +puk +puk +puk +oVn +puk +puk +puk +gUy +puk +puk +"} +(223,1,1) = {" +puk +puk +hzT +jJL +jJL +jJL +jJL +jJL +jJL +jJL +jJL +jJL +jJL +raB +gjJ +aaE +gjJ +gjJ +gjJ +gjJ +fkC +ian +ian +ian +cxk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +tKQ +tKQ +tSs +tKQ +tKQ +tSs +tKQ +rba +ufJ +qzf +ufJ +dlC +tKQ +puk +puk +puk +puk +puk +puk +tds +gmf +pMu +pTs +qtK +ggg +ceC +wjq +ggg +qtK +woU +ccf +xyO +twp +puk +puk +puk +puk +puk +puk +puk +wcv +puk +puk +xIh +xIh +eRB +bxx +bxx +bxx +bxx +sbM +xIh +xIh +xIh +lXr +xIh +xIh +xIh +dzV +epV +jeX +kDD +vJH +qIt +xIh +xIh +puk +puk +wcv +puk +puk +puk +puk +uzu +oZH +mEX +mEX +mEX +mEX +uRu +bhJ +vtI +ecR +qpd +qpd +qpd +kzL +sHe +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +uzu +jiY +jiY +jiY +jiY +jiY +pka +iKp +aIH +nir +cVQ +dYv +fkL +nir +fZU +nir +nir +nir +nir +kje +nir +lDQ +mcL +olO +nir +pui +iKp +puk +puk +fFy +kKO +cLY +uaZ +uaZ +uqM +fsP +fsP +fsP +uqM +uaZ +uaZ +uaZ +uSh +fFy +puk +puk +puk +puk +puk +puk +puk +oVn +puk +puk +puk +gUy +puk +puk +"} +(224,1,1) = {" +puk +puk +hzT +jJL +jJL +jJL +gqk +jJL +jJL +gqk +jJL +jJL +jJL +raB +gjJ +gjJ +gjJ +gjJ +gjJ +gjJ +fkC +ian +ian +ian +cxk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +tKQ +jRa +myX +tKQ +jRa +myX +tKQ +pME +ufJ +qzf +ufJ +xJC +tKQ +puk +puk +puk +puk +puk +puk +bBm +qCs +ils +bpf +qtK +ggg +fKy +tDn +ggg +qtK +rar +oWP +fPC +wbD +puk +puk +puk +puk +puk +puk +puk +wcv +puk +puk +xIh +xIh +xIh +xIh +xIh +aMs +xIh +xIh +xIh +uAX +hia +bXF +shD +cJg +xIh +xIh +xIh +lXr +xIh +xIh +xIh +xIh +xIh +puk +puk +wcv +puk +puk +puk +puk +uzu +oZH +mEX +bhJ +bhJ +bhJ +bhJ +bhJ +wHz +yah +qpd +mLD +mRV +bhJ +bhJ +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +uzu +eJJ +jiY +jiY +jiY +jiY +nbo +iKp +qLf +nir +nir +nir +nir +nir +iKp +nir +nir +nir +nir +iKp +nir +nir +nir +nir +nir +puw +iKp +puk +puk +fFy +fFy +rGJ +uaZ +uaZ +fFy +uPn +fsP +uaZ +fFy +fFy +xPQ +qoH +fFy +fFy +puk +puk +puk +puk +puk +puk +puk +oVn +puk +puk +puk +gUy +puk +puk +"} +(225,1,1) = {" +puk +puk +hzT +jJL +jJL +jJL +jJL +jJL +jJL +jJL +jJL +jJL +jJL +raB +gjJ +gjJ +gjJ +rCR +gjJ +gjJ +fkC +ian +ian +ian +cxk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +tKQ +vty +myX +tKQ +vty +myX +tKQ +oJj +pBh +pBh +pBh +wvp +tKQ +puk +puk +puk +puk +puk +puk +jQQ +iKU +omv +kyJ +qtK +ggg +bsI +dIV +ggg +qtK +hKU +cyx +opn +kJA +puk +puk +puk +puk +puk +puk +puk +wcv +puk +puk +xIh +nKr +gmi +vrh +dAU +jeX +iym +iym +xIh +fNj +bXF +jeX +bXF +agp +xIh +xJX +nxT +xcv +nxT +xIh +jeX +xeP +xIh +puk +puk +wcv +puk +puk +puk +puk +uzu +oZH +mEX +mEX +mEX +mEX +mEX +uRu +jYW +qpd +qpd +jYW +jYW +bhJ +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +uzu +uzu +uzu +uzu +uzu +uzu +uzu +iKp +fkj +nir +nir +nir +nir +nir +ohz +nir +nir +nir +tvq +ohz +nir +nir +nir +nir +nir +iKp +iKp +puk +puk +puk +fFy +cuy +uaZ +aUE +fFy +rio +fsP +pYL +fFy +dQH +kut +kut +fFy +puk +puk +puk +puk +puk +puk +puk +puk +oVn +puk +puk +puk +gUy +puk +puk +"} +(226,1,1) = {" +puk +puk +hzT +jJL +jJL +jJL +jJL +jJL +jJL +jJL +jJL +jJL +jJL +raB +gjJ +gjJ +gjJ +gjJ +gjJ +gjJ +fkC +ian +ian +ian +cxk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +tKQ +tKQ +tKQ +tKQ +tKQ +tKQ +tKQ +tKQ +pBh +pBh +pBh +tKQ +tKQ +puk +puk +puk +puk +puk +pYJ +pYJ +hRV +bhv +eWA +qtK +ggg +cwL +gcS +ggg +qtK +qZq +fCC +tTz +pYJ +pYJ +puk +puk +puk +puk +puk +puk +wcv +puk +puk +sVj +jJx +vsd +vsd +vsd +jeX +jeX +jeX +lXr +bXF +hkb +xIh +jeX +bXF +lXr +oyX +ksg +jeX +jeX +lXr +jeX +ouG +sVj +puk +puk +wcv +puk +puk +puk +puk +uzu +oZH +mEX +mEX +mEX +mEX +mEX +bhJ +bhJ +gFN +kRq +jYW +bhJ +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +uzu +puk +puk +puk +puk +puk +puk +iKp +iKp +csV +csV +ebS +uPa +uPa +ohz +nir +nir +nir +jxP +ohz +dkG +lEH +hmR +orV +orV +iKp +puk +puk +puk +puk +qmm +cuy +uaZ +tfb +fFy +uaZ +fsP +uaZ +fFy +wnS +kut +kut +qmm +puk +puk +puk +puk +puk +puk +puk +puk +oVn +puk +puk +puk +gUy +puk +puk +"} +(227,1,1) = {" +puk +puk +hzT +jJL +jJL +jJL +gqk +jJL +jJL +gqk +jJL +jJL +jJL +raB +gjJ +gjJ +soo +gjJ +gjJ +gjJ +fkC +ian +ian +ian +cxk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +tKQ +pVm +fvA +kPZ +dQj +pBh +pBh +pBh +pBh +pBh +tKQ +puk +puk +puk +puk +pYJ +pYJ +pYJ +xcQ +rSn +iZE +pYJ +ggg +ggg +ggg +ggg +pYJ +xcQ +rSn +iZE +pYJ +pYJ +pYJ +puk +puk +puk +puk +puk +wcv +puk +puk +xIh +bQm +vsd +vsd +vsd +jeX +wMD +sqm +xIh +rhp +bXF +jeX +bXF +kRO +xIh +hok +dCm +pux +dCm +xIh +jeX +vEO +xIh +puk +puk +wcv +puk +puk +puk +puk +uzu +oZH +mEK +mEK +mEX +mEX +mEX +mEX +bhJ +bhJ +bhJ +bhJ +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +iTF +mEX +mEX +uzu +puk +puk +puk +puk +puk +puk +puk +iKp +iKp +iKp +iKp +iKp +iKp +iKp +iKp +mpf +mpf +iKp +iKp +iKp +iKp +iKp +iKp +iKp +iKp +puk +puk +puk +puk +vUG +aAf +sJy +fFy +fFy +fFy +rbi +fFy +fFy +fFy +fFy +dGf +fFy +puk +puk +puk +puk +puk +puk +puk +puk +oVn +puk +puk +puk +gUy +puk +puk +"} +(228,1,1) = {" +puk +puk +hzT +jJL +jJL +jJL +jJL +jJL +jJL +jJL +jJL +jJL +jJL +raB +gjJ +gjJ +jdG +gjJ +hHU +gjJ +fkC +ian +ian +ian +cxk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +tKQ +pBh +pBh +pBh +dQj +pBh +ufJ +ufJ +ufJ +pBh +tKQ +tKQ +tKQ +tKQ +rvI +pYJ +rvI +rSj +rwV +rGF +rGF +pYJ +qtK +ggg +ggg +qtK +pYJ +bCo +tze +jIu +lMy +rvI +pYJ +rvI +puk +puk +puk +puk +wcv +puk +puk +xIh +xIh +xIh +xIh +xIh +lXr +xIh +xIh +xIh +sfu +vTt +bXF +fdn +wNd +xIh +xIh +xIh +lXr +xIh +xIh +xIh +xIh +xIh +puk +puk +wcv +puk +puk +puk +puk +uzu +oZH +mEK +mEK +mEK +mEX +mEX +vnJ +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +uzu +puk +puk +puk +puk +puk +puk +puk +iKp +iKp +nir +ohz +nir +nir +iKp +nir +nir +nir +nir +iKp +kHn +lNT +qjK +ozF +nir +iKp +pDS +pDS +qKK +fFy +qHW +rGU +qHW +tgG +uHS +uTz +fsP +uTz +uHS +xsq +fFy +fFy +fFy +fFy +puk +puk +puk +puk +puk +puk +puk +oVn +puk +puk +puk +gUy +puk +puk +"} +(229,1,1) = {" +puk +puk +hzT +jJL +gqk +jJL +jJL +jJL +jJL +jJL +jJL +gqk +jJL +raB +gjJ +gjJ +gjJ +gjJ +gjJ +gjJ +fkC +ian +ian +ian +cxk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +tKQ +xcN +pBh +pBh +xyu +pBh +ufJ +yfp +ufJ +pBh +xyu +pBh +pBh +hIM +mvX +rbD +mvX +qtK +ggg +ggg +ggg +hui +ggg +ggg +ggg +ggg +hui +ggg +ggg +ggg +slo +pue +oWU +hFy +puk +puk +puk +puk +wcv +puk +puk +xIh +xIh +orR +ogc +jeX +jeX +rGD +qFr +xIh +xIh +xIh +lXr +xIh +xIh +xIh +xWw +bmp +jeX +bXF +bXF +adR +xIh +xIh +puk +puk +wcv +puk +puk +puk +puk +uzu +oZH +mEK +mEK +mEK +mEK +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +uzu +puk +puk +puk +puk +puk +puk +puk +iKp +cuH +nir +ohz +nir +nir +ggE +nir +nir +nir +nir +nir +nir +nir +nir +nir +nir +nir +pHF +qmP +pHF +btF +rzx +rKS +ryM +tgH +fsP +fsP +fsP +fsP +fsP +uaZ +xSD +kut +nqn +fFy +puk +puk +puk +puk +puk +puk +puk +oVn +puk +puk +puk +gUy +puk +puk +"} +(230,1,1) = {" +puk +puk +hzT +jJL +jJL +jJL +jJL +jJL +jJL +jJL +jJL +jJL +jJL +raB +gjJ +gjJ +gjJ +gjJ +gjJ +gjJ +fkC +ian +ian +ian +cxk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +tKQ +cOd +pBh +pBh +pBh +pBh +ufJ +yfp +ufJ +pBh +pBh +dJB +pBh +hIM +mvX +fSY +mvX +qtK +ggg +ggg +qtK +qtK +qtK +ggg +ggg +qtK +qtK +qtK +ggg +ggg +njD +uLU +auc +sIi +puk +puk +puk +puk +wcv +puk +puk +puk +sVj +tKS +hjb +jeX +jeX +jeX +jeX +dHb +xIh +teN +jeX +gUh +xIh +bDi +jeX +jeX +jeX +jeX +jeX +mkb +sVj +puk +puk +puk +wcv +puk +puk +puk +puk +uzu +oZH +mEK +mEK +mEK +mEK +mEK +mEX +mEX +mEX +mEX +vnJ +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +mEX +uzu +puk +puk +puk +puk +puk +puk +puk +iKp +iKp +dfg +ohz +nir +nir +ggE +nir +nir +nir +nir +nir +nir +nir +nir +nir +nir +nir +pHF +qqG +pHF +btF +teW +kqh +ryM +tim +fsP +fsP +fsP +fsP +fsP +uaZ +fFy +hgJ +fvG +fFy +puk +puk +puk +puk +puk +puk +puk +oVn +puk +puk +puk +gUy +puk +puk +"} +(231,1,1) = {" +puk +puk +rsU +cDE +cDE +cDE +cDE +cDE +cDE +cDE +cDE +cDE +cDE +rsU +cDE +cDE +cDE +cDE +cDE +cDE +cDE +cDE +cDE +cDE +rsU +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +tKQ +pBh +jdF +pBh +dQj +pBh +ufJ +ufJ +ufJ +pBh +tKQ +tKQ +tKQ +tKQ +rvI +pYJ +rvI +jsD +qtK +qtK +vjY +rvI +bxM +ikC +aax +rOh +rvI +sda +qtK +qtK +qtK +rvI +pYJ +rvI +puk +puk +puk +puk +wcv +puk +puk +puk +xIh +xIh +wHK +jeX +jeX +cTw +jeX +qDY +xIh +bXF +jeX +bXF +xIh +bmp +jeX +ixy +uCF +fBf +pte +xIh +xIh +puk +puk +puk +wcv +puk +puk +puk +puk +ohh +ohh +ohh +ohh +ohh +ohh +ohh +ohh +ohh +ohh +ohh +ohh +ohh +ohh +ohh +ohh +ohh +ohh +ohh +ohh +ohh +ohh +ohh +ohh +ohh +ohh +ohh +ohh +ohh +ohh +ohh +ohh +aOO +aOO +aOO +aOO +aOO +jNQ +jNQ +aOO +iKp +iKp +iKp +iKp +iKp +ohz +iKp +muV +iKp +ohz +iKp +pPC +pPC +dWr +fFy +rDn +rOP +sUB +tiP +uaD +uUH +fsP +uUH +uaD +xsq +fFy +fFy +fFy +fFy +puk +puk +puk +puk +puk +puk +puk +oVn +puk +puk +puk +gUy +puk +puk +"} +(232,1,1) = {" +puk +puk +hzT +fVh +fVh +fVh +fVh +fVh +fVh +fVh +fVh +fVh +fVh +raB +rZf +dXh +dXh +dXh +pfP +iDE +oXY +oXY +oXY +atZ +cxk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +tKQ +duO +usc +lem +dQj +pBh +pBh +pBh +dAl +pBh +tKQ +puk +puk +puk +puk +pYJ +pYJ +pYJ +iMc +iMc +rvI +pYJ +xmS +yhy +ggg +qtK +pYJ +rvI +xdf +xdf +pYJ +pYJ +pYJ +puk +puk +puk +puk +puk +wcv +puk +puk +puk +puk +xIh +lhd +jeX +nuQ +jeX +lja +jeX +lXr +jeX +jeX +jeX +lXr +jeX +jeX +tbt +cDr +ofp +pte +xIh +puk +puk +puk +puk +wcv +puk +puk +puk +puk +ohh +jXl +jXl +jXl +jXl +jXl +jXl +jXl +jXl +jXl +jXl +jXl +jXl +jXl +jXl +jXl +isR +pqM +pqM +pqM +pqM +pqM +pqM +pqM +pqM +pqM +pqM +pqM +pqM +pqM +pqM +pqM +aOO +qIo +qIo +aOO +qIo +qIo +vSV +aOO +gxj +kBx +inZ +wWb +iKp +lSE +lSE +lSE +lSE +lSE +ohz +ohz +puk +puk +puk +fFy +pFK +fFy +fFy +fFy +fFy +rbi +fFy +fFy +fFy +fFy +uaZ +fFy +puk +puk +puk +puk +puk +puk +puk +puk +oVn +puk +puk +puk +gUy +puk +puk +"} +(233,1,1) = {" +puk +puk +hzT +fVh +fVh +fVh +fVh +fVh +fVh +fVh +fVh +fVh +fVh +raB +gmM +vtH +vtH +vtH +huf +oDp +vtH +vtH +vtH +xov +cxk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +tKQ +tKQ +tKQ +tKQ +tKQ +tKQ +qYU +qYU +tKQ +tKQ +tKQ +puk +puk +puk +puk +puk +tds +xOX +qtK +qtK +pYJ +xoy +ggg +ggg +ggg +kkf +mcr +pYJ +qtK +qtK +niH +twp +puk +puk +puk +puk +puk +puk +wcv +puk +puk +puk +puk +xIh +xIh +biP +jeX +jeX +jeX +xpp +xIh +bXF +jeX +bXF +xIh +xgX +jeX +kMf +cCD +kjb +xIh +xIh +puk +puk +puk +puk +wcv +puk +puk +puk +puk +ohh +jXl +oOW +rwb +oOW +oOW +oOW +oOW +oOW +oOW +oOW +oOW +oOW +oOW +oOW +vCc +gZL +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pqM +aOO +tVo +qIo +aOO +qIo +qIo +vSV +aOO +mSv +mSv +mSv +mSv +iKp +lSE +lSE +mNX +mNX +lSE +lSE +ohz +puk +puk +puk +fFy +uaZ +uaZ +ivO +uIW +ivO +fsP +ivO +uIW +ivO +uaZ +uaZ +fFy +puk +puk +puk +puk +puk +puk +puk +puk +oVn +puk +puk +puk +gUy +puk +puk +"} +(234,1,1) = {" +puk +puk +hzT +fVh +fVh +fVh +fVh +fVh +fVh +fVh +fVh +fVh +fVh +raB +gmM +vtH +vtH +vtH +huf +oDp +vtH +vtH +vtH +xov +cxk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +tKQ +cqR +ehm +ufJ +gba +ufJ +ufJ +ehm +cqR +tKQ +puk +puk +puk +puk +puk +jQQ +pZO +qtK +vGC +pYJ +xoy +ggg +ggg +ggg +ggg +aZW +pYJ +jTv +qtK +fte +kJA +puk +puk +puk +puk +puk +puk +wcv +puk +puk +puk +puk +puk +xIh +xIh +voj +xBj +jeX +cOI +xIh +mzB +lIh +xIh +xIh +wug +jeX +pte +pte +xIh +xIh +puk +puk +puk +puk +puk +wcv +puk +puk +puk +puk +ohh +jXl +oOW +oOW +oOW +oOW +oOW +oOW +oOW +oOW +oOW +oOW +oOW +oOW +oOW +vCc +gZL +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pqM +aOO +vIw +qIo +aOO +qIo +qIo +vSV +aOO +gxO +mSv +mSv +mSv +knf +lSE +smw +oat +oat +oYm +lSE +ohz +puk +puk +puk +fFy +uaZ +uaZ +uaZ +uaZ +uaZ +fsP +uaZ +uaZ +uaZ +uaZ +uaZ +fFy +puk +puk +puk +puk +puk +puk +puk +puk +oVn +puk +puk +puk +gUy +puk +puk +"} +(235,1,1) = {" +puk +puk +hzT +fVh +fVh +fVh +fVh +fVh +fVh +fVh +fVh +fVh +fVh +raB +gmM +vtH +vtH +vtH +huf +oDp +vtH +vtH +vtH +xov +cxk +xOH +xOH +xOH +xOH +xOH +xOH +xOH +xOH +xOH +xOH +xOH +xOH +xOH +xOH +xOH +xOH +xOH +xOH +xOH +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +tKQ +ufJ +ufJ +ufJ +ufJ +ufJ +ufJ +ufJ +ufJ +tKQ +puk +puk +puk +puk +pYJ +rvI +qFT +qtK +hTP +rvI +pYJ +qtK +qtK +qtK +leY +pYJ +pYJ +qtK +qtK +pEd +pYJ +pYJ +puk +puk +puk +puk +puk +wcv +puk +puk +puk +puk +puk +puk +xIh +xIh +xIh +oty +xIh +xIh +aQL +qmo +wyq +xIh +xIh +jeX +xIh +xIh +xIh +puk +puk +puk +puk +puk +puk +wcv +puk +puk +puk +puk +ohh +jXl +qsn +oOW +oOW +oOW +oOW +oOW +oOW +oOW +oOW +kEx +ogr +oOW +oOW +vCc +gZL +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pqM +aOO +tVo +qIo +aOO +qIo +qIo +ndw +aOO +gCc +mSv +mSv +mSv +iKp +lSE +lSE +ncd +ncd +lSE +lSE +ohz +puk +puk +puk +fFy +fFy +pXS +uaZ +uaZ +uaZ +fsP +uaZ +uaZ +uaZ +pXS +fFy +fFy +puk +puk +puk +puk +puk +puk +puk +puk +oVn +puk +puk +puk +gUy +puk +puk +"} +(236,1,1) = {" +puk +puk +hzT +fVh +fVh +fVh +fVh +fVh +fVh +fVh +fVh +fVh +fVh +raB +gmM +vtH +vtH +vtH +huf +oDp +vtH +vtH +vtH +xov +cxk +xOH +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +xOH +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +tKQ +cqR +ehm +ufJ +ufJ +ufJ +ufJ +cqR +cqR +tKQ +puk +puk +puk +pYJ +pYJ +erT +qtK +qtK +qtK +new +pYJ +pYJ +pYJ +pYJ +pYJ +pYJ +qtK +qtK +qtK +qtK +onB +pYJ +pYJ +puk +puk +puk +puk +wcv +puk +puk +puk +puk +puk +puk +puk +puk +xIh +sVj +xIh +qmo +qmo +qmo +wHt +rQT +xIh +sVj +xIh +puk +puk +puk +puk +puk +puk +puk +puk +wcv +puk +puk +puk +puk +ohh +jXl +oOW +oOW +oOW +oOW +oOW +oOW +oOW +oOW +oOW +oOW +kEx +oOW +azd +vCc +gZL +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pqM +aOO +vIw +qIo +dhb +qIo +qIo +ndw +aOO +gMS +hMR +ioC +jyC +iKp +kLb +lSE +lSE +lSE +lSE +ohz +ohz +puk +puk +puk +puk +fFy +fFy +fFy +fFy +fFy +rbi +fFy +fFy +fFy +fFy +fFy +puk +puk +puk +puk +puk +puk +puk +puk +puk +oVn +puk +puk +puk +gUy +puk +puk +"} +(237,1,1) = {" +puk +puk +hzT +fVh +fVh +fVh +fVh +fVh +fVh +fVh +fVh +fVh +fVh +raB +gmM +vtH +vtH +vtH +huf +oDp +vtH +vtH +vtH +xov +cxk +xOH +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +xOH +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +tKQ +ufJ +ufJ +ufJ +ufJ +ufJ +ufJ +ufJ +ufJ +tKQ +puk +puk +puk +pYJ +pYJ +eAF +leY +laa +qtK +laK +pYJ +dzx +dzx +dzx +dzx +pYJ +aVX +qtK +qtK +leY +ruP +pYJ +pYJ +puk +puk +puk +puk +wcv +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +xIh +xIh +sVj +sVj +sVj +xIh +xIh +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +wcv +puk +puk +puk +puk +ohh +jXl +oOW +oOW +oOW +oOW +ogr +oOW +rva +rva +oOW +oOW +oOW +oOW +oOW +vCc +gZL +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pqM +aOO +tVo +qIo +aOO +qIo +qIo +ndw +aOO +iKp +iKp +iKp +iKp +iKp +iKp +iKp +nAf +iKp +iKp +iKp +puk +puk +puk +puk +puk +fFy +fFy +tvU +qVg +vaE +fsP +sRz +tes +wpb +fFy +fFy +puk +puk +puk +puk +puk +puk +puk +puk +puk +oVn +puk +puk +puk +gUy +puk +puk +"} +(238,1,1) = {" +puk +puk +hzT +fVh +fVh +fVh +fVh +fVh +fVh +fVh +fVh +fVh +fVh +raB +alR +diJ +diJ +diJ +oOI +dVG +uIh +uIh +uIh +wbu +cxk +xOH +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +xOH +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +tKQ +cqR +ehm +ufJ +ufJ +ufJ +ufJ +ehm +cqR +tKQ +puk +puk +puk +pYJ +pYJ +pYJ +pYJ +pYJ +pYJ +pYJ +pYJ +bNR +sKz +sKz +gSH +pYJ +pYJ +pYJ +pYJ +pYJ +pYJ +pYJ +pYJ +puk +puk +puk +puk +wcv +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +wcv +puk +puk +puk +puk +ohh +jXl +oOW +oOW +oOW +oOW +kEx +rva +bhd +oNc +rva +oOW +oOW +oOW +oOW +vCc +gZL +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pqM +aOO +vIw +qIo +aOO +qIo +qIo +vSV +aOO +lCr +rYJ +eXo +jDo +iKp +kTp +kTp +kTp +kTp +pbz +iKp +puk +puk +puk +puk +puk +puk +fFy +tDh +uaZ +fsP +vmi +fsP +uaZ +wpt +fFy +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +oVn +puk +puk +puk +gUy +puk +puk +"} +(239,1,1) = {" +puk +puk +hzT +fVh +fVh +fVh +fVh +fVh +fVh +fVh +fVh +fVh +fVh +raB +gHs +gHs +xvd +gHs +gHs +gHs +gHs +xvd +gHs +gHs +cxk +xOH +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +xOH +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +tKQ +ufJ +ufJ +ufJ +ufJ +ufJ +ufJ +ufJ +ufJ +tKQ +puk +puk +puk +pYJ +dzx +dzx +dzx +dzx +pYJ +pYJ +puk +puk +puk +puk +puk +puk +pYJ +pYJ +dzx +dzx +dzx +dzx +pYJ +puk +puk +puk +puk +wcv +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +wcv +puk +puk +puk +puk +ohh +jXl +kGG +oOW +oOW +oOW +oOW +rva +oPQ +lQg +rva +oOW +oOW +oOW +oOW +vCc +gZL +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pqM +aOO +tVo +qIo +aOO +qIo +qIo +vSV +aOO +gUs +rYJ +rYJ +rYJ +kAx +kTp +kTp +kTp +kTp +pbz +iKp +puk +puk +puk +puk +puk +puk +fFy +fFy +odB +ssp +shQ +ssp +trt +fFy +fFy +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +oVn +puk +puk +puk +gUy +puk +puk +"} +(240,1,1) = {" +puk +puk +hzT +fVh +fVh +fVh +fVh +fVh +fVh +fVh +fVh +fVh +fVh +raB +oPX +oPX +wPO +oPX +oPX +oPX +oPX +wPO +oPX +oPX +cxk +xOH +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +xOH +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +tKQ +tKQ +tKQ +tKQ +tKQ +tKQ +tKQ +tKQ +tKQ +tKQ +puk +puk +puk +pYJ +bNR +sKz +sKz +gSH +pYJ +puk +puk +puk +puk +puk +puk +puk +puk +pYJ +bNR +sKz +sKz +gSH +pYJ +puk +puk +puk +puk +wcv +wcv +wcv +wcv +wcv +wcv +wcv +wcv +wcv +wcv +wcv +wcv +wcv +wcv +wcv +wcv +wcv +wcv +wcv +wcv +wcv +wcv +wcv +wcv +wcv +wcv +wcv +wcv +wcv +puk +puk +puk +puk +ohh +jXl +kGG +oOW +oOW +oOW +oOW +oOW +rva +rva +oOW +oOW +oOW +sml +oOW +vCc +gZL +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pqM +aOO +vIw +qIo +aOO +qIo +qIo +vSV +aOO +hfY +rYJ +rYJ +rYJ +iKp +lmW +lON +kTp +lON +lmW +ohz +puk +puk +puk +puk +puk +puk +puk +fFy +uKb +tdh +tdh +tdh +vPM +fFy +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +oVn +puk +puk +puk +gUy +puk +puk +"} +(241,1,1) = {" +puk +puk +hzT +fVh +fVh +fVh +fVh +fVh +fVh +fVh +fVh +fVh +fVh +raB +wPO +wPO +wPO +wPO +wPO +wPO +wPO +wPO +wPO +wPO +cxk +xOH +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +xOH +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +ohh +jXl +kGG +oOW +oOW +oOW +oOW +oOW +oOW +oOW +oOW +oOW +oOW +oOW +oOW +vCc +gZL +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pqM +aOO +aOO +aOO +aOO +qIo +qIo +aOO +aOO +iKp +hOk +iKp +jQR +iKp +lmW +lON +kTp +lON +lmW +ohz +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +fGf +fGf +fGf +puk +puk +puk +gUy +puk +puk +"} +(242,1,1) = {" +puk +puk +rsU +cDE +cDE +cDE +cDE +cDE +cDE +cDE +cDE +cDE +cDE +rsU +cDE +cDE +cDE +cDE +cDE +cDE +cDE +cDE +cDE +cDE +rsU +xOH +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +xOH +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +ohh +jXl +oOW +oOW +oOW +oOW +oOW +oOW +oOW +oOW +oOW +oOW +oOW +rzt +oOW +vCc +gZL +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pqM +rsU +puk +puk +aOO +qIo +qIo +aOO +fGf +iKp +hRs +iKp +ket +iKp +lmW +lON +kTp +lON +lmW +ohz +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +fGf +fGf +fGf +fGf +fGf +puk +puk +gUy +puk +puk +"} +(243,1,1) = {" +puk +puk +hzT +iGm +dqK +dqK +dqK +mwZ +stR +wEC +wEC +wEC +rdo +raB +iBJ +wkC +wkC +wkC +wkC +wkC +wkC +wkC +wkC +wkC +cxk +xOH +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +xOH +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +ohh +jXl +oOW +oOW +oOW +oOW +oOW +oOW +oOW +ogr +oOW +oOW +oOW +oOW +oOW +vCc +gZL +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pqM +rsU +puk +puk +aOO +ehU +ehU +aOO +fGf +iKp +iKp +iKp +iKp +iKp +iKp +lQh +nKa +oXD +iKp +iKp +fGf +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +fGf +fGf +fGf +fGf +fGf +fGf +fGf +puk +gUy +puk +puk +"} +(244,1,1) = {" +puk +puk +hzT +sor +prV +prV +prV +wuR +fLN +prV +prV +prV +mCZ +raB +iBJ +wkC +wkC +apA +apA +apA +apA +wkC +wkC +wkC +cxk +xOH +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +coC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +xOH +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +ohh +jXl +kGG +oOW +oOW +oOW +oOW +oOW +oOW +oOW +oOW +oOW +oOW +rzt +oOW +vCc +gZL +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pqM +rsU +puk +puk +dhO +ess +ess +dhO +puk +fGf +fGf +fGf +fGf +fGf +iKp +iKp +iKp +iKp +iKp +fGf +fGf +fGf +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +fGf +fGf +fGf +fGf +fGf +fGf +fGf +puk +puk +gUy +puk +puk +"} +(245,1,1) = {" +puk +puk +hzT +sor +prV +prV +prV +wuR +fLN +prV +prV +prV +mCZ +raB +wkC +wkC +wkC +vTG +vTG +vTG +vTG +wkC +wkC +wkC +cxk +xOH +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +xOH +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +ohh +jXl +kGG +oOW +oOW +oOW +oOW +oOW +oOW +qGl +oOW +oOW +oOW +oOW +oOW +vCc +gZL +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pqM +rsU +puk +puk +aOO +esQ +esQ +aOO +puk +puk +puk +puk +puk +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +fGf +fGf +fGf +fGf +fGf +fGf +fGf +puk +puk +gUy +puk +puk +"} +(246,1,1) = {" +puk +puk +hzT +sor +prV +prV +prV +wuR +fLN +prV +prV +prV +mCZ +raB +wkC +wkC +bFp +wYj +iFh +iFh +vft +iTV +bjr +wkC +cxk +xOH +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +xOH +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +ohh +jXl +kGG +oOW +kEx +rwb +oOW +oOW +oOW +oOW +oOW +oOW +oOW +reV +oOW +vCc +gZL +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pqM +rsU +aVZ +iSX +aVZ +evg +evg +aVZ +aVZ +aVZ +aVZ +aVZ +puk +puk +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +fGf +fGf +fGf +fGf +fGf +fGf +fGf +puk +puk +gUy +puk +puk +"} +(247,1,1) = {" +puk +puk +hzT +sor +prV +prV +prV +wuR +fLN +prV +prV +prV +mCZ +raB +wkC +kgL +nyq +hpp +kTy +ayD +kPT +iTV +bjr +wkC +cxk +xOH +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +xOH +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +ohh +jXl +oOW +oOW +oOW +oOW +oOW +oOW +oOW +oOW +oOW +oOW +oOW +oOW +oOW +vCc +gZL +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pqM +rsU +bcY +cAh +dFI +eUF +bLg +fRL +nfO +hht +hUy +iSX +aVZ +puk +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +fGf +fGf +fGf +fGf +fGf +puk +puk +puk +gUy +puk +puk +"} +(248,1,1) = {" +puk +puk +hzT +sor +prV +prV +prV +wuR +fLN +prV +prV +prV +mCZ +raB +wkC +kgL +nyq +hpp +dcW +jLw +kPT +iTV +bjr +wkC +cxk +xOH +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +xOH +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +ohh +jXl +oOW +oOW +oOW +oOW +oOW +oOW +oOW +oOW +oOW +oOW +oOW +oOW +oOW +vCc +gZL +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pqM +rsU +bCq +cAh +dFI +eUF +eUF +eUF +eUF +eUF +eUF +jsM +kid +puk +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +oVn +fGf +fGf +fGf +puk +puk +puk +puk +gUy +puk +puk +"} +(249,1,1) = {" +puk +puk +hzT +aMd +dSd +dSd +dSd +oet +tWC +wUu +wUu +wUu +smB +raB +wkC +kgL +nyq +vft +xkU +xkU +sKT +hlE +wkC +wkC +cxk +xOH +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +xOH +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +ohh +jXl +oOW +oOW +oOW +oOW +oOW +oOW +oOW +oOW +oOW +rwb +kEx +oOW +oOW +vCc +gZL +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pqM +rsU +bUB +cAh +dFI +eUF +eUF +fSe +fSe +hht +iai +iSX +aVZ +puk +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +puk +puk +puk +puk +puk +puk +puk +puk +puk +oVn +oVn +puk +puk +puk +puk +puk +puk +puk +gUy +puk +puk +"} +(250,1,1) = {" +puk +puk +hzT +aRw +aRw +fmQ +aRw +aRw +aRw +aRw +fmQ +aRw +aRw +raB +wkC +wkC +wkC +dyT +dyT +dyT +dyT +wkC +wkC +wkC +cxk +xOH +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +xOH +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +ohh +jXl +oOW +oOW +oOW +oOW +oOW +oOW +oOW +oOW +oOW +oOW +oOW +oOW +oOW +vCc +gZL +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pqM +rsU +aVZ +iSX +aVZ +aVZ +aVZ +aVZ +aVZ +aVZ +aVZ +aVZ +puk +puk +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +puk +puk +puk +puk +puk +puk +oVn +oVn +puk +puk +puk +puk +puk +puk +puk +puk +gUy +puk +puk +"} +(251,1,1) = {" +puk +puk +hzT +bbQ +bbQ +pUr +bbQ +bbQ +bbQ +bbQ +pUr +bbQ +bbQ +raB +wkC +wkC +wkC +aHH +aHH +aHH +aHH +wkC +wkC +oLN +cxk +xOH +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +xOH +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +ohh +jXl +oOW +tFm +oOW +oOW +oOW +oOW +oOW +oOW +oOW +oOW +oOW +oOW +oOW +vCc +gZL +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pcu +pqM +rsU +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +puk +puk +puk +puk +oVn +puk +puk +puk +puk +puk +puk +puk +puk +puk +gUy +puk +puk +"} +(252,1,1) = {" +puk +puk +hzT +pUr +pUr +pUr +pUr +pUr +pUr +pUr +pUr +pUr +pUr +raB +wkC +wkC +wkC +wkC +wkC +wkC +wkC +wkC +wkC +oLN +cxk +xOH +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +oaC +xOH +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +ohh +jXl +jXl +jXl +jXl +jXl +jXl +jXl +jXl +jXl +jXl +jXl +jXl +jXl +jXl +jXl +isR +pqM +pqM +pqM +pqM +pqM +pqM +pqM +pqM +pqM +pqM +pqM +pqM +pqM +pqM +pqM +rsU +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +fGf +gUy +puk +puk +"} +(253,1,1) = {" +puk +puk +rsU +tMx +tMx +tMx +tMx +tMx +tMx +tMx +tMx +tMx +tMx +rsU +tMx +tMx +tMx +tMx +tMx +tMx +tMx +tMx +tMx +tMx +rsU +xOH +xOH +xOH +xOH +xOH +xOH +xOH +xOH +xOH +xOH +xOH +xOH +xOH +xOH +xOH +xOH +xOH +xOH +xOH +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +ohh +ohh +ohh +ohh +ohh +ohh +ohh +ohh +ohh +ohh +ohh +ohh +ohh +ohh +ohh +ohh +ohh +ohh +ohh +ohh +ohh +ohh +ohh +ohh +ohh +ohh +ohh +ohh +ohh +ohh +ohh +ohh +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +rsU +bEU +gUy +gUy +gUy +gUy +gUy +gUy +gUy +gUy +gUy +gUy +puk +puk +"} +(254,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} +(255,1,1) = {" +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +puk +"} diff --git a/maps/cynosure/cynosure-7.dmm b/maps/cynosure/cynosure-7.dmm new file mode 100644 index 0000000000..f80655426c --- /dev/null +++ b/maps/cynosure/cynosure-7.dmm @@ -0,0 +1,67072 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aU" = ( +/obj/structure/prop/rock/watersharp, +/turf/simulated/floor/water, +/area/surface/outside/river/gautelfr) +"bA" = ( +/turf/simulated/floor/wood/sif/broken, +/area/surface/outside/path/wilderness) +"bE" = ( +/turf/unsimulated/wall/planetary/sif, +/area/surface/outside/wilderness/mountains) +"ct" = ( +/turf/simulated/floor/outdoors/grass/sif, +/area/surface/outside/wilderness/normal) +"cv" = ( +/obj/structure/cliff/automatic{ + dir = 4 + }, +/turf/simulated/floor/outdoors/mask, +/area/surface/outside/wilderness/mountains) +"fy" = ( +/obj/structure/cliff/automatic, +/turf/simulated/floor/outdoors/mask, +/area/surface/outside/wilderness/normal) +"gl" = ( +/obj/structure/cliff/automatic{ + dir = 9 + }, +/turf/simulated/floor/outdoors/mask, +/area/surface/outside/wilderness/normal) +"hb" = ( +/obj/structure/cliff/automatic{ + dir = 8 + }, +/turf/simulated/floor/outdoors/mask, +/area/surface/outside/wilderness/normal) +"id" = ( +/turf/simulated/wall/sifwood, +/area/surface/outside/path/wilderness) +"jh" = ( +/obj/structure/prop/rock/water, +/turf/simulated/floor/water, +/area/surface/outside/river/gautelfr) +"jq" = ( +/turf/unsimulated/wall/planetary/sif{ + icon_state = "rock-dark" + }, +/area/surface/outside/wilderness/mountains) +"jE" = ( +/obj/structure/cliff/automatic{ + dir = 10 + }, +/turf/simulated/floor/outdoors/mask, +/area/surface/outside/wilderness/mountains) +"kx" = ( +/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 + }, +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/mask, +/area/surface/outside/wilderness/mountains) +"mZ" = ( +/obj/structure/cliff/automatic/corner{ + dir = 9 + }, +/turf/simulated/floor/outdoors/mask, +/area/surface/outside/wilderness/normal) +"ne" = ( +/turf/simulated/floor/outdoors/grass/sif, +/area/surface/outside/path/wilderness) +"nu" = ( +/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) +"pM" = ( +/turf/simulated/mineral/sif, +/area/surface/outside/wilderness/mountains) +"qh" = ( +/obj/structure/cliff/automatic{ + dir = 6 + }, +/turf/simulated/floor/outdoors/mask, +/area/surface/outside/wilderness/mountains) +"qT" = ( +/obj/effect/map_effect/portal/master/side_b/wilderness_to_plains/river{ + dir = 1 + }, +/turf/simulated/floor/outdoors/grass/sif, +/area/surface/outside/river/gautelfr) +"ta" = ( +/obj/structure/showcase/sign{ + icon_state = "wilderness2"; + pixel_y = -6 + }, +/turf/simulated/wall/sifwood, +/area/surface/outside/wilderness/normal) +"tM" = ( +/turf/simulated/floor/water, +/area/surface/outside/river/gautelfr) +"tV" = ( +/obj/structure/cliff/automatic{ + dir = 10 + }, +/turf/simulated/floor/outdoors/mask, +/area/surface/outside/wilderness/normal) +"ub" = ( +/obj/effect/map_effect/portal/line/side_b{ + dir = 1 + }, +/turf/simulated/floor/outdoors/dirt/sif, +/area/surface/outside/path/wilderness) +"uP" = ( +/turf/simulated/floor/outdoors/grass/sif/random{ + tree_chance = 0 + }, +/area/surface/outside/wilderness/deep) +"vu" = ( +/obj/structure/cliff/automatic/corner{ + dir = 10 + }, +/turf/simulated/floor/outdoors/mask, +/area/surface/outside/wilderness/normal) +"vQ" = ( +/obj/structure/prop/rock/small/wateralt, +/turf/simulated/floor/water, +/area/surface/outside/river/gautelfr) +"vX" = ( +/obj/structure/cliff/automatic{ + dir = 2 + }, +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/mask, +/area/surface/outside/wilderness/mountains) +"wt" = ( +/obj/structure/cliff/automatic{ + dir = 6 + }, +/turf/simulated/floor/outdoors/mask, +/area/surface/outside/wilderness/normal) +"wN" = ( +/turf/simulated/floor/outdoors/dirt/sif, +/area/surface/outside/path/wilderness) +"zk" = ( +/obj/effect/map_effect/portal/line/side_b{ + dir = 1 + }, +/turf/simulated/floor/outdoors/grass/sif, +/area/surface/outside/wilderness/normal) +"zn" = ( +/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, +/area/surface/outside/wilderness/normal) +"Ax" = ( +/turf/simulated/floor/outdoors/mask, +/area/surface/outside/wilderness/normal) +"Ay" = ( +/turf/simulated/floor/water, +/area/surface/outside/wilderness/mountains) +"Be" = ( +/obj/structure/cliff/automatic{ + dir = 8 + }, +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/mask, +/area/surface/outside/wilderness/normal) +"BR" = ( +/obj/structure/cliff/automatic{ + dir = 8 + }, +/turf/simulated/floor/outdoors/grass/sif, +/area/surface/outside/wilderness/mountains) +"Cb" = ( +/obj/structure/cliff/automatic/corner{ + dir = 6 + }, +/turf/simulated/floor/outdoors/mask, +/area/surface/outside/wilderness/normal) +"CR" = ( +/turf/simulated/floor/outdoors/dirt/sif, +/area/surface/outside/wilderness/mountains) +"Dn" = ( +/obj/effect/zone_divider, +/turf/simulated/mineral/sif, +/area/surface/outside/wilderness/mountains) +"Eo" = ( +/obj/structure/cliff/automatic{ + dir = 4 + }, +/turf/simulated/floor/outdoors/grass/sif, +/area/surface/outside/wilderness/mountains) +"Fg" = ( +/turf/simulated/floor/outdoors/mask, +/area/surface/outside/path/wilderness) +"FF" = ( +/turf/simulated/shuttle/wall/voidcraft, +/area/surface/outside/wilderness/mountains) +"Gf" = ( +/obj/structure/cliff/automatic/corner{ + dir = 6 + }, +/obj/structure/cliff/automatic{ + dir = 4 + }, +/turf/simulated/floor/outdoors/mask, +/area/surface/outside/wilderness/mountains) +"GK" = ( +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outside/wilderness/mountains) +"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, +/area/surface/outside/river/gautelfr) +"JF" = ( +/obj/effect/shuttle_landmark/cynosure/wilderness, +/turf/simulated/floor/outdoors/grass/sif/random{ + tree_chance = 0 + }, +/area/surface/outside/wilderness/deep) +"KZ" = ( +/turf/simulated/floor/wood/sif, +/area/surface/outside/path/wilderness) +"Mf" = ( +/obj/structure/cliff/automatic/corner{ + dir = 6 + }, +/turf/simulated/floor/outdoors/mask, +/area/surface/outside/wilderness/mountains) +"MK" = ( +/obj/effect/map_effect/portal/line/side_b{ + dir = 1 + }, +/turf/simulated/floor/water/deep, +/area/surface/outside/river/gautelfr) +"MS" = ( +/turf/simulated/floor/water/deep, +/area/surface/outside/river/gautelfr) +"NP" = ( +/turf/simulated/floor/outdoors/grass/sif, +/area/surface/outside/wilderness/mountains) +"Pe" = ( +/obj/structure/cliff/automatic{ + dir = 4 + }, +/turf/simulated/floor/outdoors/mask, +/area/surface/outside/wilderness/normal) +"PH" = ( +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/mask, +/area/surface/outside/wilderness/deep) +"Qw" = ( +/obj/structure/prop/rock/small/water, +/turf/simulated/floor/water, +/area/surface/outside/river/gautelfr) +"Qx" = ( +/obj/effect/map_effect/portal/master/side_b/wilderness_to_plains{ + dir = 1 + }, +/turf/simulated/floor/outdoors/grass/sif, +/area/surface/outside/path/wilderness) +"Sa" = ( +/obj/effect/zone_divider, +/turf/simulated/floor/water, +/area/surface/outside/river/gautelfr) +"Sl" = ( +/turf/simulated/floor/outdoors/mud/sif/planetuse, +/area/surface/outside/wilderness/normal) +"SZ" = ( +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/snow/sif/planetuse, +/area/surface/outside/wilderness/mountains) +"TP" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/water, +/area/surface/outside/river/gautelfr) +"UA" = ( +/obj/structure/cliff/automatic/corner{ + dir = 10 + }, +/turf/simulated/floor/outdoors/mask, +/area/surface/outside/wilderness/mountains) +"VU" = ( +/obj/structure/cliff/automatic{ + dir = 2 + }, +/turf/simulated/floor/outdoors/mask, +/area/surface/outside/wilderness/mountains) +"Wz" = ( +/obj/structure/cliff/automatic/corner{ + dir = 6 + }, +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/mask, +/area/surface/outside/wilderness/mountains) +"XN" = ( +/obj/effect/zone_divider, +/turf/simulated/floor/outdoors/mask, +/area/surface/outside/path/wilderness) +"Yh" = ( +/obj/structure/cliff/automatic/corner{ + dir = 10 + }, +/obj/structure/cliff/automatic{ + dir = 8 + }, +/turf/simulated/floor/outdoors/mask, +/area/surface/outside/wilderness/mountains) +"Zo" = ( +/obj/effect/map_effect/portal/line/side_b{ + dir = 1 + }, +/turf/simulated/floor/outdoors/grass/sif, +/area/surface/outside/path/wilderness) +"ZB" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/water, +/area/surface/outside/river/gautelfr) + +(1,1,1) = {" +jq +jq +jq +jq +jq +jq +jq +jq +jq +jq +jq +jq +jq +jq +jq +jq +jq +jq +jq +jq +jq +jq +jq +jq +jq +jq +jq +jq +jq +jq +jq +jq +jq +jq +jq +jq +jq +jq +jq +jq +jq +jq +jq +jq +jq +jq +jq +jq +jq +jq +jq +jq +jq +jq +jq +jq +jq +jq +jq +jq +jq +jq +jq +jq +jq +jq +jq +jq +jq +jq +jq +jq +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +"} +(2,1,1) = {" +jq +pM +pM +pM +pM +pM +pM +pM +pM +pM +pM +pM +pM +pM +pM +pM +pM +pM +pM +pM +pM +pM +pM +pM +pM +pM +pM +pM +pM +pM +pM +pM +pM +pM +pM +pM +pM +pM +pM +pM +pM +pM +pM +pM +pM +pM +pM +pM +pM +pM +pM +pM +pM +pM +pM +pM +pM +pM +pM +pM +pM +Dn +pM +pM +pM +pM +pM +pM +pM +pM +pM +pM +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +tM +MS +MS +MS +MS +MS +MS +tM +MS +MS +tM +tM +tM +oR +oR +oR +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 +Ax +VU +GK +bE +"} +(3,1,1) = {" +jq +pM +pM +pM +pM +pM +pM +pM +pM +pM +pM +pM +pM +pM +oR +oR +oR +pM +pM +pM +oR +pM +pM +pM +oR +oR +oR +oR +pM +pM +pM +pM +oR +oR +oR +pM +oR +pM +pM +pM +oR +oR +oR +pM +pM +pM +pM +pM +pM +pM +pM +pM +pM +pM +pM +pM +pM +pM +pM +pM +pM +Dn +pM +pM +pM +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 +tM +MS +MS +MS +MS +MS +tM +MS +MS +MS +tM +tM +tM +oR +oR +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 +Ax +VU +GK +bE +"} +(4,1,1) = {" +jq +pM +pM +pM +pM +pM +pM +pM +pM +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +tM +MS +MS +MS +MS +MS +tM +tM +MS +MS +tM +tM +tM +oR +oR +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 +Ax +VU +GK +bE +"} +(5,1,1) = {" +jq +pM +pM +pM +pM +pM +pM +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +tM +MS +MS +MS +MS +MS +tM +MS +MS +tM +tM +tM +oR +oR +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 +Ax +VU +GK +bE +"} +(6,1,1) = {" +jq +pM +pM +pM +pM +pM +pM +pM +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 +eL +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 +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 +tM +tM +MS +MS +MS +MS +MS +MS +MS +MS +tM +tM +oR +oR +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 +Mf +qh +GK +bE +"} +(7,1,1) = {" +jq +pM +pM +pM +pM +pM +pM +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +eL +eL +oR +oR +oR +oR +oR +oR +oR +eL +eL +oR +oR +eL +oR +oR +oR +oR +eL +oR +oR +eL +oR +eL +eL +eL +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +tM +MS +MS +MS +MS +tM +MS +MS +MS +tM +tM +tM +oR +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 +"} +(8,1,1) = {" +jq +pM +pM +pM +pM +pM +oR +oR +oR +oR +eL +oR +oR +oR +oR +eL +oR +oR +oR +eL +oR +eL +oR +oR +oR +eL +oR +oR +oR +eL +oR +oR +oR +eL +eL +eL +oR +eL +oR +oR +eL +eL +eL +eL +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +tM +tM +MS +MS +MS +MS +tM +MS +MS +tM +tM +tM +oR +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 +"} +(9,1,1) = {" +jq +pM +pM +pM +pM +pM +oR +oR +oR +oR +eL +oR +oR +eL +oR +eL +eL +oR +oR +eL +oR +oR +oR +eL +eL +oR +oR +oR +eL +oR +oR +<<<<<<< HEAD +eL +eL +======= +>>>>>>> 339281e2f8d... Merge pull request #8382 from PrismaticGynoid/mapfixes8 +oR +Wi +Wi +Wi +Wi +oR +oR +oR +eL +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +tM +MS +MS +MS +MS +tM +MS +MS +tM +tM +tM +oR +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 +"} +(10,1,1) = {" +jq +pM +pM +pM +pM +oR +oR +oR +oR +oR +oR +eL +oR +eL +oR +oR +<<<<<<< HEAD +eL +======= +oR +oR +oR +oR +oR +oR +>>>>>>> 339281e2f8d... Merge pull request #8382 from PrismaticGynoid/mapfixes8 +oR +oR +eL +oR +oR +oR +oR +<<<<<<< HEAD +eL +oR +eL +======= +oR +oR +oR +>>>>>>> 339281e2f8d... Merge pull request #8382 from PrismaticGynoid/mapfixes8 +oR +eL +oR +oR +oR +<<<<<<< HEAD +eL +Wi +Wi +Wi +Wi +eL +======= +oR +>>>>>>> 339281e2f8d... Merge pull request #8382 from PrismaticGynoid/mapfixes8 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +<<<<<<< HEAD +FR +======= +oR +oR +oR +oR +oR +oR +oR +PH +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +>>>>>>> 339281e2f8d... Merge pull request #8382 from PrismaticGynoid/mapfixes8 +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 +tM +tM +MS +MS +MS +tM +MS +MS +MS +tM +tM +tM +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 +oR +oR +oR +oR +<<<<<<< HEAD +======= +oR +oR +oR +>>>>>>> 339281e2f8d... Merge pull request #8382 from PrismaticGynoid/mapfixes8 +oR +oR +Wi +Wi +Wi +oR +<<<<<<< HEAD +eL +eL +oR +oR +eL +eL +Wi +Wi +Wi +eL +eL +oR +Wi +Wi +Wi +Wi +Wi +Wi +Wi +Wi +eL +======= +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +>>>>>>> 339281e2f8d... Merge pull request #8382 from PrismaticGynoid/mapfixes8 +oR +oR +oR +<<<<<<< HEAD +eL +oR +======= +>>>>>>> 339281e2f8d... Merge pull request #8382 from PrismaticGynoid/mapfixes8 +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 +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 +oR +tM +tM +MS +MS +MS +MS +MS +MS +tM +tM +tM +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 +"} +(12,1,1) = {" +jq +pM +pM +pM +oR +oR +oR +oR +oR +oR +oR +<<<<<<< HEAD +eL +eL +eL +Wi +Wi +Wi +oR +Wi +Wi +Wi +Wi +Wi +Wi +Wi +Wi +Wi +======= +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +>>>>>>> 339281e2f8d... Merge pull request #8382 from PrismaticGynoid/mapfixes8 +oR +Wi +Wi +Wi +Wi +Wi +Wi +Wi +Wi +Wi +oR +oR +eL +eL +eL +eL +oR +eL +oR +oR +oR +oR +oR +oR +oR +oR +uP +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +tM +tM +tM +MS +MS +MS +MS +MS +MS +tM +tM +tM +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 +"} +(13,1,1) = {" +jq +pM +pM +oR +oR +oR +oR +oR +oR +oR +oR +oR +<<<<<<< HEAD +oR +oR +Wi +Wi +Wi +Wi +Wi +Wi +Wi +Wi +Wi +Wi +Wi +Wi +Wi +Wi +Wi +Wi +Wi +Hb +Hb +Wi +eL +oR +eL +eL +eL +eL +eL +eL +eL +oR +eL +======= +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +uP +uP +oR +oR +oR +oR +oR +oR +oR +uP +uP +oR +oR +uP +oR +oR +oR +oR +uP +oR +oR +uP +oR +uP +uP +uP +oR +oR +oR +>>>>>>> 339281e2f8d... Merge pull request #8382 from PrismaticGynoid/mapfixes8 +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +tM +tM +tM +tM +MS +MS +MS +MS +MS +tM +tM +tM +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 +"} +(14,1,1) = {" +jq +pM +pM +oR +oR +oR +oR +oR +eL +eL +oR +oR +<<<<<<< HEAD +Wi +Wi +Wi +Wi +Wi +Wi +Wi +Wi +Wi +Wi +Wi +Wi +Wi +Wi +Wi +Wi +Wi +Hb +Hb +Wi +Wi +Wi +Wi +Wi +Wi +======= +uP +>>>>>>> 339281e2f8d... Merge pull request #8382 from PrismaticGynoid/mapfixes8 +oR +oR +oR +oR +<<<<<<< HEAD +======= +uP +oR +oR +oR +uP +oR +uP +oR +oR +oR +uP +oR +oR +oR +uP +oR +>>>>>>> 339281e2f8d... Merge pull request #8382 from PrismaticGynoid/mapfixes8 +oR +oR +uP +uP +uP +oR +<<<<<<< HEAD +======= +uP +oR +oR +uP +uP +uP +uP +>>>>>>> 339281e2f8d... Merge pull request #8382 from PrismaticGynoid/mapfixes8 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +oR +tM +tM +tM +MS +MS +MS +MS +MS +tM +tM +tM +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 +Mf +qh +GK +GK +bE +"} +(15,1,1) = {" +jq +pM +pM +oR +oR +oR +oR +<<<<<<< HEAD +eL +eL +eL +oR +eL +oR +Wi +Wi +Wi +Wi +Wi +Wi +Wi +Hb +Hb +Hb +Hb +Wi +Wi +Wi +Wi +Wi +Hb +Hb +Hb +Wi +Wi +Wi +Wi +Wi +Wi +eL +eL +eL +oR +oR +oR +oR +oR +oR +======= +oR +oR +oR +oR +oR +oR +oR +uP +oR +oR +uP +oR +uP +uP +oR +>>>>>>> 339281e2f8d... Merge pull request #8382 from PrismaticGynoid/mapfixes8 +oR +uP +oR +oR +oR +uP +uP +oR +oR +oR +uP +oR +oR +uP +uP +oR +uP +uP +uP +uP +oR +oR +oR +uP +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +oR +tM +tM +tM +tM +MS +MS +MS +MS +tM +tM +tM +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 +VU +GK +GK +GK +bE +"} +(16,1,1) = {" +jq +pM +oR +oR +oR +oR +oR +oR +eL +oR +oR +<<<<<<< HEAD +Wi +Wi +Wi +Wi +Wi +Wi +Wi +Hb +Hb +Hb +Wi +Wi +Hb +Wi +Wi +Wi +Hb +Hb +Hb +Hb +Wi +Wi +Wi +oR +Wi +Wi +Wi +oR +eL +eL +oR +oR +oR +oR +oR +======= +uP +oR +uP +oR +oR +uP +oR +oR +uP +oR +oR +oR +oR +uP +oR +uP +oR +uP +oR +oR +uP +oR +uP +uP +uP +uP +uP +uP +>>>>>>> 339281e2f8d... Merge pull request #8382 from PrismaticGynoid/mapfixes8 +oR +uP +uP +uP +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +oR +oR +tM +tM +tM +MS +MS +MS +MS +MS +tM +tM +tM +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 +VU +GK +GK +GK +bE +"} +(17,1,1) = {" +jq +pM +oR +oR +oR +oR +oR +oR +oR +oR +<<<<<<< HEAD +eL +Wi +Wi +Wi +Wi +Wi +Wi +Wi +Hb +Wi +Wi +Wi +Hb +Hb +Hb +Wi +Wi +Hb +Hb +Hb +Wi +Wi +Wi +Wi +eL +eL +eL +======= +oR +oR +oR +oR +oR +oR +uP +oR +uP +uP +uP +oR +uP +uP +oR +oR +uP +uP +uP +uP +uP +uP +uP +oR +uP +uP +uP +uP +uP +uP +uP +uP +uP +oR +uP +oR +oR +uP +oR +oR +oR +>>>>>>> 339281e2f8d... Merge pull request #8382 from PrismaticGynoid/mapfixes8 +oR +eL +eL +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +oR +oR +oR +tM +tM +MS +MS +MS +MS +MS +tM +tM +tM +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 +VU +GK +GK +GK +bE +"} +(18,1,1) = {" +jq +pM +pM +oR +oR +oR +oR +oR +oR +<<<<<<< HEAD +oR +oR +Wi +Wi +Wi +Wi +Wi +Wi +Wi +Wi +Wi +Wi +Hb +Wi +Wi +Wi +Hb +Hb +Hb +Wi +Hb +Wi +Wi +Wi +Wi +eL +eL +eL +eL +oR +oR +oR +oR +======= +oR +>>>>>>> 339281e2f8d... Merge pull request #8382 from PrismaticGynoid/mapfixes8 +oR +oR +oR +oR +oR +uP +uP +uP +uP +uP +uP +oR +uP +uP +uP +uP +uP +uP +uP +uP +uP +oR +uP +uP +uP +uP +uP +uP +uP +uP +uP +oR +uP +oR +uP +uP +uP +uP +oR +uP +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +oR +oR +oR +tM +tM +MS +MS +MS +MS +MS +tM +tM +tM +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 +VU +GK +GK +GK +bE +"} +(19,1,1) = {" +jq +pM +pM +oR +oR +oR +oR +<<<<<<< HEAD +eL +oR +oR +eL +Wi +Wi +Wi +Wi +Wi +Wi +Wi +Hb +Wi +Wi +Hb +Wi +Hb +Hb +Wi +Hb +Hb +Hb +Wi +Wi +Wi +Wi +Wi +eL +eL +eL +eL +eL +======= +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +Hb +Hb +uP +uP +oR +uP +uP +uP +uP +uP +uP +uP +oR +uP +oR +>>>>>>> 339281e2f8d... Merge pull request #8382 from PrismaticGynoid/mapfixes8 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +PH +oR +oR +oR +oR +oR +oR +oR +oR +<<<<<<< HEAD +oR +oR +oR +FR +======= +>>>>>>> 339281e2f8d... Merge pull request #8382 from PrismaticGynoid/mapfixes8 +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 +tM +tM +MS +MS +MS +MS +MS +tM +tM +tM +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 +VU +GK +GK +GK +bE +"} +(20,1,1) = {" +jq +pM +pM +oR +oR +oR +oR +eL +oR +eL +oR +oR +oR +<<<<<<< HEAD +Wi +Wi +Wi +Wi +Hb +Wi +Wi +Wi +Hb +Wi +Hb +Hb +Hb +Hb +Hb +Wi +Hb +Wi +Wi +Wi +oR +oR +eL +oR +oR +oR +oR +oR +======= +oR +uP +uP +oR +uP +oR +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +Hb +Hb +uP +uP +uP +uP +uP +uP +oR +>>>>>>> 339281e2f8d... Merge pull request #8382 from PrismaticGynoid/mapfixes8 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +oR +oR +oR +tM +tM +MS +MS +MS +MS +MS +MS +tM +tM +tM +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 +VU +GK +GK +GK +bE +"} +(21,1,1) = {" +jq +pM +pM +oR +oR +oR +oR +eL +oR +eL +eL +eL +oR +<<<<<<< HEAD +Wi +Wi +Wi +Wi +Wi +Hb +Hb +Wi +Wi +======= +oR +oR +uP +uP +uP +oR +uP +oR +uP +uP +uP +uP +uP +uP +uP +Hb +Hb +Hb +>>>>>>> 339281e2f8d... Merge pull request #8382 from PrismaticGynoid/mapfixes8 +Hb +uP +uP +uP +uP +uP +Hb +Hb +<<<<<<< HEAD +Hb +Wi +Hb +Hb +Hb +Wi +Wi +Wi +Wi +oR +oR +oR +oR +oR +======= +Hb +uP +uP +uP +uP +uP +uP +uP +uP +uP +>>>>>>> 339281e2f8d... Merge pull request #8382 from PrismaticGynoid/mapfixes8 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +oR +oR +oR +tM +tM +MS +MS +MS +MS +MS +MS +tM +tM +tM +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 +VU +GK +GK +GK +bE +"} +(22,1,1) = {" +jq +pM +pM +oR +oR +oR +<<<<<<< HEAD +eL +======= +oR +oR +>>>>>>> 339281e2f8d... Merge pull request #8382 from PrismaticGynoid/mapfixes8 +oR +eL +eL +oR +<<<<<<< HEAD +eL +Wi +Wi +Wi +Wi +Wi +Wi +======= +oR +oR +uP +oR +oR +uP +uP +uP +uP +uP +uP +uP +>>>>>>> 339281e2f8d... Merge pull request #8382 from PrismaticGynoid/mapfixes8 +Hb +Hb +Hb +uP +uP +Hb +uP +uP +uP +Hb +<<<<<<< HEAD +Hb +Hb +Wi +Wi +Wi +Hb +Wi +Wi +======= +Hb +Hb +Hb +uP +uP +uP +oR +uP +uP +uP +oR +uP +uP +>>>>>>> 339281e2f8d... Merge pull request #8382 from PrismaticGynoid/mapfixes8 +oR +oR +Wi +oR +oR +oR +oR +oR +eL +oR +eL +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +oR +oR +oR +tM +tM +MS +MS +MS +MS +MS +MS +MS +tM +tM +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 +UA +jE +GK +GK +bE +"} +(23,1,1) = {" +jq +pM +pM +oR +oR +oR +oR +oR +oR +<<<<<<< HEAD +eL +eL +oR +Wi +Wi +Wi +Wi +Wi +Hb +Hb +======= +oR +oR +oR +oR +oR +uP +uP +uP +uP +uP +uP +uP +uP +Hb +uP +uP +uP +>>>>>>> 339281e2f8d... Merge pull request #8382 from PrismaticGynoid/mapfixes8 +Hb +Hb +Hb +uP +uP +Hb +Hb +Hb +<<<<<<< HEAD +Hb +Wi +Wi +Wi +Wi +Wi +======= +uP +uP +uP +uP +uP +uP +uP +>>>>>>> 339281e2f8d... Merge pull request #8382 from PrismaticGynoid/mapfixes8 +oR +uP +uP +oR +<<<<<<< HEAD +======= +oR +>>>>>>> 339281e2f8d... Merge pull request #8382 from PrismaticGynoid/mapfixes8 +oR +oR +eL +eL +oR +oR +eL +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +oR +oR +oR +tM +tM +tM +MS +MS +MS +MS +MS +MS +tM +tM +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 +"} +(24,1,1) = {" +jq +pM +pM +oR +oR +oR +<<<<<<< HEAD +eL +oR +eL +oR +eL +eL +Wi +Wi +Wi +Wi +Wi +Wi +Wi +Wi +Wi +Hb +Hb +======= +oR +oR +oR +oR +oR +oR +oR +oR +oR +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +>>>>>>> 339281e2f8d... Merge pull request #8382 from PrismaticGynoid/mapfixes8 +Hb +uP +uP +uP +Hb +<<<<<<< HEAD +Wi +Wi +======= +Hb +Hb +uP +>>>>>>> 339281e2f8d... Merge pull request #8382 from PrismaticGynoid/mapfixes8 +Hb +uP +uP +uP +uP +uP +uP +uP +uP +oR +oR +eL +eL +eL +eL +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +oR +oR +oR +oR +tM +tM +MS +MS +MS +MS +MS +MS +tM +tM +tM +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 +"} +(25,1,1) = {" +jq +pM +pM +oR +oR +oR +oR +<<<<<<< HEAD +oR +eL +======= +>>>>>>> 339281e2f8d... Merge pull request #8382 from PrismaticGynoid/mapfixes8 +oR +oR +<<<<<<< HEAD +Wi +Wi +Wi +Wi +Wi +Wi +Wi +======= +oR +oR +uP +oR +oR +uP +uP +uP +uP +uP +uP +uP +uP +Hb +uP +uP +Hb +uP +>>>>>>> 339281e2f8d... Merge pull request #8382 from PrismaticGynoid/mapfixes8 +Hb +Hb +uP +Hb +Hb +<<<<<<< HEAD +Wi +Hb +Hb +Wi +Wi +Wi +Wi +eL +oR +oR +eL +oR +======= +Hb +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +oR +oR +>>>>>>> 339281e2f8d... Merge pull request #8382 from PrismaticGynoid/mapfixes8 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +oR +oR +oR +oR +oR +tM +MS +MS +MS +MS +MS +MS +MS +tM +tM +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 +"} +(26,1,1) = {" +jq +pM +pM +oR +oR +oR +oR +oR +oR +oR +<<<<<<< HEAD +eL +eL +Wi +Wi +Wi +Wi +Wi +Hb +Wi +Wi +Hb +Wi +======= +oR +uP +oR +uP +oR +oR +oR +uP +uP +uP +uP +Hb +uP +uP +uP +Hb +uP +Hb +Hb +Hb +>>>>>>> 339281e2f8d... Merge pull request #8382 from PrismaticGynoid/mapfixes8 +Hb +Hb +uP +Hb +<<<<<<< HEAD +Wi +Wi +Wi +Wi +Wi +Wi +eL +======= +uP +uP +uP +oR +oR +uP +>>>>>>> 339281e2f8d... Merge pull request #8382 from PrismaticGynoid/mapfixes8 +oR +oR +oR +oR +oR +<<<<<<< HEAD +eL +======= +>>>>>>> 339281e2f8d... Merge pull request #8382 from PrismaticGynoid/mapfixes8 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +PH +oR +oR +oR +oR +oR +oR +<<<<<<< HEAD +oR +FR +======= +>>>>>>> 339281e2f8d... Merge pull request #8382 from PrismaticGynoid/mapfixes8 +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 +tM +tM +MS +MS +MS +MS +MS +MS +tM +tM +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 +"} +(27,1,1) = {" +jq +pM +pM +oR +oR +oR +oR +oR +oR +<<<<<<< HEAD +eL +eL +eL +Wi +Wi +Wi +Wi +Wi +Wi +Hb +Hb +Hb +Wi +Hb +Hb +Wi +Hb +Hb +Wi +Wi +Wi +Wi +oR +eL +oR +eL +oR +eL +======= +oR +oR +uP +oR +uP +uP +uP +oR +uP +uP +uP +uP +uP +Hb +Hb +uP +uP +Hb +Hb +Hb +Hb +uP +Hb +Hb +Hb +uP +uP +uP +uP +oR +oR +oR +>>>>>>> 339281e2f8d... Merge pull request #8382 from PrismaticGynoid/mapfixes8 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +PH +oR +oR +oR +oR +oR +oR +oR +oR +<<<<<<< HEAD +oR +oR +FR +======= +>>>>>>> 339281e2f8d... Merge pull request #8382 from PrismaticGynoid/mapfixes8 +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 +tM +tM +MS +MS +MS +MS +MS +MS +tM +tM +tM +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 +"} +(28,1,1) = {" +jq +pM +oR +oR +oR +oR +oR +oR +oR +<<<<<<< HEAD +eL +eL +eL +oR +Wi +Wi +Wi +Wi +eL +Wi +Wi +Wi +Hb +Wi +======= +oR +uP +oR +uP +uP +oR +uP +uP +uP +uP +uP +uP +uP +Hb +Hb +uP +Hb +Hb +>>>>>>> 339281e2f8d... Merge pull request #8382 from PrismaticGynoid/mapfixes8 +Hb +Wi +Hb +<<<<<<< HEAD +Wi +Wi +Wi +Wi +Wi +eL +eL +eL +======= +uP +uP +uP +Hb +uP +uP +oR +oR +uP +oR +oR +oR +>>>>>>> 339281e2f8d... Merge pull request #8382 from PrismaticGynoid/mapfixes8 +oR +eL +eL +oR +<<<<<<< HEAD +eL +======= +uP +>>>>>>> 339281e2f8d... Merge pull request #8382 from PrismaticGynoid/mapfixes8 +oR +uP +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +oR +oR +oR +oR +oR +oR +tM +tM +MS +MS +MS +MS +MS +tM +tM +tM +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 +"} +(29,1,1) = {" +jq +pM +oR +oR +oR +oR +oR +oR +oR +eL +oR +oR +<<<<<<< HEAD +Wi +Wi +Wi +Wi +Wi +eL +Wi +Hb +Hb +Wi +Wi +Wi +Wi +Wi +Wi +Wi +Wi +Wi +Wi +eL +eL +eL +eL +eL +eL +======= +oR +uP +oR +uP +uP +oR +uP +uP +uP +uP +uP +Hb +Hb +Hb +Hb +Hb +Hb +Hb +uP +Hb +Hb +uP +uP +uP +uP +uP +oR +>>>>>>> 339281e2f8d... Merge pull request #8382 from PrismaticGynoid/mapfixes8 +oR +oR +oR +uP +uP +oR +<<<<<<< HEAD +eL +eL +======= +oR +uP +oR +>>>>>>> 339281e2f8d... Merge pull request #8382 from PrismaticGynoid/mapfixes8 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +oR +oR +oR +oR +oR +oR +tM +tM +MS +MS +MS +MS +MS +MS +tM +tM +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 +"} +(30,1,1) = {" +jq +pM +pM +oR +oR +oR +oR +oR +oR +oR +<<<<<<< HEAD +oR +eL +Wi +Wi +Wi +Wi +Wi +Wi +Wi +Wi +Wi +Wi +Wi +Wi +Wi +Wi +Wi +Wi +Wi +Wi +Wi +eL +eL +eL +eL +eL +eL +======= +uP +oR +uP +oR +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +Hb +Hb +Hb +Hb +uP +uP +Hb +uP +uP +uP +uP +oR +oR +uP +uP +uP +uP +>>>>>>> 339281e2f8d... Merge pull request #8382 from PrismaticGynoid/mapfixes8 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +oR +oR +oR +oR +oR +oR +tM +tM +tM +MS +MS +MS +MS +MS +tM +tM +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 +UA +jE +GK +bE +"} +(31,1,1) = {" +jq +pM +pM +oR +oR +oR +oR +oR +oR +oR +oR +<<<<<<< HEAD +eL +Wi +Wi +Wi +Wi +Wi +Wi +Wi +Wi +Wi +Wi +Wi +Wi +Wi +Wi +Wi +Wi +Wi +oR +eL +eL +eL +oR +oR +======= +oR +uP +oR +uP +uP +oR +uP +uP +uP +uP +uP +uP +uP +Hb +Hb +JF +Hb +Hb +uP +Hb +Hb +uP +uP +uP +uP +uP +oR +oR +uP +oR +oR +oR +oR +oR +>>>>>>> 339281e2f8d... Merge pull request #8382 from PrismaticGynoid/mapfixes8 +oR +oR +oR +oR +oR +eL +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +oR +oR +oR +oR +oR +oR +tM +tM +tM +MS +MS +MS +MS +MS +tM +tM +tM +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 +Ax +VU +GK +bE +"} +(32,1,1) = {" +jq +pM +pM +oR +oR +oR +oR +oR +oR +oR +<<<<<<< HEAD +eL +eL +Wi +Wi +Wi +oR +Wi +Wi +Wi +Wi +Wi +Wi +Wi +Wi +Wi +Wi +Wi +oR +Wi +eL +eL +eL +oR +oR +eL +oR +oR +oR +eL +======= +oR +oR +oR +oR +uP +uP +uP +uP +uP +uP +uP +Hb +uP +uP +Hb +uP +Hb +uP +Hb +Hb +uP +uP +uP +uP +uP +uP +uP +>>>>>>> 339281e2f8d... Merge pull request #8382 from PrismaticGynoid/mapfixes8 +oR +oR +oR +oR +oR +uP +oR +oR +uP +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +<<<<<<< HEAD +FR +======= +oR +oR +PH +oR +oR +oR +oR +oR +oR +oR +oR +>>>>>>> 339281e2f8d... Merge pull request #8382 from PrismaticGynoid/mapfixes8 +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 +tM +tM +MS +MS +MS +MS +MS +MS +tM +tM +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 +Ax +VU +GK +bE +"} +(33,1,1) = {" +jq +pM +pM +oR +oR +oR +oR +eL +oR +<<<<<<< HEAD +eL +eL +eL +Wi +Wi +Wi +Wi +Wi +Wi +Wi +oR +oR +Wi +Wi +Wi +Wi +Wi +Wi +eL +oR +eL +oR +eL +eL +eL +eL +======= +oR +uP +uP +uP +uP +uP +uP +uP +uP +uP +Hb +Hb +Hb +uP +Hb +Hb +uP +Hb +Hb +uP +uP +uP +uP +oR +uP +oR +uP +oR +uP +oR +oR +oR +>>>>>>> 339281e2f8d... Merge pull request #8382 from PrismaticGynoid/mapfixes8 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +PH +oR +oR +oR +oR +oR +oR +<<<<<<< HEAD +oR +oR +oR +FR +======= +>>>>>>> 339281e2f8d... Merge pull request #8382 from PrismaticGynoid/mapfixes8 +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 +oR +oR +tM +tM +MS +MS +MS +MS +MS +MS +tM +tM +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 +Ax +VU +GK +bE +"} +(34,1,1) = {" +jq +pM +pM +pM +oR +oR +oR +oR +oR +<<<<<<< HEAD +eL +oR +eL +Wi +Wi +Wi +Wi +Wi +Wi +oR +eL +eL +oR +Wi +Wi +oR +Wi +Wi +eL +eL +eL +eL +======= +oR +oR +oR +oR +uP +uP +uP +oR +uP +uP +uP +uP +uP +uP +uP +uP +Hb +uP +Hb +uP +Hb +uP +uP +uP +uP +uP +uP +uP +uP +oR +uP +uP +oR +uP +oR +oR +>>>>>>> 339281e2f8d... Merge pull request #8382 from PrismaticGynoid/mapfixes8 +oR +eL +eL +oR +oR +<<<<<<< HEAD +eL +eL +oR +======= +>>>>>>> 339281e2f8d... Merge pull request #8382 from PrismaticGynoid/mapfixes8 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +tM +tM +MS +MS +MS +MS +MS +tM +tM +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 +Ax +VU +GK +bE +"} +(35,1,1) = {" +jq +pM +pM +pM +oR +oR +eL +oR +oR +oR +oR +<<<<<<< HEAD +eL +Wi +Wi +Wi +Wi +Wi +Wi +oR +eL +eL +oR +oR +Wi +eL +======= +oR +oR +uP +oR +oR +uP +uP +uP +uP +uP +uP +uP +Hb +Hb +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +>>>>>>> 339281e2f8d... Merge pull request #8382 from PrismaticGynoid/mapfixes8 +oR +eL +oR +oR +eL +eL +oR +<<<<<<< HEAD +eL +======= +uP +uP +oR +>>>>>>> 339281e2f8d... Merge pull request #8382 from PrismaticGynoid/mapfixes8 +oR +oR +oR +oR +oR +<<<<<<< HEAD +oR +oR +oR +oR +oR +oR +======= +>>>>>>> 339281e2f8d... Merge pull request #8382 from PrismaticGynoid/mapfixes8 +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +tM +tM +MS +MS +MS +MS +MS +tM +tM +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 +Ax +VU +GK +bE +"} +(36,1,1) = {" +jq +pM +pM +pM +oR +oR +oR +oR +<<<<<<< HEAD +oR +oR +eL +eL +eL +======= +oR +>>>>>>> 339281e2f8d... Merge pull request #8382 from PrismaticGynoid/mapfixes8 +oR +eL +oR +<<<<<<< HEAD +Wi +Wi +oR +eL +oR +oR +eL +eL +eL +oR +eL +======= +>>>>>>> 339281e2f8d... Merge pull request #8382 from PrismaticGynoid/mapfixes8 +oR +oR +oR +oR +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +PH +oR +oR +oR +oR +oR +oR +oR +<<<<<<< HEAD +oR +oR +FR +======= +>>>>>>> 339281e2f8d... Merge pull request #8382 from PrismaticGynoid/mapfixes8 +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 +oR +oR +tM +tM +MS +MS +MS +MS +MS +tM +tM +tM +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 +Mf +qh +GK +bE +"} +(37,1,1) = {" +jq +pM +pM +pM +oR +oR +oR +oR +<<<<<<< HEAD +eL +eL +eL +eL +eL +eL +eL +eL +eL +oR +eL +oR +eL +eL +oR +oR +oR +eL +oR +oR +eL +oR +oR +oR +eL +eL +======= +oR +oR +oR +oR +oR +oR +oR +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +>>>>>>> 339281e2f8d... Merge pull request #8382 from PrismaticGynoid/mapfixes8 +oR +uP +uP +uP +oR +<<<<<<< HEAD +eL +oR +oR +======= +>>>>>>> 339281e2f8d... Merge pull request #8382 from PrismaticGynoid/mapfixes8 +oR +oR +uP +oR +oR +oR +oR +uP +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +tM +tM +tM +MS +MS +MS +MS +MS +tM +tM +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 +"} +(38,1,1) = {" +jq +pM +pM +pM +oR +oR +oR +<<<<<<< HEAD +oR +oR +oR +eL +eL +eL +eL +eL +oR +eL +eL +eL +oR +oR +======= +oR +oR +oR +oR +oR +oR +oR +uP +uP +uP +uP +uP +oR +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +>>>>>>> 339281e2f8d... Merge pull request #8382 from PrismaticGynoid/mapfixes8 +oR +uP +uP +uP +uP +oR +oR +<<<<<<< HEAD +oR +oR +oR +oR +oR +oR +oR +======= +uP +>>>>>>> 339281e2f8d... Merge pull request #8382 from PrismaticGynoid/mapfixes8 +oR +oR +oR +uP +oR +oR +oR +oR +uP +uP +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +PH +oR +oR +oR +oR +oR +oR +oR +<<<<<<< HEAD +oR +FR +======= +>>>>>>> 339281e2f8d... Merge pull request #8382 from PrismaticGynoid/mapfixes8 +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 +oR +oR +oR +tM +tM +MS +MS +MS +MS +MS +tM +tM +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 +"} +(39,1,1) = {" +jq +pM +pM +pM +oR +oR +oR +oR +oR +oR +<<<<<<< HEAD +eL +eL +eL +eL +eL +eL +eL +eL +oR +oR +oR +oR +oR +oR +oR +oR +eL +eL +oR +oR +oR +eL +oR +oR +oR +======= +oR +uP +oR +uP +uP +uP +uP +uP +uP +uP +uP +uP +uP +oR +oR +uP +uP +uP +uP +uP +uP +uP +oR +uP +oR +uP +uP +uP +uP +oR +oR +oR +oR +oR +oR +>>>>>>> 339281e2f8d... Merge pull request #8382 from PrismaticGynoid/mapfixes8 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +tM +tM +tM +MS +MS +MS +MS +tM +tM +tM +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 +"} +(40,1,1) = {" +jq +pM +pM +pM +oR +oR +oR +oR +<<<<<<< HEAD +eL +oR +oR +eL +eL +oR +eL +eL +oR +eL +======= +oR +oR +oR +>>>>>>> 339281e2f8d... Merge pull request #8382 from PrismaticGynoid/mapfixes8 +oR +oR +uP +oR +<<<<<<< HEAD +======= +uP +uP +uP +uP +uP +uP +uP +oR +uP +uP +>>>>>>> 339281e2f8d... Merge pull request #8382 from PrismaticGynoid/mapfixes8 +oR +uP +uP +oR +uP +uP +uP +uP +uP +uP +oR +<<<<<<< HEAD +======= +uP +uP +>>>>>>> 339281e2f8d... Merge pull request #8382 from PrismaticGynoid/mapfixes8 +oR +oR +uP +uP +oR +<<<<<<< HEAD +eL +eL +eL +oR +oR +eL +======= +>>>>>>> 339281e2f8d... Merge pull request #8382 from PrismaticGynoid/mapfixes8 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +PH +oR +oR +oR +oR +oR +oR +oR +<<<<<<< HEAD +oR +oR +oR +FR +======= +>>>>>>> 339281e2f8d... Merge pull request #8382 from PrismaticGynoid/mapfixes8 +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 +oR +oR +oR +tM +tM +tM +MS +MS +MS +MS +tM +tM +tM +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 +"} +(41,1,1) = {" +jq +pM +pM +oR +oR +oR +oR +eL +oR +oR +<<<<<<< HEAD +eL +oR +eL +eL +======= +oR +uP +oR +oR +>>>>>>> 339281e2f8d... Merge pull request #8382 from PrismaticGynoid/mapfixes8 +oR +oR +uP +uP +uP +uP +uP +uP +uP +oR +uP +uP +oR +<<<<<<< HEAD +oR +oR +oR +eL +eL +oR +eL +======= +>>>>>>> 339281e2f8d... Merge pull request #8382 from PrismaticGynoid/mapfixes8 +oR +uP +uP +oR +uP +oR +uP +oR +uP +uP +oR +uP +oR +uP +oR +oR +oR +<<<<<<< HEAD +oR +oR +======= +>>>>>>> 339281e2f8d... Merge pull request #8382 from PrismaticGynoid/mapfixes8 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +tM +tM +tM +MS +MS +MS +MS +MS +tM +tM +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 +"} +(42,1,1) = {" +jq +pM +pM +pM +oR +oR +oR +oR +oR +oR +oR +<<<<<<< HEAD +oR +oR +eL +======= +>>>>>>> 339281e2f8d... Merge pull request #8382 from PrismaticGynoid/mapfixes8 +oR +oR +oR +uP +uP +uP +oR +uP +oR +uP +uP +oR +<<<<<<< HEAD +eL +======= +uP +>>>>>>> 339281e2f8d... Merge pull request #8382 from PrismaticGynoid/mapfixes8 +oR +oR +uP +uP +uP +oR +<<<<<<< HEAD +eL +======= +uP +>>>>>>> 339281e2f8d... Merge pull request #8382 from PrismaticGynoid/mapfixes8 +oR +uP +oR +uP +uP +uP +uP +oR +<<<<<<< HEAD +oR +oR +oR +oR +oR +oR +======= +>>>>>>> 339281e2f8d... Merge pull request #8382 from PrismaticGynoid/mapfixes8 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +tM +tM +MS +MS +MS +MS +MS +tM +tM +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 +"} +(43,1,1) = {" +jq +pM +pM +pM +oR +oR +oR +oR +<<<<<<< HEAD +eL +eL +======= +oR +>>>>>>> 339281e2f8d... Merge pull request #8382 from PrismaticGynoid/mapfixes8 +oR +oR +oR +uP +uP +uP +uP +uP +uP +uP +uP +uP +oR +<<<<<<< HEAD +======= +uP +>>>>>>> 339281e2f8d... Merge pull request #8382 from PrismaticGynoid/mapfixes8 +oR +uP +uP +oR +oR +oR +uP +oR +oR +uP +oR +oR +oR +uP +uP +oR +oR +<<<<<<< HEAD +oR +oR +oR +oR +oR +======= +uP +oR +oR +>>>>>>> 339281e2f8d... Merge pull request #8382 from PrismaticGynoid/mapfixes8 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +PH +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +<<<<<<< HEAD +oR +oR +oR +oR +FR +======= +>>>>>>> 339281e2f8d... Merge pull request #8382 from PrismaticGynoid/mapfixes8 +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 +oR +tM +tM +MS +MS +MS +MS +MS +MS +tM +tM +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 +UA +jE +GK +bE +"} +(44,1,1) = {" +jq +pM +pM +oR +oR +oR +oR +oR +<<<<<<< HEAD +======= +oR +>>>>>>> 339281e2f8d... Merge pull request #8382 from PrismaticGynoid/mapfixes8 +oR +oR +oR +oR +oR +<<<<<<< HEAD +oR +eL +======= +uP +uP +uP +uP +uP +oR +uP +uP +uP +oR +oR +oR +uP +oR +uP +uP +>>>>>>> 339281e2f8d... Merge pull request #8382 from PrismaticGynoid/mapfixes8 +oR +oR +oR +oR +oR +<<<<<<< HEAD +oR +oR +oR +oR +======= +>>>>>>> 339281e2f8d... Merge pull request #8382 from PrismaticGynoid/mapfixes8 +oR +oR +oR +oR +uP +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +tM +tM +tM +MS +MS +MS +MS +MS +tM +tM +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 +Ax +VU +GK +bE +"} +(45,1,1) = {" +jq +pM +pM +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +<<<<<<< HEAD +======= +uP +uP +uP +uP +uP +uP +uP +uP +oR +>>>>>>> 339281e2f8d... Merge pull request #8382 from PrismaticGynoid/mapfixes8 +oR +oR +oR +oR +oR +oR +oR +uP +uP +oR +oR +oR +uP +oR +oR +oR +oR +oR +oR +oR +oR +oR +eL +eL +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +tM +tM +MS +MS +MS +MS +MS +tM +tM +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 +Ax +VU +GK +bE +"} +(46,1,1) = {" +jq +pM +pM +oR +oR +oR +oR +oR +oR +oR +oR +oR +<<<<<<< HEAD +oR +oR +eL +======= +uP +oR +oR +uP +uP +oR +uP +uP +>>>>>>> 339281e2f8d... Merge pull request #8382 from PrismaticGynoid/mapfixes8 +oR +uP +oR +oR +oR +oR +oR +oR +oR +oR +uP +uP +uP +oR +oR +uP +oR +oR +uP +oR +oR +oR +<<<<<<< HEAD +oR +oR +======= +>>>>>>> 339281e2f8d... Merge pull request #8382 from PrismaticGynoid/mapfixes8 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +tM +tM +tM +MS +MS +MS +MS +tM +tM +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 +Ax +VU +GK +bE +"} +(47,1,1) = {" +jq +pM +pM +oR +oR +oR +oR +oR +oR +oR +oR +<<<<<<< HEAD +======= +uP +oR +oR +uP +oR +uP +uP +>>>>>>> 339281e2f8d... Merge pull request #8382 from PrismaticGynoid/mapfixes8 +oR +oR +oR +uP +oR +<<<<<<< HEAD +oR +oR +oR +oR +======= +>>>>>>> 339281e2f8d... Merge pull request #8382 from PrismaticGynoid/mapfixes8 +oR +oR +oR +uP +uP +oR +uP +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 +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +tM +tM +tM +MS +MS +MS +MS +tM +tM +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 +Ax +VU +GK +bE +"} +(48,1,1) = {" +jq +pM +pM +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +uP +oR +oR +oR +oR +oR +uP +oR +oR +oR +uP +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 +PH +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +<<<<<<< HEAD +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 +FR +oR +oR +======= +>>>>>>> 339281e2f8d... Merge pull request #8382 from PrismaticGynoid/mapfixes8 +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 +oR +tM +tM +MS +MS +MS +MS +tM +tM +tM +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 +Ax +VU +GK +bE +"} +(49,1,1) = {" +jq +pM +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +uP +uP +oR +oR +oR +uP +uP +oR +oR +oR +oR +oR +<<<<<<< HEAD +oR +======= +>>>>>>> 339281e2f8d... Merge pull request #8382 from PrismaticGynoid/mapfixes8 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +uP +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 +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +tM +tM +MS +MS +MS +MS +tM +tM +tM +tM +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 +Mf +qh +GK +bE +"} +(50,1,1) = {" +jq +pM +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +uP +oR +uP +uP +oR +oR +oR +oR +uP +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 +oR +oR +oR +oR +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +tM +tM +MS +MS +MS +MS +MS +tM +tM +tM +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 +"} +(51,1,1) = {" +jq +pM +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 +uP +uP +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +tM +tM +tM +MS +MS +MS +MS +tM +tM +tM +tM +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 +"} +(52,1,1) = {" +jq +pM +pM +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +uP +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 +oR +oR +oR +oR +oR +oR +oR +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +tM +tM +MS +MS +MS +MS +MS +tM +tM +tM +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 +"} +(53,1,1) = {" +jq +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +tM +tM +MS +MS +MS +MS +MS +tM +tM +tM +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 +"} +(54,1,1) = {" +jq +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +tM +tM +MS +MS +MS +MS +MS +tM +tM +tM +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 +"} +(55,1,1) = {" +jq +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +tM +MS +MS +MS +MS +MS +MS +MS +tM +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 +"} +(56,1,1) = {" +jq +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +tM +tM +MS +MS +MS +MS +MS +tM +tM +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 +Mf +qh +GK +GK +bE +"} +(57,1,1) = {" +jq +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +tM +tM +MS +MS +MS +MS +MS +tM +tM +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 +VU +GK +GK +GK +bE +"} +(58,1,1) = {" +jq +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +tM +tM +MS +MS +MS +MS +MS +MS +tM +tM +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 +VU +GK +GK +GK +bE +"} +(59,1,1) = {" +jq +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +tM +tM +MS +MS +MS +MS +MS +MS +tM +tM +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 +VU +GK +GK +GK +bE +"} +(60,1,1) = {" +jq +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +tM +tM +tM +MS +MS +MS +MS +MS +tM +tM +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 +VU +GK +GK +GK +bE +"} +(61,1,1) = {" +jq +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +tM +tM +MS +MS +MS +MS +MS +tM +tM +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 +VU +GK +GK +GK +bE +"} +(62,1,1) = {" +jq +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +tM +tM +MS +MS +MS +MS +MS +MS +tM +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 +VU +GK +GK +GK +bE +"} +(63,1,1) = {" +jq +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +tM +tM +MS +MS +MS +MS +MS +tM +tM +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 +VU +GK +GK +GK +bE +"} +(64,1,1) = {" +jq +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +tM +tM +MS +MS +MS +MS +MS +tM +tM +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 +UA +jE +GK +GK +bE +"} +(65,1,1) = {" +jq +Dn +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +Sa +Sa +zn +zn +zn +zn +zn +Sa +Sa +PH +PH +PH +PH +PH +PH +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +vX +SZ +SZ +bE +"} +(66,1,1) = {" +jq +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +tM +tM +MS +MS +MS +MS +MS +MS +tM +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 +"} +(67,1,1) = {" +jq +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +tM +tM +MS +MS +MS +MS +MS +MS +tM +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 +"} +(68,1,1) = {" +jq +pM +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +tM +tM +MS +MS +MS +MS +MS +MS +tM +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 +"} +(69,1,1) = {" +jq +pM +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +tM +tM +MS +MS +MS +MS +MS +MS +tM +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 +"} +(70,1,1) = {" +jq +pM +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +tM +tM +tM +MS +MS +MS +MS +MS +tM +tM +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 +UA +jE +GK +bE +"} +(71,1,1) = {" +jq +pM +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +tM +tM +tM +MS +MS +MS +MS +MS +tM +tM +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 +Ax +VU +GK +bE +"} +(72,1,1) = {" +jq +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +tM +tM +MS +MS +MS +MS +MS +tM +tM +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 +Ax +VU +GK +bE +"} +(73,1,1) = {" +jq +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +tM +tM +MS +MS +MS +MS +MS +tM +tM +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 +Ax +VU +GK +bE +"} +(74,1,1) = {" +jq +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +tM +tM +MS +MS +MS +MS +MS +tM +tM +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 +Ax +VU +GK +bE +"} +(75,1,1) = {" +jq +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +tM +tM +MS +MS +MS +MS +MS +tM +tM +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 +Ax +VU +GK +bE +"} +(76,1,1) = {" +jq +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +tM +tM +MS +MS +MS +MS +MS +tM +tM +tM +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 +Mf +qh +GK +bE +"} +(77,1,1) = {" +jq +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +tM +tM +MS +MS +MS +MS +MS +tM +tM +tM +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 +"} +(78,1,1) = {" +jq +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +tM +tM +MS +MS +MS +MS +MS +tM +tM +tM +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 +"} +(79,1,1) = {" +jq +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +tM +tM +MS +MS +MS +MS +MS +MS +tM +tM +tM +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 +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 +"} +(80,1,1) = {" +jq +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +tM +MS +MS +MS +MS +MS +MS +MS +tM +tM +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 +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 +"} +(81,1,1) = {" +jq +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +tM +MS +MS +MS +MS +MS +MS +MS +tM +tM +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 +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 +UA +jE +GK +bE +"} +(82,1,1) = {" +jq +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +tM +MS +MS +MS +MS +MS +MS +MS +MS +tM +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 +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 +Ax +VU +GK +bE +"} +(83,1,1) = {" +jq +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +tM +MS +MS +MS +MS +MS +MS +MS +MS +tM +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 +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 +Ax +VU +GK +bE +"} +(84,1,1) = {" +jq +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +tM +MS +MS +MS +MS +MS +MS +MS +MS +tM +tM +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 +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 +Ax +VU +GK +bE +"} +(85,1,1) = {" +jq +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +tM +MS +MS +MS +MS +MS +MS +MS +MS +tM +tM +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 +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 +Ax +VU +GK +bE +"} +(86,1,1) = {" +jq +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +tM +MS +MS +MS +MS +MS +MS +MS +MS +tM +tM +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 +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 +Ax +VU +GK +bE +"} +(87,1,1) = {" +jq +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +tM +MS +MS +MS +MS +MS +MS +MS +MS +tM +tM +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 +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 +Ax +VU +GK +bE +"} +(88,1,1) = {" +jq +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +tM +MS +MS +MS +MS +MS +MS +MS +MS +tM +tM +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 +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 +Mf +qh +GK +bE +"} +(89,1,1) = {" +jq +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +tM +MS +MS +MS +MS +MS +MS +MS +MS +tM +tM +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 +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 +"} +(90,1,1) = {" +jq +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +tM +tM +MS +MS +MS +MS +MS +MS +tM +tM +tM +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 +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 +"} +(91,1,1) = {" +jq +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +tM +tM +MS +MS +MS +MS +MS +MS +tM +tM +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 +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 +"} +(92,1,1) = {" +jq +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +tM +tM +MS +MS +MS +MS +MS +MS +tM +tM +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 +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 +"} +(93,1,1) = {" +jq +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +tM +tM +MS +MS +MS +MS +MS +MS +tM +tM +tM +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 +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 +Mf +qh +GK +GK +bE +"} +(94,1,1) = {" +jq +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +tM +tM +tM +MS +MS +MS +MS +MS +MS +tM +tM +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 +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 +VU +GK +GK +GK +bE +"} +(95,1,1) = {" +jq +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +tM +tM +MS +MS +MS +MS +MS +MS +tM +tM +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 +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 +VU +GK +GK +GK +bE +"} +(96,1,1) = {" +jq +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +tM +tM +MS +MS +MS +MS +MS +MS +tM +tM +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 +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 +VU +GK +GK +GK +bE +"} +(97,1,1) = {" +jq +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +tM +tM +MS +MS +MS +MS +MS +MS +tM +tM +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 +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 +VU +GK +GK +GK +bE +"} +(98,1,1) = {" +jq +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +tM +tM +MS +MS +MS +MS +MS +MS +tM +tM +tM +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 +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 +UA +jE +GK +GK +bE +"} +(99,1,1) = {" +jq +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +tM +tM +tM +MS +MS +MS +MS +MS +tM +tM +tM +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 +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 +"} +(100,1,1) = {" +jq +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +tM +tM +tM +MS +MS +MS +MS +MS +tM +tM +tM +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 +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 +"} +(101,1,1) = {" +jq +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +tM +tM +MS +MS +MS +MS +MS +tM +tM +tM +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 +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 +"} +(102,1,1) = {" +jq +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +tM +tM +tM +MS +MS +MS +MS +tM +tM +tM +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 +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 +"} +(103,1,1) = {" +jq +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +tM +tM +tM +MS +MS +MS +MS +tM +tM +tM +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 +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 +"} +(104,1,1) = {" +jq +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +tM +tM +MS +MS +MS +MS +tM +tM +tM +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 +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 +"} +(105,1,1) = {" +jq +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +tM +tM +MS +MS +MS +MS +MS +tM +tM +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 +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 +"} +(106,1,1) = {" +jq +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +tM +tM +MS +MS +MS +MS +MS +tM +tM +tM +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 +"} +(107,1,1) = {" +jq +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +tM +tM +MS +MS +MS +MS +MS +tM +tM +tM +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 +Mf +qh +GK +GK +bE +"} +(108,1,1) = {" +jq +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +tM +tM +MS +MS +MS +MS +MS +tM +tM +tM +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 +VU +GK +GK +GK +bE +"} +(109,1,1) = {" +jq +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +tM +tM +tM +MS +MS +MS +MS +tM +tM +tM +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 +VU +GK +GK +GK +bE +"} +(110,1,1) = {" +jq +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +tM +tM +tM +MS +MS +MS +MS +tM +tM +tM +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 +VU +GK +GK +GK +bE +"} +(111,1,1) = {" +jq +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +tM +tM +tM +MS +MS +MS +MS +tM +tM +tM +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 +VU +GK +GK +GK +bE +"} +(112,1,1) = {" +jq +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +tM +tM +MS +MS +MS +MS +MS +tM +tM +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 +VU +GK +GK +GK +bE +"} +(113,1,1) = {" +jq +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +tM +tM +MS +MS +MS +MS +tM +tM +tM +tM +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 +UA +jE +GK +GK +bE +"} +(114,1,1) = {" +jq +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +tM +tM +MS +MS +MS +MS +tM +MS +tM +tM +tM +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 +"} +(115,1,1) = {" +jq +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +tM +tM +MS +MS +MS +MS +MS +MS +tM +tM +tM +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 +"} +(116,1,1) = {" +jq +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +tM +tM +MS +MS +MS +MS +MS +tM +tM +tM +tM +tM +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 +"} +(117,1,1) = {" +jq +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +tM +tM +MS +MS +MS +MS +MS +MS +tM +tM +tM +tM +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 +ta +Ax +Ax +UA +BR +BR +bE +"} +(118,1,1) = {" +jq +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +tM +tM +MS +MS +MS +MS +MS +tM +tM +tM +tM +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 +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +wN +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +wN +wN +wN +wN +wN +wN +wN +wN +wN +Fg +Fg +Fg +ne +Qx +NP +"} +(119,1,1) = {" +jq +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +tM +tM +MS +MS +MS +MS +MS +MS +tM +tM +tM +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 +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +wN +wN +Fg +wN +wN +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +wN +wN +wN +wN +wN +wN +wN +wN +wN +wN +wN +wN +wN +wN +wN +ub +CR +"} +(120,1,1) = {" +jq +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +tM +tM +MS +MS +MS +MS +MS +MS +tM +tM +tM +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 +Fg +Fg +XN +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +wN +wN +wN +Fg +Fg +Fg +Fg +Fg +Fg +Fg +wN +wN +Fg +wN +wN +wN +wN +wN +Fg +Fg +Fg +Fg +Fg +Fg +Fg +wN +wN +wN +wN +wN +wN +ub +CR +"} +(121,1,1) = {" +jq +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +tM +tM +MS +MS +MS +MS +MS +MS +MS +tM +tM +tM +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 +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +wN +wN +XN +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +wN +Fg +Fg +Fg +wN +Fg +wN +Fg +wN +Fg +wN +wN +Fg +wN +wN +Fg +Fg +Fg +wN +wN +wN +Fg +Fg +wN +Fg +Fg +Fg +Fg +Fg +Fg +wN +wN +Fg +Fg +Fg +Fg +Fg +wN +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +ne +Zo +NP +"} +(122,1,1) = {" +jq +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +tM +tM +MS +MS +MS +MS +MS +MS +tM +tM +tM +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 +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +wN +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +XN +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +wN +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +wN +wN +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +ne +Zo +NP +"} +(123,1,1) = {" +jq +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +tM +tM +MS +MS +MS +MS +MS +MS +tM +tM +tM +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 +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +XN +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +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 +Mf +Eo +Eo +bE +"} +(124,1,1) = {" +jq +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +tM +tM +MS +MS +MS +MS +MS +MS +tM +tM +tM +tM +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Fg +Fg +Fg +Fg +Fg +Fg +wN +wN +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +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 +"} +(125,1,1) = {" +jq +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +tM +tM +tM +MS +MS +MS +MS +MS +MS +tM +tM +tM +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Fg +Fg +Fg +Fg +Fg +Fg +Fg +wN +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +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 +"} +(126,1,1) = {" +jq +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +tM +tM +MS +MS +MS +MS +MS +MS +tM +tM +tM +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +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 +"} +(127,1,1) = {" +jq +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +tM +tM +MS +MS +MS +MS +MS +MS +MS +tM +tM +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +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 +Mf +qh +GK +GK +bE +"} +(128,1,1) = {" +jq +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +id +ZB +ZB +zS +zS +zS +zS +zS +zS +ZB +ZB +id +Fg +Fg +Fg +wN +Fg +Fg +Fg +wN +wN +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +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 +VU +GK +GK +GK +bE +"} +(129,1,1) = {" +jq +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +Hb +oR +oR +oR +oR +oR +oR +oR +oR +wN +wN +KZ +KZ +KZ +KZ +KZ +KZ +bA +KZ +KZ +KZ +KZ +KZ +wN +wN +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +Fg +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 +VU +GK +GK +GK +bE +"} +(130,1,1) = {" +jq +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +Hb +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +wN +bA +KZ +KZ +KZ +KZ +KZ +KZ +KZ +KZ +KZ +KZ +KZ +wN +Fg +Fg +Fg +wN +Fg +Fg +Fg +Fg +Fg +Fg +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 +VU +GK +GK +GK +bE +"} +(131,1,1) = {" +jq +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +oR +oR +oR +oR +oR +Hb +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +id +TP +TP +oG +oG +oG +oG +oG +oG +TP +TP +id +Fg +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 +Mf +qh +GK +GK +GK +bE +"} +(132,1,1) = {" +jq +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +Hb +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 +tM +tM +MS +MS +MS +MS +MS +MS +tM +tM +tM +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 +VU +GK +GK +GK +GK +bE +"} +(133,1,1) = {" +jq +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +tM +tM +MS +MS +MS +MS +MS +MS +tM +tM +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 +VU +GK +GK +GK +GK +bE +"} +(134,1,1) = {" +jq +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +tM +tM +MS +MS +MS +MS +MS +MS +tM +tM +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 +VU +GK +GK +GK +GK +bE +"} +(135,1,1) = {" +jq +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +tM +tM +MS +MS +MS +MS +MS +MS +MS +tM +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 +VU +GK +GK +GK +GK +bE +"} +(136,1,1) = {" +jq +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +tM +tM +MS +MS +MS +MS +MS +MS +MS +tM +tM +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 +UA +jE +GK +GK +GK +bE +"} +(137,1,1) = {" +jq +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +tM +tM +MS +MS +MS +MS +MS +MS +MS +tM +tM +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 +VU +GK +GK +GK +bE +"} +(138,1,1) = {" +jq +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +tM +tM +MS +MS +MS +MS +MS +MS +MS +tM +tM +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 +UA +jE +GK +GK +bE +"} +(139,1,1) = {" +jq +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +tM +tM +MS +MS +MS +MS +MS +MS +MS +tM +tM +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 +"} +(140,1,1) = {" +jq +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +tM +tM +MS +MS +MS +MS +MS +MS +MS +tM +tM +tM +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 +"} +(141,1,1) = {" +jq +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +tM +tM +MS +MS +MS +MS +MS +MS +MS +tM +tM +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 +UA +jE +GK +bE +"} +(142,1,1) = {" +jq +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +tM +tM +tM +MS +MS +MS +MS +MS +tM +tM +tM +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 +Ax +VU +GK +bE +"} +(143,1,1) = {" +jq +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +tM +tM +MS +MS +MS +MS +MS +MS +tM +tM +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 +Ax +VU +GK +bE +"} +(144,1,1) = {" +jq +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +tM +tM +MS +MS +MS +MS +MS +MS +tM +tM +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 +Ax +VU +GK +bE +"} +(145,1,1) = {" +jq +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +tM +tM +MS +MS +MS +MS +MS +MS +tM +tM +tM +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 +Mf +qh +GK +bE +"} +(146,1,1) = {" +jq +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +tM +tM +tM +MS +MS +MS +MS +MS +MS +tM +tM +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 +"} +(147,1,1) = {" +jq +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +tM +tM +MS +MS +MS +MS +MS +tM +tM +tM +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 +"} +(148,1,1) = {" +jq +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +tM +tM +MS +MS +MS +MS +MS +tM +tM +tM +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 +"} +(149,1,1) = {" +jq +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +tM +tM +MS +MS +MS +MS +MS +MS +tM +tM +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 +"} +(150,1,1) = {" +jq +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +tM +tM +MS +MS +MS +MS +MS +MS +tM +tM +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 +"} +(151,1,1) = {" +jq +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +tM +tM +MS +MS +MS +MS +MS +tM +tM +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 +"} +(152,1,1) = {" +jq +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +tM +tM +MS +MS +MS +MS +MS +tM +tM +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 +UA +jE +GK +bE +"} +(153,1,1) = {" +jq +FF +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +tM +tM +MS +MS +MS +MS +MS +MS +tM +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 +Ax +VU +GK +bE +"} +(154,1,1) = {" +jq +FF +FF +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +tM +tM +MS +MS +MS +MS +MS +tM +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 +Ax +VU +GK +bE +"} +(155,1,1) = {" +jq +FF +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +tM +tM +MS +MS +MS +MS +MS +tM +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 +Ax +VU +GK +bE +"} +(156,1,1) = {" +jq +FF +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +tM +tM +MS +MS +MS +MS +MS +tM +tM +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 +Ax +VU +GK +bE +"} +(157,1,1) = {" +jq +FF +FF +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +tM +tM +MS +MS +MS +MS +MS +tM +tM +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 +Ax +VU +GK +bE +"} +(158,1,1) = {" +jq +FF +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +tM +tM +MS +MS +MS +MS +MS +tM +tM +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 +Mf +qh +GK +bE +"} +(159,1,1) = {" +jq +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +tM +tM +MS +MS +MS +MS +MS +tM +tM +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 +"} +(160,1,1) = {" +jq +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +tM +tM +MS +MS +MS +MS +MS +tM +tM +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 +"} +(161,1,1) = {" +jq +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +tM +tM +MS +MS +MS +MS +MS +tM +tM +tM +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 +"} +(162,1,1) = {" +jq +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +tM +tM +MS +MS +MS +MS +MS +tM +tM +tM +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 +"} +(163,1,1) = {" +jq +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +tM +tM +MS +MS +MS +MS +MS +MS +tM +tM +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 +"} +(164,1,1) = {" +jq +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +tM +tM +MS +MS +MS +MS +MS +MS +tM +tM +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 +UA +jE +GK +bE +"} +(165,1,1) = {" +jq +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +tM +tM +MS +MS +MS +MS +MS +tM +tM +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 +Ax +VU +GK +bE +"} +(166,1,1) = {" +jq +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +tM +tM +MS +MS +MS +MS +MS +MS +tM +tM +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 +Ax +VU +GK +bE +"} +(167,1,1) = {" +jq +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +tM +tM +MS +MS +MS +MS +MS +MS +tM +tM +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 +Ax +VU +GK +bE +"} +(168,1,1) = {" +jq +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +tM +tM +MS +MS +MS +MS +MS +MS +MS +tM +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 +Ax +VU +GK +bE +"} +(169,1,1) = {" +jq +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +tM +tM +MS +MS +MS +MS +MS +MS +MS +tM +tM +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 +Ax +VU +GK +bE +"} +(170,1,1) = {" +jq +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +tM +tM +MS +MS +MS +MS +MS +MS +MS +tM +tM +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 +Mf +qh +GK +bE +"} +(171,1,1) = {" +jq +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +tM +tM +tM +MS +MS +MS +MS +MS +MS +MS +tM +tM +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 +"} +(172,1,1) = {" +jq +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +tM +tM +tM +MS +MS +MS +MS +MS +MS +tM +tM +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 +"} +(173,1,1) = {" +jq +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +tM +tM +tM +MS +MS +MS +MS +MS +MS +tM +tM +tM +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 +"} +(174,1,1) = {" +jq +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +Ax +tM +tM +tM +MS +MS +MS +MS +MS +MS +tM +tM +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 +"} +(175,1,1) = {" +jq +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +Ax +Ax +tM +tM +tM +MS +MS +MS +MS +MS +tM +tM +tM +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 +"} +(176,1,1) = {" +jq +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +Ax +Ax +Ax +tM +tM +MS +MS +MS +MS +MS +MS +tM +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 +UA +jE +GK +bE +"} +(177,1,1) = {" +jq +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +Ax +Ax +Ax +tM +tM +tM +MS +MS +MS +MS +MS +tM +tM +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 +Ax +VU +GK +bE +"} +(178,1,1) = {" +jq +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +Ax +Ax +Ax +Ax +tM +tM +MS +MS +MS +MS +MS +MS +tM +tM +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 +Ax +VU +GK +bE +"} +(179,1,1) = {" +jq +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +Ax +Ax +Ax +Ax +tM +tM +MS +MS +MS +MS +MS +MS +MS +tM +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 +Ax +VU +GK +bE +"} +(180,1,1) = {" +jq +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +Ax +Ax +Ax +Ax +Ax +tM +tM +MS +MS +MS +MS +MS +MS +tM +tM +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 +Mf +qh +GK +bE +"} +(181,1,1) = {" +jq +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +Ax +Ax +Ax +Ax +Ax +tM +tM +MS +MS +MS +MS +MS +MS +MS +tM +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 +"} +(182,1,1) = {" +jq +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +Ax +Ax +Ax +Ax +Ax +tM +tM +tM +MS +MS +MS +MS +MS +MS +tM +tM +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 +"} +(183,1,1) = {" +jq +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +Ax +Ax +Ax +Ax +Ax +Ax +tM +tM +tM +MS +MS +MS +MS +MS +tM +tM +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 +"} +(184,1,1) = {" +jq +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +Ax +Ax +Ax +Ax +Ax +Ax +Ax +tM +tM +MS +MS +MS +MS +MS +MS +tM +tM +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 +"} +(185,1,1) = {" +jq +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +tM +tM +MS +MS +MS +MS +MS +MS +tM +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 +"} +(186,1,1) = {" +jq +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +tM +tM +MS +MS +MS +MS +MS +MS +tM +tM +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 +Mf +qh +GK +GK +bE +"} +(187,1,1) = {" +jq +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +tM +tM +MS +MS +MS +MS +MS +MS +MS +tM +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 +VU +GK +GK +GK +bE +"} +(188,1,1) = {" +jq +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +tM +tM +MS +MS +MS +MS +MS +MS +tM +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 +VU +GK +GK +GK +bE +"} +(189,1,1) = {" +jq +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +tM +tM +MS +MS +MS +MS +MS +MS +tM +tM +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 +VU +GK +GK +GK +bE +"} +(190,1,1) = {" +jq +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +tM +MS +MS +MS +MS +MS +MS +MS +tM +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 +UA +jE +GK +GK +bE +"} +(191,1,1) = {" +jq +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +tM +tM +MS +MS +MS +MS +MS +MS +tM +tM +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 +"} +(192,1,1) = {" +jq +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +tM +tM +MS +MS +MS +MS +MS +MS +MS +tM +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 +"} +(193,1,1) = {" +jq +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +tM +tM +MS +MS +MS +MS +MS +MS +MS +tM +tM +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 +"} +(194,1,1) = {" +jq +Dn +Dn +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +PH +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Sa +zn +zn +zn +zn +zn +zn +zn +Sa +Sa +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Aq +Wz +mA +SZ +SZ +bE +"} +(195,1,1) = {" +jq +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +tM +tM +MS +MS +MS +MS +MS +MS +MS +tM +tM +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 +VU +GK +GK +GK +bE +"} +(196,1,1) = {" +jq +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +tM +tM +MS +MS +MS +MS +MS +MS +tM +tM +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 +VU +GK +GK +GK +bE +"} +(197,1,1) = {" +jq +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +tM +tM +tM +MS +MS +MS +MS +MS +MS +tM +tM +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 +VU +GK +GK +GK +bE +"} +(198,1,1) = {" +jq +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +tM +tM +tM +MS +MS +MS +MS +MS +tM +tM +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 +Mf +qh +GK +GK +GK +bE +"} +(199,1,1) = {" +jq +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +tM +tM +MS +MS +MS +MS +MS +MS +tM +tM +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 +VU +GK +GK +GK +GK +bE +"} +(200,1,1) = {" +jq +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +tM +tM +tM +MS +MS +MS +MS +MS +tM +tM +tM +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 +VU +GK +GK +GK +GK +bE +"} +(201,1,1) = {" +jq +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +tM +tM +MS +MS +MS +MS +MS +tM +tM +tM +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 +VU +GK +GK +GK +GK +bE +"} +(202,1,1) = {" +jq +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +tM +tM +MS +MS +MS +MS +MS +MS +tM +tM +tM +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 +UA +jE +GK +GK +GK +bE +"} +(203,1,1) = {" +jq +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +tM +tM +MS +MS +MS +MS +MS +MS +tM +tM +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 +VU +GK +GK +GK +bE +"} +(204,1,1) = {" +jq +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +tM +tM +MS +MS +MS +MS +MS +tM +tM +tM +tM +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 +VU +GK +GK +GK +bE +"} +(205,1,1) = {" +jq +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +tM +tM +MS +MS +MS +MS +MS +MS +tM +tM +tM +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +hb +hb +hb +hb +hb +hb +hb +hb +tV +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 +VU +GK +GK +GK +bE +"} +(206,1,1) = {" +jq +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +tM +tM +tM +MS +MS +MS +MS +MS +tM +tM +tM +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +vu +tV +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 +VU +GK +GK +GK +bE +"} +(207,1,1) = {" +jq +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +tM +tM +MS +MS +MS +MS +MS +MS +tM +tM +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +vu +hb +hb +hb +hb +hb +hb +hb +hb +hb +tV +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 +UA +jE +GK +GK +bE +"} +(208,1,1) = {" +jq +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +tM +tM +MS +MS +MS +MS +MS +tM +tM +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 +tV +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 +"} +(209,1,1) = {" +jq +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +tM +tM +MS +MS +MS +MS +MS +tM +tM +tM +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 +hb +Be +hb +hb +hb +hb +hb +tV +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 +"} +(210,1,1) = {" +jq +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +tM +MS +MS +MS +MS +MS +MS +tM +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 +vu +tV +Ax +Ax +Ax +Ax +Ax +gl +hb +hb +hb +hb +hb +hb +hb +hb +tV +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +gl +hb +hb +hb +hb +hb +tV +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +VU +GK +GK +bE +"} +(211,1,1) = {" +jq +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +tM +tM +MS +MS +MS +MS +MS +tM +tM +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 +vu +hb +hb +hb +hb +hb +mZ +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +vu +hb +hb +hb +hb +hb +hb +hb +hb +tV +Ax +Ax +Ax +Ax +Ax +Ax +fy +Ax +Ax +Ax +Ax +Ax +vu +hb +hb +hb +hb +tV +Ax +Ax +Ax +gl +hb +hb +hb +tV +Ax +Ax +Ax +VU +GK +GK +bE +"} +(212,1,1) = {" +jq +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +tM +tM +MS +MS +MS +MS +MS +tM +tM +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 +vu +hb +hb +hb +hb +hb +hb +mZ +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +vu +hb +hb +hb +mZ +Sl +kx +Sl +vu +hb +hb +hb +Yh +BR +BR +bE +"} +(213,1,1) = {" +jq +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +tM +tM +MS +MS +MS +MS +MS +MS +tM +tM +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 +Sl +Sl +Sl +Sl +Ax +Ax +Ax +ct +qT +Ay +"} +(214,1,1) = {" +jq +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +tM +tM +MS +MS +MS +MS +MS +tM +tM +tM +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 +Sl +nu +Sl +aU +tM +tM +tM +HF +Ay +"} +(215,1,1) = {" +jq +pM +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +tM +tM +MS +MS +MS +MS +MS +MS +tM +tM +tM +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 +tM +tM +tM +tM +Ih +tM +tM +tM +tM +Qw +tM +tM +tM +tM +tM +tM +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 +tM +Qw +tM +HF +Ay +"} +(216,1,1) = {" +jq +pM +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +tM +tM +tM +MS +MS +MS +MS +MS +tM +tM +tM +tM +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 +tM +tM +tM +tM +tM +tM +tM +tM +tM +tM +tM +tM +tM +tM +tM +tM +aU +tM +tM +tM +tM +tM +tM +tM +tM +tM +tM +tM +tM +tM +tM +tM +tM +tM +tM +Ih +tM +tM +tM +tM +tM +jh +tM +tM +tM +Ih +tM +tM +tM +tM +tM +vQ +tM +tM +tM +tM +tM +tM +tM +MS +MK +lt +"} +(217,1,1) = {" +jq +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +tM +tM +tM +MS +MS +MS +MS +MS +tM +tM +tM +tM +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 +tM +Sa +tM +tM +tM +tM +tM +tM +Qw +tM +MS +MS +MS +MS +MS +MS +MS +MS +MS +MS +MS +MS +MS +MS +MS +MS +tM +tM +tM +tM +Qw +tM +tM +tM +aU +tM +tM +vQ +tM +tM +tM +aU +tM +tM +MS +MS +MS +tM +tM +tM +MS +MS +MS +MS +MS +MS +MS +tM +jh +tM +MS +MS +MS +MS +MK +lt +"} +(218,1,1) = {" +jq +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +tM +tM +tM +MS +MS +MS +MS +MS +MS +tM +tM +tM +tM +tM +tM +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +tM +tM +Sa +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 +MK +lt +"} +(219,1,1) = {" +jq +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +tM +tM +tM +MS +MS +MS +MS +MS +MS +MS +tM +tM +tM +tM +tM +tM +tM +tM +Ax +Ax +Ax +Ax +Ax +Ax +Ax +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 +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 +tM +Qw +tM +tM +Ih +tM +MS +MS +MS +tM +tM +tM +tM +HF +Ay +"} +(220,1,1) = {" +jq +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +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 +vQ +tM +tM +tM +jh +tM +tM +vQ +tM +tM +tM +tM +tM +tM +tM +tM +Ih +MS +MS +tM +jh +tM +tM +vQ +tM +tM +tM +MS +MS +MS +MS +MS +Ih +tM +Qw +MS +MS +tM +aU +tM +tM +tM +tM +tM +tM +tM +tM +tM +tM +tM +Ih +tM +HF +Ay +"} +(221,1,1) = {" +jq +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +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 +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 +MS +MS +MS +zn +MS +MS +MS +MS +MS +MS +MS +MS +tM +tM +tM +tM +tM +tM +tM +tM +tM +tM +tM +tM +tM +tM +Ax +tM +tM +tM +tM +tM +tM +tM +tM +tM +tM +tM +tM +tM +tM +tM +Qw +tM +tM +tM +tM +tM +tM +tM +vQ +tM +tM +tM +tM +Ax +Ax +Ax +tM +tM +tM +tM +tM +Ax +Ax +ct +zk +NP +"} +(222,1,1) = {" +jq +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +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 +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 +MS +MS +MS +MS +MS +MS +zn +MS +MS +MS +MS +MS +tM +tM +tM +tM +tM +tM +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +tM +tM +Ax +Ax +Ax +Ax +tM +tM +tM +tM +tM +Ax +Ax +Ax +Ax +Ax +Ax +tM +tM +tM +tM +tM +jh +tM +tM +tM +tM +tM +tM +tM +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Mf +Eo +Eo +bE +"} +(223,1,1) = {" +jq +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +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 +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 +MS +MS +MS +MS +MS +MS +MS +MS +zn +MS +MS +tM +tM +tM +tM +tM +tM +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 +"} +(224,1,1) = {" +jq +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +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 +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 +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 +"} +(225,1,1) = {" +jq +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +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 +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 +MS +MS +MS +MS +tM +Sa +tM +tM +tM +tM +tM +tM +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 +Cb +Pe +Pe +Pe +Pe +Pe +Gf +cv +qh +GK +GK +bE +"} +(226,1,1) = {" +jq +pM +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +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 +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 +Sa +tM +tM +tM +tM +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 +Cb +Pe +Pe +Pe +Pe +Pe +wt +Ax +Ax +Ax +Ax +Ax +VU +GK +GK +GK +GK +bE +"} +(227,1,1) = {" +jq +pM +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +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 +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 +Sa +tM +tM +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 +Pe +Pe +Pe +Pe +Pe +wt +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +Ax +VU +GK +GK +GK +GK +bE +"} +(228,1,1) = {" +jq +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +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 +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 +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 +UA +jE +GK +GK +GK +bE +"} +(229,1,1) = {" +jq +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +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 +tM +tM +tM +tM +tM +tM +MS +MS +MS +MS +MS +MS +MS +MS +MS +MS +MS +tM +tM +tM +tM +tM +tM +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 +VU +GK +GK +GK +bE +"} +(230,1,1) = {" +jq +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +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 +tM +tM +tM +tM +tM +tM +MS +tM +tM +tM +tM +tM +tM +tM +tM +tM +tM +tM +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 +UA +jE +GK +GK +bE +"} +(231,1,1) = {" +jq +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +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 +tM +tM +tM +tM +tM +tM +tM +tM +tM +tM +tM +tM +tM +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 +"} +(232,1,1) = {" +jq +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +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 +tM +tM +tM +tM +tM +tM +tM +tM +tM +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 +"} +(233,1,1) = {" +jq +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +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 +"} +(234,1,1) = {" +jq +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +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 +"} +(235,1,1) = {" +jq +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +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 +Mf +qh +GK +GK +bE +"} +(236,1,1) = {" +jq +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +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 +Mf +qh +GK +GK +GK +bE +"} +(237,1,1) = {" +jq +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +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 +VU +GK +GK +GK +GK +bE +"} +(238,1,1) = {" +jq +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +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 +UA +jE +GK +GK +GK +bE +"} +(239,1,1) = {" +jq +pM +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +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 +VU +GK +GK +GK +bE +"} +(240,1,1) = {" +jq +pM +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +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 +VU +GK +GK +GK +bE +"} +(241,1,1) = {" +jq +pM +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +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 +VU +GK +GK +GK +bE +"} +(242,1,1) = {" +jq +pM +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +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 +Mf +qh +GK +GK +GK +bE +"} +(243,1,1) = {" +jq +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +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 +VU +GK +GK +GK +GK +bE +"} +(244,1,1) = {" +jq +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +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 +VU +GK +GK +GK +GK +bE +"} +(245,1,1) = {" +jq +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +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 +VU +GK +GK +GK +GK +bE +"} +(246,1,1) = {" +jq +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +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 +VU +GK +GK +GK +GK +bE +"} +(247,1,1) = {" +jq +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +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 +VU +GK +GK +GK +GK +bE +"} +(248,1,1) = {" +jq +pM +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +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 +Mf +qh +GK +GK +GK +GK +bE +"} +(249,1,1) = {" +jq +pM +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +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 +VU +GK +GK +GK +GK +GK +bE +"} +(250,1,1) = {" +jq +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +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 +VU +GK +GK +GK +GK +GK +bE +"} +(251,1,1) = {" +jq +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +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 +VU +GK +GK +GK +GK +GK +bE +"} +(252,1,1) = {" +jq +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +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 +VU +GK +GK +GK +GK +GK +bE +"} +(253,1,1) = {" +jq +pM +pM +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +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 +Mf +qh +GK +GK +GK +GK +GK +bE +"} +(254,1,1) = {" +jq +pM +pM +pM +pM +pM +pM +pM +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 +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +oR +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 +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 +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 +VU +GK +GK +GK +GK +GK +GK +bE +"} +(255,1,1) = {" +jq +jq +jq +jq +jq +jq +jq +jq +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +bE +"} diff --git a/maps/cynosure/cynosure.dm b/maps/cynosure/cynosure.dm new file mode 100644 index 0000000000..641e96d4bc --- /dev/null +++ b/maps/cynosure/cynosure.dm @@ -0,0 +1,45 @@ +#if !defined(USING_MAP_DATUM) + + #include "cynosure_areas.dm" + #include "cynosure_defines.dm" + #include "cynosure_jobs.dm" + #include "cynosure_elevator.dm" + #include "cynosure_events.dm" + #include "cynosure_presets.dm" + #include "cynosure_shuttles.dm" + + #include "loadout/loadout_accessories.dm" + #include "loadout/loadout_head.dm" + #include "loadout/loadout_suit.dm" + #include "loadout/loadout_uniform.dm" + + #include "datums/supplypacks/munitions.dm" + #include "datums/random_map.dm" + #include "items/encryptionkey_cyno.dm" + #include "items/headset_cyno.dm" + #include "items/clothing/cyno_suit.dm" + #include "items/clothing/cyno_under.dm" + #include "items/clothing/cyno_accessory.dm" + #include "job/outfits.dm" + #include "structures/closets/misc.dm" + #include "structures/closets/security.dm" + #include "turfs/outdoors.dm" + #include "overmap/sectors.dm" + + #include "cynosure-1.dmm" + #include "cynosure-2.dmm" + #include "cynosure-3.dmm" + #include "cynosure-4.dmm" + #include "cynosure-5.dmm" + #include "cynosure-6.dmm" + #include "cynosure-7.dmm" + + #include "submaps/_cynosure_submaps.dm" + + #define USING_MAP_DATUM /datum/map/cynosure + +#elif !defined(MAP_OVERRIDE) + + #warn A map has already been included, ignoring Cynosure + +#endif \ No newline at end of file diff --git a/maps/cynosure/cynosure_defines.dm b/maps/cynosure/cynosure_defines.dm new file mode 100644 index 0000000000..9d0f950191 --- /dev/null +++ b/maps/cynosure/cynosure_defines.dm @@ -0,0 +1,333 @@ +// To be filled out when more progress on the new map occurs. + +#define Z_LEVEL_STATION_ONE 1 +#define Z_LEVEL_STATION_TWO 2 +#define Z_LEVEL_STATION_THREE 3 +#define Z_LEVEL_EMPTY_SPACE 4 +#define Z_LEVEL_TCOMM 5 +#define Z_LEVEL_CENTCOM 6 +#define Z_LEVEL_SURFACE_WILD 7 + +/datum/map/cynosure + name = "Cynosure" + full_name = "Cynosure Station" + path = "cynosure" + + lobby_icon = 'icons/misc/title.dmi' + lobby_screens = list("mockingjay00") // New lobby screen if possible. + + holomap_smoosh = list(list( + Z_LEVEL_STATION_ONE, + Z_LEVEL_STATION_TWO, + Z_LEVEL_STATION_THREE)) + + zlevel_datum_type = /datum/map_z_level/cynosure + + station_name = "Cynosure Station" + station_short = "Cynosure" + dock_name = "NCS Northern Star" // Still the centcom! + boss_name = "Central Command" + boss_short = "Centcom" + company_name = "NanoTrasen" + company_short = "NT" + starsys_name = "Vir" + use_overmap = TRUE + + shuttle_docked_message = "The scheduled shuttle to the %dock_name% has landed at Cynosure departures pad. It will depart in approximately %ETD%." + shuttle_leaving_dock = "The Crew Transfer Shuttle has left the station. Estimate %ETA% until the shuttle docks at %dock_name%." + shuttle_called_message = "A crew transfer to %dock_name% has been scheduled. The shuttle has been called. Those leaving should proceed to Cynosure Departures Pad in approximately %ETA%." + shuttle_recall_message = "The scheduled crew transfer has been cancelled." + emergency_shuttle_docked_message = "The Emergency Shuttle has landed at Cynosure departures pad. You have approximately %ETD% to board the Emergency Shuttle." + emergency_shuttle_leaving_dock = "The Emergency Shuttle has left the station. Estimate %ETA% until the shuttle docks at %dock_name%." + emergency_shuttle_called_message = "An emergency evacuation shuttle has been called. It will arrive at Cynosure departures pad in approximately %ETA%." + emergency_shuttle_recall_message = "The emergency shuttle has been recalled." + + // Networks that will show up as options in the camera monitor program + station_networks = list( + NETWORK_CARGO, + NETWORK_CIRCUITS, + NETWORK_CIVILIAN, + NETWORK_COMMAND, + NETWORK_ENGINE, + NETWORK_ENGINEERING, + NETWORK_BASEMENT_FLOOR, + NETWORK_GROUND_FLOOR, + NETWORK_SECOND_FLOOR, + NETWORK_MEDICAL, + NETWORK_MINE, + NETWORK_RESEARCH, + NETWORK_RESEARCH_OUTPOST, + NETWORK_ROBOTS, + NETWORK_PRISON, + NETWORK_SECURITY, + NETWORK_TELECOM + ) + // Camera networks that exist, but don't show on regular camera monitors. + secondary_networks = list( + NETWORK_ERT, + NETWORK_MERCENARY, + NETWORK_THUNDER, + NETWORK_COMMUNICATORS, + NETWORK_ALARM_ATMOS, + NETWORK_ALARM_POWER, + NETWORK_ALARM_FIRE, + NETWORK_SUPPLY + ) + usable_email_tlds = list("freemail.nt") + allowed_spawns = list("Arrivals Shuttle", "Cryogenic Storage", "Cyborg Storage") + + + use_overmap = TRUE + overmap_size = 20 + overmap_event_areas = 6 + default_skybox = /datum/skybox_settings/cynosure + + unit_test_exempt_areas = list( + /area/ninja_dojo, + /area/ninja_dojo/firstdeck, + /area/ninja_dojo/arrivals_dock, + /area/surface/cave, + /area/surface/station/construction, + /area/surface/station/rnd/test_area + ) + unit_test_exempt_from_atmos = list( + /area/tcommsat/chamber, + /area/surface/station/maintenance + ) + + planet_datums_to_make = list(/datum/planet/sif) + + map_levels = list( + Z_LEVEL_STATION_ONE, + Z_LEVEL_STATION_TWO, + Z_LEVEL_STATION_THREE, + Z_LEVEL_SURFACE_WILD + ) + +/datum/map/cynosure/perform_map_generation() + // First, place a bunch of submaps. This comes before tunnel/forest generation as to not interfere with the submap. + + // Cave submaps are first. + SSmapping.seed_area_submaps( + list(Z_LEVEL_STATION_ONE), + 75, + /area/surface/cave/unexplored/normal, + /datum/map_template/surface/mountains/normal + ) + SSmapping.seed_area_submaps( + list(Z_LEVEL_STATION_ONE), + 75, + /area/surface/cave/unexplored/deep, + /datum/map_template/surface/mountains/deep + ) + + // Plains to make them less plain. + SSmapping.seed_area_submaps( + list(Z_LEVEL_STATION_TWO), + 100, + /area/surface/outside/plains/normal, + /datum/map_template/surface/plains + ) // Center area is WIP until map editing settles down. + + // Wilderness is next. + SSmapping.seed_area_submaps( + list(Z_LEVEL_SURFACE_WILD), + 75, + /area/surface/outside/wilderness/normal, + /datum/map_template/surface/wilderness/normal + ) + + SSmapping.seed_area_submaps( + list(Z_LEVEL_SURFACE_WILD), + 75, + /area/surface/outside/wilderness/deep, + /datum/map_template/surface/wilderness/deep + ) + // If Space submaps are made, add a line to make them here as well. + + // Now for the tunnels. + var/time_started = REALTIMEOFDAY + new /datum/random_map/automata/cave_system/no_cracks(null, 1, 1, Z_LEVEL_STATION_ONE, world.maxx, world.maxy) // Create the mining Z-level. + to_world_log("Generated caves in [(REALTIMEOFDAY - time_started) / 10] second\s.") + time_started = REALTIMEOFDAY + new /datum/random_map/noise/sif/underground(null, 1, 1, Z_LEVEL_STATION_ONE, world.maxx, world.maxy) + new /datum/random_map/noise/ore(null, 1, 1, Z_LEVEL_STATION_ONE, 64, 64) // Create the mining ore distribution map. + to_world_log("Generated ores in [(REALTIMEOFDAY - time_started) / 10] second\s.") + + // Forest/wilderness generation. + new /datum/random_map/noise/sif( null, 1, 1, Z_LEVEL_STATION_TWO, world.maxx, world.maxy) + new /datum/random_map/noise/sif/forest(null, 1, 1, Z_LEVEL_SURFACE_WILD, world.maxx, world.maxy) + + return 1 + +// Skybox Settings +/datum/skybox_settings/cynosure + icon_state = "dyable" + random_color = TRUE + +// For making the 6-in-1 holomap, we calculate some offsets +#define SOUTHERN_CROSS_MAP_SIZE 160 // Width and height of compiled in Southern Cross z levels. +#define SOUTHERN_CROSS_HOLOMAP_CENTER_GUTTER 40 // 40px central gutter between columns +#define SOUTHERN_CROSS_HOLOMAP_MARGIN_X ((HOLOMAP_ICON_SIZE - (2*SOUTHERN_CROSS_MAP_SIZE) - SOUTHERN_CROSS_HOLOMAP_CENTER_GUTTER) / 2) // 100 +#define SOUTHERN_CROSS_HOLOMAP_MARGIN_Y ((HOLOMAP_ICON_SIZE - (3*SOUTHERN_CROSS_MAP_SIZE)) / 2) // 60 + +/datum/map_z_level/cynosure/station + flags = MAP_LEVEL_STATION|MAP_LEVEL_CONTACT|MAP_LEVEL_PLAYER|MAP_LEVEL_CONSOLES + holomap_legend_x = 220 + holomap_legend_y = 160 + +/datum/map_z_level/cynosure/station/station_one + z = Z_LEVEL_STATION_ONE + name = "Underground" + flags = MAP_LEVEL_STATION|MAP_LEVEL_CONTACT|MAP_LEVEL_PLAYER|MAP_LEVEL_CONSOLES|MAP_LEVEL_SEALED + base_turf = /turf/simulated/floor/outdoors/rocks/caves + holomap_offset_x = SOUTHERN_CROSS_HOLOMAP_MARGIN_X - 40 + holomap_offset_y = SOUTHERN_CROSS_HOLOMAP_MARGIN_Y + SOUTHERN_CROSS_MAP_SIZE*0 + +/datum/map_z_level/cynosure/station/station_two + z = Z_LEVEL_STATION_TWO + name = "Surface" + flags = MAP_LEVEL_STATION|MAP_LEVEL_CONTACT|MAP_LEVEL_PLAYER|MAP_LEVEL_CONSOLES|MAP_LEVEL_SEALED + base_turf = /turf/simulated/open + holomap_offset_x = SOUTHERN_CROSS_HOLOMAP_MARGIN_X - 40 + holomap_offset_y = SOUTHERN_CROSS_HOLOMAP_MARGIN_Y + SOUTHERN_CROSS_MAP_SIZE*1 + +/datum/map_z_level/cynosure/station/station_three + z = Z_LEVEL_STATION_THREE + name = "Deck 2" + flags = MAP_LEVEL_STATION|MAP_LEVEL_CONTACT|MAP_LEVEL_PLAYER|MAP_LEVEL_CONSOLES|MAP_LEVEL_SEALED + base_turf = /turf/simulated/open + holomap_offset_x = HOLOMAP_ICON_SIZE - SOUTHERN_CROSS_HOLOMAP_MARGIN_X - SOUTHERN_CROSS_MAP_SIZE - 40 + holomap_offset_y = SOUTHERN_CROSS_HOLOMAP_MARGIN_Y + SOUTHERN_CROSS_MAP_SIZE*1 + +/datum/map_z_level/cynosure/empty_space + z = Z_LEVEL_EMPTY_SPACE + name = "Empty" + flags = MAP_LEVEL_PLAYER + transit_chance = 76 + +/datum/map_z_level/cynosure/tcomm + z = Z_LEVEL_TCOMM + name = "Telecommunications Satellite" + flags = MAP_LEVEL_PLAYER|MAP_LEVEL_CONTACT + transit_chance = 24 + +/datum/map_z_level/cynosure/centcom + z = Z_LEVEL_CENTCOM + name = "Centcom" + flags = MAP_LEVEL_ADMIN|MAP_LEVEL_CONTACT | MAP_LEVEL_SEALED + +/datum/map_z_level/cynosure/surface_wild + z = Z_LEVEL_SURFACE_WILD + name = "Wilderness" + flags = MAP_LEVEL_PLAYER|MAP_LEVEL_SEALED|MAP_LEVEL_CONTACT|MAP_LEVEL_CONSOLES + base_turf = /turf/simulated/floor/outdoors/rocks/sif/planetuse + +//Teleport to Mine + +/obj/effect/step_trigger/teleporter/mine/to_mining/New() + ..() + teleport_x = src.x + teleport_y = 2 + teleport_z = Z_LEVEL_STATION_ONE + +/obj/effect/step_trigger/teleporter/mine/from_mining/New() + ..() + teleport_x = src.x + teleport_y = world.maxy - 1 + teleport_z = Z_LEVEL_STATION_TWO + +//Teleport to Wild + +/obj/effect/step_trigger/teleporter/wild/to_wild/New() + ..() + teleport_x = src.x + teleport_y = 2 + teleport_z = Z_LEVEL_SURFACE_WILD + +/obj/effect/step_trigger/teleporter/wild/from_wild/New() + ..() + teleport_x = src.x + teleport_y = world.maxy - 1 + teleport_z = Z_LEVEL_STATION_TWO + +/datum/planet/sif + expected_z_levels = list( + Z_LEVEL_STATION_ONE, + Z_LEVEL_STATION_TWO, + Z_LEVEL_STATION_THREE, + Z_LEVEL_SURFACE_WILD + ) + +/obj/effect/step_trigger/teleporter/bridge/east_to_west/Initialize() + teleport_x = src.x - 4 + teleport_y = src.y + teleport_z = src.z + return ..() + +/obj/effect/step_trigger/teleporter/bridge/east_to_west/small/Initialize() + teleport_x = src.x - 3 + teleport_y = src.y + teleport_z = src.z + return ..() + +/obj/effect/step_trigger/teleporter/bridge/west_to_east/Initialize() + teleport_x = src.x + 4 + teleport_y = src.y + teleport_z = src.z + return ..() + +/obj/effect/step_trigger/teleporter/bridge/west_to_east/small/Initialize() + teleport_x = src.x + 3 + teleport_y = src.y + teleport_z = src.z + return ..() + +/obj/effect/step_trigger/teleporter/bridge/north_to_south/Initialize() + teleport_x = src.x + teleport_y = src.y - 4 + teleport_z = src.z + return ..() + +/obj/effect/step_trigger/teleporter/bridge/south_to_north/Initialize() + teleport_x = src.x + teleport_y = src.y + 4 + teleport_z = src.z + return ..() + +//Planetside Transitions + +/obj/effect/map_effect/portal/master/side_a/plains_to_caves + portal_id = "plains_caves-normal" + +/obj/effect/map_effect/portal/master/side_b/caves_to_plains + portal_id = "plains_caves-normal" + +/obj/effect/map_effect/portal/master/side_a/plains_to_wilderness + portal_id = "caves_wilderness-normal" + +/obj/effect/map_effect/portal/master/side_b/wilderness_to_plains + portal_id = "caves_wilderness-normal" + +/obj/effect/map_effect/portal/master/side_a/plains_to_wilderness/river + portal_id = "caves_wilderness-river" + +/obj/effect/map_effect/portal/master/side_b/wilderness_to_plains/river + portal_id = "caves_wilderness-river" + +//Suit Storage Units + +/obj/machinery/suit_cycler/exploration + name = "Explorer suit cycler" + model_text = "Exploration" + req_one_access = list(access_explorer) + +/obj/machinery/suit_cycler/pilot + name = "Pilot suit cycler" + model_text = "Pilot" + req_access = null + req_one_access = list(access_explorer) + +// Putting this here in order to not disrupt existing maps/downstreams. +/turf/simulated/open + dynamic_lighting = TRUE \ No newline at end of file diff --git a/maps/cynosure/cynosure_shuttles.dm b/maps/cynosure/cynosure_shuttles.dm new file mode 100644 index 0000000000..8fd4e9b0a5 --- /dev/null +++ b/maps/cynosure/cynosure_shuttles.dm @@ -0,0 +1,497 @@ +//Cynosure Shuttles + +// Arrivals Shuttle +/datum/shuttle/autodock/ferry/arrivals/cynosure + name = "Arrivals" + location = FERRY_LOCATION_OFFSITE + shuttle_area = /area/shuttle/arrival/pre_game + landmark_offsite = "arrivals_offsite" + landmark_station = "arrivals_station" + docking_controller_tag = "arrivals_shuttle" + ceiling_type = /turf/simulated/floor/reinforced + +/obj/effect/shuttle_landmark/cynosure/arrivals_offsite + name = "Transit to Station" + landmark_tag = "arrivals_offsite" + base_area = /area/space + base_turf = /turf/space + +/obj/effect/shuttle_landmark/cynosure/arrivals_station + name = "Cynosure Arrivals Pad" + landmark_tag = "arrivals_station" + docking_controller = "arrivals_dock" + +// Cargo shuttle. + +/datum/shuttle/autodock/ferry/supply/cargo + name = "Supply" + location = FERRY_LOCATION_OFFSITE + warmup_time = 10 + shuttle_area = /area/shuttle/supply + landmark_offsite = "supply_offsite" + landmark_station = "supply_station" + docking_controller_tag = "supply_shuttle" + ceiling_type = /turf/simulated/floor/reinforced + flags = SHUTTLE_FLAGS_PROCESS|SHUTTLE_FLAGS_SUPPLY + +/obj/effect/shuttle_landmark/cynosure/supply_offsite + name = "Centcom Supply Depot" + landmark_tag = "supply_offsite" + base_area = /area/centcom/command + base_turf = /turf/simulated/floor/plating + +/obj/effect/shuttle_landmark/cynosure/supply_station + name = "Station" + landmark_tag = "supply_station" + docking_controller = "cargo_bay" + +//Transport + +/obj/machinery/computer/shuttle_control/multi/centcom + name = "shuttle control console" + shuttle_tag = "Centcom" + req_access = list(access_cent_general) + +/datum/shuttle/autodock/multi/centcom + name = "Centcom" + warmup_time = 0 + current_location = "centcom_shuttle_start" + landmark_transition = "centcom_shuttle_transit" + shuttle_area = /area/shuttle/transport1/centcom + destination_tags = list( + "centcom_shuttle_start", + "nav_telecomm_dockarm", + "nav_pad3_cynosure", + "nav_pad4_cynosure", + "nav_perimeter_cynosure", + "nav_wilderness" + ) + docking_controller_tag = "centcom_shuttle" + announcer = "Automated Traffic Control" + arrival_message = "Attention, Transport Shuttle is approaching Cynosure Station." + departure_message = "Attention, Transport Shuttle is departing Cynosure Station." + +//Administration + +/obj/machinery/computer/shuttle_control/multi/administration + name = "administration shuttle console" + shuttle_tag = "Administration" + req_access = list(access_cent_general) + +/datum/shuttle/autodock/multi/administration + name = "Administration" + warmup_time = 0 + current_location = "admin_shuttle_start" + landmark_transition = "admin_shuttle_transit" + shuttle_area = /area/shuttle/administration/centcom + destination_tags = list( + "admin_shuttle_start", + "nav_telecomm_dockarm", + "nav_perimeter_cynosure", + "nav_wilderness" + ) + docking_controller_tag = "admin_shuttle" + announcer = "Automated Traffic Control" + arrival_message = "Attention, Administration Shuttle is approaching Cynosure Station." + departure_message = "Attention, Administration Shuttle is departing Cynosure Station." + +//ERT + +/obj/machinery/computer/shuttle_control/multi/response + name = "response shuttle console" + shuttle_tag = "Response Operations" + req_access = list(access_cent_specops) + +/datum/shuttle/autodock/multi/response + name = "Response Operations" + can_cloak = TRUE + cloaked = FALSE + warmup_time = 5 + current_location = "response_ship_start" + landmark_transition = "reponse_ship_transit" + shuttle_area = /area/shuttle/response_ship/start + destination_tags = list( + "response_ship_start", + "nav_telecomm_dockarm", + "nav_pad3_cynosure", + "nav_pad4_cynosure", + "nav_perimeter_cynosure", + "nav_wilderness" + ) + docking_controller_tag = "response_shuttle" + announcer = "Automated Traffic Control" + arrival_message = "Attention, the Emergency Response Team's shuttle is approaching Cynosure Station." + departure_message = "Attention, the Emergency Response Team's shuttle is departing Cynosure Station." + +//Trader + +/obj/machinery/computer/shuttle_control/multi/merchant + name = "merchant shuttle control console" + shuttle_tag = "Merchant" + +/datum/shuttle/autodock/multi/merchant + name = "Merchant" + warmup_time = 0 + current_location = "trade_shuttle_start" + landmark_transition = "trade_shuttle_transit" + shuttle_area = /area/shuttle/merchant/home + destination_tags = list( + "trade_shuttle_start", + "nav_perimeter_cynosure", + "nav_wilderness" + ) + docking_controller_tag = "trade_shuttle" + announcer = "Automated Traffic Control" + arrival_message = "Attention, Beruang is approaching Cynosure Station." + departure_message = "Attention, Beruang is departing Cynosure Station." + +//Ninja + +/obj/machinery/computer/shuttle_control/multi/ninja + name = "ninja shuttle console" + shuttle_tag = "Ninja" + req_access = list(access_syndicate) + +/datum/shuttle/autodock/multi/ninja + name = "Ninja" + can_cloak = TRUE + cloaked = TRUE + warmup_time = 0 + current_location = "ninja_start" + landmark_transition = "ninja_transit" + shuttle_area = /area/ninja_dojo/start + destination_tags = list( + "ninja_start", + "nav_telecomm_dockarm", + "nav_telecomm_solars", + "nav_pad3_cynosure", + "nav_pad4_cynosure", + "nav_perimeter_cynosure", + "nav_wilderness" + ) + docking_controller_tag = "ninja_shuttle" + announcer = "Automated Traffic Control" + arrival_message = "Attention, unknown shuttle is approaching Cynosure Station." + departure_message = "Attention, unknown shuttle is departing Cynosure Station." + +//Heist + +/obj/machinery/computer/shuttle_control/multi/heist + name = "skipjack control console" + shuttle_tag = "Skipjack" + req_access = list(access_syndicate) + +/datum/shuttle/autodock/multi/heist + name = "Skipjack" + can_cloak = TRUE + cloaked = TRUE + warmup_time = 0 + current_location = "skipjack_start" + landmark_transition = "skipjack_transit" + shuttle_area = /area/skipjack_station/start + destination_tags = list( + "skipjack_start", + "nav_telecomm_solars", + "nav_perimeter_cynosure", + "nav_wilderness" + ) + docking_controller_tag = "skipjack_shuttle" + announcer = "Automated Traffic Control" + arrival_message = "Attention, unknown shuttle is approaching Cynosure Station." + departure_message = "Attention, unknown shuttle is departing Cynosure Station." + +//Mercenary + +/obj/machinery/computer/shuttle_control/multi/mercenary + name = "mercenary ship control console" + shuttle_tag = "Mercenary" + req_access = list(access_syndicate) + +/datum/shuttle/autodock/multi/mercenary + name = "Mercenary" + can_cloak = TRUE + cloaked = TRUE + warmup_time = 0 + current_location = "syndie_start" + landmark_transition = "syndie_transit" + shuttle_area = /area/syndicate_station/start + destination_tags = list( + "syndie_start", + "nav_telecomm_solars", + "nav_perimeter_cynosure", + "nav_wilderness" + ) + docking_controller_tag = "merc_shuttle" + announcer = "Automated Traffic Control" + arrival_message = "Attention, unknown shuttle is approaching Cynosure Station." + departure_message = "Attention, unknown shuttle is departing Cynosure Station." + +/obj/machinery/computer/shuttle_control/multi/mercenary_elite + name = "mercenary ship control console" + shuttle_tag = "Mercenary Elite" + req_access = list(access_syndicate) + +/datum/shuttle/autodock/multi/mercenary_elite + name = "Mercenary Elite" + can_cloak = TRUE + cloaked = TRUE + warmup_time = 0 + current_location = "syndie_elite_start" + landmark_transition = "syndie_elite_transit" + shuttle_area = /area/shuttle/syndicate_elite/mothership + destination_tags = list( + "syndie_elite_start", + "nav_telecomm_dockarm", + "nav_perimeter_cynosure", + "nav_wilderness" + ) + docking_controller_tag = "merc_elite_shuttle" + announcer = "Automated Traffic Control" + arrival_message = "Attention, unknown shuttle is approaching Cynosure Station." + departure_message = "Attention, unknown shuttle is departing Cynosure Station." + +//Escape Pods + +/datum/shuttle/autodock/ferry/emergency/centcom + name = "Escape" + location = FERRY_LOCATION_OFFSITE + warmup_time = 10 + shuttle_area = /area/shuttle/escape/centcom + landmark_offsite = "escape_offsite" + landmark_station = "escape_station" + landmark_transition = "escape_transit"; + docking_controller_tag = "escape_shuttle" + ceiling_type = /turf/simulated/floor/reinforced + move_time = SHUTTLE_TRANSIT_DURATION_RETURN + +/obj/effect/shuttle_landmark/cynosure/escape/offsite + name = "Centcom" + landmark_tag = "escape_offsite" + docking_controller = "centcom_dock" + base_area = /area/space + base_turf = /turf/space + +/obj/effect/shuttle_landmark/cynosure/escape/station + name = "Cynosure Departures Pad" + landmark_tag = "escape_station" + docking_controller = "escape_dock" + +/obj/effect/shuttle_landmark/cynosure/escape/transit + landmark_tag = "escape_transit" + +// Escape Pods - Save me from typing this eight billion times +#define ESCAPE_POD(NUMBER) \ +/datum/shuttle/autodock/ferry/escape_pod/escape_pod##NUMBER { \ + name = "Escape Pod " + #NUMBER; \ + location = FERRY_LOCATION_STATION; \ + warmup_time = 0; \ + shuttle_area = /area/shuttle/escape_pod##NUMBER/station; \ + docking_controller_tag = "escape_pod_" + #NUMBER; \ + landmark_station = "escape_pod_"+ #NUMBER +"_station"; \ + landmark_offsite = "escape_pod_"+ #NUMBER +"_offsite"; \ + landmark_transition = "escape_pod_"+ #NUMBER +"_transit"; \ + move_time = SHUTTLE_TRANSIT_DURATION_RETURN; \ +} \ +/obj/effect/shuttle_landmark/cynosure/escape_pod##NUMBER/station { \ + name = "Station"; \ + landmark_tag = "escape_pod_"+ #NUMBER +"_station"; \ + docking_controller = "escape_pod_"+ #NUMBER +"_berth"; \ + base_area = /area/space; \ + base_turf = /turf/simulated/floor/airless; \ +} \ +/obj/effect/shuttle_landmark/cynosure/escape_pod##NUMBER/offsite { \ + name = "Recovery"; \ + landmark_tag = "escape_pod_"+ #NUMBER +"_offsite"; \ + docking_controller = "escape_pod_"+ #NUMBER +"_recovery"; \ +} \ +/obj/effect/shuttle_landmark/cynosure/escape_pod##NUMBER/transit { \ + landmark_tag = "escape_pod_"+ #NUMBER +"_transit"; \ + flags = SLANDMARK_FLAG_AUTOSET; \ +} + +ESCAPE_POD(1) + +#undef ESCAPE_POD + +// Large Escape Pod 1 +/datum/shuttle/autodock/ferry/escape_pod/large_escape_pod1 + name = "Large Escape Pod 1" + location = FERRY_LOCATION_STATION + warmup_time = 0 + shuttle_area = /area/shuttle/large_escape_pod1/station + landmark_station = "large_escape_pod1_station" + landmark_offsite = "large_escape_pod1_offsite" + landmark_transition = "large_escape_pod1_transit" + docking_controller_tag = "large_escape_pod_1" + move_time = SHUTTLE_TRANSIT_DURATION_RETURN + +/obj/effect/shuttle_landmark/cynosure/large_escape_pod1/station + name = "Station" + landmark_tag = "large_escape_pod1_station" + docking_controller = "large_escape_pod_1_berth" + base_area = /area/surface/outpost/research/xenoarcheology/surface + base_turf = /turf/simulated/floor/airless + +/obj/effect/shuttle_landmark/cynosure/large_escape_pod1/offsite + name = "Recovery" + landmark_tag = "large_escape_pod1_offsite" + docking_controller = "large_escape_pod_1_recovery" + +/obj/effect/shuttle_landmark/cynosure/large_escape_pod1/transit + landmark_tag = "large_escape_pod1_transit" + flags = SLANDMARK_FLAG_AUTOSET + +// Large Escape Pod 2 +/datum/shuttle/autodock/ferry/escape_pod/large_escape_pod2 + name = "Large Escape Pod 2" + location = FERRY_LOCATION_STATION + warmup_time = 0 + shuttle_area = /area/shuttle/large_escape_pod2/station + landmark_station = "large_escape_pod2_station" + landmark_offsite = "large_escape_pod2_offsite" + landmark_transition = "large_escape_pod2_transit" + docking_controller_tag = "large_escape_pod_2" + move_time = SHUTTLE_TRANSIT_DURATION_RETURN + +/obj/effect/shuttle_landmark/cynosure/large_escape_pod2/station + name = "Station" + landmark_tag = "large_escape_pod2_station" + docking_controller = "large_escape_pod_2_berth" + base_area = /area/surface/station/hallway/primary/secondfloor/east + base_turf = /turf/simulated/floor/airless + +/obj/effect/shuttle_landmark/cynosure/large_escape_pod2/offsite + name = "Recovery" + landmark_tag = "large_escape_pod2_offsite" + docking_controller = "large_escape_pod_2_recovery" + +/obj/effect/shuttle_landmark/cynosure/large_escape_pod2/transit + landmark_tag = "large_escape_pod2_transit" + flags = SLANDMARK_FLAG_AUTOSET + +//Cynosure Station Docks + +/obj/effect/shuttle_landmark/cynosure/pads/pad3 + name = "Shuttle Pad Three" + landmark_tag = "nav_pad3_cynosure" + docking_controller = "pad3" + base_area = /area/surface/outside/station/shuttle/pad3 + base_turf = /turf/simulated/floor/plating/sif/planetuse + +/obj/effect/shuttle_landmark/cynosure/pads/pad4 + name = "Shuttle Pad Four" + landmark_tag = "nav_pad4_cynosure" + docking_controller = "pad4" + base_area = /area/surface/outside/station/shuttle/pad4 + base_turf = /turf/simulated/floor/plating/sif/planetuse + +/obj/effect/shuttle_landmark/cynosure/pads/perimeter + name = "Cynosure Perimeter" + landmark_tag = "nav_perimeter_cynosure" + docking_controller = "pad4" + base_area = /area/surface/outside/plains/station + base_turf = /turf/simulated/floor/outdoors/dirt/sif/planetuse + +//Wilderness + +/obj/effect/shuttle_landmark/cynosure/wilderness + name = "Wilderness" + landmark_tag = "nav_wilderness" + base_area = /area/surface/outside/wilderness/deep + base_turf = /turf/simulated/floor/outdoors/dirt/sif/planetuse + +//Tcomms Sat Docks + +/obj/effect/shuttle_landmark/cynosure/tcomms/dock + name = "Telecommunications Satellite - Dock" + landmark_tag = "nav_telecomm_dockarm" + docking_controller = "tcomdock_airlock" + base_area = /area/space + base_turf = /turf/space + +/obj/effect/shuttle_landmark/cynosure/tcomms/solars + name = "Telecommunications Satellite - Solars" + landmark_tag = "nav_telecomm_solars" + base_area = /area/space + base_turf = /turf/space + +// Explorer Shuttle + +/datum/shuttle/autodock/overmap/explorer_shuttle + name = "Exploration Shuttle" + warmup_time = 0 + current_location = "nav_pad4_cynosure" + docking_controller_tag = "expshuttle_docker" + shuttle_area = list(/area/shuttle/exploration/general, /area/shuttle/exploration/cockpit, /area/shuttle/exploration/cargo) + fuel_consumption = 3 + ceiling_type = /turf/simulated/floor/reinforced/airless + +/obj/effect/overmap/visitable/ship/landable/explorer_shuttle + name = "Exploration Shuttle" + desc = "The exploration team's shuttle." + vessel_mass = 2000 + vessel_size = SHIP_SIZE_SMALL + shuttle = "Exploration Shuttle" + +/obj/machinery/computer/shuttle_control/explore/explorer_shuttle + name = "takeoff and landing console" + shuttle_tag = "Exploration Shuttle" + req_one_access = list(access_explorer) + +/* +// Compile in the map for CI testing if we're testing compileability of all the maps +#if MAP_TEST +#include "generic_shuttle.dmm" +#endif + +// Map template for spawning the shuttle +/datum/map_template/om_ships/hybrid + name = "OM Ship - Generic Shuttle" + desc = "A small privately-owned vessel." + mappath = 'generic_shuttle.dmm' + annihilate = TRUE + +// The shuttle's area(s) +/area/shuttle/generic_shuttle/eng + name = "\improper Private Vessel - Engineering" + icon_state = "shuttle2" + requires_power = 1 + +/area/shuttle/generic_shuttle/gen + name = "\improper Private Vessel - General" + icon_state = "shuttle2" + requires_power = 1 + +// The shuttle's 'shuttle' computer +/obj/machinery/computer/shuttle_control/explore/generic_shuttle + name = "short jump console" + shuttle_tag = "Private Vessel" + req_one_access = list(access_pilot) + +// A shuttle lateloader landmark +/obj/effect/shuttle_landmark/shuttle_initializer/generic_shuttle + name = "Origin - Private Vessel" + base_area = /area/space + base_turf = /turf/space + landmark_tag = "omship_spawn_generic_shuttle" + shuttle_type = /datum/shuttle/autodock/overmap/generic_shuttle + +// The 'shuttle' +/datum/shuttle/autodock/overmap/generic_shuttle + name = "Private Vessel" + current_location = "omship_spawn_generic_shuttle" + docking_controller_tag = "generic_shuttle_docker" + shuttle_area = list(/area/shuttle/generic_shuttle/eng, /area/shuttle/generic_shuttle/gen) + defer_initialisation = TRUE //We're not loaded until an admin does it + +// The 'ship' +/obj/effect/overmap/visitable/ship/landable/generic_shuttle + scanner_name = "Private Vessel" + scanner_desc = @{"[i]Registration[/i]: PRIVATE +[i]Class[/i]: Small Shuttle +[i]Transponder[/i]: Transmitting (CIV), non-hostile +[b]Notice[/b]: Small private vessel"} + vessel_mass = 1000 + vessel_size = SHIP_SIZE_TINY + shuttle = "Private Vessel" +*/ \ No newline at end of file diff --git a/maps/cynosure/datums/random_map.dm b/maps/cynosure/datums/random_map.dm new file mode 100644 index 0000000000..9ae314f624 --- /dev/null +++ b/maps/cynosure/datums/random_map.dm @@ -0,0 +1,144 @@ +/turf/simulated/floor/outdoors/mask // Used solely as a placeholder to avoid changeturf. + +/datum/random_map/noise/sif + descriptor = "Sif plains (roundstart)" + smoothing_iterations = 3 + target_turf_type = /turf/simulated/floor/outdoors/mask + smooth_single_tiles = TRUE + var/refresh_icons_post_apply = TRUE + +/datum/random_map/noise/sif/cleanup() + ..() + // Round down to 1-9. + for(var/x = 1, x <= limit_x, x++) + for(var/y = 1, y <= limit_y, y++) + var/current_cell = get_map_cell(x,y) + var/current_val = map[current_cell] + map[current_cell] = min(9,max(0,round((current_val/cell_range)*10))) + +/datum/random_map/noise/sif/apply_to_map() + ..() + if(refresh_icons_post_apply) + for(var/x = 1, x <= limit_x, x++) + for(var/y = 1, y <= limit_y, y++) + var/turf/simulated/floor/outdoors/T = locate((origin_x-1)+x,(origin_y-1)+y,origin_z) + if(istype(T)) + 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 + +/datum/random_map/noise/sif/get_additional_spawns(var/value, var/turf/T) + if(prob(45) || T.check_density()) + return + switch(value) + if(1 to 2) + if(prob(1)) + new /obj/structure/flora/sif/eyes(T) + else if(prob(1)) + new /obj/structure/flora/mushroom(T) + if(3 to 4) + if(prob(1)) + new /obj/structure/flora/sif/eyes(T) + else if(prob(1)) + new /obj/structure/flora/sif/tendrils(T) + else if(prob(1)) + new /obj/structure/flora/mushroom(T) + if(5 to 6) + if(prob(1)) + new /obj/structure/flora/tree/sif(T) + else if(prob(1)) + new /obj/structure/flora/sif/tendrils(T) + else if(prob(1)) + new /obj/structure/flora/sif/frostbelle(T) + else if (prob(1)) + new /obj/structure/flora/sif/eyes(T) + if(7 to 8) + if(prob(5)) + new /obj/structure/flora/tree/sif(T) + else if(prob(1)) + new /obj/structure/flora/sif/frostbelle(T) + else if(prob(1)) + new /obj/structure/flora/sif/eyes(T) + else if(prob(1)) + new /obj/structure/flora/sif/tendrils(T) + +/datum/random_map/noise/sif/forest + 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 + +/datum/random_map/noise/sif/forest/get_additional_spawns(var/value, var/turf/T) + if(prob(25) || T.check_density()) + return + switch(value) + if(0 to 5) + if(value >= 3 && prob(5)) + new /obj/structure/flora/tree/sif(T) + return + if(prob(1)) + new /obj/structure/flora/sif/eyes(T) + else if(prob(1)) + new /obj/structure/flora/sif/tendrils(T) + else if(prob(1)) + new /obj/structure/flora/mushroom(T) + if(6 to 9) + if(prob((value <= 7) ? 15 : 35)) + new /obj/structure/flora/tree/sif(T) + return + if(prob(1)) + new /obj/structure/flora/sif/frostbelle(T) + else if(prob(1)) + new /obj/structure/flora/sif/eyes(T) + else if(prob(1)) + new /obj/structure/flora/sif/tendrils(T) + +/datum/random_map/noise/sif/underground + descriptor = "Sif underground (roundstart)" + target_turf_type = /turf/simulated/mineral/sif + skip_dense = TRUE + keep_outside = TRUE + refresh_icons_post_apply = FALSE + +/datum/random_map/noise/sif/underground/get_appropriate_path(var/value) + switch(value) + if(0 to 2) + return /turf/simulated/floor/outdoors/mud/sif/planetuse + if(3 to 4) + return /turf/simulated/floor/outdoors/dirt/sif/planetuse + +/datum/random_map/noise/sif/underground/get_additional_spawns(var/value, var/turf/T) + if(value <= 1 && prob(30)) // Mud is very fun-gy. + new /obj/structure/flora/mushroom(T) + else if(!prob(30)) + var/mushroom_prob = 0 + switch(value) + if(2) + mushroom_prob = 8 + if(3) + mushroom_prob = 4 + if(4 to 6) + mushroom_prob = 2 + if(7) + mushroom_prob = 1 + if(mushroom_prob && prob(mushroom_prob)) + new /obj/structure/flora/mushroom(T) + else if(prob(0.1)) + new /obj/structure/flora/sif/subterranean(T) diff --git a/maps/cynosure/submaps/16x11/OldDorms.dmm b/maps/cynosure/submaps/16x11/OldDorms.dmm new file mode 100644 index 0000000000..42598f0135 --- /dev/null +++ b/maps/cynosure/submaps/16x11/OldDorms.dmm @@ -0,0 +1,101 @@ +"aF" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/tiled/dark,/area/template_noop) +"aK" = (/turf/simulated/floor/tiled/freezer,/area/template_noop) +"bo" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/item/stack/tile/floor,/turf/simulated/floor/plating,/area/template_noop) +"bt" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/light{dir = 4},/turf/simulated/floor/plating,/area/template_noop) +"bx" = (/obj/structure/bed/chair/sofa/beige/right{dir = 4},/turf/simulated/floor/wood/broken,/area/template_noop) +"bI" = (/obj/machinery/vending/snack{dir = 4},/turf/simulated/floor/tiled/dark,/area/template_noop) +"cy" = (/obj/structure/closet/wardrobe/pjs,/turf/simulated/floor/tiled/dark,/area/template_noop) +"cD" = (/obj/item/weapon/camera_assembly,/turf/simulated/floor/tiled,/area/template_noop) +"cL" = (/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 = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled,/area/template_noop) +"df" = (/obj/machinery/shower{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/structure/curtain/open/shower,/obj/structure/windoor_assembly,/turf/simulated/floor/tiled/freezer,/area/template_noop) +"dm" = (/obj/random/obstruction,/turf/simulated/floor/tiled/dark,/area/template_noop) +"dr" = (/obj/machinery/shower{pixel_y = 3},/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/window/southright{name = "Shower"},/obj/structure/curtain/open/shower,/turf/simulated/floor/tiled/freezer,/area/template_noop) +"el" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/item/stack/tile/floor,/obj/item/device/radio/intercom{dir = 1; pixel_y = 21},/turf/simulated/floor/plating,/area/template_noop) +"eH" = (/obj/structure/sink{dir = 8; pixel_x = -12; pixel_y = 2},/obj/item/frame/mirror,/turf/simulated/floor/tiled/freezer,/area/template_noop) +"eO" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/wood,/area/template_noop) +"eQ" = (/turf/simulated/floor/tiled,/area/template_noop) +"fe" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/plating,/area/template_noop) +"fI" = (/obj/structure/closet/crate/engineering,/obj/random/contraband,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/structure/sign/poster{dir = 4; pixel_x = 32; poster_decl = /decl/poster/bay_29},/obj/item/frame/apc,/obj/item/frame/light,/turf/simulated/floor/tiled,/area/template_noop) +"if" = (/turf/simulated/floor/plating,/area/template_noop) +"iM" = (/obj/machinery/alarm{dir = 4; pixel_x = -22},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/template_noop) +"jy" = (/obj/machinery/computer/guestpass{pixel_y = 30},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/plating,/area/template_noop) +"jV" = (/obj/structure/closet/cabinet,/obj/random/contraband,/obj/random/drinkbottle,/obj/item/weapon/melee/umbrella/random,/turf/simulated/floor/wood,/area/template_noop) +"ku" = (/obj/structure/table/standard,/obj/random/tool,/turf/simulated/floor/plating,/area/template_noop) +"lo" = (/obj/structure/firedoor_assembly,/turf/simulated/floor/tiled/steel_grid,/area/template_noop) +"lB" = (/obj/structure/table/standard,/obj/machinery/light_construct{dir = 4},/obj/machinery/atmospherics/unary/vent_pump{dir = 8},/obj/item/device/flashlight/lamp/green,/turf/simulated/floor/wood,/area/template_noop) +"mk" = (/obj/structure/table/standard,/obj/machinery/microwave,/turf/simulated/floor/wood,/area/template_noop) +"mP" = (/obj/structure/door_assembly,/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/wood/broken,/area/template_noop) +"mQ" = (/obj/machinery/atmospherics/unary/vent_scrubber{dir = 1},/obj/item/stack/cable_coil,/turf/simulated/floor/plating,/area/template_noop) +"nY" = (/obj/machinery/newscaster{pixel_y = -28},/turf/simulated/floor/plating,/area/template_noop) +"oR" = (/obj/structure/table/standard,/obj/item/weapon/storage/box/donkpockets{pixel_x = 3; pixel_y = 2},/obj/machinery/atmospherics/unary/vent_scrubber,/obj/item/poster/custom,/turf/simulated/floor/wood,/area/template_noop) +"pj" = (/obj/item/tape/engineering,/obj/structure/disposalpipe/broken,/obj/structure/cable{d2 = 2; icon_state = "0-2"},/obj/machinery/atmospherics/pipe/cap/hidden/scrubbers,/obj/machinery/atmospherics/pipe/cap/hidden/supply,/turf/simulated/floor/plating,/area/template_noop) +"qb" = (/obj/structure/closet/wardrobe/suit,/turf/simulated/floor/tiled/dark,/area/template_noop) +"qG" = (/obj/machinery/vending/fitness{dir = 4},/turf/simulated/floor/tiled/dark,/area/template_noop) +"su" = (/obj/structure/closet/wardrobe/mixed,/turf/simulated/floor/tiled/dark,/area/template_noop) +"sx" = (/obj/structure/toilet,/turf/simulated/floor/tiled/freezer,/area/template_noop) +"up" = (/obj/machinery/atmospherics/unary/vent_scrubber{dir = 4},/turf/simulated/floor/tiled,/area/template_noop) +"vL" = (/turf/simulated/floor/wood/broken,/area/template_noop) +"wm" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/wood,/area/template_noop) +"xc" = (/obj/structure/closet/wardrobe/xenos,/turf/simulated/floor/tiled/dark,/area/template_noop) +"xv" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/wood,/area/template_noop) +"xI" = (/obj/structure/bed/double,/obj/item/device/radio/intercom{dir = 1; pixel_y = 21},/turf/simulated/floor/wood/broken,/area/template_noop) +"zm" = (/obj/item/weapon/stool,/turf/simulated/floor/plating,/area/template_noop) +"zr" = (/obj/effect/graffitispawner{color = "#00B7EF"; color_secondary = "#0082A8"; graffiti_type = "amyjon"},/turf/simulated/floor/tiled/freezer,/area/template_noop) +"zO" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/tiled,/area/template_noop) +"zX" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/item/taperoll/engineering,/turf/simulated/floor/tiled,/area/template_noop) +"zZ" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/plating,/area/template_noop) +"Ag" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/wood,/area/template_noop) +"Bj" = (/obj/machinery/newscaster{pixel_y = -28},/turf/simulated/floor/wood,/area/template_noop) +"BS" = (/obj/structure/cable{d2 = 4; icon_state = "0-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/light_switch{pixel_x = 12; pixel_y = 24},/obj/machinery/power/apc{dir = 1; name = "north bump"; operating = 0; pixel_y = 24},/turf/simulated/floor/plating,/area/template_noop) +"Cb" = (/obj/structure/table/standard,/obj/random/toolbox,/turf/simulated/floor/plating,/area/template_noop) +"CK" = (/obj/machinery/door/airlock{name = "Restroom"},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/tiled/steel_grid,/area/template_noop) +"CQ" = (/obj/structure/table/standard,/obj/random/soap,/obj/item/weapon/towel/random,/turf/simulated/floor/tiled/freezer,/area/template_noop) +"Di" = (/obj/item/stack/tile/floor,/turf/simulated/floor/plating,/area/template_noop) +"DA" = (/obj/machinery/vending/coffee{dir = 4},/turf/simulated/floor/tiled/dark,/area/template_noop) +"DV" = (/turf/template_noop,/area/template_noop) +"Eo" = (/turf/simulated/floor/wood,/area/template_noop) +"Fn" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 8},/turf/simulated/floor/tiled,/area/template_noop) +"FE" = (/obj/structure/sink{dir = 8; pixel_x = -12; pixel_y = 2},/obj/structure/mirror{pixel_x = -28},/turf/simulated/floor/tiled/freezer,/area/template_noop) +"FP" = (/obj/machinery/recharge_station,/turf/simulated/floor/tiled/dark,/area/template_noop) +"GY" = (/obj/effect/floor_decal/spline/plain{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals_central4{dir = 4},/obj/item/weapon/stool{dir = 1},/turf/simulated/floor/tiled,/area/template_noop) +"It" = (/obj/machinery/newscaster{pixel_y = 26},/turf/simulated/floor/wood,/area/template_noop) +"IJ" = (/obj/structure/disposalpipe/segment,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/plating,/area/template_noop) +"Jm" = (/obj/structure/closet/cabinet,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/item/clothing/under/dress/maid/sexy,/obj/item/clothing/head/kitty,/obj/random/maintenance/clean,/turf/simulated/floor/wood,/area/template_noop) +"Lz" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/template_noop) +"LZ" = (/obj/structure/table/standard,/obj/item/frame,/turf/simulated/floor/wood,/area/template_noop) +"MG" = (/obj/machinery/vending/cola{dir = 4},/turf/simulated/floor/tiled/dark,/area/template_noop) +"MI" = (/obj/structure/table/standard,/obj/item/weapon/storage/box/donkpockets{pixel_x = 3; pixel_y = 2},/obj/machinery/atmospherics/unary/vent_scrubber{dir = 1},/turf/simulated/floor/wood,/area/template_noop) +"NW" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 1},/turf/simulated/floor/plating,/area/template_noop) +"Od" = (/obj/structure/bed/chair/sofa/beige/right{dir = 4},/obj/item/frame/apc,/turf/simulated/floor/wood,/area/template_noop) +"QN" = (/turf/simulated/wall,/area/template_noop) +"QT" = (/obj/structure/table/standard,/obj/machinery/light_construct{dir = 4},/obj/machinery/atmospherics/unary/vent_pump{dir = 8},/turf/simulated/floor/wood,/area/template_noop) +"Rm" = (/obj/structure/closet/wardrobe/grey,/turf/simulated/floor/tiled/dark,/area/template_noop) +"Ru" = (/obj/item/frame/light{dir = 4},/turf/simulated/floor/tiled/freezer,/area/template_noop) +"SS" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/plating,/area/template_noop) +"Td" = (/obj/structure/toilet{dir = 1},/turf/simulated/floor/tiled/freezer,/area/template_noop) +"TQ" = (/obj/structure/table/standard,/obj/item/weapon/coin/silver,/obj/item/clothing/head/soft/grey{pixel_x = -2; pixel_y = 3},/turf/simulated/floor/plating,/area/template_noop) +"Ul" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/template_noop) +"Vt" = (/obj/structure/bed/chair/sofa/beige/left{dir = 4},/turf/simulated/floor/wood,/area/template_noop) +"Xg" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/tiled/dark,/area/template_noop) +"Xi" = (/obj/structure/table/standard,/obj/item/frame,/turf/simulated/floor/plating,/area/template_noop) +"Xz" = (/obj/item/frame/extinguisher_cabinet,/turf/simulated/floor/tiled/dark,/area/template_noop) +"Yu" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/wood,/area/template_noop) +"YN" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/browndouble,/obj/item/weapon/handcuffs/fuzzy{pixel_x = -5},/obj/item/device/radio/intercom{pixel_y = -21},/turf/simulated/floor/wood,/area/template_noop) +"YR" = (/obj/item/weapon/stool/padded{dir = 1},/turf/simulated/floor/plating,/area/template_noop) +"Zv" = (/obj/machinery/door/airlock{name = "Dorm 2"},/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/wood/broken,/area/template_noop) +"ZB" = (/obj/structure/closet/wardrobe/black,/obj/machinery/light,/turf/simulated/floor/tiled/dark,/area/template_noop) +"ZD" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/plating,/area/template_noop) + +(1,1,1) = {" +QNQNQNQNQNQNQNpjQNQNQNQNQNQNQNDV +QNbIifzZjyelBSUlQNVtItxIQNQNQNQN +QNDADiNWzmifmQSSQNOdYuQTQNeHsxQN +QNMGifDiTQXiDifemPAgwmEoCKaKRuQN +QNqGififkuCbZDIJQNLZMIjVQNCQdfQN +QNFPDiifnYYRbobtQNQNQNQNQNQNQNQN +QNXzeQcDQNQNiMfIQNmkoRJmQNCQdrQN +QNaFeQGYdmdmzOcLZvAgxvvLloaKzrQN +QNXgupLzLzLzzXFnQNVteOlBQNFETdQN +QNQNqbZBRmsucyxcQNbxBjYNQNQNQNQN +DVQNQNQNQNQNQNQNQNQNQNQNQNQNQNDV +"} diff --git a/maps/cynosure/submaps/7x7/FightClub.dmm b/maps/cynosure/submaps/7x7/FightClub.dmm new file mode 100644 index 0000000000..6c3aa68b65 --- /dev/null +++ b/maps/cynosure/submaps/7x7/FightClub.dmm @@ -0,0 +1,32 @@ +"a" = (/obj/structure/sign/poster/custom{dir = 1; pixel_y = 32; poster_decl = /decl/poster/pol_14},/turf/template_noop,/area/template_noop) +"i" = (/obj/machinery/power/apc{coverlocked = 0; locked = 0; name = "south bump"; operating = 0; pixel_y = -24},/obj/item/weapon/cell/high/empty,/turf/simulated/floor/plating,/area/template_noop) +"m" = (/obj/structure/railing,/obj/effect/decal/cleanable/blood,/turf/simulated/floor/plating,/area/template_noop) +"o" = (/turf/simulated/wall{can_open = 1},/area/template_noop) +"u" = (/obj/structure/railing{dir = 4},/turf/simulated/floor/plating,/area/template_noop) +"y" = (/obj/structure/railing{dir = 1},/turf/simulated/floor/plating,/area/template_noop) +"z" = (/obj/structure/railing{dir = 8},/obj/structure/railing,/turf/simulated/floor/plating,/area/template_noop) +"C" = (/turf/simulated/wall/r_wall,/area/template_noop) +"D" = (/obj/structure/railing{dir = 4},/obj/structure/railing,/turf/simulated/floor/plating,/area/template_noop) +"F" = (/obj/structure/sign/poster{dir = 1; pixel_y = 32; poster_decl = /decl/poster/pol_11},/turf/simulated/floor/plating,/area/template_noop) +"G" = (/obj/random/trash,/turf/simulated/floor/plating,/area/template_noop) +"I" = (/obj/random/crate,/obj/random/contraband,/obj/random/contraband,/obj/random/maintenance/engineering,/obj/random/maintenance/security,/obj/random/maintenance/security,/turf/simulated/floor/plating,/area/template_noop) +"J" = (/obj/structure/sign/poster{dir = 1; pixel_y = 32; poster_decl = /decl/poster/pol_16},/turf/simulated/floor/plating,/area/template_noop) +"L" = (/obj/random/crate,/obj/random/plushie,/obj/random/maintenance/clean,/obj/random/medical,/obj/random/medical/lite,/obj/random/medical/lite,/turf/simulated/floor/plating,/area/template_noop) +"N" = (/turf/simulated/floor/plating,/area/template_noop) +"O" = (/turf/simulated/wall,/area/template_noop) +"P" = (/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/template_noop) +"Q" = (/obj/item/clothing/gloves/boxing/yellow,/obj/item/clothing/gloves/boxing/green,/obj/item/clothing/gloves/boxing/blue,/obj/item/clothing/gloves/boxing,/obj/structure/table/rack,/turf/simulated/floor/plating,/area/template_noop) +"W" = (/obj/structure/railing{dir = 4},/obj/structure/railing{dir = 1},/obj/effect/decal/cleanable/blood,/turf/simulated/floor/plating,/area/template_noop) +"X" = (/obj/random/mouseremains,/turf/simulated/floor/plating,/area/template_noop) +"Y" = (/obj/structure/railing{dir = 8},/obj/structure/railing{dir = 1},/turf/simulated/floor/plating,/area/template_noop) +"Z" = (/obj/structure/railing{dir = 8},/turf/simulated/floor/plating,/area/template_noop) + +(1,1,1) = {" +OCCCCCC +OGJPFNO +ONYyWNO +oNZNuNX +ONzmDNO +OOLIQiO +aOOOOOO +"} diff --git a/maps/cynosure/submaps/8x9/MouseHouse.dmm b/maps/cynosure/submaps/8x9/MouseHouse.dmm new file mode 100644 index 0000000000..f12e330ee4 --- /dev/null +++ b/maps/cynosure/submaps/8x9/MouseHouse.dmm @@ -0,0 +1,45 @@ +"a" = (/turf/simulated/wall,/area/template_noop) +"b" = (/obj/effect/decal/remains/mouse,/turf/simulated/floor/carpet/bcarpet,/area/template_noop) +"c" = (/turf/simulated/wall{can_open = 1},/area/template_noop) +"e" = (/obj/structure/window/basic{dir = 1},/obj/structure/table/standard,/obj/structure/bedsheetbin,/obj/random/plushie,/turf/simulated/floor/wood,/area/template_noop) +"f" = (/obj/structure/dogbed,/obj/effect/decal/remains/mouse,/obj/item/weapon/shreddedp,/turf/simulated/floor/carpet/bcarpet,/area/template_noop) +"k" = (/obj/structure/window/basic{dir = 1},/obj/structure/table/standard,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/powercell,/turf/simulated/floor/wood,/area/template_noop) +"l" = (/obj/random/plushielarge,/turf/simulated/floor/carpet/bcarpet,/area/template_noop) +"m" = (/turf/template_noop,/area/template_noop) +"n" = (/obj/structure/dogbed,/obj/machinery/light/small{dir = 1},/obj/item/weapon/reagent_containers/glass/rag,/mob/living/simple_mob/animal/passive/mouse,/turf/simulated/floor/carpet/bcarpet,/area/template_noop) +"o" = (/obj/structure/window/basic{dir = 1},/obj/structure/table/standard,/obj/random/maintenance,/obj/random/drinksoft,/obj/random/snack,/turf/simulated/floor/wood,/area/template_noop) +"p" = (/obj/machinery/door/window/westright,/turf/simulated/floor/wood,/area/template_noop) +"t" = (/obj/item/trash/cookiesnack,/turf/simulated/floor/carpet/bcarpet,/area/template_noop) +"u" = (/obj/structure/flora/pottedplant/overgrown,/turf/simulated/floor/wood,/area/template_noop) +"v" = (/obj/structure/disposalpipe/trunk,/obj/structure/disposaloutlet{dir = 4},/turf/simulated/floor/carpet/bcarpet,/area/template_noop) +"w" = (/obj/machinery/door/window/northleft,/obj/structure/window/basic{dir = 8},/turf/simulated/floor/wood/broken,/area/template_noop) +"y" = (/turf/simulated/floor/wood/broken,/area/template_noop) +"z" = (/obj/machinery/papershredder,/turf/simulated/floor/wood,/area/template_noop) +"B" = (/obj/structure/dogbed,/obj/random/plushie,/turf/simulated/floor/carpet/bcarpet,/area/template_noop) +"F" = (/obj/item/weapon/reagent_containers/food/snacks/wishsoup{pixel_y = -6},/obj/structure/sink/generic{dir = 4; pixel_x = -12; pixel_y = -4},/turf/simulated/floor/carpet/bcarpet,/area/template_noop) +"G" = (/obj/item/trash/semki,/turf/simulated/floor/carpet/bcarpet,/area/template_noop) +"H" = (/obj/structure/sign/poster{dir = 8; pixel_x = -32; poster_decl = /decl/poster/bay_49},/turf/simulated/floor/wood,/area/template_noop) +"J" = (/obj/item/weapon/beach_ball,/turf/simulated/floor/carpet/bcarpet,/area/template_noop) +"K" = (/obj/structure/bed/chair/office/dark{dir = 1},/turf/simulated/floor/wood,/area/template_noop) +"L" = (/obj/item/trash/candy,/turf/simulated/floor/carpet/bcarpet,/area/template_noop) +"M" = (/obj/structure/window/basic{dir = 1},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/wood,/area/template_noop) +"O" = (/obj/machinery/light/small,/turf/simulated/floor/wood,/area/template_noop) +"R" = (/obj/structure/dogbed,/mob/living/simple_mob/animal/passive/mouse,/obj/structure/sign/poster{dir = 1; pixel_y = 32; poster_decl = /decl/poster/vore_91},/turf/simulated/floor/carpet/bcarpet,/area/template_noop) +"S" = (/obj/item/weapon/shreddedp,/turf/simulated/floor/carpet/bcarpet,/area/template_noop) +"T" = (/obj/structure/window/basic{dir = 1},/obj/structure/table/standard,/obj/item/device/flashlight/lamp/green,/obj/item/weapon/paper_bin{pixel_x = 1; pixel_y = 9},/turf/simulated/floor/wood,/area/template_noop) +"V" = (/obj/structure/dogbed,/mob/living/simple_mob/animal/passive/mouse,/turf/simulated/floor/carpet/bcarpet,/area/template_noop) +"W" = (/obj/structure/loot_pile/maint/trash,/obj/machinery/power/apc{coverlocked = 0; locked = 0; name = "south bump"; operating = 0; pixel_y = -24},/turf/simulated/floor/wood,/area/template_noop) +"X" = (/turf/simulated/floor/carpet/bcarpet,/area/template_noop) +"Z" = (/turf/simulated/floor/wood,/area/template_noop) + +(1,1,1) = {" +aaaaaaaa +aVBnRfVa +aGXXXXXa +aFSXXlXa +avbLJSta +aMTkoewa +aHKyKZpa +azWZOuaa +aaacaaam +"} diff --git a/maps/cynosure/submaps/8x9/ReptileRoom.dmm b/maps/cynosure/submaps/8x9/ReptileRoom.dmm new file mode 100644 index 0000000000..144188a834 --- /dev/null +++ b/maps/cynosure/submaps/8x9/ReptileRoom.dmm @@ -0,0 +1,42 @@ +"a" = (/turf/simulated/wall,/area/template_noop) +"c" = (/turf/simulated/wall{can_open = 1},/area/template_noop) +"h" = (/obj/effect/decal/remains/lizard,/turf/simulated/mineral/floor/ignore_mapgen,/area/template_noop) +"k" = (/obj/structure/window/basic{dir = 1},/obj/structure/table/standard,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/powercell,/turf/simulated/floor/wood,/area/template_noop) +"m" = (/turf/template_noop,/area/template_noop) +"n" = (/obj/structure/dogbed,/obj/structure/sign/poster{dir = 1; pixel_y = 32; poster_decl = /decl/poster/vore_45},/turf/simulated/mineral/floor/ignore_mapgen,/area/template_noop) +"o" = (/obj/structure/window/basic{dir = 1},/obj/structure/table/standard,/obj/random/maintenance,/obj/random/drinksoft,/obj/random/snack,/turf/simulated/floor/wood,/area/template_noop) +"p" = (/obj/structure/dogbed,/mob/living/simple_mob/animal/passive/lizard/large,/turf/simulated/mineral/floor/ignore_mapgen,/area/template_noop) +"u" = (/obj/structure/flora/pottedplant/overgrown,/turf/simulated/floor/wood,/area/template_noop) +"v" = (/obj/machinery/door/window/westright,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/wood,/area/template_noop) +"w" = (/obj/structure/sign/poster{dir = 8; pixel_x = -32; poster_decl = /decl/poster/bay_19},/turf/simulated/floor/wood/broken,/area/template_noop) +"x" = (/obj/machinery/light/small{dir = 4},/turf/simulated/mineral/floor/ignore_mapgen,/area/template_noop) +"z" = (/obj/structure/loot_pile/maint/trash,/turf/simulated/floor/wood,/area/template_noop) +"B" = (/obj/structure/dogbed,/mob/living/simple_mob/animal/passive/lizard,/obj/item/trash/unajerky,/turf/simulated/mineral/floor/ignore_mapgen,/area/template_noop) +"E" = (/obj/structure/window/basic{dir = 1},/obj/structure/table/standard,/obj/structure/bedsheetbin,/obj/random/plushie,/turf/simulated/floor/wood,/area/template_noop) +"G" = (/obj/machinery/light/small{dir = 8},/turf/simulated/mineral/floor/ignore_mapgen,/area/template_noop) +"I" = (/obj/item/weapon/reagent_containers/food/snacks/wishsoup{pixel_y = -6},/obj/structure/sink/generic{dir = 4; pixel_x = -12; pixel_y = -4},/turf/simulated/mineral/floor/ignore_mapgen,/area/template_noop) +"L" = (/obj/item/trash/sosjerky,/turf/simulated/mineral/floor/ignore_mapgen,/area/template_noop) +"M" = (/obj/structure/window/basic{dir = 1},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/wood,/area/template_noop) +"N" = (/obj/structure/bed/chair/office/dark{dir = 1},/turf/simulated/floor/wood,/area/template_noop) +"O" = (/obj/machinery/light/small,/obj/item/stack/emptysandbag,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/wood/broken,/area/template_noop) +"P" = (/obj/machinery/door/window/northleft,/obj/structure/window/basic{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/wood,/area/template_noop) +"R" = (/obj/structure/disposalpipe/trunk,/obj/structure/disposaloutlet{dir = 4},/turf/simulated/mineral/floor/ignore_mapgen,/area/template_noop) +"T" = (/obj/structure/window/basic{dir = 1},/obj/structure/table/standard,/obj/item/device/flashlight/lamp/green,/obj/item/weapon/paper_bin{pixel_x = 1; pixel_y = 9},/turf/simulated/floor/wood,/area/template_noop) +"U" = (/obj/item/toy/plushie/lizard,/turf/simulated/mineral/floor/ignore_mapgen,/area/template_noop) +"V" = (/obj/machinery/space_heater,/turf/simulated/mineral/floor/ignore_mapgen,/area/template_noop) +"W" = (/obj/item/stack/sandbags,/obj/machinery/power/apc{coverlocked = 0; locked = 0; name = "south bump"; operating = 0; pixel_y = -24},/turf/simulated/floor/wood,/area/template_noop) +"X" = (/turf/simulated/mineral/floor/ignore_mapgen,/area/template_noop) +"Y" = (/obj/structure/dogbed,/mob/living/simple_mob/animal/passive/lizard,/obj/machinery/light/small{dir = 1},/turf/simulated/mineral/floor/ignore_mapgen,/area/template_noop) +"Z" = (/turf/simulated/floor/wood,/area/template_noop) + +(1,1,1) = {" +aaaaaaaa +aVBnYpVa +aGXXXLXa +aIXUXXxa +aRXXXhXa +aMTkoEPa +awNZNZva +azWZOuaa +aaacaaam +"} diff --git a/maps/cynosure/submaps/9x8/HotTub.dmm b/maps/cynosure/submaps/9x8/HotTub.dmm new file mode 100644 index 0000000000..95c3a2c957 --- /dev/null +++ b/maps/cynosure/submaps/9x8/HotTub.dmm @@ -0,0 +1,48 @@ +"a" = (/turf/simulated/wall,/area/template_noop) +"b" = (/obj/effect/floor_decal/spline/plain,/turf/simulated/floor/water/pool{name = "hot tub"},/area/template_noop) +"c" = (/obj/effect/floor_decal/spline/plain{dir = 5},/obj/item/weapon/bikehorn/rubberducky,/turf/simulated/floor/water/pool{name = "hot tub"},/area/template_noop) +"d" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/template_noop) +"e" = (/obj/structure/closet/crate/engineering,/obj/item/weapon/tank/oxygen,/obj/item/clothing/mask/gas/clear,/obj/item/weapon/reagent_containers/glass/bucket,/obj/random/medical/lite,/obj/random/maintenance/clean,/obj/random/maintenance,/turf/simulated/floor/tiled/techfloor,/area/template_noop) +"f" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/techfloor,/area/template_noop) +"g" = (/obj/effect/floor_decal/techfloor/orange{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/template_noop) +"i" = (/obj/effect/floor_decal/techfloor/orange{dir = 8},/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/template_noop) +"j" = (/obj/effect/floor_decal/spline/plain{dir = 4},/turf/simulated/floor/water/pool{name = "hot tub"},/area/template_noop) +"l" = (/obj/effect/floor_decal/techfloor/orange,/turf/simulated/floor/tiled/techfloor,/area/template_noop) +"n" = (/obj/structure/table/rack,/obj/item/weapon/towel/random,/obj/item/weapon/towel/random,/turf/simulated/floor/tiled/techfloor,/area/template_noop) +"o" = (/obj/machinery/door/airlock{name = "Construction Area"},/obj/machinery/atmospherics/pipe/cap/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled/steel_grid,/area/template_noop) +"q" = (/obj/machinery/pump,/turf/simulated/floor/tiled/techfloor,/area/template_noop) +"t" = (/obj/effect/floor_decal/techfloor/corner{dir = 6},/obj/effect/floor_decal/techfloor/orange/corner,/obj/structure/sign/poster/custom{dir = 1; pixel_y = 32; poster_decl = /decl/poster/bay_11},/turf/simulated/floor/tiled/techfloor,/area/template_noop) +"u" = (/obj/effect/floor_decal/techfloor/orange{dir = 1},/obj/item/stack/tile/floor/techgrey,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/template_noop) +"w" = (/obj/effect/floor_decal/techfloor/corner{dir = 10},/obj/effect/floor_decal/techfloor/orange/corner{dir = 8},/obj/item/clothing/suit/caution,/turf/simulated/floor/tiled/techfloor,/area/template_noop) +"x" = (/obj/effect/floor_decal/spline/plain{dir = 8},/turf/simulated/floor/water/pool{name = "hot tub"},/area/template_noop) +"B" = (/obj/effect/floor_decal/techfloor/orange{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/template_noop) +"D" = (/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/unary/vent_scrubber,/turf/simulated/floor/tiled/techfloor,/area/template_noop) +"E" = (/turf/simulated/floor/water/pool{name = "hot tub"},/area/template_noop) +"G" = (/obj/machinery/atmospherics/pipe/cap/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/plating,/area/template_noop) +"H" = (/turf/template_noop,/area/template_noop) +"I" = (/obj/effect/floor_decal/spline/plain{dir = 10},/turf/simulated/floor/water/pool{name = "hot tub"},/area/template_noop) +"J" = (/obj/effect/floor_decal/techfloor/corner{dir = 5},/obj/effect/floor_decal/techfloor/orange/corner{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/template_noop) +"L" = (/obj/effect/floor_decal/techfloor/corner{dir = 9},/obj/effect/floor_decal/techfloor/orange/corner{dir = 1},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/template_noop) +"M" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/template_noop) +"N" = (/obj/structure/reagent_dispensers/watertank/high,/turf/simulated/floor/tiled/techfloor,/area/template_noop) +"P" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/template_noop,/area/template_noop) +"Q" = (/obj/effect/floor_decal/spline/plain{dir = 6},/turf/simulated/floor/water/pool{name = "hot tub"},/area/template_noop) +"R" = (/obj/structure/closet,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/maintenance/clean,/turf/simulated/floor/tiled/techfloor,/area/template_noop) +"S" = (/obj/effect/floor_decal/spline/plain{dir = 1},/turf/simulated/floor/water/pool{name = "hot tub"},/area/template_noop) +"T" = (/obj/machinery/atmospherics/unary/vent_pump{dir = 1},/obj/structure/closet/athletic_swimwear,/turf/simulated/floor/tiled/techfloor,/area/template_noop) +"U" = (/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/template_noop) +"V" = (/obj/structure/cable,/obj/machinery/light_switch{dir = 4; pixel_x = -24; pixel_y = 12},/obj/random/trash,/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/effect/floor_decal/steeldecal/steel_decals_central7{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/template_noop) +"W" = (/obj/effect/floor_decal/spline/plain{dir = 9},/turf/simulated/floor/water/pool{name = "hot tub"},/area/template_noop) +"Y" = (/obj/effect/floor_decal/techfloor/orange{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/template_noop) +"Z" = (/obj/effect/floor_decal/techfloor/orange,/obj/machinery/alarm{pixel_y = 24},/turf/simulated/floor/tiled/techfloor,/area/template_noop) + +(1,1,1) = {" +Haaaaaaaa +HaetlZlwa +PMfYWScBa +HaVYxEjia +aaDYIbQBa +aUdJuggLa +aUqNGnRTa +aaaaoaaaa +"} diff --git a/maps/expedition_vr/aerostat/_aerostat.dm b/maps/expedition_vr/aerostat/_aerostat.dm index 460771bf9c..6917ca41c0 100644 --- a/maps/expedition_vr/aerostat/_aerostat.dm +++ b/maps/expedition_vr/aerostat/_aerostat.dm @@ -14,6 +14,11 @@ known = TRUE icon_state = "chlorine" + skybox_icon = 'icons/skybox/virgo2.dmi' + skybox_icon_state = "v2" + skybox_pixel_x = 0 + skybox_pixel_y = 0 + // -- Datums -- // /datum/shuttle/autodock/ferry/aerostat @@ -174,42 +179,50 @@ VIRGO2_TURF_CREATE(/turf/simulated/mineral/floor/ignore_mapgen) base_turf = /turf/simulated/floor/plating/virgo2 dynamic_lighting = TRUE -/area/tether_away/aerostat/surface +/area/offmap/aerostat/surface flags = RAD_SHIELDED ambience = list('sound/ambience/ambimine.ogg', 'sound/ambience/song_game.ogg') base_turf = /turf/simulated/mineral/floor/ignore_mapgen/virgo2 -/area/tether_away/aerostat/surface/explored +/area/offmap/aerostat/surface/explored name = "Away Mission - Aerostat Surface (E)" icon_state = "explored" + dynamic_lighting = FALSE -/area/tether_away/aerostat/surface/unexplored +/area/offmap/aerostat/surface/shuttleconsole + name = "Away Mission - Aerostat Surface Console" + icon_state = "explored" + dynamic_lighting = FALSE + requires_power = FALSE + +/area/offmap/aerostat/surface/unexplored name = "Away Mission - Aerostat Surface (UE)" icon_state = "unexplored" + dynamic_lighting = FALSE VIRGO2_TURF_CREATE(/turf/simulated/floor/hull) -/area/tether_away/aerostat/surface/outpost +/area/offmap/aerostat/surface/outpost requires_power = TRUE dynamic_lighting = TRUE ambience = null -/area/tether_away/aerostat/surface/outpost/backroom +/area/offmap/aerostat/surface/outpost/backroom name = "V4 Outpost - Research Area" -/area/tether_away/aerostat/surface/outpost/hallway +/area/offmap/aerostat/surface/outpost/hallway name = "V4 Outpost - Hallway" -/area/tether_away/aerostat/surface/outpost/cafe +/area/offmap/aerostat/surface/outpost/cafe name = "V4 Outpost - Cafe" -/area/tether_away/aerostat/surface/outpost/park +/area/offmap/aerostat/surface/outpost/park name = "V4 Outpost - Park" -/area/tether_away/aerostat/surface/outpost/officerone +/area/offmap/aerostat/surface/outpost/officerone name = "V4 Outpost - Officer's Quarters 1" -/area/tether_away/aerostat/surface/outpost/officertwo +/area/offmap/aerostat/surface/outpost/officertwo name = "V4 Outpost - Officer's Quarters 2" -/area/tether_away/aerostat/surface/outpost/barracks +/area/offmap/aerostat/surface/outpost/barracks name = "V4 Outpost - Barracks" -/area/tether_away/aerostat/surface/outpost/airlock +/area/offmap/aerostat/surface/outpost/airlock name = "V4 Outpost - Airlock" -/area/tether_away/aerostat/surface/outpost/powerroom +/area/offmap/aerostat/surface/outpost/powerroom name = "V4 Outpost - Power Room" -/area/tether_away/aerostat/surface/outpost/guardpost +/area/offmap/aerostat/surface/outpost/guardpost name = "V4 Outpost - Guard Post" diff --git a/maps/expedition_vr/aerostat/_aerostat_science_outpost.dm b/maps/expedition_vr/aerostat/_aerostat_science_outpost.dm new file mode 100644 index 0000000000..a1f2dbd4cf --- /dev/null +++ b/maps/expedition_vr/aerostat/_aerostat_science_outpost.dm @@ -0,0 +1,364 @@ +#include "../../submaps/pois_vr/aerostat/virgo2.dm" + + +/obj/effect/overmap/visitable/sector/virgo2 + name = "Virgo 2" + desc = "Includes the Remmi Aerostat and associated ground mining complexes." + scanner_desc = @{"[i]Stellar Body[/i]: Virgo 2 +[i]Class[/i]: R-Class Planet +[i]Habitability[/i]: Low (High Temperature, Toxic Atmosphere) +[b]Notice[/b]: Planetary environment not suitable for life. Landing may be hazardous."} + icon_state = "globe" + in_space = 0 + initial_generic_waypoints = list("aerostat_n_w", "aerostat_n_n","aerostat_n_e","aerostat_s_w","aerostat_s_s","aerostat_s_e","aerostat_west","aerostat_east") + extra_z_levels = list(Z_LEVEL_AEROSTAT_SURFACE) + known = TRUE + icon_state = "chlorine" + + skybox_icon = 'icons/skybox/virgo2.dmi' + skybox_icon_state = "v2" + skybox_pixel_x = 0 + skybox_pixel_y = 0 + +/obj/effect/overmap/visitable/sector/virgo2/Initialize() + for(var/obj/effect/overmap/visitable/ship/stellar_delight/sd in world) + docking_codes = sd.docking_codes + . = ..() + +// -- Datums -- // + +/datum/shuttle/autodock/ferry/aerostat + name = "Aerostat Ferry" + shuttle_area = /area/shuttle/aerostat + docking_controller_tag = "aerostat_shuttle_airlock" + warmup_time = 10 //want some warmup time so people can cancel. + landmark_station = "aerostat_east" + landmark_offsite = "aerostat_surface" + +/datum/random_map/noise/ore/virgo2 + descriptor = "virgo 2 ore distribution map" + deep_val = 0.2 + rare_val = 0.1 + +/datum/random_map/noise/ore/virgo2/check_map_sanity() + return 1 //Totally random, but probably beneficial. + +// -- Objs -- // + +/obj/machinery/computer/shuttle_control/aerostat_shuttle + name = "aerostat ferry control console" + shuttle_tag = "Aerostat Ferry" + +/obj/tether_away_spawner/aerostat_inside + name = "Aerostat Indoors Spawner" + faction = "aerostat_inside" + atmos_comp = TRUE + prob_spawn = 100 + prob_fall = 50 + //guard = 20 + mobs_to_pick_from = list( + /mob/living/simple_mob/mechanical/hivebot/ranged_damage/basic = 3, + /mob/living/simple_mob/mechanical/hivebot/ranged_damage/ion = 1, + /mob/living/simple_mob/mechanical/hivebot/ranged_damage/laser = 3, + /mob/living/simple_mob/vore/aggressive/corrupthound = 1 + ) + +/obj/tether_away_spawner/aerostat_surface + name = "Aerostat Surface Spawner" + faction = "aerostat_surface" + atmos_comp = TRUE + prob_spawn = 100 + prob_fall = 50 + //guard = 20 + mobs_to_pick_from = list( + /mob/living/simple_mob/animal/space/jelly = 6, + /mob/living/simple_mob/mechanical/viscerator = 6, + /mob/living/simple_mob/vore/aggressive/corrupthound = 3, + /mob/living/simple_mob/vore/oregrub = 2, + /mob/living/simple_mob/vore/oregrub/lava = 1 + ) + +/obj/structure/old_roboprinter + name = "old drone fabricator" + desc = "Built like a tank, still working after so many years." + icon = 'icons/obj/machines/drone_fab.dmi' + icon_state = "drone_fab_idle" + anchored = TRUE + density = TRUE + +/obj/structure/metal_edge + name = "metal underside" + desc = "A metal wall that extends downwards." + icon = 'icons/turf/cliff.dmi' + icon_state = "metal" + anchored = TRUE + density = FALSE + +// -- Turfs -- // + +//Atmosphere properties +#define VIRGO2_ONE_ATMOSPHERE 312.1 //kPa +#define VIRGO2_AVG_TEMP 612 //kelvin + +#define VIRGO2_PER_N2 0.10 //percent +#define VIRGO2_PER_O2 0.03 +#define VIRGO2_PER_N2O 0.00 //Currently no capacity to 'start' a turf with this. See turf.dm +#define VIRGO2_PER_CO2 0.87 +#define VIRGO2_PER_PHORON 0.00 + +//Math only beyond this point +#define VIRGO2_MOL_PER_TURF (VIRGO2_ONE_ATMOSPHERE*CELL_VOLUME/(VIRGO2_AVG_TEMP*R_IDEAL_GAS_EQUATION)) +#define VIRGO2_MOL_N2 (VIRGO2_MOL_PER_TURF * VIRGO2_PER_N2) +#define VIRGO2_MOL_O2 (VIRGO2_MOL_PER_TURF * VIRGO2_PER_O2) +#define VIRGO2_MOL_N2O (VIRGO2_MOL_PER_TURF * VIRGO2_PER_N2O) +#define VIRGO2_MOL_CO2 (VIRGO2_MOL_PER_TURF * VIRGO2_PER_CO2) +#define VIRGO2_MOL_PHORON (VIRGO2_MOL_PER_TURF * VIRGO2_PER_PHORON) + +//Turfmakers +#define VIRGO2_SET_ATMOS nitrogen=VIRGO2_MOL_N2;oxygen=VIRGO2_MOL_O2;carbon_dioxide=VIRGO2_MOL_CO2;phoron=VIRGO2_MOL_PHORON;temperature=VIRGO2_AVG_TEMP +#define VIRGO2_TURF_CREATE(x) x/virgo2/nitrogen=VIRGO2_MOL_N2;x/virgo2/oxygen=VIRGO2_MOL_O2;x/virgo2/carbon_dioxide=VIRGO2_MOL_CO2;x/virgo2/phoron=VIRGO2_MOL_PHORON;x/virgo2/temperature=VIRGO2_AVG_TEMP;x/virgo2/color="#eacd7c" + +/turf/unsimulated/floor/sky/virgo2_sky + name = "virgo 2 atmosphere" + desc = "Be careful where you step!" + color = "#eacd7c" + VIRGO2_SET_ATMOS + +/turf/unsimulated/floor/sky/virgo2_sky/Initialize() + skyfall_levels = list(z+1) + . = ..() + +/turf/simulated/shuttle/wall/voidcraft/green/virgo2 + VIRGO2_SET_ATMOS + color = "#eacd7c" + +/turf/simulated/shuttle/wall/voidcraft/green/virgo2/nocol + color = null + +VIRGO2_TURF_CREATE(/turf/unsimulated/wall/planetary) + +VIRGO2_TURF_CREATE(/turf/simulated/wall) +VIRGO2_TURF_CREATE(/turf/simulated/floor/plating) +VIRGO2_TURF_CREATE(/turf/simulated/floor/bluegrid) +VIRGO2_TURF_CREATE(/turf/simulated/floor/tiled/techfloor) + +VIRGO2_TURF_CREATE(/turf/simulated/mineral) +/////Copied from Virgo3b's ore generation, since there was concern about not being able to get the ore they need on V2 +/turf/simulated/mineral/virgo2/make_ore(var/rare_ore) + if(mineral) + return + var/mineral_name + if(rare_ore) + mineral_name = pickweight(list( + "marble" = 3, + "uranium" = 10, + "platinum" = 10, + "hematite" = 20, + "carbon" = 20, + "diamond" = 1, + "gold" = 8, + "silver" = 8, + "phoron" = 18, + "lead" = 2, + "verdantium" = 1)) + else + mineral_name = pickweight(list( + "marble" = 2, + "uranium" = 5, + "platinum" = 5, + "hematite" = 35, + "carbon" = 35, + "gold" = 3, + "silver" = 3, + "phoron" = 25, + "lead" = 1)) + + if(mineral_name && (mineral_name in GLOB.ore_data)) + mineral = GLOB.ore_data[mineral_name] + UpdateMineral() + update_icon() + +VIRGO2_TURF_CREATE(/turf/simulated/mineral/ignore_mapgen) +VIRGO2_TURF_CREATE(/turf/simulated/mineral/floor) +VIRGO2_TURF_CREATE(/turf/simulated/mineral/floor/ignore_mapgen) + +// -- Areas -- // + +// The aerostat shuttle +/area/shuttle/aerostat + name = "\improper Aerostat Shuttle" + +//The aerostat itself +/area/offmap/aerostat + name = "\improper Away Mission - Aerostat Outside" + icon_state = "away" + base_turf = /turf/unsimulated/floor/sky/virgo2_sky + requires_power = FALSE + dynamic_lighting = FALSE + +/area/offmap/aerostat/inside + name = "\improper Away Mission - Aerostat Inside" + icon_state = "crew_quarters" + base_turf = /turf/simulated/floor/plating/virgo2 + requires_power = TRUE + dynamic_lighting = TRUE +// forced_ambience = list('sound/ambience/tension/tension.ogg', 'sound/ambience/tension/argitoth.ogg', 'sound/ambience/tension/burning_terror.ogg') + +/area/offmap/aerostat/solars + name = "\improper Away Mission - Aerostat Solars" + icon_state = "crew_quarters" + base_turf = /turf/simulated/floor/plating/virgo2 + dynamic_lighting = FALSE + +/area/offmap/aerostat/surface + flags = RAD_SHIELDED + ambience = list('sound/ambience/ambimine.ogg', 'sound/ambience/song_game.ogg') + base_turf = /turf/simulated/mineral/floor/ignore_mapgen/virgo2 + +/area/offmap/aerostat/surface/explored + name = "Away Mission - Aerostat Surface (E)" + icon_state = "explored" + +/area/offmap/aerostat/surface/unexplored + name = "Away Mission - Aerostat Surface (UE)" + icon_state = "unexplored" + +VIRGO2_TURF_CREATE(/turf/simulated/floor/hull) +/area/offmap/aerostat/surface/outpost + requires_power = TRUE + dynamic_lighting = TRUE + ambience = null + +/area/offmap/aerostat/surface/outpost/backroom + name = "V2 Outpost - Research Area" +/area/offmap/aerostat/surface/outpost/hallway + name = "V2 Outpost - Hallway" +/area/offmap/aerostat/surface/outpost/cafe + name = "V2 Outpost - Cafe" +/area/offmap/aerostat/surface/outpost/park + name = "V2 Outpost - Park" +/area/offmap/aerostat/surface/outpost/officerone + name = "V2 Outpost - Officer's Quarters 1" +/area/offmap/aerostat/surface/outpost/officertwo + name = "V2 Outpost - Officer's Quarters 2" +/area/offmap/aerostat/surface/outpost/barracks + name = "V2 Outpost - Barracks" +/area/offmap/aerostat/surface/outpost/airlock + name = "V2 Outpost - Airlock" +/area/offmap/aerostat/surface/outpost/powerroom + name = "V2 Outpost - Power Room" +/area/offmap/aerostat/surface/outpost/guardpost + name = "V2 Outpost - Guard Post" + +/area/offmap/aerostat/inside + icon = 'icons/turf/areas_vr.dmi' + icon_state = "blublasqu" + +/area/offmap/aerostat/inside/toxins + name = "Toxins Lab" + icon_state = "purwhisqu" + +/area/offmap/aerostat/inside/xenoarch + name = "Xenoarchaeolegy Lab" + icon_state = "yelwhisqu" +/area/offmap/aerostat/inside/xenoarch/chamber + name = "Xenoarchaeolegy Vent Chamber" + +/area/offmap/aerostat/inside/genetics + name = "Genetics Lab" + icon_state = "grewhisqu" + +/area/offmap/aerostat/inside/telesci + name = "Telescience Lab" + icon_state = "bluwhisqu" + +/area/offmap/aerostat/inside/atmos + name = "Atmospherics" + icon_state = "orawhisqu" + +/area/offmap/aerostat/inside/firingrange + name = "Firing Range" + icon_state = "orawhisqu" + +/area/offmap/aerostat/inside/miscstorage + name = "Miscellaneous Storage" + icon_state = "orawhisqu" + +/area/offmap/aerostat/inside/virology + name = "Virology Lab" + icon_state = "yelwhicir" + +/area/offmap/aerostat/inside/south + name = "Miscellaneous Labs A" + icon_state = "blublasqu" + +/area/offmap/aerostat/inside/south/b + name = "Miscellaneous Labs B" + icon_state = "blublasqu" + + +/area/offmap/aerostat/inside/powercontrol + name = "Power Control" + icon_state = "orawhicir" + +/area/offmap/aerostat/inside/westhall + name = "West Hall" + icon_state = "orablacir" +/area/offmap/aerostat/inside/easthall + name = "East Hall" + icon_state = "orablacir" + +/area/offmap/aerostat/inside/northchamb + name = "North Chamber" + icon_state = "orablacir" +/area/offmap/aerostat/inside/southchamb + name = "South Chamber" + icon_state = "orablacir" + +/area/offmap/aerostat/inside/drillstorage + name = "Drill Storage" + icon_state = "orablacir" + +/area/offmap/aerostat/inside/zorrenoffice + name = "Zorren Reception" + icon_state = "orablacir" + +/area/offmap/aerostat/inside/lobby + name = "Lobby" + icon_state = "orablacir" +/area/offmap/aerostat/inside/misclab + name = "Miscellaneous Lab" + icon_state = "orablacir" + +/area/offmap/aerostat/inside/airlock + name = "Airlock" + icon_state = "redwhicir" +/area/offmap/aerostat/inside/airlock/north + name = "North Airlock" +/area/offmap/aerostat/inside/airlock/east + name = "East Airlock" +/area/offmap/aerostat/inside/airlock/west + name = "West Airlock" +/area/offmap/aerostat/inside/airlock/south + name = "South Airlock" + +/area/offmap/aerostat/inside/arm/ne + name = "North-East Solar Arm" +/area/offmap/aerostat/inside/arm/nw + name = "North-West Solar Arm" +/area/offmap/aerostat/inside/arm/se + name = "South-East Solar Arm" +/area/offmap/aerostat/inside/arm/sw + name = "South-West Solar Arm" + +/area/offmap/aerostat/glassgetsitsownarea + name = "Aerostat Glass" + icon_state = "crew_quarters" + base_turf = /turf/unsimulated/floor/sky/virgo2_sky + dynamic_lighting = FALSE + +/area/offmap/aerostat/surface/shuttleconsole + name = "Away Mission - Aerostat Surface Console" + icon_state = "explored" + dynamic_lighting = FALSE + requires_power = FALSE diff --git a/maps/expedition_vr/aerostat/aerostat_science_outpost.dmm b/maps/expedition_vr/aerostat/aerostat_science_outpost.dmm new file mode 100644 index 0000000000..49d0f2963b --- /dev/null +++ b/maps/expedition_vr/aerostat/aerostat_science_outpost.dmm @@ -0,0 +1,33097 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/shuttle/wall/voidcraft/green/virgo2/nocol, +/area/offmap/aerostat/inside/airlock/east) +"ab" = ( +/obj/structure/cable/heavyduty{ + icon_state = "2-8" + }, +/obj/effect/floor_decal/rust, +/obj/machinery/atmospherics/pipe/simple/hidden/blue{ + dir = 10 + }, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + cycle_to_external_air = 1; + id_tag = "aerostat_northwest_airlock"; + name = "Aerostat Airlock Controller"; + pixel_y = 25 + }, +/turf/simulated/floor, +/area/offmap/aerostat/inside/arm/nw) +"ac" = ( +/turf/simulated/shuttle/wall/voidcraft/green/virgo2, +/area/offmap/aerostat/inside/arm/nw) +"ae" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 9 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/solars) +"af" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/obj/machinery/power/solar, +/obj/effect/floor_decal/rust, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/solars) +"ah" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 28 + }, +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 20 + }, +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 36 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/firingrange) +"aj" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + id_tag = "anomaly_airlock_pump"; + name = "Anomaly Airlock Pump" + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/machinery/airlock_sensor{ + pixel_y = 25 + }, +/turf/simulated/floor/tiled/dark, +/area/offmap/aerostat/inside/xenoarch) +"ak" = ( +/obj/structure/cable/heavyduty{ + 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/techfloor, +/area/offmap/aerostat/inside/easthall) +"al" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/camera/network/research_outpost{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/airlock/south) +"an" = ( +/obj/machinery/atmospherics/pipe/simple/insulated{ + dir = 5 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/inside/toxins) +"ap" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/powered/pump/huge/stationary/purge, +/turf/simulated/floor/reinforced/airless, +/area/offmap/aerostat/inside/toxins) +"aq" = ( +/obj/machinery/power/solar, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/obj/effect/floor_decal/rust, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/solars) +"ar" = ( +/obj/effect/floor_decal/industrial/danger, +/obj/machinery/atmospherics/pipe/simple/insulated{ + dir = 6 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/inside/toxins) +"as" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 5 + }, +/obj/effect/floor_decal/rust, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/solars) +"at" = ( +/obj/structure/table/reinforced, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/firingrange) +"au" = ( +/obj/machinery/button/remote/blast_door{ + id = "anomaly_testing_v"; + name = "Panic Chamber Vent"; + pixel_x = 6; + pixel_y = 26 + }, +/turf/simulated/floor/tiled/dark, +/area/offmap/aerostat/inside/xenoarch) +"av" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 9 + }, +/obj/effect/floor_decal/rust, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/solars) +"aw" = ( +/turf/unsimulated/floor/sky/virgo2_sky, +/area/offmap/aerostat) +"ax" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/obj/machinery/power/solar, +/obj/effect/floor_decal/rust, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/solars) +"ay" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/obj/effect/floor_decal/rust, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/solars) +"az" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4 + }, +/obj/effect/map_helper/airlock/atmos/pump_out_internal, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/offmap/aerostat/inside/xenoarch) +"aA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/genetics) +"aB" = ( +/obj/effect/floor_decal/rust, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 5 + }, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/solars) +"aD" = ( +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/solars) +"aE" = ( +/obj/effect/floor_decal/industrial/warning/dust, +/obj/effect/floor_decal/rust, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4 + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/turf/simulated/floor, +/area/offmap/aerostat/inside/airlock/west) +"aF" = ( +/obj/machinery/atmospherics/unary/freezer{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/northchamb) +"aG" = ( +/obj/machinery/power/solar, +/obj/effect/floor_decal/rust, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/solars) +"aI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/blue, +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"aJ" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/machinery/telecomms/relay/preset/station, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/bluegrid, +/area/offmap/aerostat/inside/powercontrol) +"aK" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/bluegrid, +/area/offmap/aerostat/inside/powercontrol) +"aM" = ( +/obj/effect/floor_decal/rust, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/solars) +"aN" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/airlock_sensor/airlock_interior{ + master_tag = "aerostat_n_n_airlock"; + pixel_x = 24; + pixel_y = 24; + tag = "aerostat_n_n_sensint" + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/airlock/north) +"aO" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/sign/directions/science/toxins{ + dir = 1; + pixel_y = 32 + }, +/turf/simulated/floor/bluegrid, +/area/offmap/aerostat/inside/powercontrol) +"aP" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 4; + pixel_x = 28 + }, +/obj/machinery/alarm{ + pixel_y = 26 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/bluegrid, +/area/offmap/aerostat/inside/powercontrol) +"aQ" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/simulated/floor/bluegrid, +/area/offmap/aerostat/inside/powercontrol) +"aR" = ( +/obj/machinery/light/small, +/turf/simulated/floor/bluegrid, +/area/offmap/aerostat/inside/powercontrol) +"aS" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 4 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/solars) +"aT" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 8 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/solars) +"aU" = ( +/obj/machinery/power/solar, +/obj/effect/floor_decal/rust, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/solars) +"aW" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-8" + }, +/obj/effect/floor_decal/rust, +/obj/effect/floor_decal/rust, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/turf/simulated/floor, +/area/offmap/aerostat/inside/arm/sw) +"aX" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-4" + }, +/obj/effect/floor_decal/rust, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/turf/simulated/floor, +/area/offmap/aerostat/inside/arm/se) +"aY" = ( +/turf/simulated/shuttle/wall/voidcraft/green/virgo2, +/area/offmap/aerostat/inside/arm/se) +"aZ" = ( +/obj/effect/floor_decal/rust, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/solars) +"ba" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/effect/floor_decal/rust, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/solars) +"bb" = ( +/obj/effect/floor_decal/rust, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 9 + }, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/solars) +"bd" = ( +/turf/simulated/shuttle/wall, +/area/shuttle/aerostat) +"bf" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/inside/arm/nw) +"bg" = ( +/turf/simulated/shuttle/floor/yellow, +/area/shuttle/aerostat) +"bh" = ( +/obj/machinery/door/airlock/glass_external{ + locked = 1 + }, +/obj/effect/map_helper/airlock/door/ext_door, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/shuttle/aerostat) +"bi" = ( +/obj/machinery/door/airlock/external{ + frequency = 1380; + id_tag = "aerostat_n_n_exterior"; + locked = 1 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/airlock/north) +"bj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/sign/painting/public{ + pixel_x = 30 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/northchamb) +"bk" = ( +/obj/machinery/door/airlock/external{ + frequency = 1380; + id_tag = "aerostat_n_n_exterior"; + locked = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/airlock/north) +"bl" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + frequency = 1380; + id_tag = "aerostat_n_n_pump" + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + dir = 4; + frequency = 1380; + id_tag = "aerostat_n_n_airlock"; + pixel_x = -25; + tag_airpump = "aerostat_n_n_pump"; + tag_chamber_sensor = "aerostat_n_n_sensor"; + tag_exterior_door = "aerostat_n_n_exterior"; + tag_exterior_sensor = "aerostat_n_n_sensext"; + tag_interior_door = "aerostat_n_n_interior"; + tag_interior_sensor = "aerostat_n_n_sensint" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/offmap/aerostat/inside/airlock/north) +"bn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + frequency = 1380; + id_tag = "aerostat_n_w_interior"; + locked = 1 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/airlock/north) +"bo" = ( +/obj/structure/grille, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/inside/arm/nw) +"bp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + frequency = 1380; + id_tag = "aerostat_n_e_interior"; + locked = 1 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/airlock/north) +"bq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/vending/fitness{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/northchamb) +"br" = ( +/obj/structure/bed/chair/shuttle{ + dir = 4 + }, +/turf/simulated/shuttle/floor/yellow, +/area/shuttle/aerostat) +"bs" = ( +/obj/effect/floor_decal/rust, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/obj/machinery/power/solar, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/solars) +"bt" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/effect/floor_decal/rust, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/solars) +"bu" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 4 + }, +/obj/effect/floor_decal/rust, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/solars) +"bw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 10 + }, +/obj/machinery/meter, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/atmos) +"bz" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/blue, +/obj/machinery/door/airlock/maintenance/rnd{ + req_one_access = null + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/toxins) +"bA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 5 + }, +/obj/machinery/light/floortube{ + dir = 8; + pixel_x = -6 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/atmos) +"bC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/wall, +/area/offmap/aerostat/inside/xenoarch) +"bE" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/turf/simulated/wall/r_wall, +/area/offmap/aerostat/inside/xenoarch) +"bF" = ( +/obj/structure/bed/chair/comfy/black, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/southchamb) +"bG" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/empty, +/obj/machinery/door/window/brigdoor/eastleft{ + dir = 2; + req_access = list(7) + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"bI" = ( +/obj/structure/shuttle/window, +/obj/structure/grille, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor, +/area/shuttle/aerostat) +"bJ" = ( +/obj/machinery/button/remote/blast_door{ + id = "burn_chamber_v"; + name = "Burn Chamber Vent"; + pixel_x = -26; + pixel_y = 6 + }, +/obj/machinery/button/remote/blast_door{ + id = "burn_chamber_p"; + name = "Burn Chamber Purge"; + pixel_x = -26; + pixel_y = -8 + }, +/obj/item/weapon/stool/padded{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"bK" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/atmos) +"bL" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/black{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/atmos) +"bM" = ( +/obj/machinery/airlock_sensor{ + id_tag = "anomaly_chamber_airlock_sensor"; + pixel_x = -25; + pixel_y = -10 + }, +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + cycle_to_external_air = 1; + id_tag = "aerostat_anomaly_airlock"; + name = "Aerostat Airlock Controller"; + pixel_x = -25 + }, +/turf/simulated/floor/tiled/dark, +/area/offmap/aerostat/inside/xenoarch) +"bN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/northchamb) +"bP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/red, +/obj/machinery/meter, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/atmos) +"bQ" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/red, +/obj/machinery/meter, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"bR" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"bS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/dark, +/area/offmap/aerostat/inside/xenoarch) +"bU" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/offmap/aerostat/inside/lobby) +"bV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/wall, +/area/offmap/aerostat/inside/xenoarch) +"bW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 9 + }, +/turf/simulated/wall, +/area/offmap/aerostat/inside/toxins) +"bY" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/blue{ + dir = 8 + }, +/obj/machinery/meter, +/turf/simulated/floor/plating, +/area/offmap/aerostat/inside/toxins) +"bZ" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/bluegrid, +/area/offmap/aerostat/inside/powercontrol) +"ca" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/red{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/atmos) +"ce" = ( +/turf/simulated/shuttle/wall/voidcraft/hard_corner{ + stripe_color = "#00FF00" + }, +/area/offmap/aerostat/inside/toxins) +"cf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/offmap/aerostat/inside/drillstorage) +"ch" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/northchamb) +"ci" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/northchamb) +"cj" = ( +/obj/structure/closet/emcloset, +/turf/simulated/shuttle/floor/yellow, +/area/shuttle/aerostat) +"ck" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/westhall) +"cl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/turf/simulated/shuttle/floor/yellow, +/area/shuttle/aerostat) +"cm" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/easthall) +"cn" = ( +/turf/simulated/shuttle/wall/voidcraft/green, +/area/offmap/aerostat/inside/airlock/north) +"co" = ( +/obj/structure/cable/heavyduty{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/westhall) +"cp" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/multi_tile/metal{ + dir = 1 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/powercontrol) +"cq" = ( +/obj/structure/cable/heavyduty{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/easthall) +"cr" = ( +/obj/machinery/door/airlock/glass_external{ + frequency = null; + icon_state = "door_locked"; + id_tag = "anomaly_testing_exterior"; + locked = 1; + name = "Anomaly Secure Testing"; + req_access = list(65); + req_one_access = list(47) + }, +/obj/effect/map_helper/airlock/door/ext_door, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/xenoarch) +"cs" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/miscstorage) +"ct" = ( +/obj/machinery/door/airlock/external{ + frequency = 1380; + id_tag = "aerostat_s_w_exterior"; + locked = 1 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/airlock/south) +"cu" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/airlock_sensor/airlock_interior{ + dir = 1; + master_tag = "aerostat_s_s_airlock"; + pixel_x = -24; + pixel_y = -24; + tag = "aerostat_s_s_sensint" + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/airlock/south) +"cv" = ( +/obj/effect/shuttle_landmark{ + base_area = /area/offmap/aerostat; + base_turf = /turf/unsimulated/floor/sky/virgo2_sky; + docking_controller = "aerostat_west_airlock"; + landmark_tag = "aerostat_west"; + name = "Virgo 2 Aerostat (W)" + }, +/turf/unsimulated/floor/sky/virgo2_sky, +/area/offmap/aerostat) +"cw" = ( +/obj/effect/floor_decal/rust, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ + dir = 8 + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor, +/area/offmap/aerostat/inside/arm/nw) +"cx" = ( +/obj/effect/floor_decal/rust, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/solars) +"cy" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/blue{ + dir = 10 + }, +/obj/effect/floor_decal/rust, +/obj/machinery/airlock_sensor/airlock_exterior{ + dir = 8; + pixel_x = 32 + }, +/obj/effect/map_helper/airlock/sensor/ext_sensor, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/inside/arm/nw) +"cz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/closet/wardrobe/genetics_white, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/genetics) +"cA" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/green, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/atmos) +"cB" = ( +/obj/machinery/atmospherics/pipe/tank/air{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/offmap/aerostat/inside/atmos) +"cC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 5 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/atmos) +"cD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/virology) +"cE" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/black, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/atmos) +"cF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 6 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/atmos) +"cG" = ( +/obj/machinery/light/floortube{ + dir = 4; + pixel_x = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"cI" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/obj/machinery/door/airlock/external{ + frequency = null; + id_tag = null; + locked = 1 + }, +/obj/effect/map_helper/airlock/door/int_door, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/airlock/west) +"cJ" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8 + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/effect/floor_decal/rust, +/obj/machinery/power/apc{ + dir = 4; + pixel_x = 28 + }, +/turf/simulated/floor, +/area/offmap/aerostat/inside/arm/sw) +"cM" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/lockbox/vials, +/obj/item/weapon/storage/fancy/vials, +/obj/item/weapon/reagent_containers/syringe/antiviral, +/obj/item/weapon/reagent_containers/syringe/antiviral, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/virology) +"cO" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/inside/airlock/north) +"cP" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/simulated/floor/bluegrid, +/area/offmap/aerostat/inside/powercontrol) +"cQ" = ( +/obj/structure/dispenser{ + phorontanks = 0 + }, +/turf/simulated/floor/tiled, +/area/offmap/aerostat/inside/drillstorage) +"cR" = ( +/obj/structure/bed/chair/sofa/purp/left, +/obj/structure/sign/painting/public{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled/dark, +/area/offmap/aerostat/inside/lobby) +"cT" = ( +/obj/machinery/smartfridge/chemistry/virology, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/virology) +"cU" = ( +/turf/simulated/shuttle/wall/voidcraft/green/virgo2, +/area/offmap/aerostat/inside/arm/sw) +"cV" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/offmap/aerostat/inside/lobby) +"cW" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/machinery/airlock_sensor/airlock_exterior{ + dir = 4; + pixel_x = -32 + }, +/obj/effect/map_helper/airlock/sensor/ext_sensor, +/turf/simulated/floor/tiled/dark, +/area/offmap/aerostat/inside/xenoarch/chamber) +"cX" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/northchamb) +"cZ" = ( +/obj/effect/blocker, +/turf/unsimulated/floor/sky/virgo2_sky, +/area/offmap/aerostat) +"da" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1; + id_tag = "anomaly_airlock_pump"; + name = "Anomaly Airlock Pump" + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/turf/simulated/floor/tiled/dark, +/area/offmap/aerostat/inside/xenoarch) +"db" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 8 + }, +/obj/effect/floor_decal/rust, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/solars) +"de" = ( +/turf/simulated/shuttle/wall/voidcraft/green, +/area/offmap/aerostat/inside/northchamb) +"df" = ( +/obj/machinery/power/tracker, +/obj/effect/floor_decal/rust, +/obj/structure/cable/yellow, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/solars) +"dg" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 4 + }, +/obj/effect/floor_decal/rust, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/solars) +"dh" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/simulated/floor/bluegrid, +/area/offmap/aerostat/inside/powercontrol) +"di" = ( +/obj/structure/cable/heavyduty{ + icon_state = "0-4" + }, +/obj/effect/floor_decal/rust, +/obj/structure/cable/yellow, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/solars) +"dj" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/solars) +"dk" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 4 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/solars) +"dl" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 8 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/solars) +"dm" = ( +/obj/structure/cable/heavyduty{ + icon_state = "0-8" + }, +/obj/effect/floor_decal/rust, +/obj/structure/cable/yellow, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/solars) +"dn" = ( +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable/heavyduty{ + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/bluegrid, +/area/offmap/aerostat/inside/powercontrol) +"do" = ( +/obj/effect/floor_decal/rust, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 8 + }, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/solars) +"dp" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 4 + }, +/obj/effect/floor_decal/rust, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/solars) +"dq" = ( +/obj/effect/floor_decal/rust, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/solars) +"dr" = ( +/obj/structure/cable/heavyduty{ + icon_state = "2-4" + }, +/obj/effect/floor_decal/rust, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + cycle_to_external_air = 1; + id_tag = "aerostat_northeast_airlock"; + name = "Aerostat Airlock Controller"; + pixel_y = 25 + }, +/turf/simulated/floor, +/area/offmap/aerostat/inside/arm/ne) +"ds" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/rust, +/obj/machinery/atmospherics/pipe/simple/hidden/blue{ + dir = 4 + }, +/obj/machinery/door/airlock/external, +/obj/effect/map_helper/airlock/door/ext_door, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/arm/nw) +"dt" = ( +/obj/effect/floor_decal/rust, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/solars) +"du" = ( +/obj/effect/floor_decal/rust, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/solars) +"dv" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/table/steel_reinforced, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/zorrenoffice) +"dw" = ( +/obj/structure/metal_edge, +/turf/unsimulated/floor/sky/virgo2_sky, +/area/offmap/aerostat/solars) +"dx" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 8 + }, +/obj/effect/floor_decal/rust, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/solars) +"dy" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/rust, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/turf/simulated/floor, +/area/offmap/aerostat/inside/arm/ne) +"dz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/window/basic, +/obj/structure/window/basic{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/heat_exchanger, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/toxins) +"dA" = ( +/obj/effect/floor_decal/rust, +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/solars) +"dB" = ( +/obj/effect/floor_decal/rust, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/solars) +"dC" = ( +/obj/effect/floor_decal/rust, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 4 + }, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/solars) +"dD" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 4 + }, +/obj/effect/floor_decal/rust, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/solars) +"dE" = ( +/obj/effect/floor_decal/rust, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/solars) +"dF" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 10 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/solars) +"dG" = ( +/obj/effect/floor_decal/industrial/warning/dust, +/obj/machinery/power/solar, +/obj/effect/floor_decal/rust, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/solars) +"dH" = ( +/obj/structure/table/standard, +/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 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/miscstorage) +"dI" = ( +/obj/machinery/power/solar, +/obj/effect/floor_decal/industrial/warning/dust, +/obj/effect/floor_decal/rust, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/solars) +"dJ" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 6 + }, +/obj/effect/floor_decal/rust, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/solars) +"dK" = ( +/obj/structure/cable, +/obj/machinery/power/smes/buildable{ + charge = 2e+006; + input_attempt = 1; + input_level = 100000; + output_level = 200000 + }, +/turf/simulated/floor/bluegrid, +/area/offmap/aerostat/inside/powercontrol) +"dL" = ( +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "0-4" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/bluegrid, +/area/offmap/aerostat/inside/powercontrol) +"dM" = ( +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/power/smes/buildable{ + charge = 2e+006; + input_attempt = 1; + input_level = 100000; + output_level = 200000 + }, +/turf/simulated/floor/bluegrid, +/area/offmap/aerostat/inside/powercontrol) +"dN" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/simulated/floor/bluegrid, +/area/offmap/aerostat/inside/powercontrol) +"dO" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/simulated/floor/bluegrid, +/area/offmap/aerostat/inside/powercontrol) +"dP" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/obj/effect/floor_decal/rust, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4; + frequency = 1452 + }, +/obj/effect/map_helper/airlock/atmos/pump_out_internal, +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/obj/machinery/airlock_sensor{ + pixel_y = 25 + }, +/turf/simulated/floor, +/area/offmap/aerostat/inside/airlock/east) +"dQ" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 10 + }, +/obj/effect/floor_decal/rust, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/solars) +"dR" = ( +/obj/effect/floor_decal/industrial/warning/dust, +/obj/machinery/power/solar, +/obj/effect/floor_decal/rust, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/solars) +"dS" = ( +/obj/effect/floor_decal/industrial/warning/dust, +/obj/effect/floor_decal/rust, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/solars) +"dT" = ( +/obj/effect/floor_decal/rust, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 6 + }, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/solars) +"dU" = ( +/obj/effect/floor_decal/rust, +/obj/random/powercell, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/solars) +"dV" = ( +/obj/machinery/access_button{ + frequency = 1089; + master_tag = "aerostat_doors"; + name = "Aerostat Shuttle Dock"; + pixel_x = 25; + pixel_y = -5 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/easthall) +"dW" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/shuttle/wall/voidcraft/green/virgo2, +/area/offmap/aerostat/inside/arm/nw) +"dX" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/rust, +/obj/machinery/atmospherics/pipe/simple/hidden/blue, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 6 + }, +/turf/simulated/floor, +/area/offmap/aerostat/inside/arm/nw) +"dY" = ( +/turf/simulated/shuttle/wall/voidcraft/green, +/area/offmap/aerostat/inside/atmos) +"dZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/offmap/aerostat/inside/xenoarch) +"eb" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/obj/effect/floor_decal/rust, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1452 + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + cycle_to_external_air = 1; + frequency = 1380; + id_tag = "aerostat_east_airlock"; + pixel_y = 29 + }, +/turf/simulated/floor, +/area/offmap/aerostat/inside/airlock/east) +"ec" = ( +/obj/effect/floor_decal/industrial/warning/dust, +/obj/effect/floor_decal/rust, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1452 + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/machinery/light/small, +/turf/simulated/floor, +/area/offmap/aerostat/inside/airlock/east) +"ed" = ( +/obj/machinery/light, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/mining/brace, +/turf/simulated/floor/tiled, +/area/offmap/aerostat/inside/drillstorage) +"ef" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/offmap/aerostat/inside/misclab) +"ei" = ( +/obj/effect/floor_decal/rust, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/solars) +"ek" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 1 + }, +/turf/simulated/shuttle/wall/voidcraft/green, +/area/offmap/aerostat/inside/easthall) +"el" = ( +/obj/machinery/atmospherics/pipe/tank/phoron{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/atmos) +"er" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/southchamb) +"ev" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/box/monkeycubes, +/obj/item/weapon/storage/box/monkeycubes/wolpincubes, +/obj/machinery/light, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/virology) +"ey" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/offmap/aerostat/inside/misclab) +"ez" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/wall, +/area/offmap/aerostat/inside/xenoarch) +"eA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/light/floortube{ + dir = 4; + pixel_x = 5 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/firingrange) +"eE" = ( +/obj/structure/bed/chair/sofa/purp/right, +/obj/structure/sign/painting/public{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled/dark, +/area/offmap/aerostat/inside/lobby) +"eG" = ( +/obj/machinery/door/airlock/glass_external{ + frequency = null; + icon_state = "door_locked"; + id_tag = "anomaly_testing_interior"; + locked = 1; + name = "Anomaly Secure Testing"; + req_access = list(65); + req_one_access = list(47) + }, +/obj/effect/map_helper/airlock/door/int_door, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/xenoarch) +"eJ" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/southchamb) +"eL" = ( +/obj/effect/floor_decal/rust, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/power/solar, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/solars) +"eM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/atmos) +"eN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/wall, +/area/offmap/aerostat/inside/firingrange) +"eO" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/red{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/atmos) +"eP" = ( +/obj/machinery/camera/network/research_outpost{ + dir = 4 + }, +/obj/structure/bed/chair/sofa/purp/left{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/offmap/aerostat/inside/lobby) +"eR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_research{ + name = "Xenoarchaeology Storage" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/xenoarch) +"eT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/wall, +/area/offmap/aerostat/inside/firingrange) +"eU" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/xenoarch) +"eV" = ( +/obj/structure/sign/painting/public{ + pixel_x = -30 + }, +/obj/structure/bed/chair/sofa/purp/right{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/offmap/aerostat/inside/lobby) +"eW" = ( +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/southchamb) +"eX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/atmos) +"eZ" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/xenoarch) +"fa" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1 + }, +/obj/effect/map_helper/airlock/atmos/pump_out_external, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/inside/airlock/east) +"fb" = ( +/turf/simulated/shuttle/wall/voidcraft/green/virgo2, +/area/offmap/aerostat/inside/arm/ne) +"fc" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/rust, +/obj/effect/decal/cleanable/blood/oil, +/turf/simulated/floor, +/area/offmap/aerostat/inside/arm/ne) +"fe" = ( +/obj/effect/decal/cleanable/cobweb2, +/obj/effect/floor_decal/rust, +/obj/machinery/power/solar_control, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4; + frequency = 1380; + id_tag = null + }, +/obj/effect/map_helper/airlock/atmos/pump_out_internal, +/turf/simulated/floor, +/area/offmap/aerostat/inside/arm/nw) +"ff" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/atmos) +"fg" = ( +/obj/effect/floor_decal/rust, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 6 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/solars) +"fh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/wall, +/area/offmap/aerostat/inside/xenoarch) +"fi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/simulated/wall, +/area/offmap/aerostat/inside/xenoarch) +"fj" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/obj/machinery/light/floortube{ + dir = 4; + pixel_x = 5 + }, +/obj/machinery/airlock_sensor/airlock_interior{ + dir = 8; + master_tag = "aerostat_n_e_airlock"; + pixel_x = 32; + tag = "aerostat_n_e_sensint" + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/airlock/north) +"fn" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/wall, +/area/offmap/aerostat/inside/xenoarch) +"fo" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/offmap/aerostat/inside/misclab) +"fp" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/easthall) +"fr" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/offmap/aerostat/inside/drillstorage) +"ft" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/vending/sovietsoda{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/southchamb) +"fw" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/southchamb) +"fx" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/firingrange) +"fC" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"fD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/green, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/atmos) +"fH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 4 + }, +/obj/machinery/power/apc{ + dir = 1; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/atmos) +"fI" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/machinery/light/floortube{ + pixel_y = -5 + }, +/obj/machinery/camera/network/research_outpost{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/easthall) +"fJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/table/reinforced, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/firingrange) +"fK" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/powercontrol) +"fL" = ( +/obj/effect/floor_decal/rust, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 10 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/solars) +"fM" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8 + }, +/obj/effect/map_helper/airlock/atmos/pump_out_external, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/inside/arm/nw) +"fP" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/southchamb) +"fQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/wall, +/area/offmap/aerostat/inside/toxins) +"fR" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/portable_atmospherics/powered/scrubber, +/turf/simulated/floor/plating, +/area/offmap/aerostat/inside/toxins) +"fS" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/inside/airlock/south) +"fT" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/chem_master, +/obj/machinery/camera/network/research_outpost{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/xenoarch) +"fV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/wall, +/area/offmap/aerostat/inside/atmos) +"fW" = ( +/obj/structure/grille, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/inside/airlock/north) +"fX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/virology) +"fY" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/obj/effect/floor_decal/rust, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor, +/area/offmap/aerostat/inside/arm/ne) +"ga" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/xenoarch) +"gb" = ( +/obj/machinery/computer/centrifuge, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/virology) +"gd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/southchamb) +"ge" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/northchamb) +"gf" = ( +/turf/simulated/shuttle/wall/voidcraft/hard_corner{ + stripe_color = "#00FF00" + }, +/area/offmap/aerostat/inside/westhall) +"gh" = ( +/obj/machinery/atmospherics/binary/pump/on{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/xenoarch) +"gi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/offmap/aerostat/inside/drillstorage) +"gk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/northchamb) +"gl" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/simulated/wall, +/area/offmap/aerostat/inside/miscstorage) +"gs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"gt" = ( +/obj/effect/floor_decal/rust, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 5 + }, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/solars) +"gv" = ( +/obj/machinery/door/airlock/external, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/northchamb) +"gw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/rust, +/obj/structure/sign/poster{ + dir = 8; + pixel_x = -32 + }, +/turf/simulated/floor, +/area/offmap/aerostat/inside/arm/ne) +"gx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/offmap/aerostat/inside/xenoarch) +"gy" = ( +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/turf/simulated/floor/tiled, +/area/offmap/aerostat/inside/drillstorage) +"gz" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_research{ + name = "Telescience" + }, +/obj/machinery/door/blast/regular/open{ + id = telesci_blast; + name = "Blast Door" + }, +/turf/simulated/floor/reinforced, +/area/offmap/aerostat/inside/telesci) +"gC" = ( +/obj/machinery/alarm{ + pixel_y = 26 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/southchamb) +"gD" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -28 + }, +/obj/effect/floor_decal/rust, +/obj/effect/floor_decal/industrial/outline/red, +/obj/structure/anomaly_container, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor, +/area/offmap/aerostat/inside/xenoarch) +"gG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/air, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/atmos) +"gL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/heavyduty{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"gN" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/inside/airlock/north) +"gO" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/offmap/aerostat/inside/lobby) +"gP" = ( +/obj/machinery/light/floortube{ + dir = 4; + pixel_x = 5 + }, +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/southchamb) +"gQ" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/machinery/alarm{ + pixel_y = 26 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/westhall) +"gR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/wall, +/area/offmap/aerostat/inside/xenoarch) +"gS" = ( +/obj/machinery/door/airlock/external{ + frequency = 1380; + id_tag = "aerostat_s_e_exterior"; + locked = 1 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/airlock/south) +"gT" = ( +/obj/effect/floor_decal/rust, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/solars) +"gU" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/regular/open{ + id = telesci_blast; + name = "Blast Door" + }, +/turf/simulated/floor/reinforced, +/area/offmap/aerostat/inside/telesci) +"gV" = ( +/obj/machinery/atmospherics/omni/atmos_filter{ + name = "Phoron Filter"; + tag_east = 6; + tag_north = 1; + tag_south = 2 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/atmos) +"gX" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/red{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/atmos) +"gZ" = ( +/obj/machinery/door/airlock/glass_research{ + req_one_access = null + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/zorrenoffice) +"ha" = ( +/obj/structure/bed/chair/shuttle{ + dir = 8 + }, +/turf/simulated/shuttle/floor/yellow, +/area/shuttle/aerostat) +"he" = ( +/obj/effect/floor_decal/rust, +/obj/machinery/atmospherics/unary/vent_pump/high_volume, +/obj/effect/map_helper/airlock/atmos/pump_out_external, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/inside/airlock/west) +"hf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/camera/network/research_outpost{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/airlock/north) +"hh" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/offmap/aerostat/inside/lobby) +"hj" = ( +/obj/machinery/light/floortube{ + dir = 4; + pixel_x = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/offmap/aerostat/inside/lobby) +"hk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/atmos) +"hn" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/inside/atmos) +"hp" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/northchamb) +"hq" = ( +/obj/structure/cable/heavyduty{ + icon_state = "0-8" + }, +/obj/structure/cable/heavyduty{ + icon_state = "0-4" + }, +/obj/structure/cable/heavyduty{ + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/bluegrid, +/area/offmap/aerostat/inside/powercontrol) +"hs" = ( +/obj/structure/sign/poster{ + dir = 4; + pixel_x = 32 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"hu" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"hv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled, +/area/offmap/aerostat/inside/drillstorage) +"hw" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/reagent_containers/dropper, +/obj/item/weapon/reagent_containers/glass/beaker, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/virology) +"hA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/closet/crate, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/obj/random/tool, +/turf/simulated/floor, +/area/offmap/aerostat/inside/arm/ne) +"hC" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/rust, +/obj/machinery/atmospherics/pipe/simple/hidden/blue, +/obj/machinery/airlock_sensor{ + dir = 8; + pixel_x = 25 + }, +/obj/effect/map_helper/airlock/sensor/int_sensor, +/obj/machinery/atmospherics/pipe/simple/hidden/aux, +/turf/simulated/floor, +/area/offmap/aerostat/inside/arm/nw) +"hF" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/shuttle/floor/yellow, +/area/shuttle/aerostat) +"hL" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/turf/simulated/floor, +/area/offmap/aerostat/inside/toxins) +"hN" = ( +/obj/structure/table/rack/shelf, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/zorrenoffice) +"hO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/shuttle/floor/yellow, +/area/shuttle/aerostat) +"hQ" = ( +/obj/machinery/mech_recharger, +/turf/simulated/floor/bluegrid, +/area/offmap/aerostat/inside/drillstorage) +"hS" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -23 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/zorrenoffice) +"hU" = ( +/obj/machinery/atmospherics/omni/atmos_filter{ + name = "CO2 Filter"; + tag_east = 5; + tag_north = 2; + tag_west = 1 + }, +/obj/machinery/camera/network/research_outpost{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"hX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/xenoarch) +"hY" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/southchamb) +"ib" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/blue, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"id" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/flora/pottedplant/minitree, +/turf/simulated/floor/tiled, +/area/offmap/aerostat/inside/drillstorage) +"ie" = ( +/turf/simulated/wall, +/area/offmap/aerostat/inside/zorrenoffice) +"if" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/camera/network/research_outpost, +/obj/effect/floor_decal/rust, +/turf/simulated/floor, +/area/offmap/aerostat/inside/westhall) +"ig" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"ii" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/wall, +/area/offmap/aerostat/inside/xenoarch) +"ik" = ( +/obj/effect/floor_decal/rust, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor, +/area/offmap/aerostat/inside/arm/ne) +"il" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/power/apc{ + dir = 1; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/westhall) +"io" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/machinery/door/window/brigdoor/eastleft{ + dir = 2; + req_access = list(7) + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"is" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/curtain/open/shower/medical, +/obj/machinery/shower{ + pixel_y = 13 + }, +/turf/simulated/floor/tiled/dark, +/area/offmap/aerostat/inside/virology) +"it" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/southchamb) +"iv" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 8 + }, +/obj/effect/floor_decal/rust, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/solars) +"iy" = ( +/obj/machinery/airlock_sensor{ + pixel_y = 25 + }, +/obj/effect/map_helper/airlock/sensor/int_sensor, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/airlock/east) +"iC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/southchamb) +"iH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/alarm{ + pixel_y = 26 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/telesci) +"iK" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/inside/toxins) +"iM" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/rust, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 23 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor, +/area/offmap/aerostat/inside/arm/ne) +"iN" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume, +/obj/effect/map_helper/airlock/atmos/pump_out_external, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating/virgo2, +/area/shuttle/aerostat) +"iQ" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/southchamb) +"iU" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/shuttle/wall/voidcraft/green/virgo2, +/area/offmap/aerostat/inside/arm/ne) +"iV" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"iW" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/inside/northchamb) +"iX" = ( +/turf/simulated/wall, +/area/offmap/aerostat/inside/firingrange) +"iY" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/xenoarch) +"iZ" = ( +/obj/machinery/camera/network/research_outpost{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/structure/closet/wardrobe/genetics_white, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/genetics) +"ja" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4 + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/effect/floor_decal/rust, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor, +/area/offmap/aerostat/inside/arm/se) +"je" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/air, +/turf/simulated/floor/tiled, +/area/offmap/aerostat/inside/drillstorage) +"jf" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor, +/area/offmap/aerostat/inside/arm/ne) +"ji" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/blue{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"jj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/offmap/aerostat/inside/misclab) +"jl" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + frequency = 1452 + }, +/obj/effect/map_helper/airlock/atmos/pump_out_external, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/inside/xenoarch/chamber) +"jm" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/wall, +/area/offmap/aerostat/inside/arm/ne) +"jn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/camera/network/research_outpost, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/southchamb) +"jo" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/westhall) +"ju" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/wall, +/area/offmap/aerostat/inside/xenoarch) +"jw" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled, +/area/offmap/aerostat/inside/misclab) +"jy" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"jA" = ( +/obj/structure/sign/painting/public{ + pixel_y = 30 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/easthall) +"jE" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 8 + }, +/obj/structure/table/borosilicate, +/turf/simulated/floor/tiled/dark, +/area/offmap/aerostat/inside/lobby) +"jF" = ( +/turf/simulated/wall, +/area/offmap/aerostat/inside/xenoarch) +"jG" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 8 + }, +/obj/effect/floor_decal/rust, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/solars) +"jH" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/trinary/mixer/m_mixer{ + dir = 4; + name = "High Power Gas mixer"; + power_rating = 15000 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"jI" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/offmap/aerostat/inside/xenoarch/chamber) +"jL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/power/apc, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/airlock/west) +"jM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/blue{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"jN" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/pipedispenser, +/turf/simulated/floor/plating, +/area/offmap/aerostat/inside/toxins) +"jQ" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/glass_research{ + name = "Telescience" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/telesci) +"jR" = ( +/obj/effect/floor_decal/rust, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/solars) +"jT" = ( +/obj/structure/table/standard, +/obj/item/weapon/tool/wrench{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/weapon/tool/wrench{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"jU" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/inside/arm/se) +"jV" = ( +/obj/structure/flora/ausbushes/ppflowers, +/turf/simulated/floor/grass, +/area/offmap/aerostat/inside/genetics) +"jW" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor, +/area/offmap/aerostat/inside/xenoarch/chamber) +"jZ" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/rust, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor, +/area/offmap/aerostat/inside/arm/ne) +"ka" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/turf/simulated/shuttle/wall/voidcraft/green, +/area/offmap/aerostat/inside/airlock/east) +"kb" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/rust, +/obj/machinery/door/airlock/external, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/arm/se) +"kc" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/multi_tile/metal{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/easthall) +"ke" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/red{ + dir = 1 + }, +/obj/machinery/alarm{ + pixel_y = 26 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/atmos) +"kf" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/wall, +/area/offmap/aerostat/inside/toxins) +"kg" = ( +/obj/machinery/airlock_sensor/airlock_exterior/shuttle{ + dir = 6 + }, +/obj/effect/map_helper/airlock/sensor/ext_sensor, +/turf/simulated/shuttle/wall/voidcraft/green/virgo2/nocol, +/area/offmap/aerostat/inside/virology) +"kk" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/inside/northchamb) +"km" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/wall, +/area/offmap/aerostat/inside/atmos) +"ko" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/inside/atmos) +"kp" = ( +/obj/effect/floor_decal/rust, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/solars) +"kq" = ( +/obj/machinery/power/apc{ + dir = 4; + pixel_x = 28 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/simulated/floor/tiled, +/area/offmap/aerostat/inside/misclab) +"ks" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4 + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor, +/area/offmap/aerostat/inside/arm/ne) +"kt" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"ky" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/bed/chair/sofa/purp, +/turf/simulated/floor/tiled/dark, +/area/offmap/aerostat/inside/lobby) +"kB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/southchamb) +"kC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/camera/network/research_outpost{ + dir = 8 + }, +/obj/structure/bed/chair/sofa/purp/right{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/offmap/aerostat/inside/lobby) +"kD" = ( +/obj/machinery/airlock_sensor{ + dir = 8; + frequency = 1380; + id_tag = "aerostat_n_n_sensor"; + master_tag = "aerostat_n_n_airlock"; + pixel_x = 23 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + frequency = 1380; + id_tag = "aerostat_n_n_pump" + }, +/turf/simulated/floor, +/area/offmap/aerostat/inside/airlock/north) +"kF" = ( +/turf/simulated/wall/r_wall, +/area/offmap/aerostat/inside/toxins) +"kG" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/shuttle/wall/voidcraft/green, +/area/offmap/aerostat/inside/toxins) +"kH" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 4 + }, +/obj/effect/floor_decal/rust, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 4 + }, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/solars) +"kI" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -23 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/airlock/south) +"kJ" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/inside/arm/se) +"kN" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/powercontrol) +"kO" = ( +/obj/machinery/camera/network/research_outpost{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"kR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/offmap/aerostat/inside/misclab) +"kS" = ( +/obj/machinery/atmospherics/pipe/manifold/visible, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"kV" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/xenoarch) +"kY" = ( +/turf/simulated/shuttle/wall/voidcraft/hard_corner{ + stripe_color = "#00FF00" + }, +/area/offmap/aerostat/inside/xenoarch/chamber) +"la" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/inside/northchamb) +"lb" = ( +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/virology) +"lc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/camera/network/research_outpost{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/telesci) +"ld" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/northchamb) +"lh" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"li" = ( +/obj/machinery/door/airlock/external{ + frequency = 1380; + id_tag = "aerostat_n_w_exterior"; + locked = 1 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/airlock/north) +"lk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/sign/directions/science/xenoarch, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/wall, +/area/offmap/aerostat/inside/xenoarch) +"ll" = ( +/obj/machinery/atmospherics/pipe/simple/insulated{ + dir = 5 + }, +/obj/machinery/sparker{ + id = "burn_chamber"; + pixel_x = -22; + pixel_y = -22 + }, +/turf/simulated/floor/reinforced/airless, +/area/offmap/aerostat/inside/toxins) +"lo" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/shuttle/wall/voidcraft/green/virgo2, +/area/offmap/aerostat/inside/arm/sw) +"lr" = ( +/obj/machinery/atmospherics/valve{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"ls" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/shuttle/wall/voidcraft/green/virgo2, +/area/offmap/aerostat/inside/arm/nw) +"lt" = ( +/obj/structure/grille, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/inside/arm/ne) +"lu" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/inside/atmos) +"lv" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/cee{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"lx" = ( +/obj/machinery/camera/network/research_outpost{ + dir = 4 + }, +/obj/structure/sign/painting/public{ + pixel_x = -30 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/zorrenoffice) +"ly" = ( +/obj/machinery/light_switch{ + pixel_y = 25 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/genetics) +"lz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/sign/poster{ + dir = 1; + pixel_y = 32 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/westhall) +"lA" = ( +/obj/machinery/mineral/equipment_vendor, +/turf/simulated/floor/tiled, +/area/offmap/aerostat/inside/drillstorage) +"lC" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/floor_decal/rust, +/obj/machinery/camera/network/research_outpost{ + dir = 8 + }, +/turf/simulated/floor, +/area/offmap/aerostat/inside/arm/se) +"lG" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/dark, +/area/offmap/aerostat/inside/xenoarch) +"lH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/wall, +/area/offmap/aerostat/inside/atmos) +"lI" = ( +/obj/machinery/door/window/brigdoor/eastleft{ + dir = 1; + req_access = null + }, +/turf/simulated/floor, +/area/offmap/aerostat/inside/firingrange) +"lK" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24; + pixel_y = -5 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"lL" = ( +/obj/machinery/airlock_sensor{ + pixel_y = 32 + }, +/obj/effect/map_helper/airlock/sensor/int_sensor, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/airlock/west) +"lO" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/camera/network/research_outpost{ + dir = 1 + }, +/turf/simulated/floor/bluegrid, +/area/offmap/aerostat/inside/powercontrol) +"lP" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/grass, +/area/offmap/aerostat/inside/genetics) +"lS" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/northchamb) +"lT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"lW" = ( +/obj/machinery/atmospherics/binary/pump, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"lX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/camera/network/research_outpost{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/northchamb) +"lZ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/easthall) +"mc" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"md" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/xenoarch) +"me" = ( +/obj/machinery/light, +/obj/structure/flora/ausbushes/ywflowers, +/turf/simulated/floor/grass, +/area/offmap/aerostat/inside/genetics) +"mg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/offmap/aerostat/inside/drillstorage) +"mi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"mj" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/rust, +/obj/random/maintenance/research, +/obj/random/firstaid, +/obj/random/maintenance/engineering, +/obj/random/soap, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet, +/turf/simulated/floor, +/area/offmap/aerostat/inside/arm/ne) +"mk" = ( +/obj/machinery/atmospherics/pipe/simple/visible/blue{ + dir = 10 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"mm" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/table/reinforced, +/obj/item/clothing/glasses/goggles, +/obj/item/clothing/ears/earmuffs, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/firingrange) +"mn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/door/airlock/glass_external/public, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/airlock/south) +"mo" = ( +/obj/machinery/atmospherics/unary/heat_exchanger{ + dir = 8 + }, +/obj/structure/window/basic{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/toxins) +"mp" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/xenoarch) +"ms" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_research{ + name = "Genetics Lab" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/genetics) +"mt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/northchamb) +"mu" = ( +/obj/machinery/alarm{ + pixel_y = 26 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"mx" = ( +/obj/machinery/door/airlock/external{ + frequency = 1380; + id_tag = "aerostat_n_e_exterior"; + locked = 1 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/airlock/north) +"mA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + dir = 4; + pixel_x = 28 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/firingrange) +"mD" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/obj/machinery/door/window/brigdoor/eastleft{ + dir = 2; + req_access = list(7) + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"mE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/offmap/aerostat/inside/drillstorage) +"mF" = ( +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + dir = 1; + pixel_y = 24 + }, +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/zorrenoffice) +"mG" = ( +/obj/structure/grille, +/obj/structure/window/phoronreinforced{ + dir = 8 + }, +/obj/structure/window/phoronreinforced/full{ + icon_state = "phoronwindow0" + }, +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/turf/simulated/floor/reinforced/airless, +/area/offmap/aerostat/inside/toxins) +"mH" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/table/standard, +/obj/random/tool, +/obj/random/tool, +/obj/structure/sign/poster{ + dir = 4; + pixel_x = 32 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/miscstorage) +"mI" = ( +/obj/structure/table/standard, +/obj/item/weapon/reagent_containers/glass/bucket, +/obj/item/stack/nanopaste, +/obj/item/device/flashlight/lamp{ + pixel_x = 5; + pixel_y = 9 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/xenoarch) +"mJ" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/portable_atmospherics/powered/pump, +/turf/simulated/floor/plating, +/area/offmap/aerostat/inside/toxins) +"mL" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"mN" = ( +/turf/simulated/shuttle/wall/voidcraft/green, +/area/offmap/aerostat/inside/arm/nw) +"mQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/effect/map_helper/airlock/door/int_door, +/obj/machinery/door/airlock/glass_external{ + locked = 1 + }, +/obj/machinery/access_button{ + command = "cycle_interior"; + dir = 4; + frequency = 1380; + master_tag = "aerostat_toxins"; + pixel_y = 32; + req_one_access = list(13) + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/toxins) +"mR" = ( +/obj/effect/shuttle_landmark{ + base_area = /area/offmap/aerostat; + base_turf = /turf/unsimulated/floor/sky/virgo2_sky; + docking_controller = "aerostat_s_s_airlock"; + landmark_tag = "aerostat_s_s"; + name = "Virgo 2 Aerostat (South Arm South)" + }, +/turf/unsimulated/floor/sky/virgo2_sky, +/area/offmap/aerostat) +"mT" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/turf/simulated/shuttle/wall/voidcraft/green/virgo2, +/area/offmap/aerostat/inside/arm/ne) +"mU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/wall, +/area/offmap/aerostat/inside/atmos) +"mX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/shuttle/wall/voidcraft/green, +/area/offmap/aerostat/inside/easthall) +"mZ" = ( +/obj/effect/floor_decal/rust, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/effect/floor_decal/industrial/warning/dust, +/obj/machinery/power/solar, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/solars) +"na" = ( +/obj/machinery/light/small, +/obj/machinery/power/quantumpad/scioutpost, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/simulated/floor/bluegrid, +/area/offmap/aerostat/inside/powercontrol) +"nb" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 4; + pixel_x = 28 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"nf" = ( +/obj/machinery/atmospherics/trinary/atmos_filter{ + dir = 4; + name = "High Power Gas filter"; + power_rating = 15000; + use_power = 0 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"nh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/blue, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"ni" = ( +/obj/effect/floor_decal/rust, +/obj/machinery/power/apc{ + dir = 4; + pixel_x = 28 + }, +/obj/structure/cable, +/turf/simulated/floor, +/area/offmap/aerostat/inside/westhall) +"nm" = ( +/obj/machinery/atmospherics/binary/pump/on{ + name = "Scrubber to Waste" + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/atmos) +"no" = ( +/obj/machinery/atmospherics/omni/mixer{ + name = "Air Mixer"; + tag_east_con = null; + tag_north = 1; + tag_north_con = 0.21; + tag_south = 1; + tag_south_con = 0.79; + tag_west = 2 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/atmos) +"np" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/turf/simulated/shuttle/wall/voidcraft/green/virgo2, +/area/offmap/aerostat/inside/arm/nw) +"nr" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8 + }, +/obj/effect/map_helper/airlock/atmos/pump_out_external, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/inside/arm/sw) +"ns" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4 + }, +/obj/effect/map_helper/airlock/atmos/pump_out_internal, +/turf/simulated/floor/tiled/dark, +/area/offmap/aerostat/inside/xenoarch) +"nu" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/insulated{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/turf/simulated/floor, +/area/offmap/aerostat/inside/toxins) +"nv" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_research{ + name = "Toxins Lab" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/toxins) +"nw" = ( +/obj/machinery/door/airlock/external{ + frequency = 1380; + id_tag = "aerostat_s_s_exterior"; + locked = 1 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/airlock/south) +"nx" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/black{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/atmos) +"nz" = ( +/obj/machinery/door/airlock/glass_research{ + name = "Toxins Lab" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/toxins) +"nB" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/visible, +/obj/machinery/meter, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"nE" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 8 + }, +/obj/effect/floor_decal/rust, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 4 + }, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/solars) +"nF" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor, +/area/offmap/aerostat/inside/firingrange) +"nG" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/easthall) +"nJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/shuttle/wall/voidcraft/green, +/area/offmap/aerostat/inside/firingrange) +"nL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/bluegrid, +/area/offmap/aerostat/inside/powercontrol) +"nN" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/rust, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor, +/area/offmap/aerostat/inside/arm/sw) +"nO" = ( +/obj/machinery/atmospherics/pipe/simple/insulated{ + dir = 4 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/inside/toxins) +"nQ" = ( +/obj/effect/floor_decal/rust, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/solars) +"nR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/sign/painting/public{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/westhall) +"nS" = ( +/obj/structure/bed/chair/shuttle{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/shuttle/floor/yellow, +/area/shuttle/aerostat) +"nU" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging, +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/turf/simulated/floor/reinforced/airless, +/area/offmap/aerostat/inside/toxins) +"nV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/green, +/obj/machinery/portable_atmospherics/powered/pump, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/light, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"nW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/shuttle/wall/voidcraft/green/virgo2, +/area/offmap/aerostat/inside/arm/ne) +"nY" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -23 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/xenoarch) +"oc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"od" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging, +/turf/simulated/floor/reinforced/airless, +/area/offmap/aerostat/inside/toxins) +"oe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/northchamb) +"og" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"oi" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -23 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"oj" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8 + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/effect/floor_decal/rust, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor, +/area/offmap/aerostat/inside/arm/sw) +"ol" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/phoron, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"om" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/powercontrol) +"oo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/offmap/aerostat/inside/misclab) +"op" = ( +/turf/simulated/wall/r_wall, +/area/offmap/aerostat/inside/xenoarch) +"os" = ( +/obj/effect/floor_decal/rust, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4; + frequency = 1380; + id_tag = null + }, +/obj/effect/map_helper/airlock/atmos/pump_out_internal, +/turf/simulated/floor, +/area/offmap/aerostat/inside/arm/nw) +"ot" = ( +/turf/simulated/shuttle/wall/voidcraft/green, +/area/offmap/aerostat/inside/virology) +"ou" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/blue, +/obj/structure/table/standard, +/obj/item/weapon/tool/screwdriver, +/obj/item/device/analyzer, +/obj/item/weapon/tool/wrench, +/obj/item/clothing/glasses/welding, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/power/apc, +/obj/structure/cable, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"ov" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/multi_tile/metal{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/westhall) +"oy" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/obj/machinery/door/airlock/external{ + frequency = 1089; + icon_state = "door_locked"; + id_tag = "aerostat_door_outer"; + locked = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/obj/effect/map_helper/airlock/door/ext_door, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/airlock/east) +"oA" = ( +/turf/simulated/shuttle/wall/voidcraft/hard_corner{ + stripe_color = "#00FF00" + }, +/area/offmap/aerostat/inside/firingrange) +"oG" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/easthall) +"oJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/power/apc, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/flora/pottedplant/subterranean, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/northchamb) +"oK" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/window/brigdoor/eastleft{ + dir = 2; + req_access = list(7) + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"oL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/door/airlock/external{ + frequency = 1380; + id_tag = "aerostat_n_n_interior"; + locked = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/airlock/north) +"oM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/easthall) +"oS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/door/airlock/external{ + frequency = 1380; + id_tag = "aerostat_s_s_interior"; + locked = 1 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/airlock/south) +"oU" = ( +/obj/effect/floor_decal/industrial/warning/dust, +/obj/effect/floor_decal/rust, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4; + frequency = 1452 + }, +/obj/effect/map_helper/airlock/atmos/pump_out_internal, +/turf/simulated/floor, +/area/offmap/aerostat/inside/airlock/east) +"oV" = ( +/obj/machinery/portable_atmospherics/canister/empty/carbon_dioxide, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/plating, +/area/offmap/aerostat/inside/toxins) +"oW" = ( +/obj/structure/sign/warning/hot_exhaust, +/turf/simulated/wall/r_wall, +/area/offmap/aerostat/inside/toxins) +"oY" = ( +/obj/structure/table/standard, +/obj/item/weapon/tool/crowbar, +/obj/item/weapon/anodevice{ + pixel_x = 1 + }, +/obj/item/weapon/anodevice{ + pixel_x = -2 + }, +/obj/item/device/multitool, +/obj/machinery/light, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/xenoarch) +"oZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/offmap/aerostat/inside/misclab) +"pa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/virology) +"pd" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8 + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/obj/machinery/airlock_sensor{ + pixel_y = 25 + }, +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/obj/effect/shuttle_landmark{ + base_area = /area/offmap/aerostat; + base_turf = /turf/unsimulated/floor/sky/virgo2_sky; + docking_controller = "aerostat_east_airlock"; + landmark_tag = "aerostat_east"; + name = "Virgo 2 Aerostat (E)" + }, +/turf/simulated/shuttle/floor/yellow/airless, +/area/shuttle/aerostat) +"pe" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/rust, +/obj/machinery/door/airlock/external, +/obj/effect/map_helper/airlock/door/ext_door, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/arm/ne) +"pf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/offmap/aerostat/inside/lobby) +"ph" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/black, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"pj" = ( +/obj/effect/floor_decal/rust, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 4 + }, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/solars) +"pm" = ( +/obj/machinery/light, +/obj/structure/table/wooden_reinforced, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/southchamb) +"pn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/camera/network/research_outpost{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/southchamb) +"po" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden, +/obj/machinery/camera/network/research_outpost{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"pq" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/door/window/brigdoor/eastright{ + dir = 2; + req_access = null; + req_one_access = list(1337) + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/shutters{ + dir = 2; + id = "zorrenpartyroom"; + layer = 3.3; + name = "shutter" + }, +/turf/simulated/floor/plating, +/area/offmap/aerostat/inside/zorrenoffice) +"pr" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/power/apc, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/atmos) +"ps" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/effect/floor_decal/rust, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/solars) +"py" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/wall, +/area/offmap/aerostat/inside/toxins) +"pz" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/rust, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/airlock_sensor{ + dir = 4; + pixel_x = -25 + }, +/obj/effect/map_helper/airlock/sensor/int_sensor, +/turf/simulated/floor, +/area/offmap/aerostat/inside/arm/se) +"pA" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/shutters{ + dir = 2; + id = "zorrenpartyroom"; + layer = 3.3; + name = "shutter" + }, +/turf/simulated/floor/plating, +/area/offmap/aerostat/inside/zorrenoffice) +"pC" = ( +/obj/machinery/light_switch{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/dark, +/area/offmap/aerostat/inside/lobby) +"pD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/door/airlock/external{ + frequency = 1380; + id_tag = "aerostat_s_s_interior"; + locked = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/airlock/south) +"pF" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"pH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/northchamb) +"pL" = ( +/obj/effect/floor_decal/rust, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/solars) +"pP" = ( +/obj/machinery/light/floortube{ + dir = 1; + pixel_y = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/westhall) +"pT" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8 + }, +/obj/effect/map_helper/airlock/atmos/pump_out_internal, +/obj/effect/floor_decal/rust, +/turf/simulated/floor, +/area/offmap/aerostat/inside/arm/se) +"pV" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/blue, +/obj/machinery/atmospherics/pipe/simple/hidden/aux, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"pW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/zorrenoffice) +"pX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/effect/map_helper/airlock/door/ext_door, +/obj/machinery/door/airlock/glass_external{ + locked = 1 + }, +/obj/machinery/access_button{ + command = "cycle_interior"; + dir = 8; + frequency = 1380; + master_tag = "aerostat_toxins"; + pixel_y = 32; + req_one_access = list(13) + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/toxins) +"pY" = ( +/obj/machinery/light/floortube{ + dir = 8; + pixel_x = -6 + }, +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/southchamb) +"pZ" = ( +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/atmos) +"qb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/wall, +/area/offmap/aerostat/inside/firingrange) +"qc" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/inside/southchamb) +"qf" = ( +/obj/effect/floor_decal/rust, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/alarm{ + pixel_y = 26 + }, +/turf/simulated/floor, +/area/offmap/aerostat/inside/xenoarch) +"qh" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/red{ + dir = 1 + }, +/obj/machinery/light_switch{ + pixel_y = 25 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/atmos) +"qi" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/red{ + dir = 1 + }, +/obj/item/stack/material/algae, +/obj/item/stack/material/algae, +/obj/item/stack/material/algae, +/obj/item/stack/material/algae, +/obj/item/stack/material/algae, +/obj/item/stack/material/algae, +/obj/structure/closet/walllocker_double{ + pixel_y = 26 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/atmos) +"qj" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/northchamb) +"ql" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/bed/chair/sofa/purp/left{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/offmap/aerostat/inside/lobby) +"qp" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/table/borosilicate, +/turf/simulated/floor/tiled/dark, +/area/offmap/aerostat/inside/lobby) +"qq" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/machinery/light/floortube{ + dir = 1; + pixel_y = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/easthall) +"qr" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = -4 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -23 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/virology) +"qt" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/grass, +/area/offmap/aerostat/inside/genetics) +"qv" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/firingrange) +"qw" = ( +/obj/machinery/power/apc{ + dir = 4; + pixel_x = 28 + }, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/airlock/south) +"qx" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_research{ + name = "Firing Range"; + req_one_access = null + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/firingrange) +"qB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/shuttle/wall/voidcraft/hard_corner{ + stripe_color = "#00FF00" + }, +/area/offmap/aerostat/inside/airlock/east) +"qC" = ( +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"qD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/virology) +"qE" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/rust, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + cycle_to_external_air = 1; + dir = 8; + id_tag = "aerostat_southeast_airlock"; + name = "Aerostat Airlock Controller"; + pixel_x = 25 + }, +/turf/simulated/floor, +/area/offmap/aerostat/inside/arm/se) +"qF" = ( +/obj/effect/floor_decal/rust, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/solars) +"qH" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/wall, +/area/offmap/aerostat/inside/toxins) +"qJ" = ( +/obj/machinery/vending/cigarette, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/northchamb) +"qK" = ( +/obj/machinery/computer/telescience{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/telesci) +"qL" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/machinery/door/firedoor/glass, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/turf/simulated/floor, +/area/offmap/aerostat/inside/toxins) +"qM" = ( +/obj/structure/grille, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/inside/airlock/north) +"qN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/westhall) +"qP" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/dark, +/area/offmap/aerostat/inside/lobby) +"qQ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/wall, +/area/offmap/aerostat/inside/xenoarch) +"qR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/camera/network/research_outpost, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/southchamb) +"qS" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/offmap/aerostat/inside/misclab) +"qT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/offmap/aerostat/inside/lobby) +"qU" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/nitrogen, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"qZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/atmos) +"rd" = ( +/obj/machinery/atmospherics/pipe/simple/insulated, +/obj/machinery/door/blast/regular{ + dir = 8; + id = "burn_chamber_v"; + name = "Burn Chamber Vent" + }, +/turf/simulated/floor/reinforced/airless, +/area/offmap/aerostat/inside/toxins) +"re" = ( +/obj/machinery/atmospherics/unary/freezer{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/atmos) +"rf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"rg" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/closet/crate/science, +/obj/effect/floor_decal/rust, +/turf/simulated/floor, +/area/offmap/aerostat/inside/xenoarch) +"ri" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/door/airlock/external{ + frequency = 1380; + id_tag = "aerostat_n_n_interior"; + locked = 1 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/airlock/north) +"rq" = ( +/turf/simulated/shuttle/wall/voidcraft/green, +/area/offmap/aerostat/inside/firingrange) +"rs" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/dark, +/area/offmap/aerostat/inside/lobby) +"rv" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 4 + }, +/obj/effect/floor_decal/rust, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 4 + }, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/solars) +"rw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/wall, +/area/offmap/aerostat/inside/atmos) +"ry" = ( +/obj/structure/flora/pottedplant/subterranean, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/northchamb) +"rz" = ( +/obj/structure/table/standard, +/obj/item/weapon/tank/phoron, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/item/weapon/tool/wirecutters, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"rC" = ( +/obj/machinery/computer/diseasesplicer{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/virology) +"rH" = ( +/obj/structure/closet/crate/science, +/obj/effect/floor_decal/rust, +/obj/machinery/power/apc{ + dir = 1; + pixel_y = 24 + }, +/obj/structure/cable, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor, +/area/offmap/aerostat/inside/xenoarch) +"rI" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 9 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/inside/toxins) +"rJ" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/telesci) +"rM" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/airlock/north) +"rP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/wall, +/area/offmap/aerostat/inside/xenoarch) +"rS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/shuttle/wall/voidcraft/hard_corner, +/area/offmap/aerostat/inside/firingrange) +"rT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/shuttle/wall/voidcraft/green, +/area/offmap/aerostat/inside/airlock/east) +"rU" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/wall, +/area/offmap/aerostat/inside/toxins) +"rW" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/genetics) +"sb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/xenoarch) +"sc" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/air, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/atmos) +"se" = ( +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor/tiled/dark, +/area/offmap/aerostat/inside/xenoarch/chamber) +"sg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/shuttle/wall/voidcraft/hard_corner, +/area/offmap/aerostat/inside/telesci) +"sh" = ( +/obj/structure/window/phoronreinforced{ + dir = 8 + }, +/obj/structure/window/phoronreinforced/full{ + icon_state = "phoronwindow0" + }, +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 6 + }, +/turf/simulated/floor/reinforced/airless, +/area/offmap/aerostat/inside/toxins) +"sj" = ( +/obj/machinery/door/window/brigdoor/eastleft{ + dir = 1; + req_access = null + }, +/turf/simulated/floor/grass, +/area/offmap/aerostat/inside/genetics) +"sk" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/airlock/south) +"sm" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/table/rack, +/obj/item/clothing/suit/bio_suit/anomaly, +/obj/item/clothing/head/bio_hood/anomaly, +/obj/item/clothing/gloves/sterile/latex, +/obj/item/clothing/glasses/science, +/obj/item/clothing/mask/breath, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/xenoarch) +"sn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/shuttle/wall/voidcraft/green/virgo2, +/area/offmap/aerostat/inside/arm/nw) +"so" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/red, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/wall, +/area/offmap/aerostat/inside/atmos) +"sp" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor, +/area/offmap/aerostat/inside/firingrange) +"sr" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/rust, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/obj/machinery/airlock_sensor{ + dir = 8; + pixel_x = 30 + }, +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/turf/simulated/floor, +/area/offmap/aerostat/inside/arm/ne) +"sw" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/zorrenoffice) +"sy" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/southchamb) +"sD" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor, +/area/offmap/aerostat/inside/arm/ne) +"sE" = ( +/obj/effect/floor_decal/rust, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 4 + }, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/solars) +"sI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/effect/floor_decal/rust, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor, +/area/offmap/aerostat/inside/arm/ne) +"sJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/southchamb) +"sK" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/offmap/aerostat/inside/lobby) +"sN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/camera/network/research_outpost{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/northchamb) +"sO" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/zorrenoffice) +"sP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/table/standard, +/obj/item/weapon/ore/bluespace_crystal, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/telesci) +"sQ" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/inside/arm/nw) +"sT" = ( +/obj/machinery/computer/shuttle_control/aerostat_shuttle, +/turf/simulated/shuttle/floor/yellow, +/area/shuttle/aerostat) +"sU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/turf/simulated/wall/r_wall, +/area/offmap/aerostat/inside/xenoarch) +"sX" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1380; + id_tag = "aerostat_s_e_pump" + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + frequency = 1380; + id_tag = "aerostat_s_e_airlock"; + pixel_y = 29; + tag_airpump = "aerostat_s_e_pump"; + tag_chamber_sensor = "aerostat_s_e_sensor"; + tag_exterior_door = "aerostat_s_e_exterior"; + tag_exterior_sensor = "aerostat_s_e_sensext"; + tag_interior_door = "aerostat_s_e_interior"; + tag_interior_sensor = "aerostat_s_e_sensint" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor, +/area/offmap/aerostat/inside/airlock/south) +"sZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/shuttle/wall/voidcraft/green/virgo2, +/area/offmap/aerostat/inside/arm/ne) +"tf" = ( +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/telesci) +"tg" = ( +/obj/effect/shuttle_landmark{ + base_area = /area/offmap/aerostat; + base_turf = /turf/unsimulated/floor/sky/virgo2_sky; + docking_controller = "aerostat_n_w_airlock"; + landmark_tag = "aerostat_n_w"; + name = "Virgo 2 Aerostat (North Arm West)" + }, +/turf/unsimulated/floor/sky/virgo2_sky, +/area/offmap/aerostat) +"ti" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/closet/firecloset, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/xenoarch) +"tj" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/rust, +/obj/structure/table/rack, +/obj/random/contraband, +/turf/simulated/floor, +/area/offmap/aerostat/inside/arm/ne) +"tk" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/westhall) +"tm" = ( +/obj/machinery/door/airlock/external{ + frequency = 1380; + id_tag = "aerostat_n_w_exterior"; + locked = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/airlock/north) +"tn" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/medical, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/virology) +"tq" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4; + frequency = 1380; + id_tag = "aerostat_n_w_pump" + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + frequency = 1380; + id_tag = "aerostat_n_w_airlock"; + pixel_y = 29; + tag_airpump = "aerostat_n_w_pump"; + tag_chamber_sensor = "aerostat_n_w_sensor"; + tag_exterior_door = "aerostat_n_w_exterior"; + tag_exterior_sensor = "aerostat_n_w_sensext"; + tag_interior_door = "aerostat_n_w_interior"; + tag_interior_sensor = "aerostat_n_w_sensint" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor, +/area/offmap/aerostat/inside/airlock/north) +"tr" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/easthall) +"ts" = ( +/obj/structure/shuttle/window, +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor, +/area/shuttle/aerostat) +"tu" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"tv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_research{ + name = "Toxins Lab" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/toxins) +"ty" = ( +/turf/simulated/shuttle/wall/voidcraft/green, +/area/offmap/aerostat/inside/easthall) +"tD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/offmap/aerostat/inside/xenoarch) +"tE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/southchamb) +"tF" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4 + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/effect/floor_decal/rust, +/obj/machinery/power/apc{ + dir = 8; + pixel_x = -22 + }, +/turf/simulated/floor, +/area/offmap/aerostat/inside/arm/se) +"tH" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/regular/open{ + id = telesci_blast; + name = "Blast Door" + }, +/turf/simulated/floor/reinforced, +/area/offmap/aerostat/inside/telesci) +"tI" = ( +/obj/effect/floor_decal/industrial/danger/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/xenoarch) +"tJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/firingrange) +"tL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock/glass_research{ + name = "Xenoarchaeology Prep Room" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/xenoarch) +"tM" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/inside/arm/ne) +"tR" = ( +/obj/structure/flora/pottedplant/subterranean, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/southchamb) +"tS" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume, +/obj/machinery/light/small, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/effect/floor_decal/industrial/warning/dust, +/turf/simulated/shuttle/floor/yellow/airless, +/area/shuttle/aerostat) +"tU" = ( +/obj/machinery/light_switch{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled, +/area/offmap/aerostat/inside/misclab) +"tV" = ( +/obj/machinery/suspension_gen, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/xenoarch) +"tY" = ( +/turf/simulated/shuttle/wall/voidcraft/green, +/area/offmap/aerostat/inside/airlock/east) +"ua" = ( +/obj/machinery/door/airlock/glass_research{ + name = "Atmospherics"; + req_one_access = list(47,10) + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/atmos) +"ud" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"uf" = ( +/obj/machinery/button/remote/blast_door{ + dir = 1; + id = 2; + name = "Virology Emergency Quarantine"; + pixel_y = 5 + }, +/turf/simulated/wall, +/area/offmap/aerostat/inside/virology) +"ug" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/sign/painting/public{ + pixel_x = 30 + }, +/obj/structure/table/borosilicate, +/turf/simulated/floor/tiled/dark, +/area/offmap/aerostat/inside/lobby) +"uh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/northchamb) +"uj" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/telesci) +"uk" = ( +/obj/machinery/light, +/obj/effect/floor_decal/rust, +/turf/simulated/floor, +/area/offmap/aerostat/inside/arm/se) +"um" = ( +/obj/machinery/door/airlock/external, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/northchamb) +"un" = ( +/obj/machinery/portable_atmospherics/powered/scrubber, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"uq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/obj/machinery/camera/network/research_outpost{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/atmos) +"ur" = ( +/obj/machinery/atmospherics/pipe/simple/insulated{ + dir = 4 + }, +/obj/structure/grille, +/obj/structure/window/phoronreinforced{ + dir = 8 + }, +/obj/structure/window/phoronreinforced/full{ + icon_state = "phoronwindow0" + }, +/turf/simulated/floor/reinforced/airless, +/area/offmap/aerostat/inside/toxins) +"us" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/wall, +/area/offmap/aerostat/inside/firingrange) +"ut" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/offmap/aerostat/inside/telesci) +"uu" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/red{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/atmos) +"uv" = ( +/obj/machinery/atmospherics/unary/heat_exchanger{ + dir = 1 + }, +/obj/structure/window/basic{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/toxins) +"ux" = ( +/obj/machinery/airlock_sensor{ + frequency = 1380; + id_tag = null; + pixel_y = 24 + }, +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"uy" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/airlock/south) +"uA" = ( +/obj/machinery/atmospherics/unary/heat_exchanger, +/obj/structure/window/basic, +/obj/effect/floor_decal/corner/red/border, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/toxins) +"uD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/camera/network/research_outpost{ + dir = 4 + }, +/obj/machinery/mining/drill, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/offmap/aerostat/inside/drillstorage) +"uE" = ( +/obj/machinery/vending/snlvend{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/southchamb) +"uF" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/camera/network/research_outpost{ + dir = 8 + }, +/obj/structure/closet/firecloset, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"uG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/camera/network/research_outpost, +/obj/structure/table/rack, +/obj/item/device/suit_cooling_unit, +/obj/item/device/suit_cooling_unit, +/turf/simulated/floor/tiled, +/area/offmap/aerostat/inside/drillstorage) +"uK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/mining/drill, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/offmap/aerostat/inside/drillstorage) +"uN" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/northchamb) +"uS" = ( +/turf/simulated/shuttle/wall/voidcraft/green, +/area/offmap/aerostat/inside/arm/sw) +"uV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/northchamb) +"uX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/southchamb) +"va" = ( +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/grass, +/area/offmap/aerostat/inside/genetics) +"vb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/shuttle/wall/voidcraft/hard_corner, +/area/offmap/aerostat/inside/toxins) +"vc" = ( +/obj/machinery/door/airlock/external, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/airlock/south) +"vd" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/flora/ausbushes/ywflowers, +/turf/simulated/floor/grass, +/area/offmap/aerostat/inside/genetics) +"ve" = ( +/obj/machinery/door/blast/regular{ + dir = 8; + id = "burn_chamber_v"; + name = "Burn Chamber Vent" + }, +/turf/simulated/floor/reinforced/airless, +/area/offmap/aerostat/inside/toxins) +"vg" = ( +/turf/simulated/shuttle/wall/voidcraft/green, +/area/offmap/aerostat/inside/lobby) +"vj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + frequency = 1380; + id_tag = "aerostat_s_e_interior"; + locked = 1 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/airlock/south) +"vm" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/bio_suit/anomaly, +/obj/item/clothing/head/bio_hood/anomaly, +/obj/item/clothing/gloves/sterile/latex, +/obj/item/clothing/glasses/science, +/obj/item/clothing/mask/breath, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/xenoarch) +"vo" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/table/wooden_reinforced, +/obj/machinery/chemical_dispenser/bar_coffee/full{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/southchamb) +"vp" = ( +/obj/machinery/camera/network/research_outpost{ + dir = 8 + }, +/obj/structure/sign/painting/public{ + pixel_x = 30 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/zorrenoffice) +"vq" = ( +/obj/effect/floor_decal/rust, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/solars) +"vt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/northchamb) +"vu" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/firingrange) +"vy" = ( +/obj/machinery/power/apc{ + dir = 8; + pixel_x = -22 + }, +/obj/structure/cable, +/obj/structure/table/reinforced, +/obj/item/weapon/storage/box/disks, +/obj/item/weapon/storage/box/disks, +/obj/item/toy/figure/geneticist, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/genetics) +"vz" = ( +/obj/machinery/camera/network/research_outpost, +/obj/structure/table/rack, +/obj/item/clothing/suit/bio_suit/anomaly, +/obj/item/clothing/head/bio_hood/anomaly, +/obj/item/clothing/gloves/sterile/latex, +/obj/item/clothing/glasses/science, +/obj/item/clothing/mask/breath, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/xenoarch) +"vA" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden, +/turf/simulated/shuttle/wall, +/area/shuttle/aerostat) +"vB" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/atmos) +"vC" = ( +/obj/effect/floor_decal/industrial/warning/dust, +/obj/effect/floor_decal/rust, +/obj/machinery/light/small, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8 + }, +/obj/effect/map_helper/airlock/atmos/pump_out_internal, +/turf/simulated/floor, +/area/offmap/aerostat/inside/airlock/west) +"vI" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/rust, +/obj/machinery/atmospherics/pipe/simple/hidden/blue, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -23 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux, +/turf/simulated/floor, +/area/offmap/aerostat/inside/arm/nw) +"vJ" = ( +/turf/simulated/wall/r_wall, +/area/offmap/aerostat/inside/xenoarch/chamber) +"vK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/wall, +/area/offmap/aerostat/inside/telesci) +"vL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/offmap/aerostat/inside/lobby) +"vM" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/table/reinforced, +/obj/item/clothing/glasses/goggles, +/obj/item/clothing/ears/earmuffs, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/firingrange) +"vP" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/glass_research{ + name = "Firing Range"; + req_one_access = null + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/firingrange) +"vQ" = ( +/obj/item/modular_computer/console/preset/research{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 4; + layer = 3.3; + pixel_x = 26 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/xenoarch) +"vR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/wall, +/area/offmap/aerostat/inside/xenoarch) +"vT" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance/rnd{ + req_one_access = null + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/firingrange) +"vU" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/mining/brace, +/turf/simulated/floor/tiled, +/area/offmap/aerostat/inside/drillstorage) +"vW" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/obj/effect/floor_decal/rust, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor, +/area/offmap/aerostat/inside/arm/ne) +"vX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/shuttle/wall, +/area/shuttle/aerostat) +"vY" = ( +/obj/machinery/bomb_tester, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"wb" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 23 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/northchamb) +"wc" = ( +/obj/machinery/airlock_sensor/airlock_exterior/shuttle{ + dir = 10 + }, +/obj/effect/map_helper/airlock/sensor/ext_sensor, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/turf/simulated/shuttle/wall/hard_corner, +/area/shuttle/aerostat) +"wg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/vending/cola/soft{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/northchamb) +"wh" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/xenoarch) +"wi" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/northchamb) +"wj" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/external, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/arm/se) +"wl" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/dark, +/area/offmap/aerostat/inside/lobby) +"wm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/turf/simulated/shuttle/wall/hard_corner, +/area/shuttle/aerostat) +"wo" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/flora/pottedplant/unusual, +/turf/simulated/floor/tiled/dark, +/area/offmap/aerostat/inside/lobby) +"wp" = ( +/obj/machinery/power/emitter{ + anchored = 1; + dir = 1; + state = 2 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/simulated/floor/tiled, +/area/offmap/aerostat/inside/xenoarch) +"wr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/blue{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"ws" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/black{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"wz" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/southchamb) +"wA" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/offmap/aerostat/inside/misclab) +"wC" = ( +/turf/simulated/shuttle/wall/voidcraft/hard_corner{ + stripe_color = "#00FF00" + }, +/area/offmap/aerostat/inside/northchamb) +"wD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/zorrenoffice) +"wE" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4; + external_pressure_bound = 0; + frequency = 1445; + icon_state = "map_vent_in"; + id_tag = "burn_out"; + initialize_directions = 4; + pump_direction = 0 + }, +/turf/simulated/floor/reinforced/airless, +/area/offmap/aerostat/inside/toxins) +"wF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/westhall) +"wG" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/wall, +/area/offmap/aerostat/inside/toxins) +"wI" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/rust, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + cycle_to_external_air = 1; + dir = 4; + id_tag = "aerostat_southwest_airlock"; + name = "Aerostat Airlock Controller"; + pixel_x = -25 + }, +/turf/simulated/floor, +/area/offmap/aerostat/inside/arm/sw) +"wK" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/yellow, +/turf/simulated/floor/tiled, +/area/offmap/aerostat/inside/xenoarch) +"wQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/southchamb) +"wT" = ( +/obj/effect/floor_decal/rust, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/obj/random/maintenance/engineering, +/obj/structure/closet, +/turf/simulated/floor, +/area/offmap/aerostat/inside/arm/ne) +"wY" = ( +/obj/machinery/alarm{ + pixel_y = 26 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/firingrange) +"wZ" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/black{ + dir = 1 + }, +/obj/machinery/door/blast/regular{ + dir = 2; + id = "burn_chamber_p"; + name = "Burn Chamber Purge" + }, +/turf/simulated/floor/reinforced/airless, +/area/offmap/aerostat/inside/toxins) +"xa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/door/airlock/glass_mining{ + name = "Drilling Equipment" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/drillstorage) +"xc" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/rust, +/turf/simulated/floor, +/area/offmap/aerostat/inside/arm/ne) +"xe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/offmap/aerostat/inside/lobby) +"xf" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 1 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"xg" = ( +/obj/machinery/camera/network/research_outpost{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor, +/area/offmap/aerostat/inside/xenoarch) +"xj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor, +/area/offmap/aerostat/inside/arm/se) +"xl" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/offmap/aerostat/inside/lobby) +"xn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/simulated/wall, +/area/offmap/aerostat/inside/firingrange) +"xp" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/camera/network/research_outpost{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/easthall) +"xq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/radiocarbon_spectrometer, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/xenoarch) +"xs" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor, +/area/offmap/aerostat/inside/xenoarch) +"xt" = ( +/turf/simulated/wall, +/area/offmap/aerostat/inside/drillstorage) +"xu" = ( +/obj/machinery/alarm{ + alarm_id = "anomaly_testing"; + dir = 4; + pixel_x = -23 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"xv" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/sign/directions/science/xenoarch{ + dir = 1; + pixel_y = 32 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/easthall) +"xw" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/inside/arm/sw) +"xx" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4 + }, +/obj/effect/map_helper/airlock/atmos/pump_out_external, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/inside/arm/ne) +"xy" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"xB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/medical{ + name = "Virology Lab"; + req_access = list(39); + req_one_access = null + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/virology) +"xD" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/table/borosilicate, +/turf/simulated/floor/tiled/dark, +/area/offmap/aerostat/inside/lobby) +"xF" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/inside/arm/se) +"xG" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/easthall) +"xH" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/shutters{ + dir = 2; + id = "zorrenpartyroom"; + layer = 3.3; + name = "shutter" + }, +/obj/machinery/vending/sovietsoda, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/inside/zorrenoffice) +"xK" = ( +/obj/effect/floor_decal/rust, +/obj/effect/floor_decal/industrial/warning, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor, +/area/offmap/aerostat/inside/xenoarch) +"xM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/inside/toxins) +"xN" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/external, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/map_helper/airlock/door/int_door, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/arm/sw) +"xO" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/phoron, +/obj/machinery/door/window/brigdoor/eastleft{ + dir = 2; + req_access = list(7) + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"xP" = ( +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/northchamb) +"xR" = ( +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/genetics) +"xS" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/virology) +"xU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"xV" = ( +/turf/simulated/wall, +/area/offmap/aerostat/inside/virology) +"xW" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/rust, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/airlock_sensor{ + dir = 8; + pixel_x = 25 + }, +/obj/effect/map_helper/airlock/sensor/int_sensor, +/turf/simulated/floor, +/area/offmap/aerostat/inside/arm/sw) +"yc" = ( +/obj/machinery/atmospherics/pipe/tank/air{ + dir = 4 + }, +/obj/machinery/camera/network/research_outpost{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/offmap/aerostat/inside/atmos) +"yd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/wall, +/area/offmap/aerostat/inside/virology) +"ye" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/firingrange) +"yi" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 9 + }, +/obj/machinery/door/blast/regular{ + dir = 2; + id = "burn_chamber_p"; + name = "Burn Chamber Purge" + }, +/turf/simulated/floor/reinforced/airless, +/area/offmap/aerostat/inside/toxins) +"yk" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/bluegrid, +/area/offmap/aerostat/inside/powercontrol) +"yp" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor, +/area/offmap/aerostat/inside/arm/se) +"yq" = ( +/obj/effect/floor_decal/industrial/warning/dust, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"yr" = ( +/turf/simulated/shuttle/wall/voidcraft/green, +/area/offmap/aerostat/inside/drillstorage) +"yu" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/vending/snack{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/northchamb) +"yv" = ( +/obj/machinery/atmospherics/pipe/tank/nitrogen{ + dir = 8 + }, +/obj/machinery/camera/network/research_outpost{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/offmap/aerostat/inside/atmos) +"yy" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1380; + id_tag = "aerostat_s_e_pump" + }, +/obj/machinery/airlock_sensor{ + dir = 1; + frequency = 1380; + id_tag = "aerostat_s_e_sensor"; + master_tag = "aerostat_s_e_airlock"; + pixel_y = -25 + }, +/turf/simulated/floor, +/area/offmap/aerostat/inside/airlock/south) +"yA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/wall, +/area/offmap/aerostat/inside/arm/ne) +"yD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + frequency = 1380; + id_tag = "aerostat_s_e_interior"; + locked = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/airlock/south) +"yG" = ( +/obj/machinery/alarm{ + pixel_y = 26 + }, +/turf/simulated/floor/tiled, +/area/offmap/aerostat/inside/misclab) +"yH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/light/floortube{ + dir = 1; + pixel_y = 5 + }, +/obj/structure/sign/painting/public{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/easthall) +"yI" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"yK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/light/floortube{ + dir = 8; + pixel_x = -6 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/firingrange) +"yN" = ( +/obj/machinery/light/floortube{ + pixel_y = -5 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/westhall) +"yO" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4; + frequency = 1380; + id_tag = null + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"yQ" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/rust, +/obj/structure/table/rack, +/obj/random/toolbox, +/obj/random/soap, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor, +/area/offmap/aerostat/inside/arm/ne) +"yT" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 10 + }, +/turf/simulated/floor/reinforced/airless, +/area/offmap/aerostat/inside/toxins) +"yU" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/green, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/atmos) +"yX" = ( +/obj/machinery/camera/network/research_outpost{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/offmap/aerostat/inside/misclab) +"yZ" = ( +/obj/structure/cable/heavyduty{ + icon_state = "0-8" + }, +/obj/structure/cable/heavyduty{ + icon_state = "0-4" + }, +/obj/structure/cable/heavyduty, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/bluegrid, +/area/offmap/aerostat/inside/powercontrol) +"zb" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"zc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/telesci) +"ze" = ( +/turf/simulated/shuttle/wall/voidcraft/hard_corner{ + stripe_color = "#00FF00" + }, +/area/offmap/aerostat/inside/virology) +"zf" = ( +/obj/random/maintenance/research, +/obj/structure/sign/painting/public{ + pixel_x = -30 + }, +/obj/structure/table/borosilicate, +/turf/simulated/floor/tiled/dark, +/area/offmap/aerostat/inside/lobby) +"zg" = ( +/obj/machinery/atmospherics/pipe/simple/insulated, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/inside/toxins) +"zk" = ( +/obj/effect/floor_decal/rust, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/solars) +"zn" = ( +/obj/machinery/door/airlock/glass_research{ + name = "Xenoarchaeology" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/xenoarch) +"zo" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/dark, +/area/offmap/aerostat/inside/xenoarch/chamber) +"zp" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/rust, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor, +/area/offmap/aerostat/inside/arm/ne) +"zq" = ( +/obj/effect/floor_decal/rust, +/obj/effect/decal/cleanable/cobweb, +/obj/machinery/power/solar_control, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8 + }, +/obj/effect/map_helper/airlock/atmos/pump_out_internal, +/turf/simulated/floor, +/area/offmap/aerostat/inside/arm/ne) +"zr" = ( +/obj/effect/floor_decal/rust, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor, +/area/offmap/aerostat/inside/xenoarch) +"zt" = ( +/obj/machinery/door/airlock/glass_research{ + req_one_access = null + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/zorrenoffice) +"zu" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"zw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 23 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/airlock/north) +"zx" = ( +/obj/machinery/alarm{ + pixel_y = 26 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/easthall) +"zz" = ( +/obj/structure/bed/chair/bay{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/virology) +"zA" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/flora/pottedplant/crystal, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/zorrenoffice) +"zB" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/rust, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/turf/simulated/floor, +/area/offmap/aerostat/inside/arm/sw) +"zC" = ( +/obj/machinery/door/airlock/external{ + frequency = 1380; + id_tag = "aerostat_s_w_exterior"; + locked = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/airlock/south) +"zD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/vending/tool, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"zE" = ( +/obj/machinery/power/apc{ + dir = 1; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/dark, +/area/offmap/aerostat/inside/lobby) +"zF" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/green, +/obj/machinery/light/floortube{ + dir = 4; + pixel_x = 5 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/atmos) +"zG" = ( +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/southchamb) +"zH" = ( +/turf/simulated/shuttle/wall/voidcraft/green, +/area/offmap/aerostat/inside/misclab) +"zI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/xenoarch) +"zM" = ( +/obj/machinery/door/airlock/external, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/airlock/south) +"zQ" = ( +/obj/effect/floor_decal/industrial/danger{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/xenoarch) +"zR" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/inside/arm/ne) +"zV" = ( +/obj/machinery/door/airlock/glass_research{ + name = "Toxins Lab" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/blue, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/toxins) +"zW" = ( +/obj/machinery/computer/general_air_control/supermatter_core{ + frequency = 1445; + input_tag = "burn_in"; + name = "Burn Chamber Air Control"; + output_tag = "burn_out"; + pressure_setting = 0; + sensors = list("burn_sensor" = "Burn Chamber Sensor") + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"zX" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/blue, +/obj/machinery/door/airlock/external, +/obj/machinery/atmospherics/pipe/simple/hidden/aux, +/obj/effect/map_helper/airlock/door/int_door, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/arm/nw) +"Ab" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/xenoarch) +"Ac" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/shuttle/wall/voidcraft/hard_corner{ + color = "#eacd7c"; + stripe_color = "#00FF00" + }, +/area/offmap/aerostat/inside/arm/se) +"Ad" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/rust, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/turf/simulated/floor, +/area/offmap/aerostat/inside/arm/se) +"Ae" = ( +/obj/machinery/door/airlock/glass_research{ + name = "Xenoarchaeology Storage" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/xenoarch) +"Ah" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/offmap/aerostat/inside/xenoarch) +"Ai" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/table/standard, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/telesci) +"Ak" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/atmos) +"Al" = ( +/obj/machinery/artifact_scanpad, +/turf/simulated/floor/tiled/dark, +/area/offmap/aerostat/inside/xenoarch) +"An" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/box/monkeycubes, +/obj/item/weapon/storage/box/monkeycubes, +/obj/item/weapon/storage/pill_bottle/dylovene, +/obj/item/weapon/storage/pill_bottle/dylovene, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 4; + layer = 3.3; + pixel_x = 26 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/genetics) +"Ao" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/inside/southchamb) +"Ap" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/flora/ausbushes/ppflowers, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/grass, +/area/offmap/aerostat/inside/genetics) +"Aq" = ( +/obj/machinery/door/airlock/glass_research{ + req_one_access = null + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/zorrenoffice) +"Ar" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_research{ + name = "Xenoarchaeology Prep Room" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/xenoarch) +"As" = ( +/obj/machinery/door/airlock/glass_research{ + name = "Atmospherics"; + req_one_access = list(47,10) + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/atmos) +"At" = ( +/obj/effect/floor_decal/industrial/warning/dust, +/obj/structure/table/standard, +/obj/fiftyspawner/steel, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"Au" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/inside/southchamb) +"Aw" = ( +/obj/machinery/air_sensor{ + frequency = 1445; + id_tag = "burn_sensor"; + output = 63 + }, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging, +/obj/machinery/camera/network/research_outpost{ + dir = 8 + }, +/turf/simulated/floor/reinforced/airless, +/area/offmap/aerostat/inside/toxins) +"Ay" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/visible/red, +/obj/machinery/meter, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"Az" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/blue{ + dir = 9 + }, +/turf/simulated/shuttle/wall/voidcraft/green, +/area/offmap/aerostat/inside/powercontrol) +"AB" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/simulated/wall, +/area/offmap/aerostat/inside/toxins) +"AC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"AD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/rust, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor, +/area/offmap/aerostat/inside/arm/ne) +"AE" = ( +/obj/item/weapon/virusdish/random, +/obj/item/weapon/virusdish/random, +/obj/item/weapon/virusdish/random, +/obj/item/weapon/virusdish/random, +/obj/item/weapon/virusdish/random, +/obj/structure/closet/crate/medical{ + name = "Virus Samples" + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/virology) +"AF" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/easthall) +"AI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/obj/machinery/computer/shuttle_control/aerostat_shuttle, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/easthall) +"AK" = ( +/obj/effect/floor_decal/industrial/warning/dust/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/offmap/aerostat/inside/lobby) +"AL" = ( +/obj/machinery/atmospherics/binary/pump/on{ + name = "Air to Distro" + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/atmos) +"AN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/dark, +/area/offmap/aerostat/inside/lobby) +"AP" = ( +/obj/effect/floor_decal/industrial/outline/red, +/obj/structure/target_stake, +/obj/item/target/alien, +/turf/simulated/floor, +/area/offmap/aerostat/inside/firingrange) +"AQ" = ( +/obj/structure/cable/heavyduty{ + 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/techfloor, +/area/offmap/aerostat/inside/westhall) +"AR" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/firingrange) +"AX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/turf/simulated/shuttle/wall/voidcraft/green/virgo2, +/area/offmap/aerostat/inside/arm/se) +"AY" = ( +/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{ + scrub_id = "science_outpost" + }, +/obj/machinery/light, +/turf/simulated/floor/plating, +/area/offmap/aerostat/inside/toxins) +"Bb" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/airlock/north) +"Be" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/southchamb) +"Bi" = ( +/obj/effect/floor_decal/rust, +/obj/effect/decal/cleanable/blood/oil, +/turf/simulated/floor, +/area/offmap/aerostat/inside/arm/ne) +"Bj" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/offmap/aerostat/inside/xenoarch/chamber) +"Bk" = ( +/obj/structure/cable, +/obj/machinery/power/apc{ + dir = 1; + pixel_y = 24 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/dispenser{ + phorontanks = 0 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/xenoarch) +"Bm" = ( +/obj/machinery/camera/network/research_outpost, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/easthall) +"Bo" = ( +/obj/machinery/door/airlock/external{ + frequency = 1089; + icon_state = "door_locked"; + id_tag = "aerostat_door_inner"; + locked = 1 + }, +/obj/effect/map_helper/airlock/door/int_door, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/airlock/east) +"Bp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/wall, +/area/offmap/aerostat/inside/zorrenoffice) +"Bq" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/southchamb) +"Bs" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/blue, +/turf/simulated/shuttle/wall/voidcraft/green, +/area/offmap/aerostat/inside/powercontrol) +"Bv" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/machinery/firealarm{ + dir = 4; + layer = 3.3; + pixel_x = 26 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"Bz" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/inside/westhall) +"BA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 10 + }, +/turf/simulated/shuttle/wall/voidcraft/green, +/area/offmap/aerostat/inside/atmos) +"BE" = ( +/obj/machinery/light/floortube{ + dir = 8; + pixel_x = -6 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/airlock/north) +"BF" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/dark, +/area/offmap/aerostat/inside/lobby) +"BG" = ( +/obj/machinery/atmospherics/pipe/simple/visible/blue{ + dir = 6 + }, +/obj/machinery/camera/network/research_outpost{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"BH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/table/borosilicate, +/turf/simulated/floor/tiled/dark, +/area/offmap/aerostat/inside/lobby) +"BK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/shuttle/wall/voidcraft/green, +/area/offmap/aerostat/inside/airlock/east) +"BO" = ( +/obj/structure/cable/heavyduty{ + icon_state = "0-8" + }, +/obj/structure/cable/heavyduty{ + icon_state = "0-4" + }, +/obj/structure/cable/heavyduty{ + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/bluegrid, +/area/offmap/aerostat/inside/powercontrol) +"BP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/southchamb) +"BR" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/rust, +/obj/machinery/atmospherics/pipe/simple/hidden/blue, +/obj/machinery/atmospherics/pipe/manifold/hidden/aux{ + dir = 8 + }, +/obj/machinery/airlock_sensor{ + dir = 4; + pixel_x = -32 + }, +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/turf/simulated/floor, +/area/offmap/aerostat/inside/arm/nw) +"BS" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/easthall) +"BT" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"BU" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"BV" = ( +/obj/structure/grille, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/inside/arm/se) +"BW" = ( +/obj/machinery/atmospherics/pipe/simple/visible/universal{ + name = "Distro Loop Drain" + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/atmos) +"Ca" = ( +/obj/structure/table/standard, +/obj/item/weapon/folder/white, +/obj/item/weapon/pen/fountain, +/obj/item/device/assembly_holder/timer_igniter, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/item/weapon/weldingtool, +/obj/structure/extinguisher_cabinet{ + pixel_x = 30 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"Cc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/wall, +/area/offmap/aerostat/inside/xenoarch) +"Cd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/northchamb) +"Ce" = ( +/turf/simulated/wall, +/area/offmap/aerostat/inside/atmos) +"Cj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/southchamb) +"Ck" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/obj/effect/floor_decal/rust, +/obj/machinery/airlock_sensor{ + pixel_y = 24 + }, +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8 + }, +/obj/effect/map_helper/airlock/atmos/pump_out_internal, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor, +/area/offmap/aerostat/inside/airlock/west) +"Cl" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/cyan, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/atmos) +"Cm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/northchamb) +"Cu" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/rust, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor, +/area/offmap/aerostat/inside/arm/ne) +"Cw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/power/apc, +/obj/structure/cable, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/xenoarch) +"CA" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 8 + }, +/obj/effect/floor_decal/rust, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 6 + }, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/solars) +"CC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/firealarm{ + layer = 3.3; + pixel_y = -28 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"CE" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"CF" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 6 + }, +/obj/machinery/sparker{ + id = "burn_chamber"; + pixel_x = -24 + }, +/turf/simulated/floor/reinforced/airless, +/area/offmap/aerostat/inside/toxins) +"CI" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 4 + }, +/obj/structure/table/borosilicate, +/turf/simulated/floor/tiled/dark, +/area/offmap/aerostat/inside/lobby) +"CJ" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/blue{ + dir = 9 + }, +/obj/effect/floor_decal/rust, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/solars) +"CK" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/easthall) +"CM" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 23 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"CN" = ( +/obj/structure/table/wooden_reinforced, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/southchamb) +"CO" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/atmos) +"CQ" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1380; + id_tag = null + }, +/obj/effect/map_helper/airlock/atmos/pump_out_internal, +/obj/machinery/camera/network/research_outpost{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"CR" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/rust, +/obj/machinery/door/airlock/maintenance/rnd{ + req_one_access = null + }, +/turf/simulated/floor, +/area/offmap/aerostat/inside/arm/se) +"CT" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/random/firstaid, +/obj/structure/table/borosilicate, +/turf/simulated/floor/tiled/dark, +/area/offmap/aerostat/inside/lobby) +"CV" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/miscstorage) +"Da" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/green{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/atmos) +"Db" = ( +/turf/simulated/shuttle/wall/voidcraft/green/virgo2/nocol, +/area/offmap/aerostat/inside/virology) +"Dd" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/inside/airlock/east) +"De" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/miscstorage) +"Dg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/xenoarch) +"Dh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 4 + }, +/turf/simulated/wall, +/area/offmap/aerostat/inside/toxins) +"Di" = ( +/obj/structure/flora/pottedplant/minitree, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + dir = 8; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/virology) +"Dk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/light/floortube{ + dir = 8; + pixel_x = -6 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/airlock/south) +"Dp" = ( +/obj/structure/sign/department/virology, +/turf/simulated/shuttle/wall/voidcraft/green, +/area/offmap/aerostat/inside/virology) +"Dq" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor, +/area/offmap/aerostat/inside/firingrange) +"Ds" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/offmap/aerostat/inside/xenoarch/chamber) +"Dt" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1380; + id_tag = "aerostat_n_e_pump" + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + frequency = 1380; + id_tag = "aerostat_n_e_airlock"; + pixel_y = 29; + tag_airpump = "aerostat_n_e_pump"; + tag_chamber_sensor = "aerostat_n_e_sensor"; + tag_exterior_door = "aerostat_n_e_exterior"; + tag_exterior_sensor = "aerostat_n_e_sensext"; + tag_interior_door = "aerostat_n_e_interior"; + tag_interior_sensor = "aerostat_n_e_sensint" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor, +/area/offmap/aerostat/inside/airlock/north) +"Du" = ( +/obj/machinery/atmospherics/pipe/tank/nitrogen{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/offmap/aerostat/inside/atmos) +"Dv" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor, +/area/offmap/aerostat/inside/arm/se) +"DC" = ( +/turf/simulated/shuttle/wall/voidcraft/green, +/area/offmap/aerostat/inside/airlock/south) +"DD" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/atmos) +"DE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/miscstorage) +"DF" = ( +/obj/machinery/door/airlock/multi_tile/metal{ + dir = 1; + name = "Zorren Representative Kiosk"; + req_one_access = list(1337) + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/zorrenoffice) +"DG" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/table/reinforced, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/firingrange) +"DH" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"DI" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"DJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/blue{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/aux{ + dir = 4 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"DK" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Toxins Lab"; + req_one_access = list(47) + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/powercontrol) +"DL" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"DM" = ( +/obj/machinery/alarm{ + alarm_id = "anomaly_testing"; + dir = 4; + pixel_x = -23 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/atmos) +"DN" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/xenoarch) +"DO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/power/apc{ + dir = 8; + pixel_x = -22 + }, +/obj/structure/cable, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/telesci) +"DP" = ( +/turf/simulated/shuttle/wall/voidcraft/hard_corner{ + stripe_color = "#00FF00" + }, +/area/offmap/aerostat/inside/airlock/south) +"DU" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1; + frequency = 1380; + id_tag = "aerostat_s_s_pump" + }, +/obj/machinery/airlock_sensor{ + dir = 8; + frequency = 1380; + id_tag = "aerostat_s_s_sensor"; + master_tag = "aerostat_s_s_airlock"; + pixel_x = 25 + }, +/turf/simulated/floor, +/area/offmap/aerostat/inside/airlock/south) +"DV" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/southchamb) +"DY" = ( +/obj/effect/floor_decal/rust, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ + dir = 8 + }, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/solars) +"Eb" = ( +/obj/machinery/portable_atmospherics/powered/pump, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"Eh" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/air, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/southchamb) +"Ek" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/westhall) +"Em" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/binary/pump{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"Ep" = ( +/obj/machinery/door/airlock/external{ + frequency = 1380; + id_tag = "aerostat_n_e_exterior"; + locked = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/airlock/north) +"Er" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/turf/simulated/shuttle/wall/voidcraft/green/virgo2, +/area/offmap/aerostat/inside/arm/sw) +"Es" = ( +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/zorrenoffice) +"Et" = ( +/obj/structure/ore_box, +/turf/simulated/floor/tiled, +/area/offmap/aerostat/inside/drillstorage) +"Eu" = ( +/obj/machinery/atmospherics/portables_connector/aux{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/air, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"Ev" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/inside/arm/sw) +"Ew" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/firingrange) +"Ey" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/offmap/aerostat/inside/misclab) +"EA" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/inside/misclab) +"EC" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/reagent_containers/glass/beaker, +/obj/item/weapon/reagent_containers/glass/beaker, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/virology) +"ED" = ( +/obj/machinery/atmospherics/omni/atmos_filter{ + name = "N2/O2 Filter"; + tag_east = 2; + tag_north = 1; + tag_south = 4; + tag_west = 3 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/atmos) +"EI" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"EK" = ( +/obj/effect/floor_decal/rust, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/solars) +"EL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/shuttle/wall, +/area/shuttle/aerostat) +"EN" = ( +/turf/simulated/shuttle/wall/voidcraft/green, +/area/offmap/aerostat/inside/airlock/west) +"EP" = ( +/obj/structure/table/wooden_reinforced, +/obj/item/weapon/reagent_containers/food/drinks/cup{ + pixel_x = -5; + pixel_y = 4 + }, +/obj/item/weapon/reagent_containers/food/drinks/cup{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/item/weapon/reagent_containers/food/drinks/cup{ + pixel_x = -5; + pixel_y = -4 + }, +/obj/item/weapon/reagent_containers/food/drinks/cup{ + pixel_x = 5; + pixel_y = -4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/southchamb) +"EQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/bluegrid, +/area/offmap/aerostat/inside/powercontrol) +"ER" = ( +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/miscstorage) +"ES" = ( +/obj/machinery/firealarm{ + dir = 4; + layer = 3.3; + pixel_x = 26 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/telesci) +"EV" = ( +/obj/effect/floor_decal/industrial/warning/dust, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"EW" = ( +/obj/structure/table/standard, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/random/toolbox, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/miscstorage) +"EX" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/easthall) +"Fa" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 8 + }, +/obj/random/maintenance/research, +/obj/structure/table/borosilicate, +/turf/simulated/floor/tiled/dark, +/area/offmap/aerostat/inside/lobby) +"Ff" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/offmap/aerostat/inside/lobby) +"Fh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/atmos) +"Fi" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"Fk" = ( +/obj/effect/floor_decal/rust, +/obj/effect/decal/cleanable/cobweb, +/obj/machinery/power/solar_control, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/effect/map_helper/airlock/atmos/pump_out_internal, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8 + }, +/turf/simulated/floor, +/area/offmap/aerostat/inside/arm/se) +"Fm" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/xenoarch) +"Fo" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4 + }, +/obj/effect/map_helper/airlock/atmos/pump_out_internal, +/obj/effect/floor_decal/rust, +/obj/machinery/airlock_sensor{ + dir = 8; + pixel_x = 30 + }, +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/turf/simulated/floor, +/area/offmap/aerostat/inside/arm/sw) +"Fr" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"Fs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/offmap/aerostat/inside/lobby) +"Ft" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/machinery/light/floortube{ + pixel_y = -5 + }, +/obj/machinery/camera/network/research_outpost{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/westhall) +"Fu" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ + dir = 1 + }, +/turf/simulated/floor/reinforced/airless, +/area/offmap/aerostat/inside/toxins) +"Fw" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/black, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"Fy" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/airlock/south) +"FA" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/southchamb) +"FD" = ( +/obj/effect/floor_decal/industrial/warning/dust, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/dark, +/area/offmap/aerostat/inside/lobby) +"FF" = ( +/obj/machinery/camera/network/research_outpost, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"FJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/turf/simulated/shuttle/wall/voidcraft/green, +/area/offmap/aerostat/inside/airlock/west) +"FK" = ( +/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{ + scrub_id = "science_outpost" + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"FL" = ( +/obj/machinery/door/airlock/glass_research{ + req_one_access = null + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/zorrenoffice) +"FS" = ( +/obj/structure/table/reinforced, +/turf/simulated/shuttle/floor/yellow, +/area/shuttle/aerostat) +"FT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/firingrange) +"FU" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/westhall) +"FV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/turf/simulated/shuttle/wall/voidcraft/hard_corner{ + color = "#eacd7c"; + stripe_color = "#00FF00" + }, +/area/offmap/aerostat/inside/arm/ne) +"FW" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 8 + }, +/obj/effect/floor_decal/rust, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/solars) +"FX" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/table/borosilicate, +/turf/simulated/floor/tiled/dark, +/area/offmap/aerostat/inside/lobby) +"FY" = ( +/turf/simulated/shuttle/wall/voidcraft/hard_corner{ + stripe_color = "#00FF00" + }, +/area/offmap/aerostat/inside/misclab) +"FZ" = ( +/obj/machinery/alarm{ + pixel_y = 26 + }, +/turf/simulated/floor/tiled/dark, +/area/offmap/aerostat/inside/xenoarch) +"Gc" = ( +/obj/effect/shuttle_landmark{ + base_area = /area/offmap/aerostat; + base_turf = /turf/unsimulated/floor/sky/virgo2_sky; + docking_controller = "aerostat_n_e_airlock"; + landmark_tag = "aerostat_n_e"; + name = "Virgo 2 Aerostat (North Arm East)" + }, +/turf/unsimulated/floor/sky/virgo2_sky, +/area/offmap/aerostat) +"Gd" = ( +/obj/effect/floor_decal/rust, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/solars) +"Ge" = ( +/obj/effect/shuttle_landmark{ + base_area = /area/offmap/aerostat; + base_turf = /turf/unsimulated/floor/sky/virgo2_sky; + docking_controller = "aerostat_s_e_airlock"; + landmark_tag = "aerostat_s_e"; + name = "Virgo 2 Aerostat (South Arm East)" + }, +/turf/unsimulated/floor/sky/virgo2_sky, +/area/offmap/aerostat) +"Gf" = ( +/obj/effect/floor_decal/rust, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor, +/area/offmap/aerostat/inside/xenoarch) +"Gi" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/suspension_gen, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/xenoarch) +"Gl" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 4 + }, +/obj/random/maintenance/research, +/obj/structure/table/borosilicate, +/turf/simulated/floor/tiled/dark, +/area/offmap/aerostat/inside/lobby) +"Gm" = ( +/obj/machinery/door/airlock/multi_tile/glass, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/powercontrol) +"Gn" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"Gq" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/floor_decal/rust, +/turf/simulated/floor, +/area/offmap/aerostat/inside/arm/se) +"Gr" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/sign/poster{ + dir = 1; + pixel_y = 32 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/easthall) +"Gs" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/machinery/light/floortube{ + dir = 1; + pixel_y = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/westhall) +"Gt" = ( +/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{ + scrub_id = "science_outpost" + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"Gu" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"Gy" = ( +/obj/structure/bed/chair/shuttle{ + dir = 8 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 23 + }, +/turf/simulated/shuttle/floor/yellow, +/area/shuttle/aerostat) +"Gz" = ( +/obj/machinery/airlock_sensor/airlock_exterior/shuttle{ + dir = 10 + }, +/obj/effect/map_helper/airlock/sensor/ext_sensor, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/shuttle/wall/voidcraft/green, +/area/offmap/aerostat/inside/airlock/west) +"GA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/obj/machinery/light/floortube{ + dir = 4; + pixel_x = 5 + }, +/obj/machinery/airlock_sensor/airlock_interior{ + dir = 8; + master_tag = "aerostat_s_e_airlock"; + pixel_x = 24; + tag = "aerostat_s_e_sensint" + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/airlock/south) +"GB" = ( +/turf/simulated/shuttle/wall/voidcraft/green, +/area/offmap/aerostat/inside/powercontrol) +"GC" = ( +/obj/machinery/atmospherics/binary/pump/on{ + dir = 1; + target_pressure = 200 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/inside/toxins) +"GE" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/simulated/wall, +/area/offmap/aerostat/inside/telesci) +"GF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/wall, +/area/offmap/aerostat/inside/xenoarch) +"GG" = ( +/obj/effect/floor_decal/rust, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/solars) +"GI" = ( +/obj/machinery/light_switch{ + dir = 1; + pixel_x = 32; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/xenoarch) +"GK" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/wall, +/area/offmap/aerostat/inside/toxins) +"GL" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/red{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"GN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/zorrenoffice) +"GO" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/folder/white, +/obj/item/weapon/pen, +/obj/item/weapon/paper_bin, +/obj/item/weapon/hand_labeler, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/virology) +"GP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/simulated/wall, +/area/offmap/aerostat/inside/telesci) +"GR" = ( +/obj/structure/closet/crate/science, +/obj/effect/floor_decal/rust, +/turf/simulated/floor, +/area/offmap/aerostat/inside/xenoarch) +"GT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/mining/drill, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/offmap/aerostat/inside/drillstorage) +"GW" = ( +/obj/effect/floor_decal/industrial/danger/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/firealarm{ + layer = 3.3; + pixel_y = -28 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/xenoarch) +"GX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"Ha" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"Hb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/green, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"Hd" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"Hh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/table/standard, +/obj/item/weapon/storage/box/beakers, +/obj/item/weapon/reagent_containers/glass/beaker/large, +/obj/item/weapon/reagent_containers/dropper, +/obj/machinery/reagentgrinder, +/obj/structure/reagent_dispensers/acid{ + pixel_x = 31 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/xenoarch) +"Hj" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/zorrenoffice) +"Hl" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/machinery/light/floortube{ + dir = 1; + pixel_y = 5 + }, +/obj/machinery/alarm{ + pixel_y = 26 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/easthall) +"Ho" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/zorrenoffice) +"Hp" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1 + }, +/obj/effect/map_helper/airlock/atmos/pump_out_internal, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + cycle_to_external_air = 1; + frequency = 1380; + id_tag = "aerostat_shuttle_airlock"; + pixel_y = 29 + }, +/turf/simulated/shuttle/floor/yellow/airless, +/area/shuttle/aerostat) +"Hq" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/westhall) +"Hs" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/machinery/camera/network/research_outpost{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/firingrange) +"Ht" = ( +/turf/simulated/shuttle/wall/voidcraft/green, +/area/offmap/aerostat/inside/genetics) +"Hu" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/alarm{ + alarm_id = "anomaly_testing"; + dir = 4; + pixel_x = -23 + }, +/turf/simulated/floor/tiled/dark, +/area/offmap/aerostat/inside/xenoarch/chamber) +"Hv" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/inside/southchamb) +"Hw" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/glass_research{ + name = "Miscellaneous Storage"; + req_one_access = null + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/miscstorage) +"Hx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/camera/network/research_outpost{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/xenoarch) +"Hy" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/northchamb) +"Hz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/bluegrid, +/area/offmap/aerostat/inside/powercontrol) +"HA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/virology) +"HE" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/virology) +"HH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/westhall) +"HJ" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/firingrange) +"HK" = ( +/obj/structure/table/wooden_reinforced, +/turf/simulated/floor/glass/reinforced{ + color = "#eacd7c" + }, +/area/offmap/aerostat/glassgetsitsownarea) +"HL" = ( +/obj/machinery/washing_machine, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/xenoarch) +"HM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/telesci) +"HN" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/shutters{ + dir = 2; + id = "zorrenpartyroom"; + layer = 3.3; + name = "shutter" + }, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/inside/zorrenoffice) +"HO" = ( +/obj/structure/flora/pottedplant/subterranean, +/obj/machinery/camera/network/research_outpost{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/xenoarch) +"HQ" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/inside/southchamb) +"HR" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/miscstorage) +"HS" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/westhall) +"HT" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_external/public, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/airlock/north) +"HU" = ( +/obj/machinery/atmospherics/binary/pump/on{ + dir = 8 + }, +/obj/machinery/power/apc, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"HV" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/red, +/obj/machinery/firealarm{ + dir = 4; + layer = 3.3; + pixel_x = 26 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"HY" = ( +/obj/machinery/door/airlock/glass_external{ + locked = 1 + }, +/obj/effect/map_helper/airlock/door/ext_door, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/steel_ridged, +/area/shuttle/aerostat) +"Id" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"Ig" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/turf/simulated/shuttle/wall/voidcraft/green/virgo2/nocol, +/area/offmap/aerostat/inside/airlock/east) +"Ih" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"Ii" = ( +/obj/machinery/camera/network/research_outpost{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/atmos) +"Ij" = ( +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/camera/network/research_outpost{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/xenoarch) +"Im" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 4 + }, +/obj/effect/floor_decal/rust, +/obj/machinery/atmospherics/pipe/manifold/visible/blue{ + dir = 8 + }, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/solars) +"In" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/wall, +/area/offmap/aerostat/inside/atmos) +"Ip" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/xenoarch) +"Ir" = ( +/obj/machinery/artifact_analyser, +/obj/machinery/camera/network/research_outpost{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/offmap/aerostat/inside/xenoarch) +"Is" = ( +/obj/machinery/atmospherics/valve, +/turf/simulated/floor/tiled, +/area/offmap/aerostat/inside/xenoarch) +"It" = ( +/turf/simulated/shuttle/wall/voidcraft/green, +/area/offmap/aerostat/inside/arm/se) +"Iu" = ( +/obj/structure/table/standard, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/telesci) +"Iw" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 8 + }, +/obj/effect/floor_decal/rust, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/airlock_sensor/airlock_exterior{ + dir = 4; + pixel_x = -32 + }, +/obj/effect/map_helper/airlock/sensor/ext_sensor, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/inside/arm/se) +"Iy" = ( +/obj/machinery/airlock_sensor/airlock_exterior{ + dir = 6; + frequency = 1380; + id_tag = "aerostat_s_e_sensext"; + master_tag = "aerostat_s_e_airlock" + }, +/turf/simulated/shuttle/wall/voidcraft/green, +/area/offmap/aerostat/inside/airlock/south) +"IA" = ( +/obj/machinery/disease2/diseaseanalyser, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/virology) +"IB" = ( +/obj/structure/grille, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/inside/airlock/south) +"ID" = ( +/turf/simulated/wall/r_wall, +/area/offmap/aerostat/inside/firingrange) +"IF" = ( +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/offmap/aerostat/inside/lobby) +"IH" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/red{ + dir = 4; + initialize_directions = 11 + }, +/obj/machinery/atmospherics/unary/outlet_injector{ + dir = 4; + frequency = 1445; + id = "burn_in"; + volume_rate = 700 + }, +/turf/simulated/floor/reinforced/airless, +/area/offmap/aerostat/inside/toxins) +"II" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable, +/obj/machinery/power/apc{ + dir = 8; + pixel_x = -22 + }, +/obj/machinery/mining/drill, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/offmap/aerostat/inside/drillstorage) +"IK" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/dark, +/area/offmap/aerostat/inside/lobby) +"IM" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/inside/southchamb) +"IN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/obj/machinery/atmospherics/binary/pump/on{ + name = "N2O pump" + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/atmos) +"IO" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/inside/virology) +"IP" = ( +/turf/simulated/shuttle/wall/voidcraft/hard_corner{ + stripe_color = "#00FF00" + }, +/area/offmap/aerostat/inside/genetics) +"IS" = ( +/obj/machinery/telepad, +/turf/simulated/floor/reinforced, +/area/offmap/aerostat/inside/telesci) +"IV" = ( +/obj/machinery/airlock_sensor{ + dir = 1; + frequency = 1380; + id_tag = "aerostat_n_w_sensor"; + master_tag = "aerostat_n_w_airlock"; + pixel_y = -25 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4; + frequency = 1380; + id_tag = "aerostat_n_w_pump" + }, +/turf/simulated/floor, +/area/offmap/aerostat/inside/airlock/north) +"IY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/turf/simulated/shuttle/wall/voidcraft/hard_corner{ + color = "#eacd7c"; + stripe_color = "#00FF00" + }, +/area/offmap/aerostat/inside/arm/sw) +"IZ" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/inside/arm/sw) +"Jb" = ( +/obj/structure/bed/chair/shuttle{ + dir = 1 + }, +/turf/simulated/shuttle/floor/yellow, +/area/shuttle/aerostat) +"Jc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/offmap/aerostat/inside/drillstorage) +"Jd" = ( +/obj/structure/grille, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/inside/airlock/south) +"Je" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -23 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/virology) +"Ji" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/rust, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/maintenance/rnd{ + req_one_access = null + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/arm/se) +"Jn" = ( +/obj/random/maintenance/research, +/obj/structure/table/borosilicate, +/turf/simulated/floor/tiled/dark, +/area/offmap/aerostat/inside/lobby) +"Jo" = ( +/turf/simulated/shuttle/wall/voidcraft/green, +/area/offmap/aerostat/inside/westhall) +"Jp" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/red{ + dir = 1 + }, +/obj/machinery/meter, +/obj/machinery/button/ignition{ + id = "burn_chamber"; + pixel_y = 28 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"Jq" = ( +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/xenoarch) +"Jr" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor, +/area/offmap/aerostat/inside/arm/ne) +"Ju" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/wall, +/area/offmap/aerostat/inside/toxins) +"Jz" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/inside/airlock/south) +"JA" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/xenoarch) +"JB" = ( +/obj/machinery/door/airlock/external{ + frequency = 1380; + id_tag = "aerostat_n_w_interior"; + locked = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/airlock/north) +"JD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/glass_research{ + name = "Toxins Lab" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/toxins) +"JE" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/alarm{ + pixel_y = 26 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/easthall) +"JG" = ( +/obj/structure/metal_edge, +/turf/unsimulated/floor/sky/virgo2_sky, +/area/offmap/aerostat) +"JH" = ( +/obj/machinery/airlock_sensor{ + dir = 1; + frequency = 1380; + id_tag = "aerostat_s_w_sensor"; + master_tag = "aerostat_s_w_airlock"; + pixel_y = -25 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4; + frequency = 1380; + id_tag = "aerostat_s_w_pump" + }, +/turf/simulated/floor, +/area/offmap/aerostat/inside/airlock/south) +"JI" = ( +/obj/effect/floor_decal/rust, +/obj/structure/closet/crate/science, +/turf/simulated/floor, +/area/offmap/aerostat/inside/xenoarch) +"JJ" = ( +/obj/structure/grille, +/obj/structure/window/phoronreinforced{ + dir = 8 + }, +/obj/structure/window/phoronreinforced/full{ + icon_state = "phoronwindow0" + }, +/turf/simulated/floor/reinforced/airless, +/area/offmap/aerostat/inside/toxins) +"JM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"JP" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/easthall) +"JQ" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/flora/pottedplant/minitree, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/offmap/aerostat/inside/lobby) +"JR" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/virology) +"JS" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/southchamb) +"JT" = ( +/obj/machinery/atmospherics/valve, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"JV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"JX" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/dark, +/area/offmap/aerostat/inside/lobby) +"JY" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/xenoarch) +"JZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/light_switch{ + pixel_y = 25 + }, +/turf/simulated/wall, +/area/offmap/aerostat/inside/telesci) +"Ka" = ( +/turf/simulated/shuttle/wall/voidcraft/hard_corner, +/area/offmap/aerostat/inside/genetics) +"Kc" = ( +/obj/machinery/door/airlock/external{ + frequency = 1380; + id_tag = "aerostat_s_s_exterior"; + locked = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/airlock/south) +"Kd" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/flora/pottedplant/subterranean, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/southchamb) +"Kh" = ( +/obj/effect/floor_decal/industrial/warning/dust/corner, +/turf/simulated/floor/tiled/dark, +/area/offmap/aerostat/inside/lobby) +"Ki" = ( +/obj/machinery/door/airlock/glass_external{ + locked = 1 + }, +/obj/effect/map_helper/airlock/door/int_door, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/steel_ridged, +/area/shuttle/aerostat) +"Kj" = ( +/obj/structure/table/standard, +/obj/item/device/analyzer, +/obj/machinery/camera/network/research_outpost{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"Kk" = ( +/obj/machinery/atmospherics/unary/outlet_injector{ + dir = 8; + frequency = 1441; + id = "atmos_out"; + use_power = 1 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/inside/atmos) +"Ko" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/southchamb) +"Kq" = ( +/obj/structure/bed/chair/shuttle{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/shuttle/floor/yellow, +/area/shuttle/aerostat) +"Kv" = ( +/obj/machinery/button/remote/blast_door{ + id = telesci_blast; + name = "Blast Door Control"; + pixel_x = 25 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/telesci) +"Kw" = ( +/obj/machinery/atmospherics/unary/heat_exchanger{ + dir = 8 + }, +/obj/structure/window/basic{ + dir = 8 + }, +/obj/structure/window/basic{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/toxins) +"Kz" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/offmap/aerostat/inside/misclab) +"KA" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/westhall) +"KC" = ( +/obj/machinery/alarm{ + pixel_y = 26 + }, +/turf/simulated/floor/tiled/dark, +/area/offmap/aerostat/inside/lobby) +"KD" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_research{ + name = "Toxins Lab" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/toxins) +"KE" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ + dir = 8 + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 4; + pixel_x = 28 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor, +/area/offmap/aerostat/inside/arm/nw) +"KH" = ( +/obj/machinery/airlock_sensor/airlock_exterior{ + dir = 6; + frequency = 1380; + id_tag = "aerostat_n_w_sensext"; + master_tag = "aerostat_n_w_airlock" + }, +/turf/simulated/shuttle/wall/voidcraft/green, +/area/offmap/aerostat/inside/airlock/north) +"KI" = ( +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/zorrenoffice) +"KJ" = ( +/obj/machinery/atmospherics/pipe/simple/insulated{ + dir = 9 + }, +/obj/effect/map_helper/airlock/sensor/ext_sensor, +/obj/machinery/airlock_sensor/airlock_exterior{ + dir = 8; + pixel_x = 25 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/inside/toxins) +"KK" = ( +/turf/simulated/shuttle/wall/voidcraft/green, +/area/offmap/aerostat/inside/southchamb) +"KM" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/medical{ + name = "Virology Isolation Room"; + req_access = list(39); + req_one_access = null + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/virology) +"KN" = ( +/turf/simulated/shuttle/wall/voidcraft/hard_corner{ + stripe_color = "#00FF00" + }, +/area/offmap/aerostat/inside/arm/ne) +"KP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/atmos) +"KS" = ( +/obj/machinery/meter, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/visible, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"KW" = ( +/obj/effect/floor_decal/industrial/warning/dust, +/obj/machinery/door/airlock/external{ + frequency = null; + id_tag = null; + locked = 1 + }, +/obj/effect/map_helper/airlock/door/int_door, +/obj/machinery/atmospherics/pipe/manifold/hidden, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/airlock/west) +"KZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/wall, +/area/offmap/aerostat/inside/xenoarch) +"Ld" = ( +/turf/simulated/floor, +/area/offmap/aerostat/inside/firingrange) +"Lf" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/xenoarch) +"Lg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/random/firstaid, +/obj/random/maintenance/research, +/obj/structure/sign/painting/public{ + pixel_x = -30 + }, +/obj/structure/table/borosilicate, +/turf/simulated/floor/tiled/dark, +/area/offmap/aerostat/inside/lobby) +"Lj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 9 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"Ln" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/effect/floor_decal/rust, +/obj/structure/closet/crate, +/obj/random/maintenance/engineering, +/obj/random/maintenance/engineering, +/obj/random/medical/pillbottle, +/turf/simulated/floor, +/area/offmap/aerostat/inside/arm/ne) +"Lo" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/airlock/north) +"Lq" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/obj/effect/floor_decal/rust, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/offmap/aerostat/inside/westhall) +"Ls" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/door/airlock/maintenance/rnd{ + req_one_access = null + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/westhall) +"Lt" = ( +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/westhall) +"Lu" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/reinforced, +/area/offmap/aerostat/inside/telesci) +"Ly" = ( +/obj/effect/floor_decal/rust, +/obj/effect/floor_decal/industrial/outline/red, +/obj/structure/anomaly_container, +/turf/simulated/floor, +/area/offmap/aerostat/inside/xenoarch) +"LB" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/structure/grille, +/obj/machinery/door/firedoor/glass, +/obj/structure/window/reinforced/full, +/turf/simulated/floor, +/area/offmap/aerostat/inside/xenoarch/chamber) +"LD" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor, +/area/offmap/aerostat/inside/arm/ne) +"LF" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/westhall) +"LH" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -24 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/zorrenoffice) +"LK" = ( +/turf/simulated/shuttle/wall/voidcraft/green, +/area/offmap/aerostat/inside/arm/ne) +"LR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/blue, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/wall, +/area/offmap/aerostat/inside/toxins) +"LS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/xenoarch) +"LT" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/floor_decal/rust, +/turf/simulated/floor, +/area/offmap/aerostat/inside/arm/se) +"LW" = ( +/obj/effect/shuttle_landmark{ + base_area = /area/offmap/aerostat; + base_turf = /turf/unsimulated/floor/sky/virgo2_sky; + docking_controller = "aerostat_s_w_airlock"; + landmark_tag = "aerostat_s_w"; + name = "Virgo 2 Aerostat (South Arm West)" + }, +/turf/unsimulated/floor/sky/virgo2_sky, +/area/offmap/aerostat) +"LY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/wall, +/area/offmap/aerostat/inside/arm/ne) +"LZ" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 9 + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/turf/simulated/floor, +/area/offmap/aerostat/inside/toxins) +"Ma" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/easthall) +"Mb" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor, +/area/offmap/aerostat/inside/arm/ne) +"Mc" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/camera/network/research_outpost{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/miscstorage) +"Md" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/westhall) +"Mf" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/firingrange) +"Mg" = ( +/obj/machinery/atmospherics/unary/heater{ + dir = 1; + icon_state = "heater" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 10 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"Mi" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4; + frequency = 1380; + id_tag = "aerostat_s_w_pump" + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + frequency = 1380; + id_tag = "aerostat_s_w_airlock"; + pixel_y = 29; + tag_airpump = "aerostat_s_w_pump"; + tag_chamber_sensor = "aerostat_s_w_sensor"; + tag_exterior_door = "aerostat_s_w_exterior"; + tag_exterior_sensor = "aerostat_s_w_sensext"; + tag_interior_door = "aerostat_s_w_interior"; + tag_interior_sensor = "aerostat_s_w_sensint" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor, +/area/offmap/aerostat/inside/airlock/south) +"Mj" = ( +/turf/simulated/floor/bluegrid, +/area/offmap/aerostat/inside/powercontrol) +"Mk" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/flora/pottedplant/mysterious, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/zorrenoffice) +"Ml" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/offmap/aerostat/inside/misclab) +"Mn" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/xenoarch) +"Mp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/wall, +/area/offmap/aerostat/inside/xenoarch) +"Ms" = ( +/obj/effect/floor_decal/industrial/warning/dust, +/obj/machinery/door/airlock/external{ + frequency = null; + id_tag = null; + locked = 1 + }, +/obj/effect/map_helper/airlock/door/ext_door, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/airlock/west) +"Mu" = ( +/obj/machinery/atmospherics/unary/freezer{ + icon_state = "freezer" + }, +/obj/structure/sign/painting/public{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"Mv" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"Mw" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/rust, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -23 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor, +/area/offmap/aerostat/inside/arm/sw) +"Mz" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/turf/simulated/shuttle/wall/voidcraft/green/virgo2, +/area/offmap/aerostat/inside/arm/nw) +"MA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/firingrange) +"MB" = ( +/obj/structure/sign/painting/public{ + pixel_y = 30 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/genetics) +"MC" = ( +/obj/effect/floor_decal/industrial/warning/dust, +/turf/simulated/floor/tiled/dark, +/area/offmap/aerostat/inside/lobby) +"ME" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/virology) +"MH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"ML" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/xenoarch) +"MM" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"MO" = ( +/obj/machinery/atmospherics/pipe/tank/nitrous_oxide{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/atmos) +"MR" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/wall, +/area/offmap/aerostat/inside/firingrange) +"MW" = ( +/obj/machinery/atmospherics/pipe/simple/insulated{ + dir = 9 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/inside/toxins) +"MZ" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/southchamb) +"Na" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/obj/machinery/door/airlock/external{ + icon_state = "door_locked"; + id_tag = null; + locked = 1 + }, +/obj/effect/map_helper/airlock/door/ext_door, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/airlock/west) +"Ne" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/firingrange) +"Ng" = ( +/obj/structure/sign/painting/public{ + pixel_x = 30 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/northchamb) +"Nh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/obj/machinery/power/apc, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/airlock/east) +"Ni" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/wall, +/area/offmap/aerostat/inside/toxins) +"Nk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/wall, +/area/offmap/aerostat/inside/genetics) +"Nl" = ( +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/firingrange) +"Nm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/southchamb) +"Nn" = ( +/turf/simulated/floor/tiled, +/area/offmap/aerostat/inside/drillstorage) +"No" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/shuttle/wall/hard_corner, +/area/shuttle/aerostat) +"Np" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/xenoarch) +"Nq" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4 + }, +/obj/effect/map_helper/airlock/atmos/pump_out_internal, +/obj/effect/floor_decal/industrial/warning/dust, +/turf/simulated/shuttle/floor/yellow/airless, +/area/shuttle/aerostat) +"Ns" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/grass, +/area/offmap/aerostat/inside/genetics) +"Nu" = ( +/obj/machinery/atmospherics/pipe/simple/visible/blue{ + dir = 5 + }, +/obj/machinery/light, +/turf/simulated/floor/plating, +/area/offmap/aerostat/inside/toxins) +"Nw" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/table/standard, +/obj/random/firstaid, +/obj/item/weapon/storage/firstaid, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/miscstorage) +"Ny" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/northchamb) +"NA" = ( +/obj/effect/floor_decal/industrial/warning/cee{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/greengrid, +/area/offmap/aerostat/inside/toxins) +"NC" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 6 + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/turf/simulated/floor, +/area/offmap/aerostat/inside/toxins) +"NE" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/southchamb) +"NH" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{ + scrub_id = "science_outpost" + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"NJ" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/firingrange) +"NL" = ( +/turf/simulated/wall, +/area/offmap/aerostat/inside/arm/ne) +"NM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/xenoarch) +"NN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/turf/simulated/shuttle/wall/voidcraft/green, +/area/offmap/aerostat/inside/atmos) +"NO" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/southchamb) +"NP" = ( +/turf/simulated/wall, +/area/offmap/aerostat/inside/misclab) +"NQ" = ( +/obj/effect/floor_decal/rust, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 10 + }, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/solars) +"NT" = ( +/obj/structure/closet/excavation, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/xenoarch) +"NU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"NV" = ( +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/westhall) +"NW" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/sign/directions/science/toxins{ + dir = 1; + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/westhall) +"NX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/southchamb) +"NY" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/virology) +"NZ" = ( +/turf/simulated/shuttle/wall/voidcraft/green, +/area/offmap/aerostat/inside/xenoarch/chamber) +"Oa" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/maintenance/rnd{ + req_one_access = null + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/arm/ne) +"Ob" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/dark, +/area/offmap/aerostat/inside/xenoarch/chamber) +"Oc" = ( +/obj/machinery/light_switch{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/dark, +/area/offmap/aerostat/inside/lobby) +"Og" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/xenoarch) +"Oj" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/rust, +/obj/machinery/door/airlock/external, +/obj/effect/map_helper/airlock/door/ext_door, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/arm/sw) +"Ol" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/flora/pottedplant/unusual, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/telesci) +"Op" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"Os" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor/glass, +/obj/structure/window/reinforced/full, +/turf/simulated/floor, +/area/offmap/aerostat/inside/xenoarch/chamber) +"Ot" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/black{ + dir = 4 + }, +/obj/machinery/door/blast/regular{ + dir = 2; + id = "burn_chamber_p"; + name = "Burn Chamber Purge" + }, +/turf/simulated/floor/reinforced/airless, +/area/offmap/aerostat/inside/toxins) +"Ou" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/rust, +/obj/machinery/atmospherics/pipe/simple/hidden/blue, +/obj/machinery/atmospherics/pipe/simple/hidden/aux, +/turf/simulated/floor, +/area/offmap/aerostat/inside/arm/nw) +"Ov" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 10 + }, +/turf/simulated/wall, +/area/offmap/aerostat/inside/toxins) +"Ox" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"Oy" = ( +/obj/machinery/door/airlock/glass_research{ + name = "Xenoarchaeology" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/toxins) +"Oz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"OA" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"OD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/table/reinforced, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/firingrange) +"OE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/table/standard, +/obj/item/device/gps{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/device/gps{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/device/gps{ + pixel_x = 1; + pixel_y = -1 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/telesci) +"OF" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/table/rack/shelf, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/zorrenoffice) +"OG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/southchamb) +"OI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_research{ + name = "Miscellaneous Lab" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/misclab) +"OJ" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/xenoarch) +"OL" = ( +/obj/structure/bed/chair/comfy/black, +/turf/simulated/floor/glass/reinforced{ + color = "#eacd7c" + }, +/area/offmap/aerostat/glassgetsitsownarea) +"OM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/wall, +/area/offmap/aerostat/inside/toxins) +"ON" = ( +/obj/effect/floor_decal/rust, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/solars) +"OO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/atmos) +"OP" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/medical{ + name = "Virology Lab"; + req_access = list(39); + req_one_access = null + }, +/obj/machinery/door/blast/regular/open{ + id = 2; + name = "Virology Emergency Quarantine" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/virology) +"OR" = ( +/obj/machinery/power/apc{ + dir = 8; + pixel_x = -22 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/airlock/north) +"OU" = ( +/obj/structure/shuttle/engine/propulsion, +/turf/simulated/shuttle/plating/carry, +/area/shuttle/aerostat) +"OW" = ( +/obj/machinery/atmospherics/unary/freezer{ + icon_state = "freezer" + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"OX" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"OY" = ( +/obj/machinery/light/floortube{ + dir = 8; + pixel_x = -6 + }, +/turf/simulated/floor/tiled/dark, +/area/offmap/aerostat/inside/lobby) +"Pa" = ( +/turf/simulated/floor/grass, +/area/offmap/aerostat/inside/genetics) +"Pe" = ( +/obj/machinery/atmospherics/binary/pump, +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"Ph" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/dispenser, +/obj/machinery/alarm{ + pixel_y = 26 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"Pi" = ( +/obj/structure/closet/walllocker_double/medical/west, +/obj/structure/table/reinforced, +/obj/item/weapon/soap, +/obj/item/weapon/storage/box/gloves, +/obj/item/weapon/storage/box/masks, +/obj/item/weapon/storage/box/beakers, +/obj/item/weapon/storage/box/beakers, +/obj/item/weapon/storage/fancy/vials, +/obj/item/weapon/storage/box/syringes, +/obj/item/device/antibody_scanner, +/obj/item/weapon/storage/box/syringes, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/virology) +"Pl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/northchamb) +"Po" = ( +/obj/machinery/light/floortube{ + pixel_y = -5 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/easthall) +"Pq" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"Pr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/blue, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/filingcabinet/filingcabinet, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"Ps" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/external, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/map_helper/airlock/door/int_door, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/arm/ne) +"Py" = ( +/obj/effect/floor_decal/rust, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4; + name = "Exterior Air Scrubber" + }, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/inside/toxins) +"PA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/atmos) +"PD" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/airlock/north) +"PG" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/sign/poster{ + dir = 8; + pixel_x = -32 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/miscstorage) +"PJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + dir = 1; + pixel_y = 24 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/southchamb) +"PK" = ( +/obj/structure/table/reinforced, +/obj/machinery/camera/network/research_outpost{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/virology) +"PN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/atmos) +"PP" = ( +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"PQ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/turf/simulated/shuttle/floor/yellow, +/area/shuttle/aerostat) +"PR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/alarm{ + pixel_y = 26 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/westhall) +"PS" = ( +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/inside/toxins) +"PU" = ( +/obj/structure/closet/secure_closet/xenoarchaeologist, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/xenoarch) +"PX" = ( +/obj/machinery/atmospherics/portables_connector/aux{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/air, +/obj/machinery/camera/network/research_outpost{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"Qa" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"Qb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/sign/directions/science/xenoarch{ + dir = 4; + pixel_y = 12 + }, +/obj/structure/sign/directions/science/toxins{ + dir = 8; + pixel_y = 6 + }, +/turf/simulated/wall, +/area/offmap/aerostat/inside/toxins) +"Qd" = ( +/turf/simulated/wall, +/area/offmap/aerostat/inside/toxins) +"Qe" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/light_switch{ + pixel_y = 24 + }, +/obj/structure/flora/pottedplant/crystal, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/firingrange) +"Qg" = ( +/obj/structure/lattice, +/turf/unsimulated/floor/sky/virgo2_sky, +/area/offmap/aerostat) +"Qh" = ( +/obj/machinery/vending/phoronresearch{ + name = "Toximate 2556"; + products = list(/obj/item/device/transfer_valve = 3, /obj/item/device/assembly/timer = 6, /obj/item/device/assembly/signaler = 6, /obj/item/device/assembly/prox_sensor = 6, /obj/item/device/assembly/igniter = 12) + }, +/obj/machinery/camera/network/research_outpost{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"Qk" = ( +/obj/effect/floor_decal/rust, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/solars) +"Qm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/wall, +/area/offmap/aerostat/inside/toxins) +"Qq" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/inside/drillstorage) +"Qr" = ( +/obj/machinery/atmospherics/omni/atmos_filter{ + name = "N2O Filter"; + tag_east = 7; + tag_north = 1; + tag_south = 2 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/atmos) +"Qs" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/easthall) +"Qu" = ( +/obj/machinery/airlock_sensor{ + dir = 1; + frequency = 1380; + id_tag = "aerostat_n_e_sensor"; + master_tag = "aerostat_n_e_airlock"; + pixel_y = -25 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1380; + id_tag = "aerostat_n_e_pump" + }, +/turf/simulated/floor, +/area/offmap/aerostat/inside/airlock/north) +"Qv" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/effect/floor_decal/rust, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/solars) +"Qy" = ( +/obj/machinery/door/airlock/glass_external{ + locked = 1 + }, +/obj/effect/map_helper/airlock/door/int_door, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/shuttle/aerostat) +"Qz" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/floor_decal/rust, +/turf/simulated/floor, +/area/offmap/aerostat/inside/westhall) +"QA" = ( +/obj/structure/table/standard, +/obj/item/weapon/anobattery, +/obj/item/weapon/anobattery{ + pixel_x = 5; + pixel_y = 2 + }, +/obj/item/weapon/anobattery{ + pixel_x = -4; + pixel_y = 3 + }, +/obj/item/weapon/anobattery{ + pixel_x = -5; + pixel_y = -3 + }, +/obj/item/weapon/tool/screwdriver, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/xenoarch) +"QE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/atmos) +"QH" = ( +/obj/structure/closet/firecloset, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"QI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/turf/simulated/shuttle/wall/voidcraft/green/virgo2, +/area/offmap/aerostat/inside/arm/sw) +"QK" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/zorrenoffice) +"QL" = ( +/obj/machinery/atmospherics/binary/pump, +/obj/effect/floor_decal/industrial/danger{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/xenoarch) +"QO" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible/blue, +/obj/machinery/meter, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"QP" = ( +/obj/machinery/atmospherics/pipe/vent/high_volume, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/inside/toxins) +"QQ" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/flora/pottedplant/mysterious, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/zorrenoffice) +"QT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + frequency = 1380; + id_tag = "aerostat_n_e_interior"; + locked = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/airlock/north) +"QU" = ( +/obj/structure/grille, +/obj/structure/window/phoronreinforced/full{ + icon_state = "phoronwindow0" + }, +/obj/structure/window/phoronreinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 9 + }, +/turf/simulated/floor/reinforced/airless, +/area/offmap/aerostat/inside/toxins) +"QV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/green, +/obj/machinery/firealarm{ + dir = 4; + layer = 3.3; + pixel_x = 26 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"QW" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/machinery/power/apc{ + dir = 4; + pixel_x = 28 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/dark, +/area/offmap/aerostat/inside/xenoarch/chamber) +"QX" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/southchamb) +"QZ" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/inside/arm/nw) +"Ra" = ( +/obj/machinery/airlock_sensor/airlock_exterior{ + dir = 10; + frequency = 1380; + id_tag = "aerostat_n_e_sensext"; + master_tag = "aerostat_n_e_airlock" + }, +/turf/simulated/shuttle/wall/voidcraft/green, +/area/offmap/aerostat/inside/airlock/north) +"Rb" = ( +/turf/simulated/wall, +/area/offmap/aerostat/inside/genetics) +"Rd" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/offmap/aerostat/inside/xenoarch/chamber) +"Re" = ( +/obj/machinery/light/floortube{ + dir = 1; + pixel_y = 5 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/westhall) +"Rf" = ( +/turf/simulated/shuttle/wall/voidcraft/hard_corner, +/area/offmap/aerostat/inside/arm/se) +"Ri" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/atmos) +"Rj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/southchamb) +"Rk" = ( +/obj/machinery/door/airlock/glass_external/public, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/airlock/south) +"Rl" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/obj/effect/floor_decal/rust, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4 + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + cycle_to_external_air = 1; + frequency = 1380; + id_tag = "aerostat_west_airlock"; + pixel_y = 29 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor, +/area/offmap/aerostat/inside/airlock/west) +"Rm" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/firingrange) +"Rn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/obj/machinery/light/floortube{ + dir = 8; + pixel_x = -6 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/airlock_sensor/airlock_interior{ + dir = 4; + master_tag = "aerostat_n_w_airlock"; + pixel_x = -32; + tag = "aerostat_n_w_sensint" + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/airlock/north) +"Rp" = ( +/obj/machinery/light/floortube{ + dir = 1; + pixel_y = 5 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/easthall) +"Rq" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 4 + }, +/obj/effect/floor_decal/rust, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/map_helper/airlock/sensor/ext_sensor, +/obj/machinery/airlock_sensor/airlock_exterior{ + dir = 8; + pixel_x = 32 + }, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/inside/arm/sw) +"Rr" = ( +/turf/simulated/shuttle/wall/voidcraft/green, +/area/offmap/aerostat/inside/toxins) +"Rs" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/light/floortube{ + dir = 4; + pixel_x = 5 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/airlock/south) +"Rt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/turf/simulated/shuttle/wall/voidcraft/green/virgo2, +/area/offmap/aerostat/inside/arm/sw) +"Ru" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/zorrenoffice) +"Rx" = ( +/obj/machinery/airlock_sensor/airlock_exterior{ + dir = 10; + frequency = 1380; + id_tag = "aerostat_s_w_sensext"; + master_tag = "aerostat_s_w_airlock" + }, +/turf/simulated/shuttle/wall/voidcraft/green, +/area/offmap/aerostat/inside/airlock/south) +"Ry" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/shuttle/wall/voidcraft/hard_corner, +/area/offmap/aerostat/inside/toxins) +"RA" = ( +/obj/effect/floor_decal/rust, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 5 + }, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/solars) +"RD" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/wall, +/area/offmap/aerostat/inside/miscstorage) +"RE" = ( +/turf/simulated/wall, +/area/offmap/aerostat/inside/arm/se) +"RF" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/easthall) +"RH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + frequency = 1380; + id_tag = "aerostat_s_w_interior"; + locked = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/airlock/south) +"RI" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"RK" = ( +/obj/effect/floor_decal/rust, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 9 + }, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/solars) +"RL" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/camera/network/research_outpost{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/item/clothing/glasses/goggles, +/obj/item/clothing/ears/earmuffs, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/firingrange) +"RM" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/easthall) +"RN" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/turf/simulated/shuttle/wall/voidcraft/green/virgo2, +/area/offmap/aerostat/inside/arm/se) +"RO" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/rust, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor, +/area/offmap/aerostat/inside/arm/se) +"RP" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/radiocarbon_spectrometer, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/xenoarch) +"RU" = ( +/obj/structure/sign/poster{ + dir = 8; + pixel_x = -32 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/offmap/aerostat/inside/xenoarch) +"RV" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/shuttle/floor/yellow, +/area/shuttle/aerostat) +"RW" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/table/reinforced, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/firingrange) +"Sa" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/machinery/camera/network/research_outpost, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"Sb" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/machinery/camera/network/research_outpost{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/westhall) +"Sd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/turf/simulated/shuttle/wall/voidcraft/green/virgo2, +/area/offmap/aerostat/inside/arm/ne) +"Si" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_external/public, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/airlock/north) +"Sl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/westhall) +"So" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 30 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"Sp" = ( +/obj/machinery/airlock_sensor/airlock_exterior{ + dir = 5; + frequency = 1380; + id_tag = "aerostat_n_n_sensext"; + master_tag = "aerostat_n_n_airlock" + }, +/turf/simulated/shuttle/wall/voidcraft/green, +/area/offmap/aerostat/inside/airlock/north) +"Sr" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"Sv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"Sw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/glass_research{ + name = "Toxins Lab" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/toxins) +"SC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/window/reinforced/full, +/obj/structure/grille, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/virology) +"SE" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"SG" = ( +/obj/effect/floor_decal/rust, +/obj/effect/decal/cleanable/cobweb2, +/obj/machinery/power/solar_control, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4 + }, +/obj/effect/map_helper/airlock/atmos/pump_out_internal, +/turf/simulated/floor, +/area/offmap/aerostat/inside/arm/sw) +"SH" = ( +/obj/machinery/alarm{ + pixel_y = 26 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/genetics) +"SI" = ( +/obj/machinery/computer/scan_consolenew{ + dir = 8 + }, +/obj/item/weapon/paper{ + info = "out of order" + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/genetics) +"SJ" = ( +/turf/simulated/floor/tiled/dark, +/area/offmap/aerostat/inside/xenoarch) +"SL" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/zorrenoffice) +"SN" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/floor_decal/rust, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor, +/area/offmap/aerostat/inside/arm/ne) +"SO" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 8 + }, +/obj/effect/floor_decal/rust, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/solars) +"SP" = ( +/obj/machinery/medical_kiosk, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/miscstorage) +"SQ" = ( +/obj/machinery/atmospherics/unary/heat_exchanger{ + dir = 4 + }, +/obj/structure/window/basic{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/toxins) +"SR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/light/floortube{ + dir = 8; + pixel_x = -6 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/airlock/south) +"SS" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/inside/arm/nw) +"ST" = ( +/obj/machinery/atmospherics/unary/heat_exchanger{ + dir = 4 + }, +/obj/structure/window/basic{ + dir = 1 + }, +/obj/structure/window/basic{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/toxins) +"SU" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 5 + }, +/turf/simulated/wall, +/area/offmap/aerostat/inside/toxins) +"SV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/offmap/aerostat/inside/drillstorage) +"SW" = ( +/obj/machinery/atmospherics/unary/freezer{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/atmos) +"SY" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/miscstorage) +"Td" = ( +/obj/machinery/atmospherics/portables_connector, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"Te" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/northchamb) +"Tg" = ( +/obj/effect/floor_decal/industrial/warning/dust, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"Th" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/airlock/south) +"Ti" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/atmos) +"Tn" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"Tq" = ( +/obj/effect/overmap/visitable/sector/virgo2, +/turf/unsimulated/floor/sky/virgo2_sky, +/area/offmap/aerostat) +"Tr" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/westhall) +"Tt" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/rust, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor, +/area/offmap/aerostat/inside/arm/ne) +"Tv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/zorrenoffice) +"Tx" = ( +/turf/simulated/wall, +/area/offmap/aerostat/inside/miscstorage) +"Tz" = ( +/obj/item/modular_computer/console/preset/research{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/telesci) +"TB" = ( +/turf/simulated/shuttle/wall/voidcraft/hard_corner, +/area/offmap/aerostat/inside/powercontrol) +"TF" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"TG" = ( +/obj/effect/floor_decal/industrial/danger{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/xenoarch) +"TM" = ( +/obj/effect/floor_decal/rust, +/turf/simulated/floor, +/area/offmap/aerostat/inside/arm/ne) +"TO" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1; + frequency = 1380; + id_tag = "aerostat_s_s_pump" + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + dir = 4; + frequency = 1380; + id_tag = "aerostat_s_s_airlock"; + pixel_x = -25; + tag_airpump = "aerostat_s_s_pump"; + tag_chamber_sensor = "aerostat_s_s_sensor"; + tag_exterior_door = "aerostat_s_s_exterior"; + tag_exterior_sensor = "aerostat_s_s_sensext"; + tag_interior_door = "aerostat_s_s_interior"; + tag_interior_sensor = "aerostat_s_s_sensint" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/offmap/aerostat/inside/airlock/south) +"TP" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"TR" = ( +/obj/machinery/atmospherics/unary/freezer{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/atmos) +"TT" = ( +/obj/machinery/door/airlock/external{ + frequency = 1380; + id_tag = "aerostat_s_e_exterior"; + locked = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/airlock/south) +"TU" = ( +/obj/structure/bed/chair/shuttle{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/shuttle/floor/yellow, +/area/shuttle/aerostat) +"TV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/airlock/north) +"TW" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/machinery/door/window/brigdoor/eastleft{ + dir = 2; + req_access = list(7) + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"TX" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8; + pixel_x = 6 + }, +/turf/simulated/floor, +/area/offmap/aerostat/inside/firingrange) +"TY" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4 + }, +/obj/effect/map_helper/airlock/atmos/pump_out_external, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/inside/toxins) +"TZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/closet/l3closet/virology, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/virology) +"Ub" = ( +/obj/machinery/vending/tool, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/miscstorage) +"Ue" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/effect/map_helper/airlock/sensor/int_sensor, +/obj/machinery/airlock_sensor{ + dir = 4; + pixel_x = -24 + }, +/turf/simulated/shuttle/floor/yellow, +/area/shuttle/aerostat) +"Uf" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/closet/wardrobe/virology_white, +/obj/machinery/camera/network/research_outpost{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/virology) +"Ug" = ( +/obj/effect/floor_decal/rust, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/obj/random/tool, +/obj/random/tool, +/obj/structure/closet, +/turf/simulated/floor, +/area/offmap/aerostat/inside/arm/ne) +"Uh" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/wall, +/area/offmap/aerostat/inside/telesci) +"Ui" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/offmap/aerostat/inside/lobby) +"Uj" = ( +/turf/simulated/floor, +/area/offmap/aerostat/inside/xenoarch) +"Ul" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/xenoarch) +"Um" = ( +/obj/structure/cable/heavyduty{ + icon_state = "0-8" + }, +/obj/structure/cable/heavyduty{ + icon_state = "0-4" + }, +/obj/structure/cable/heavyduty, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/bluegrid, +/area/offmap/aerostat/inside/powercontrol) +"Uo" = ( +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/virology) +"Up" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/inside/arm/ne) +"Uq" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/rust, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/airlock_sensor{ + dir = 8; + pixel_x = 30 + }, +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/turf/simulated/floor, +/area/offmap/aerostat/inside/arm/se) +"Us" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/atmos) +"Ut" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/turf/simulated/shuttle/wall/voidcraft/hard_corner{ + color = "#eacd7c"; + stripe_color = "#00FF00" + }, +/area/offmap/aerostat/inside/arm/nw) +"Uv" = ( +/obj/structure/bed/chair/office/light, +/obj/machinery/button/remote/blast_door{ + dir = 1; + id = "zorrenpartyroom"; + name = "Shutter Control"; + pixel_x = -32; + pixel_y = 2 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/zorrenoffice) +"Uw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/alarm{ + pixel_y = 26 + }, +/turf/simulated/floor/tiled, +/area/offmap/aerostat/inside/drillstorage) +"Uy" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/offmap/aerostat/inside/xenoarch/chamber) +"UA" = ( +/obj/machinery/alarm{ + pixel_y = 26 + }, +/obj/machinery/camera/network/research_outpost{ + dir = 4 + }, +/obj/machinery/medical_kiosk, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/xenoarch) +"UC" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/wall, +/area/offmap/aerostat/inside/telesci) +"UD" = ( +/obj/structure/grille, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/inside/arm/sw) +"UG" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/firingrange) +"UH" = ( +/obj/machinery/power/apc{ + dir = 1; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"UL" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/bluegrid, +/area/offmap/aerostat/inside/powercontrol) +"UM" = ( +/obj/structure/bed/chair/office/light, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/virology) +"UO" = ( +/turf/simulated/floor/reinforced, +/area/offmap/aerostat/inside/telesci) +"UP" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/firingrange) +"US" = ( +/obj/machinery/door/airlock/glass_research{ + name = "Atmospherics"; + req_one_access = list(47,10) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/atmos) +"UV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/wall, +/area/offmap/aerostat/inside/arm/ne) +"UW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/wall, +/area/offmap/aerostat/inside/telesci) +"UZ" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/northchamb) +"Va" = ( +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/easthall) +"Vc" = ( +/obj/machinery/button/remote/blast_door{ + id = "anomaly_testing_v"; + name = "Panic Chamber Vent"; + pixel_x = 6; + pixel_y = 26 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/structure/table/standard, +/obj/machinery/computer/atmoscontrol/laptop{ + monitored_alarm_ids = list("anomaly_testing"); + req_one_access = list(47,24,11) + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/xenoarch) +"Vd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"Ve" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/xenoarch) +"Vi" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/empty, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"Vl" = ( +/obj/machinery/atmospherics/binary/algae_farm/filled{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/atmos) +"Vo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/offmap/aerostat/inside/lobby) +"Vr" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/southchamb) +"Vs" = ( +/obj/effect/floor_decal/rust, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 4 + }, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/solars) +"Vt" = ( +/obj/machinery/camera/network/research_outpost{ + dir = 4 + }, +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/floor_decal/rust, +/turf/simulated/floor, +/area/offmap/aerostat/inside/arm/ne) +"Vu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/zorrenoffice) +"Vx" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor, +/area/offmap/aerostat/inside/xenoarch) +"Vz" = ( +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/telesci) +"VA" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/shuttle/wall/voidcraft/green, +/area/offmap/aerostat/inside/telesci) +"VB" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 8 + }, +/obj/effect/floor_decal/rust, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 5 + }, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/solars) +"VE" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/turf/simulated/shuttle/wall, +/area/shuttle/aerostat) +"VG" = ( +/turf/simulated/floor/glass/reinforced{ + color = "#eacd7c" + }, +/area/offmap/aerostat/glassgetsitsownarea) +"VI" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/flora/pottedplant/crystal, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/zorrenoffice) +"VJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/light/floortube{ + dir = 1; + pixel_y = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/westhall) +"VL" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"VM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/turf/simulated/shuttle/wall, +/area/shuttle/aerostat) +"VO" = ( +/obj/effect/floor_decal/rust, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 4 + }, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/solars) +"VQ" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/inside/arm/se) +"VR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/airlock/south) +"VS" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 8 + }, +/obj/effect/floor_decal/rust, +/obj/machinery/airlock_sensor/airlock_exterior{ + dir = 4; + pixel_x = -32 + }, +/obj/effect/map_helper/airlock/sensor/ext_sensor, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/inside/arm/ne) +"VU" = ( +/obj/effect/floor_decal/rust, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor, +/area/offmap/aerostat/inside/xenoarch) +"VX" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/xenoarch) +"VY" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/southchamb) +"Wb" = ( +/obj/machinery/camera/network/research_outpost{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/virology) +"Wd" = ( +/turf/simulated/shuttle/wall/voidcraft/hard_corner{ + stripe_color = "#00FF00" + }, +/area/offmap/aerostat/inside/airlock/north) +"We" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/rust, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/airlock_sensor{ + dir = 4; + pixel_x = -25 + }, +/obj/effect/map_helper/airlock/sensor/int_sensor, +/turf/simulated/floor, +/area/offmap/aerostat/inside/arm/ne) +"Wf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"Wh" = ( +/obj/machinery/power/apc{ + dir = 4; + pixel_x = 28 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/miscstorage) +"Wi" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/firingrange) +"Wj" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/genetics) +"Wk" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"Wn" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/wall, +/area/offmap/aerostat/inside/toxins) +"Wo" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/powercontrol) +"Wr" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/flora/pottedplant/subterranean, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/southchamb) +"Wt" = ( +/obj/machinery/alarm{ + pixel_y = 26 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/westhall) +"Wu" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/rust, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 23 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor, +/area/offmap/aerostat/inside/arm/se) +"Ww" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4 + }, +/obj/effect/map_helper/airlock/atmos/pump_out_external, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/inside/arm/se) +"Wx" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 23 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/zorrenoffice) +"Wz" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/easthall) +"WC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/camera/network/research_outpost{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/southchamb) +"WD" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/table/rack, +/obj/item/clothing/suit/space/anomaly/heat, +/obj/item/clothing/head/helmet/space/anomaly/heat, +/obj/item/device/suit_cooling_unit, +/obj/item/weapon/storage/excavation, +/obj/item/weapon/tool/wrench, +/obj/item/weapon/pickaxe, +/obj/item/device/measuring_tape, +/obj/item/weapon/storage/belt/archaeology, +/obj/item/stack/flag/yellow, +/obj/item/clothing/mask/breath, +/obj/machinery/alarm{ + pixel_y = 26 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/xenoarch) +"WF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/atmos) +"WH" = ( +/obj/random/maintenance/research, +/obj/structure/sign/painting/public{ + pixel_x = 30 + }, +/obj/structure/table/borosilicate, +/turf/simulated/floor/tiled/dark, +/area/offmap/aerostat/inside/lobby) +"WJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + frequency = 1380; + id_tag = "aerostat_s_w_interior"; + locked = 1 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/airlock/south) +"WN" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/miscstorage) +"WP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/blue, +/obj/machinery/medical_kiosk, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"WQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/blue{ + dir = 4 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"WR" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/book/manual/virology, +/obj/item/device/antibody_scanner, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/virology) +"WS" = ( +/obj/effect/shuttle_landmark{ + base_area = /area/offmap/aerostat; + base_turf = /turf/unsimulated/floor/sky/virgo2_sky; + docking_controller = "aerostat_n_n_airlock"; + landmark_tag = "aerostat_n_n"; + name = "Virgo 2 Aerostat (North Arm North)" + }, +/turf/unsimulated/floor/sky/virgo2_sky, +/area/offmap/aerostat) +"WU" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/airlock_sensor{ + frequency = 1380; + id_tag = null; + pixel_y = 24 + }, +/obj/effect/map_helper/airlock/sensor/int_sensor, +/obj/machinery/portable_atmospherics/canister/air, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"WW" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/airlock_sensor{ + pixel_y = 25 + }, +/obj/effect/map_helper/airlock/sensor/int_sensor, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/xenoarch) +"WX" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/telesci) +"WY" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"WZ" = ( +/obj/effect/floor_decal/industrial/warning/dust/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/offmap/aerostat/inside/lobby) +"Xa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/obj/effect/floor_decal/rust, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/offmap/aerostat/inside/westhall) +"Xb" = ( +/obj/effect/floor_decal/rust, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/solars) +"Xe" = ( +/obj/machinery/alarm{ + pixel_y = 26 + }, +/obj/item/modular_computer/console/preset/command, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/zorrenoffice) +"Xg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/wall, +/area/offmap/aerostat/inside/xenoarch) +"Xm" = ( +/obj/machinery/power/apc{ + dir = 8; + pixel_x = -22 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor, +/area/offmap/aerostat/inside/arm/ne) +"Xo" = ( +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/insulated{ + dir = 6 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/inside/toxins) +"Xp" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/air, +/turf/simulated/shuttle/floor/yellow, +/area/shuttle/aerostat) +"Xr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 6 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"Xt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/westhall) +"Xx" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/zorrenoffice) +"Xz" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/table/standard, +/obj/item/device/multitool, +/obj/item/weapon/tool/screwdriver, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/telesci) +"XA" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/easthall) +"XD" = ( +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor, +/area/offmap/aerostat/inside/firingrange) +"XF" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor, +/area/offmap/aerostat/inside/arm/ne) +"XH" = ( +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 20 + }, +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 28 + }, +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 36 + }, +/obj/item/modular_computer/console, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/firingrange) +"XJ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/wall, +/area/offmap/aerostat/inside/genetics) +"XK" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/inside/arm/ne) +"XL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/wall, +/area/offmap/aerostat/inside/virology) +"XM" = ( +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/airlock/south) +"XN" = ( +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/genetics) +"XO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/sign/painting/public{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/telesci) +"XP" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance/rnd{ + req_one_access = null + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/arm/ne) +"XQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/meter, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/atmos) +"XT" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/westhall) +"XV" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/turf/simulated/floor/glass/reinforced{ + color = "#eacd7c" + }, +/area/offmap/aerostat/glassgetsitsownarea) +"XW" = ( +/obj/machinery/light/floortube{ + dir = 8; + pixel_x = -6 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"XX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/shuttle/wall/voidcraft/green, +/area/offmap/aerostat/inside/airlock/west) +"XZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/zorrenoffice) +"Ya" = ( +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/zorrenoffice) +"Yb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"Yc" = ( +/obj/machinery/mining/brace, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/offmap/aerostat/inside/drillstorage) +"Yg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/disease2/incubator, +/obj/structure/reagent_dispensers/virusfood{ + pixel_y = 28 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/virology) +"Yh" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/westhall) +"Yi" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4 + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/structure/cable/yellow{ + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + dir = 8; + pixel_x = -22 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor, +/area/offmap/aerostat/inside/arm/ne) +"Yj" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/black, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"Yl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/light/floortube{ + dir = 4; + pixel_x = 5 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/airlock/north) +"Ym" = ( +/turf/simulated/floor/tiled/dark, +/area/offmap/aerostat/inside/lobby) +"Yn" = ( +/turf/simulated/wall, +/area/offmap/aerostat/inside/telesci) +"Yo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/power/apc{ + dir = 1; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/easthall) +"Yp" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"Yq" = ( +/obj/machinery/light/floortube{ + dir = 4; + pixel_x = 5 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/airlock/south) +"Ys" = ( +/obj/machinery/door/airlock/multi_tile/metal{ + dir = 1; + name = "Zorren Representative Kiosk"; + req_one_access = list(1337) + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/zorrenoffice) +"Yt" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/obj/machinery/camera/network/research_outpost, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"Yu" = ( +/obj/effect/floor_decal/rust, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/solars) +"Yv" = ( +/obj/machinery/autolathe, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/miscstorage) +"Yw" = ( +/turf/simulated/floor/tiled, +/area/offmap/aerostat/inside/misclab) +"Yx" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden, +/turf/simulated/shuttle/wall/voidcraft/green, +/area/offmap/aerostat/inside/airlock/west) +"YB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/obj/machinery/atmospherics/binary/pump/on{ + name = "phoron pump" + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/atmos) +"YC" = ( +/obj/structure/table/standard, +/obj/item/weapon/paper_bin{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/weapon/folder/white, +/obj/item/weapon/pen, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/xenoarch) +"YE" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/reagent_dispensers/coolanttank, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/xenoarch) +"YH" = ( +/obj/structure/table/reinforced, +/obj/machinery/computer/med_data/laptop{ + dir = 1 + }, +/obj/machinery/camera/network/research_outpost{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/virology) +"YJ" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"YL" = ( +/obj/structure/bed/chair/bay, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/genetics) +"YN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/disease2/isolator, +/obj/machinery/firealarm{ + dir = 4; + layer = 3.3; + pixel_x = 26 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/virology) +"YS" = ( +/obj/machinery/door/blast/regular{ + dir = 2; + id = "anomaly_testing_v"; + name = "Anomaly Testing Vent" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden, +/turf/simulated/floor, +/area/offmap/aerostat/inside/xenoarch/chamber) +"YT" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/airlock/south) +"YV" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/shuttle/wall/voidcraft/green/virgo2, +/area/offmap/aerostat/inside/arm/se) +"YX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"Zb" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/machinery/light/floortube{ + pixel_y = -5 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/easthall) +"Zc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/xenoarch) +"Ze" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/wall, +/area/offmap/aerostat/inside/atmos) +"Zg" = ( +/obj/machinery/camera/network/research_outpost, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/westhall) +"Zh" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"Zi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/visible/red{ + dir = 1 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"Zj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/window/basic{ + dir = 1 + }, +/obj/structure/window/basic{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/heat_exchanger{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/toxins) +"Zn" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/cee, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"Zo" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/black, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"Zp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/shuttle/wall/voidcraft/green, +/area/offmap/aerostat/inside/toxins) +"Zs" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/zorrenoffice) +"Zu" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/table/rack, +/obj/item/clothing/suit/space/anomaly/heat, +/obj/item/clothing/head/helmet/space/anomaly/heat, +/obj/item/device/suit_cooling_unit, +/obj/item/weapon/storage/excavation, +/obj/item/weapon/tool/wrench, +/obj/item/weapon/pickaxe, +/obj/item/device/measuring_tape, +/obj/item/weapon/storage/belt/archaeology, +/obj/item/stack/flag/yellow, +/obj/item/clothing/mask/breath, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/xenoarch) +"Zv" = ( +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + cycle_to_external_air = 1; + frequency = 1380; + id_tag = "aerostat_toxins"; + pixel_y = 29 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"Zw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/offmap/aerostat/inside/misclab) +"Zx" = ( +/obj/effect/floor_decal/industrial/warning/dust, +/obj/machinery/door/airlock/external{ + frequency = 1089; + icon_state = "door_locked"; + id_tag = "aerostat_door_outer"; + locked = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/obj/effect/map_helper/airlock/door/ext_door, +/turf/simulated/floor/tiled/steel_ridged, +/area/offmap/aerostat/inside/airlock/east) +"Zz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/southchamb) +"ZA" = ( +/turf/simulated/floor/tiled, +/area/offmap/aerostat/inside/xenoarch) +"ZD" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = -4 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/virology) +"ZE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/blue, +/turf/simulated/wall, +/area/offmap/aerostat/inside/toxins) +"ZG" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8 + }, +/obj/effect/map_helper/airlock/atmos/pump_out_internal, +/obj/effect/floor_decal/rust, +/turf/simulated/floor, +/area/offmap/aerostat/inside/arm/ne) +"ZH" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/westhall) +"ZI" = ( +/obj/machinery/dna_scannernew, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/genetics) +"ZJ" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/zorrenoffice) +"ZK" = ( +/turf/simulated/wall, +/area/offmap/aerostat/inside/westhall) +"ZL" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor, +/area/offmap/aerostat/inside/firingrange) +"ZM" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/obj/machinery/light/floortube{ + dir = 8; + pixel_x = -6 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/airlock_sensor/airlock_interior{ + dir = 4; + master_tag = "aerostat_s_w_airlock"; + pixel_x = -24; + tag = "aerostat_s_w_sensint" + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/airlock/south) +"ZN" = ( +/obj/effect/floor_decal/industrial/warning/dust/corner{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/offmap/aerostat/inside/lobby) +"ZO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/easthall) +"ZP" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/closet/secure_closet/personal/patient, +/obj/machinery/alarm{ + pixel_y = 26 + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/virology) +"ZR" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/binary/pump{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"ZS" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/black{ + dir = 1 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled/white, +/area/offmap/aerostat/inside/toxins) +"ZU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/turf/simulated/shuttle/wall/voidcraft/green/virgo2, +/area/offmap/aerostat/inside/arm/se) +"ZV" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/machinery/light/floortube{ + pixel_y = -5 + }, +/turf/simulated/floor/tiled/techfloor, +/area/offmap/aerostat/inside/westhall) +"ZZ" = ( +/obj/effect/floor_decal/rust, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 6 + }, +/turf/simulated/floor/plating/virgo2, +/area/offmap/aerostat/solars) + +(1,1,1) = {" +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +"} +(2,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +Tq +cZ +"} +(3,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(4,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(5,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(6,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(7,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(8,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(9,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(10,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(11,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(12,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(13,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(14,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(15,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(16,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(17,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(18,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(19,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(20,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(21,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(22,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(23,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(24,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(25,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +CA +iv +VB +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(26,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aD +pj +aD +pj +aD +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aT +aT +aT +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(27,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aD +aD +ei +df +vq +aD +aD +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aD +aD +aD +aD +aD +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(28,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +ZZ +qF +qF +bb +aD +fL +qF +qF +RA +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aD +aD +aZ +df +dt +aD +aD +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(29,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aD +NQ +qF +qF +gt +aD +fg +qF +qF +RK +aD +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aD +aD +aD +ON +aD +ON +aD +aD +aD +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(30,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +ae +aT +aT +aT +aT +nE +aT +nE +aT +aT +aT +aT +dF +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aD +aD +aD +aD +ON +aD +ON +aD +aD +aD +aD +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(31,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +af +aG +aG +aG +aG +Vs +aD +Vs +aG +aG +aG +aG +dG +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +ae +aT +aT +aT +aT +kp +do +kp +aT +aT +aT +aT +dF +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(32,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +ay +dB +dB +dB +dB +VO +aD +sE +zk +zk +zk +zk +dS +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +af +aG +aG +aG +aG +ON +aD +ON +aG +aG +aG +aG +dG +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(33,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +ax +aU +aU +aU +aU +Vs +aD +Vs +aU +aU +aU +aU +dR +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +ay +dB +dB +dB +dB +bt +aD +ba +zk +zk +zk +zk +dS +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(34,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +ay +dB +dB +dB +dB +VO +aD +sE +zk +zk +zk +zk +dS +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +ax +aU +aU +aU +aU +ON +aD +ON +aU +aU +aU +aU +dR +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(35,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +ax +aU +aU +aU +aU +Vs +aD +Vs +aU +aU +aU +aU +dR +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cv +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +ay +dB +dB +dB +dB +GG +aD +Yu +zk +zk +zk +zk +dS +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(36,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +ay +dB +dB +dB +dB +VO +aD +sE +zk +zk +zk +zk +dS +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +ax +aU +aU +aU +aU +ON +aD +ON +aU +aU +aU +aU +dR +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(37,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +ax +aU +aU +aU +aU +Vs +aD +Vs +aU +aU +aU +aU +dR +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +Gz +Na +Ms +EN +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +ay +dB +dB +dB +dB +GG +aD +Yu +zk +zk +zk +zk +dS +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(38,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +ay +dB +dB +dB +dB +VO +aD +sE +zk +zk +zk +zk +dS +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +XX +Ck +vC +EN +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +ax +aU +aU +aU +aU +ON +aD +ON +aU +aU +aU +aU +dR +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(39,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +ax +aU +aU +aU +aU +Vs +aD +Vs +aU +aU +aU +aU +dR +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +Rr +XX +Rl +aE +EN +EN +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +ay +dB +dB +dB +dB +GG +aD +Yu +zk +zk +zk +zk +dS +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(40,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +ay +dB +dB +dB +dB +VO +aD +sE +zk +zk +zk +zk +dS +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +PS +he +Yx +cI +KW +Jo +gf +Bz +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +ax +aU +aU +aU +aU +ON +aD +ON +aU +aU +aU +aU +dR +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(41,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +ax +aU +aU +aU +aU +Vs +aD +Vs +aU +aU +aU +aU +dR +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +PS +PS +he +FJ +lL +jL +Jo +Qz +Bz +Bz +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +ay +dB +dB +dB +dB +GG +aD +Yu +zk +zk +zk +zk +dS +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(42,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +ay +dB +dB +dB +dB +VO +aD +sE +zk +zk +zk +zk +dS +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +PS +PS +PS +PS +Rr +Wt +qN +Jo +if +Qz +Bz +Bz +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +ax +aU +aU +aU +aU +ON +aD +ON +aU +aU +aU +aU +dR +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(43,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +ax +aU +aU +aU +aU +Vs +aD +Vs +aU +aU +aU +aU +dR +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +Rr +PS +PS +PS +PS +Rr +Re +HS +Ls +Lq +Xa +ni +Bz +Jo +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +ay +dB +dB +dB +dB +GG +aD +Yu +zk +zk +zk +zk +dS +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(44,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +ay +dB +dB +dB +dB +VO +aD +sE +zk +zk +zk +zk +dS +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +kF +kF +kF +kF +oW +PS +Rr +Lt +KA +Jo +ZK +ZK +ZK +ZK +Jo +Bz +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +ax +aU +aU +aU +aU +ON +aD +ON +aU +aU +aU +aU +dR +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(45,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aq +aU +aU +aU +aU +Vs +aD +Vs +aU +aU +aU +aU +dI +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +kF +kF +ap +ap +ap +kF +PS +Rr +NV +Hq +Jo +NP +Yw +wA +Yw +Yw +EA +EA +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +ay +dB +dB +dB +dB +GG +aD +Yu +zk +zk +zk +zk +dS +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(46,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +as +dg +dg +dg +dg +rv +aS +kH +dD +dD +dD +dD +dJ +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +kF +kF +kF +wZ +Ot +yi +kF +PS +Qd +Zg +HH +FU +NP +yG +Yw +Yw +Yw +Yw +zH +zH +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aq +aU +aU +aU +aU +ON +aD +ON +aU +aU +aU +aU +dI +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(47,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aD +aD +aD +aD +gT +aD +gT +aD +aD +aD +aD +JG +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +oW +kF +CF +od +nU +Fu +ll +ve +PS +Qd +Tr +Sl +Lt +NP +tU +Yw +Yw +Yw +Yw +Yw +EA +EA +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +as +dg +dg +dg +dg +bu +aS +dp +dD +dD +dD +dD +dJ +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(48,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aD +aD +aD +gT +aD +gT +aD +aD +aD +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +PS +ve +wE +yT +Aw +nU +Fu +IH +rd +an +Qd +ZK +tk +Xt +OI +oo +Ey +kR +fo +Ml +Yw +Yw +EA +EA +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aD +aD +aD +aD +ON +aD +ON +aD +aD +aD +aD +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(49,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aD +aD +pL +di +nQ +aD +aD +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +Rr +PS +oW +ur +JJ +kF +mG +sh +QU +oW +nO +TY +ZK +nR +Lt +NP +Yw +Yw +ey +jw +ef +Yw +Yw +Yw +EA +EA +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aD +aD +aD +ON +aD +ON +aD +aD +aD +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(50,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aD +DY +dj +aM +aD +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +Rr +ce +Py +Xo +MW +QP +GC +rI +iK +ar +zg +KJ +xM +ZK +pP +yN +NP +Yw +Yw +jj +Zw +oZ +Zw +qS +Yw +Yw +zH +zH +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aD +aD +cx +di +dq +aD +aD +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(51,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cy +Im +CJ +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +Rr +Rr +Qd +Dh +nu +hL +NC +qL +qL +LZ +nu +Qd +Qd +pX +ZK +wF +Lt +NP +Yw +Yw +Yw +Yw +ef +Yw +Yw +Yw +Yw +Yw +FY +zH +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aD +ON +dj +aD +aD +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(52,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +ac +ds +dW +ac +ac +ac +bf +bf +ac +ac +bf +bf +ac +ac +bf +bf +ac +ac +ac +Rr +Rr +ce +PX +Eu +Dh +Jp +lv +Zn +zW +bJ +pF +bQ +Qd +Zv +CQ +Qd +lz +Lt +NP +Yw +Kz +Yw +yX +kq +Yw +Yw +Yw +Kz +Yw +Yw +zH +zH +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +Rq +dk +aS +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(53,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +ac +ab +dX +BR +Ou +zX +hC +Ou +Ou +Ou +Ou +Ou +vI +Ou +Ou +Ou +Ou +Ou +Ou +bz +pV +pV +DJ +Lj +Dh +hu +Pe +ph +RI +WY +Op +lr +Qd +ux +yO +Qd +wF +Lt +iX +iX +iX +iX +iX +iX +iX +iX +iX +iX +iX +iX +iX +oA +rq +rq +cU +cU +cU +IZ +IZ +cU +cU +IZ +IZ +cU +cU +IZ +IZ +cU +cU +cU +lo +Oj +cU +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(54,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +ac +fe +KE +cw +os +ls +SS +QZ +ac +ac +sQ +sQ +ac +ac +bo +sQ +ac +ac +mN +ce +Qd +qC +WQ +Qd +Dh +Yp +CE +Qa +GX +Yb +Mv +yI +Qd +Qd +mQ +Qd +il +co +vP +HJ +HJ +HJ +UG +Hs +HJ +HJ +HJ +HJ +UG +HJ +HJ +qv +vu +vT +nN +nN +nN +nN +nN +nN +Mw +nN +nN +nN +nN +nN +xW +xN +nN +wI +zB +aW +cU +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(55,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +ac +np +sn +sn +Mz +Ut +fM +fM +aw +Qg +aw +aw +aw +aw +aw +aw +aw +Rr +Vi +Vi +bG +qC +WQ +un +Dh +mu +MH +Zi +Zj +dz +Ay +kO +Qd +WU +DI +Qd +Ek +ZH +iX +Qe +MA +MA +MA +MA +MA +tJ +Nl +Nl +Nl +Nl +Nl +AR +AR +oA +uS +cU +cU +xw +xw +cU +cU +xw +xw +cU +cU +UD +Ev +QI +SG +Fo +cJ +oj +cU +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(56,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +Qg +aw +aw +aw +aw +aw +aw +Rr +Rr +mL +ig +oK +qC +WQ +un +Dh +FF +Tn +GL +uv +uA +Id +BU +nz +qC +EI +Qd +Ek +ZH +iX +UP +Nl +Nl +Nl +Nl +Nl +fJ +mm +Dq +ZL +TX +ZL +ZL +ID +ID +oA +rq +aw +aw +aw +aw +aw +aw +aw +Qg +aw +nr +nr +IY +Er +Rt +cU +cU +cU +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(57,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +Qg +aw +aw +aw +aw +aw +Rr +Rr +qU +qU +qU +io +qC +WQ +Eb +Dh +Gt +TF +HV +Qd +Qd +bR +Gt +Qd +Mu +po +Qd +PR +ZH +iX +wY +Nl +Nl +Nl +Nl +Nl +yK +NJ +lI +Ld +XD +Ld +AP +ID +ID +ID +oA +rq +aw +aw +aw +aw +aw +aw +Qg +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(58,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +Qg +aw +aw +aw +aw +de +ce +zu +zu +zu +zu +mD +Vd +Hb +nV +bW +Qd +Sw +Qd +Qd +Qd +Qd +Qd +Qd +qC +HU +kf +ck +Md +iX +at +Nl +Nl +at +Nl +Nl +OD +vM +sp +Ld +Ld +Ld +Ld +ID +ID +ID +ID +oA +rq +aw +aw +aw +aw +aw +Qg +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(59,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +Qg +aw +aw +aw +de +de +Qd +Ha +Gu +Gu +Gu +TW +lT +WQ +MM +Qd +Ph +JV +NA +vY +Qd +FK +Gn +oi +MM +Sv +Wn +VJ +ZV +iX +DG +Mf +Nl +Wi +Nl +Mf +FT +NJ +lI +Ld +XD +Ld +AP +ID +ID +ID +ID +ID +oA +KK +aw +aw +aw +aw +Qg +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(60,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +Qg +aw +aw +de +wC +aF +Qd +ol +ol +ol +ol +xO +JM +gL +ud +KD +jy +xy +jy +DH +KD +jy +jy +jy +TP +DL +nv +LF +Sb +iX +ah +Nl +Nl +at +Nl +Nl +OD +vM +sp +Ld +Ld +Ld +Ld +ID +ID +ID +ID +ID +iX +KK +KK +aw +aw +aw +Qg +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(61,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +Qg +aw +de +wC +uN +Hy +tv +NU +Yb +Yb +Yb +Ox +mi +ji +ib +LR +Pr +nh +aI +ou +ZE +WP +wr +Zh +qC +CC +Wn +NW +jo +iX +XH +fx +Nl +Nl +Nl +Nl +eA +NJ +lI +Ld +XD +Ld +AP +ID +ID +ID +ID +ID +iX +Kd +KK +KK +aw +aw +Qg +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(62,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +Qg +de +wC +xP +xP +mt +Qd +NH +Oz +CM +hU +QV +oc +nb +FK +Qd +Qh +zb +Ca +rz +Qd +PP +jM +hs +uF +zD +Wn +XT +ZH +iX +Rm +ye +ye +Ew +mA +Ne +RW +RL +sp +Ld +nF +Ld +Ld +ID +ID +ID +ID +ID +iX +PJ +eW +KK +KK +aw +Qg +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(63,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +de +wC +Ny +xP +xP +ch +Qd +Qd +Qd +Qd +Ov +SU +GK +wG +OM +GK +GK +zV +rU +OM +OM +OM +JD +GK +rU +kG +Ry +Yh +ov +rS +nJ +qb +qb +qb +xn +qx +eT +eN +eN +eN +eN +eN +MR +us +iX +iX +iX +iX +iX +Nm +bF +CN +KK +KK +Qg +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(64,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +de +wC +xP +xP +xP +xP +mt +Ce +cB +yc +cB +cB +GF +gD +xg +Ly +Qd +FK +mc +Gn +xu +qC +kt +QO +JT +bY +Nu +Rr +AQ +Md +vg +eE +rs +BH +Lg +vL +pf +wo +eP +eV +Ym +qp +zf +xD +Bp +Mk +hS +lx +VI +ie +JS +eW +fP +wz +KK +KK +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(65,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +tg +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +de +de +xP +xP +xP +xP +xP +lX +Ce +bK +CO +Cl +PN +GF +qf +xs +Gf +Qd +QH +mc +qC +qC +qC +qC +Fi +qC +Kw +mo +Rr +Gs +Ft +vg +ky +Ym +Ym +Ym +Ym +Ym +xe +Ym +Ym +Ym +Ym +Ym +Jn +Bp +XZ +Ya +Ya +Ru +ie +jn +eW +eW +Rj +zG +qc +Ao +Ao +Ao +Hv +aw +aw +aw +aw +aw +aw +aw +aw +aw +LW +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(66,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +iW +la +la +la +de +ld +vt +vt +vt +uh +ge +Pl +As +bw +AL +WF +XQ +bC +Ly +xK +Ly +Qd +Sa +Ih +qC +rf +xU +xU +Wf +Fr +ST +SQ +Rr +gQ +jo +vg +cR +Ym +Ym +Ym +Ym +Ym +qT +pf +pf +pf +pf +pf +pf +FL +sO +Ho +Tv +Vu +zt +hY +iC +iC +sJ +iC +Ko +pn +Be +Eh +HQ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(67,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +Ra +tm +li +cn +aw +aw +aw +aw +aw +aw +aw +kk +qJ +UZ +vt +sN +pH +OL +HK +XV +Cd +Cm +wi +Ce +Ti +bP +no +cC +eR +VU +zr +Vx +Qd +Sr +nB +lW +Yj +qC +qC +qC +mk +Bs +Az +TB +Wo +cp +TB +GB +GB +Ym +Ym +Ym +Ym +Ym +wl +Ym +Ym +Ym +Ym +IK +Bp +ie +Es +DF +ie +ie +QX +eW +eW +eJ +eJ +eJ +eW +Bq +Eh +HQ +Qg +aw +aw +aw +aw +aw +aw +aw +Rx +zC +ct +DC +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(68,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cn +tq +IV +cn +aw +aw +aw +aw +aw +aw +aw +kk +ry +Te +xP +xP +xP +OL +HK +XV +xP +xP +oJ +Ce +qi +Vl +bA +QE +fh +rg +Uj +JI +Qd +SE +YX +qC +AC +XW +qC +qC +BG +Az +aJ +Hz +hq +yZ +nL +lO +GB +KC +Ym +Ym +Ym +Ym +hj +Ym +Ym +Ym +Ym +Ym +Bp +OF +Ya +wD +LH +ie +QX +eW +eW +HK +HK +HK +eW +BP +it +KK +Qg +Qg +aw +aw +aw +aw +aw +Qg +DC +Mi +JH +DC +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(69,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +Sp +cn +Wd +JB +bn +Wd +cn +qM +cO +cn +cn +qM +cO +de +qj +cX +xP +xP +xP +OL +HK +XV +xP +hp +yu +Ce +uu +Vl +cA +QE +fi +rH +Uj +GR +Qd +qC +og +qC +AC +fC +qC +qC +Fi +GB +aK +aQ +dn +dn +dN +aR +GB +Oc +Kh +cV +cV +Gl +CI +CI +cV +cV +WZ +Ym +Bp +hN +Ya +Ya +KI +HN +QX +eW +eW +fP +pY +fP +eW +wQ +eW +KK +DC +IB +fS +DC +DC +IB +IB +DC +DP +RH +WJ +DP +DC +Iy +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(70,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +WS +aw +bk +bl +oL +Bb +Lo +Rn +HT +rM +BE +OR +rM +BE +rM +um +ge +bN +xP +xP +xP +xP +xP +xP +xP +xP +wg +Ce +ke +Vl +yU +TR +ii +jF +Ae +jF +Qd +Td +Zo +lW +Fw +nf +lh +BT +AC +DK +Mj +bZ +dK +dM +dO +Mj +Gm +Ym +MC +VG +VG +VG +VG +VG +VG +VG +gO +pC +Bp +Xe +Ya +Ya +Uv +pA +QX +eW +eW +VG +VG +VG +eW +Cj +tE +tE +vc +Th +SR +al +kI +Dk +VR +mn +ZM +Fy +cu +pD +TO +Kc +aw +mR +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(71,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +bi +kD +ri +aN +PD +fj +Si +TV +Yl +zw +hf +Yl +TV +gv +oe +gk +bj +uV +wb +xP +Ng +ci +xP +lS +bq +Ce +fH +vB +Da +SW +Cc +Bk +Jq +HL +Qd +Td +jH +OX +Hd +xf +OA +OX +Hd +fK +UL +cP +dK +dM +dN +aQ +kN +Ff +FD +VG +VG +VG +VG +VG +VG +VG +gO +Ym +Bp +mF +SL +Ya +Ya +pq +QX +eW +eW +VG +VG +VG +MZ +NE +er +er +zM +uy +Rs +uy +qw +Yq +XM +Rk +GA +YT +sk +oS +DU +nw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(72,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cn +cn +Wd +QT +bp +Wd +cn +fW +gN +cn +cn +fW +gN +dY +Ce +Ze +Ce +In +km +km +lH +Ce +ua +Ce +rw +Ce +qh +Vl +cA +QE +ez +sm +Jq +PU +Qd +UH +ZR +qC +AC +Fi +Fi +qC +jT +GB +aO +dh +dL +dL +dO +na +GB +Ym +ZN +bU +bU +Fa +jE +Fa +bU +bU +AK +Ym +Bp +KI +Zs +Ya +KI +xH +iQ +sy +er +FA +gP +FA +Vr +OG +tR +KK +DC +Jd +Jz +DC +DC +Jd +Jd +DC +DP +yD +vj +DP +DC +DC +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(73,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cn +Dt +Qu +cn +aw +aw +aw +aw +aw +aw +aw +hn +Us +hk +BW +KP +pZ +DM +Fh +qZ +OO +OO +pr +fV +gX +Vl +cA +QE +ju +vm +Jq +PU +py +Wk +ZS +xU +ph +ph +ws +xU +Kj +GB +aP +nL +BO +Um +EQ +yk +GB +zE +xl +Ym +Ym +Ym +OY +Ym +Ym +Ym +Ym +Ym +Bp +dv +ZJ +Ya +Hj +ie +eW +QX +eW +HK +HK +HK +eW +OG +pm +KK +Qg +Qg +aw +aw +aw +aw +aw +Qg +DC +sX +yy +DC +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(74,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +KH +Ep +mx +cn +aw +aw +aw +aw +aw +aw +aw +hn +sc +gG +BW +Ii +pZ +pZ +pZ +pZ +pZ +pZ +cF +so +ca +Vl +zF +QE +lk +vz +Jq +PU +Ju +Xr +Pq +qC +Em +cG +qC +qC +At +GB +GB +TB +om +cp +TB +GB +GB +xl +xl +Ym +Ym +Ym +wl +Ym +Ym +Ym +Ym +IK +Bp +ie +Xx +Ys +ie +ie +eW +QX +eW +fP +fP +fP +eW +OG +EP +HQ +Qg +aw +aw +aw +aw +aw +aw +aw +Iy +TT +gS +DC +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(75,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +ko +lu +lu +lu +BA +nm +eO +Qr +gV +eM +eX +ED +US +Ak +pZ +PA +fD +tL +Jq +Jq +HO +Ju +Yt +KS +iV +kS +AC +qC +qC +EV +oV +oV +Rr +Qs +JP +vg +eE +Ym +BF +JX +Ui +sK +sK +Fs +AN +Fs +Fs +Fs +Fs +gZ +QK +sw +pW +GN +Aq +NO +kB +Zz +uX +NX +gd +WC +VY +vo +HQ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(76,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +Gc +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +dY +dY +re +bL +IN +Ak +pZ +uq +rw +bL +nx +nx +cE +KZ +WD +Jq +NT +Ju +YJ +mc +qC +VL +AC +qC +gs +yq +mJ +fR +Rr +Hl +fI +vg +ky +Ym +xl +Ym +xe +Ym +Ym +Ym +xl +Ym +Ym +Ym +Jn +Bp +XZ +Ya +Ya +Ru +ie +qR +eW +eW +Rj +tR +qc +Au +Au +Au +IM +aw +aw +aw +aw +aw +aw +aw +aw +aw +Ge +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(77,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +dY +dY +MO +bL +YB +Ak +QE +rw +Du +yv +Du +Du +bV +Zu +Jq +NT +Ju +OW +Bv +lK +tu +Mg +Oz +So +Tg +jN +AY +Rr +ak +RF +vg +cR +hh +xl +WH +FX +IF +JQ +kC +ql +Vo +qP +ug +CT +Bp +QQ +Wx +vp +zA +ie +fw +eW +eW +ft +KK +KK +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(78,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +dY +dY +el +QE +QE +QE +mU +km +km +km +km +gR +vR +Ar +vR +Ni +fQ +AB +Qb +Oy +Qm +Qm +qH +OM +OM +Zp +vb +AF +kc +sg +VA +UC +GP +vK +UW +vK +vK +vK +vK +Nk +ms +Nk +Nk +XJ +Rb +Rb +Rb +Rb +Rb +OG +eW +uE +KK +KK +Qg +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(79,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +Qg +dY +dY +Ri +QE +ff +jF +aj +bM +da +op +Lf +Np +Jq +Ip +jF +UA +Gi +tV +Jq +nY +QA +Mp +RU +Ir +Al +jF +CK +BS +GE +sP +WX +lc +DO +Iu +tH +UO +Lu +UO +Rb +ly +vy +iZ +cz +vd +lP +Pa +jV +Rb +gC +DV +KK +KK +aw +Qg +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(80,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +Qg +aw +dY +dY +DD +QE +jF +au +bS +dZ +eG +eU +eZ +gh +NM +JA +Mn +kV +Jq +Jq +Jq +oY +fn +gx +tD +lG +jF +Gr +BS +Uh +Xz +zc +zc +zc +Ai +tH +UO +UO +UO +Rb +aA +xR +xR +xR +qt +va +Pa +Pa +Rb +Wr +KK +KK +aw +aw +Qg +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(81,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +Qg +aw +aw +dY +dY +QE +jF +az +Ah +ns +op +WW +Hx +Ul +Ul +Dg +Ul +ML +sb +sb +sb +Cw +qQ +FZ +SJ +SJ +jF +ak +xp +Uh +OE +Vz +Vz +Vz +Vz +gU +UO +UO +UO +Rb +MB +xR +xR +xR +sj +Pa +Pa +me +Rb +KK +KK +aw +aw +aw +Qg +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(82,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +Qg +aw +aw +aw +dY +NN +jF +bE +cr +sU +op +vJ +vJ +Vc +hX +Fm +zI +VX +Zc +ti +Jq +Jq +Xg +jF +zn +jF +jF +qq +Zb +Uh +XO +Vz +uj +Vz +Vz +gz +UO +IS +UO +Rb +YL +xR +Wj +xR +qt +Pa +jV +Pa +IP +KK +aw +aw +aw +aw +Qg +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(83,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +Qg +aw +aw +aw +aw +Kk +jl +YS +Bj +cW +Hu +Ds +Os +zQ +wh +QL +Ve +GW +jF +RP +md +OJ +LS +Jq +Jq +Og +jF +xv +JP +Uh +iH +Vz +Vz +Vz +qK +gU +UO +UO +UO +Rb +YL +xR +xR +xR +Ns +Pa +Pa +Ht +Ht +aw +aw +aw +aw +aw +Qg +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(84,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +Qg +aw +aw +aw +aw +aw +jl +jW +zo +Ob +se +Rd +LB +Is +wK +ZA +wp +Ij +jF +YE +hX +hX +ga +Jq +mp +GI +zn +CK +BS +jQ +HM +Vz +Vz +Vz +Tz +gU +UO +UO +UO +Rb +SH +xR +rW +xR +qt +Pa +Ht +Ht +aw +aw +aw +aw +aw +aw +Qg +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(85,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +Qg +aw +aw +aw +aw +aw +aw +NZ +NZ +QW +Uy +jI +Os +TG +DN +iY +Ab +tI +jF +xq +JY +Hh +fT +YC +vQ +mI +jF +JE +BS +Uh +Ol +rJ +ES +Kv +tf +gU +UO +ut +UO +Rb +XN +An +SI +ZI +Ap +Ht +Ht +aw +aw +aw +aw +aw +aw +aw +Qg +aw +Ww +Ww +Ac +RN +AX +aY +aY +aY +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(86,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +fb +nW +sZ +sZ +mT +FV +xx +xx +aw +Qg +aw +aw +aw +aw +aw +aw +aw +NZ +kY +vJ +vJ +vJ +jF +jF +jF +jF +jF +jF +rP +jF +jF +Xg +jF +jF +jF +jF +Gr +BS +Uh +JZ +Yn +Yn +Yn +Yn +Yn +Yn +Yn +Yn +Rb +Rb +Rb +Rb +Rb +Ka +It +aY +aY +jU +jU +aY +aY +jU +jU +aY +aY +kJ +VQ +ZU +Fk +pT +tF +ja +aY +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(87,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +fb +zq +Yi +ks +ZG +Sd +XK +zR +fb +fb +tM +tM +fb +fb +tM +tM +fb +fb +LK +KN +SN +Vt +Ug +Jr +AD +sI +ik +TM +gw +wT +Tt +hA +Bi +Xm +yQ +jm +EX +cq +Hw +SY +WN +WN +Mc +WN +PG +CV +CV +Ji +Dv +yp +Gq +Gq +Gq +CR +RO +RO +RO +RO +RO +RO +Wu +RO +RO +RO +RO +RO +pz +wj +Uq +qE +Ad +aX +aY +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(88,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +fb +dr +sr +dy +zp +Ps +We +zp +zp +zp +zp +zp +iM +zp +zp +zp +zp +zp +zp +XP +fY +vW +Cu +LD +fc +Ln +mj +tj +jZ +xc +XF +Mb +sD +jf +xc +Oa +cm +Va +gl +Nw +De +HR +ER +ER +DE +ER +ER +RE +xj +xj +uk +Rf +It +It +aY +aY +aY +xF +xF +aY +aY +xF +xF +aY +aY +BV +xF +aY +aY +aY +YV +kb +aY +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(89,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +fb +pe +iU +fb +fb +fb +Up +Up +fb +fb +Up +Up +fb +fb +lt +Up +fb +fb +fb +LK +LK +KN +NL +NL +NL +NL +NL +NL +UV +NL +LY +yA +NL +NL +NL +NL +yH +Po +RD +SP +cs +Wh +dH +mH +EW +Yv +Ub +RE +LT +lC +It +It +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +Iw +dl +aT +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(90,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +VS +dl +jG +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +ot +ze +cT +NY +Je +Wb +Di +cM +hw +Pi +XL +is +qr +xV +NP +Yo +Va +RD +Tx +Tx +Tx +Tx +Tx +Tx +Tx +Tx +RE +RE +Rf +It +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aD +ON +dj +aD +aD +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(91,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aD +aD +dj +ON +aD +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +ot +ze +AE +Uo +Uo +HE +HA +xS +xS +xB +xS +xS +OP +oG +Wz +ZO +xa +mE +Jc +GT +II +uD +uK +SV +gi +id +yr +yr +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aD +aD +Gd +dm +dt +aD +aD +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(92,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aD +aD +aZ +dm +EK +dA +aD +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +IO +IO +gb +Uo +Uo +pa +Uo +GO +yd +TZ +Uf +xV +Bm +xG +dV +xt +cf +Nn +Nn +Nn +Nn +Nn +Nn +Et +Qq +Qq +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aD +aD +aD +ON +aD +ON +aD +aD +aD +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(93,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aD +aD +aD +ON +aD +ON +aD +aD +dE +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +IO +IO +rC +WR +pa +UM +YH +uf +xV +xV +Dp +RM +fp +ty +xt +Uw +Nn +Nn +Nn +Nn +Nn +Et +Qq +Qq +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aD +aD +aD +aD +ON +aD +ON +aD +aD +aD +aD +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(94,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aD +aD +aD +aD +ON +aD +ON +aD +aD +aD +aD +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +IO +IO +IA +pa +Uo +Uo +Uo +ZD +ev +ot +jA +nG +ty +lA +cf +Nn +Yc +Yc +vU +gy +Qq +Qq +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +av +dx +dx +dx +dx +db +aT +SO +FW +FW +FW +FW +dQ +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(95,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +av +dx +dx +dx +dx +db +aT +SO +FW +FW +FW +FW +dQ +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +ot +ot +Yg +YN +qD +cD +Uo +EC +ot +zx +tr +ty +hQ +cf +Nn +Yc +Yc +ed +yr +yr +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +ax +aU +aU +aU +aU +ON +aD +ON +aU +aU +aU +aU +dR +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(96,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +ax +aU +aU +aU +aU +ON +aD +ON +aU +aU +aU +aU +dR +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +IO +IO +ot +fX +SC +KM +lb +ot +Va +XA +ty +hQ +cf +Nn +Yc +Yc +Qq +Qq +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +ay +dB +dB +dB +dB +du +aD +jR +zk +zk +zk +zk +dS +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(97,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +ay +dB +dB +dB +dB +du +aD +jR +zk +zk +zk +zk +dS +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +IO +ot +ZP +ME +Uo +PK +ot +Rp +XA +ty +cQ +fr +Nn +vU +yr +Qq +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +ax +aU +aU +aU +aU +ON +aD +ON +aU +aU +aU +aU +dR +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(98,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +ax +aU +aU +aU +aU +ON +aD +ON +aU +aU +aU +aU +dR +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +ot +IO +tn +Uo +JR +ot +AI +oM +mX +uG +hv +je +Qq +yr +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +ay +dB +dB +dB +dB +du +aD +jR +zk +zk +zk +zk +dS +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(99,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +ay +dB +dB +dB +dB +du +aD +jR +zk +zk +zk +zk +dS +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +IO +IO +Uo +Uo +ot +lZ +Ma +ek +mg +je +Qq +Qq +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +ax +aU +aU +aU +aU +ON +aD +ON +aU +aU +aU +aU +dR +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(100,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +ax +aU +aU +aU +aU +ON +aD +ON +aU +aU +aU +aU +dR +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +IO +IO +zz +ot +iy +Nh +tY +Nn +Qq +Qq +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +ay +dB +dB +dB +dB +du +aD +jR +zk +zk +zk +zk +dS +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(101,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +ay +dB +dB +dB +dB +du +aD +jR +zk +zk +zk +zk +dS +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +IO +ze +ot +Bo +Bo +rT +qB +Dd +fa +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +ax +aU +aU +aU +aU +ON +aD +ON +aU +aU +aU +aU +dR +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(102,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +ax +aU +aU +aU +aU +ON +aD +ON +aU +aU +aU +aU +dR +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +Db +ot +eb +ec +ka +aa +fa +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +ay +dB +dB +dB +dB +du +aD +jR +zk +zk +zk +zk +dS +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(103,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +ay +dB +dB +dB +dB +du +aD +jR +zk +zk +zk +zk +dS +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +Db +dP +oU +BK +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +ax +aU +aU +aU +aU +ON +aD +ON +aU +aU +aU +aU +dR +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(104,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +ax +aU +aU +aU +aU +ON +aD +ON +aU +aU +aU +aU +dR +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +kg +oy +Zx +Ig +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +ay +dB +dB +dB +dB +du +aD +jR +zk +zk +zk +zk +dS +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(105,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +ay +dB +dB +dB +dB +du +aD +jR +zk +zk +zk +zk +dS +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +iN +No +EL +wc +bh +HY +wm +bI +bd +bd +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +ax +aU +aU +aU +aU +ON +aD +ON +aU +aU +aU +aU +dR +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(106,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +ax +aU +aU +aU +aU +ON +aD +ON +aU +aU +aU +aU +dR +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +bd +bd +bd +TU +vX +pd +tS +vA +Xp +Xp +bd +OU +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +ay +dB +dB +dB +dB +du +aD +jR +zk +zk +zk +zk +dS +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(107,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +ay +dB +dB +dB +dB +du +aD +jR +zk +zk +zk +zk +dS +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +bd +cj +bg +bg +VE +Hp +Nq +VM +PQ +cl +bd +bd +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +ax +aU +aU +aU +aU +ON +aD +ON +aU +aU +aU +aU +dR +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(108,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +ax +aU +aU +aU +aU +ON +aD +ON +aU +aU +aU +aU +dR +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +bI +FS +bg +bg +VE +Ki +Qy +bd +hF +bg +Jb +bd +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +ay +dB +dB +dB +dB +Qv +aD +ps +zk +zk +zk +zk +dS +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(109,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +ay +dB +dB +dB +dB +Qv +aD +ps +zk +zk +zk +zk +dS +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +bI +sT +Jb +bg +Ue +bg +bg +bg +bg +bg +Jb +bI +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +bs +eL +eL +eL +eL +ON +aD +ON +eL +eL +eL +eL +mZ +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(110,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +bs +eL +eL +eL +eL +ON +aD +ON +eL +eL +eL +eL +mZ +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +bI +RV +bg +bg +hO +bg +bg +br +br +bg +Jb +bd +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aB +dC +dC +dC +dC +Qk +dC +Qk +dC +dC +dC +dC +dT +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(111,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aB +dC +dC +dC +dC +Qk +dC +Qk +dC +dC +dC +dC +dT +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +bd +cj +bg +bg +hO +bg +bg +bg +bg +bg +bd +bd +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aD +aD +aD +aD +ON +aD +ON +aD +aD +aD +aD +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(112,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aD +aD +aD +aD +ON +aD +ON +aD +aD +aD +aD +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +bd +bd +bd +Kq +nS +ha +Kq +ha +ha +Gy +bd +OU +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aD +aD +dU +ON +aD +ON +aD +aD +aD +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(113,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aD +aD +aD +ON +aD +ON +aD +aD +aD +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +iN +No +EL +ts +bI +bd +bI +bI +bd +bd +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aD +aD +Xb +df +dq +aD +aD +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(114,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aD +aD +Xb +df +dq +aD +aD +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aD +aD +aD +aD +aD +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(115,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aD +aD +aD +aD +aD +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aS +aS +aS +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(116,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aS +aS +aS +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(117,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(118,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(119,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(120,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(121,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(122,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(123,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(124,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(125,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(126,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(127,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(128,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(129,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(130,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(131,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(132,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(133,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(134,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(135,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(136,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(137,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(138,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(139,1,1) = {" +cZ +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cZ +"} +(140,1,1) = {" +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +cZ +"} diff --git a/maps/expedition_vr/aerostat/surface.dmm b/maps/expedition_vr/aerostat/surface.dmm index b60deeb4de..15018e9d02 100644 --- a/maps/expedition_vr/aerostat/surface.dmm +++ b/maps/expedition_vr/aerostat/surface.dmm @@ -5,14 +5,14 @@ }, /obj/effect/catwalk_plated, /turf/simulated/floor/plating/eris/under, -/area/tether_away/aerostat/surface/outpost/hallway) +/area/offmap/aerostat/surface/outpost/hallway) "au" = ( /obj/structure/salvageable/server, /obj/machinery/light{ dir = 4 }, /turf/simulated/floor/tiled/eris/bcircuit, -/area/tether_away/aerostat/surface/outpost/backroom) +/area/offmap/aerostat/surface/outpost/backroom) "aA" = ( /obj/machinery/door/airlock/security, /obj/structure/cable/cyan{ @@ -21,7 +21,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/eris/steel, -/area/tether_away/aerostat/surface/outpost/hallway) +/area/offmap/aerostat/surface/outpost/hallway) "aD" = ( /obj/structure/cable/cyan{ icon_state = "2-4" @@ -33,24 +33,24 @@ dir = 6 }, /turf/simulated/floor/tiled/eris/dark, -/area/tether_away/aerostat/surface/outpost/cafe) +/area/offmap/aerostat/surface/outpost/cafe) "aK" = ( /obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ dir = 4 }, /obj/structure/catwalk, /turf/simulated/floor/plating/eris/under, -/area/tether_away/aerostat/surface/outpost/hallway) +/area/offmap/aerostat/surface/outpost/hallway) "aU" = ( /turf/simulated/floor/tiled/eris/steel, -/area/tether_away/aerostat/surface/outpost/backroom) +/area/offmap/aerostat/surface/outpost/backroom) "bc" = ( /obj/machinery/atmospherics/pipe/simple/visible/supply{ dir = 9 }, /obj/structure/catwalk, /turf/simulated/floor/plating/eris/under, -/area/tether_away/aerostat/surface/outpost/hallway) +/area/offmap/aerostat/surface/outpost/hallway) "bm" = ( /obj/structure/cable/cyan{ icon_state = "4-8" @@ -60,13 +60,13 @@ }, /obj/structure/catwalk, /turf/simulated/floor/plating/eris/under, -/area/tether_away/aerostat/surface/outpost/hallway) +/area/offmap/aerostat/surface/outpost/hallway) "br" = ( /obj/machinery/light{ dir = 8 }, /turf/simulated/floor/tiled/eris/bcircuit, -/area/tether_away/aerostat/surface/outpost/hallway) +/area/offmap/aerostat/surface/outpost/hallway) "bt" = ( /obj/machinery/door/airlock/security, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -76,53 +76,53 @@ dir = 8 }, /turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/tether_away/aerostat/surface/outpost/guardpost) +/area/offmap/aerostat/surface/outpost/guardpost) "bT" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled/eris/steel, -/area/tether_away/aerostat/surface/outpost/hallway) +/area/offmap/aerostat/surface/outpost/hallway) "bU" = ( /obj/random/crate, /turf/simulated/floor/tiled/eris/dark/monofloor, -/area/tether_away/aerostat/surface/outpost/officerone) +/area/offmap/aerostat/surface/outpost/officerone) "bZ" = ( /turf/simulated/floor/tiled/eris/white/techfloor_grid, -/area/tether_away/aerostat/surface/outpost/backroom) +/area/offmap/aerostat/surface/outpost/backroom) "cq" = ( /obj/structure/table/woodentable, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/tiled/eris/dark, -/area/tether_away/aerostat/surface/outpost/cafe) +/area/offmap/aerostat/surface/outpost/cafe) "cB" = ( /turf/simulated/floor/plating/eris/under, -/area/tether_away/aerostat/surface/outpost/guardpost) +/area/offmap/aerostat/surface/outpost/guardpost) "cC" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/tiled/eris/white/techfloor_grid, -/area/tether_away/aerostat/surface/outpost/backroom) +/area/offmap/aerostat/surface/outpost/backroom) "dz" = ( /obj/structure/table/steel, /turf/simulated/floor/tiled/eris/steel, -/area/tether_away/aerostat/surface/outpost/backroom) +/area/offmap/aerostat/surface/outpost/backroom) "dA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/aux{ dir = 9 }, /turf/simulated/wall/r_wall, -/area/tether_away/aerostat/surface/outpost/airlock) +/area/offmap/aerostat/surface/outpost/airlock) "dE" = ( /turf/simulated/wall/r_wall, -/area/tether_away/aerostat/surface/outpost/hallway) +/area/offmap/aerostat/surface/outpost/hallway) "dI" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor/wood, -/area/tether_away/aerostat/surface/outpost/barracks) +/area/offmap/aerostat/surface/outpost/barracks) "ex" = ( /obj/structure/cable/cyan{ icon_state = "4-8" @@ -135,7 +135,7 @@ }, /obj/structure/catwalk, /turf/simulated/floor/plating/eris/under, -/area/tether_away/aerostat/surface/outpost/hallway) +/area/offmap/aerostat/surface/outpost/hallway) "eD" = ( /obj/structure/cable/cyan{ icon_state = "4-8" @@ -151,7 +151,7 @@ }, /obj/effect/map_helper/airlock/sensor/int_sensor, /turf/simulated/floor/plating/eris/under, -/area/tether_away/aerostat/surface/outpost/airlock) +/area/offmap/aerostat/surface/outpost/airlock) "eG" = ( /obj/structure/cable/cyan{ icon_state = "1-4" @@ -161,84 +161,84 @@ }, /obj/structure/catwalk, /turf/simulated/floor/plating/eris/under, -/area/tether_away/aerostat/surface/outpost/hallway) +/area/offmap/aerostat/surface/outpost/hallway) "fa" = ( /obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ dir = 5 }, /obj/structure/catwalk, /turf/simulated/floor/plating/eris/under, -/area/tether_away/aerostat/surface/outpost/hallway) +/area/offmap/aerostat/surface/outpost/hallway) "fs" = ( /obj/tether_away_spawner/aerostat_surface, /turf/simulated/mineral/floor/ignore_mapgen/virgo2, -/area/tether_away/aerostat/surface/explored) +/area/offmap/aerostat/surface/explored) "fx" = ( /turf/simulated/wall/r_wall, -/area/tether_away/aerostat/surface/outpost/cafe) +/area/offmap/aerostat/surface/outpost/cafe) "fK" = ( /obj/machinery/light{ dir = 8 }, /turf/simulated/floor/wood, -/area/tether_away/aerostat/surface/outpost/barracks) +/area/offmap/aerostat/surface/outpost/barracks) "fS" = ( /obj/machinery/light, /obj/machinery/atmospherics/pipe/simple/hidden/aux{ dir = 9 }, /turf/simulated/floor/tiled/eris/dark/danger, -/area/tether_away/aerostat/surface/outpost/airlock) +/area/offmap/aerostat/surface/outpost/airlock) "fZ" = ( /obj/structure/table/woodentable, /obj/item/device/flashlight/lamp/green, /turf/simulated/floor/wood, -/area/tether_away/aerostat/surface/outpost/officerone) +/area/offmap/aerostat/surface/outpost/officerone) "gb" = ( /turf/simulated/wall/r_wall, -/area/tether_away/aerostat/surface/outpost/park) +/area/offmap/aerostat/surface/outpost/park) "gd" = ( /obj/machinery/atmospherics/portables_connector, /obj/machinery/portable_atmospherics/canister, /turf/simulated/floor/plating/eris/under, -/area/tether_away/aerostat/surface/outpost/guardpost) +/area/offmap/aerostat/surface/outpost/guardpost) "gq" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/tiled/eris/steel, -/area/tether_away/aerostat/surface/outpost/hallway) +/area/offmap/aerostat/surface/outpost/hallway) "gv" = ( /obj/structure/cable/cyan{ icon_state = "2-8" }, /turf/simulated/floor/tiled/eris/white/techfloor_grid, -/area/tether_away/aerostat/surface/outpost/backroom) +/area/offmap/aerostat/surface/outpost/backroom) "gx" = ( /obj/item/weapon/bedsheet/blue, /obj/structure/bed/padded, /obj/structure/curtain/black, /turf/simulated/floor/wood, -/area/tether_away/aerostat/surface/outpost/barracks) +/area/offmap/aerostat/surface/outpost/barracks) "gy" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan{ dir = 10 }, /turf/simulated/floor/plating/eris/under, -/area/tether_away/aerostat/surface/outpost/guardpost) +/area/offmap/aerostat/surface/outpost/guardpost) "gN" = ( /obj/machinery/atmospherics/pipe/simple/visible/red, /turf/simulated/floor/plating/eris/under, -/area/tether_away/aerostat/surface/outpost/guardpost) +/area/offmap/aerostat/surface/outpost/guardpost) "gU" = ( /obj/structure/table/woodentable, /obj/item/device/flashlight/lamp/green, /turf/simulated/floor/wood, -/area/tether_away/aerostat/surface/outpost/officertwo) +/area/offmap/aerostat/surface/outpost/officertwo) "hi" = ( /obj/structure/prop/dominator, /turf/simulated/floor/tiled/eris/bcircuit, -/area/tether_away/aerostat/surface/outpost/backroom) +/area/offmap/aerostat/surface/outpost/backroom) "hj" = ( /obj/structure/cable/cyan{ icon_state = "1-8" @@ -250,31 +250,31 @@ dir = 8 }, /turf/simulated/floor/wood, -/area/tether_away/aerostat/surface/outpost/barracks) +/area/offmap/aerostat/surface/outpost/barracks) "hq" = ( /obj/random/empty_or_lootable_crate, /turf/simulated/floor/tiled/eris/dark/monofloor, -/area/tether_away/aerostat/surface/outpost/officerone) +/area/offmap/aerostat/surface/outpost/officerone) "hr" = ( /obj/structure/table/woodentable, /obj/item/modular_computer/laptop/preset/custom_loadout/rugged, /turf/simulated/floor/wood, -/area/tether_away/aerostat/surface/outpost/officertwo) +/area/offmap/aerostat/surface/outpost/officertwo) "hB" = ( /obj/structure/cable/cyan{ icon_state = "4-8" }, /obj/machinery/light, /turf/simulated/floor/tiled/eris/dark, -/area/tether_away/aerostat/surface/outpost/cafe) +/area/offmap/aerostat/surface/outpost/cafe) "hI" = ( /turf/unsimulated/wall/planetary/virgo2, -/area/tether_away/aerostat/surface) +/area/offmap/aerostat/surface) "hM" = ( /obj/structure/table/rack/shelf/steel, /obj/random/gun/random, /turf/simulated/floor/tiled/eris/dark/monofloor, -/area/tether_away/aerostat/surface/outpost/officerone) +/area/offmap/aerostat/surface/outpost/officerone) "iu" = ( /obj/machinery/power/apc/alarms_hidden{ dir = 4; @@ -284,7 +284,7 @@ icon_state = "0-8" }, /turf/simulated/floor/tiled/eris/dark, -/area/tether_away/aerostat/surface/outpost/cafe) +/area/offmap/aerostat/surface/outpost/cafe) "jd" = ( /obj/structure/cable/cyan{ icon_state = "4-9" @@ -294,7 +294,7 @@ }, /obj/structure/catwalk, /turf/simulated/floor/plating/eris/under, -/area/tether_away/aerostat/surface/outpost/hallway) +/area/offmap/aerostat/surface/outpost/hallway) "ji" = ( /obj/machinery/door/airlock/multi_tile/glass, /obj/structure/cable/cyan{ @@ -303,13 +303,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/eris/steel, -/area/tether_away/aerostat/surface/outpost/hallway) +/area/offmap/aerostat/surface/outpost/hallway) "jj" = ( /obj/machinery/atmospherics/pipe/simple/visible/supply{ dir = 5 }, /turf/simulated/floor/plating/eris/under, -/area/tether_away/aerostat/surface/outpost/guardpost) +/area/offmap/aerostat/surface/outpost/guardpost) "js" = ( /obj/machinery/power/apc/alarms_hidden{ dir = 8; @@ -322,7 +322,7 @@ pixel_y = 28 }, /turf/simulated/floor/wood, -/area/tether_away/aerostat/surface/outpost/officerone) +/area/offmap/aerostat/surface/outpost/officerone) "jz" = ( /obj/machinery/power/apc/alarms_hidden{ dir = 8; @@ -332,10 +332,10 @@ icon_state = "0-4" }, /turf/simulated/floor/wood, -/area/tether_away/aerostat/surface/outpost/officertwo) +/area/offmap/aerostat/surface/outpost/officertwo) "jF" = ( /turf/simulated/wall/r_wall, -/area/tether_away/aerostat/surface/outpost/officertwo) +/area/offmap/aerostat/surface/outpost/officertwo) "kp" = ( /obj/structure/cable/yellow{ icon_state = "6-8" @@ -350,7 +350,7 @@ icon_state = "2-8" }, /turf/simulated/floor/plating/eris/under, -/area/tether_away/aerostat/surface/outpost/powerroom) +/area/offmap/aerostat/surface/outpost/powerroom) "ks" = ( /obj/structure/cable/yellow{ icon_state = "4-6" @@ -359,13 +359,13 @@ icon_state = "5-8" }, /turf/simulated/floor/plating/eris/under, -/area/tether_away/aerostat/surface/outpost/powerroom) +/area/offmap/aerostat/surface/outpost/powerroom) "kz" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/tether_away/aerostat/surface/outpost/guardpost) +/area/offmap/aerostat/surface/outpost/guardpost) "ld" = ( /obj/machinery/door/airlock/multi_tile/metal{ icon_state = "door_locked"; @@ -374,21 +374,21 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/eris/white/techfloor_grid, -/area/tether_away/aerostat/surface/outpost/backroom) +/area/offmap/aerostat/surface/outpost/backroom) "lI" = ( /obj/structure/closet/crate{ dir = 1 }, /turf/simulated/floor/wood, -/area/tether_away/aerostat/surface/outpost/barracks) +/area/offmap/aerostat/surface/outpost/barracks) "lP" = ( /obj/structure/closet/walllocker/medical/north, /turf/simulated/floor/tiled/eris/steel, -/area/tether_away/aerostat/surface/outpost/hallway) +/area/offmap/aerostat/surface/outpost/hallway) "lZ" = ( /obj/machinery/portable_atmospherics/powered/scrubber, /turf/simulated/floor/plating/eris/under, -/area/tether_away/aerostat/surface/outpost/guardpost) +/area/offmap/aerostat/surface/outpost/guardpost) "mC" = ( /obj/machinery/power/apc/alarms_hidden{ dir = 1; @@ -398,7 +398,7 @@ icon_state = "0-2" }, /turf/simulated/floor/tiled/eris/steel, -/area/tether_away/aerostat/surface/outpost/hallway) +/area/offmap/aerostat/surface/outpost/hallway) "nk" = ( /obj/structure/cable/cyan{ icon_state = "1-2" @@ -412,7 +412,7 @@ }, /obj/structure/catwalk, /turf/simulated/floor/plating/eris/under, -/area/tether_away/aerostat/surface/outpost/hallway) +/area/offmap/aerostat/surface/outpost/hallway) "nr" = ( /obj/structure/cable/cyan{ icon_state = "1-2" @@ -420,23 +420,23 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/eris/dark, -/area/tether_away/aerostat/surface/outpost/cafe) +/area/offmap/aerostat/surface/outpost/cafe) "nx" = ( /obj/structure/sign/painting/away_areas{ pixel_x = -32 }, /turf/simulated/floor/tiled/eris/bcircuit, -/area/tether_away/aerostat/surface/outpost/hallway) +/area/offmap/aerostat/surface/outpost/hallway) "nI" = ( /obj/structure/cable/cyan{ icon_state = "1-2" }, /turf/simulated/floor/tiled/eris/white/techfloor_grid, -/area/tether_away/aerostat/surface/outpost/backroom) +/area/offmap/aerostat/surface/outpost/backroom) "nK" = ( /obj/structure/table/woodentable, /turf/simulated/floor/wood, -/area/tether_away/aerostat/surface/outpost/barracks) +/area/offmap/aerostat/surface/outpost/barracks) "nQ" = ( /obj/machinery/door/airlock/external, /obj/effect/map_helper/airlock/door/int_door, @@ -444,20 +444,22 @@ icon_state = "6-8" }, /turf/simulated/floor/plating/eris/under, -/area/tether_away/aerostat/surface/outpost/airlock) +/area/offmap/aerostat/surface/outpost/airlock) "nS" = ( /turf/simulated/floor/wood, -/area/tether_away/aerostat/surface/outpost/barracks) +/area/offmap/aerostat/surface/outpost/barracks) "or" = ( /obj/structure/salvageable/machine, /turf/simulated/floor/tiled/eris/bcircuit, -/area/tether_away/aerostat/surface/outpost/backroom) +/area/offmap/aerostat/surface/outpost/backroom) "oB" = ( /obj/machinery/light{ dir = 8 }, -/turf/simulated/floor/outdoors/grass/heavy, -/area/tether_away/aerostat/surface/outpost/park) +/turf/simulated/floor/outdoors/grass/heavy{ + outdoors = 0 + }, +/area/offmap/aerostat/surface/outpost/park) "oK" = ( /obj/structure/table/bench/wooden, /obj/machinery/power/apc/alarms_hidden{ @@ -467,18 +469,20 @@ /obj/structure/cable/cyan{ icon_state = "0-2" }, -/turf/simulated/floor/outdoors/grass/heavy, -/area/tether_away/aerostat/surface/outpost/park) +/turf/simulated/floor/outdoors/grass/heavy{ + outdoors = 0 + }, +/area/offmap/aerostat/surface/outpost/park) "oW" = ( /obj/machinery/atmospherics/pipe/simple/visible/universal{ dir = 4 }, /turf/simulated/floor/plating/eris/under, -/area/tether_away/aerostat/surface/outpost/guardpost) +/area/offmap/aerostat/surface/outpost/guardpost) "pj" = ( /obj/structure/bed/alien, /turf/simulated/floor/tiled/eris/bcircuit, -/area/tether_away/aerostat/surface/outpost/backroom) +/area/offmap/aerostat/surface/outpost/backroom) "pv" = ( /obj/structure/cable/cyan{ icon_state = "5-8" @@ -490,47 +494,51 @@ dir = 2 }, /turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/tether_away/aerostat/surface/outpost/hallway) +/area/offmap/aerostat/surface/outpost/hallway) "pD" = ( -/turf/simulated/floor/outdoors/grass/heavy, -/area/tether_away/aerostat/surface/outpost/park) +/turf/simulated/floor/outdoors/grass/heavy{ + outdoors = 0 + }, +/area/offmap/aerostat/surface/outpost/park) "pK" = ( /turf/simulated/floor/tiled/eris/bcircuit, -/area/tether_away/aerostat/surface/outpost/backroom) +/area/offmap/aerostat/surface/outpost/backroom) "pS" = ( /obj/machinery/power/rtg/advanced, /obj/structure/cable/yellow{ icon_state = "0-9" }, /turf/simulated/floor/plating/eris/under, -/area/tether_away/aerostat/surface/outpost/powerroom) +/area/offmap/aerostat/surface/outpost/powerroom) "ql" = ( -/obj/structure/salvageable/personal, -/turf/simulated/mineral/floor/ignore_mapgen/virgo2, -/area/tether_away/aerostat/surface/explored) +/obj/effect/floor_decal/rust, +/obj/effect/floor_decal/rust, +/obj/machinery/computer/shuttle_control/aerostat_shuttle, +/turf/simulated/floor/tiled/techfloor/virgo2, +/area/offmap/aerostat/surface/shuttleconsole) "qs" = ( /obj/machinery/door/airlock/command{ icon_state = "door_locked"; locked = 1 }, /turf/simulated/floor/tiled/eris/dark, -/area/tether_away/aerostat/surface/outpost/officerone) +/area/offmap/aerostat/surface/outpost/officerone) "qJ" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/wood, -/area/tether_away/aerostat/surface/outpost/barracks) +/area/offmap/aerostat/surface/outpost/barracks) "qP" = ( /obj/machinery/atmospherics/pipe/tank/air, /turf/simulated/floor/plating/eris/under, -/area/tether_away/aerostat/surface/outpost/guardpost) +/area/offmap/aerostat/surface/outpost/guardpost) "rm" = ( /obj/machinery/light{ dir = 8 }, /turf/simulated/floor/tiled/eris/steel, -/area/tether_away/aerostat/surface/outpost/backroom) +/area/offmap/aerostat/surface/outpost/backroom) "rn" = ( /obj/machinery/airlock_sensor/airlock_interior{ dir = 4; @@ -540,6 +548,7 @@ /obj/effect/map_helper/airlock/sensor/chamber_sensor, /obj/machinery/embedded_controller/radio/airlock/airlock_controller{ cycle_to_external_air = 1; + frequency = 1380; id_tag = "v2outpost_airlock"; pixel_y = 25 }, @@ -548,27 +557,27 @@ }, /obj/effect/map_helper/airlock/atmos/chamber_pump, /turf/simulated/floor/tiled/eris/dark/danger, -/area/tether_away/aerostat/surface/outpost/airlock) +/area/offmap/aerostat/surface/outpost/airlock) "rp" = ( /obj/machinery/power/rtg/advanced, /obj/structure/cable/yellow{ icon_state = "0-8" }, /turf/simulated/floor/plating/eris/under, -/area/tether_away/aerostat/surface/outpost/powerroom) +/area/offmap/aerostat/surface/outpost/powerroom) "ru" = ( /obj/structure/table/woodentable, /obj/structure/sign/painting/away_areas{ pixel_x = 32 }, /turf/simulated/floor/tiled/eris/dark, -/area/tether_away/aerostat/surface/outpost/cafe) +/area/offmap/aerostat/surface/outpost/cafe) "rA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, /turf/simulated/floor/tiled/eris/white/techfloor_grid, -/area/tether_away/aerostat/surface/outpost/backroom) +/area/offmap/aerostat/surface/outpost/backroom) "rC" = ( /obj/machinery/airlock_sensor/airlock_exterior{ dir = 4; @@ -579,27 +588,27 @@ dir = 4 }, /turf/simulated/floor/hull/virgo2, -/area/tether_away/aerostat/surface/outpost/airlock) +/area/offmap/aerostat/surface/outpost/airlock) "rS" = ( /turf/simulated/wall/r_wall, -/area/tether_away/aerostat/surface/outpost/airlock) +/area/offmap/aerostat/surface/outpost/airlock) "sa" = ( /obj/effect/map_helper/airlock/atmos/pump_out_internal, /obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ dir = 4 }, /turf/simulated/floor/tiled/eris/dark/danger, -/area/tether_away/aerostat/surface/outpost/airlock) +/area/offmap/aerostat/surface/outpost/airlock) "si" = ( /obj/structure/table/rack/shelf/steel, /turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/tether_away/aerostat/surface/outpost/guardpost) +/area/offmap/aerostat/surface/outpost/guardpost) "sl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/aux{ dir = 4 }, /turf/simulated/wall/r_wall, -/area/tether_away/aerostat/surface/outpost/airlock) +/area/offmap/aerostat/surface/outpost/airlock) "sm" = ( /obj/structure/cable/cyan{ icon_state = "4-8" @@ -611,7 +620,7 @@ dir = 8 }, /turf/simulated/floor/tiled/eris/dark, -/area/tether_away/aerostat/surface/outpost/cafe) +/area/offmap/aerostat/surface/outpost/cafe) "st" = ( /obj/structure/closet/crate{ dir = 1 @@ -629,10 +638,10 @@ /obj/item/weapon/material/kitchen/utensil/spoon, /obj/item/weapon/material/kitchen/utensil/spoon, /turf/simulated/floor/tiled/eris/dark/monofloor, -/area/tether_away/aerostat/surface/outpost/cafe) +/area/offmap/aerostat/surface/outpost/cafe) "sA" = ( /turf/simulated/wall/r_wall, -/area/tether_away/aerostat/surface/outpost/barracks) +/area/offmap/aerostat/surface/outpost/barracks) "sC" = ( /obj/machinery/door/airlock/multi_tile/glass{ dir = 2 @@ -641,7 +650,7 @@ dir = 4 }, /turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/tether_away/aerostat/surface/outpost/cafe) +/area/offmap/aerostat/surface/outpost/cafe) "sL" = ( /obj/structure/bed/chair/bay{ dir = 1 @@ -650,7 +659,7 @@ dir = 10 }, /turf/simulated/floor/wood, -/area/tether_away/aerostat/surface/outpost/barracks) +/area/offmap/aerostat/surface/outpost/barracks) "sO" = ( /obj/structure/cable/yellow{ icon_state = "4-10" @@ -659,13 +668,13 @@ icon_state = "8-9" }, /turf/simulated/floor/plating/eris/under, -/area/tether_away/aerostat/surface/outpost/powerroom) +/area/offmap/aerostat/surface/outpost/powerroom) "tm" = ( /obj/machinery/alarm/alarms_hidden{ pixel_y = 28 }, /turf/simulated/floor/wood, -/area/tether_away/aerostat/surface/outpost/officertwo) +/area/offmap/aerostat/surface/outpost/officertwo) "ts" = ( /obj/structure/cable/cyan{ icon_state = "1-4" @@ -676,7 +685,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/tiled/eris/dark, -/area/tether_away/aerostat/surface/outpost/cafe) +/area/offmap/aerostat/surface/outpost/cafe) "ty" = ( /obj/structure/cable/cyan{ icon_state = "4-8" @@ -685,55 +694,55 @@ dir = 1 }, /turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/tether_away/aerostat/surface/outpost/guardpost) +/area/offmap/aerostat/surface/outpost/guardpost) "tG" = ( /obj/machinery/light{ dir = 4 }, /turf/simulated/floor/wood, -/area/tether_away/aerostat/surface/outpost/barracks) +/area/offmap/aerostat/surface/outpost/barracks) "tL" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/tether_away/aerostat/surface/outpost/guardpost) +/area/offmap/aerostat/surface/outpost/guardpost) "tP" = ( /obj/structure/salvageable/implant_container, /turf/simulated/floor/tiled/eris/bcircuit, -/area/tether_away/aerostat/surface/outpost/backroom) +/area/offmap/aerostat/surface/outpost/backroom) "uc" = ( /obj/structure/bed/chair/wood, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/eris/dark, -/area/tether_away/aerostat/surface/outpost/cafe) +/area/offmap/aerostat/surface/outpost/cafe) "uD" = ( /obj/structure/railing, /turf/simulated/mineral/floor/ignore_mapgen/virgo2, -/area/tether_away/aerostat/surface/explored) +/area/offmap/aerostat/surface/explored) "uG" = ( /obj/item/stack/cable_coil/green, /obj/structure/cable/cyan{ icon_state = "1-4" }, /turf/simulated/floor/plating/eris/under, -/area/tether_away/aerostat/surface/outpost/powerroom) +/area/offmap/aerostat/surface/outpost/powerroom) "uJ" = ( /obj/structure/cable/cyan{ icon_state = "1-2" }, /obj/machinery/door/airlock/maintenance/engi, /turf/simulated/floor/plating/eris/under, -/area/tether_away/aerostat/surface/outpost/powerroom) +/area/offmap/aerostat/surface/outpost/powerroom) "uQ" = ( /turf/simulated/wall/r_wall, -/area/tether_away/aerostat/surface/outpost/guardpost) +/area/offmap/aerostat/surface/outpost/guardpost) "uU" = ( /obj/machinery/light{ dir = 1 }, /turf/simulated/floor/tiled/eris/steel, -/area/tether_away/aerostat/surface/outpost/hallway) +/area/offmap/aerostat/surface/outpost/hallway) "uW" = ( /obj/structure/cable/cyan{ icon_state = "1-4" @@ -742,13 +751,13 @@ dir = 4 }, /turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/tether_away/aerostat/surface/outpost/park) +/area/offmap/aerostat/surface/outpost/park) "vl" = ( /obj/structure/bed/roller/adv, /obj/effect/decal/cleanable/blood/splatter, /obj/machinery/light, /turf/simulated/floor/tiled/eris/steel, -/area/tether_away/aerostat/surface/outpost/hallway) +/area/offmap/aerostat/surface/outpost/hallway) "vt" = ( /obj/structure/cable/cyan{ icon_state = "2-8" @@ -757,7 +766,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating/eris/under, -/area/tether_away/aerostat/surface/outpost/powerroom) +/area/offmap/aerostat/surface/outpost/powerroom) "vu" = ( /obj/structure/cable/cyan{ icon_state = "1-4" @@ -767,7 +776,7 @@ }, /obj/structure/catwalk, /turf/simulated/floor/plating/eris/under, -/area/tether_away/aerostat/surface/outpost/hallway) +/area/offmap/aerostat/surface/outpost/hallway) "vx" = ( /obj/machinery/door/airlock/command{ req_one_access = null @@ -776,13 +785,13 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/eris/dark, -/area/tether_away/aerostat/surface/outpost/officerone) +/area/offmap/aerostat/surface/outpost/officerone) "vV" = ( /obj/structure/cable/cyan{ icon_state = "4-8" }, /turf/simulated/floor/tiled/eris/dark, -/area/tether_away/aerostat/surface/outpost/cafe) +/area/offmap/aerostat/surface/outpost/cafe) "wb" = ( /obj/structure/cable/cyan{ icon_state = "4-8" @@ -791,22 +800,22 @@ dir = 8 }, /turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/tether_away/aerostat/surface/outpost/cafe) +/area/offmap/aerostat/surface/outpost/cafe) "wf" = ( /obj/effect/floor_decal/rust, /turf/simulated/floor/tiled/techfloor/virgo2, -/area/tether_away/aerostat/surface/explored) +/area/offmap/aerostat/surface/explored) "wi" = ( /obj/structure/table/marble, /obj/machinery/door/window/brigdoor/southright, /turf/simulated/floor/plating/eris/under, -/area/tether_away/aerostat/surface/outpost/hallway) +/area/offmap/aerostat/surface/outpost/hallway) "wN" = ( /obj/structure/cable/cyan{ icon_state = "1-8" }, /turf/simulated/floor/wood, -/area/tether_away/aerostat/surface/outpost/officertwo) +/area/offmap/aerostat/surface/outpost/officertwo) "wT" = ( /obj/structure/cable/cyan{ icon_state = "6-8" @@ -816,7 +825,7 @@ }, /obj/structure/catwalk, /turf/simulated/floor/plating/eris/under, -/area/tether_away/aerostat/surface/outpost/hallway) +/area/offmap/aerostat/surface/outpost/hallway) "xe" = ( /obj/structure/cable/cyan{ icon_state = "4-8" @@ -824,7 +833,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/eris/white/techfloor_grid, -/area/tether_away/aerostat/surface/outpost/backroom) +/area/offmap/aerostat/surface/outpost/backroom) "xf" = ( /obj/machinery/light{ dir = 1 @@ -833,7 +842,7 @@ dir = 4 }, /turf/simulated/floor/tiled/eris/dark/danger, -/area/tether_away/aerostat/surface/outpost/airlock) +/area/offmap/aerostat/surface/outpost/airlock) "xv" = ( /obj/structure/bed/chair/bay/chair/padded/red, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -843,14 +852,14 @@ dir = 8 }, /turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/tether_away/aerostat/surface/outpost/guardpost) +/area/offmap/aerostat/surface/outpost/guardpost) "xQ" = ( /obj/machinery/atmospherics/pipe/simple/visible/supply{ dir = 4 }, /obj/structure/catwalk, /turf/simulated/floor/plating/eris/under, -/area/tether_away/aerostat/surface/outpost/hallway) +/area/offmap/aerostat/surface/outpost/hallway) "yx" = ( /obj/machinery/power/apc/alarms_hidden{ req_access = null @@ -863,14 +872,14 @@ }, /obj/effect/map_helper/airlock/atmos/chamber_pump, /turf/simulated/floor/tiled/eris/dark/danger, -/area/tether_away/aerostat/surface/outpost/airlock) +/area/offmap/aerostat/surface/outpost/airlock) "yJ" = ( /obj/structure/table/woodentable, /obj/structure/cable/cyan{ icon_state = "1-2" }, /turf/simulated/floor/tiled/eris/dark, -/area/tether_away/aerostat/surface/outpost/cafe) +/area/offmap/aerostat/surface/outpost/cafe) "yK" = ( /obj/structure/closet/crate/bin, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -880,7 +889,7 @@ dir = 9 }, /turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/tether_away/aerostat/surface/outpost/guardpost) +/area/offmap/aerostat/surface/outpost/guardpost) "yL" = ( /obj/structure/cable/cyan{ icon_state = "1-2" @@ -892,36 +901,36 @@ /obj/machinery/atmospherics/pipe/simple/visible/scrubbers, /obj/structure/catwalk, /turf/simulated/floor/plating/eris/under, -/area/tether_away/aerostat/surface/outpost/hallway) +/area/offmap/aerostat/surface/outpost/hallway) "zl" = ( /obj/structure/bed/chair/wood, /obj/structure/cable/cyan{ icon_state = "1-2" }, /turf/simulated/floor/tiled/eris/dark, -/area/tether_away/aerostat/surface/outpost/cafe) +/area/offmap/aerostat/surface/outpost/cafe) "zr" = ( /obj/structure/closet/secure_closet/freezer/fridge, /turf/simulated/floor/tiled/eris/steel/techfloor_grid, -/area/tether_away/aerostat/surface/outpost/cafe) +/area/offmap/aerostat/surface/outpost/cafe) "zG" = ( /obj/item/weapon/stool/baystool/padded{ dir = 4 }, /turf/simulated/floor/tiled/eris/dark, -/area/tether_away/aerostat/surface/outpost/cafe) +/area/offmap/aerostat/surface/outpost/cafe) "zL" = ( /obj/machinery/light{ dir = 8 }, /turf/simulated/floor/tiled/eris/dark, -/area/tether_away/aerostat/surface/outpost/cafe) +/area/offmap/aerostat/surface/outpost/cafe) "zN" = ( /turf/simulated/floor/tiled/eris/bcircuit, -/area/tether_away/aerostat/surface/outpost/hallway) +/area/offmap/aerostat/surface/outpost/hallway) "Ah" = ( /turf/simulated/floor/wood, -/area/tether_away/aerostat/surface/outpost/officertwo) +/area/offmap/aerostat/surface/outpost/officertwo) "Ao" = ( /obj/structure/cable/cyan{ icon_state = "1-2" @@ -934,12 +943,12 @@ dir = 9 }, /turf/simulated/floor/tiled/eris/dark, -/area/tether_away/aerostat/surface/outpost/cafe) +/area/offmap/aerostat/surface/outpost/cafe) "AQ" = ( /obj/structure/bed/double/padded, /obj/item/weapon/bedsheet/hopdouble, /turf/simulated/floor/wood, -/area/tether_away/aerostat/surface/outpost/officertwo) +/area/offmap/aerostat/surface/outpost/officertwo) "Bb" = ( /obj/machinery/alarm/alarms_hidden{ pixel_y = 28 @@ -951,7 +960,7 @@ dir = 6 }, /turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/tether_away/aerostat/surface/outpost/guardpost) +/area/offmap/aerostat/surface/outpost/guardpost) "Bs" = ( /obj/machinery/atmospherics/pipe/simple/hidden/aux{ dir = 4 @@ -960,14 +969,14 @@ id = "v2outpost" }, /turf/simulated/floor/hull/virgo2, -/area/tether_away/aerostat/surface/outpost/airlock) +/area/offmap/aerostat/surface/outpost/airlock) "Cj" = ( /turf/simulated/floor/tiled/eris/dark, -/area/tether_away/aerostat/surface/outpost/cafe) +/area/offmap/aerostat/surface/outpost/cafe) "Cn" = ( /obj/structure/table/rack/shelf/steel, /turf/simulated/floor/tiled/eris/dark/monofloor, -/area/tether_away/aerostat/surface/outpost/officerone) +/area/offmap/aerostat/surface/outpost/officerone) "CF" = ( /obj/structure/cable/cyan{ icon_state = "2-8" @@ -982,26 +991,26 @@ dir = 8 }, /turf/simulated/floor/tiled/eris/dark, -/area/tether_away/aerostat/surface/outpost/cafe) +/area/offmap/aerostat/surface/outpost/cafe) "CN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/aux{ dir = 6 }, /turf/simulated/wall/r_wall, -/area/tether_away/aerostat/surface/outpost/airlock) +/area/offmap/aerostat/surface/outpost/airlock) "CZ" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/aux{ dir = 4 }, /turf/simulated/floor/hull/virgo2, -/area/tether_away/aerostat/surface/outpost/airlock) +/area/offmap/aerostat/surface/outpost/airlock) "Da" = ( /obj/structure/table/woodentable, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor/tiled/eris/dark, -/area/tether_away/aerostat/surface/outpost/cafe) +/area/offmap/aerostat/surface/outpost/cafe) "Do" = ( /obj/structure/bed/chair/wood{ dir = 1 @@ -1010,7 +1019,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/eris/dark, -/area/tether_away/aerostat/surface/outpost/cafe) +/area/offmap/aerostat/surface/outpost/cafe) "DN" = ( /obj/structure/cable/cyan{ icon_state = "1-2" @@ -1018,78 +1027,80 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/eris/steel, -/area/tether_away/aerostat/surface/outpost/hallway) +/area/offmap/aerostat/surface/outpost/hallway) "DW" = ( /obj/structure/railing{ - dir = 1; - icon_state = "railing0" + dir = 1 }, /obj/structure/metal_edge, /turf/simulated/mineral/floor/ignore_mapgen/virgo2, -/area/tether_away/aerostat/surface/explored) +/area/offmap/aerostat/surface/explored) "Ea" = ( /obj/structure/salvageable/autolathe, /turf/simulated/floor/tiled/eris/bcircuit, -/area/tether_away/aerostat/surface/outpost/backroom) +/area/offmap/aerostat/surface/outpost/backroom) "EL" = ( /turf/simulated/wall/r_wall, -/area/tether_away/aerostat/surface/outpost/powerroom) +/area/offmap/aerostat/surface/outpost/powerroom) "EQ" = ( /obj/effect/floor_decal/rust, /obj/effect/shuttle_landmark{ - base_area = /area/tether_away/aerostat/surface/explored; + base_area = /area/offmap/aerostat/surface/explored; base_turf = /turf/simulated/floor/tiled/techfloor/virgo2; landmark_tag = "aerostat_surface"; name = "Virgo 2 Surface" }, /turf/simulated/floor/tiled/techfloor/virgo2, -/area/tether_away/aerostat/surface/explored) +/area/offmap/aerostat/surface/explored) "ET" = ( /obj/structure/bed/double/padded, /obj/item/weapon/bedsheet/hopdouble, /turf/simulated/floor/wood, -/area/tether_away/aerostat/surface/outpost/officerone) +/area/offmap/aerostat/surface/outpost/officerone) "EV" = ( /obj/machinery/atmospherics/portables_connector{ dir = 8 }, /obj/machinery/portable_atmospherics/canister, /turf/simulated/floor/plating/eris/under, -/area/tether_away/aerostat/surface/outpost/guardpost) +/area/offmap/aerostat/surface/outpost/guardpost) "Fr" = ( /obj/effect/catwalk_plated, /obj/machinery/atmospherics/pipe/simple/visible/scrubbers, /obj/machinery/atmospherics/pipe/simple/visible/supply, /turf/simulated/floor/plating/eris/under, -/area/tether_away/aerostat/surface/outpost/hallway) +/area/offmap/aerostat/surface/outpost/hallway) "FL" = ( /turf/simulated/floor/plating/eris/under, -/area/tether_away/aerostat/surface/outpost/powerroom) +/area/offmap/aerostat/surface/outpost/powerroom) "FM" = ( /obj/machinery/button/remote/blast_door{ id = "v2outpost"; pixel_y = 27 }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 4 + }, /turf/simulated/floor/hull/virgo2, -/area/tether_away/aerostat/surface/outpost/airlock) +/area/offmap/aerostat/surface/outpost/airlock) "FO" = ( /obj/structure/closet/crate{ dir = 2 }, /turf/simulated/floor/wood, -/area/tether_away/aerostat/surface/outpost/barracks) +/area/offmap/aerostat/surface/outpost/barracks) "FT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/eris/white/techfloor_grid, -/area/tether_away/aerostat/surface/outpost/backroom) +/area/offmap/aerostat/surface/outpost/backroom) "FU" = ( /obj/machinery/light{ dir = 1 }, /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled/eris/steel, -/area/tether_away/aerostat/surface/outpost/hallway) +/area/offmap/aerostat/surface/outpost/hallway) "FW" = ( /obj/structure/cable/yellow{ icon_state = "6-8" @@ -1098,7 +1109,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating/eris/under, -/area/tether_away/aerostat/surface/outpost/powerroom) +/area/offmap/aerostat/surface/outpost/powerroom) "Ge" = ( /obj/structure/cable/cyan{ icon_state = "0-4" @@ -1108,34 +1119,34 @@ req_access = null }, /turf/simulated/floor/tiled/eris/white/techfloor_grid, -/area/tether_away/aerostat/surface/outpost/backroom) +/area/offmap/aerostat/surface/outpost/backroom) "Gr" = ( /obj/machinery/power/rtg/advanced, /obj/structure/cable/yellow, /turf/simulated/floor/plating/eris/under, -/area/tether_away/aerostat/surface/outpost/powerroom) +/area/offmap/aerostat/surface/outpost/powerroom) "Gv" = ( /obj/structure/table/woodentable, /obj/machinery/alarm/alarms_hidden{ pixel_y = 28 }, /turf/simulated/floor/wood, -/area/tether_away/aerostat/surface/outpost/barracks) +/area/offmap/aerostat/surface/outpost/barracks) "Gy" = ( /obj/structure/salvageable/server, /turf/simulated/floor/tiled/eris/bcircuit, -/area/tether_away/aerostat/surface/outpost/backroom) +/area/offmap/aerostat/surface/outpost/backroom) "GD" = ( /obj/structure/medical_stand/anesthetic, /turf/simulated/floor/tiled/eris/bcircuit, -/area/tether_away/aerostat/surface/outpost/backroom) +/area/offmap/aerostat/surface/outpost/backroom) "GH" = ( /obj/structure/table/woodentable, /obj/structure/sign/painting/away_areas{ pixel_x = 32 }, /turf/simulated/floor/wood, -/area/tether_away/aerostat/surface/outpost/barracks) +/area/offmap/aerostat/surface/outpost/barracks) "Ha" = ( /obj/structure/cable/cyan{ icon_state = "1-2" @@ -1144,7 +1155,7 @@ dir = 9 }, /turf/simulated/floor/tiled/eris/dark, -/area/tether_away/aerostat/surface/outpost/cafe) +/area/offmap/aerostat/surface/outpost/cafe) "Hn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 @@ -1153,46 +1164,46 @@ dir = 8 }, /turf/simulated/floor/wood, -/area/tether_away/aerostat/surface/outpost/barracks) +/area/offmap/aerostat/surface/outpost/barracks) "Hx" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/tiled/eris/white/techfloor_grid, -/area/tether_away/aerostat/surface/outpost/backroom) +/area/offmap/aerostat/surface/outpost/backroom) "HF" = ( /obj/machinery/light, /turf/simulated/floor/tiled/eris/dark, -/area/tether_away/aerostat/surface/outpost/cafe) +/area/offmap/aerostat/surface/outpost/cafe) "HR" = ( /turf/simulated/mineral/virgo2, -/area/tether_away/aerostat/surface/unexplored) +/area/offmap/aerostat/surface/unexplored) "HU" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/aux{ dir = 4 }, /turf/simulated/floor/tiled/eris/dark/danger, -/area/tether_away/aerostat/surface/outpost/airlock) +/area/offmap/aerostat/surface/outpost/airlock) "IB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/tiled/eris/dark, -/area/tether_away/aerostat/surface/outpost/cafe) +/area/offmap/aerostat/surface/outpost/cafe) "II" = ( /obj/machinery/atmospherics/pipe/manifold/visible/supply, /obj/structure/catwalk, /turf/simulated/floor/plating/eris/under, -/area/tether_away/aerostat/surface/outpost/hallway) +/area/offmap/aerostat/surface/outpost/hallway) "IO" = ( /turf/simulated/floor/wood, -/area/tether_away/aerostat/surface/outpost/officerone) +/area/offmap/aerostat/surface/outpost/officerone) "Jf" = ( /obj/structure/bed/chair/wood{ dir = 1 }, /turf/simulated/floor/tiled/eris/dark, -/area/tether_away/aerostat/surface/outpost/cafe) +/area/offmap/aerostat/surface/outpost/cafe) "Jp" = ( /obj/structure/cable/cyan{ icon_state = "4-8" @@ -1201,11 +1212,13 @@ dir = 8 }, /turf/simulated/floor/tiled/eris/dark, -/area/tether_away/aerostat/surface/outpost/cafe) +/area/offmap/aerostat/surface/outpost/cafe) "Js" = ( /obj/structure/table/bench/wooden, -/turf/simulated/floor/outdoors/grass/heavy, -/area/tether_away/aerostat/surface/outpost/park) +/turf/simulated/floor/outdoors/grass/heavy{ + outdoors = 0 + }, +/area/offmap/aerostat/surface/outpost/park) "JS" = ( /obj/structure/cable/cyan{ icon_state = "4-8" @@ -1217,27 +1230,27 @@ dir = 4 }, /turf/simulated/floor/tiled/eris/dark, -/area/tether_away/aerostat/surface/outpost/cafe) +/area/offmap/aerostat/surface/outpost/cafe) "JZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 }, /turf/simulated/floor/wood, -/area/tether_away/aerostat/surface/outpost/barracks) +/area/offmap/aerostat/surface/outpost/barracks) "Kf" = ( /obj/structure/bed/chair/wood, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/eris/dark, -/area/tether_away/aerostat/surface/outpost/cafe) +/area/offmap/aerostat/surface/outpost/cafe) "Kl" = ( /obj/structure/table/steel, /obj/item/modular_computer/tablet/preset/custom_loadout/elite, /turf/simulated/floor/tiled/eris/steel, -/area/tether_away/aerostat/surface/outpost/backroom) +/area/offmap/aerostat/surface/outpost/backroom) "KB" = ( /obj/machinery/atmospherics/pipe/simple/visible/universal, /turf/simulated/floor/plating/eris/under, -/area/tether_away/aerostat/surface/outpost/guardpost) +/area/offmap/aerostat/surface/outpost/guardpost) "KJ" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ dir = 8 @@ -1245,35 +1258,43 @@ /obj/effect/map_helper/airlock/atmos/pump_out_external, /obj/machinery/light, /turf/simulated/floor/hull/virgo2, -/area/tether_away/aerostat/surface/outpost/airlock) +/area/offmap/aerostat/surface/outpost/airlock) "Ll" = ( /obj/machinery/light{ dir = 8 }, /turf/simulated/floor/tiled/eris/white/techfloor_grid, -/area/tether_away/aerostat/surface/outpost/backroom) +/area/offmap/aerostat/surface/outpost/backroom) "Lq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/aux{ dir = 4 }, /turf/simulated/floor/hull/virgo2, -/area/tether_away/aerostat/surface/outpost/airlock) +/area/offmap/aerostat/surface/outpost/airlock) "Lr" = ( /obj/structure/cable/cyan{ icon_state = "4-8" }, /turf/simulated/floor/plating/eris/under, -/area/tether_away/aerostat/surface/outpost/powerroom) +/area/offmap/aerostat/surface/outpost/powerroom) "Lz" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/aux, +/obj/machinery/access_button{ + command = "cycle_exterior"; + dir = 4; + frequency = 1380; + master_tag = "v2outpost_airlock"; + name = "exterior access button"; + pixel_x = -24 + }, /turf/simulated/floor/hull/virgo2, -/area/tether_away/aerostat/surface/outpost/airlock) +/area/offmap/aerostat/surface/outpost/airlock) "LA" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan{ dir = 9 }, /turf/simulated/floor/plating/eris/under, -/area/tether_away/aerostat/surface/outpost/guardpost) +/area/offmap/aerostat/surface/outpost/guardpost) "LL" = ( /obj/machinery/atmospherics/pipe/simple/visible/supply{ dir = 10 @@ -1282,14 +1303,13 @@ dir = 4 }, /turf/simulated/floor/plating/eris/under, -/area/tether_away/aerostat/surface/outpost/guardpost) +/area/offmap/aerostat/surface/outpost/guardpost) "LN" = ( /obj/structure/railing{ - dir = 4; - icon_state = "railing0" + dir = 4 }, /turf/simulated/mineral/floor/ignore_mapgen/virgo2, -/area/tether_away/aerostat/surface/explored) +/area/offmap/aerostat/surface/explored) "LT" = ( /obj/machinery/power/apc/alarms_hidden{ dir = 4; @@ -1299,7 +1319,7 @@ icon_state = "0-8" }, /turf/simulated/floor/plating/eris/under, -/area/tether_away/aerostat/surface/outpost/powerroom) +/area/offmap/aerostat/surface/outpost/powerroom) "LV" = ( /obj/structure/cable/cyan{ icon_state = "1-2" @@ -1309,17 +1329,17 @@ }, /obj/structure/catwalk, /turf/simulated/floor/plating/eris/under, -/area/tether_away/aerostat/surface/outpost/hallway) +/area/offmap/aerostat/surface/outpost/hallway) "Mw" = ( /obj/structure/closet/crate/bin, /turf/simulated/floor/tiled/eris/dark, -/area/tether_away/aerostat/surface/outpost/cafe) +/area/offmap/aerostat/surface/outpost/cafe) "Mz" = ( /obj/machinery/atmospherics/pipe/simple/visible/red{ dir = 9 }, /turf/simulated/floor/plating/eris/under, -/area/tether_away/aerostat/surface/outpost/guardpost) +/area/offmap/aerostat/surface/outpost/guardpost) "MJ" = ( /obj/structure/cable/cyan{ icon_state = "1-2" @@ -1331,30 +1351,30 @@ dir = 8 }, /turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/tether_away/aerostat/surface/outpost/guardpost) +/area/offmap/aerostat/surface/outpost/guardpost) "MR" = ( /obj/structure/cable/cyan{ icon_state = "1-2" }, /turf/simulated/floor/tiled/eris/dark, -/area/tether_away/aerostat/surface/outpost/cafe) +/area/offmap/aerostat/surface/outpost/cafe) "MT" = ( /obj/machinery/button/remote/blast_door{ id = "v2outpost"; pixel_y = 27 }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 10 +/obj/machinery/atmospherics/pipe/manifold/hidden/aux{ + dir = 1 }, /turf/simulated/floor/hull/virgo2, -/area/tether_away/aerostat/surface/outpost/airlock) +/area/offmap/aerostat/surface/outpost/airlock) "MX" = ( /turf/simulated/floor/tiled/eris/dark/monofloor, -/area/tether_away/aerostat/surface/outpost/officerone) +/area/offmap/aerostat/surface/outpost/officerone) "Ng" = ( /obj/machinery/light, /turf/simulated/floor/tiled/eris/steel, -/area/tether_away/aerostat/surface/outpost/hallway) +/area/offmap/aerostat/surface/outpost/hallway) "Nl" = ( /obj/structure/closet/crate/bin, /obj/structure/cable/cyan{ @@ -1365,13 +1385,13 @@ req_access = null }, /turf/simulated/floor/wood, -/area/tether_away/aerostat/surface/outpost/barracks) +/area/offmap/aerostat/surface/outpost/barracks) "Nm" = ( /obj/structure/cable/cyan{ icon_state = "1-8" }, /turf/simulated/floor/wood, -/area/tether_away/aerostat/surface/outpost/officerone) +/area/offmap/aerostat/surface/outpost/officerone) "Nn" = ( /obj/machinery/power/apc/alarms_hidden{ dir = 1; @@ -1381,18 +1401,18 @@ icon_state = "0-8" }, /turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/tether_away/aerostat/surface/outpost/guardpost) +/area/offmap/aerostat/surface/outpost/guardpost) "Ny" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, /turf/simulated/floor/tiled/eris/white/techfloor_grid, -/area/tether_away/aerostat/surface/outpost/backroom) +/area/offmap/aerostat/surface/outpost/backroom) "NF" = ( /obj/structure/closet/crate/bin, /turf/simulated/floor/tiled/eris/steel, -/area/tether_away/aerostat/surface/outpost/backroom) +/area/offmap/aerostat/surface/outpost/backroom) "NU" = ( /obj/machinery/atmospherics/pipe/simple/visible/supply{ dir = 5 @@ -1400,7 +1420,7 @@ /obj/machinery/atmospherics/pipe/simple/visible/scrubbers, /obj/structure/catwalk, /turf/simulated/floor/plating/eris/under, -/area/tether_away/aerostat/surface/outpost/hallway) +/area/offmap/aerostat/surface/outpost/hallway) "NW" = ( /obj/structure/cable/cyan{ icon_state = "4-8" @@ -1410,48 +1430,54 @@ }, /obj/structure/catwalk, /turf/simulated/floor/plating/eris/under, -/area/tether_away/aerostat/surface/outpost/hallway) +/area/offmap/aerostat/surface/outpost/hallway) "Oi" = ( /turf/simulated/floor/tiled/eris/dark/monofloor, -/area/tether_away/aerostat/surface/outpost/cafe) +/area/offmap/aerostat/surface/outpost/cafe) "Ot" = ( /obj/structure/window/reinforced/full, /obj/structure/grille, /turf/simulated/floor/plating/eris/under, -/area/tether_away/aerostat/surface/outpost/hallway) +/area/offmap/aerostat/surface/outpost/hallway) "ON" = ( /obj/structure/table/rack/shelf/steel, /obj/item/weapon/storage/box/glasses, /obj/item/paint_brush, /obj/item/paint_palette, /turf/simulated/floor/tiled/eris/dark/monofloor, -/area/tether_away/aerostat/surface/outpost/cafe) +/area/offmap/aerostat/surface/outpost/cafe) "OT" = ( /turf/simulated/wall/r_wall, -/area/tether_away/aerostat/surface/outpost/officerone) +/area/offmap/aerostat/surface/outpost/officerone) "Pe" = ( /obj/structure/closet/wardrobe/grey, /turf/simulated/floor/wood, -/area/tether_away/aerostat/surface/outpost/barracks) +/area/offmap/aerostat/surface/outpost/barracks) "Pn" = ( /obj/machinery/alarm/alarms_hidden{ pixel_y = 28 }, /turf/simulated/floor/tiled/eris/steel, -/area/tether_away/aerostat/surface/outpost/hallway) +/area/offmap/aerostat/surface/outpost/hallway) "Px" = ( /obj/structure/table/bench/wooden, /obj/machinery/alarm/alarms_hidden{ pixel_y = 28 }, -/turf/simulated/floor/outdoors/grass/heavy, -/area/tether_away/aerostat/surface/outpost/park) +/turf/simulated/floor/outdoors/grass/heavy{ + outdoors = 0 + }, +/area/offmap/aerostat/surface/outpost/park) "PE" = ( /obj/machinery/light{ dir = 1 }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ + dir = 8 + }, +/obj/effect/map_helper/airlock/atmos/pump_out_external, /turf/simulated/floor/hull/virgo2, -/area/tether_away/aerostat/surface/outpost/airlock) +/area/offmap/aerostat/surface/outpost/airlock) "PH" = ( /obj/structure/cable/cyan{ icon_state = "4-10" @@ -1461,43 +1487,55 @@ }, /obj/structure/catwalk, /turf/simulated/floor/plating/eris/under, -/area/tether_away/aerostat/surface/outpost/hallway) +/area/offmap/aerostat/surface/outpost/hallway) "PZ" = ( /turf/simulated/floor/tiled/eris/steel, -/area/tether_away/aerostat/surface/outpost/hallway) +/area/offmap/aerostat/surface/outpost/hallway) "Qp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/tether_away/aerostat/surface/outpost/hallway) +/area/offmap/aerostat/surface/outpost/hallway) "QF" = ( /obj/machinery/portable_atmospherics/powered/pump/filled, /turf/simulated/floor/plating/eris/under, -/area/tether_away/aerostat/surface/outpost/guardpost) +/area/offmap/aerostat/surface/outpost/guardpost) "QJ" = ( /turf/simulated/wall/r_wall, -/area/tether_away/aerostat/surface/outpost/backroom) +/area/offmap/aerostat/surface/outpost/backroom) +"QZ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/access_button{ + command = "cycle_interior"; + dir = 8; + frequency = 1380; + master_tag = "v2outpost_airlock"; + name = "interior access button"; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/eris/steel, +/area/offmap/aerostat/surface/outpost/hallway) "Ra" = ( /obj/structure/table/woodentable, /turf/simulated/floor/tiled/eris/dark, -/area/tether_away/aerostat/surface/outpost/cafe) +/area/offmap/aerostat/surface/outpost/cafe) "Rh" = ( /obj/structure/railing/grey{ dir = 8 }, /obj/structure/salvageable/server, /turf/simulated/floor/tiled/eris/bcircuit, -/area/tether_away/aerostat/surface/outpost/backroom) +/area/offmap/aerostat/surface/outpost/backroom) "Rl" = ( /obj/machinery/atmospherics/pipe/simple/visible/cyan{ dir = 4 }, /turf/simulated/floor/plating/eris/under, -/area/tether_away/aerostat/surface/outpost/guardpost) +/area/offmap/aerostat/surface/outpost/guardpost) "Rw" = ( /turf/simulated/floor/hull/virgo2, -/area/tether_away/aerostat/surface/outpost/airlock) +/area/offmap/aerostat/surface/outpost/airlock) "RP" = ( /obj/machinery/door/airlock/command{ req_one_access = null @@ -1506,14 +1544,14 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/eris/dark, -/area/tether_away/aerostat/surface/outpost/officertwo) +/area/offmap/aerostat/surface/outpost/officertwo) "RQ" = ( /obj/structure/railing/grey{ dir = 8 }, /obj/structure/salvageable/implant_container, /turf/simulated/floor/tiled/eris/bcircuit, -/area/tether_away/aerostat/surface/outpost/backroom) +/area/offmap/aerostat/surface/outpost/backroom) "Sr" = ( /obj/structure/closet/walllocker_double/kitchen/west, /obj/item/weapon/storage/box/tgmc_mre, @@ -1531,27 +1569,26 @@ pixel_y = -4 }, /turf/simulated/floor/tiled/eris/dark, -/area/tether_away/aerostat/surface/outpost/cafe) +/area/offmap/aerostat/surface/outpost/cafe) "Sx" = ( /obj/structure/railing{ - dir = 8; - icon_state = "railing0" + dir = 8 }, /turf/simulated/mineral/floor/ignore_mapgen/virgo2, -/area/tether_away/aerostat/surface/explored) +/area/offmap/aerostat/surface/explored) "SI" = ( /turf/simulated/floor/water/indoors, -/area/tether_away/aerostat/surface/outpost/park) +/area/offmap/aerostat/surface/outpost/park) "SS" = ( /turf/simulated/mineral/floor/ignore_mapgen/virgo2, -/area/tether_away/aerostat/surface/explored) +/area/offmap/aerostat/surface/explored) "Ta" = ( /obj/structure/railing/grey{ dir = 8 }, /obj/structure/salvageable/machine, /turf/simulated/floor/tiled/eris/bcircuit, -/area/tether_away/aerostat/surface/outpost/backroom) +/area/offmap/aerostat/surface/outpost/backroom) "Tc" = ( /obj/effect/map_helper/airlock/door/ext_door, /obj/machinery/door/airlock/glass_external, @@ -1559,7 +1596,7 @@ dir = 4 }, /turf/simulated/floor/plating/eris/under, -/area/tether_away/aerostat/surface/outpost/airlock) +/area/offmap/aerostat/surface/outpost/airlock) "TM" = ( /obj/structure/bed/chair/bay/chair/padded/red{ dir = 4 @@ -1568,51 +1605,51 @@ pixel_y = 28 }, /turf/simulated/floor/tiled/eris/steel, -/area/tether_away/aerostat/surface/outpost/backroom) +/area/offmap/aerostat/surface/outpost/backroom) "Ur" = ( /obj/structure/table/rack/shelf/steel, /obj/item/weapon/storage/box/glasses/pint, /obj/item/canvas/twentyfour_twentyfour, /obj/item/canvas/nineteen_nineteen, /turf/simulated/floor/tiled/eris/dark/monofloor, -/area/tether_away/aerostat/surface/outpost/cafe) +/area/offmap/aerostat/surface/outpost/cafe) "UC" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ dir = 4 }, /obj/effect/map_helper/airlock/atmos/pump_out_internal, /turf/simulated/floor/tiled/eris/dark/danger, -/area/tether_away/aerostat/surface/outpost/airlock) +/area/offmap/aerostat/surface/outpost/airlock) "UE" = ( /obj/machinery/power/terminal, /obj/structure/cable/yellow{ icon_state = "0-4" }, /turf/simulated/floor/plating/eris/under, -/area/tether_away/aerostat/surface/outpost/powerroom) +/area/offmap/aerostat/surface/outpost/powerroom) "UJ" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/tether_away/aerostat/surface/outpost/park) +/area/offmap/aerostat/surface/outpost/park) "UN" = ( /obj/machinery/vending/cola, /turf/simulated/floor/tiled/eris/steel/techfloor_grid, -/area/tether_away/aerostat/surface/outpost/cafe) +/area/offmap/aerostat/surface/outpost/cafe) "Vb" = ( /obj/machinery/atmospherics/pipe/manifold/visible/cyan{ dir = 8 }, /turf/simulated/floor/plating/eris/under, -/area/tether_away/aerostat/surface/outpost/guardpost) +/area/offmap/aerostat/surface/outpost/guardpost) "Vq" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ dir = 4 }, /obj/effect/map_helper/airlock/atmos/chamber_pump, /turf/simulated/floor/tiled/eris/dark/danger, -/area/tether_away/aerostat/surface/outpost/airlock) +/area/offmap/aerostat/surface/outpost/airlock) "Vr" = ( /obj/structure/cable/cyan{ icon_state = "1-2" @@ -1621,13 +1658,13 @@ icon_state = "1-4" }, /turf/simulated/floor/tiled/eris/dark, -/area/tether_away/aerostat/surface/outpost/cafe) +/area/offmap/aerostat/surface/outpost/cafe) "VH" = ( /obj/machinery/light{ dir = 8 }, /turf/simulated/floor/tiled/eris/dark/monofloor, -/area/tether_away/aerostat/surface/outpost/officerone) +/area/offmap/aerostat/surface/outpost/officerone) "VJ" = ( /obj/structure/cable/cyan{ icon_state = "1-2" @@ -1639,7 +1676,7 @@ dir = 10 }, /turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/tether_away/aerostat/surface/outpost/guardpost) +/area/offmap/aerostat/surface/outpost/guardpost) "VW" = ( /obj/structure/table/woodentable, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -1649,33 +1686,33 @@ dir = 8 }, /turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/tether_away/aerostat/surface/outpost/guardpost) +/area/offmap/aerostat/surface/outpost/guardpost) "We" = ( /obj/machinery/light, /obj/machinery/atmospherics/pipe/simple/visible/universal{ dir = 4 }, /turf/simulated/floor/plating/eris/under, -/area/tether_away/aerostat/surface/outpost/guardpost) +/area/offmap/aerostat/surface/outpost/guardpost) "Wg" = ( /obj/machinery/light, /obj/structure/cable/cyan{ icon_state = "4-8" }, /turf/simulated/floor/plating/eris/under, -/area/tether_away/aerostat/surface/outpost/powerroom) +/area/offmap/aerostat/surface/outpost/powerroom) "Wy" = ( /obj/structure/cable/cyan{ icon_state = "0-2" }, /obj/machinery/power/smes/buildable/point_of_interest, /turf/simulated/floor/plating/eris/under, -/area/tether_away/aerostat/surface/outpost/powerroom) +/area/offmap/aerostat/surface/outpost/powerroom) "Wz" = ( /obj/random/coin, /obj/structure/closet/crate/large, /turf/simulated/floor/tiled/eris/dark/monofloor, -/area/tether_away/aerostat/surface/outpost/officerone) +/area/offmap/aerostat/surface/outpost/officerone) "WB" = ( /obj/machinery/door/airlock/glass, /obj/structure/cable/cyan{ @@ -1688,7 +1725,7 @@ dir = 8 }, /turf/simulated/floor/wood, -/area/tether_away/aerostat/surface/outpost/cafe) +/area/offmap/aerostat/surface/outpost/cafe) "WC" = ( /obj/structure/cable/cyan{ icon_state = "4-8" @@ -1700,18 +1737,18 @@ dir = 8 }, /turf/simulated/floor/tiled/eris/dark, -/area/tether_away/aerostat/surface/outpost/cafe) +/area/offmap/aerostat/surface/outpost/cafe) "WF" = ( /obj/machinery/door/airlock/maintenance/engi{ req_one_access = null }, /turf/simulated/floor/tiled/eris/dark, -/area/tether_away/aerostat/surface/outpost/cafe) +/area/offmap/aerostat/surface/outpost/cafe) "WV" = ( /obj/machinery/door/airlock/external, /obj/effect/map_helper/airlock/door/int_door, /turf/simulated/floor/plating/eris/under, -/area/tether_away/aerostat/surface/outpost/airlock) +/area/offmap/aerostat/surface/outpost/airlock) "Xh" = ( /obj/structure/cable/cyan{ icon_state = "2-10" @@ -1719,7 +1756,7 @@ /obj/machinery/atmospherics/pipe/manifold/visible/supply, /obj/structure/catwalk, /turf/simulated/floor/plating/eris/under, -/area/tether_away/aerostat/surface/outpost/hallway) +/area/offmap/aerostat/surface/outpost/hallway) "Xq" = ( /obj/structure/cable/cyan{ icon_state = "5-8" @@ -1729,24 +1766,24 @@ }, /obj/structure/catwalk, /turf/simulated/floor/plating/eris/under, -/area/tether_away/aerostat/surface/outpost/hallway) +/area/offmap/aerostat/surface/outpost/hallway) "XN" = ( /obj/structure/bed/chair/wood, /turf/simulated/floor/tiled/eris/dark, -/area/tether_away/aerostat/surface/outpost/cafe) +/area/offmap/aerostat/surface/outpost/cafe) "Yk" = ( /obj/structure/salvageable/machine, /obj/machinery/light{ dir = 4 }, /turf/simulated/floor/tiled/eris/bcircuit, -/area/tether_away/aerostat/surface/outpost/backroom) +/area/offmap/aerostat/surface/outpost/backroom) "Zb" = ( /obj/machinery/alarm/alarms_hidden{ pixel_y = 28 }, /turf/simulated/floor/tiled/eris/bcircuit, -/area/tether_away/aerostat/surface/outpost/hallway) +/area/offmap/aerostat/surface/outpost/hallway) "Zi" = ( /obj/structure/cable/cyan{ icon_state = "4-8" @@ -1759,42 +1796,42 @@ req_one_access = list(777) }, /turf/simulated/floor/tiled/eris/dark/orangecorner, -/area/tether_away/aerostat/surface/outpost/hallway) +/area/offmap/aerostat/surface/outpost/hallway) "Zt" = ( /obj/structure/table/woodentable, /obj/machinery/chemical_dispenser/bar_soft/full, /turf/simulated/floor/tiled/eris/steel/techfloor_grid, -/area/tether_away/aerostat/surface/outpost/cafe) +/area/offmap/aerostat/surface/outpost/cafe) "Zu" = ( /obj/structure/table/rack/shelf/steel, /turf/simulated/floor/wood, -/area/tether_away/aerostat/surface/outpost/officerone) +/area/offmap/aerostat/surface/outpost/officerone) "Zv" = ( /obj/structure/closet/walllocker/medical/north, /obj/machinery/washing_machine, /turf/simulated/floor/wood, -/area/tether_away/aerostat/surface/outpost/barracks) +/area/offmap/aerostat/surface/outpost/barracks) "ZJ" = ( /obj/machinery/vending/foodfast, /turf/simulated/floor/tiled/eris/steel/techfloor_grid, -/area/tether_away/aerostat/surface/outpost/cafe) +/area/offmap/aerostat/surface/outpost/cafe) "ZL" = ( /obj/random/crate, /obj/machinery/alarm/alarms_hidden{ pixel_y = 28 }, /turf/simulated/floor/tiled/eris/dark/monofloor, -/area/tether_away/aerostat/surface/outpost/officerone) +/area/offmap/aerostat/surface/outpost/officerone) "ZQ" = ( /turf/simulated/mineral/virgo2, -/area/tether_away/aerostat/surface/explored) +/area/offmap/aerostat/surface/explored) "ZW" = ( /obj/machinery/alarm/alarms_hidden{ pixel_y = 28 }, /obj/machinery/portable_atmospherics/powered/scrubber, /turf/simulated/floor/plating/eris/under, -/area/tether_away/aerostat/surface/outpost/guardpost) +/area/offmap/aerostat/surface/outpost/guardpost) (1,1,1) = {" hI @@ -5325,7 +5362,7 @@ cB LL jj dE -bT +QZ bc eD gq @@ -6319,7 +6356,7 @@ ZQ ZQ ZQ rS -Rw +Lq Rw Rw Bs @@ -10240,7 +10277,7 @@ SS SS SS SS -SS +wf SS SS SS @@ -10381,9 +10418,9 @@ SS SS SS SS -SS +wf ql -SS +wf SS SS SS @@ -10524,14 +10561,14 @@ LN LN LN LN -LN -LN +wf +SS wf wf -LN -LN -LN -LN +wf +SS +SS +SS LN LN LN @@ -11095,7 +11132,7 @@ wf wf wf wf -wf +EQ wf wf wf @@ -11379,7 +11416,7 @@ wf wf wf wf -EQ +wf wf wf wf @@ -12513,11 +12550,11 @@ Sx Sx Sx Sx -Sx +SS wf wf -Sx -Sx +wf +SS Sx Sx Sx diff --git a/maps/expedition_vr/beach/_beach.dm b/maps/expedition_vr/beach/_beach.dm index 6d06864d2a..f63be85625 100644 --- a/maps/expedition_vr/beach/_beach.dm +++ b/maps/expedition_vr/beach/_beach.dm @@ -14,6 +14,11 @@ known = TRUE icon_state = "desert" + skybox_icon = 'icons/skybox/virgo4.dmi' + skybox_icon_state = "v4" + skybox_pixel_x = 0 + skybox_pixel_y = 0 + //This is a special subtype of the thing that generates ores on a map //It will generate more rich ores because of the lower numbers than the normal one /datum/random_map/noise/ore/beachmine @@ -80,7 +85,7 @@ //guard = 40 //They'll stay within this range (not defining this disables them staying nearby and they will wander the map (and through step teleports)) mobs_to_pick_from = list( /mob/living/simple_mob/vore/fennec = 300, - /mob/living/simple_mob/animal/passive/snake = 100, + /mob/living/simple_mob/animal/passive/snake/python = 100, /mob/living/simple_mob/vore/alienanimals/teppi = 10, /mob/living/simple_mob/vore/alienanimals/teppi/baby = 1 ) diff --git a/maps/expedition_vr/beach/beach.dmm b/maps/expedition_vr/beach/beach.dmm index 51c4e6d2e7..e2ef0578d2 100644 --- a/maps/expedition_vr/beach/beach.dmm +++ b/maps/expedition_vr/beach/beach.dmm @@ -562,9 +562,6 @@ /obj/machinery/reagentgrinder, /turf/simulated/floor/tiled/eris/cafe, /area/tether_away/beach/resort/kitchen) -"hN" = ( -/turf/simulated/floor/holofloor/beach/sand, -/area/tether_away/beach/jungle) "hQ" = ( /obj/structure/flora/sif/subterranean, /turf/simulated/floor/outdoors/grass{ @@ -19277,7 +19274,7 @@ aa aa aa aa -hN +aa aa tr aj diff --git a/maps/expedition_vr/beach/submaps/BlastMine1.dmm b/maps/expedition_vr/beach/submaps/BlastMine1.dmm new file mode 100644 index 0000000000..957517f964 --- /dev/null +++ b/maps/expedition_vr/beach/submaps/BlastMine1.dmm @@ -0,0 +1,248 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/simulated/mineral/cave, +/area/submap/cave/BlastMine1) +"b" = ( +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/BlastMine1) +"c" = ( +/obj/structure/sign/warning/bomb_range, +/turf/simulated/wall/sandstone, +/area/submap/cave/BlastMine1) +"d" = ( +/obj/structure/table/rack, +/obj/item/weapon/syndie/c4explosive, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/BlastMine1) +"e" = ( +/obj/structure/loot_pile/surface/bones, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/BlastMine1) +"f" = ( +/mob/living/simple_mob/animal/sif/savik, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/BlastMine1) +"g" = ( +/obj/structure/table/rack, +/obj/item/clothing/head/bomb_hood, +/obj/item/clothing/suit/bomb_suit, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/BlastMine1) +"h" = ( +/obj/item/device/gps/internal/poi{ + gps_tag = "Unidentified Signal" + }, +/turf/simulated/wall/sandstone, +/area/submap/cave/BlastMine1) +"i" = ( +/mob/living/simple_mob/animal/sif/diyaab, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/BlastMine1) +"j" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/flame/lighter/zippo/c4detonator{ + detonator_mode = 1 + }, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/BlastMine1) +"k" = ( +/obj/structure/table/rack, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/BlastMine1) +"l" = ( +/obj/machinery/floodlight, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/BlastMine1) +"m" = ( +/turf/simulated/wall/sandstone, +/area/submap/cave/BlastMine1) +"n" = ( +/obj/structure/girder/displaced, +/obj/structure/sign/warning/bomb_range, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/BlastMine1) +"o" = ( +/obj/structure/table, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/BlastMine1) +"p" = ( +/obj/effect/decal/remains/human, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/BlastMine1) +"q" = ( +/obj/structure/sign/warning/bomb_range, +/turf/simulated/wall/sandstone{ + damage = 20 + }, +/area/submap/cave/BlastMine1) + +(1,1,1) = {" +a +a +a +a +a +a +a +a +b +b +b +a +a +b +b +"} +(2,1,1) = {" +a +a +a +a +b +b +b +b +b +b +a +b +a +b +a +"} +(3,1,1) = {" +a +b +c +d +d +d +h +d +k +k +n +b +o +b +a +"} +(4,1,1) = {" +b +b +b +b +b +b +b +i +b +b +b +b +p +b +b +"} +(5,1,1) = {" +b +b +b +b +b +f +b +b +i +b +b +b +b +b +b +"} +(6,1,1) = {" +b +b +b +b +e +b +b +b +l +b +b +b +b +b +b +"} +(7,1,1) = {" +a +a +b +b +c +g +b +g +m +b +b +b +q +b +a +"} +(8,1,1) = {" +a +a +a +b +b +b +b +j +a +b +b +b +b +b +a +"} +(9,1,1) = {" +a +a +a +b +b +b +b +a +a +b +b +b +b +b +a +"} +(10,1,1) = {" +a +a +a +b +b +b +a +a +a +a +b +b +b +a +a +"} diff --git a/maps/expedition_vr/beach/submaps/CaveTrench.dmm b/maps/expedition_vr/beach/submaps/CaveTrench.dmm new file mode 100644 index 0000000000..93a0674844 --- /dev/null +++ b/maps/expedition_vr/beach/submaps/CaveTrench.dmm @@ -0,0 +1,1736 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/template_noop, +/area/template_noop) +"b" = ( +/turf/template_noop, +/area/submap/Cavelake) +"c" = ( +/turf/simulated/mineral/ignore_mapgen/cave, +/area/submap/Cavelake) +"d" = ( +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/Cavelake) +"e" = ( +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/Cavelake) +"f" = ( +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/Cavelake) +"g" = ( +/mob/living/simple_mob/animal/sif/hooligan_crab, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/Cavelake) +"h" = ( +/turf/simulated/floor/water, +/area/submap/Cavelake) +"i" = ( +/mob/living/simple_mob/animal/passive/fish/perch, +/turf/simulated/floor/water, +/area/submap/Cavelake) +"j" = ( +/obj/machinery/crystal, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/Cavelake) +"k" = ( +/mob/living/simple_mob/animal/passive/fish/trout, +/turf/simulated/floor/water, +/area/submap/Cavelake) +"l" = ( +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/Cavelake) +"m" = ( +/obj/random/mob/sif, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/Cavelake) +"n" = ( +/obj/item/clothing/mask/snorkel, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/Cavelake) +"o" = ( +/obj/effect/decal/remains/mouse, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/Cavelake) + +(1,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(2,1,1) = {" +a +b +b +b +b +b +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +b +b +b +b +b +b +a +"} +(3,1,1) = {" +a +b +b +b +c +c +c +c +c +c +c +c +d +d +d +d +d +c +c +c +c +d +d +d +f +f +d +d +d +d +d +d +c +c +b +b +b +b +b +a +"} +(4,1,1) = {" +a +b +b +c +c +c +c +c +c +c +d +d +d +d +d +d +d +d +d +d +d +d +d +f +h +f +f +d +d +d +d +d +d +c +c +b +b +b +b +a +"} +(5,1,1) = {" +a +b +c +c +c +c +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +f +h +h +f +f +d +g +d +d +d +d +c +b +b +b +b +a +"} +(6,1,1) = {" +a +c +c +c +d +d +d +d +d +d +d +d +d +d +c +c +j +d +d +d +d +d +d +f +h +h +h +f +f +d +o +d +d +d +c +c +b +b +b +a +"} +(7,1,1) = {" +a +c +c +d +d +d +d +d +d +d +d +d +d +c +c +c +c +d +d +d +d +d +f +f +h +h +h +h +f +d +d +d +d +d +d +c +b +b +b +a +"} +(8,1,1) = {" +a +b +d +d +d +d +d +d +d +d +d +d +d +c +c +c +c +c +d +d +d +d +f +h +h +h +h +h +f +d +d +d +d +d +d +c +b +b +b +a +"} +(9,1,1) = {" +a +b +d +d +d +d +d +d +d +d +d +d +d +c +c +c +c +c +d +d +d +d +f +h +k +h +h +h +h +f +d +d +d +d +d +c +c +b +b +a +"} +(10,1,1) = {" +a +b +d +d +d +d +d +d +d +d +d +d +d +j +c +c +c +l +d +d +d +d +f +h +h +h +h +h +h +f +d +d +d +d +d +c +c +b +b +a +"} +(11,1,1) = {" +a +b +d +d +d +d +d +d +d +d +d +d +d +d +d +c +c +m +d +d +d +n +f +h +h +h +h +h +h +f +d +d +d +d +c +c +c +b +b +a +"} +(12,1,1) = {" +a +b +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +f +h +h +h +h +k +h +f +f +d +d +d +c +c +c +b +b +a +"} +(13,1,1) = {" +a +b +c +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +f +h +h +h +h +h +h +h +f +d +d +d +c +c +c +b +b +a +"} +(14,1,1) = {" +a +c +c +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +f +h +h +h +h +h +h +h +f +d +d +d +c +c +c +b +b +a +"} +(15,1,1) = {" +a +c +c +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +f +h +h +i +h +h +h +h +f +d +d +d +d +d +c +b +b +a +"} +(16,1,1) = {" +a +c +c +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +f +h +h +h +h +h +h +h +f +d +d +d +d +d +c +b +b +a +"} +(17,1,1) = {" +a +c +c +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +f +f +h +h +h +h +h +h +f +d +d +d +d +d +c +b +b +a +"} +(18,1,1) = {" +a +c +c +d +d +d +d +d +g +d +d +d +d +d +d +d +d +d +d +d +d +d +f +f +f +f +f +f +h +h +f +d +d +d +d +d +c +b +b +a +"} +(19,1,1) = {" +a +c +c +d +d +d +d +d +d +d +f +f +f +f +d +d +d +d +d +d +d +d +d +d +d +d +d +f +f +h +f +d +d +d +d +c +c +b +b +a +"} +(20,1,1) = {" +a +c +c +d +d +d +d +d +f +f +h +h +f +f +f +f +f +d +d +d +d +d +d +d +d +d +d +d +f +f +f +d +d +d +d +c +b +b +b +a +"} +(21,1,1) = {" +a +b +b +b +d +d +d +d +f +h +h +h +h +h +f +f +f +f +f +f +f +d +d +d +d +d +d +d +d +d +d +d +d +d +d +c +b +b +b +a +"} +(22,1,1) = {" +a +b +b +b +d +d +d +f +f +h +h +h +h +h +h +h +h +h +h +h +f +f +f +f +f +f +d +d +d +d +d +d +d +d +d +c +b +b +b +a +"} +(23,1,1) = {" +a +b +b +b +d +d +d +f +h +h +h +h +h +h +h +h +h +h +h +h +h +h +f +h +h +h +f +f +d +d +d +d +d +d +d +c +b +b +b +a +"} +(24,1,1) = {" +a +b +b +b +d +d +d +f +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +f +d +d +d +d +d +d +c +b +b +b +a +"} +(25,1,1) = {" +a +b +b +b +d +d +d +f +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +f +d +d +d +d +d +d +c +c +b +b +a +"} +(26,1,1) = {" +a +b +c +b +d +d +d +f +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +f +f +d +d +d +d +d +c +c +b +b +a +"} +(27,1,1) = {" +a +b +c +b +d +d +d +f +h +h +h +h +i +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +f +f +d +d +d +d +c +c +b +b +b +a +"} +(28,1,1) = {" +a +b +c +c +d +d +d +f +h +h +h +h +h +h +h +h +h +h +h +h +h +i +h +h +h +h +h +h +f +d +d +d +d +d +c +c +b +b +b +a +"} +(29,1,1) = {" +a +b +c +c +d +d +d +f +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +f +d +d +d +d +d +c +c +b +b +b +a +"} +(30,1,1) = {" +a +b +c +c +d +d +d +f +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +f +d +d +d +d +d +b +b +b +b +b +a +"} +(31,1,1) = {" +a +b +c +c +d +d +d +f +f +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +f +f +d +d +d +d +d +b +b +b +b +b +a +"} +(32,1,1) = {" +a +b +c +c +d +d +d +d +f +f +f +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +f +d +d +d +d +d +d +b +b +b +b +b +a +"} +(33,1,1) = {" +a +b +c +c +d +d +d +d +d +d +f +f +h +h +h +h +h +h +h +h +h +h +h +h +h +f +f +f +d +d +d +d +d +d +d +b +b +b +b +a +"} +(34,1,1) = {" +a +b +c +c +d +d +d +d +d +d +d +f +f +h +h +h +h +h +h +h +h +h +h +h +h +f +d +d +d +d +d +d +d +d +d +b +b +b +b +a +"} +(35,1,1) = {" +a +b +c +c +e +d +d +d +d +d +d +f +f +h +h +h +h +h +h +h +h +h +h +h +f +f +d +d +d +d +d +d +d +d +d +c +b +b +b +a +"} +(36,1,1) = {" +a +b +c +c +c +c +d +d +d +d +d +f +f +h +h +h +h +h +h +h +h +h +h +h +f +d +d +d +c +c +c +c +c +c +c +b +b +b +b +a +"} +(37,1,1) = {" +a +b +b +c +c +c +c +c +c +c +c +c +f +h +h +h +k +h +h +h +h +h +h +f +c +c +c +c +c +c +c +c +c +b +b +b +b +b +b +a +"} +(38,1,1) = {" +a +b +b +b +b +b +b +b +b +b +c +c +f +f +f +f +f +f +f +f +f +f +f +f +c +c +b +c +c +c +c +b +b +b +b +b +b +b +b +a +"} +(39,1,1) = {" +a +b +b +b +b +b +b +b +b +b +b +c +c +c +c +c +c +c +c +c +c +c +c +c +c +b +b +b +b +b +b +b +b +b +b +b +b +b +b +a +"} +(40,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} diff --git a/maps/expedition_vr/beach/submaps/Cavelake.dmm b/maps/expedition_vr/beach/submaps/Cavelake.dmm new file mode 100644 index 0000000000..93a0674844 --- /dev/null +++ b/maps/expedition_vr/beach/submaps/Cavelake.dmm @@ -0,0 +1,1736 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/template_noop, +/area/template_noop) +"b" = ( +/turf/template_noop, +/area/submap/Cavelake) +"c" = ( +/turf/simulated/mineral/ignore_mapgen/cave, +/area/submap/Cavelake) +"d" = ( +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/Cavelake) +"e" = ( +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/Cavelake) +"f" = ( +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/Cavelake) +"g" = ( +/mob/living/simple_mob/animal/sif/hooligan_crab, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/Cavelake) +"h" = ( +/turf/simulated/floor/water, +/area/submap/Cavelake) +"i" = ( +/mob/living/simple_mob/animal/passive/fish/perch, +/turf/simulated/floor/water, +/area/submap/Cavelake) +"j" = ( +/obj/machinery/crystal, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/Cavelake) +"k" = ( +/mob/living/simple_mob/animal/passive/fish/trout, +/turf/simulated/floor/water, +/area/submap/Cavelake) +"l" = ( +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/Cavelake) +"m" = ( +/obj/random/mob/sif, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/Cavelake) +"n" = ( +/obj/item/clothing/mask/snorkel, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/Cavelake) +"o" = ( +/obj/effect/decal/remains/mouse, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/Cavelake) + +(1,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(2,1,1) = {" +a +b +b +b +b +b +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +b +b +b +b +b +b +a +"} +(3,1,1) = {" +a +b +b +b +c +c +c +c +c +c +c +c +d +d +d +d +d +c +c +c +c +d +d +d +f +f +d +d +d +d +d +d +c +c +b +b +b +b +b +a +"} +(4,1,1) = {" +a +b +b +c +c +c +c +c +c +c +d +d +d +d +d +d +d +d +d +d +d +d +d +f +h +f +f +d +d +d +d +d +d +c +c +b +b +b +b +a +"} +(5,1,1) = {" +a +b +c +c +c +c +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +f +h +h +f +f +d +g +d +d +d +d +c +b +b +b +b +a +"} +(6,1,1) = {" +a +c +c +c +d +d +d +d +d +d +d +d +d +d +c +c +j +d +d +d +d +d +d +f +h +h +h +f +f +d +o +d +d +d +c +c +b +b +b +a +"} +(7,1,1) = {" +a +c +c +d +d +d +d +d +d +d +d +d +d +c +c +c +c +d +d +d +d +d +f +f +h +h +h +h +f +d +d +d +d +d +d +c +b +b +b +a +"} +(8,1,1) = {" +a +b +d +d +d +d +d +d +d +d +d +d +d +c +c +c +c +c +d +d +d +d +f +h +h +h +h +h +f +d +d +d +d +d +d +c +b +b +b +a +"} +(9,1,1) = {" +a +b +d +d +d +d +d +d +d +d +d +d +d +c +c +c +c +c +d +d +d +d +f +h +k +h +h +h +h +f +d +d +d +d +d +c +c +b +b +a +"} +(10,1,1) = {" +a +b +d +d +d +d +d +d +d +d +d +d +d +j +c +c +c +l +d +d +d +d +f +h +h +h +h +h +h +f +d +d +d +d +d +c +c +b +b +a +"} +(11,1,1) = {" +a +b +d +d +d +d +d +d +d +d +d +d +d +d +d +c +c +m +d +d +d +n +f +h +h +h +h +h +h +f +d +d +d +d +c +c +c +b +b +a +"} +(12,1,1) = {" +a +b +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +f +h +h +h +h +k +h +f +f +d +d +d +c +c +c +b +b +a +"} +(13,1,1) = {" +a +b +c +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +f +h +h +h +h +h +h +h +f +d +d +d +c +c +c +b +b +a +"} +(14,1,1) = {" +a +c +c +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +f +h +h +h +h +h +h +h +f +d +d +d +c +c +c +b +b +a +"} +(15,1,1) = {" +a +c +c +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +f +h +h +i +h +h +h +h +f +d +d +d +d +d +c +b +b +a +"} +(16,1,1) = {" +a +c +c +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +f +h +h +h +h +h +h +h +f +d +d +d +d +d +c +b +b +a +"} +(17,1,1) = {" +a +c +c +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +f +f +h +h +h +h +h +h +f +d +d +d +d +d +c +b +b +a +"} +(18,1,1) = {" +a +c +c +d +d +d +d +d +g +d +d +d +d +d +d +d +d +d +d +d +d +d +f +f +f +f +f +f +h +h +f +d +d +d +d +d +c +b +b +a +"} +(19,1,1) = {" +a +c +c +d +d +d +d +d +d +d +f +f +f +f +d +d +d +d +d +d +d +d +d +d +d +d +d +f +f +h +f +d +d +d +d +c +c +b +b +a +"} +(20,1,1) = {" +a +c +c +d +d +d +d +d +f +f +h +h +f +f +f +f +f +d +d +d +d +d +d +d +d +d +d +d +f +f +f +d +d +d +d +c +b +b +b +a +"} +(21,1,1) = {" +a +b +b +b +d +d +d +d +f +h +h +h +h +h +f +f +f +f +f +f +f +d +d +d +d +d +d +d +d +d +d +d +d +d +d +c +b +b +b +a +"} +(22,1,1) = {" +a +b +b +b +d +d +d +f +f +h +h +h +h +h +h +h +h +h +h +h +f +f +f +f +f +f +d +d +d +d +d +d +d +d +d +c +b +b +b +a +"} +(23,1,1) = {" +a +b +b +b +d +d +d +f +h +h +h +h +h +h +h +h +h +h +h +h +h +h +f +h +h +h +f +f +d +d +d +d +d +d +d +c +b +b +b +a +"} +(24,1,1) = {" +a +b +b +b +d +d +d +f +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +f +d +d +d +d +d +d +c +b +b +b +a +"} +(25,1,1) = {" +a +b +b +b +d +d +d +f +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +f +d +d +d +d +d +d +c +c +b +b +a +"} +(26,1,1) = {" +a +b +c +b +d +d +d +f +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +f +f +d +d +d +d +d +c +c +b +b +a +"} +(27,1,1) = {" +a +b +c +b +d +d +d +f +h +h +h +h +i +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +f +f +d +d +d +d +c +c +b +b +b +a +"} +(28,1,1) = {" +a +b +c +c +d +d +d +f +h +h +h +h +h +h +h +h +h +h +h +h +h +i +h +h +h +h +h +h +f +d +d +d +d +d +c +c +b +b +b +a +"} +(29,1,1) = {" +a +b +c +c +d +d +d +f +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +f +d +d +d +d +d +c +c +b +b +b +a +"} +(30,1,1) = {" +a +b +c +c +d +d +d +f +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +f +d +d +d +d +d +b +b +b +b +b +a +"} +(31,1,1) = {" +a +b +c +c +d +d +d +f +f +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +f +f +d +d +d +d +d +b +b +b +b +b +a +"} +(32,1,1) = {" +a +b +c +c +d +d +d +d +f +f +f +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +f +d +d +d +d +d +d +b +b +b +b +b +a +"} +(33,1,1) = {" +a +b +c +c +d +d +d +d +d +d +f +f +h +h +h +h +h +h +h +h +h +h +h +h +h +f +f +f +d +d +d +d +d +d +d +b +b +b +b +a +"} +(34,1,1) = {" +a +b +c +c +d +d +d +d +d +d +d +f +f +h +h +h +h +h +h +h +h +h +h +h +h +f +d +d +d +d +d +d +d +d +d +b +b +b +b +a +"} +(35,1,1) = {" +a +b +c +c +e +d +d +d +d +d +d +f +f +h +h +h +h +h +h +h +h +h +h +h +f +f +d +d +d +d +d +d +d +d +d +c +b +b +b +a +"} +(36,1,1) = {" +a +b +c +c +c +c +d +d +d +d +d +f +f +h +h +h +h +h +h +h +h +h +h +h +f +d +d +d +c +c +c +c +c +c +c +b +b +b +b +a +"} +(37,1,1) = {" +a +b +b +c +c +c +c +c +c +c +c +c +f +h +h +h +k +h +h +h +h +h +h +f +c +c +c +c +c +c +c +c +c +b +b +b +b +b +b +a +"} +(38,1,1) = {" +a +b +b +b +b +b +b +b +b +b +c +c +f +f +f +f +f +f +f +f +f +f +f +f +c +c +b +c +c +c +c +b +b +b +b +b +b +b +b +a +"} +(39,1,1) = {" +a +b +b +b +b +b +b +b +b +b +b +c +c +c +c +c +c +c +c +c +c +c +c +c +c +b +b +b +b +b +b +b +b +b +b +b +b +b +b +a +"} +(40,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} diff --git a/maps/expedition_vr/beach/submaps/Cliff1.dmm b/maps/expedition_vr/beach/submaps/Cliff1.dmm new file mode 100644 index 0000000000..f34c92b82c --- /dev/null +++ b/maps/expedition_vr/beach/submaps/Cliff1.dmm @@ -0,0 +1,414 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/template_noop, +/area/template_noop) +"b" = ( +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/template_noop) +"c" = ( +/obj/item/weapon/ore, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/ore_cliff) +"d" = ( +/obj/random/outcrop, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/ore_cliff) +"e" = ( +/obj/structure/cliff/automatic/corner, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/ore_cliff) +"f" = ( +/obj/structure/cliff/automatic{ + icon_state = "cliffbuilder"; + dir = 5 + }, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/ore_cliff) +"g" = ( +/obj/structure/cliff/automatic{ + icon_state = "cliffbuilder"; + dir = 9 + }, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/ore_cliff) +"h" = ( +/obj/structure/cliff/automatic, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/ore_cliff) +"i" = ( +/obj/structure/cliff/automatic/corner{ + icon_state = "cliffbuilder-corner"; + dir = 9 + }, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/ore_cliff) +"j" = ( +/obj/random/humanoidremains{ + spawn_nothing_percentage = 70 + }, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/ore_cliff) +"k" = ( +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/ore_cliff) + +(1,1,1) = {" +a +a +a +a +a +a +a +a +a +a +"} +(2,1,1) = {" +a +a +b +a +a +a +a +a +a +a +"} +(3,1,1) = {" +a +a +b +k +k +k +a +a +a +a +"} +(4,1,1) = {" +a +a +b +c +e +c +j +a +a +a +"} +(5,1,1) = {" +a +a +b +k +f +e +k +a +a +a +"} +(6,1,1) = {" +a +a +a +k +c +h +k +b +a +a +"} +(7,1,1) = {" +a +a +b +b +k +h +k +k +a +a +"} +(8,1,1) = {" +a +a +b +d +k +f +e +c +c +a +"} +(9,1,1) = {" +a +a +b +b +k +k +h +k +k +a +"} +(10,1,1) = {" +a +a +b +c +b +k +f +e +k +a +"} +(11,1,1) = {" +a +a +b +b +b +k +k +h +k +a +"} +(12,1,1) = {" +a +a +b +b +d +k +c +h +j +a +"} +(13,1,1) = {" +a +a +b +b +b +k +k +h +k +a +"} +(14,1,1) = {" +a +a +a +b +b +k +g +i +k +a +"} +(15,1,1) = {" +a +a +a +b +c +k +h +k +c +a +"} +(16,1,1) = {" +a +a +b +b +b +k +h +k +b +a +"} +(17,1,1) = {" +a +a +b +d +b +k +h +k +b +a +"} +(18,1,1) = {" +a +a +b +b +b +c +h +k +c +a +"} +(19,1,1) = {" +a +a +b +b +k +g +i +k +b +a +"} +(20,1,1) = {" +a +a +b +c +k +h +k +k +b +a +"} +(21,1,1) = {" +a +a +b +d +k +h +k +c +b +a +"} +(22,1,1) = {" +a +a +b +b +c +h +k +b +a +a +"} +(23,1,1) = {" +a +a +b +b +g +i +c +b +a +a +"} +(24,1,1) = {" +a +a +a +k +h +k +j +b +a +a +"} +(25,1,1) = {" +a +a +a +k +h +k +b +b +a +a +"} +(26,1,1) = {" +a +a +a +c +h +k +b +a +a +a +"} +(27,1,1) = {" +a +a +b +k +i +c +b +a +a +a +"} +(28,1,1) = {" +a +a +b +k +k +k +a +a +a +a +"} +(29,1,1) = {" +a +a +a +a +a +a +a +a +a +a +"} +(30,1,1) = {" +a +a +a +a +a +a +a +a +a +a +"} diff --git a/maps/expedition_vr/beach/submaps/CrashedMedShuttle1.dmm b/maps/expedition_vr/beach/submaps/CrashedMedShuttle1.dmm new file mode 100644 index 0000000000..8b980b9988 --- /dev/null +++ b/maps/expedition_vr/beach/submaps/CrashedMedShuttle1.dmm @@ -0,0 +1,1047 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/CrashedMedShuttle) +"ab" = ( +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/CrashedMedShuttle) +"ac" = ( +/obj/structure/lattice, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/CrashedMedShuttle) +"ad" = ( +/obj/effect/spider/stickyweb, +/turf/simulated/shuttle/plating, +/area/submap/CrashedMedShuttle) +"ae" = ( +/obj/structure/sign/greencross{ + desc = "White cross in a green field, you can get medical aid here."; + name = "First-Aid" + }, +/turf/simulated/shuttle/wall/no_join, +/area/submap/CrashedMedShuttle) +"af" = ( +/obj/structure/grille, +/obj/structure/shuttle/window, +/turf/simulated/shuttle/plating, +/area/submap/CrashedMedShuttle) +"ag" = ( +/turf/simulated/shuttle/wall, +/area/submap/CrashedMedShuttle) +"ah" = ( +/obj/item/weapon/material/shard{ + icon_state = "medium" + }, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/CrashedMedShuttle) +"ai" = ( +/obj/item/weapon/material/shard{ + icon_state = "medium" + }, +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/lattice, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/CrashedMedShuttle) +"aj" = ( +/obj/machinery/light/small{ + dir = 4; + pixel_y = 0 + }, +/obj/structure/sign/warning/airlock{ + pixel_x = 32 + }, +/obj/effect/spider/stickyweb, +/turf/simulated/shuttle/plating, +/area/submap/CrashedMedShuttle) +"ak" = ( +/turf/simulated/shuttle/floor/white, +/area/submap/CrashedMedShuttle) +"al" = ( +/obj/item/weapon/storage/toolbox/mechanical, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/table/standard, +/turf/simulated/shuttle/floor/white, +/area/submap/CrashedMedShuttle) +"am" = ( +/obj/structure/table/standard, +/turf/simulated/shuttle/floor/white, +/area/submap/CrashedMedShuttle) +"an" = ( +/obj/structure/window/reinforced, +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/loot_pile/surface/bones, +/obj/structure/lattice, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/CrashedMedShuttle) +"ao" = ( +/obj/item/weapon/circuitboard/broken, +/obj/structure/door_assembly/door_assembly_ext, +/turf/simulated/shuttle/plating, +/area/submap/CrashedMedShuttle) +"ap" = ( +/obj/structure/door_assembly/door_assembly_ext, +/turf/simulated/shuttle/plating, +/area/submap/CrashedMedShuttle) +"aq" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/mob/living/simple_mob/animal/giant_spider/webslinger, +/turf/simulated/shuttle/floor/white, +/area/submap/CrashedMedShuttle) +"ar" = ( +/obj/structure/closet/crate/medical, +/obj/random/medical, +/obj/random/medical, +/turf/simulated/shuttle/floor/white, +/area/submap/CrashedMedShuttle) +"as" = ( +/obj/structure/table/standard, +/obj/machinery/cell_charger, +/turf/simulated/shuttle/floor/white, +/area/submap/CrashedMedShuttle) +"at" = ( +/obj/item/weapon/material/shard, +/obj/structure/lattice, +/turf/simulated/floor/outdoors/rocks, +/area/submap/CrashedMedShuttle) +"au" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/effect/spider/stickyweb, +/turf/simulated/shuttle/floor/white, +/area/submap/CrashedMedShuttle) +"av" = ( +/obj/random/mob/spider/mutant, +/turf/simulated/shuttle/floor/white, +/area/submap/CrashedMedShuttle) +"aw" = ( +/obj/machinery/door/airlock/glass, +/turf/simulated/shuttle/floor/white, +/area/submap/CrashedMedShuttle) +"ax" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/liquid_fuel, +/turf/simulated/shuttle/floor/white, +/area/submap/CrashedMedShuttle) +"ay" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/liquid_fuel, +/turf/simulated/shuttle/floor/white, +/area/submap/CrashedMedShuttle) +"az" = ( +/obj/effect/decal/cleanable/blood/gibs/robot, +/obj/item/weapon/firstaid_arm_assembly, +/mob/living/simple_mob/animal/giant_spider/frost, +/turf/simulated/shuttle/floor/white, +/area/submap/CrashedMedShuttle) +"aA" = ( +/obj/item/stack/rods, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/CrashedMedShuttle) +"aB" = ( +/obj/structure/lattice, +/obj/item/stack/rods, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/CrashedMedShuttle) +"aC" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/item/weapon/firstaid_arm_assembly, +/turf/simulated/shuttle/floor/white, +/area/submap/CrashedMedShuttle) +"aD" = ( +/obj/structure/closet/secure_closet/personal/patient, +/turf/simulated/shuttle/floor/white, +/area/submap/CrashedMedShuttle) +"aE" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/simulated/shuttle/floor/white, +/area/submap/CrashedMedShuttle) +"aF" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/decal/cleanable/liquid_fuel, +/turf/simulated/shuttle/floor/white, +/area/submap/CrashedMedShuttle) +"aG" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/decal/cleanable/liquid_fuel, +/turf/simulated/shuttle/floor/white, +/area/submap/CrashedMedShuttle) +"aH" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/obj/structure/ghost_pod/manual/lost_drone/dogborg, +/turf/simulated/shuttle/floor/white, +/area/submap/CrashedMedShuttle) +"aI" = ( +/obj/structure/table/standard, +/obj/effect/spider/stickyweb, +/obj/machinery/light, +/turf/simulated/shuttle/floor/white, +/area/submap/CrashedMedShuttle) +"aJ" = ( +/obj/structure/table/standard, +/obj/effect/spider/stickyweb, +/turf/simulated/shuttle/floor/white, +/area/submap/CrashedMedShuttle) +"aK" = ( +/obj/structure/table/standard, +/obj/item/weapon/material/shard{ + icon_state = "medium" + }, +/obj/effect/spider/stickyweb, +/turf/simulated/shuttle/floor/white, +/area/submap/CrashedMedShuttle) +"aL" = ( +/obj/structure/grille/broken, +/obj/item/weapon/material/shard{ + icon_state = "medium" + }, +/obj/item/stack/rods, +/turf/simulated/shuttle/plating, +/area/submap/CrashedMedShuttle) +"aM" = ( +/obj/item/weapon/material/shard, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/CrashedMedShuttle) +"aN" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/CrashedMedShuttle) +"aO" = ( +/obj/item/weapon/material/shard{ + icon_state = "medium" + }, +/obj/effect/spider/stickyweb, +/mob/living/simple_mob/animal/giant_spider/carrier, +/turf/simulated/shuttle/floor/white, +/area/submap/CrashedMedShuttle) +"aP" = ( +/obj/effect/decal/cleanable/blood/gibs/robot, +/turf/simulated/shuttle/floor/white, +/area/submap/CrashedMedShuttle) +"aQ" = ( +/obj/effect/spider/stickyweb, +/turf/simulated/shuttle/floor/white, +/area/submap/CrashedMedShuttle) +"aR" = ( +/turf/simulated/shuttle/wall/no_join, +/area/submap/CrashedMedShuttle) +"aS" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/loot_pile/surface/bones, +/obj/structure/lattice, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/CrashedMedShuttle) +"aT" = ( +/obj/machinery/light, +/obj/structure/table/standard, +/obj/effect/spider/stickyweb, +/turf/simulated/shuttle/floor/white, +/area/submap/CrashedMedShuttle) +"aU" = ( +/obj/structure/table/standard, +/obj/item/weapon/material/shard{ + icon_state = "medium" + }, +/obj/random/medical, +/turf/simulated/shuttle/floor/white, +/area/submap/CrashedMedShuttle) +"aV" = ( +/obj/effect/spider/stickyweb, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/CrashedMedShuttle) +"aW" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/CrashedMedShuttle) +"aX" = ( +/obj/machinery/computer, +/turf/simulated/shuttle/floor/yellow, +/area/submap/CrashedMedShuttle) +"aY" = ( +/obj/structure/prop/blackbox/crashed_med_shuttle, +/turf/simulated/shuttle/floor/yellow, +/area/submap/CrashedMedShuttle) +"aZ" = ( +/obj/effect/spider/stickyweb, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/CrashedMedShuttle) +"ba" = ( +/obj/random/mob/spider/mutant, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/CrashedMedShuttle) +"bb" = ( +/obj/effect/spider/cocoon, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/CrashedMedShuttle) +"bc" = ( +/obj/item/weapon/material/shard{ + icon_state = "medium" + }, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/CrashedMedShuttle) +"bd" = ( +/obj/item/stack/rods, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/CrashedMedShuttle) +"be" = ( +/obj/effect/spider/stickyweb, +/obj/structure/girder/displaced, +/obj/structure/lattice, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/CrashedMedShuttle) +"bf" = ( +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -32 + }, +/obj/structure/lattice, +/obj/item/device/gps/internal/poi, +/obj/structure/flora/tree/sif, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/CrashedMedShuttle) +"bg" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/structure/loot_pile/surface/bones, +/obj/effect/decal/cleanable/blood/drip, +/obj/structure/lattice, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/CrashedMedShuttle) +"bh" = ( +/obj/structure/grille/broken, +/obj/item/weapon/material/shard{ + icon_state = "medium" + }, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/CrashedMedShuttle) +"bi" = ( +/obj/effect/decal/mecha_wreckage/odysseus, +/obj/effect/decal/cleanable/blood/oil, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/CrashedMedShuttle) +"bj" = ( +/obj/item/weapon/material/shard, +/obj/effect/spider/stickyweb, +/obj/item/weapon/beartrap{ + anchored = 1; + deployed = 1; + icon_state = "beartrap1" + }, +/obj/random/trash, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/CrashedMedShuttle) +"bk" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/lattice, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/CrashedMedShuttle) +"bl" = ( +/obj/effect/spider/stickyweb, +/obj/item/weapon/material/shard, +/turf/simulated/shuttle/floor/white, +/area/submap/CrashedMedShuttle) +"bm" = ( +/obj/random/medical, +/turf/simulated/shuttle/floor/white, +/area/submap/CrashedMedShuttle) +"bn" = ( +/mob/living/simple_mob/animal/giant_spider/webslinger, +/turf/simulated/floor/outdoors/rocks, +/area/submap/CrashedMedShuttle) +"bo" = ( +/obj/effect/spider/cocoon, +/obj/structure/lattice, +/turf/simulated/floor/outdoors/rocks, +/area/submap/CrashedMedShuttle) +"bp" = ( +/obj/structure/prop/fake_ai/dead/crashed_med_shuttle, +/turf/simulated/shuttle/floor/yellow, +/area/submap/CrashedMedShuttle) +"bq" = ( +/obj/structure/flora/tree/sif, +/turf/simulated/floor/outdoors/rocks, +/area/submap/CrashedMedShuttle) +"br" = ( +/obj/structure/grille/broken, +/obj/item/weapon/material/shard, +/turf/simulated/floor/outdoors/rocks, +/area/submap/CrashedMedShuttle) +"bs" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/spider/stickyweb, +/mob/living/simple_mob/animal/giant_spider/webslinger, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/CrashedMedShuttle) +"bt" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/CrashedMedShuttle) +"bu" = ( +/obj/effect/decal/remains/tajaran, +/obj/item/weapon/surgical/circular_saw, +/turf/simulated/floor/outdoors/rocks, +/area/submap/CrashedMedShuttle) +"bv" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/effect/spider/stickyweb, +/turf/simulated/floor/outdoors/rocks, +/area/submap/CrashedMedShuttle) +"bw" = ( +/obj/item/weapon/material/shard, +/obj/structure/loot_pile/maint/technical, +/obj/structure/lattice, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/CrashedMedShuttle) +"bx" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/simulated/shuttle/floor/purple, +/area/submap/CrashedMedShuttle) +"by" = ( +/obj/item/weapon/circuitboard/broken, +/turf/simulated/shuttle/floor/white, +/area/submap/CrashedMedShuttle) +"bz" = ( +/obj/structure/girder, +/turf/template_noop, +/area/submap/CrashedMedShuttle) +"bA" = ( +/obj/structure/girder/displaced, +/turf/template_noop, +/area/submap/CrashedMedShuttle) +"bB" = ( +/obj/structure/shuttle/engine/propulsion{ + icon_state = "propulsion_r"; + dir = 8 + }, +/turf/simulated/floor/outdoors/rocks, +/area/submap/CrashedMedShuttle) +"bC" = ( +/obj/structure/shuttle/engine/heater{ + icon_state = "heater"; + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/CrashedMedShuttle) +"bD" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/firstaid/adv, +/turf/simulated/shuttle/floor/purple, +/area/submap/CrashedMedShuttle) +"bE" = ( +/obj/structure/table/standard, +/turf/simulated/shuttle/floor/purple, +/area/submap/CrashedMedShuttle) +"bF" = ( +/obj/random/medical/pillbottle, +/mob/living/simple_mob/animal/giant_spider/webslinger, +/turf/simulated/shuttle/floor/white, +/area/submap/CrashedMedShuttle) +"bG" = ( +/obj/structure/table/standard, +/obj/item/device/defib_kit/loaded, +/turf/simulated/shuttle/floor/white, +/area/submap/CrashedMedShuttle) +"bH" = ( +/obj/structure/table/standard, +/obj/item/bodybag/cryobag, +/turf/simulated/shuttle/floor/white, +/area/submap/CrashedMedShuttle) +"bI" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/box/bodybags, +/turf/simulated/shuttle/floor/white, +/area/submap/CrashedMedShuttle) +"bJ" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/shuttle/floor/white, +/area/submap/CrashedMedShuttle) +"bK" = ( +/obj/structure/table/standard, +/obj/item/weapon/surgical/retractor, +/turf/simulated/shuttle/floor/white, +/area/submap/CrashedMedShuttle) +"bL" = ( +/obj/item/weapon/material/shard, +/obj/structure/grille, +/turf/simulated/shuttle/plating, +/area/submap/CrashedMedShuttle) +"bM" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/table/standard, +/obj/structure/loot_pile/maint/technical, +/turf/simulated/shuttle/floor/purple, +/area/submap/CrashedMedShuttle) +"bN" = ( +/obj/effect/decal/cleanable/blood/gibs/robot, +/obj/effect/spider/cocoon, +/turf/simulated/shuttle/floor/white, +/area/submap/CrashedMedShuttle) +"bO" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/obj/structure/closet/secure_closet/medical_wall/anesthetics{ + pixel_x = 32 + }, +/obj/item/weapon/material/shard{ + icon_state = "medium" + }, +/turf/simulated/shuttle/floor/white, +/area/submap/CrashedMedShuttle) +"bP" = ( +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/turf/simulated/shuttle/floor/white, +/area/submap/CrashedMedShuttle) +"bQ" = ( +/obj/effect/spider/cocoon, +/turf/simulated/shuttle/floor/white, +/area/submap/CrashedMedShuttle) +"bR" = ( +/obj/effect/decal/cleanable/blood/splatter, +/obj/structure/loot_pile/surface/bones, +/obj/item/weapon/surgical/surgicaldrill, +/turf/simulated/shuttle/floor/white, +/area/submap/CrashedMedShuttle) +"bS" = ( +/obj/item/weapon/material/shard{ + icon_state = "medium" + }, +/obj/structure/grille, +/turf/simulated/shuttle/plating, +/area/submap/CrashedMedShuttle) +"bT" = ( +/obj/structure/table/standard, +/obj/item/device/reagent_scanner/adv, +/turf/simulated/shuttle/floor/purple, +/area/submap/CrashedMedShuttle) +"bU" = ( +/obj/machinery/iv_drip, +/obj/item/weapon/reagent_containers/blood/empty, +/turf/simulated/shuttle/floor/white, +/area/submap/CrashedMedShuttle) +"bV" = ( +/mob/living/simple_mob/animal/giant_spider/carrier, +/turf/simulated/shuttle/floor/white, +/area/submap/CrashedMedShuttle) +"bW" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/box/masks, +/turf/simulated/shuttle/floor/white, +/area/submap/CrashedMedShuttle) +"bX" = ( +/obj/structure/table/standard, +/obj/random/firstaid, +/turf/simulated/shuttle/floor/white, +/area/submap/CrashedMedShuttle) +"bY" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/backpack/medic, +/obj/random/medical/lite, +/turf/simulated/shuttle/floor/white, +/area/submap/CrashedMedShuttle) +"bZ" = ( +/obj/structure/table/standard, +/obj/effect/spider/stickyweb, +/obj/random/medical, +/turf/simulated/shuttle/floor/white, +/area/submap/CrashedMedShuttle) +"ca" = ( +/obj/structure/girder, +/turf/simulated/shuttle/plating, +/area/submap/CrashedMedShuttle) +"cb" = ( +/obj/structure/frame, +/turf/simulated/shuttle/floor/white, +/area/submap/CrashedMedShuttle) +"cc" = ( +/obj/structure/table/standard, +/obj/structure/sign/periodic{ + pixel_y = -32 + }, +/obj/item/weapon/surgical/bonesetter, +/obj/item/weapon/surgical/scalpel, +/turf/simulated/shuttle/floor/white, +/area/submap/CrashedMedShuttle) +"cd" = ( +/obj/machinery/optable, +/obj/effect/decal/cleanable/blood/splatter, +/obj/structure/loot_pile/surface/bones, +/turf/simulated/shuttle/floor/white, +/area/submap/CrashedMedShuttle) +"ce" = ( +/obj/structure/table/standard, +/obj/item/weapon/surgical/bonegel, +/obj/item/weapon/surgical/FixOVein, +/turf/simulated/shuttle/floor/white, +/area/submap/CrashedMedShuttle) +"cf" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + id_tag = "admin_shuttle"; + pixel_x = -25; + pixel_y = 0; + req_one_access = list(101); + tag_door = "admin_shuttle_hatch" + }, +/obj/random/mob/spider/mutant, +/turf/simulated/shuttle/plating, +/area/submap/CrashedMedShuttle) +"cg" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/belt/medical/emt, +/turf/simulated/shuttle/floor/white, +/area/submap/CrashedMedShuttle) +"ch" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/box/syringes, +/obj/effect/spider/stickyweb, +/obj/machinery/light, +/turf/simulated/shuttle/floor/white, +/area/submap/CrashedMedShuttle) +"ci" = ( +/obj/machinery/door/airlock/external{ + frequency = 1380; + icon_state = "door_locked"; + id_tag = "admin_shuttle_hatch"; + locked = 1; + name = "Shuttle Hatch"; + req_access = null + }, +/turf/simulated/shuttle/plating, +/area/submap/CrashedMedShuttle) + +(1,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aA +aa +aa +aa +aa +aa +"} +(2,1,1) = {" +aa +aa +aa +aa +aa +ab +ab +aa +aa +aa +aa +ab +ab +aa +aa +aa +aa +"} +(3,1,1) = {" +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +ab +bB +ag +ab +aa +aa +aa +"} +(4,1,1) = {" +aa +aa +ab +aa +aa +aa +aa +aa +bc +ab +bv +bC +ag +ag +ab +ab +aa +"} +(5,1,1) = {" +aa +aa +ab +aa +ah +aA +aM +ab +bd +bj +bw +bD +bM +ag +ag +ag +ab +"} +(6,1,1) = {" +aa +aa +aa +aa +aa +ab +aN +ab +be +bk +bx +bE +bx +bT +cb +ag +ab +"} +(7,1,1) = {" +aa +ab +aa +aa +ab +aB +ac +aS +ag +ak +ak +bF +bN +bU +cc +ag +ab +"} +(8,1,1) = {" +aa +aa +ah +ab +at +aC +aO +aT +ag +bl +ak +ak +ak +bV +cd +ag +ab +"} +(9,1,1) = {" +aa +aa +ab +an +au +aD +aP +aU +ag +bm +ak +ak +bO +bW +ce +ag +aa +"} +(10,1,1) = {" +aa +ab +ai +ag +ag +af +aw +af +ag +af +by +af +ag +ag +ag +ae +ab +"} +(11,1,1) = {" +aa +ac +ad +ao +av +ak +ak +aV +bf +bn +ak +aQ +bP +ad +cf +ci +ab +"} +(12,1,1) = {" +aa +ad +aj +ap +ak +aE +aQ +aW +ab +bo +ak +av +bQ +ao +aj +ci +aa +"} +(13,1,1) = {" +aa +ae +ag +ag +aw +ag +aR +aX +ab +bp +ag +ag +by +ag +ag +ae +aa +"} +(14,1,1) = {" +aa +af +ak +aq +ax +aF +ag +aY +bg +bq +bz +bG +ak +bX +cg +af +aa +"} +(15,1,1) = {" +aa +ag +al +ak +ay +aG +ag +af +bh +br +bz +bH +ak +ak +ch +ag +ab +"} +(16,1,1) = {" +aa +ag +am +ak +av +aH +ag +ab +aZ +bs +bA +bI +ak +bY +am +ag +ab +"} +(17,1,1) = {" +aa +ag +ag +ar +ak +aI +ag +aZ +aV +bt +ag +bJ +av +am +ag +ca +aa +"} +(18,1,1) = {" +aa +aa +ag +as +az +aJ +ag +ba +bi +bu +ag +ak +bR +bZ +ca +ab +aa +"} +(19,1,1) = {" +aa +aa +ag +ag +ak +aK +ag +bb +ab +ab +ag +bK +am +ca +ca +ab +aa +"} +(20,1,1) = {" +aa +aa +aa +ag +af +aL +ag +ab +ab +aa +ag +bL +bS +ca +ab +ab +aa +"} +(21,1,1) = {" +aa +ab +aa +aa +ab +ab +ab +aa +aa +aa +aa +ab +ab +aa +aa +aa +aa +"} +(22,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} diff --git a/maps/expedition_vr/beach/submaps/Geyser1.dmm b/maps/expedition_vr/beach/submaps/Geyser1.dmm new file mode 100644 index 0000000000..931eec23d2 --- /dev/null +++ b/maps/expedition_vr/beach/submaps/Geyser1.dmm @@ -0,0 +1,105 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/template_noop, +/area/template_noop) +"b" = ( +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/geyser_1) +"c" = ( +/obj/random/turf/lava, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/geyser_1) +"d" = ( +/obj/random/outcrop, +/obj/random/turf/lava, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/geyser_1) +"e" = ( +/obj/random/outcrop, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/geyser_1) +"f" = ( +/obj/effect/map_effect/interval/effect_emitter/steam, +/obj/effect/map_effect/interval/effect_emitter/smoke/mist{ + interval_upper_bound = 600 + }, +/obj/effect/map_effect/interval/effect_emitter/smoke/bad{ + interval_lower_bound = 100; + interval_upper_bound = 3000 + }, +/obj/effect/map_effect/interval/screen_shaker{ + interval_upper_bound = 600 + }, +/turf/simulated/floor/water/deep{ + outdoors = 0 + }, +/area/submap/geyser_1) +"g" = ( +/obj/random/turf/lava, +/obj/random/outcrop, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/geyser_1) + +(1,1,1) = {" +a +c +c +e +c +c +a +"} +(2,1,1) = {" +c +c +c +b +c +c +c +"} +(3,1,1) = {" +c +c +e +b +b +g +c +"} +(4,1,1) = {" +b +b +b +f +b +b +b +"} +(5,1,1) = {" +d +c +b +b +e +c +c +"} +(6,1,1) = {" +c +c +c +b +c +c +c +"} +(7,1,1) = {" +a +c +c +b +d +c +a +"} diff --git a/maps/expedition_vr/beach/submaps/Geyser2.dmm b/maps/expedition_vr/beach/submaps/Geyser2.dmm new file mode 100644 index 0000000000..22015c5fed --- /dev/null +++ b/maps/expedition_vr/beach/submaps/Geyser2.dmm @@ -0,0 +1,144 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/template_noop, +/area/template_noop) +"b" = ( +/obj/random/turf/lava, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/geyser_2) +"c" = ( +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/geyser_2) +"d" = ( +/obj/structure/fence/corner{ + icon_state = "corner"; + dir = 9 + }, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/geyser_2) +"e" = ( +/obj/structure/fence{ + icon_state = "straight"; + dir = 8 + }, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/geyser_2) +"f" = ( +/obj/structure/fence/corner{ + icon_state = "corner"; + dir = 5 + }, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/geyser_2) +"g" = ( +/obj/structure/fence/cut/large, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/geyser_2) +"h" = ( +/mob/living/simple_mob/mechanical/viscerator, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/geyser_2) +"i" = ( +/obj/structure/fence, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/geyser_2) +"j" = ( +/obj/structure/fence/corner{ + icon_state = "corner"; + dir = 10 + }, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/geyser_2) +"k" = ( +/obj/structure/fence/door/locked, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/geyser_2) +"l" = ( +/obj/structure/fence/corner{ + icon_state = "corner"; + dir = 6 + }, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/geyser_2) +"m" = ( +/obj/effect/map_effect/interval/effect_emitter/steam, +/obj/effect/map_effect/interval/effect_emitter/smoke/mist{ + interval_upper_bound = 600 + }, +/obj/effect/map_effect/interval/effect_emitter/smoke/bad{ + interval_lower_bound = 100; + interval_upper_bound = 3000 + }, +/obj/effect/map_effect/interval/screen_shaker{ + interval_upper_bound = 600 + }, +/obj/random/humanoidremains, +/obj/random/medical/lite, +/turf/simulated/floor/water/deep{ + outdoors = 0 + }, +/area/submap/geyser_2) + +(1,1,1) = {" +a +b +b +c +b +b +a +"} +(2,1,1) = {" +b +b +b +h +b +b +b +"} +(3,1,1) = {" +b +b +d +g +j +b +b +"} +(4,1,1) = {" +c +h +e +m +k +h +c +"} +(5,1,1) = {" +b +b +f +i +l +b +b +"} +(6,1,1) = {" +b +b +b +h +b +b +b +"} +(7,1,1) = {" +a +b +b +c +b +b +a +"} diff --git a/maps/expedition_vr/beach/submaps/Geyser3.dmm b/maps/expedition_vr/beach/submaps/Geyser3.dmm new file mode 100644 index 0000000000..a94320c290 --- /dev/null +++ b/maps/expedition_vr/beach/submaps/Geyser3.dmm @@ -0,0 +1,174 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/template_noop, +/area/template_noop) +"b" = ( +/obj/structure/cliff/automatic{ + icon_state = "cliffbuilder"; + dir = 9 + }, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/geyser_3) +"c" = ( +/obj/structure/cliff/automatic, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/geyser_3) +"d" = ( +/obj/random/turf/lava, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/geyser_3) +"e" = ( +/obj/structure/cliff/automatic{ + icon_state = "cliffbuilder"; + dir = 5 + }, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/geyser_3) +"f" = ( +/obj/structure/cliff/automatic/corner{ + icon_state = "cliffbuilder-corner"; + dir = 9 + }, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/geyser_3) +"g" = ( +/turf/simulated/floor/lava, +/area/submap/geyser_3) +"h" = ( +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/geyser_3) +"i" = ( +/obj/structure/cliff/automatic/corner, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/geyser_3) +"j" = ( +/obj/structure/cliff/automatic{ + icon_state = "cliffbuilder"; + dir = 8 + }, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/geyser_3) +"k" = ( +/obj/structure/cliff/automatic{ + icon_state = "cliffbuilder"; + dir = 4 + }, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/geyser_3) +"l" = ( +/obj/effect/map_effect/interval/effect_emitter/steam, +/obj/effect/map_effect/interval/effect_emitter/smoke/bad{ + interval_lower_bound = 100; + interval_upper_bound = 3000 + }, +/obj/effect/map_effect/interval/screen_shaker{ + interval_upper_bound = 600 + }, +/obj/effect/map_effect/interval/effect_emitter/smoke/fire{ + interval_upper_bound = 1200 + }, +/turf/simulated/floor/lava, +/area/submap/geyser_3) +"m" = ( +/obj/structure/cliff/automatic{ + icon_state = "cliffbuilder"; + dir = 10 + }, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/geyser_3) +"n" = ( +/obj/structure/cliff/automatic/corner{ + icon_state = "cliffbuilder-corner"; + dir = 10 + }, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/geyser_3) +"o" = ( +/obj/structure/cliff/automatic/corner{ + icon_state = "cliffbuilder-corner"; + dir = 6 + }, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/geyser_3) +"p" = ( +/obj/structure/cliff/automatic{ + icon_state = "cliffbuilder"; + dir = 6 + }, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/geyser_3) +"q" = ( +/obj/structure/cliff/automatic{ + icon_state = "cliffbuilder"; + dir = 2 + }, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/geyser_3) +"r" = ( +/obj/random/multiple/minevault, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/geyser_3) + +(1,1,1) = {" +a +b +j +j +j +m +a +"} +(2,1,1) = {" +b +f +g +g +g +n +m +"} +(3,1,1) = {" +c +g +g +g +g +g +q +"} +(4,1,1) = {" +d +h +r +l +g +g +q +"} +(5,1,1) = {" +c +g +g +g +g +g +q +"} +(6,1,1) = {" +e +i +g +g +g +o +p +"} +(7,1,1) = {" +a +e +k +k +k +p +a +"} diff --git a/maps/expedition_vr/beach/submaps/IceCave1A.dmm b/maps/expedition_vr/beach/submaps/IceCave1A.dmm new file mode 100644 index 0000000000..a4c7d1836a --- /dev/null +++ b/maps/expedition_vr/beach/submaps/IceCave1A.dmm @@ -0,0 +1,1240 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/simulated/wall/solidrock{ + block_tele = 0 + }, +/area/submap/cave/IceCave1A) +"b" = ( +/turf/template_noop, +/area/submap/cave/IceCave1A) +"c" = ( +/turf/simulated/floor/outdoors/ice{ + outdoors = 0 + }, +/area/submap/cave/IceCave1A) +"d" = ( +/obj/machinery/crystal/ice, +/turf/simulated/floor/outdoors/ice{ + outdoors = 0 + }, +/area/submap/cave/IceCave1A) +"e" = ( +/obj/structure/loot_pile/surface/bones, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/IceCave1A) +"f" = ( +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/IceCave1A) +"g" = ( +/obj/machinery/crystal/ice, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/IceCave1A) +"h" = ( +/obj/random/firstaid, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/IceCave1A) +"i" = ( +/obj/random/ammo, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/IceCave1A) + +(1,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +f +f +f +f +"} +(2,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +f +f +f +"} +(3,1,1) = {" +a +a +c +c +c +c +d +c +c +c +c +c +c +c +a +a +g +g +a +a +a +a +a +a +a +a +f +f +"} +(4,1,1) = {" +a +a +c +c +c +c +c +c +c +c +c +c +c +c +a +a +g +f +g +a +a +a +a +g +a +a +f +f +"} +(5,1,1) = {" +a +a +c +c +c +c +c +c +c +c +d +c +c +c +a +a +g +f +g +f +f +a +g +g +a +a +f +f +"} +(6,1,1) = {" +a +a +c +c +c +c +c +c +c +c +c +c +c +c +a +a +f +f +f +f +f +f +f +a +a +a +f +f +"} +(7,1,1) = {" +a +a +c +c +c +c +c +c +c +c +c +d +c +c +d +g +f +f +a +a +g +f +f +f +f +g +f +f +"} +(8,1,1) = {" +a +a +d +c +c +c +c +c +c +c +c +c +c +c +d +g +f +f +a +a +a +g +f +f +f +f +f +f +"} +(9,1,1) = {" +a +a +c +c +c +c +c +c +c +c +c +c +d +c +d +g +f +f +a +a +a +a +a +f +f +f +f +a +"} +(10,1,1) = {" +a +a +c +c +c +c +c +c +c +c +c +c +c +c +d +f +f +f +a +a +a +a +a +a +g +a +a +a +"} +(11,1,1) = {" +a +a +c +c +c +c +c +c +c +c +c +c +c +c +d +f +f +f +a +a +a +a +a +a +a +a +a +a +"} +(12,1,1) = {" +a +a +c +c +c +c +c +c +c +d +c +c +c +c +d +f +f +f +a +a +a +a +a +a +a +a +a +a +"} +(13,1,1) = {" +a +a +c +c +c +d +c +c +c +c +c +c +c +c +d +g +f +f +a +a +a +a +a +a +a +a +a +a +"} +(14,1,1) = {" +a +a +c +c +c +c +c +c +c +c +c +c +c +c +d +d +f +f +a +a +a +a +a +a +a +a +a +a +"} +(15,1,1) = {" +a +a +c +c +c +c +c +c +c +c +c +c +c +c +d +d +c +c +c +c +c +c +a +a +a +a +a +a +"} +(16,1,1) = {" +a +a +c +c +c +c +d +c +c +c +c +d +c +c +f +d +c +c +c +c +c +c +a +a +a +a +a +a +"} +(17,1,1) = {" +a +a +d +d +a +a +a +a +f +f +a +a +a +a +f +d +a +a +a +a +c +c +d +d +a +a +a +a +"} +(18,1,1) = {" +a +a +d +d +a +a +a +a +f +f +a +a +a +a +f +g +a +a +a +a +c +c +d +d +a +a +a +a +"} +(19,1,1) = {" +a +a +a +a +a +a +a +a +f +g +a +a +g +f +f +g +a +a +a +a +c +c +c +c +a +a +a +a +"} +(20,1,1) = {" +b +a +a +a +a +a +a +a +f +g +a +a +g +f +f +g +a +a +a +a +c +c +c +c +a +a +a +a +"} +(21,1,1) = {" +b +b +b +a +a +a +a +a +f +f +a +a +f +f +g +g +a +a +a +a +d +d +f +f +a +a +a +a +"} +(22,1,1) = {" +b +b +b +b +a +a +a +a +f +f +a +a +f +f +f +g +a +a +a +a +d +d +f +f +a +a +a +a +"} +(23,1,1) = {" +b +b +b +b +a +a +c +c +d +c +d +d +g +f +f +g +a +a +a +a +a +a +g +f +f +g +a +a +"} +(24,1,1) = {" +b +b +b +b +a +a +c +c +c +c +d +d +d +g +f +f +a +a +g +f +f +a +f +f +f +g +a +a +"} +(25,1,1) = {" +b +b +b +b +a +a +c +c +c +d +a +a +a +a +f +f +f +g +f +f +f +g +f +f +f +g +a +a +"} +(26,1,1) = {" +b +b +b +b +a +a +c +c +c +c +a +g +g +a +f +g +f +g +f +f +f +f +f +f +g +g +a +a +"} +(27,1,1) = {" +b +b +b +b +a +a +d +c +c +c +a +e +f +a +f +f +f +g +f +f +f +a +a +a +a +a +a +a +"} +(28,1,1) = {" +b +b +b +b +a +a +c +c +c +c +a +f +f +f +f +f +g +g +f +f +f +a +a +a +a +a +a +a +"} +(29,1,1) = {" +b +b +b +b +a +a +c +c +c +d +a +f +f +a +a +a +a +a +f +f +g +a +a +b +b +b +b +b +"} +(30,1,1) = {" +b +b +b +a +a +a +g +f +g +g +a +f +f +f +f +f +g +f +f +a +a +a +a +b +b +b +b +b +"} +(31,1,1) = {" +b +a +a +a +a +a +g +f +g +g +a +f +f +g +f +f +f +f +f +a +a +a +a +b +b +b +b +b +"} +(32,1,1) = {" +a +a +a +a +a +f +f +f +g +g +a +a +a +a +a +a +a +a +a +a +a +b +b +b +b +b +b +b +"} +(33,1,1) = {" +a +a +a +g +f +f +f +f +a +a +a +a +a +a +a +a +a +a +a +a +a +b +b +b +b +b +b +b +"} +(34,1,1) = {" +a +a +e +f +f +f +f +g +a +a +a +a +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +"} +(35,1,1) = {" +a +a +f +f +f +f +f +e +a +a +a +a +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +"} +(36,1,1) = {" +a +a +g +f +f +f +f +f +a +a +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +"} +(37,1,1) = {" +a +a +g +g +f +f +f +g +a +a +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +"} +(38,1,1) = {" +a +a +a +h +i +e +a +a +a +a +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +"} +(39,1,1) = {" +a +a +a +a +a +a +a +a +a +a +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +"} +(40,1,1) = {" +a +a +a +a +a +a +a +a +a +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +"} diff --git a/maps/expedition_vr/beach/submaps/IceCave1B.dmm b/maps/expedition_vr/beach/submaps/IceCave1B.dmm new file mode 100644 index 0000000000..fb804e4f7e --- /dev/null +++ b/maps/expedition_vr/beach/submaps/IceCave1B.dmm @@ -0,0 +1,1240 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/simulated/wall/solidrock{ + block_tele = 0 + }, +/area/submap/cave/IceCave1B) +"b" = ( +/turf/template_noop, +/area/submap/cave/IceCave1B) +"c" = ( +/turf/simulated/floor/outdoors/ice{ + outdoors = 0 + }, +/area/submap/cave/IceCave1B) +"d" = ( +/obj/machinery/crystal/ice, +/turf/simulated/floor/outdoors/ice{ + outdoors = 0 + }, +/area/submap/cave/IceCave1B) +"e" = ( +/obj/structure/loot_pile/surface/bones, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/IceCave1B) +"f" = ( +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/IceCave1B) +"g" = ( +/obj/machinery/crystal/ice, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/IceCave1B) +"h" = ( +/obj/random/firstaid, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/IceCave1B) +"i" = ( +/obj/random/ammo, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/IceCave1B) + +(1,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +f +f +f +f +"} +(2,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +f +f +f +"} +(3,1,1) = {" +a +a +c +c +c +c +c +c +c +c +c +c +c +c +a +a +g +g +a +a +a +a +a +a +a +a +f +f +"} +(4,1,1) = {" +a +a +c +c +c +c +c +c +c +c +c +c +c +d +a +a +g +f +g +a +a +a +a +g +a +a +f +f +"} +(5,1,1) = {" +a +a +c +d +c +c +d +c +c +c +c +c +c +c +a +a +g +f +g +f +f +a +g +g +a +a +f +f +"} +(6,1,1) = {" +a +a +c +c +c +c +c +c +c +d +c +c +c +c +a +a +f +f +f +f +f +f +f +a +a +a +f +f +"} +(7,1,1) = {" +a +a +c +c +c +c +c +c +c +c +c +c +c +c +d +g +f +f +a +a +g +f +f +f +f +g +f +f +"} +(8,1,1) = {" +a +a +c +c +c +c +c +c +c +c +c +d +c +c +d +g +f +f +a +a +a +g +f +f +f +f +f +f +"} +(9,1,1) = {" +a +a +c +c +c +c +c +c +c +c +c +c +c +c +d +g +f +f +a +a +a +a +a +f +f +f +f +a +"} +(10,1,1) = {" +a +a +c +c +c +c +c +c +c +c +c +c +c +c +d +f +f +f +a +a +a +a +a +a +g +a +a +a +"} +(11,1,1) = {" +a +a +c +c +c +c +c +c +c +c +c +c +c +c +d +f +f +f +a +a +a +a +a +a +a +a +a +a +"} +(12,1,1) = {" +a +a +c +c +d +c +c +c +c +c +c +c +d +c +d +f +f +f +a +a +a +a +a +a +a +a +a +a +"} +(13,1,1) = {" +a +a +c +c +c +c +c +c +c +c +c +c +c +c +d +g +f +f +a +a +a +a +a +a +a +a +a +a +"} +(14,1,1) = {" +a +a +c +c +c +c +c +c +c +c +c +c +c +c +d +d +f +f +a +a +a +a +a +a +a +a +a +a +"} +(15,1,1) = {" +a +a +c +c +c +c +c +c +c +c +c +c +c +c +d +d +c +c +c +c +c +c +a +a +a +a +a +a +"} +(16,1,1) = {" +a +a +c +c +c +c +c +d +c +c +d +c +c +c +f +d +c +c +c +c +c +c +a +a +a +a +a +a +"} +(17,1,1) = {" +a +a +d +d +a +a +a +a +f +f +a +a +a +a +f +d +a +a +a +a +c +c +d +d +a +a +a +a +"} +(18,1,1) = {" +a +a +d +d +a +a +a +a +f +f +a +a +a +a +f +g +a +a +a +a +c +c +d +d +a +a +a +a +"} +(19,1,1) = {" +a +a +a +a +a +a +a +a +f +g +a +a +g +f +f +g +a +a +a +a +c +c +c +c +a +a +a +a +"} +(20,1,1) = {" +b +a +a +a +a +a +a +a +f +g +a +a +g +f +f +g +a +a +a +a +c +c +c +c +a +a +a +a +"} +(21,1,1) = {" +b +b +b +a +a +a +a +a +f +f +a +a +f +f +g +g +a +a +a +a +d +d +f +f +a +a +a +a +"} +(22,1,1) = {" +b +b +b +b +a +a +a +a +f +f +a +a +f +f +f +g +a +a +a +a +d +d +f +f +a +a +a +a +"} +(23,1,1) = {" +b +b +b +b +a +a +c +c +d +c +d +d +g +f +f +g +a +a +a +a +a +a +g +f +f +g +a +a +"} +(24,1,1) = {" +b +b +b +b +a +a +c +c +c +c +d +d +d +g +f +f +a +a +g +f +f +a +f +f +f +g +a +a +"} +(25,1,1) = {" +b +b +b +b +a +a +c +c +c +c +a +a +a +a +f +f +f +g +f +f +f +g +f +f +f +g +a +a +"} +(26,1,1) = {" +b +b +b +b +a +a +c +c +c +c +a +g +g +a +f +g +f +g +f +f +f +f +f +f +g +g +a +a +"} +(27,1,1) = {" +b +b +b +b +a +a +c +c +c +c +a +e +f +a +f +f +f +g +f +f +f +a +a +a +a +a +a +a +"} +(28,1,1) = {" +b +b +b +b +a +a +c +c +c +c +a +f +f +f +f +f +g +g +f +f +f +a +a +a +a +a +a +a +"} +(29,1,1) = {" +b +b +b +b +a +a +c +c +c +c +a +f +f +a +a +a +a +a +f +f +g +a +a +b +b +b +b +b +"} +(30,1,1) = {" +b +b +b +a +a +a +g +f +g +g +a +f +f +f +f +f +g +f +f +a +a +a +a +b +b +b +b +b +"} +(31,1,1) = {" +b +a +a +a +a +a +g +f +g +g +a +f +f +g +f +f +f +f +f +a +a +a +a +b +b +b +b +b +"} +(32,1,1) = {" +a +a +a +a +a +f +f +f +g +g +a +a +a +a +a +a +a +a +a +a +a +b +b +b +b +b +b +b +"} +(33,1,1) = {" +a +a +a +g +f +f +f +f +a +a +a +a +a +a +a +a +a +a +a +a +a +b +b +b +b +b +b +b +"} +(34,1,1) = {" +a +a +e +f +f +f +f +g +a +a +a +a +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +"} +(35,1,1) = {" +a +a +f +f +f +f +f +e +a +a +a +a +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +"} +(36,1,1) = {" +a +a +g +f +f +f +f +f +a +a +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +"} +(37,1,1) = {" +a +a +g +g +f +f +f +g +a +a +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +"} +(38,1,1) = {" +a +a +a +h +i +e +a +a +a +a +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +"} +(39,1,1) = {" +a +a +a +a +a +a +a +a +a +a +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +"} +(40,1,1) = {" +a +a +a +a +a +a +a +a +a +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +"} diff --git a/maps/expedition_vr/beach/submaps/IceCave1C.dmm b/maps/expedition_vr/beach/submaps/IceCave1C.dmm new file mode 100644 index 0000000000..b41b34781b --- /dev/null +++ b/maps/expedition_vr/beach/submaps/IceCave1C.dmm @@ -0,0 +1,1240 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/simulated/wall/solidrock{ + block_tele = 0 + }, +/area/submap/cave/IceCave1C) +"b" = ( +/turf/template_noop, +/area/submap/cave/IceCave1C) +"c" = ( +/turf/simulated/floor/outdoors/ice{ + outdoors = 0 + }, +/area/submap/cave/IceCave1C) +"d" = ( +/obj/machinery/crystal/ice, +/turf/simulated/floor/outdoors/ice{ + outdoors = 0 + }, +/area/submap/cave/IceCave1C) +"e" = ( +/obj/structure/loot_pile/surface/bones, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/IceCave1C) +"f" = ( +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/IceCave1C) +"g" = ( +/obj/machinery/crystal/ice, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/IceCave1C) +"h" = ( +/obj/random/firstaid, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/IceCave1C) +"i" = ( +/obj/random/ammo, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/IceCave1C) + +(1,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +f +f +f +f +"} +(2,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +f +f +f +"} +(3,1,1) = {" +a +a +c +c +c +c +c +c +c +c +c +c +d +c +a +a +g +g +a +a +a +a +a +a +a +a +f +f +"} +(4,1,1) = {" +a +a +c +d +c +c +c +c +c +c +c +c +c +c +a +a +g +f +g +a +a +a +a +g +a +a +f +f +"} +(5,1,1) = {" +a +a +c +c +c +c +c +c +c +c +c +d +c +c +a +a +g +f +g +f +f +a +g +g +a +a +f +f +"} +(6,1,1) = {" +a +a +c +c +c +c +c +c +c +c +c +c +c +c +a +a +f +f +f +f +f +f +f +a +a +a +f +f +"} +(7,1,1) = {" +a +a +c +c +c +c +c +d +c +c +c +c +c +c +d +g +f +f +a +a +g +f +f +f +f +g +f +f +"} +(8,1,1) = {" +a +a +c +c +c +c +c +c +c +d +c +c +c +c +d +g +f +f +a +a +a +g +f +f +f +f +f +f +"} +(9,1,1) = {" +a +a +c +c +c +c +c +c +c +c +c +c +c +c +d +g +f +f +a +a +a +a +a +f +f +f +f +a +"} +(10,1,1) = {" +a +a +c +c +c +c +c +c +c +c +c +c +c +c +d +f +f +f +a +a +a +a +a +a +g +a +a +a +"} +(11,1,1) = {" +a +a +c +c +c +c +c +c +c +c +d +c +c +c +d +f +f +f +a +a +a +a +a +a +a +a +a +a +"} +(12,1,1) = {" +a +a +c +c +c +c +c +c +c +c +c +c +c +c +d +f +f +f +a +a +a +a +a +a +a +a +a +a +"} +(13,1,1) = {" +a +a +c +c +c +c +c +c +c +c +c +c +c +c +d +g +f +f +a +a +a +a +a +a +a +a +a +a +"} +(14,1,1) = {" +a +a +c +c +c +c +d +c +c +c +c +c +c +c +d +d +f +f +a +a +a +a +a +a +a +a +a +a +"} +(15,1,1) = {" +a +a +c +c +c +c +c +c +c +c +c +c +c +d +d +d +c +c +c +c +c +c +a +a +a +a +a +a +"} +(16,1,1) = {" +a +a +c +c +d +c +c +c +c +c +c +c +c +c +f +d +c +c +c +c +c +c +a +a +a +a +a +a +"} +(17,1,1) = {" +a +a +d +d +a +a +a +a +f +f +a +a +a +a +f +d +a +a +a +a +c +c +d +d +a +a +a +a +"} +(18,1,1) = {" +a +a +d +d +a +a +a +a +f +f +a +a +a +a +f +g +a +a +a +a +c +c +d +d +a +a +a +a +"} +(19,1,1) = {" +a +a +a +a +a +a +a +a +f +g +a +a +g +f +f +g +a +a +a +a +c +c +c +c +a +a +a +a +"} +(20,1,1) = {" +b +a +a +a +a +a +a +a +f +g +a +a +g +f +f +g +a +a +a +a +c +c +c +c +a +a +a +a +"} +(21,1,1) = {" +b +b +b +a +a +a +a +a +f +f +a +a +f +f +g +g +a +a +a +a +d +d +f +f +a +a +a +a +"} +(22,1,1) = {" +b +b +b +b +a +a +a +a +g +f +a +a +f +f +f +g +a +a +a +a +d +d +f +f +a +a +a +a +"} +(23,1,1) = {" +b +b +b +b +a +a +d +c +c +c +d +d +g +f +f +g +a +a +a +a +a +a +g +f +f +g +a +a +"} +(24,1,1) = {" +b +b +b +b +a +a +c +c +d +c +d +d +d +g +f +f +a +a +g +f +f +a +f +f +f +g +a +a +"} +(25,1,1) = {" +b +b +b +b +a +a +c +c +c +c +a +a +a +a +f +f +f +g +f +f +f +g +f +f +f +g +a +a +"} +(26,1,1) = {" +b +b +b +b +a +a +c +c +c +c +a +g +g +a +f +g +f +g +f +f +f +f +f +f +g +g +a +a +"} +(27,1,1) = {" +b +b +b +b +a +a +c +c +c +d +a +e +f +a +f +f +f +g +f +f +f +a +a +a +a +a +a +a +"} +(28,1,1) = {" +b +b +b +b +a +a +c +d +c +d +a +f +f +f +f +f +g +g +f +f +f +a +a +a +a +a +a +a +"} +(29,1,1) = {" +b +b +b +b +a +a +d +d +c +d +a +f +f +a +a +a +a +a +f +f +g +a +a +b +b +b +b +b +"} +(30,1,1) = {" +b +b +b +a +a +a +g +g +f +g +a +f +f +f +f +f +g +f +f +a +a +a +a +b +b +b +b +b +"} +(31,1,1) = {" +b +a +a +a +a +a +f +g +f +g +a +f +f +g +f +f +f +f +f +a +a +a +a +b +b +b +b +b +"} +(32,1,1) = {" +a +a +a +a +a +f +f +f +f +g +a +a +a +a +a +a +a +a +a +a +a +b +b +b +b +b +b +b +"} +(33,1,1) = {" +a +a +a +g +f +f +f +f +a +a +a +a +a +a +a +a +a +a +a +a +a +b +b +b +b +b +b +b +"} +(34,1,1) = {" +a +a +e +f +f +f +f +g +a +a +a +a +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +"} +(35,1,1) = {" +a +a +f +f +f +f +f +e +a +a +a +a +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +"} +(36,1,1) = {" +a +a +g +f +f +f +f +f +a +a +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +"} +(37,1,1) = {" +a +a +g +g +f +f +f +g +a +a +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +"} +(38,1,1) = {" +a +a +a +h +i +e +a +a +a +a +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +"} +(39,1,1) = {" +a +a +a +a +a +a +a +a +a +a +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +"} +(40,1,1) = {" +a +a +a +a +a +a +a +a +a +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +"} diff --git a/maps/expedition_vr/beach/submaps/Mineshaft1.dmm b/maps/expedition_vr/beach/submaps/Mineshaft1.dmm new file mode 100644 index 0000000000..45cfbc7b2a --- /dev/null +++ b/maps/expedition_vr/beach/submaps/Mineshaft1.dmm @@ -0,0 +1,903 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/template_noop, +/area/template_noop) +"b" = ( +/turf/simulated/mineral/ignore_mapgen/cave, +/area/submap/cave/AMine1) +"c" = ( +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/AMine1) +"d" = ( +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/cave/AMine1) +"e" = ( +/obj/machinery/light/small, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/cave/AMine1) +"f" = ( +/turf/simulated/wall, +/area/submap/cave/AMine1) +"g" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/tiled, +/area/submap/cave/AMine1) +"h" = ( +/turf/simulated/floor/tiled, +/area/submap/cave/AMine1) +"i" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet, +/turf/simulated/floor/tiled, +/area/submap/cave/AMine1) +"j" = ( +/obj/structure/table/standard, +/turf/simulated/floor/tiled, +/area/submap/cave/AMine1) +"k" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/submap/cave/AMine1) +"l" = ( +/obj/structure/table/standard, +/obj/structure/bedsheetbin, +/turf/simulated/floor/tiled, +/area/submap/cave/AMine1) +"m" = ( +/obj/machinery/door/airlock, +/turf/simulated/floor/tiled, +/area/submap/cave/AMine1) +"n" = ( +/obj/item/weapon/ore/gold, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/AMine1) +"o" = ( +/obj/item/weapon/ore/gold, +/obj/item/weapon/ore/gold, +/obj/item/weapon/ore/gold, +/obj/item/weapon/ore/gold, +/obj/item/weapon/ore/gold, +/obj/item/weapon/ore/gold, +/obj/item/weapon/ore/gold, +/obj/item/weapon/ore/gold, +/obj/item/weapon/ore/gold, +/obj/item/weapon/ore/gold, +/obj/item/weapon/ore/gold, +/obj/item/weapon/ore/gold, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/AMine1) +"p" = ( +/obj/item/weapon/ore/gold, +/obj/item/weapon/ore/gold, +/obj/item/weapon/ore/gold, +/obj/item/weapon/ore/gold, +/obj/item/weapon/ore/gold, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/AMine1) +"q" = ( +/obj/structure/table/standard, +/obj/item/device/flashlight/lamp, +/turf/simulated/floor/tiled, +/area/submap/cave/AMine1) +"r" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/submap/cave/AMine1) +"s" = ( +/obj/structure/window/reinforced/full, +/turf/simulated/wall, +/area/submap/cave/AMine1) +"t" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/submap/cave/AMine1) +"u" = ( +/obj/structure/table/standard, +/obj/machinery/cell_charger, +/turf/simulated/floor, +/area/submap/cave/AMine1) +"v" = ( +/obj/structure/table/standard, +/obj/item/weapon/cell/high, +/obj/item/weapon/cell/high, +/turf/simulated/floor, +/area/submap/cave/AMine1) +"w" = ( +/obj/structure/loot_pile/maint/trash, +/turf/simulated/floor, +/area/submap/cave/AMine1) +"x" = ( +/turf/simulated/floor, +/area/submap/cave/AMine1) +"y" = ( +/obj/machinery/power/apc{ + operating = 0; + pixel_x = 31 + }, +/turf/simulated/floor, +/area/submap/cave/AMine1) +"z" = ( +/obj/structure/ore_box, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/AMine1) +"A" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/AMine1) +"B" = ( +/obj/structure/closet/crate/trashcart, +/turf/simulated/floor, +/area/submap/cave/AMine1) +"C" = ( +/obj/structure/closet/crate/engineering, +/turf/simulated/floor, +/area/submap/cave/AMine1) +"D" = ( +/obj/machinery/light, +/obj/machinery/space_heater, +/turf/simulated/floor, +/area/submap/cave/AMine1) +"E" = ( +/obj/machinery/space_heater, +/turf/simulated/floor, +/area/submap/cave/AMine1) +"F" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/turf/simulated/floor, +/area/submap/cave/AMine1) +"G" = ( +/obj/structure/table/rack, +/obj/item/weapon/pickaxe/drill, +/turf/simulated/floor/tiled, +/area/submap/cave/AMine1) +"H" = ( +/obj/machinery/vending/cola, +/turf/simulated/floor/tiled, +/area/submap/cave/AMine1) +"I" = ( +/obj/machinery/vending/snack, +/turf/simulated/floor/tiled, +/area/submap/cave/AMine1) +"J" = ( +/obj/machinery/washing_machine, +/turf/simulated/floor/tiled, +/area/submap/cave/AMine1) +"K" = ( +/obj/structure/ore_box, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/cave/AMine1) +"L" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/submap/cave/AMine1) +"M" = ( +/obj/item/weapon/stool, +/turf/simulated/floor/tiled, +/area/submap/cave/AMine1) +"N" = ( +/obj/machinery/light/small{ + brightness_color = "#DA0205"; + brightness_power = 1; + brightness_range = 5; + dir = 8 + }, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/AMine1) +"O" = ( +/obj/machinery/light/small{ + dir = 4; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/cave/AMine1) +"P" = ( +/obj/structure/table/standard, +/obj/item/pizzabox, +/turf/simulated/floor/tiled, +/area/submap/cave/AMine1) +"Q" = ( +/obj/machinery/door/airlock, +/turf/simulated/floor, +/area/submap/cave/AMine1) +"R" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 1 + }, +/turf/simulated/floor, +/area/submap/cave/AMine1) +"S" = ( +/obj/machinery/light/small, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/AMine1) + +(1,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(2,1,1) = {" +a +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +a +"} +(3,1,1) = {" +a +b +b +b +b +c +c +c +c +c +c +c +b +b +b +b +b +b +b +b +b +b +b +b +a +"} +(4,1,1) = {" +a +b +b +b +b +c +c +c +c +c +c +c +c +c +b +b +b +b +b +b +b +b +b +b +a +"} +(5,1,1) = {" +a +b +b +b +c +c +c +c +c +c +c +c +c +c +c +c +b +b +b +b +b +b +b +b +a +"} +(6,1,1) = {" +a +b +b +b +c +c +c +c +c +c +c +c +c +c +c +c +N +c +b +b +b +b +b +b +a +"} +(7,1,1) = {" +a +b +b +b +c +c +c +c +c +c +c +c +c +c +c +c +c +c +b +b +b +b +b +b +a +"} +(8,1,1) = {" +a +b +b +b +b +b +n +c +c +c +c +c +c +c +c +c +c +c +b +b +b +b +b +b +a +"} +(9,1,1) = {" +a +b +b +b +b +b +o +c +c +c +c +c +c +c +c +c +c +c +c +b +b +b +b +b +a +"} +(10,1,1) = {" +a +b +b +b +b +b +p +c +c +c +c +c +c +c +c +c +c +c +c +c +b +b +b +b +a +"} +(11,1,1) = {" +a +b +b +b +b +b +b +b +b +b +c +c +c +c +c +c +c +c +c +c +c +b +b +b +a +"} +(12,1,1) = {" +a +b +b +b +b +b +b +b +b +b +b +z +c +c +c +c +c +c +c +c +c +c +b +b +a +"} +(13,1,1) = {" +a +b +c +b +b +b +b +b +b +b +b +A +c +c +c +d +O +d +d +d +c +c +c +c +a +"} +(14,1,1) = {" +a +b +d +d +d +d +d +d +d +d +d +d +d +d +K +d +f +Q +f +d +c +c +c +c +a +"} +(15,1,1) = {" +a +c +d +f +f +f +f +s +s +s +s +s +f +f +f +f +f +R +f +d +c +c +c +c +a +"} +(16,1,1) = {" +a +c +e +f +g +h +h +h +h +h +h +h +g +G +G +f +f +Q +f +d +c +c +c +c +a +"} +(17,1,1) = {" +a +c +d +f +h +h +h +t +h +h +h +h +t +h +h +h +h +h +f +d +c +c +c +c +a +"} +(18,1,1) = {" +a +c +d +f +f +m +f +f +f +m +f +f +f +f +f +f +f +Q +f +d +c +S +b +b +a +"} +(19,1,1) = {" +a +c +d +f +i +h +i +f +u +x +x +B +f +g +h +L +h +h +f +d +c +c +b +b +a +"} +(20,1,1) = {" +a +c +d +f +j +h +q +f +v +x +x +C +f +H +h +M +j +M +f +d +c +b +b +b +a +"} +(21,1,1) = {" +a +c +d +f +k +h +r +f +v +x +x +D +f +I +h +M +j +M +f +d +c +b +b +b +a +"} +(22,1,1) = {" +a +c +e +f +l +h +j +f +w +x +x +E +f +h +h +M +P +M +f +d +b +b +b +b +a +"} +(23,1,1) = {" +a +c +d +f +i +h +i +f +x +x +y +F +f +J +h +t +h +h +f +b +b +b +b +b +a +"} +(24,1,1) = {" +a +c +d +f +f +f +f +f +f +f +f +f +f +f +f +f +f +f +f +b +b +b +b +b +a +"} +(25,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} diff --git a/maps/expedition_vr/beach/submaps/Rockb1.dmm b/maps/expedition_vr/beach/submaps/Rockb1.dmm new file mode 100644 index 0000000000..7290e089cd --- /dev/null +++ b/maps/expedition_vr/beach/submaps/Rockb1.dmm @@ -0,0 +1,790 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/template_noop, +/area/template_noop) +"b" = ( +/turf/template_noop, +/area/submap/Rockb1) +"c" = ( +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/Rockb1) +"d" = ( +/turf/simulated/mineral/ignore_mapgen/cave, +/area/submap/Rockb1) +"e" = ( +/turf/simulated/wall/r_wall, +/area/submap/Rockb1) +"f" = ( +/obj/structure/table/woodentable, +/obj/item/device/flashlight/lamp, +/turf/simulated/floor/lino, +/area/submap/Rockb1) +"g" = ( +/obj/structure/closet/cabinet, +/obj/item/weapon/gun/projectile/pistol, +/obj/item/ammo_magazine/m9mm/compact, +/turf/simulated/floor/lino, +/area/submap/Rockb1) +"h" = ( +/obj/structure/bookcase, +/turf/simulated/floor/lino, +/area/submap/Rockb1) +"i" = ( +/obj/machinery/vending/snack, +/turf/simulated/floor/tiled, +/area/submap/Rockb1) +"j" = ( +/obj/machinery/vending/coffee, +/turf/simulated/floor/tiled, +/area/submap/Rockb1) +"k" = ( +/obj/machinery/vending/cola, +/turf/simulated/floor/tiled, +/area/submap/Rockb1) +"l" = ( +/obj/item/seeds/ambrosiadeusseed, +/turf/simulated/floor/tiled, +/area/submap/Rockb1) +"m" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled, +/area/submap/Rockb1) +"n" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/material/shard, +/turf/simulated/floor/plating, +/area/submap/Rockb1) +"o" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/turf/simulated/floor/plating, +/area/submap/Rockb1) +"p" = ( +/obj/structure/bed, +/turf/simulated/floor/lino, +/area/submap/Rockb1) +"q" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/lino, +/area/submap/Rockb1) +"r" = ( +/turf/simulated/floor/lino, +/area/submap/Rockb1) +"s" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/submap/Rockb1) +"t" = ( +/turf/simulated/floor/tiled, +/area/submap/Rockb1) +"u" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/material/shard{ + icon_state = "medium" + }, +/turf/simulated/floor/tiled, +/area/submap/Rockb1) +"v" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/rods, +/turf/simulated/floor/plating, +/area/submap/Rockb1) +"w" = ( +/obj/machinery/door/airlock, +/turf/simulated/floor/tiled, +/area/submap/Rockb1) +"x" = ( +/obj/machinery/light/small{ + brightness_color = "#DA0205"; + brightness_power = 1; + brightness_range = 5 + }, +/turf/simulated/floor/tiled, +/area/submap/Rockb1) +"y" = ( +/obj/machinery/door/airlock/external, +/turf/simulated/floor/tiled, +/area/submap/Rockb1) +"z" = ( +/obj/machinery/light/small{ + brightness_color = "#DA0205"; + brightness_power = 1; + brightness_range = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled, +/area/submap/Rockb1) +"A" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/submap/Rockb1) +"B" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/submap/Rockb1) +"C" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/submap/Rockb1) +"D" = ( +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + operating = 0; + pixel_x = 24 + }, +/turf/simulated/floor/tiled, +/area/submap/Rockb1) +"E" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/submap/Rockb1) +"F" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/hydro, +/area/submap/Rockb1) +"G" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/hydro, +/area/submap/Rockb1) +"H" = ( +/obj/machinery/power/smes/buildable/point_of_interest, +/obj/structure/cable/green, +/turf/simulated/floor/plating, +/area/submap/Rockb1) +"I" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/machinery/power/port_gen/pacman, +/turf/simulated/floor/plating, +/area/submap/Rockb1) +"J" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/excavation, +/turf/simulated/floor/tiled, +/area/submap/Rockb1) +"K" = ( +/obj/structure/table/standard, +/obj/item/weapon/pickaxe/drill, +/turf/simulated/floor/tiled, +/area/submap/Rockb1) +"L" = ( +/obj/structure/table/standard, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/steel, +/turf/simulated/floor/tiled, +/area/submap/Rockb1) +"M" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/toolbox/electrical, +/turf/simulated/floor/tiled, +/area/submap/Rockb1) +"N" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/toolbox/mechanical, +/turf/simulated/floor/tiled, +/area/submap/Rockb1) +"O" = ( +/obj/machinery/door/airlock/hatch, +/turf/simulated/floor/tiled, +/area/submap/Rockb1) +"P" = ( +/turf/simulated/floor/plating, +/area/submap/Rockb1) +"Q" = ( +/obj/machinery/light/small{ + brightness_color = "#DA0205"; + brightness_power = 1; + brightness_range = 5 + }, +/turf/simulated/floor/plating, +/area/submap/Rockb1) +"R" = ( +/obj/effect/decal/cleanable/greenglow, +/turf/simulated/floor/plating, +/area/submap/Rockb1) +"S" = ( +/obj/structure/loot_pile/maint/trash, +/turf/simulated/floor/plating, +/area/submap/Rockb1) + +(1,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(2,1,1) = {" +a +b +b +b +b +b +b +b +b +c +b +b +b +b +b +b +b +b +b +a +"} +(3,1,1) = {" +a +b +b +c +c +c +c +c +c +c +d +d +d +c +c +c +c +b +b +a +"} +(4,1,1) = {" +a +b +c +c +c +d +d +d +d +d +d +d +d +d +c +c +c +c +b +a +"} +(5,1,1) = {" +a +c +c +c +d +d +d +d +d +d +d +d +d +d +d +d +c +c +b +a +"} +(6,1,1) = {" +a +b +c +d +d +e +e +e +e +e +e +e +e +e +d +d +c +c +b +a +"} +(7,1,1) = {" +a +b +c +d +d +e +f +p +e +m +w +A +H +e +d +d +c +c +b +a +"} +(8,1,1) = {" +a +b +c +d +d +e +g +q +e +t +e +B +I +e +d +d +c +c +b +a +"} +(9,1,1) = {" +a +b +c +d +d +e +h +r +w +x +e +C +J +e +d +d +c +c +b +a +"} +(10,1,1) = {" +a +b +c +d +d +e +e +e +e +m +e +D +K +e +d +d +d +c +b +a +"} +(11,1,1) = {" +a +b +d +d +d +e +i +s +m +m +e +e +e +e +e +e +d +c +b +a +"} +(12,1,1) = {" +a +b +d +d +d +e +j +t +t +t +e +t +t +O +P +e +d +c +b +a +"} +(13,1,1) = {" +a +b +d +d +d +e +k +m +t +t +e +E +L +e +Q +e +d +c +b +a +"} +(14,1,1) = {" +a +b +d +d +d +e +e +e +e +t +e +m +M +e +R +e +d +c +b +a +"} +(15,1,1) = {" +a +b +d +d +d +e +l +t +w +t +w +t +N +e +S +e +d +c +c +a +"} +(16,1,1) = {" +a +b +d +d +d +e +m +u +e +t +e +w +e +e +e +e +d +c +c +a +"} +(17,1,1) = {" +a +b +c +d +d +e +n +m +e +x +e +F +e +d +d +d +d +c +c +a +"} +(18,1,1) = {" +a +b +c +d +d +e +o +v +e +y +e +G +e +d +d +c +d +c +c +a +"} +(19,1,1) = {" +a +b +c +d +d +e +e +e +e +z +e +e +e +d +d +c +d +c +b +a +"} +(20,1,1) = {" +a +b +c +c +d +d +d +d +e +y +e +d +d +d +c +c +c +c +b +a +"} +(21,1,1) = {" +a +b +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +b +a +"} +(22,1,1) = {" +a +b +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +b +a +"} +(23,1,1) = {" +a +b +b +c +c +c +c +c +c +c +c +c +c +c +c +c +c +b +b +a +"} +(24,1,1) = {" +a +b +b +b +b +c +c +b +b +b +b +b +b +b +b +b +b +b +b +a +"} +(25,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} diff --git a/maps/expedition_vr/beach/submaps/Scave1.dmm b/maps/expedition_vr/beach/submaps/Scave1.dmm new file mode 100644 index 0000000000..4aba16fdce --- /dev/null +++ b/maps/expedition_vr/beach/submaps/Scave1.dmm @@ -0,0 +1,942 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/template_noop, +/area/template_noop) +"b" = ( +/turf/simulated/mineral/ignore_mapgen/cave, +/area/submap/cave/Scave1) +"c" = ( +/obj/effect/spider/stickyweb, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/Scave1) +"d" = ( +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/Scave1) +"e" = ( +/obj/effect/spider/spiderling/frost, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/Scave1) +"f" = ( +/obj/item/weapon/spacecash/c100, +/obj/item/weapon/spacecash/c100, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/Scave1) +"g" = ( +/obj/random/mob/spider/mutant, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/Scave1) +"h" = ( +/obj/item/weapon/spacecash/c100, +/obj/item/weapon/spacecash/c100, +/obj/item/weapon/spacecash/c100, +/obj/effect/decal/remains, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/Scave1) +"i" = ( +/obj/random/mob/spider, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/Scave1) +"j" = ( +/obj/item/weapon/grenade/spawnergrenade/spider, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/Scave1) +"k" = ( +/obj/random/toolbox, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/Scave1) +"l" = ( +/obj/effect/decal/mecha_wreckage/ripley, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/Scave1) +"m" = ( +/obj/item/mecha_parts/mecha_equipment/tool/drill/diamonddrill, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/Scave1) +"n" = ( +/obj/item/device/flashlight, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/Scave1) +"o" = ( +/mob/living/simple_mob/animal/giant_spider/frost, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/Scave1) +"p" = ( +/obj/effect/spider/stickyweb, +/obj/effect/spider/stickyweb, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/Scave1) +"q" = ( +/obj/effect/decal/remains, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/Scave1) + +(1,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(2,1,1) = {" +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(3,1,1) = {" +a +a +b +b +b +b +d +d +b +b +b +b +b +b +b +b +d +n +d +d +d +q +b +b +b +a +a +"} +(4,1,1) = {" +a +a +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +d +d +d +d +d +b +b +b +a +a +"} +(5,1,1) = {" +a +a +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +d +p +b +b +b +b +a +a +"} +(6,1,1) = {" +a +b +b +b +b +b +f +h +b +b +b +b +b +b +b +b +b +b +b +p +p +b +b +b +b +b +a +"} +(7,1,1) = {" +a +b +b +b +b +d +d +f +b +b +b +b +b +b +b +b +b +b +b +d +c +b +b +b +b +b +a +"} +(8,1,1) = {" +a +a +b +b +b +e +d +b +b +b +c +c +b +b +b +b +b +b +b +d +d +b +b +b +b +b +a +"} +(9,1,1) = {" +a +a +a +b +c +d +d +b +b +d +d +d +g +d +d +d +d +d +d +e +d +b +b +b +b +b +a +"} +(10,1,1) = {" +a +a +a +b +b +d +d +i +d +d +d +d +d +d +c +d +d +d +d +d +d +d +b +b +b +a +a +"} +(11,1,1) = {" +a +a +b +b +b +b +c +d +d +d +d +c +c +d +d +d +d +b +d +d +g +d +c +b +b +b +a +"} +(12,1,1) = {" +a +a +b +b +b +b +b +d +c +b +b +b +b +b +b +b +b +b +b +d +d +d +d +b +b +b +a +"} +(13,1,1) = {" +a +a +b +b +b +b +b +d +d +b +b +b +b +b +b +b +b +b +b +b +d +d +d +b +b +b +a +"} +(14,1,1) = {" +a +a +b +b +b +c +d +d +d +b +b +b +b +b +b +b +b +b +b +b +c +d +d +b +b +b +a +"} +(15,1,1) = {" +a +a +b +b +b +c +e +d +d +k +b +b +b +b +b +b +b +b +b +b +b +d +c +b +b +b +a +"} +(16,1,1) = {" +a +a +a +b +b +c +d +d +d +c +b +b +b +b +b +b +b +b +b +b +c +d +d +b +b +b +a +"} +(17,1,1) = {" +a +a +a +b +b +b +b +b +d +d +b +b +b +b +b +b +b +b +b +b +d +d +d +b +b +b +a +"} +(18,1,1) = {" +a +a +a +b +b +b +b +c +d +d +c +b +b +l +m +c +b +b +b +b +d +d +d +g +b +a +a +"} +(19,1,1) = {" +a +a +a +b +b +b +b +c +d +d +d +d +d +d +d +d +c +b +b +b +d +d +d +b +b +a +a +"} +(20,1,1) = {" +a +a +a +b +b +b +b +e +d +d +d +i +d +d +d +d +c +o +b +b +d +d +d +b +b +b +a +"} +(21,1,1) = {" +a +a +a +b +b +b +b +d +d +d +d +d +d +d +g +d +d +c +b +d +d +c +c +b +b +b +a +"} +(22,1,1) = {" +a +a +a +b +b +d +d +d +d +d +d +d +d +d +d +d +d +d +d +e +c +b +b +b +b +b +a +"} +(23,1,1) = {" +a +a +b +b +b +d +g +d +d +b +c +c +c +c +c +c +d +d +d +d +b +b +b +b +b +b +a +"} +(24,1,1) = {" +a +a +b +b +b +d +d +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +a +"} +(25,1,1) = {" +a +a +b +b +d +e +d +d +j +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +a +"} +(26,1,1) = {" +a +a +b +b +b +d +d +e +g +b +b +b +b +b +b +b +b +b +d +d +d +d +b +b +b +a +a +"} +(27,1,1) = {" +a +a +b +b +b +d +d +d +b +b +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(28,1,1) = {" +a +a +a +a +b +b +b +b +b +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(29,1,1) = {" +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(30,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} diff --git a/maps/expedition_vr/beach/submaps/SupplyDrop1.dmm b/maps/expedition_vr/beach/submaps/SupplyDrop1.dmm new file mode 100644 index 0000000000..e38e20010f --- /dev/null +++ b/maps/expedition_vr/beach/submaps/SupplyDrop1.dmm @@ -0,0 +1,177 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/simulated/mineral/cave, +/area/submap/cave/SupplyDrop1) +"b" = ( +/turf/template_noop, +/area/template_noop) +"c" = ( +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/SupplyDrop1) +"d" = ( +/turf/simulated/wall/titanium, +/area/submap/cave/SupplyDrop1) +"e" = ( +/obj/structure/droppod_door{ + dir = 1 + }, +/turf/simulated/wall/titanium, +/area/submap/cave/SupplyDrop1) +"f" = ( +/turf/simulated/floor/reinforced, +/area/submap/cave/SupplyDrop1) +"g" = ( +/obj/structure/droppod_door{ + dir = 8 + }, +/turf/simulated/wall/titanium, +/area/submap/cave/SupplyDrop1) +"h" = ( +/obj/structure/closet/crate, +/obj/item/weapon/gun/energy/stunrevolver, +/obj/item/weapon/gun/energy/stunrevolver, +/obj/item/weapon/storage/box/flare, +/obj/item/stack/marker_beacon/ten, +/obj/item/weapon/cell/device/weapon, +/obj/item/weapon/cell/device/weapon, +/obj/item/trash/tastybread, +/obj/item/trash/tastybread, +/obj/item/trash/sosjerky, +/obj/item/trash/sosjerky, +/obj/item/trash/liquidfood, +/obj/item/trash/liquidfood, +/obj/item/weapon/flame/lighter/random, +/obj/item/device/gps, +/turf/simulated/floor/reinforced, +/area/submap/cave/SupplyDrop1) +"i" = ( +/obj/structure/droppod_door{ + dir = 4 + }, +/turf/simulated/wall/titanium, +/area/submap/cave/SupplyDrop1) +"j" = ( +/obj/structure/droppod_door, +/turf/simulated/wall/titanium, +/area/submap/cave/SupplyDrop1) + +(1,1,1) = {" +a +a +a +a +c +c +b +b +b +b +"} +(2,1,1) = {" +a +a +c +c +c +c +c +b +b +b +"} +(3,1,1) = {" +b +c +c +c +c +c +c +c +a +c +"} +(4,1,1) = {" +b +c +c +c +d +g +d +a +a +c +"} +(5,1,1) = {" +b +c +c +d +d +f +d +d +a +c +"} +(6,1,1) = {" +c +a +c +e +f +h +f +j +c +c +"} +(7,1,1) = {" +c +a +a +d +d +f +d +d +c +c +"} +(8,1,1) = {" +c +c +c +c +d +i +d +c +c +c +"} +(9,1,1) = {" +c +c +c +c +c +c +a +a +a +c +"} +(10,1,1) = {" +b +b +b +b +c +c +c +c +c +c +"} diff --git a/maps/expedition_vr/beach/submaps/SwordCave.dmm b/maps/expedition_vr/beach/submaps/SwordCave.dmm new file mode 100644 index 0000000000..f14417c782 --- /dev/null +++ b/maps/expedition_vr/beach/submaps/SwordCave.dmm @@ -0,0 +1,1808 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/template_noop, +/area/template_noop) +"b" = ( +/turf/simulated/mineral/cave, +/area/submap/cave/swordcave) +"c" = ( +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/swordcave) +"d" = ( +/obj/machinery/crystal, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/swordcave) +"e" = ( +/turf/simulated/floor/water, +/area/submap/cave/swordcave) +"f" = ( +/turf/simulated/floor/water/deep, +/area/submap/cave/swordcave) +"g" = ( +/obj/structure/ghost_pod/manual/cursedblade, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/swordcave) +"h" = ( +/mob/living/simple_mob/faithless/cult, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/swordcave) +"i" = ( +/obj/item/device/gps/explorer/on, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/swordcave) +"j" = ( +/obj/structure/loot_pile/surface/bones, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/swordcave) +"k" = ( +/mob/living/simple_mob/animal/space/bats, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/swordcave) +"l" = ( +/mob/living/simple_mob/animal/space/bats/cult, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/swordcave) + +(1,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(2,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +b +b +b +b +b +b +b +b +b +b +b +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(3,1,1) = {" +a +a +a +a +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +a +a +a +a +a +a +a +a +a +a +a +a +"} +(4,1,1) = {" +a +a +a +b +b +b +b +b +b +b +b +b +b +b +b +c +c +c +b +b +b +b +b +b +b +b +b +b +b +b +a +a +a +a +a +a +a +a +a +a +a +"} +(5,1,1) = {" +a +a +b +b +b +b +b +b +b +b +b +b +c +c +c +c +c +c +c +c +c +c +b +b +b +b +b +b +b +b +b +a +a +a +a +a +a +a +a +a +a +"} +(6,1,1) = {" +a +b +b +b +b +c +c +c +c +c +c +c +c +c +d +c +c +c +c +c +c +c +c +b +b +b +b +b +b +b +b +b +b +a +a +a +a +a +a +a +a +"} +(7,1,1) = {" +a +b +b +b +c +c +d +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +b +b +b +b +b +b +b +b +b +b +a +a +a +a +a +a +a +"} +(8,1,1) = {" +a +b +b +b +c +c +c +c +c +c +c +c +c +c +c +l +c +c +c +c +c +c +c +c +c +c +c +c +b +b +b +b +b +b +b +b +b +a +a +a +a +"} +(9,1,1) = {" +b +b +b +b +c +c +c +c +c +c +c +d +c +c +c +c +c +c +d +c +c +c +c +c +c +c +c +c +b +b +b +b +b +b +b +b +b +a +a +a +a +"} +(10,1,1) = {" +b +b +b +c +c +c +c +c +c +e +e +e +e +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +b +b +b +b +b +b +b +b +b +a +a +a +"} +(11,1,1) = {" +b +b +c +c +c +c +c +e +e +e +e +e +e +e +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +b +b +b +b +b +a +a +a +"} +(12,1,1) = {" +b +b +c +c +c +c +e +e +e +f +f +f +f +e +e +c +c +c +c +c +c +c +l +c +c +c +c +c +c +c +c +c +c +c +b +b +b +b +b +a +a +"} +(13,1,1) = {" +b +b +c +c +c +e +e +f +f +f +f +f +f +f +e +e +c +c +c +c +c +c +c +c +c +c +d +c +c +c +l +c +c +c +c +b +b +b +b +a +a +"} +(14,1,1) = {" +b +b +c +c +e +e +e +e +e +e +e +e +f +f +f +e +e +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +b +b +b +a +a +"} +(15,1,1) = {" +b +b +c +c +e +e +f +e +e +e +e +e +e +f +f +f +e +e +c +c +c +l +c +c +c +c +c +c +c +c +c +c +c +d +c +c +b +b +b +a +a +"} +(16,1,1) = {" +b +b +c +c +e +e +f +e +c +c +e +c +e +e +f +f +f +e +e +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +b +b +b +a +a +"} +(17,1,1) = {" +b +c +c +c +e +e +f +e +c +c +c +c +e +e +e +f +f +f +e +e +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +b +b +b +a +a +"} +(18,1,1) = {" +b +c +c +c +e +e +f +e +c +c +c +i +c +e +e +f +f +f +f +e +e +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +b +b +b +a +a +"} +(19,1,1) = {" +b +c +c +c +e +e +f +e +e +c +g +j +c +c +e +e +f +e +e +e +c +c +c +c +c +c +c +l +c +c +d +c +c +c +c +c +b +b +b +a +a +"} +(20,1,1) = {" +b +d +c +c +e +e +f +e +e +c +c +c +c +c +e +e +f +e +e +c +c +c +c +c +c +d +c +c +c +c +c +c +c +c +c +c +c +b +b +a +a +"} +(21,1,1) = {" +b +c +c +c +e +e +f +f +e +e +c +d +c +c +e +e +f +e +e +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +l +c +c +c +b +a +a +"} +(22,1,1) = {" +b +c +c +c +e +e +f +e +e +c +c +c +c +c +e +e +f +e +e +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +a +a +"} +(23,1,1) = {" +b +c +c +c +e +e +f +e +e +c +c +c +c +c +e +e +f +e +e +d +c +c +c +l +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +a +"} +(24,1,1) = {" +b +c +c +c +e +e +f +e +e +c +h +c +c +e +e +f +f +e +e +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +"} +(25,1,1) = {" +b +b +c +c +e +e +f +e +e +c +c +c +e +e +f +f +f +f +e +e +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +"} +(26,1,1) = {" +b +b +c +c +e +e +f +e +e +e +c +c +e +e +f +f +f +f +e +e +c +c +c +c +c +c +c +c +c +d +c +c +c +c +c +c +c +c +c +d +c +"} +(27,1,1) = {" +b +b +c +c +c +e +e +e +f +e +e +e +e +f +f +f +f +f +e +e +e +c +c +c +c +c +c +c +c +c +c +c +c +c +l +c +c +c +c +c +c +"} +(28,1,1) = {" +b +b +c +c +c +c +e +e +f +f +e +e +f +f +f +f +e +e +e +c +c +c +l +c +c +c +c +d +c +c +c +c +c +c +c +c +c +c +c +c +c +"} +(29,1,1) = {" +b +b +c +c +c +c +e +e +f +f +f +f +e +e +e +e +e +e +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +b +b +c +c +c +c +c +"} +(30,1,1) = {" +b +b +c +c +c +c +c +e +e +f +f +e +e +e +e +e +c +c +k +c +c +c +c +c +c +c +c +c +c +c +c +c +c +b +b +b +b +c +c +c +a +"} +(31,1,1) = {" +b +b +c +c +c +c +c +c +e +e +e +e +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +b +b +b +b +b +b +c +a +a +"} +(32,1,1) = {" +b +b +b +c +c +c +c +c +c +e +e +c +c +c +c +c +c +c +c +c +d +c +c +c +c +c +c +c +c +c +c +b +b +b +b +b +b +a +a +a +a +"} +(33,1,1) = {" +b +b +b +d +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +l +c +c +c +c +c +b +b +b +b +b +b +b +a +a +a +a +a +"} +(34,1,1) = {" +b +b +b +b +c +c +c +c +c +c +c +d +c +c +c +c +d +c +c +c +l +c +c +c +c +c +b +b +b +b +b +b +b +b +b +a +a +a +a +a +a +"} +(35,1,1) = {" +b +b +b +b +b +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +b +b +b +b +b +b +b +b +a +a +a +a +a +a +a +a +"} +(36,1,1) = {" +a +b +b +b +b +b +b +b +b +b +b +b +c +c +c +c +c +c +c +c +c +c +c +c +b +b +b +b +b +b +b +b +a +a +a +a +a +a +a +a +a +"} +(37,1,1) = {" +a +a +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +a +a +a +a +a +a +a +a +a +a +a +a +"} +(38,1,1) = {" +a +a +a +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(39,1,1) = {" +a +a +a +a +b +b +b +b +a +a +a +a +a +b +b +b +b +b +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(40,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(41,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} diff --git a/maps/expedition_vr/beach/submaps/crashed_ufo.dmm b/maps/expedition_vr/beach/submaps/crashed_ufo.dmm new file mode 100644 index 0000000000..4ba1a0d87d --- /dev/null +++ b/maps/expedition_vr/beach/submaps/crashed_ufo.dmm @@ -0,0 +1,1645 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/turf/template_noop, +/area/template_noop) +"ab" = ( +/turf/simulated/shuttle/floor/alienplating/external, +/area/submap/cave/crashed_ufo) +"ac" = ( +/turf/simulated/shuttle/wall/alien, +/area/submap/cave/crashed_ufo) +"ad" = ( +/obj/structure/closet/alien, +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo) +"ae" = ( +/obj/structure/closet/alien, +/obj/item/prop/alien/junk, +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo) +"af" = ( +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo) +"ag" = ( +/obj/machinery/door/airlock/alien/locked, +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo) +"ah" = ( +/obj/effect/decal/remains/xeno, +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo) +"ai" = ( +/obj/machinery/porta_turret/alien, +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo) +"aj" = ( +/obj/structure/loot_pile/surface/alien/engineering, +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo) +"ak" = ( +/obj/structure/prop/alien/computer, +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo) +"al" = ( +/obj/item/weapon/tool/wrench/alien, +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo) +"am" = ( +/obj/structure/bed/alien, +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo) +"an" = ( +/obj/structure/table/alien, +/turf/simulated/shuttle/floor/alien, +/area/submap/cave/crashed_ufo) +"ao" = ( +/obj/structure/table/alien, +/obj/item/clothing/head/helmet/alien, +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo) +"ap" = ( +/obj/structure/prop/alien/power, +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo) +"aq" = ( +/turf/simulated/shuttle/floor/alien, +/area/submap/cave/crashed_ufo) +"ar" = ( +/obj/structure/table/alien, +/obj/item/weapon/paper/alien{ + icon_state = "alienpaper_words"; + info = "\[i]This tablet has a large collection of symbols that you've never seen before outside this ship. You have no hope of figuring out what any of the mean...\[/i]" + }, +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo) +"as" = ( +/turf/simulated/shuttle/wall/alien/hard_corner, +/area/submap/cave/crashed_ufo) +"at" = ( +/obj/structure/prop/alien/computer, +/turf/simulated/shuttle/floor/alien, +/area/submap/cave/crashed_ufo) +"au" = ( +/obj/structure/table/alien, +/obj/item/prop/alien/junk, +/turf/simulated/shuttle/floor/alien, +/area/submap/cave/crashed_ufo) +"av" = ( +/obj/structure/table/alien, +/obj/item/weapon/paper/alien{ + icon_state = "alienpaper_words"; + info = "\[i]This tablet has a large collection of symbols that you've never seen before outside this ship. You have no hope of figuring out what any of the mean...\[/i]" + }, +/turf/simulated/shuttle/floor/alien, +/area/submap/cave/crashed_ufo) +"aw" = ( +/obj/structure/loot_pile/surface/alien/security, +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo) +"ax" = ( +/obj/structure/prop/alien/computer{ + dir = 8 + }, +/turf/simulated/shuttle/floor/alien, +/area/submap/cave/crashed_ufo) +"ay" = ( +/obj/structure/prop/alien/computer{ + icon_state = "console-c"; + dir = 4 + }, +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo) +"az" = ( +/obj/machinery/door/airlock/alien/locked{ + welded = 1 + }, +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo) +"aA" = ( +/obj/structure/bed/alien, +/obj/effect/decal/remains/xeno, +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo) +"aB" = ( +/obj/item/weapon/tool/screwdriver/alien, +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo) +"aC" = ( +/obj/item/weapon/tool/wirecutters/alien, +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo) +"aD" = ( +/obj/structure/table/alien, +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo) +"aE" = ( +/obj/item/device/multitool/alien, +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo) +"aF" = ( +/obj/structure/prop/alien/computer/camera/flipped{ + icon_state = "camera_flipped"; + dir = 4 + }, +/turf/simulated/shuttle/floor/alien, +/area/submap/cave/crashed_ufo) +"aG" = ( +/obj/structure/prop/alien/computer/camera{ + icon_state = "camera"; + dir = 8 + }, +/turf/simulated/shuttle/floor/alien, +/area/submap/cave/crashed_ufo) +"aH" = ( +/obj/machinery/porta_turret/alien, +/turf/simulated/shuttle/floor/alien, +/area/submap/cave/crashed_ufo) +"aI" = ( +/obj/machinery/door/airlock/alien/locked{ + p_open = 1 + }, +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo) +"aJ" = ( +/obj/effect/decal/remains/robot, +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo) +"aK" = ( +/obj/item/weapon/tool/crowbar/alien, +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo) +"aL" = ( +/obj/item/stack/cable_coil/alien, +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo) +"aM" = ( +/obj/structure/table/alien, +/obj/item/prop/alien/junk, +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo) +"aN" = ( +/obj/structure/table/alien, +/obj/item/weapon/paper/alien{ + icon_state = "alienpaper_words"; + info = "\[i]This tablet has a large collection of symbols that you've never seen before outside this ship. You have no hope of figuring out what any of the mean...\[/i]" + }, +/obj/item/device/gps/internal/poi, +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo) +"aO" = ( +/obj/structure/prop/alien/computer{ + icon_state = "console-c"; + dir = 4 + }, +/turf/simulated/shuttle/floor/alien, +/area/submap/cave/crashed_ufo) +"aP" = ( +/obj/structure/table/alien, +/obj/item/clothing/accessory/medal/dungeon/alien_ufo, +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo) +"aQ" = ( +/obj/structure/table/alien, +/obj/item/weapon/weldingtool/alien, +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo) +"aR" = ( +/obj/structure/bed/alien, +/turf/simulated/shuttle/floor/alien, +/area/submap/cave/crashed_ufo) +"aS" = ( +/obj/structure/prop/alien/computer/camera, +/turf/simulated/shuttle/floor/alien, +/area/submap/cave/crashed_ufo) +"aT" = ( +/obj/structure/closet/alien, +/obj/item/weapon/paper/alien, +/turf/simulated/shuttle/floor/alien, +/area/submap/cave/crashed_ufo) +"aU" = ( +/obj/structure/bed/alien, +/obj/effect/decal/remains/xeno, +/turf/simulated/shuttle/floor/alien, +/area/submap/cave/crashed_ufo) +"aV" = ( +/obj/structure/loot_pile/surface/alien/end, +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo) +"aW" = ( +/obj/structure/table/alien, +/obj/item/weapon/surgical/circular_saw/alien, +/turf/simulated/shuttle/floor/alien, +/area/submap/cave/crashed_ufo) +"aX" = ( +/obj/structure/table/alien, +/obj/item/weapon/surgical/FixOVein/alien, +/turf/simulated/shuttle/floor/alien, +/area/submap/cave/crashed_ufo) +"aY" = ( +/obj/structure/table/alien, +/obj/item/weapon/surgical/scalpel/alien, +/turf/simulated/shuttle/floor/alien, +/area/submap/cave/crashed_ufo) +"aZ" = ( +/obj/item/weapon/surgical/hemostat/alien, +/turf/simulated/shuttle/floor/alien, +/area/submap/cave/crashed_ufo) +"ba" = ( +/obj/machinery/door/airlock/alien/locked, +/turf/simulated/shuttle/floor/alien, +/area/submap/cave/crashed_ufo) +"bb" = ( +/obj/effect/decal/remains/lizard, +/turf/simulated/shuttle/floor/alien, +/area/submap/cave/crashed_ufo) +"bc" = ( +/obj/structure/prop/alien/dispenser, +/turf/simulated/shuttle/floor/alien, +/area/submap/cave/crashed_ufo) +"bd" = ( +/obj/structure/table/alien, +/obj/item/weapon/surgical/bone_clamp/alien, +/turf/simulated/shuttle/floor/alien, +/area/submap/cave/crashed_ufo) +"be" = ( +/obj/structure/loot_pile/surface/alien/medical, +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo) +"bf" = ( +/obj/structure/closet/alien, +/obj/item/prop/alien/junk, +/turf/simulated/shuttle/floor/alien, +/area/submap/cave/crashed_ufo) +"bg" = ( +/obj/structure/prop/alien/dispenser, +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo) +"bh" = ( +/obj/effect/decal/remains/mouse, +/turf/simulated/shuttle/floor/alien, +/area/submap/cave/crashed_ufo) +"bi" = ( +/obj/structure/closet/alien, +/obj/item/prop/alien/junk, +/obj/item/prop/alien/junk, +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo) +"bj" = ( +/obj/machinery/porta_turret/alien/destroyed{ + icon_state = "destroyed_target_prism"; + dir = 6 + }, +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo) +"bk" = ( +/obj/item/weapon/cell/device/weapon/empty, +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo) +"bl" = ( +/obj/machinery/porta_turret/alien/destroyed{ + icon_state = "destroyed_target_prism"; + dir = 10 + }, +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo) +"bm" = ( +/obj/item/weapon/gun/energy/retro/empty, +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo) +"bn" = ( +/obj/item/device/gps{ + gps_tag = "COMDOM1" + }, +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo) +"bo" = ( +/obj/item/weapon/reagent_containers/hypospray/autoinjector/used, +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo) +"bp" = ( +/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/burn, +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo) +"bq" = ( +/obj/effect/decal/remains/human{ + desc = "They look like human remains. Based on the equipment you saw nearby when you walked in, they were some kind of command person, and a poor one at that." + }, +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo) +"br" = ( +/obj/item/clothing/gloves/yellow, +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo) +"bs" = ( +/obj/item/weapon/storage/belt/utility/full, +/obj/item/device/multitool, +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo) +"bt" = ( +/obj/machinery/door/airlock/alien/public, +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo) +"bu" = ( +/obj/item/clothing/suit/storage/hooded/wintercoat/captain, +/obj/item/clothing/shoes/boots/winter/command, +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo) +"bv" = ( +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/template_noop) + +(1,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(2,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(3,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ac +ac +ac +ac +ac +ac +ac +ab +ab +ab +ab +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(4,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ac +ac +ac +ac +ad +ad +ae +ae +ad +ac +ac +ac +ac +ab +ab +ab +aa +aa +aa +aa +aa +aa +aa +aa +"} +(5,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ab +ab +ac +ac +ac +af +ag +af +af +af +af +af +af +af +ag +af +ac +ac +ac +ab +ab +aa +aa +aa +aa +aa +aa +aa +"} +(6,1,1) = {" +aa +aa +aa +aa +aa +aa +ab +ab +ac +ac +af +af +af +ac +af +af +af +aL +af +af +af +ac +af +af +af +ac +ac +ab +ab +aa +aa +aa +aa +aa +aa +"} +(7,1,1) = {" +aa +aa +aa +aa +aa +ab +ab +ac +ac +af +af +ac +ac +ac +ac +ai +af +af +af +ai +ac +ac +ac +ac +af +af +ac +ac +ab +ab +aa +aa +aa +aa +aa +"} +(8,1,1) = {" +aa +aa +aa +aa +ab +ab +ac +ac +af +af +ac +ac +aj +ay +ac +ac +af +af +af +ac +ac +aX +av +ac +ac +af +af +ac +ac +ab +ab +aa +aa +aa +aa +"} +(9,1,1) = {" +aa +aa +aa +ab +ab +ac +ac +af +af +ac +ac +ai +af +af +an +ac +ac +af +ac +ac +aq +aq +aq +bc +ac +ac +af +af +ac +ac +ab +ab +aa +aa +aa +"} +(10,1,1) = {" +aa +aa +aa +ab +ac +ac +af +af +ac +ac +ap +af +af +aq +an +aD +as +ag +as +at +aq +aU +aq +bd +ac +ac +ac +af +af +ac +ac +ab +aa +aa +aa +"} +(11,1,1) = {" +aa +aa +ab +ab +ac +af +af +ac +ac +ap +af +af +aq +aq +aq +aE +as +af +as +ac +ac +as +ba +as +ac +ac +ac +ac +af +af +ac +ab +ab +bv +bv +"} +(12,1,1) = {" +aa +aa +ab +ac +ac +af +ac +ac +ai +af +af +aq +aq +aq +aB +ah +aI +af +ag +aq +aq +ac +aq +ai +as +be +bg +ac +ac +af +ac +ac +ab +bv +bv +"} +(13,1,1) = {" +aa +aa +ab +ac +af +af +ac +aj +af +af +aq +aq +aq +af +aC +aj +as +af +as +aR +aq +aq +aq +aq +ag +af +af +bi +ac +af +af +ac +ab +bv +bv +"} +(14,1,1) = {" +aa +ab +ab +ac +ag +ac +ac +ak +af +aq +aq +aq +af +af +ad +ac +ac +ac +ac +ac +aU +aq +aq +ac +as +af +af +be +ac +as +ag +as +ab +ab +bv +"} +(15,1,1) = {" +aa +ab +ac +ac +af +af +ac +ac +an +an +aq +af +af +ad +ac +ac +aq +ai +aO +ac +ac +aR +aq +aq +ac +af +be +ac +ac +af +af +ac +ac +ab +bv +"} +(16,1,1) = {" +aa +ab +ac +ad +af +af +ai +ac +ac +ar +af +af +aj +ac +ac +aF +aq +aq +aq +aq +ac +ac +aU +aq +ac +be +ac +ac +bj +af +bk +af +as +ab +bv +"} +(17,1,1) = {" +aa +ab +ac +ad +af +af +af +af +ac +as +as +ag +as +as +at +aq +aq +aM +aP +aq +ai +ac +as +ag +as +as +ac +af +bk +af +af +as +as +as +bv +"} +(18,1,1) = {" +aa +ab +ac +ae +ah +af +af +af +af +ag +af +af +af +az +af +af +aJ +aN +ah +aq +aV +ac +af +af +af +ag +af +af +af +bm +af +bt +af +bt +bv +"} +(19,1,1) = {" +aa +ab +ac +ad +af +af +af +al +ac +as +as +ag +as +as +at +aq +aq +ar +aQ +aq +ai +ac +as +ag +as +as +ac +af +af +bn +bq +as +as +as +bv +"} +(20,1,1) = {" +aa +ab +ac +ad +af +af +ai +ac +ac +ac +ai +af +aw +ac +ac +aG +aq +aq +aq +aq +ac +ac +aF +aq +aq +bf +ac +ac +bl +bo +br +bu +ac +ab +bv +"} +(21,1,1) = {" +aa +ab +ac +ac +af +af +ac +ac +ao +ac +aq +af +af +aw +ac +ac +aq +ai +ax +ac +ac +aY +aq +aq +aq +ac +ac +ac +ac +bp +bs +ac +ac +ab +bv +"} +(22,1,1) = {" +aa +ab +ab +ac +ag +ac +ac +am +af +ag +aq +aq +af +af +aw +ac +ac +ac +ac +ac +aW +aH +aq +aq +as +ac +aq +ac +ac +as +ag +as +ab +ab +bv +"} +(23,1,1) = {" +aa +aa +ab +ac +af +af +ac +ah +ah +ac +at +aq +aq +af +af +aw +as +af +as +aS +aq +aq +aq +aq +ba +aq +bh +aq +ac +af +af +ac +ab +bv +bv +"} +(24,1,1) = {" +aa +aa +ab +ac +ac +af +ac +ac +ae +ac +au +aq +aq +aq +af +af +ag +af +ag +aq +aq +aq +aq +aq +as +ac +aq +ac +ac +af +ac +ac +ab +bv +bv +"} +(25,1,1) = {" +aa +aa +ab +ab +ac +af +af +ac +ac +ac +au +av +ax +aq +aq +aH +as +af +as +aq +aq +as +ba +as +ac +ac +ac +ac +af +af +ac +ab +ab +bv +bv +"} +(26,1,1) = {" +aa +aa +aa +ab +ac +ac +af +af +ac +ac +ac +ac +ac +ag +ac +ac +as +ag +as +aT +ac +ac +aq +ac +ac +ac +ac +af +af +ac +ac +ab +aa +aa +aa +"} +(27,1,1) = {" +aa +aa +aa +ab +ab +ac +ac +af +af +ac +ac +ae +af +af +aD +ac +ac +af +ac +ac +ac +aZ +bb +aq +ac +ac +af +af +ac +ac +ab +ab +aa +aa +aa +"} +(28,1,1) = {" +aa +aa +aa +aa +ab +ab +ac +ac +af +af +ac +ac +ah +aA +ac +ac +af +af +ah +ac +ac +ac +aq +ac +ac +af +af +ac +ac +ab +ab +aa +aa +aa +aa +"} +(29,1,1) = {" +aa +aa +aa +aa +aa +ab +ab +ac +ac +af +af +ac +ac +ac +ac +ai +af +af +af +ai +ac +ac +ac +ac +af +af +ac +ac +ab +ab +aa +aa +aa +aa +aa +"} +(30,1,1) = {" +aa +aa +aa +aa +aa +aa +ab +ab +ac +ac +af +af +af +ac +af +af +af +af +af +af +af +ac +af +af +af +ac +ac +ab +ab +aa +aa +aa +aa +aa +aa +"} +(31,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ab +ab +ac +ac +ac +af +ag +af +af +aK +af +af +af +af +ag +af +ac +ac +ac +ab +ab +aa +aa +aa +aa +aa +aa +aa +"} +(32,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ac +ac +ac +ac +ae +ad +ad +ae +ad +ac +ac +ac +ac +ab +ab +ab +aa +aa +aa +aa +aa +aa +aa +aa +"} +(33,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ac +ac +ac +ac +ac +ac +ac +ab +ab +ab +ab +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(34,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(35,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} diff --git a/maps/expedition_vr/beach/submaps/crashed_ufo_frigate.dmm b/maps/expedition_vr/beach/submaps/crashed_ufo_frigate.dmm new file mode 100644 index 0000000000..a2f60e1ef6 --- /dev/null +++ b/maps/expedition_vr/beach/submaps/crashed_ufo_frigate.dmm @@ -0,0 +1,2132 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/turf/template_noop, +/area/template_noop) +"ab" = ( +/turf/simulated/shuttle/wall/alien, +/area/submap/cave/crashed_ufo_frigate) +"ac" = ( +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo_frigate) +"ad" = ( +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/template_noop) +"af" = ( +/mob/living/simple_mob/animal/space/alien/drone, +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo_frigate) +"ag" = ( +/obj/machinery/porta_turret/alien{ + faction = "xeno" + }, +/turf/simulated/floor/outdoors/ice, +/area/submap/cave/crashed_ufo_frigate) +"ah" = ( +/obj/structure/table/alien, +/turf/simulated/floor/outdoors/ice, +/area/submap/cave/crashed_ufo_frigate) +"ai" = ( +/obj/machinery/artifact, +/obj/effect/alien/weeds/node, +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo_frigate) +"aj" = ( +/obj/random/outcrop, +/turf/simulated/floor/outdoors/ice, +/area/template_noop) +"ak" = ( +/obj/machinery/porta_turret/alien{ + faction = "xeno" + }, +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo_frigate) +"al" = ( +/turf/simulated/floor/outdoors/ice, +/area/submap/cave/crashed_ufo_frigate) +"am" = ( +/obj/structure/window/phoronreinforced, +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo_frigate) +"ao" = ( +/obj/structure/loot_pile/surface/alien/security, +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo_frigate) +"ap" = ( +/turf/simulated/shuttle/floor/alien, +/area/submap/cave/crashed_ufo_frigate) +"aq" = ( +/obj/structure/prop/alien/pod/open, +/turf/simulated/shuttle/floor/alien, +/area/submap/cave/crashed_ufo_frigate) +"ar" = ( +/obj/effect/alien/weeds/node, +/turf/simulated/floor/outdoors/ice, +/area/submap/cave/crashed_ufo_frigate) +"as" = ( +/obj/structure/prop/alien/pod/open, +/obj/random/tech_supply/component, +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo_frigate) +"at" = ( +/obj/machinery/door/airlock/alien/locked, +/turf/simulated/shuttle/floor/alien, +/area/submap/cave/crashed_ufo_frigate) +"au" = ( +/obj/machinery/door/airlock/alien/locked, +/turf/simulated/floor/outdoors/ice, +/area/submap/cave/crashed_ufo_frigate) +"av" = ( +/obj/structure/loot_pile/surface/alien/engineering, +/turf/simulated/floor/outdoors/ice, +/area/submap/cave/crashed_ufo_frigate) +"aw" = ( +/obj/structure/prop/alien/pod/open, +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo_frigate) +"ax" = ( +/turf/simulated/floor/outdoors/ice, +/area/template_noop) +"ay" = ( +/obj/structure/loot_pile/surface/bones, +/turf/simulated/floor/outdoors/ice, +/area/submap/cave/crashed_ufo_frigate) +"az" = ( +/obj/item/prop/alien/junk, +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo_frigate) +"aA" = ( +/obj/effect/alien/weeds/node, +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo_frigate) +"aB" = ( +/obj/structure/loot_pile/surface/alien/medical, +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo_frigate) +"aC" = ( +/obj/structure/loot_pile/surface/alien/security, +/turf/simulated/shuttle/floor/alien, +/area/submap/cave/crashed_ufo_frigate) +"aD" = ( +/obj/structure/table/alien, +/obj/random/tech_supply/component, +/turf/simulated/floor/outdoors/ice, +/area/submap/cave/crashed_ufo_frigate) +"aE" = ( +/obj/structure/prop/alien/pod/open, +/obj/random/tech_supply/component, +/turf/simulated/shuttle/floor/alien, +/area/submap/cave/crashed_ufo_frigate) +"aF" = ( +/obj/structure/table/alien, +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo_frigate) +"aG" = ( +/obj/machinery/vr_sleeper/alien/random_replicant, +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo_frigate) +"aH" = ( +/obj/structure/prop/alien/pod, +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo_frigate) +"aI" = ( +/obj/structure/loot_pile/surface/alien/engineering, +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo_frigate) +"aJ" = ( +/obj/machinery/door/airlock/alien/locked, +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo_frigate) +"aK" = ( +/obj/structure/table/alien, +/obj/random/tech_supply/component, +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo_frigate) +"aL" = ( +/obj/structure/table/alien, +/obj/item/clothing/under/psysuit, +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo_frigate) +"aM" = ( +/obj/structure/prop/alien/computer/camera, +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo_frigate) +"aN" = ( +/obj/structure/prop/alien/computer/camera/flipped, +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo_frigate) +"aO" = ( +/obj/structure/simple_door/resin, +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo_frigate) +"aP" = ( +/obj/structure/prop/alien/power, +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo_frigate) +"aQ" = ( +/obj/effect/alien/weeds/node, +/mob/living/simple_mob/animal/space/alien/drone, +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo_frigate) +"aR" = ( +/obj/effect/alien/weeds/node, +/turf/simulated/shuttle/floor/alien, +/area/submap/cave/crashed_ufo_frigate) +"aS" = ( +/obj/structure/table/alien, +/obj/random/tool/alien, +/turf/simulated/floor/outdoors/ice, +/area/submap/cave/crashed_ufo_frigate) +"aT" = ( +/obj/structure/loot_pile/surface/alien/security, +/turf/simulated/floor/outdoors/ice, +/area/submap/cave/crashed_ufo_frigate) +"aU" = ( +/obj/machinery/replicator, +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo_frigate) +"aV" = ( +/obj/structure/closet/alien, +/obj/random/unidentified_medicine/drug_den, +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo_frigate) +"aW" = ( +/obj/effect/decal/remains/xeno, +/obj/item/clothing/under/psysuit, +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo_frigate) +"aX" = ( +/obj/structure/prop/alien/computer/camera/flipped{ + icon_state = "camera_flipped"; + dir = 4 + }, +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo_frigate) +"aY" = ( +/obj/structure/prop/alien/computer/camera{ + icon_state = "camera"; + dir = 8 + }, +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo_frigate) +"aZ" = ( +/obj/machinery/porta_turret/alien/destroyed, +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo_frigate) +"ba" = ( +/obj/structure/closet/alien, +/obj/random/unidentified_medicine/scientific, +/turf/simulated/shuttle/floor/alien, +/area/submap/cave/crashed_ufo_frigate) +"bb" = ( +/obj/structure/closet/alien, +/obj/random/unidentified_medicine/nanites, +/turf/simulated/floor/outdoors/ice, +/area/submap/cave/crashed_ufo_frigate) +"bc" = ( +/obj/structure/closet/alien, +/obj/random/unidentified_medicine/fresh_medicine, +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo_frigate) +"bd" = ( +/obj/structure/closet/alien, +/obj/random/unidentified_medicine/viral, +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo_frigate) +"be" = ( +/obj/machinery/door/blast/puzzle, +/obj/machinery/door/airlock/alien/locked, +/turf/simulated/shuttle/floor/alien, +/area/submap/cave/crashed_ufo_frigate) +"bf" = ( +/obj/structure/table/alien, +/obj/item/weapon/paper/alien{ + icon_state = "alienpaper_words"; + info = "\[i]This tablet has a large collection of symbols that you've never seen before outside this ship. You have no hope of figuring out what any of the mean...\[/i]" + }, +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo_frigate) +"bg" = ( +/obj/structure/prop/lock/projectile, +/turf/simulated/floor/outdoors/ice, +/area/submap/cave/crashed_ufo_frigate) +"bh" = ( +/obj/structure/closet/alien, +/obj/random/unidentified_medicine/old_medicine, +/turf/simulated/floor/outdoors/ice, +/area/submap/cave/crashed_ufo_frigate) +"bi" = ( +/obj/structure/prop/alien/dispenser, +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo_frigate) +"bj" = ( +/obj/effect/decal/remains/xeno, +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo_frigate) +"bk" = ( +/mob/living/simple_mob/animal/space/alien, +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo_frigate) +"bl" = ( +/obj/effect/decal/remains/xeno, +/obj/item/clothing/under/psysuit, +/turf/simulated/floor/outdoors/ice, +/area/submap/cave/crashed_ufo_frigate) +"bm" = ( +/obj/structure/table/alien, +/obj/item/weapon/paper/alien, +/obj/item/weapon/paper/alien, +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo_frigate) +"bn" = ( +/obj/structure/foamedmetal, +/turf/simulated/shuttle/floor/alien, +/area/submap/cave/crashed_ufo_frigate) +"bo" = ( +/obj/machinery/porta_turret/alien{ + faction = "xeno" + }, +/turf/simulated/shuttle/floor/alien, +/area/submap/cave/crashed_ufo_frigate) +"bp" = ( +/obj/structure/foamedmetal, +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo_frigate) +"bq" = ( +/obj/machinery/implantchair, +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo_frigate) +"br" = ( +/obj/structure/prop/alien/computer{ + icon_state = "console-c"; + dir = 8 + }, +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo_frigate) +"bs" = ( +/obj/effect/alien/weeds/node, +/mob/living/simple_mob/animal/space/alien/sentinel/praetorian, +/turf/simulated/shuttle/floor/alien, +/area/submap/cave/crashed_ufo_frigate) +"bt" = ( +/obj/structure/loot_pile/maint/technical, +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo_frigate) +"bu" = ( +/obj/structure/loot_pile/surface/drone, +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo_frigate) +"bv" = ( +/obj/item/weapon/surgical/bone_clamp/alien, +/obj/structure/closet/alien, +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo_frigate) +"bw" = ( +/obj/structure/prop/alien/computer, +/turf/simulated/shuttle/floor/alien, +/area/submap/cave/crashed_ufo_frigate) +"bx" = ( +/obj/effect/decal/remains/xeno, +/obj/item/clothing/accessory/medal/dungeon/alien_ufo{ + desc = "It vaguely like a star. It looks like something an alien admiral might've worn. Probably."; + name = "alien admiral's medal" + }, +/obj/item/weapon/telecube/precursor/mated/zone, +/obj/item/clothing/head/helmet/alien/tank, +/turf/simulated/shuttle/floor/alien, +/area/submap/cave/crashed_ufo_frigate) +"by" = ( +/obj/structure/loot_pile/mecha/gygax/dark, +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo_frigate) +"bz" = ( +/obj/structure/mopbucket, +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo_frigate) +"bA" = ( +/obj/item/brokenbug, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/template_noop) +"bB" = ( +/mob/living/simple_mob/animal/space/alien/sentinel, +/turf/simulated/shuttle/floor/alien, +/area/submap/cave/crashed_ufo_frigate) +"bC" = ( +/obj/structure/prop/alien/computer/camera/flipped{ + icon_state = "camera_flipped"; + dir = 4 + }, +/turf/simulated/shuttle/floor/alien, +/area/submap/cave/crashed_ufo_frigate) +"bD" = ( +/obj/structure/prop/alien/computer/camera{ + icon_state = "camera"; + dir = 8 + }, +/turf/simulated/shuttle/floor/alien, +/area/submap/cave/crashed_ufo_frigate) +"bE" = ( +/obj/structure/loot_pile/maint/boxfort, +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo_frigate) +"bF" = ( +/obj/structure/prop/blackbox/xenofrigate, +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo_frigate) +"bG" = ( +/obj/random/outcrop, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/template_noop) +"bH" = ( +/obj/structure/loot_pile/maint/junk, +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo_frigate) +"bI" = ( +/obj/structure/table/alien, +/obj/structure/loot_pile/surface/alien/medical, +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo_frigate) +"bJ" = ( +/obj/structure/window/phoronreinforced{ + icon_state = "phoronrwindow"; + dir = 8 + }, +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo_frigate) +"bK" = ( +/obj/structure/table/alien, +/obj/item/prop/alien/junk, +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo_frigate) +"bL" = ( +/obj/structure/table/alien, +/obj/item/weapon/paper/alien{ + icon_state = "alienpaper_words"; + info = "\[i]This tablet has a large collection of symbols that you've never seen before outside this ship. You have no hope of figuring out what any of the mean...\[/i]" + }, +/obj/item/device/gps/internal/poi, +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo_frigate) +"bM" = ( +/obj/structure/window/phoronreinforced{ + dir = 4 + }, +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo_frigate) +"bN" = ( +/obj/structure/table/alien, +/obj/structure/window/phoronreinforced{ + dir = 4 + }, +/obj/item/weapon/paper/alien{ + icon_state = "alienpaper_words"; + info = "\[i]This tablet has a large collection of symbols that you've never seen before outside this ship. You have no hope of figuring out what any of the mean...\[/i]" + }, +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo_frigate) +"bO" = ( +/obj/structure/table/alien, +/turf/simulated/shuttle/floor/alien, +/area/submap/cave/crashed_ufo_frigate) +"bP" = ( +/obj/structure/table/alien, +/obj/item/weapon/weldingtool/alien, +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo_frigate) +"bQ" = ( +/obj/structure/table/alien, +/obj/structure/window/phoronreinforced{ + dir = 4 + }, +/obj/item/weapon/paper/alien{ + icon_state = "alienpaper_words"; + info = "\[i]This tablet has a large collection of symbols that you've never seen before outside this ship. You have no hope of figuring out what any of the mean...\[/i]" + }, +/turf/simulated/shuttle/floor/alien, +/area/submap/cave/crashed_ufo_frigate) +"bR" = ( +/obj/structure/table/alien, +/obj/structure/foamedmetal, +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo_frigate) +"bS" = ( +/obj/structure/closet/alien, +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo_frigate) +"bT" = ( +/obj/structure/window/phoronreinforced{ + icon_state = "phoronrwindow"; + dir = 8 + }, +/obj/structure/window/phoronreinforced, +/turf/simulated/shuttle/floor/alienplating, +/area/submap/cave/crashed_ufo_frigate) +"bU" = ( +/obj/structure/window/phoronreinforced, +/obj/structure/window/phoronreinforced{ + dir = 4 + }, +/turf/simulated/floor/outdoors/ice, +/area/submap/cave/crashed_ufo_frigate) +"bV" = ( +/obj/structure/table/alien, +/obj/structure/window/phoronreinforced, +/obj/item/weapon/paper/alien, +/turf/simulated/shuttle/floor/alien, +/area/submap/cave/crashed_ufo_frigate) +"bW" = ( +/obj/structure/table/alien, +/obj/structure/window/phoronreinforced{ + dir = 4 + }, +/obj/structure/window/phoronreinforced, +/turf/simulated/shuttle/floor/alien, +/area/submap/cave/crashed_ufo_frigate) +"bX" = ( +/mob/living/simple_mob/animal/space/alien, +/turf/simulated/shuttle/floor/alien, +/area/submap/cave/crashed_ufo_frigate) +"bY" = ( +/obj/structure/foamedmetal, +/obj/machinery/door/airlock/alien/locked, +/turf/simulated/floor/outdoors/ice, +/area/submap/cave/crashed_ufo_frigate) +"bZ" = ( +/obj/structure/foamedmetal, +/turf/simulated/floor/outdoors/ice, +/area/submap/cave/crashed_ufo_frigate) +"ca" = ( +/obj/structure/table/alien, +/obj/item/weapon/paper/alien{ + icon_state = "alienpaper_words"; + info = "\[i]This tablet has a large collection of symbols that you've never seen before outside this ship. You have no hope of figuring out what any of the mean...\[/i]" + }, +/turf/simulated/floor/outdoors/ice, +/area/submap/cave/crashed_ufo_frigate) +"cb" = ( +/obj/structure/prop/alien/power, +/obj/structure/foamedmetal, +/turf/simulated/floor/outdoors/ice, +/area/submap/cave/crashed_ufo_frigate) +"cc" = ( +/obj/structure/loot_pile/surface/alien/end, +/turf/simulated/floor/outdoors/ice, +/area/submap/cave/crashed_ufo_frigate) +"cd" = ( +/obj/item/prop/alien/junk, +/turf/simulated/floor/outdoors/ice, +/area/submap/cave/crashed_ufo_frigate) +"ce" = ( +/obj/random/tech_supply/component, +/turf/simulated/shuttle/floor/alien, +/area/submap/cave/crashed_ufo_frigate) +"cf" = ( +/obj/random/tech_supply/component, +/turf/simulated/floor/outdoors/ice, +/area/submap/cave/crashed_ufo_frigate) +"cg" = ( +/obj/machinery/door/airlock/alien/public, +/turf/simulated/shuttle/floor/alien, +/area/submap/cave/crashed_ufo_frigate) +"ch" = ( +/turf/simulated/shuttle/wall/alien/hard_corner, +/area/submap/cave/crashed_ufo_frigate) + +(1,1,1) = {" +aa +aa +ad +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ad +ad +ax +ax +aa +aa +aa +ax +ax +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(2,1,1) = {" +aa +aa +bG +ax +aa +aa +ad +ax +bG +ad +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +ad +bG +ax +aa +aa +ad +ad +ad +aa +aa +aa +aa +"} +(3,1,1) = {" +aa +ax +ad +ax +aa +ad +ad +ax +ax +aa +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +aa +aa +ad +ax +ax +aa +aa +ax +ad +ad +aa +aa +aa +"} +(4,1,1) = {" +ax +ax +ad +ad +ad +ad +ax +aa +aa +aa +aa +ab +ab +ab +ab +ab +aV +ac +ba +al +bh +al +al +ab +ab +ab +ab +ab +aa +aa +aa +aa +aa +aj +ax +ad +bG +aa +aa +"} +(5,1,1) = {" +bG +ad +ad +ad +bG +ad +aa +aa +aa +ab +ab +ab +aM +aF +aF +aF +ac +ap +ap +ap +al +bn +bn +aF +aF +aF +bI +ab +ab +ab +aa +aa +aa +aa +ax +ad +ax +aa +aa +"} +(6,1,1) = {" +aa +ax +ad +ad +ad +aa +aa +ab +ab +ab +ak +ab +aN +ac +ac +al +ap +ap +ap +ab +ab +bo +bn +bn +ap +ap +aF +aF +bI +ab +ab +ab +aa +aa +bG +ad +ax +ax +aa +"} +(7,1,1) = {" +aa +ax +ax +ad +aa +aa +ab +ab +ac +ac +ac +ab +ab +ak +al +al +ap +ap +ac +ab +bi +bp +bn +ap +bB +ap +ap +ap +bR +aF +bI +ab +ab +aa +aa +ad +ad +ax +aa +"} +(8,1,1) = {" +aa +bG +ax +aa +aa +ab +ab +ao +ac +ac +ac +aF +ab +ac +al +ap +ap +ap +al +ab +aw +ac +br +bv +ac +al +ap +bn +bn +ac +aF +ab +ab +ab +aa +aa +bG +ad +aa +"} +(9,1,1) = {" +aa +aa +aa +aa +ab +ab +ao +ac +al +aF +aK +aF +ab +ch +ap +ap +ap +ac +bb +ab +ab +ab +ab +ab +aY +al +bp +bn +ap +ap +ap +ch +bZ +ab +ab +aa +aa +ad +aa +"} +(10,1,1) = {" +aa +aa +aa +ab +ab +ao +ac +al +al +ap +ap +ap +al +au +al +ap +ac +ac +al +ab +bi +bi +bi +ab +ab +al +al +ac +ap +ap +ap +bY +bZ +cb +ab +ab +aa +aa +aa +"} +(11,1,1) = {" +aa +aa +ab +ab +ao +ac +ay +al +ap +ap +ap +al +al +ch +ab +ac +ac +ac +bc +ab +ap +ap +bs +aF +ab +al +al +ac +bS +bS +ap +ch +bn +bZ +bZ +ab +ab +aa +aa +"} +(12,1,1) = {" +aa +aa +ab +ac +ac +ac +ap +ap +ap +ac +ac +al +ac +ao +ab +ab +ak +ac +ac +ab +aF +bq +ap +aF +ab +ab +ab +ab +ab +ab +bS +ab +ap +ap +ap +aP +ab +aa +aa +"} +(13,1,1) = {" +aa +ab +ab +al +ac +ap +ap +ap +ac +ac +ac +ac +ac +ac +aT +ab +ab +ab +bd +ab +ab +ch +at +ch +ab +ab +ac +ag +al +ab +ab +ab +ac +ap +ap +ac +ab +ab +aa +"} +(14,1,1) = {" +aa +ab +ag +al +al +ap +ap +ah +aF +aF +ac +ac +ac +ac +al +al +ab +ab +ab +ab +ap +ap +ap +ap +ap +ap +al +al +al +al +al +ab +ab +al +cd +ap +ac +ab +aa +"} +(15,1,1) = {" +aa +ab +ah +ah +ap +ap +al +aD +ab +ab +ab +aJ +ab +ab +ab +aT +ab +ab +ac +ap +ap +al +al +al +ap +ap +ap +ap +ap +aR +ap +bf +ab +ab +al +ap +ap +ab +aa +"} +(16,1,1) = {" +ab +ab +ab +ah +ap +ap +al +ab +ab +aG +ab +ac +ab +ac +ab +ab +ab +aX +ac +ap +aR +al +ag +ab +ab +ab +bJ +bJ +bT +ap +ap +bO +aF +ab +al +al +ap +ab +ab +"} +(17,1,1) = {" +ab +ac +ab +ab +ch +at +ch +ab +aG +ac +aJ +ac +aO +aQ +ac +ab +ac +ac +ap +ap +bj +al +ab +ab +bC +ap +ap +bO +ap +ap +ap +ap +ah +ab +ab +al +ap +ak +ab +"} +(18,1,1) = {" +ab +ac +ac +am +al +al +az +ab +ab +aG +ab +ak +ab +ac +ab +ab +ac +aF +al +ap +bk +aF +ab +bw +ap +ap +bK +aF +aR +ap +ap +ap +al +cc +ab +ch +cg +ch +ab +"} +(19,1,1) = {" +ab +ac +ai +am +al +ap +ac +az +ab +ab +ab +ab +ab +ab +ab +ak +aW +aF +al +ap +ac +aF +ab +bx +ap +aR +bL +ap +ap +bX +ap +ap +ag +ab +ab +ap +ap +aH +ab +"} +(20,1,1) = {" +ab +af +ac +am +al +ap +aA +ab +ab +aH +aw +aL +aL +aL +ab +ab +aA +ah +al +ap +ac +aF +ab +bw +ap +ap +bf +bP +ap +al +ap +ap +ar +cc +ab +ch +cg +ch +ab +"} +(21,1,1) = {" +ab +ac +ab +ab +ch +au +ch +ab +aH +al +ac +ac +ac +ac +aw +ab +ac +al +ap +ap +ac +ac +ab +ab +bD +ap +ap +bO +al +al +ap +ap +ca +ab +ab +ce +ap +ak +ab +"} +(22,1,1) = {" +ab +ab +ab +ac +ap +ap +aA +ab +ab +al +ac +aL +aL +aL +ab +ab +ab +aY +ap +ap +ap +ac +ak +ab +ab +ab +bM +bM +bU +al +ap +bO +aF +ab +ac +ap +al +ab +ab +"} +(23,1,1) = {" +aa +ab +ac +ac +ap +ap +aB +ab +ab +aJ +ch +ab +ab +ab +ab +aU +ab +ab +ap +ap +ar +ap +ap +ap +ap +ap +ap +ap +ap +aR +ap +bf +ab +ab +ap +ap +al +ab +aa +"} +(24,1,1) = {" +aa +ab +ak +ac +aq +ap +ap +aw +ab +ac +ab +ab +ab +ab +aM +ac +ac +ab +ap +ap +bl +al +ap +ap +ap +ap +ap +ap +ap +ac +ac +ab +ab +ac +ap +al +al +ab +aa +"} +(25,1,1) = {" +aa +ab +ab +ac +ar +av +ap +ap +aI +ac +ac +ab +ab +ab +aF +aF +ac +ch +be +ch +ab +ab +ab +ab +ab +ab +ac +ak +ac +ab +ab +ab +ac +ap +ap +cf +ab +ab +aa +"} +(26,1,1) = {" +aa +aa +ab +ao +ac +al +aC +ap +ap +ac +aA +ac +ab +ak +ac +ac +ap +aR +ap +aF +bm +bf +bt +by +bE +ab +ab +ab +ab +ab +ac +ab +ap +ap +ap +aP +ab +aa +aa +"} +(27,1,1) = {" +aa +aa +ab +ab +as +ac +ac +aE +ap +ap +ap +ap +ch +ap +ap +ap +ap +ap +ac +ac +ac +ac +aA +ac +bF +ab +ac +ac +ac +ac +ap +ch +ap +ap +ac +ab +ab +aa +aa +"} +(28,1,1) = {" +aa +aa +aa +ab +ab +aw +ac +ac +aq +ap +ap +ap +at +aR +ap +ap +ap +ac +ac +bf +aF +bm +bu +bz +bH +ab +ak +ac +bV +ap +ap +at +ap +aP +ab +ab +aa +aa +bG +"} +(29,1,1) = {" +aa +aj +aa +aa +ab +ab +aw +ac +aA +ac +ac +ab +ch +ab +ab +at +ab +ab +aI +ab +ab +ab +ab +ab +ab +ab +bN +bQ +bW +ap +ap +ch +ac +ab +ab +aa +aa +ad +ad +"} +(30,1,1) = {" +aa +ax +ad +aa +aa +ab +ab +aB +ac +ac +ab +ab +aF +aS +ah +ac +av +ab +ab +ab +ac +ac +al +al +al +al +ap +ap +ap +ac +ac +ab +ab +ab +aa +aa +aa +ad +aa +"} +(31,1,1) = {" +aa +ad +ax +ad +aa +aa +ab +ab +ak +ab +ab +aI +al +al +al +ac +ab +ab +al +bg +ac +ap +ap +al +al +ap +ap +ap +ac +ak +ac +ab +ab +aa +aa +aa +ad +ax +aa +"} +(32,1,1) = {" +aa +aa +ad +bG +aa +aa +aa +ab +ab +ab +aI +ac +ac +ac +ac +ab +ab +aZ +al +ac +ap +ap +ap +ap +ap +ap +al +al +al +ab +ab +ab +aa +aa +aa +bG +ad +ax +aa +"} +(33,1,1) = {" +aa +aa +ad +ad +ad +aa +aa +aa +aa +ab +ab +ab +aP +aP +aP +ab +ac +ac +ac +ap +ap +ap +al +ac +ac +al +al +ab +ab +ab +aa +aa +aa +aa +ax +ad +ad +bG +aa +"} +(34,1,1) = {" +aa +ad +ax +ad +ad +ad +ax +ax +aj +aa +aa +ab +ab +ab +ab +ab +ac +ac +ap +ap +ap +al +al +ab +ab +ab +ab +ab +aa +aa +aa +aa +aa +ad +ax +ad +ad +aa +aa +"} +(35,1,1) = {" +aa +ax +ax +aa +ad +ad +ad +ad +ax +ax +aa +aa +aa +ad +ad +ab +ab +ab +ch +at +ch +ab +ab +ab +ad +ad +aa +aa +aa +aa +aa +aa +ad +ad +ad +ad +ad +aa +aa +"} +(36,1,1) = {" +aa +aj +aa +aa +ax +ad +ad +aa +aa +aa +aa +aa +aa +ax +ad +ad +ad +ad +aZ +ac +aZ +ad +ad +ad +ax +aa +aa +aa +aa +aa +aa +ad +ad +ad +ad +ax +ax +aa +aa +"} +(37,1,1) = {" +aa +aa +aa +aa +ax +ax +ad +aa +aa +aa +aa +aa +aa +aa +aa +ax +ax +ad +ad +ad +ad +ad +ad +ad +aa +aa +aa +aa +aa +aa +ad +bG +ad +ad +ad +ax +bG +aa +aa +"} +(38,1,1) = {" +aa +aa +aa +aa +ad +aj +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ad +bA +ad +ax +ax +aa +aa +aa +aa +aa +aa +aa +ad +ad +ad +aa +ad +ad +aa +aa +aa +"} +(39,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} diff --git a/maps/expedition_vr/beach/submaps/crashedcontainmentshuttle.dmm b/maps/expedition_vr/beach/submaps/crashedcontainmentshuttle.dmm new file mode 100644 index 0000000000..ddc3096293 --- /dev/null +++ b/maps/expedition_vr/beach/submaps/crashedcontainmentshuttle.dmm @@ -0,0 +1,1139 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/turf/template_noop, +/area/submap/crashedcontainmentshuttle) +"ab" = ( +/obj/structure/grille, +/obj/item/weapon/material/shard{ + icon_state = "medium" + }, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/crashedcontainmentshuttle) +"ac" = ( +/obj/random/landmine, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/crashedcontainmentshuttle) +"ad" = ( +/obj/structure/girder, +/turf/simulated/floor/plating, +/area/submap/crashedcontainmentshuttle) +"ae" = ( +/obj/item/weapon/material/shard{ + icon_state = "medium" + }, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/crashedcontainmentshuttle) +"af" = ( +/turf/simulated/shuttle/wall/dark/hard_corner, +/area/submap/crashedcontainmentshuttle) +"ag" = ( +/turf/simulated/shuttle/wall/dark, +/area/submap/crashedcontainmentshuttle) +"ah" = ( +/obj/structure/lattice, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/crashedcontainmentshuttle) +"ai" = ( +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/crashedcontainmentshuttle) +"aj" = ( +/obj/item/weapon/material/shard, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/crashedcontainmentshuttle) +"ak" = ( +/turf/simulated/shuttle/floor/black, +/area/submap/crashedcontainmentshuttle) +"al" = ( +/obj/item/stack/rods, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/crashedcontainmentshuttle) +"am" = ( +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/crashedcontainmentshuttle) +"an" = ( +/obj/item/stack/rods, +/turf/simulated/shuttle/floor/black, +/area/submap/crashedcontainmentshuttle) +"ao" = ( +/obj/structure/door_assembly/door_assembly_ext, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/crashedcontainmentshuttle) +"ap" = ( +/obj/structure/door_assembly/door_assembly_ext{ + anchored = 1 + }, +/turf/simulated/floor/plating, +/area/submap/crashedcontainmentshuttle) +"aq" = ( +/obj/structure/grille, +/obj/item/weapon/material/shard, +/turf/simulated/floor/plating, +/area/submap/crashedcontainmentshuttle) +"ar" = ( +/obj/structure/loot_pile/maint/technical, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/crashedcontainmentshuttle) +"as" = ( +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/obj/structure/lattice, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/crashedcontainmentshuttle) +"at" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 8 + }, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/crashedcontainmentshuttle) +"au" = ( +/obj/item/weapon/circuitboard/broken, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/crashedcontainmentshuttle) +"av" = ( +/turf/simulated/floor/plating, +/area/submap/crashedcontainmentshuttle) +"aw" = ( +/obj/structure/closet/crate{ + name = "landmines crate"; + opened = 1 + }, +/turf/simulated/shuttle/floor/black, +/area/submap/crashedcontainmentshuttle) +"ax" = ( +/obj/random/landmine, +/obj/random/landmine, +/turf/simulated/shuttle/floor/black, +/area/submap/crashedcontainmentshuttle) +"ay" = ( +/obj/effect/decal/mecha_wreckage/gygax{ + anchored = 1 + }, +/turf/simulated/shuttle/floor/black, +/area/submap/crashedcontainmentshuttle) +"az" = ( +/obj/structure/loot_pile/maint/technical, +/turf/simulated/shuttle/floor/black, +/area/submap/crashedcontainmentshuttle) +"aA" = ( +/obj/item/clothing/suit/space/cult, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/crashedcontainmentshuttle) +"aB" = ( +/obj/structure/shuttle/engine/heater{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 1e+006 + }, +/turf/template_noop, +/area/submap/crashedcontainmentshuttle) +"aC" = ( +/obj/effect/decal/remains/robot, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/crashedcontainmentshuttle) +"aD" = ( +/obj/random/landmine, +/turf/simulated/shuttle/floor/black, +/area/submap/crashedcontainmentshuttle) +"aE" = ( +/obj/effect/gibspawner/generic, +/turf/simulated/shuttle/floor/black, +/area/submap/crashedcontainmentshuttle) +"aF" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/simulated/shuttle/floor/black, +/area/submap/crashedcontainmentshuttle) +"aG" = ( +/obj/structure/table/steel_reinforced, +/turf/simulated/shuttle/floor/black, +/area/submap/crashedcontainmentshuttle) +"aH" = ( +/obj/random/landmine, +/turf/simulated/floor/plating, +/area/submap/crashedcontainmentshuttle) +"aI" = ( +/obj/effect/decal/remains/human, +/obj/effect/gibspawner/human, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/crashedcontainmentshuttle) +"aJ" = ( +/obj/item/clothing/head/helmet/space/cult, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/crashedcontainmentshuttle) +"aK" = ( +/obj/item/weapon/material/knife/ritual, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/crashedcontainmentshuttle) +"aL" = ( +/obj/structure/closet/medical_wall, +/turf/simulated/shuttle/wall/dark, +/area/submap/crashedcontainmentshuttle) +"aM" = ( +/turf/simulated/shuttle/floor/yellow, +/area/submap/crashedcontainmentshuttle) +"aN" = ( +/obj/structure/loot_pile/maint/technical, +/turf/simulated/shuttle/floor/yellow, +/area/submap/crashedcontainmentshuttle) +"aO" = ( +/obj/structure/door_assembly/door_assembly_highsecurity{ + anchored = 1 + }, +/turf/simulated/shuttle/floor/black, +/area/submap/crashedcontainmentshuttle) +"aP" = ( +/obj/structure/closet/walllocker/emerglocker/east, +/turf/simulated/shuttle/floor/black, +/area/submap/crashedcontainmentshuttle) +"aQ" = ( +/obj/effect/decal/remains/human, +/turf/simulated/shuttle/floor/yellow, +/area/submap/crashedcontainmentshuttle) +"aR" = ( +/obj/structure/grille, +/obj/item/weapon/material/shard{ + icon_state = "medium" + }, +/turf/simulated/floor/plating, +/area/submap/crashedcontainmentshuttle) +"aS" = ( +/obj/item/weapon/circuitboard/broken, +/obj/effect/decal/remains/human, +/obj/item/weapon/gun/energy/laser, +/turf/simulated/shuttle/floor/black, +/area/submap/crashedcontainmentshuttle) +"aT" = ( +/obj/item/device/gps/internal/poi, +/turf/simulated/shuttle/floor/red, +/area/submap/crashedcontainmentshuttle) +"aU" = ( +/turf/simulated/shuttle/floor/red, +/area/submap/crashedcontainmentshuttle) +"aV" = ( +/obj/random/landmine, +/turf/simulated/shuttle/floor/yellow, +/area/submap/crashedcontainmentshuttle) +"aW" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/turf/simulated/shuttle/floor/yellow, +/area/submap/crashedcontainmentshuttle) +"aX" = ( +/obj/structure/frame/computer, +/turf/simulated/shuttle/floor/yellow, +/area/submap/crashedcontainmentshuttle) +"aY" = ( +/obj/structure/frame, +/obj/item/weapon/circuitboard/broken, +/turf/simulated/shuttle/floor/black, +/area/submap/crashedcontainmentshuttle) +"aZ" = ( +/obj/effect/decal/cleanable/vomit, +/turf/simulated/shuttle/floor/black, +/area/submap/crashedcontainmentshuttle) +"ba" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/simulated/shuttle/floor/red, +/area/submap/crashedcontainmentshuttle) +"bb" = ( +/obj/item/weapon/material/knife/ritual, +/obj/effect/decal/cleanable/blood, +/turf/simulated/shuttle/floor/red, +/area/submap/crashedcontainmentshuttle) +"bc" = ( +/obj/item/weapon/circuitboard/broken, +/turf/simulated/shuttle/floor/black, +/area/submap/crashedcontainmentshuttle) +"bd" = ( +/obj/item/weapon/circuitboard/broken, +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/turf/simulated/shuttle/floor/yellow, +/area/submap/crashedcontainmentshuttle) +"be" = ( +/turf/simulated/shuttle/wall/dark/no_join, +/area/submap/crashedcontainmentshuttle) +"bf" = ( +/obj/effect/decal/remains/robot, +/turf/simulated/shuttle/floor/red, +/area/submap/crashedcontainmentshuttle) +"bg" = ( +/obj/effect/decal/cleanable/blood, +/obj/random/landmine, +/turf/simulated/shuttle/floor/red, +/area/submap/crashedcontainmentshuttle) +"bh" = ( +/obj/effect/decal/remains/human, +/obj/item/clothing/head/helmet/space/cult, +/obj/effect/decal/cleanable/blood, +/turf/simulated/shuttle/floor/red, +/area/submap/crashedcontainmentshuttle) +"bi" = ( +/obj/item/weapon/material/shard, +/turf/simulated/floor/plating, +/area/submap/crashedcontainmentshuttle) +"bj" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood/drip, +/turf/simulated/shuttle/floor/yellow, +/area/submap/crashedcontainmentshuttle) +"bk" = ( +/obj/machinery/computer, +/turf/simulated/shuttle/floor/yellow, +/area/submap/crashedcontainmentshuttle) +"bl" = ( +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/obj/item/stack/rods, +/turf/simulated/floor/plating, +/area/submap/crashedcontainmentshuttle) +"bm" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/effect/decal/remains/human, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/crashedcontainmentshuttle) +"bn" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood/drip, +/turf/simulated/shuttle/floor/black, +/area/submap/crashedcontainmentshuttle) +"bo" = ( +/obj/structure/extinguisher_cabinet, +/turf/simulated/shuttle/wall/dark, +/area/submap/crashedcontainmentshuttle) +"bp" = ( +/obj/item/stack/rods, +/turf/simulated/floor/plating, +/area/submap/crashedcontainmentshuttle) +"bq" = ( +/obj/structure/door_assembly, +/turf/simulated/shuttle/floor/white, +/area/submap/crashedcontainmentshuttle) +"br" = ( +/obj/structure/table/steel_reinforced, +/turf/simulated/shuttle/floor/yellow, +/area/submap/crashedcontainmentshuttle) +"bs" = ( +/obj/item/weapon/material/shard, +/turf/template_noop, +/area/submap/crashedcontainmentshuttle) +"bt" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood/drip, +/turf/simulated/shuttle/floor/white, +/area/submap/crashedcontainmentshuttle) +"bu" = ( +/obj/structure/loot_pile/maint/technical, +/turf/simulated/shuttle/floor/white, +/area/submap/crashedcontainmentshuttle) +"bv" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/simulated/shuttle/floor/white, +/area/submap/crashedcontainmentshuttle) +"bw" = ( +/obj/structure/closet/walllocker/emerglocker/north, +/obj/structure/frame, +/obj/item/weapon/circuitboard/broken, +/turf/simulated/shuttle/floor/white, +/area/submap/crashedcontainmentshuttle) +"bx" = ( +/obj/structure/ghost_pod/manual/lost_drone/dogborg, +/turf/simulated/shuttle/floor/black, +/area/submap/crashedcontainmentshuttle) +"by" = ( +/obj/structure/frame, +/turf/simulated/shuttle/floor/black, +/area/submap/crashedcontainmentshuttle) +"bz" = ( +/obj/item/frame/mirror, +/obj/item/weapon/material/shard{ + icon_state = "medium" + }, +/turf/simulated/shuttle/wall/dark, +/area/submap/crashedcontainmentshuttle) +"bA" = ( +/obj/structure/sink{ + icon_state = "sink"; + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood/drip, +/turf/simulated/shuttle/floor/white, +/area/submap/crashedcontainmentshuttle) +"bB" = ( +/turf/simulated/shuttle/floor/white, +/area/submap/crashedcontainmentshuttle) +"bC" = ( +/obj/effect/decal/cleanable/vomit, +/turf/simulated/shuttle/floor/white, +/area/submap/crashedcontainmentshuttle) +"bD" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/effect/gibspawner/generic, +/obj/effect/decal/remains/human, +/obj/item/weapon/card/id/syndicate{ + age = "\\42"; + blood_type = "\\O+"; + desc = "A strange ID card."; + dna_hash = "\[REDACTED]"; + fingerprint_hash = "\\------"; + name = "Aaron Presley's ID Card(Delivery Service) "; + registered_name = "Aaron Presley"; + sex = "\\Male" + }, +/turf/simulated/shuttle/floor/white, +/area/submap/crashedcontainmentshuttle) +"bE" = ( +/obj/structure/shuttle/engine/heater{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 1e+006 + }, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/crashedcontainmentshuttle) +"bF" = ( +/obj/structure/door_assembly/door_assembly_ext{ + anchored = 1 + }, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/crashedcontainmentshuttle) +"bG" = ( +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/obj/item/weapon/material/shard{ + icon_state = "medium" + }, +/obj/item/stack/rods, +/turf/simulated/floor/plating, +/area/submap/crashedcontainmentshuttle) +"bH" = ( +/obj/effect/gibspawner/generic, +/turf/template_noop, +/area/submap/crashedcontainmentshuttle) +"bI" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/turf/template_noop, +/area/submap/crashedcontainmentshuttle) +"bJ" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/template_noop, +/area/submap/crashedcontainmentshuttle) +"bK" = ( +/obj/structure/shuttle/engine/propulsion{ + icon_state = "burst_r" + }, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/crashedcontainmentshuttle) +"bL" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/obj/random/landmine, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/crashedcontainmentshuttle) +"bM" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/crashedcontainmentshuttle) +"bN" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/obj/effect/decal/remains/human, +/obj/item/weapon/flame/lighter/random, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/crashedcontainmentshuttle) +"bO" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/turf/simulated/shuttle/floor/black, +/area/submap/crashedcontainmentshuttle) + +(1,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +ag +ai +aa +ai +ai +ai +ak +ai +ai +aa +ag +aa +aa +aa +aa +aa +"} +(2,1,1) = {" +aa +aa +aa +aa +aa +am +at +aA +aa +aa +ak +ai +be +ai +ai +aa +ag +ai +aa +aa +au +bK +aa +aa +aa +"} +(3,1,1) = {" +aa +aa +aa +af +ag +aa +au +aa +aI +aa +at +ak +at +aa +ak +aa +aa +aa +au +aa +aa +aa +aa +ak +aa +"} +(4,1,1) = {" +aa +aa +aa +ag +aa +aa +aa +aB +aJ +aa +aB +aa +aB +aa +aa +aa +aa +ai +bE +aa +aa +bH +aa +ak +ak +"} +(5,1,1) = {" +aa +aa +aa +aa +aa +an +ak +ag +aK +ah +ag +ag +ag +aa +bp +aa +bs +ag +aa +ai +aa +aa +aa +aa +aa +"} +(6,1,1) = {" +aa +aa +aa +aa +ak +ao +av +aa +ah +ak +ak +aY +az +aa +ah +av +ah +bx +ag +ai +ag +ar +aa +aa +aa +"} +(7,1,1) = {" +aa +aa +aa +aa +aa +ap +aa +ak +ah +an +ak +ak +ak +bn +aD +ak +ak +ak +bF +aa +aa +aa +ak +aa +aa +"} +(8,1,1) = {" +aa +aa +ab +aa +aa +aq +ak +ak +ah +ak +ak +aZ +aF +aE +ak +ak +az +ak +ah +av +aa +aa +bc +ag +ai +"} +(9,1,1) = {" +aa +aa +aa +aa +aa +ag +ak +aC +ak +ak +aS +ak +ak +ak +ak +ai +ai +ak +av +aa +ak +aa +aa +ai +ai +"} +(10,1,1) = {" +aa +aa +aa +aa +aa +ag +ac +ah +ak +ak +ak +aF +aF +ak +ai +ai +ai +ak +bG +aa +aa +aa +aa +bO +aa +"} +(11,1,1) = {" +aa +aa +aa +aa +ac +ar +au +aD +ak +ag +ag +ag +ad +ad +ai +ai +aF +ak +ad +ah +aa +bL +bI +bI +aa +"} +(12,1,1) = {" +aa +aa +ac +aa +ah +as +aw +ax +aD +ag +aT +ba +bf +ag +ak +ak +ak +by +ad +ah +bI +bI +bM +bI +aa +"} +(13,1,1) = {" +aa +aa +ad +ah +ai +ag +ax +aD +ak +aO +aU +aU +bg +ag +ak +ag +aL +bz +ad +ai +aa +bJ +bN +bI +bI +"} +(14,1,1) = {" +aa +aa +aa +aa +ai +ag +ay +aE +ak +ag +aU +bb +bh +ag +ak +ad +bt +bA +ag +ai +bJ +aa +bI +aa +aa +"} +(15,1,1) = {" +aa +aa +aa +ai +ai +ad +ak +aF +an +ad +ag +ag +ad +bo +ak +ag +bu +bB +ag +ai +aa +bI +bI +ac +aa +"} +(16,1,1) = {" +aa +aa +aa +ai +ak +ad +ak +ak +ak +ak +ak +bc +ak +ak +ak +bq +bv +bC +aq +ah +aa +bH +aa +aa +aa +"} +(17,1,1) = {" +aa +aa +aa +aa +ai +ag +az +aG +aG +aP +ak +ak +aF +ak +ak +ag +bw +bD +ad +ai +aa +aa +aa +aa +aa +"} +(18,1,1) = {" +aa +aa +aa +aj +aa +af +ag +ag +aL +ag +ak +aO +bi +aR +ag +ag +ag +ad +af +ai +aa +aa +aa +aa +aa +"} +(19,1,1) = {" +aa +aa +aa +aa +aa +aa +af +ad +aM +aQ +aV +aV +aM +aM +aM +aN +ag +af +ai +aa +aa +aa +aa +aa +aa +"} +(20,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aH +aN +aM +aW +bd +bj +aW +aM +br +ag +ai +ai +aa +aa +aa +aa +aa +aa +"} +(21,1,1) = {" +aa +aa +ae +aa +al +aa +aa +aa +ad +aM +aX +aX +bk +aX +aM +ag +af +ai +aa +aa +aa +aa +aa +aa +aa +"} +(22,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aR +aq +av +bl +av +aR +ag +ai +aa +bH +aa +aa +aa +aa +aa +aa +"} +(23,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ah +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(24,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +al +aa +aa +aa +bm +ab +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(25,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} diff --git a/maps/expedition_vr/beach/submaps/crystal1.dmm b/maps/expedition_vr/beach/submaps/crystal1.dmm new file mode 100644 index 0000000000..6ccbd2e56e --- /dev/null +++ b/maps/expedition_vr/beach/submaps/crystal1.dmm @@ -0,0 +1,96 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/simulated/mineral/ignore_mapgen/cave, +/area/submap/cave/crystal1) +"b" = ( +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/crystal1) +"c" = ( +/obj/machinery/crystal, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/crystal1) +"d" = ( +/obj/item/weapon/ore/diamond, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/crystal1) + +(1,1,1) = {" +a +a +a +a +a +a +a +a +"} +(2,1,1) = {" +a +c +c +a +a +c +b +a +"} +(3,1,1) = {" +a +c +d +c +c +b +b +a +"} +(4,1,1) = {" +b +b +b +b +b +b +b +b +"} +(5,1,1) = {" +b +b +b +b +b +b +b +b +"} +(6,1,1) = {" +a +c +d +b +b +b +b +b +"} +(7,1,1) = {" +a +a +c +d +b +b +c +a +"} +(8,1,1) = {" +a +a +a +a +a +a +a +a +"} diff --git a/maps/expedition_vr/beach/submaps/crystal2.dmm b/maps/expedition_vr/beach/submaps/crystal2.dmm new file mode 100644 index 0000000000..d5ef5a4a00 --- /dev/null +++ b/maps/expedition_vr/beach/submaps/crystal2.dmm @@ -0,0 +1,271 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/simulated/mineral/ignore_mapgen/cave, +/area/submap/cave/crystal2) +"b" = ( +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/crystal2) +"c" = ( +/obj/machinery/crystal, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/crystal2) +"d" = ( +/obj/item/weapon/ore/diamond, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/crystal2) + +(1,1,1) = {" +a +a +a +a +a +a +b +b +a +a +a +a +a +a +a +"} +(2,1,1) = {" +a +a +a +a +a +a +b +b +a +a +a +a +a +a +a +"} +(3,1,1) = {" +a +a +a +a +a +c +b +b +b +a +a +c +c +a +a +"} +(4,1,1) = {" +a +a +a +a +a +b +b +b +b +b +b +b +c +a +a +"} +(5,1,1) = {" +a +a +a +a +c +b +b +b +b +b +b +b +a +a +a +"} +(6,1,1) = {" +a +a +c +b +b +b +d +b +c +c +b +b +b +b +b +"} +(7,1,1) = {" +a +a +b +b +b +b +b +c +a +a +c +b +b +b +b +"} +(8,1,1) = {" +b +b +b +b +b +b +a +a +a +a +a +b +b +d +b +"} +(9,1,1) = {" +b +b +b +b +b +b +c +a +a +c +c +b +b +b +b +"} +(10,1,1) = {" +b +b +b +b +d +b +b +c +c +b +b +b +a +a +a +"} +(11,1,1) = {" +a +a +c +b +b +b +b +b +b +b +b +b +a +a +a +"} +(12,1,1) = {" +a +a +a +c +b +b +b +b +b +b +b +c +a +a +a +"} +(13,1,1) = {" +a +a +a +a +a +c +b +b +d +b +c +a +a +a +a +"} +(14,1,1) = {" +a +a +a +a +a +a +c +b +b +b +a +a +a +a +a +"} +(15,1,1) = {" +a +a +a +a +a +a +a +b +b +b +a +a +a +a +a +"} diff --git a/maps/expedition_vr/beach/submaps/crystal3.dmm b/maps/expedition_vr/beach/submaps/crystal3.dmm new file mode 100644 index 0000000000..b8fad2723c --- /dev/null +++ b/maps/expedition_vr/beach/submaps/crystal3.dmm @@ -0,0 +1,399 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/simulated/mineral/ignore_mapgen/cave, +/area/submap/cave/crystal3) +"b" = ( +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/crystal3) +"c" = ( +/turf/template_noop, +/area/template_noop) +"d" = ( +/obj/machinery/crystal, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/crystal3) +"e" = ( +/obj/item/weapon/ore/diamond, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/crystal3) + +(1,1,1) = {" +a +a +a +b +b +b +b +b +b +b +b +b +b +b +b +b +c +c +"} +(2,1,1) = {" +a +a +a +b +b +b +b +b +b +b +b +b +b +b +b +b +c +c +"} +(3,1,1) = {" +a +a +b +b +b +b +b +b +b +b +b +b +b +b +b +b +c +c +"} +(4,1,1) = {" +a +a +b +b +d +a +a +a +a +a +a +a +a +d +b +b +a +a +"} +(5,1,1) = {" +a +a +b +b +a +a +a +a +a +a +a +a +a +a +d +b +b +a +"} +(6,1,1) = {" +a +b +b +b +a +a +a +a +d +d +d +a +a +a +a +b +b +a +"} +(7,1,1) = {" +a +b +b +a +a +a +a +d +b +b +b +d +a +a +a +b +b +a +"} +(8,1,1) = {" +b +b +b +a +a +a +d +e +b +d +b +e +d +a +a +b +b +a +"} +(9,1,1) = {" +b +b +b +a +a +a +d +b +d +e +d +b +d +a +a +b +b +b +"} +(10,1,1) = {" +b +b +b +a +a +a +d +b +e +e +d +b +d +a +a +b +b +b +"} +(11,1,1) = {" +a +b +b +a +a +a +a +d +d +d +b +b +d +a +a +b +b +b +"} +(12,1,1) = {" +a +b +b +d +a +a +a +a +b +b +b +b +b +a +a +b +b +b +"} +(13,1,1) = {" +a +b +b +b +a +a +b +d +b +b +b +d +a +a +a +b +b +a +"} +(14,1,1) = {" +a +a +b +b +a +a +b +b +b +d +b +b +a +a +d +b +b +a +"} +(15,1,1) = {" +a +a +b +b +b +b +d +b +b +b +b +b +d +a +b +b +a +a +"} +(16,1,1) = {" +c +a +a +b +b +b +b +b +b +b +b +b +b +b +b +b +a +c +"} +(17,1,1) = {" +c +c +a +b +b +b +b +b +b +b +b +b +b +b +b +b +a +c +"} +(18,1,1) = {" +c +c +a +a +a +a +a +a +a +d +b +b +b +b +a +a +a +c +"} +(19,1,1) = {" +c +c +c +c +c +c +c +c +a +a +b +b +b +a +a +a +a +c +"} diff --git a/maps/expedition_vr/beach/submaps/deadBeacon.dmm b/maps/expedition_vr/beach/submaps/deadBeacon.dmm new file mode 100644 index 0000000000..0b01461d31 --- /dev/null +++ b/maps/expedition_vr/beach/submaps/deadBeacon.dmm @@ -0,0 +1,656 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/template_noop, +/area/template_noop) +"b" = ( +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/deadBeacon) +"c" = ( +/obj/structure/loot_pile/maint/junk, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/deadBeacon) +"d" = ( +/turf/simulated/wall/r_wall, +/area/submap/cave/deadBeacon) +"e" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/submap/cave/deadBeacon) +"f" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/submap/cave/deadBeacon) +"g" = ( +/turf/simulated/floor/plating, +/area/submap/cave/deadBeacon) +"h" = ( +/turf/simulated/floor/plating{ + icon_state = "asteroidplating2" + }, +/area/submap/cave/deadBeacon) +"i" = ( +/obj/structure/grille/broken, +/turf/simulated/floor/plating, +/area/submap/cave/deadBeacon) +"j" = ( +/obj/structure/table/steel, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/cave/deadBeacon) +"k" = ( +/obj/structure/loot_pile/maint/technical, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/cave/deadBeacon) +"l" = ( +/obj/item/weapon/material/shard, +/turf/simulated/floor/plating, +/area/submap/cave/deadBeacon) +"m" = ( +/obj/structure/table/steel, +/obj/item/weapon/circuitboard/comm_server, +/obj/machinery/light{ + dir = 8; + status = 1 + }, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/cave/deadBeacon) +"n" = ( +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/cave/deadBeacon) +"o" = ( +/obj/item/weapon/paper/crumpled{ + info = "Sampatti Relay Sif-833
Decryption Key for 12-04-2488:
849B0022FBA920C244
Eyes Only.
The insider who knows all the secrets can bring down Lanka."; + name = "Dusty Note" + }, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/cave/deadBeacon) +"p" = ( +/obj/structure/door_assembly/door_assembly_ext, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/cave/deadBeacon) +"q" = ( +/obj/item/stack/rods, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/cave/deadBeacon) +"r" = ( +/obj/machinery/telecomms/relay{ + active_power_usage = 1; + broadcasting = 0; + panel_open = 1 + }, +/obj/structure/cable{ + icon_state = "0-2"; + pixel_y = 1; + d2 = 2 + }, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/cave/deadBeacon) +"s" = ( +/obj/machinery/telecomms/broadcaster{ + light_power = 0; + on = 0 + }, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/cave/deadBeacon) +"t" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/submap/cave/deadBeacon) +"u" = ( +/obj/machinery/telecomms/receiver{ + light_power = 0; + on = 0 + }, +/obj/structure/cable, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/cave/deadBeacon) +"v" = ( +/obj/item/weapon/circuitboard/broken, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/cave/deadBeacon) +"w" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/cave/deadBeacon) +"x" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/submap/cave/deadBeacon) +"y" = ( +/obj/effect/decal/remains/robot, +/obj/effect/decal/cleanable/blood/oil, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/cave/deadBeacon) +"z" = ( +/obj/item/stack/cable_coil{ + amount = 1 + }, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/cave/deadBeacon) +"A" = ( +/obj/item/weapon/circuitboard/broken, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/deadBeacon) +"B" = ( +/obj/structure/grille/broken, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/submap/cave/deadBeacon) +"C" = ( +/obj/structure/loot_pile/maint/junk, +/turf/simulated/floor/plating, +/area/submap/cave/deadBeacon) +"D" = ( +/obj/item/trash/cigbutt, +/obj/item/weapon/tool/wrench, +/obj/machinery/light, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/cave/deadBeacon) +"E" = ( +/obj/item/weapon/material/shard, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/cave/deadBeacon) +"F" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/cave/deadBeacon) +"G" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/submap/cave/deadBeacon) +"H" = ( +/obj/machinery/door/airlock/external, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/cave/deadBeacon) +"I" = ( +/obj/machinery/access_button/airlock_interior{ + dir = 4 + }, +/turf/simulated/wall/r_wall, +/area/submap/cave/deadBeacon) +"J" = ( +/obj/structure/grille/broken, +/obj/item/stack/rods, +/turf/simulated/floor/plating, +/area/submap/cave/deadBeacon) +"K" = ( +/obj/structure/girder, +/turf/simulated/floor/plating, +/area/submap/cave/deadBeacon) +"L" = ( +/obj/structure/sign/warning/secure_area, +/turf/simulated/wall/r_wall, +/area/submap/cave/deadBeacon) +"M" = ( +/obj/structure/sign/warning/high_voltage, +/turf/simulated/wall/r_wall, +/area/submap/cave/deadBeacon) + +(1,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(2,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(3,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(4,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(5,1,1) = {" +a +a +a +a +a +a +b +b +b +A +a +a +a +a +a +a +a +a +a +a +"} +(6,1,1) = {" +a +a +a +a +a +h +n +n +h +b +a +a +a +a +a +a +a +a +a +a +"} +(7,1,1) = {" +a +a +b +d +h +d +p +g +d +B +d +a +a +a +a +a +a +a +a +a +"} +(8,1,1) = {" +a +a +b +e +j +m +q +n +g +C +i +b +a +a +a +a +a +a +a +a +"} +(9,1,1) = {" +a +a +a +f +k +n +n +n +y +D +d +d +L +b +a +a +a +a +a +a +"} +(10,1,1) = {" +a +a +b +g +g +o +r +u +n +n +H +g +H +b +a +a +a +a +a +a +"} +(11,1,1) = {" +a +b +b +g +g +g +s +v +n +n +H +n +H +b +a +a +a +a +a +a +"} +(12,1,1) = {" +a +b +c +h +l +g +g +w +z +E +I +K +M +A +a +a +a +a +a +a +"} +(13,1,1) = {" +a +a +b +i +h +g +q +n +k +F +J +b +a +a +a +a +a +a +a +a +"} +(14,1,1) = {" +a +a +a +d +i +g +t +x +x +G +d +b +a +a +a +a +a +a +a +a +"} +(15,1,1) = {" +a +a +a +a +b +b +b +a +b +b +b +a +a +a +a +a +a +a +a +a +"} +(16,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(17,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(18,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(19,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(20,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} diff --git a/maps/expedition_vr/beach/submaps/deadly_rabbit_vr.dmm b/maps/expedition_vr/beach/submaps/deadly_rabbit_vr.dmm new file mode 100644 index 0000000000..e039d91233 --- /dev/null +++ b/maps/expedition_vr/beach/submaps/deadly_rabbit_vr.dmm @@ -0,0 +1,581 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/template_noop, +/area/template_noop) +"b" = ( +/obj/structure/loot_pile/surface/bones, +/obj/effect/decal/cleanable/blood, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/template_noop) +"e" = ( +/mob/living/simple_mob/vore/rabbit/killer, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/template_noop) +"g" = ( +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/template_noop) +"h" = ( +/turf/simulated/mineral/ignore_mapgen/cave, +/area/template_noop) +"m" = ( +/obj/item/weapon/bone/skull, +/obj/effect/decal/cleanable/blood, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/template_noop) +"n" = ( +/obj/item/clothing/suit/storage/hooded/knight/galahad, +/obj/effect/decal/cleanable/blood, +/obj/item/clothing/shoes/knight, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/template_noop) +"q" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/weapon/bone, +/obj/item/weapon/bone/skull, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/template_noop) +"r" = ( +/obj/item/weapon/bone, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/template_noop) +"s" = ( +/obj/item/weapon/bone/ribs, +/obj/effect/decal/cleanable/blood, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/template_noop) +"t" = ( +/obj/effect/gibspawner/human, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/template_noop) +"u" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/weapon/bone/skull, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/template_noop) +"v" = ( +/obj/item/weapon/grenade/explosive/frag, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/template_noop) +"y" = ( +/obj/item/weapon/bone, +/obj/item/weapon/bone/ribs, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/template_noop) +"A" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/weapon/bone, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/template_noop) +"C" = ( +/obj/item/clothing/suit/storage/hooded/knight/lancelot, +/obj/effect/decal/cleanable/blood, +/obj/item/clothing/shoes/knight, +/obj/item/clothing/shoes/knight/black, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/template_noop) +"E" = ( +/obj/item/clothing/suit/armor/combat/crusader/bedevere, +/obj/item/clothing/head/helmet/combat/bedevere, +/obj/effect/decal/cleanable/blood, +/obj/item/clothing/shoes/knight/black, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/template_noop) +"F" = ( +/obj/item/weapon/bone, +/obj/item/weapon/bone/skull, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/template_noop) +"I" = ( +/obj/item/clothing/suit/storage/hooded/knight/robin, +/obj/effect/decal/cleanable/blood/splatter, +/obj/item/clothing/shoes/knight, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/template_noop) +"J" = ( +/obj/effect/decal/cleanable/blood, +/obj/item/weapon/bone/ribs, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/template_noop) +"K" = ( +/obj/item/clothing/suit/armor/combat/crusader, +/obj/item/clothing/head/helmet/combat/crusader, +/obj/effect/decal/cleanable/blood, +/obj/item/clothing/shoes/knight, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/template_noop) +"L" = ( +/obj/structure/barricade/cutout/fukken_xeno, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/template_noop) +"P" = ( +/obj/item/weapon/bone/skull, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/template_noop) +"Q" = ( +/obj/item/weapon/bone, +/obj/structure/loot_pile/surface/bones, +/obj/effect/decal/cleanable/blood, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/template_noop) +"T" = ( +/obj/structure/barricade, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/template_noop) +"U" = ( +/obj/item/weapon/bone/ribs, +/obj/item/clothing/suit/storage/hooded/knight, +/obj/item/weapon/bone/skull, +/obj/effect/decal/cleanable/blood, +/obj/item/clothing/shoes/knight/black, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/template_noop) +"V" = ( +/obj/item/weapon/bone, +/obj/effect/decal/cleanable/blood, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/template_noop) +"Y" = ( +/obj/effect/decal/cleanable/blood, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/template_noop) + +(1,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(2,1,1) = {" +a +a +a +a +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +"} +(3,1,1) = {" +h +h +h +h +h +h +h +h +h +h +h +h +h +h +g +a +a +a +a +a +"} +(4,1,1) = {" +h +h +h +h +h +h +h +h +h +h +h +h +h +h +b +g +a +a +a +a +"} +(5,1,1) = {" +h +h +h +h +g +g +m +g +g +g +g +h +h +h +h +h +h +m +g +g +"} +(6,1,1) = {" +h +h +h +g +g +s +I +t +g +n +m +h +h +h +h +h +h +q +u +g +"} +(7,1,1) = {" +h +h +h +g +g +g +V +g +g +t +g +g +g +g +g +g +T +T +A +g +"} +(8,1,1) = {" +h +h +h +g +g +g +g +g +U +g +g +g +g +g +g +g +T +h +F +g +"} +(9,1,1) = {" +h +h +h +g +g +g +g +g +g +g +g +b +h +h +v +g +h +h +h +Q +"} +(10,1,1) = {" +h +h +h +g +g +h +h +g +g +g +h +h +h +h +h +h +h +h +h +h +"} +(11,1,1) = {" +h +h +h +e +g +h +h +g +g +V +h +h +h +h +h +h +h +h +h +h +"} +(12,1,1) = {" +h +h +h +g +g +g +g +g +g +g +g +g +h +h +v +T +h +h +h +r +"} +(13,1,1) = {" +h +h +h +t +g +g +m +g +g +g +g +g +g +g +g +T +Y +h +P +g +"} +(14,1,1) = {" +h +h +h +m +E +t +K +g +g +g +g +g +g +g +V +T +T +J +r +r +"} +(15,1,1) = {" +h +h +h +g +g +g +g +g +C +g +g +h +h +h +h +h +h +b +y +P +"} +(16,1,1) = {" +h +h +h +h +g +b +g +t +m +g +g +h +h +h +h +h +h +m +r +r +"} +(17,1,1) = {" +h +h +h +h +h +h +h +h +h +h +h +h +h +h +L +g +a +a +a +a +"} +(18,1,1) = {" +h +h +h +h +h +h +h +h +h +h +h +h +h +h +g +a +a +a +a +a +"} +(19,1,1) = {" +a +a +a +a +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +"} +(20,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} diff --git a/maps/expedition_vr/beach/submaps/deadspy.dmm b/maps/expedition_vr/beach/submaps/deadspy.dmm new file mode 100644 index 0000000000..e362c401e6 --- /dev/null +++ b/maps/expedition_vr/beach/submaps/deadspy.dmm @@ -0,0 +1,181 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/obj/effect/decal/remains/xeno, +/obj/item/clothing/mask/gas, +/obj/item/clothing/suit/fire/firefighter, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/deadspy) +"b" = ( +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/deadspy) +"c" = ( +/obj/effect/decal/cleanable/liquid_fuel/flamethrower_fuel, +/obj/effect/decal/cleanable/molten_item, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/deadspy) +"d" = ( +/obj/item/weapon/flamethrower, +/obj/effect/decal/cleanable/liquid_fuel/flamethrower_fuel, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/deadspy) +"e" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/obj/effect/decal/cleanable/liquid_fuel/flamethrower_fuel, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/deadspy) +"f" = ( +/obj/effect/decal/cleanable/liquid_fuel/flamethrower_fuel, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/deadspy) +"g" = ( +/obj/effect/decal/cleanable/liquid_fuel/flamethrower_fuel, +/obj/effect/decal/cleanable/ash, +/obj/random/landmine, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/deadspy) +"h" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/obj/random/landmine, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/deadspy) +"i" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/obj/effect/decal/cleanable/molten_item, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/deadspy) +"j" = ( +/obj/item/weapon/material/butterfly, +/obj/effect/decal/cleanable/liquid_fuel, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/deadspy) +"k" = ( +/obj/effect/decal/remains/human, +/obj/item/weapon/tool/wrench, +/obj/item/clothing/head/hardhat, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/deadspy) +"l" = ( +/obj/item/weapon/flame/lighter/zippo, +/obj/effect/decal/cleanable/liquid_fuel, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/deadspy) +"m" = ( +/obj/effect/decal/remains/human, +/obj/item/clothing/mask/balaclava, +/obj/item/clothing/under/suit_jacket/really_black, +/obj/effect/decal/cleanable/ash, +/obj/effect/decal/cleanable/liquid_fuel, +/obj/effect/decal/cleanable/ash, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/deadspy) +"n" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/obj/effect/decal/cleanable/liquid_fuel, +/obj/effect/decal/cleanable/ash, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/deadspy) +"o" = ( +/obj/machinery/porta_turret/poi{ + desc = "Looking at this heavy caliber, tripod-mounted, little ol' number makes you want to square-dance."; + lethal = 0; + name = "sentry turret" + }, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/deadspy) +"p" = ( +/obj/item/weapon/deadringer, +/obj/effect/decal/cleanable/liquid_fuel, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/deadspy) +"q" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/obj/effect/decal/cleanable/liquid_fuel, +/obj/random/landmine, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/deadspy) +"r" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/obj/item/weapon/storage/fancy/cigarettes/professionals, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/deadspy) +"s" = ( +/obj/item/weapon/card/emag_broken, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/deadspy) +"t" = ( +/obj/effect/decal/cleanable/liquid_fuel/flamethrower_fuel, +/obj/random/landmine, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/deadspy) +"u" = ( +/obj/effect/decal/cleanable/liquid_fuel/flamethrower_fuel, +/obj/effect/decal/cleanable/ash, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/deadspy) +"v" = ( +/turf/simulated/mineral/cave, +/area/submap/deadspy) + +(1,1,1) = {" +a +b +b +b +v +v +v +"} +(2,1,1) = {" +b +c +f +f +f +t +v +"} +(3,1,1) = {" +b +d +h +l +p +f +b +"} +(4,1,1) = {" +b +e +i +m +q +u +b +"} +(5,1,1) = {" +b +f +j +n +r +f +b +"} +(6,1,1) = {" +v +g +f +f +f +f +v +"} +(7,1,1) = {" +v +b +k +o +s +b +b +"} diff --git a/maps/expedition_vr/beach/submaps/digsite.dmm b/maps/expedition_vr/beach/submaps/digsite.dmm new file mode 100644 index 0000000000..1ec8bcde48 --- /dev/null +++ b/maps/expedition_vr/beach/submaps/digsite.dmm @@ -0,0 +1,618 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/template_noop, +/area/template_noop) +"b" = ( +/turf/simulated/mineral/ignore_mapgen/cave, +/area/submap/cave/digsite) +"c" = ( +/turf/simulated/wall/sandstone, +/area/submap/cave/digsite) +"d" = ( +/obj/structure/boulder, +/turf/simulated/floor/plating/external, +/area/submap/cave/digsite) +"e" = ( +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/digsite) +"f" = ( +/turf/simulated/floor/tiled/kafel_full/yellow, +/area/submap/cave/digsite) +"g" = ( +/turf/simulated/floor/plating/external, +/area/submap/cave/digsite) +"h" = ( +/obj/item/weapon/ore, +/turf/simulated/floor/plating/external, +/area/submap/cave/digsite) +"i" = ( +/obj/structure/bed/alien, +/turf/simulated/floor/tiled/kafel_full/yellow, +/area/submap/cave/digsite) +"j" = ( +/obj/structure/cult/talisman, +/turf/simulated/floor/tiled/kafel_full/yellow, +/area/submap/cave/digsite) +"k" = ( +/obj/machinery/artifact, +/obj/structure/anomaly_container, +/turf/simulated/floor/tiled/kafel_full/yellow, +/area/submap/cave/digsite) +"l" = ( +/obj/structure/simple_door/sandstone, +/turf/simulated/floor/tiled/kafel_full/yellow, +/area/submap/cave/digsite) +"m" = ( +/obj/structure/loot_pile/surface/alien, +/turf/simulated/floor/tiled/kafel_full/yellow, +/area/submap/cave/digsite) +"n" = ( +/mob/living/simple_mob/animal/passive/tindalos, +/turf/simulated/floor/tiled/kafel_full/yellow, +/area/submap/cave/digsite) +"o" = ( +/obj/structure/closet/crate/secure/loot, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/digsite) +"p" = ( +/obj/item/weapon/ore, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/digsite) +"q" = ( +/obj/effect/floor_decal/asteroid, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/digsite) +"r" = ( +/obj/structure/anomaly_container, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/digsite) +"s" = ( +/turf/simulated/wall, +/area/submap/cave/digsite) +"t" = ( +/obj/item/frame/apc, +/obj/item/weapon/module/power_control, +/turf/simulated/floor/plating/external, +/area/submap/cave/digsite) +"u" = ( +/obj/structure/table/steel, +/obj/machinery/cell_charger, +/obj/random/powercell, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/digsite) +"v" = ( +/obj/structure/table/steel, +/obj/item/weapon/storage/excavation, +/obj/item/device/measuring_tape, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/digsite) +"w" = ( +/obj/machinery/power/port_gen/pacman/super, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating/external, +/area/submap/cave/digsite) +"x" = ( +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating/external, +/area/submap/cave/digsite) +"y" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/digsite) +"z" = ( +/obj/structure/table/steel, +/obj/item/weapon/folder, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/digsite) +"A" = ( +/obj/structure/table/rack, +/obj/item/weapon/pickaxe, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/digsite) +"B" = ( +/obj/item/mecha_parts/mecha_equipment/tool/drill/diamonddrill, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/digsite) +"C" = ( +/obj/structure/loot_pile/maint/technical, +/turf/simulated/floor/plating/external, +/area/submap/cave/digsite) +"D" = ( +/obj/structure/table/steel, +/obj/random/tech_supply, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/digsite) +"E" = ( +/obj/structure/table/rack, +/obj/item/weapon/shovel, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/digsite) +"F" = ( +/obj/structure/boulder, +/obj/effect/decal/mecha_wreckage/ripley, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/digsite) +"G" = ( +/obj/structure/boulder, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/digsite) +"H" = ( +/obj/structure/loot_pile/maint/junk, +/turf/simulated/floor/plating/external, +/area/submap/cave/digsite) +"I" = ( +/obj/structure/table/steel, +/obj/item/weapon/tool/wrench, +/obj/item/weapon/storage/box/samplebags, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/digsite) +"J" = ( +/obj/structure/table/steel, +/obj/item/stack/flag/yellow, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/digsite) +"K" = ( +/obj/random/toolbox, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/digsite) +"L" = ( +/obj/structure/closet/crate, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/digsite) +"M" = ( +/obj/machinery/floodlight, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/digsite) +"N" = ( +/obj/structure/ore_box, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/digsite) + +(1,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(2,1,1) = {" +a +a +a +b +b +b +b +b +b +b +b +b +b +b +b +b +e +a +a +a +"} +(3,1,1) = {" +a +a +b +c +c +c +c +c +b +b +b +b +b +b +b +e +e +e +a +a +"} +(4,1,1) = {" +a +b +c +c +f +f +f +c +c +b +b +b +b +b +b +e +e +e +a +a +"} +(5,1,1) = {" +a +b +c +f +f +k +f +f +c +b +b +b +b +b +b +G +K +e +a +a +"} +(6,1,1) = {" +a +b +c +f +f +f +f +f +c +b +b +b +s +w +C +H +e +e +e +a +"} +(7,1,1) = {" +a +b +c +c +c +l +c +c +c +o +b +b +t +x +g +g +e +e +e +a +"} +(8,1,1) = {" +a +b +c +f +f +f +f +f +c +e +e +p +e +e +e +e +e +e +e +a +"} +(9,1,1) = {" +a +b +c +f +f +f +f +f +l +f +e +e +e +y +y +q +e +e +e +a +"} +(10,1,1) = {" +a +b +c +f +j +g +f +f +c +f +e +e +u +z +D +I +L +e +e +a +"} +(11,1,1) = {" +a +b +c +g +g +g +f +f +c +f +e +e +v +A +E +J +M +e +e +a +"} +(12,1,1) = {" +a +b +d +h +g +f +f +f +f +f +e +e +e +e +e +e +e +e +e +a +"} +(13,1,1) = {" +a +b +c +g +f +f +f +f +h +e +e +e +e +q +e +e +e +e +e +a +"} +(14,1,1) = {" +a +b +c +c +c +f +g +g +c +p +e +q +e +e +e +e +e +e +e +a +"} +(15,1,1) = {" +a +b +c +f +f +f +f +n +c +q +e +e +e +B +e +q +N +N +e +a +"} +(16,1,1) = {" +a +b +c +i +f +f +f +f +g +e +e +r +r +b +F +b +b +e +e +a +"} +(17,1,1) = {" +a +b +c +c +f +m +f +c +g +e +e +e +b +b +b +b +b +e +e +a +"} +(18,1,1) = {" +a +b +e +c +c +c +c +c +e +e +e +e +e +b +b +b +e +e +a +a +"} +(19,1,1) = {" +a +a +e +e +e +e +e +e +e +e +e +e +e +e +b +b +a +a +a +a +"} +(20,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} diff --git a/maps/expedition_vr/beach/submaps/excavation1.dmm b/maps/expedition_vr/beach/submaps/excavation1.dmm new file mode 100644 index 0000000000..84484ccd57 --- /dev/null +++ b/maps/expedition_vr/beach/submaps/excavation1.dmm @@ -0,0 +1,361 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/simulated/mineral/cave, +/area/template_noop) +"b" = ( +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/template_noop) +"c" = ( +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/Excavation) +"d" = ( +/obj/structure/cliff/automatic{ + icon_state = "cliffbuilder"; + dir = 9 + }, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/Excavation) +"e" = ( +/obj/structure/cliff/automatic, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/Excavation) +"f" = ( +/obj/structure/cliff/automatic{ + icon_state = "cliffbuilder"; + dir = 5 + }, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/Excavation) +"g" = ( +/obj/structure/cliff/automatic/corner{ + icon_state = "cliffbuilder-corner"; + dir = 9 + }, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/Excavation) +"h" = ( +/obj/random/outcrop, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/Excavation) +"i" = ( +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/Excavation) +"j" = ( +/obj/structure/cliff/automatic/corner, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/Excavation) +"k" = ( +/obj/mecha/working/ripley, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/Excavation) +"l" = ( +/obj/structure/cliff/automatic{ + icon_state = "cliffbuilder"; + dir = 8 + }, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/Excavation) +"m" = ( +/obj/structure/table/sifwoodentable, +/obj/item/mecha_parts/mecha_equipment/tool/drill/bore, +/obj/item/weapon/ore/marble, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/Excavation) +"n" = ( +/obj/item/weapon/ore, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/Excavation) +"o" = ( +/obj/structure/table/sifwoodentable, +/obj/item/mecha_parts/mecha_equipment/hardpoint_actuator, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/Excavation) +"p" = ( +/obj/structure/cliff/automatic{ + icon_state = "cliffbuilder"; + dir = 4 + }, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/Excavation) +"q" = ( +/obj/structure/table/sifwoodentable, +/obj/item/mecha_parts/mecha_equipment/anticcw_armor_booster, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/Excavation) +"r" = ( +/obj/structure/table/sifwoodentable, +/obj/item/mecha_parts/mecha_equipment/weapon/energy/laser/heavy/rigged, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/Excavation) +"s" = ( +/obj/item/weapon/ore/marble, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/Excavation) +"t" = ( +/obj/item/weapon/ore/gold, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/Excavation) +"u" = ( +/obj/item/weapon/ore/diamond, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/Excavation) +"v" = ( +/mob/living/simple_mob/mechanical/mining_drone, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/Excavation) +"w" = ( +/obj/structure/table/sifwoodentable, +/obj/item/weapon/pickaxe/jackhammer, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/Excavation) +"x" = ( +/obj/structure/table/sifwoodentable, +/obj/random/projectile/scrapped_grenadelauncher, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/Excavation) +"y" = ( +/obj/structure/table/sifwoodentable, +/obj/random/medical/pillbottle, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/Excavation) +"z" = ( +/obj/structure/table/sifwoodentable, +/obj/item/weapon/grenade/chem_grenade/metalfoam, +/obj/item/weapon/grenade/chem_grenade/metalfoam, +/obj/item/weapon/grenade/chem_grenade/metalfoam, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/Excavation) +"A" = ( +/obj/structure/table/sifwoodentable, +/obj/item/weapon/mining_scanner, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/Excavation) +"B" = ( +/obj/structure/table/sifwoodentable, +/obj/random/cigarettes, +/obj/random/tool/powermaint, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/Excavation) +"C" = ( +/obj/structure/cliff/automatic{ + icon_state = "cliffbuilder"; + dir = 10 + }, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/Excavation) +"D" = ( +/obj/structure/cliff/automatic{ + icon_state = "cliffbuilder"; + dir = 2 + }, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/Excavation) +"E" = ( +/obj/structure/cliff/automatic/corner{ + icon_state = "cliffbuilder-corner"; + dir = 10 + }, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/Excavation) +"F" = ( +/obj/structure/cliff/automatic/corner{ + icon_state = "cliffbuilder-corner"; + dir = 6 + }, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/Excavation) +"G" = ( +/obj/structure/cliff/automatic{ + icon_state = "cliffbuilder"; + dir = 6 + }, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/Excavation) + +(1,1,1) = {" +a +a +b +b +b +b +b +b +b +b +b +b +b +a +a +"} +(2,1,1) = {" +a +c +c +d +l +l +l +l +l +l +l +l +l +C +a +"} +(3,1,1) = {" +b +c +d +g +i +h +i +h +i +h +h +i +i +D +b +"} +(4,1,1) = {" +b +d +g +h +i +i +n +t +v +w +y +A +i +E +b +"} +(5,1,1) = {" +b +e +h +i +m +q +i +i +i +i +n +i +s +n +b +"} +(6,1,1) = {" +b +e +h +k +n +i +i +u +i +n +i +n +i +i +b +"} +(7,1,1) = {" +b +e +i +i +o +r +s +i +n +i +t +i +n +i +b +"} +(8,1,1) = {" +b +f +j +h +i +i +n +i +v +x +z +B +i +F +b +"} +(9,1,1) = {" +b +c +f +j +i +h +h +i +h +i +h +h +h +D +b +"} +(10,1,1) = {" +a +c +c +f +p +p +p +p +p +p +p +p +p +G +a +"} +(11,1,1) = {" +a +a +b +b +b +b +b +b +b +b +b +b +b +a +a +"} diff --git a/maps/expedition_vr/beach/submaps/lava_trench.dmm b/maps/expedition_vr/beach/submaps/lava_trench.dmm new file mode 100644 index 0000000000..e9c6006d15 --- /dev/null +++ b/maps/expedition_vr/beach/submaps/lava_trench.dmm @@ -0,0 +1,2240 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/turf/template_noop, +/area/template_noop) +"ab" = ( +/obj/structure/cliff/automatic{ + icon_state = "cliffbuilder"; + dir = 9 + }, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/lava_trench) +"ac" = ( +/obj/structure/cliff/automatic, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/lava_trench) +"ad" = ( +/obj/structure/cliff/automatic{ + icon_state = "cliffbuilder"; + dir = 5 + }, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/lava_trench) +"ae" = ( +/obj/structure/cliff/automatic/corner{ + icon_state = "cliffbuilder-corner"; + dir = 9 + }, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/lava_trench) +"af" = ( +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/lava_trench) +"ag" = ( +/obj/structure/cliff/automatic/corner, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/lava_trench) +"ah" = ( +/obj/structure/fence/end{ + icon_state = "end"; + dir = 4 + }, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/lava_trench) +"ai" = ( +/obj/structure/fence/post{ + icon_state = "post"; + dir = 4 + }, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/lava_trench) +"aj" = ( +/obj/structure/fence/door/opened, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/lava_trench) +"ak" = ( +/obj/structure/fence/end{ + icon_state = "end"; + dir = 8 + }, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/lava_trench) +"al" = ( +/obj/structure/cliff/automatic{ + icon_state = "cliffbuilder"; + dir = 8 + }, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/lava_trench) +"am" = ( +/obj/structure/fence/end{ + icon_state = "end"; + dir = 1 + }, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/lava_trench) +"an" = ( +/obj/structure/cliff/automatic{ + icon_state = "cliffbuilder"; + dir = 9 + }, +/turf/simulated/floor/lava, +/area/submap/lava_trench) +"ao" = ( +/obj/structure/cliff/automatic, +/turf/simulated/floor/lava, +/area/submap/lava_trench) +"ap" = ( +/obj/structure/cliff/automatic{ + icon_state = "cliffbuilder"; + dir = 5 + }, +/turf/simulated/floor/lava, +/area/submap/lava_trench) +"aq" = ( +/obj/structure/sign/warning/lava, +/turf/simulated/wall, +/area/submap/lava_trench) +"ar" = ( +/obj/structure/fence/post, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/lava_trench) +"as" = ( +/obj/structure/cliff/automatic{ + icon_state = "cliffbuilder"; + dir = 6 + }, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/lava_trench) +"at" = ( +/obj/structure/cliff/automatic/corner{ + icon_state = "cliffbuilder-corner"; + dir = 9 + }, +/turf/simulated/floor/lava, +/area/submap/lava_trench) +"au" = ( +/turf/simulated/floor/lava, +/area/submap/lava_trench) +"av" = ( +/obj/structure/cliff/automatic/corner, +/turf/simulated/floor/lava, +/area/submap/lava_trench) +"aw" = ( +/obj/structure/railing{ + icon_state = "railing0"; + dir = 4 + }, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/lava_trench) +"ax" = ( +/obj/structure/catwalk, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/lava_trench) +"ay" = ( +/obj/structure/railing{ + icon_state = "railing0"; + dir = 8 + }, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/lava_trench) +"az" = ( +/obj/structure/fence/door/opened{ + icon_state = "door_opened"; + dir = 8 + }, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/lava_trench) +"aA" = ( +/obj/structure/cliff/automatic{ + icon_state = "cliffbuilder"; + dir = 8 + }, +/turf/simulated/floor/lava, +/area/submap/lava_trench) +"aB" = ( +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/template_noop) +"aC" = ( +/turf/simulated/floor/outdoors/rocks/caves, +/area/template_noop) +"aD" = ( +/obj/structure/cliff/automatic, +/obj/structure/railing{ + icon_state = "railing0"; + dir = 4 + }, +/turf/simulated/floor/lava, +/area/submap/lava_trench) +"aE" = ( +/obj/structure/cliff/automatic, +/obj/structure/railing{ + icon_state = "railing0"; + dir = 8 + }, +/turf/simulated/floor/lava, +/area/submap/lava_trench) +"aF" = ( +/obj/structure/cliff/automatic{ + icon_state = "cliffbuilder"; + dir = 10 + }, +/turf/simulated/floor/lava, +/area/submap/lava_trench) +"aG" = ( +/obj/structure/cliff/automatic/corner{ + icon_state = "cliffbuilder-corner"; + dir = 10 + }, +/turf/simulated/floor/lava, +/area/submap/lava_trench) +"aH" = ( +/obj/structure/railing{ + icon_state = "railing0"; + dir = 4 + }, +/obj/effect/step_trigger/teleporter/offset/east, +/turf/simulated/floor/lava, +/area/submap/lava_trench) +"aI" = ( +/obj/structure/catwalk, +/turf/simulated/floor/lava, +/area/submap/lava_trench) +"aJ" = ( +/obj/structure/ore_box, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/lava_trench) +"aK" = ( +/obj/structure/railing{ + icon_state = "railing0"; + dir = 8 + }, +/obj/effect/step_trigger/teleporter/offset/west, +/turf/simulated/floor/lava, +/area/submap/lava_trench) +"aL" = ( +/obj/structure/cliff/automatic{ + icon_state = "cliffbuilder"; + dir = 4 + }, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/lava_trench) +"aM" = ( +/obj/machinery/light/small/flicker{ + icon_state = "bulb1"; + dir = 4 + }, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/lava_trench) +"aN" = ( +/obj/machinery/door/airlock/hatch{ + normalspeed = 0; + safe = 0 + }, +/obj/effect/map_effect/interval/effect_emitter/sparks, +/turf/simulated/floor/tiled/old_tile, +/area/submap/lava_trench/outpost) +"aO" = ( +/turf/simulated/wall/rshull, +/area/submap/lava_trench/outpost) +"aQ" = ( +/turf/simulated/floor/tiled/old_tile, +/area/submap/lava_trench/outpost) +"aR" = ( +/obj/effect/floor_decal/corner_oldtile/blue/full{ + icon_state = "corner_oldtile_full"; + dir = 8 + }, +/obj/machinery/microscope, +/obj/structure/table/standard, +/turf/simulated/floor/tiled/old_tile, +/area/submap/lava_trench/outpost) +"aS" = ( +/obj/effect/floor_decal/corner_oldtile/blue/full{ + icon_state = "corner_oldtile_full"; + dir = 8 + }, +/obj/structure/table/standard, +/obj/random/unidentified_medicine/scientific, +/turf/simulated/floor/tiled/old_tile, +/area/submap/lava_trench/outpost) +"aT" = ( +/obj/structure/fence/end, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/lava_trench) +"aU" = ( +/obj/structure/cliff/automatic{ + icon_state = "cliffbuilder"; + dir = 2 + }, +/turf/simulated/floor/lava, +/area/submap/lava_trench) +"aV" = ( +/obj/structure/cliff/automatic{ + icon_state = "cliffbuilder"; + dir = 10 + }, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/lava_trench) +"aW" = ( +/obj/structure/cliff/automatic/corner{ + icon_state = "cliffbuilder-corner"; + dir = 10 + }, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/lava_trench) +"aX" = ( +/obj/structure/cliff/automatic/corner{ + icon_state = "cliffbuilder-corner"; + dir = 6 + }, +/turf/simulated/floor/lava, +/area/submap/lava_trench) +"aY" = ( +/obj/structure/cliff/automatic{ + icon_state = "cliffbuilder"; + dir = 2 + }, +/obj/structure/railing{ + icon_state = "railing0"; + dir = 4 + }, +/turf/simulated/floor/lava, +/area/submap/lava_trench) +"aZ" = ( +/obj/structure/cliff/automatic{ + icon_state = "cliffbuilder"; + dir = 2 + }, +/obj/structure/railing{ + icon_state = "railing0"; + dir = 8 + }, +/turf/simulated/floor/lava, +/area/submap/lava_trench) +"ba" = ( +/obj/machinery/crystal/lava, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/lava_trench) +"bb" = ( +/obj/structure/cliff/automatic{ + icon_state = "cliffbuilder"; + dir = 4 + }, +/turf/simulated/floor/lava, +/area/submap/lava_trench) +"bc" = ( +/obj/structure/cliff/automatic{ + icon_state = "cliffbuilder"; + dir = 6 + }, +/turf/simulated/floor/lava, +/area/submap/lava_trench) +"bd" = ( +/obj/structure/table/steel, +/obj/item/weapon/storage/excavation, +/obj/item/device/measuring_tape, +/obj/effect/floor_decal/corner_oldtile/purple{ + icon_state = "corner_oldtile"; + dir = 4 + }, +/turf/simulated/floor/tiled/old_tile, +/area/submap/lava_trench/outpost) +"be" = ( +/turf/simulated/mineral/ignore_mapgen/cave, +/area/template_noop) +"bf" = ( +/obj/structure/railing, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/lava_trench) +"bg" = ( +/obj/structure/cliff/automatic{ + icon_state = "cliffbuilder"; + dir = 10 + }, +/obj/structure/railing, +/turf/simulated/floor/lava, +/area/submap/lava_trench) +"bh" = ( +/obj/structure/cliff/automatic/corner{ + icon_state = "cliffbuilder-corner"; + dir = 10 + }, +/obj/structure/railing, +/turf/simulated/floor/lava, +/area/submap/lava_trench) +"bi" = ( +/obj/structure/railing, +/obj/effect/step_trigger/teleporter/offset/south, +/turf/simulated/floor/lava, +/area/submap/lava_trench) +"bj" = ( +/obj/structure/cliff/automatic{ + icon_state = "cliffbuilder"; + dir = 4 + }, +/obj/structure/railing, +/turf/simulated/floor/lava, +/area/submap/lava_trench) +"bk" = ( +/obj/structure/catwalk, +/obj/structure/railing, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/lava_trench) +"bl" = ( +/obj/structure/catwalk, +/obj/structure/railing, +/turf/simulated/floor/lava, +/area/submap/lava_trench) +"bm" = ( +/obj/structure/fence/door/opened{ + icon_state = "door_opened"; + dir = 4 + }, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/lava_trench) +"bn" = ( +/obj/structure/cliff/automatic{ + icon_state = "cliffbuilder"; + dir = 2 + }, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/lava_trench) +"bo" = ( +/obj/effect/floor_decal/corner_oldtile/purple/full{ + icon_state = "corner_oldtile_full"; + dir = 1 + }, +/obj/machinery/space_heater, +/turf/simulated/floor/tiled/old_tile, +/area/submap/lava_trench/outpost) +"bp" = ( +/obj/machinery/floodlight, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/lava_trench) +"bq" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/machinery/light/small/flicker{ + icon_state = "bulb1"; + dir = 1 + }, +/turf/simulated/floor/tiled/old_tile, +/area/submap/lava_trench/outpost) +"br" = ( +/obj/effect/floor_decal/corner_oldtile/blue{ + icon_state = "corner_oldtile"; + dir = 1 + }, +/obj/structure/bed/chair/office/light{ + icon_state = "officechair_white"; + dir = 4 + }, +/turf/simulated/floor/tiled/old_tile, +/area/submap/lava_trench/outpost) +"bs" = ( +/turf/simulated/floor/tiled/old_tile/gray, +/area/submap/lava_trench/outpost) +"bt" = ( +/obj/effect/floor_decal/corner_oldtile/purple{ + icon_state = "corner_oldtile"; + dir = 4 + }, +/turf/simulated/floor/tiled/old_tile, +/area/submap/lava_trench/outpost) +"bu" = ( +/obj/structure/cliff/automatic/corner{ + icon_state = "cliffbuilder-corner"; + dir = 6 + }, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/lava_trench) +"bv" = ( +/obj/item/slime_crystal, +/obj/item/slime_crystal, +/obj/item/slime_crystal, +/obj/effect/floor_decal/corner_oldtile/blue{ + icon_state = "corner_oldtile"; + dir = 9 + }, +/obj/structure/table/standard, +/turf/simulated/floor/tiled/old_tile, +/area/submap/lava_trench/outpost) +"bw" = ( +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/lava_trench) +"bx" = ( +/obj/machinery/crystal/ice, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/lava_trench) +"by" = ( +/obj/machinery/ai_status_display{ + pixel_y = 32 + }, +/obj/machinery/light/small/flicker{ + icon_state = "bulb1"; + dir = 1 + }, +/turf/simulated/floor/tiled/old_tile, +/area/submap/lava_trench/outpost) +"bz" = ( +/obj/effect/floor_decal/corner_oldtile{ + icon_state = "corner_oldtile"; + dir = 1 + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/submap/lava_trench/outpost) +"bA" = ( +/obj/effect/floor_decal/corner_oldtile{ + icon_state = "corner_oldtile"; + dir = 4 + }, +/turf/simulated/floor/tiled/old_tile/gray, +/area/submap/lava_trench/outpost) +"bB" = ( +/obj/effect/floor_decal/corner_oldtile/blue{ + icon_state = "corner_oldtile"; + dir = 8 + }, +/turf/simulated/floor/tiled/old_tile, +/area/submap/lava_trench/outpost) +"bC" = ( +/obj/structure/table/rack, +/obj/item/weapon/shovel, +/obj/effect/floor_decal/corner_oldtile/purple/full{ + icon_state = "corner_oldtile_full"; + dir = 1 + }, +/obj/item/weapon/pickaxe/drill, +/turf/simulated/floor/tiled/old_tile, +/area/submap/lava_trench/outpost) +"bD" = ( +/obj/effect/step_trigger/teleporter/offset/north, +/turf/simulated/floor/lava, +/area/submap/lava_trench) +"bE" = ( +/obj/machinery/crystal/lava, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/lava_trench) +"bF" = ( +/obj/structure/table/rack, +/obj/random/tool/powermaint, +/obj/random/tool/powermaint, +/obj/effect/floor_decal/corner_oldtile/purple{ + icon_state = "corner_oldtile"; + dir = 6 + }, +/turf/simulated/floor/tiled/old_tile, +/area/submap/lava_trench/outpost) +"bG" = ( +/obj/effect/floor_decal/corner_oldtile/purple, +/obj/structure/table/steel, +/obj/item/device/xenoarch_multi_tool, +/turf/simulated/floor/tiled/old_tile, +/area/submap/lava_trench/outpost) +"bH" = ( +/obj/effect/floor_decal/corner_oldtile/purple, +/turf/simulated/floor/tiled/old_tile, +/area/submap/lava_trench/outpost) +"bI" = ( +/obj/item/device/gps/science{ + gps_tag = "CRYSTALS" + }, +/turf/simulated/floor/tiled/old_tile, +/area/submap/lava_trench/outpost) +"bK" = ( +/obj/effect/floor_decal/corner_oldtile/blue/full, +/obj/random/drinkbottle, +/obj/random/maintenance/research, +/obj/structure/table/standard, +/obj/machinery/light/small/flicker{ + icon_state = "bulb1"; + dir = 8 + }, +/turf/simulated/floor/tiled/old_tile, +/area/submap/lava_trench/outpost) +"bL" = ( +/obj/structure/flora/pottedplant/crystal, +/obj/effect/floor_decal/corner_oldtile/blue{ + icon_state = "corner_oldtile"; + dir = 8 + }, +/turf/simulated/floor/tiled/old_tile, +/area/submap/lava_trench/outpost) +"bM" = ( +/obj/structure/cult/pylon, +/obj/effect/floor_decal/industrial/outline, +/turf/simulated/floor/tiled/old_tile/gray, +/area/submap/lava_trench/outpost) +"bN" = ( +/obj/structure/anomaly_container, +/obj/machinery/artifact, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/lava_trench) +"bO" = ( +/obj/machinery/light/small/flicker{ + icon_state = "bulb1"; + dir = 4 + }, +/turf/simulated/floor/tiled/old_tile, +/area/submap/lava_trench/outpost) +"bP" = ( +/obj/effect/floor_decal/corner_oldtile/purple/full{ + icon_state = "corner_oldtile_full"; + dir = 4 + }, +/obj/structure/table/steel, +/obj/machinery/recharger, +/obj/machinery/light/small/flicker{ + icon_state = "bulb1"; + dir = 4 + }, +/turf/simulated/floor/tiled/old_tile, +/area/submap/lava_trench/outpost) +"bQ" = ( +/obj/machinery/light/small/flicker{ + icon_state = "bulb1"; + dir = 8 + }, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/lava_trench) +"bR" = ( +/obj/machinery/light/small/flicker{ + icon_state = "bulb1"; + dir = 1 + }, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/lava_trench) +"bS" = ( +/obj/effect/floor_decal/corner_oldtile/blue{ + icon_state = "corner_oldtile"; + dir = 1 + }, +/obj/structure/loot_pile/surface/medicine_cabinet{ + pixel_y = 28 + }, +/obj/structure/table/standard, +/obj/item/device/healthanalyzer/improved, +/turf/simulated/floor/tiled/old_tile, +/area/submap/lava_trench/outpost) +"bT" = ( +/obj/machinery/suspension_gen{ + anchored = 1 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/old_tile, +/area/submap/lava_trench/outpost) +"bU" = ( +/obj/machinery/light/small/flicker, +/obj/structure/ore_box, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/lava_trench) +"bW" = ( +/obj/structure/anomaly_container, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/lava_trench) +"bX" = ( +/obj/effect/floor_decal/corner_oldtile/purple/full{ + icon_state = "corner_oldtile_full"; + dir = 4 + }, +/obj/item/weapon/storage/box/samplebags, +/obj/structure/table/steel, +/obj/item/stack/flag/red, +/turf/simulated/floor/tiled/old_tile, +/area/submap/lava_trench/outpost) +"bY" = ( +/obj/machinery/crystal, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/lava_trench) +"bZ" = ( +/obj/structure/table/steel, +/obj/item/weapon/stock_parts/subspace/crystal, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/lava_trench) +"ca" = ( +/obj/structure/table/steel, +/obj/item/stack/material/diamond, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/lava_trench) +"cb" = ( +/obj/structure/loot_pile/surface/bones, +/turf/simulated/floor/tiled/old_tile, +/area/submap/lava_trench/outpost) +"ce" = ( +/obj/effect/floor_decal/corner_oldtile/blue/full, +/obj/structure/table/standard, +/turf/simulated/floor/tiled/old_tile, +/area/submap/lava_trench/outpost) +"ch" = ( +/obj/structure/loot_pile/maint/trash, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/lava_trench) +"cj" = ( +/obj/item/clothing/head/bio_hood/anomaly, +/turf/simulated/floor/tiled/old_tile, +/area/submap/lava_trench/outpost) +"ck" = ( +/obj/item/clothing/suit/bio_suit/anomaly, +/turf/simulated/floor/tiled/old_tile, +/area/submap/lava_trench/outpost) +"co" = ( +/obj/machinery/floodlight, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/lava_trench) +"cp" = ( +/obj/machinery/light/small/flicker, +/obj/structure/closet/crate/secure/loot, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/lava_trench) +"cq" = ( +/obj/item/weapon/banner/nt, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/lava_trench) +"cr" = ( +/obj/structure/table/steel, +/obj/item/weapon/material/shard/phoron, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/lava_trench) +"cs" = ( +/obj/item/weapon/banner/nt, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/lava_trench) + +(1,1,1) = {" +aB +aB +aB +aB +af +af +af +aB +aB +aB +aB +aB +be +be +be +be +be +be +be +be +be +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(2,1,1) = {" +aB +ab +al +am +ar +az +ar +aT +al +aV +aB +aB +aB +aB +aB +aB +aB +aB +aB +be +be +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(3,1,1) = {" +ab +ae +af +af +af +af +af +af +af +aW +aV +aB +aB +aB +aB +aB +aB +aB +aB +be +be +be +aa +aa +aa +aa +aa +aa +aa +aa +"} +(4,1,1) = {" +ac +af +af +af +af +af +af +af +af +af +aW +al +al +al +al +al +aV +aB +aB +be +be +be +be +aa +aa +aa +aa +aa +aa +aa +"} +(5,1,1) = {" +ac +af +af +ba +an +aA +aF +af +af +af +af +af +af +af +af +af +bn +aB +aB +aB +aB +be +be +be +aa +aa +aa +aa +aa +aa +"} +(6,1,1) = {" +ac +af +af +an +at +au +aG +aF +af +aq +af +af +af +af +af +af +bn +aB +aB +aB +aB +aB +be +be +aa +aa +aa +aa +aa +aa +"} +(7,1,1) = {" +ac +af +af +ao +au +au +au +aU +af +af +af +af +af +af +af +af +aW +al +al +aV +aB +aB +be +be +aa +aa +aa +aa +aa +aa +"} +(8,1,1) = {" +ac +af +af +ao +au +au +au +aG +aF +af +af +af +af +af +af +af +af +af +af +bn +aB +aB +be +be +be +aa +aa +aa +aa +aa +"} +(9,1,1) = {" +ac +af +af +ao +au +au +au +au +aG +aF +af +af +bw +bw +bw +bw +af +af +af +bn +aB +aB +be +be +be +be +aa +aa +aa +aa +"} +(10,1,1) = {" +ac +af +af +ao +au +au +au +au +au +aU +af +af +bw +bx +bZ +bw +bw +af +af +bn +aB +aB +aB +aB +be +be +be +aa +aa +aa +"} +(11,1,1) = {" +ac +af +af +ap +av +au +au +au +af +af +af +af +bw +bE +ca +bw +bw +af +af +bn +aB +aB +aB +aB +aB +be +be +be +aa +aa +"} +(12,1,1) = {" +ac +af +af +af +ao +au +au +au +au +aU +af +af +bw +bY +cr +bw +bw +af +af +aW +al +al +aV +aB +aB +be +be +be +be +aa +"} +(13,1,1) = {" +ac +af +af +af +ao +au +au +au +au +aG +aF +af +bw +bw +bw +bw +bw +af +af +af +af +af +bn +aB +aB +aB +aB +be +be +be +"} +(14,1,1) = {" +ad +ag +af +af +ao +au +au +au +au +au +aU +af +af +bw +bw +bw +bw +af +aM +af +af +af +aW +al +al +aV +aB +aB +be +be +"} +(15,1,1) = {" +aB +ac +af +af +ao +au +au +au +au +au +aU +af +af +bw +bw +aJ +aO +aO +aO +aO +aO +af +af +af +af +bn +aB +aB +be +be +"} +(16,1,1) = {" +aB +ac +af +af +ao +au +au +af +au +au +aU +af +af +bw +cq +aO +aO +aR +bv +ce +aO +aO +af +af +af +bn +aB +aB +be +be +"} +(17,1,1) = {" +aB +ac +af +af +ao +au +au +au +au +au +aU +af +af +bw +bU +aO +aS +br +aQ +bB +bK +aO +ch +af +af +bn +aB +aB +be +be +"} +(18,1,1) = {" +aB +ac +af +af +ao +au +au +au +au +au +aU +af +af +bw +aJ +aO +bS +aQ +aQ +aQ +bL +aO +aO +af +af +bn +aB +aB +be +be +"} +(19,1,1) = {" +aB +ah +af +af +ap +av +au +au +au +aX +bc +af +af +bw +aO +aO +aO +bq +aQ +aQ +bz +bs +aO +af +af +bn +aB +aB +be +be +"} +(20,1,1) = {" +aC +ai +af +af +aw +aD +aH +aH +aH +aY +aw +af +af +bw +aN +bO +aN +aQ +aQ +bT +bs +bM +aO +bR +af +bn +aB +aB +be +be +"} +(21,1,1) = {" +aC +aj +af +af +ax +ax +ax +aI +aI +aI +ax +bw +bw +bw +aO +aO +aO +by +aQ +ck +bA +bs +aO +af +af +bn +aB +aB +be +be +"} +(22,1,1) = {" +aC +ai +af +af +ay +aE +aK +aK +aK +aZ +ay +af +bw +bw +co +aO +bd +cj +cb +aQ +bG +aO +aO +af +af +bn +aB +aB +be +be +"} +(23,1,1) = {" +aB +ak +af +af +af +ao +au +au +au +aG +aF +af +bw +bw +cp +aO +bo +bt +bI +bH +bP +aO +bN +af +af +bn +aB +aB +be +be +"} +(24,1,1) = {" +aB +ac +af +aq +af +ao +au +au +au +au +aU +af +bw +af +cs +aO +aO +bC +bF +bX +aO +aO +bW +af +af +bn +aB +aB +aB +be +"} +(25,1,1) = {" +aB +ad +ag +af +af +ao +au +au +af +au +aU +bf +bk +af +af +af +aO +aO +aO +aO +aO +bN +af +af +af +bn +aB +aB +aB +aB +"} +(26,1,1) = {" +aB +aB +ac +af +af +ao +au +au +au +au +aG +bg +bk +af +aq +af +af +af +bQ +af +af +af +af +af +af +aW +al +aV +aB +aB +"} +(27,1,1) = {" +aB +aB +ac +af +af +ao +au +au +au +au +au +bh +bl +aA +aA +aF +af +af +af +af +af +af +af +af +af +af +af +bn +aB +aB +"} +(28,1,1) = {" +aB +aB +ac +af +af +ao +au +au +af +au +au +bi +bl +bD +au +aG +aA +aA +aF +af +af +af +af +af +af +af +af +aW +aV +aB +"} +(29,1,1) = {" +aB +aB +ac +af +af +ao +au +au +af +af +au +bi +bl +bD +au +au +au +au +aG +aA +aA +af +aA +aA +aF +af +af +af +aW +aV +"} +(30,1,1) = {" +aB +aB +ac +af +af +ap +av +au +au +ba +au +bi +bl +bD +au +au +au +au +au +au +au +af +au +au +aG +aF +af +af +af +bn +"} +(31,1,1) = {" +aB +aB +ac +af +af +af +ap +av +au +au +au +bi +bl +bD +au +af +au +au +au +au +au +au +au +au +au +aG +aF +af +af +bn +"} +(32,1,1) = {" +aB +aB +ac +af +af +af +af +ap +av +au +au +bi +bl +bD +au +au +au +au +au +af +af +af +au +au +au +au +aU +af +af +bn +"} +(33,1,1) = {" +aB +aB +ad +ag +af +af +af +af +ap +bb +bb +bj +bl +av +au +au +au +au +au +au +ba +af +af +au +au +au +aU +af +af +bn +"} +(34,1,1) = {" +aB +aB +aB +ad +ag +af +af +af +af +af +af +bf +bk +ap +bb +bb +av +au +au +au +au +au +au +au +au +au +aU +af +af +ah +"} +(35,1,1) = {" +be +aB +aB +aB +ad +ag +af +af +af +af +af +bf +bk +af +af +af +ap +av +au +au +au +au +au +au +au +au +aU +af +af +ai +"} +(36,1,1) = {" +be +be +aB +aB +aB +ad +aL +aL +ag +af +af +af +af +af +af +af +af +ap +bb +bb +bb +bb +bb +av +au +au +aU +af +af +aj +"} +(37,1,1) = {" +be +be +be +aB +aB +aB +aB +aB +ac +af +af +af +af +af +af +aq +af +af +af +af +af +af +af +ap +bb +bb +bc +af +af +ai +"} +(38,1,1) = {" +aa +be +be +be +aB +aB +aB +aB +ac +af +af +ba +af +af +af +bp +af +af +af +af +af +af +af +af +af +af +af +af +af +ak +"} +(39,1,1) = {" +aa +aa +be +be +be +be +aB +aB +ad +ag +af +af +af +af +af +af +af +af +af +af +ba +af +af +af +af +af +af +af +af +bn +"} +(40,1,1) = {" +aa +aa +aa +be +be +be +aB +aB +aB +ac +af +af +af +af +af +af +af +ba +af +af +af +af +bu +aL +aL +aL +aL +aL +aL +as +"} +(41,1,1) = {" +aa +aa +aa +aa +be +be +be +aB +aB +ac +af +af +af +af +af +af +af +af +af +af +af +af +bn +aB +aB +aB +aB +aB +aB +aB +"} +(42,1,1) = {" +aa +aa +aa +aa +aa +be +be +aB +aB +ac +af +af +af +af +af +af +af +af +af +af +af +bu +as +aB +aB +aB +aB +aB +aB +aB +"} +(43,1,1) = {" +aa +aa +aa +aa +aa +be +be +aB +aB +ad +am +ar +bm +ar +aT +aL +aL +aL +aL +aL +aL +as +aB +aB +aB +be +be +be +be +be +"} +(44,1,1) = {" +aa +aa +aa +aa +aa +be +be +aB +aB +aB +aB +af +af +af +af +af +aB +aB +aB +aB +aB +aB +aB +aB +be +be +be +be +be +be +"} +(45,1,1) = {" +aa +aa +aa +aa +aa +be +be +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +be +be +be +aa +aa +aa +aa +"} +(46,1,1) = {" +aa +aa +aa +aa +aa +be +be +be +be +aB +aB +aB +aB +aB +aB +aB +aB +be +be +be +be +be +be +be +be +aa +aa +aa +aa +aa +"} +(47,1,1) = {" +aa +aa +aa +aa +aa +aa +be +be +be +aB +aB +aB +aB +aB +aB +aB +aB +aB +be +be +be +be +be +be +aa +aa +aa +aa +aa +aa +"} +(48,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aB +aB +aB +aB +aB +aB +aB +aB +aB +be +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} diff --git a/maps/expedition_vr/beach/submaps/lost_explorer.dmm b/maps/expedition_vr/beach/submaps/lost_explorer.dmm new file mode 100644 index 0000000000..683acd2757 --- /dev/null +++ b/maps/expedition_vr/beach/submaps/lost_explorer.dmm @@ -0,0 +1,74 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/lost_explorer) +"b" = ( +/obj/item/device/geiger, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/lost_explorer) +"c" = ( +/obj/item/clothing/mask/gas/explorer, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/lost_explorer) +"d" = ( +/obj/item/weapon/material/knife/tacknife/survival, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/lost_explorer) +"e" = ( +/obj/item/clothing/shoes/boots/winter/explorer, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/lost_explorer) +"f" = ( +/obj/item/clothing/under/explorer, +/obj/effect/decal/remains, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/lost_explorer) +"g" = ( +/obj/item/clothing/suit/storage/hooded/explorer, +/obj/item/weapon/cell/device, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/lost_explorer) +"h" = ( +/obj/item/device/gps/explorer, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/lost_explorer) +"i" = ( +/obj/item/device/flashlight/lantern, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/lost_explorer) + +(1,1,1) = {" +a +a +a +a +i +"} +(2,1,1) = {" +a +c +e +a +a +"} +(3,1,1) = {" +b +a +f +g +a +"} +(4,1,1) = {" +a +d +a +a +a +"} +(5,1,1) = {" +a +a +a +h +a +"} diff --git a/maps/expedition_vr/beach/submaps/mountains.dm b/maps/expedition_vr/beach/submaps/mountains.dm new file mode 100644 index 0000000000..9150c690c2 --- /dev/null +++ b/maps/expedition_vr/beach/submaps/mountains.dm @@ -0,0 +1,374 @@ +// This causes PoI maps to get 'checked' and compiled, when undergoing a unit test. +// This is so CI can validate PoIs, and ensure future changes don't break PoIs, as PoIs are loaded at runtime and the compiler can't catch errors. +// When adding a new PoI, please add it to this list. +#if MAP_TEST +#include "deadBeacon.dmm" +#include "prepper1.dmm" +#include "quarantineshuttle.dmm" +#include "Mineshaft1.dmm" +#include "Scave1.dmm" +#include "crashed_ufo.dmm" +#include "crashed_ufo_frigate.dmm" +#include "crystal1.dmm" +#include "crystal2.dmm" +#include "crystal3.dmm" +#include "lost_explorer.dmm" +#include "CaveTrench.dmm" +#include "Cavelake.dmm" +#include "Rockb1.dmm" +#include "ritual.dmm" +#include "temple.dmm" +#include "CrashedMedShuttle1.dmm" +#include "digsite.dmm" +#include "vault1.dmm" +#include "vault2.dmm" +#include "vault3.dmm" +#include "vault4.dmm" +#include "vault5.dmm" +#include "vault6.dmm" +#include "IceCave1A.dmm" +#include "IceCave1B.dmm" +#include "IceCave1C.dmm" +#include "SwordCave.dmm" +#include "SupplyDrop1.dmm" +#include "BlastMine1.dmm" +#include "crashedcontainmentshuttle.dmm" +#include "deadspy.dmm" +#include "lava_trench.dmm" +#include "Geyser1.dmm" +#include "Geyser2.dmm" +#include "Geyser3.dmm" +#include "Cliff1.dmm" +#include "excavation1.dmm" +#include "spatial_anomaly.dmm" +#include "speakeasy_vr.dmm" +#endif + +// The 'mountains' is the mining z-level, and has a lot of caves. +// POIs here spawn in two different sections, the top half and bottom half of the map. +// The bottom half should be fairly tame, with perhaps a few enviromental hazards. +// The top half is when things start getting dangerous, but the loot gets better. + +/datum/map_template/surface/mountains + name = "Mountain Content" + desc = "Don't dig too deep!" + +// 'Normal' templates get used on the bottom half, and should be safer. +/datum/map_template/surface/mountains/normal + +// 'Deep' templates get used on the top half, and should be more dangerous and rewarding. +/datum/map_template/surface/mountains/deep + +// To be added: Templates for cave exploration when they are made. + +/**************** + * Normal Caves * + ****************/ + +/datum/map_template/surface/mountains/normal/deadBeacon + name = "Abandoned Relay" + desc = "An unregistered comms relay, abandoned to the elements." + mappath = 'maps/expedition_vr/beach/submaps/deadBeacon.dmm' + cost = 10 + +/datum/map_template/surface/mountains/normal/prepper1 + name = "Prepper Bunker" + desc = "A little hideaway for someone with more time and money than sense." + mappath = 'maps/expedition_vr/beach/submaps/prepper1.dmm' + cost = 10 + +/datum/map_template/surface/mountains/normal/qshuttle + name = "Quarantined Shuttle" + desc = "An emergency landing turned viral outbreak turned tragedy." + mappath = 'maps/expedition_vr/beach/submaps/quarantineshuttle.dmm' + cost = 20 + +/datum/map_template/surface/mountains/normal/Mineshaft1 + name = "Abandoned Mineshaft 1" + desc = "An abandoned minning tunnel from a lost money making effort." + mappath = 'maps/expedition_vr/beach/submaps/Mineshaft1.dmm' + cost = 5 + +/datum/map_template/surface/mountains/normal/crystal1 + name = "Crystal Cave 1" + desc = "A small cave with glowing gems and diamonds." + mappath = 'maps/expedition_vr/beach/submaps/crystal1.dmm' + cost = 5 + allow_duplicates = TRUE + +/datum/map_template/surface/mountains/normal/crystal2 + name = "Crystal Cave 2" + desc = "A moderate sized cave with glowing gems and diamonds." + mappath = 'maps/expedition_vr/beach/submaps/crystal2.dmm' + cost = 10 + allow_duplicates = TRUE + +/datum/map_template/surface/mountains/normal/crystal2 + name = "Crystal Cave 3" + desc = "A large spiral of crystals with diamonds in the center." + mappath = 'maps/expedition_vr/beach/submaps/crystal3.dmm' + cost = 15 + +/datum/map_template/surface/mountains/normal/lost_explorer + name = "Lost Explorer" + desc = "The remains of an explorer who rotted away ages ago, and their equipment." + mappath = 'maps/expedition_vr/beach/submaps/lost_explorer.dmm' + cost = 5 + allow_duplicates = TRUE + +/datum/map_template/surface/mountains/normal/Rockb1 + name = "Rocky Base 1" + desc = "Someones underground hidey hole" + mappath = 'maps/expedition_vr/beach/submaps/Rockb1.dmm' + cost = 15 + +/datum/map_template/surface/mountains/normal/corgiritual + name = "Dark Ritual" + desc = "Who put all these plushies here? What are they doing?" + mappath = 'maps/expedition_vr/beach/submaps/ritual.dmm' + cost = 15 + +/datum/map_template/surface/mountains/normal/abandonedtemple + name = "Abandoned Temple" + desc = "An ancient temple, long since abandoned. Perhaps alien in origin?" + mappath = 'maps/expedition_vr/beach/submaps/temple.dmm' + cost = 20 + +/datum/map_template/surface/mountains/normal/digsite + name = "Dig Site" + desc = "A small abandoned dig site." + mappath = 'maps/expedition_vr/beach/submaps/digsite.dmm' + cost = 10 + +/datum/map_template/surface/mountains/normal/vault1 + name = "Mine Vault 1" + desc = "A small vault with potential loot." + mappath = 'maps/expedition_vr/beach/submaps/vault1.dmm' + cost = 5 + allow_duplicates = TRUE + template_group = "Buried Vaults" + +/datum/map_template/surface/mountains/normal/vault2 + name = "Mine Vault 2" + desc = "A small vault with potential loot." + mappath = 'maps/expedition_vr/beach/submaps/vault2.dmm' + cost = 5 + allow_duplicates = TRUE + template_group = "Buried Vaults" + +/datum/map_template/surface/mountains/normal/vault3 + name = "Mine Vault 3" + desc = "A small vault with potential loot. Also a horrible suprise." + mappath = 'maps/expedition_vr/beach/submaps/vault3.dmm' + cost = 15 + template_group = "Buried Vaults" + +/datum/map_template/surface/mountains/normal/IceCave1A + name = "Ice Cave 1A" + desc = "This cave's slippery ice makes it hard to navigate, but determined explorers will be rewarded." + mappath = 'maps/expedition_vr/beach/submaps/IceCave1A.dmm' + cost = 10 + +/datum/map_template/surface/mountains/normal/IceCave1B + name = "Ice Cave 1B" + desc = "This cave's slippery ice makes it hard to navigate, but determined explorers will be rewarded." + mappath = 'maps/expedition_vr/beach/submaps/IceCave1B.dmm' + cost = 10 + +/datum/map_template/surface/mountains/normal/IceCave1C + name = "Ice Cave 1C" + desc = "This cave's slippery ice makes it hard to navigate, but determined explorers will be rewarded." + mappath = 'maps/expedition_vr/beach/submaps/IceCave1C.dmm' + cost = 10 + +/datum/map_template/surface/mountains/normal/SwordCave + name = "Cursed Sword Cave" + desc = "An underground lake. The sword on the lake's island holds a terrible secret." + mappath = 'maps/expedition_vr/beach/submaps/SwordCave.dmm' + +/datum/map_template/surface/mountains/normal/supplydrop1 + name = "Supply Drop 1" + desc = "A drop pod that landed deep within the mountains." + mappath = 'maps/expedition_vr/beach/submaps/SupplyDrop1.dmm' + cost = 10 + allow_duplicates = TRUE + +/datum/map_template/surface/mountains/normal/crashedcontainmentshuttle + name = "Crashed Cargo Shuttle" + desc = "A severely damaged military shuttle, its cargo seems to remain intact." + mappath = 'maps/expedition_vr/beach/submaps/crashedcontainmentshuttle.dmm' + cost = 30 + +/datum/map_template/surface/mountains/normal/deadspy + name = "Spy Remains" + desc = "W+M1 = Salt." + mappath = 'maps/expedition_vr/beach/submaps/deadspy.dmm' + cost = 15 + +/datum/map_template/surface/mountains/normal/geyser1 + name = "Ore-Rich Geyser" + desc = "A subterranean geyser that produces steam. This one has a particularly abundant amount of materials surrounding it." + mappath = 'maps/expedition_vr/beach/submaps/Geyser1.dmm' + cost = 5 + allow_duplicates = TRUE + template_group = "Underground Geysers" + +/datum/map_template/surface/mountains/normal/geyser2 + name = "Fenced Geyser" + desc = "A subterranean geyser that produces steam. This one has a damaged fence surrounding it." + mappath = 'maps/expedition_vr/beach/submaps/Geyser2.dmm' + cost = 5 + allow_duplicates = TRUE + template_group = "Underground Geysers" + +/datum/map_template/surface/mountains/normal/geyser3 + name = "Magmatic Geyser" + desc = "A subterranean geyser that produces incendiary gas. It is recessed into the ground, and filled with magma. It's a relatively dormant volcano." + mappath = 'maps/expedition_vr/beach/submaps/Geyser2.dmm' + cost = 10 + allow_duplicates = TRUE + template_group = "Underground Geysers" + +/datum/map_template/surface/mountains/normal/cliff1 + name = "Ore-Topped Cliff" + desc = "A raised area of rock created by volcanic forces." + mappath = 'maps/expedition_vr/beach/submaps/Cliff1.dmm' + cost = 5 + allow_duplicates = TRUE + template_group = "Underground Cliffs" + +/datum/map_template/surface/mountains/normal/deadly_rabbit // VOREStation Edit + name = "The Killer Rabbit" + desc = "A cave where the Knights of the Round have fallen to a murderous Rabbit." + mappath = 'maps/expedition_vr/beach/submaps/deadly_rabbit_vr.dmm' + cost = 5 + allow_duplicates = FALSE + +/************** + * Deep Caves * + **************/ + +/* Vorestation Removal +/datum/map_template/surface/mountains/deep/lost_explorer + name = "Lost Explorer, Deep" + desc = "The remains of an explorer who rotted away ages ago, and their equipment. Again." + mappath = 'maps/expedition_vr/beach/submaps/lost_explorer.dmm' + cost = 5 + allow_duplicates = TRUE */ + +/datum/map_template/surface/mountains/normal/crashed_ufo //VOREStation Edit + name = "Crashed UFO" + desc = "A (formerly) flying saucer that is now embedded into the mountain, yet it still seems to be running..." + mappath = 'maps/expedition_vr/beach/submaps/crashed_ufo.dmm' + cost = 40 + discard_prob = 50 + +/datum/map_template/surface/mountains/normal/crashed_ufo_frigate //VOREStation Edit + name = "Crashed UFO Frigate" + desc = "A (formerly) flying saucer that is now embedded into the mountain, yet the combat protocols still seem to be running..." + mappath = 'maps/expedition_vr/beach/submaps/crashed_ufo_frigate.dmm' + cost = 60 + discard_prob = 50 + +/datum/map_template/surface/mountains/normal/Scave1 //VOREStation Edit + name = "Spider Cave 1" + desc = "A minning tunnel home to an aggressive collection of spiders." + mappath = 'maps/expedition_vr/beach/submaps/Scave1.dmm' + cost = 20 + +/datum/map_template/surface/mountains/normal/CaveTrench //VOREStation Edit + name = "Cave River" + desc = "A strange underground river." + mappath = 'maps/expedition_vr/beach/submaps/CaveTrench.dmm' + cost = 20 + +/datum/map_template/surface/mountains/normal/Cavelake //VOREStation Edit + name = "Cave Lake" + desc = "A large underground lake." + mappath = 'maps/expedition_vr/beach/submaps/Cavelake.dmm' + cost = 20 + +/datum/map_template/surface/mountains/normal/vault1 //VOREStation Edit + name = "Mine Vault 1" + desc = "A small vault with potential loot." + mappath = 'maps/expedition_vr/beach/submaps/vault1.dmm' + cost = 5 + allow_duplicates = TRUE + template_group = "Buried Vaults" + +/datum/map_template/surface/mountains/normal/vault2 //VOREStation Edit + name = "Mine Vault 2" + desc = "A small vault with potential loot." + mappath = 'maps/expedition_vr/beach/submaps/vault2.dmm' + cost = 5 + allow_duplicates = TRUE + template_group = "Buried Vaults" + +/datum/map_template/surface/mountains/normal/vault3 //VOREStation Edit + name = "Mine Vault 3" + desc = "A small vault with potential loot. Also a horrible suprise." + mappath = 'maps/expedition_vr/beach/submaps/vault3.dmm' + cost = 15 + template_group = "Buried Vaults" + +/datum/map_template/surface/mountains/normal/vault4 //VOREStation Edit + name = "Mine Vault 4" + desc = "A small xeno vault with potential loot. Also horrible suprises." + mappath = 'maps/expedition_vr/beach/submaps/vault4.dmm' + cost = 20 + template_group = "Buried Vaults" + +/datum/map_template/surface/mountains/normal/vault5 //VOREStation Edit + name = "Mine Vault 5" + desc = "A small xeno vault with potential loot. Also major horrible suprises." + mappath = 'maps/expedition_vr/beach/submaps/vault5.dmm' + cost = 25 + template_group = "Buried Vaults" + +/datum/map_template/surface/mountains/normal/vault6 //VOREStation Edit + name = "Mine Vault 6" + desc = "A small mercenary tower with potential loot." + mappath = 'maps/expedition_vr/beach/submaps/vault6.dmm' + cost = 25 + template_group = "Buried Vaults" + +/datum/map_template/surface/mountains/normal/BlastMine1 //VOREStation Edit + name = "Blast Mine 1" + desc = "An abandoned blast mining site, seems that local wildlife has moved in." + mappath = 'maps/expedition_vr/beach/submaps/BlastMine1.dmm' + cost = 20 + +/datum/map_template/surface/mountains/normal/lava_trench //VOREStation Edit + name = "lava trench" + desc = "A long stretch of lava underground, almost river-like, with a small crystal research outpost on the side." + mappath = 'maps/expedition_vr/beach/submaps/lava_trench.dmm' + cost = 20 + fixed_orientation = TRUE + +/datum/map_template/surface/mountains/normal/crashedmedshuttle //VOREStation Edit + name = "Crashed Med Shuttle" + desc = "A medical response shuttle that went missing some time ago. So this is where they went." + mappath = 'maps/expedition_vr/beach/submaps/CrashedMedShuttle1.dmm' + cost = 20 + fixed_orientation = TRUE + +/datum/map_template/surface/mountains/normal/excavation1 //VOREStation Edit + name = "Excavation Site" + desc = "An abandoned mining site." + mappath = 'maps/expedition_vr/beach/submaps/excavation1.dmm' + cost = 20 + +/datum/map_template/surface/mountains/deep/spatial_anomaly + name = "spatial anomaly" + desc = "A strange section of the caves that seems twist and turn in ways that shouldn't be physically possible." + mappath = 'maps/expedition_vr/beach/submaps/spatial_anomaly.dmm' + cost = 20 + fixed_orientation = TRUE + +/datum/map_template/surface/mountains/normal/Speakeasy //VOREStation add + name = "Speakeasy" + desc = "A hidden underground bar to serve drinks in secret and in style." + mappath = 'maps/expedition_vr/beach/submaps/speakeasy_vr.dmm' + cost = 10 + allow_duplicates = FALSE + diff --git a/maps/expedition_vr/beach/submaps/mountains_areas.dm b/maps/expedition_vr/beach/submaps/mountains_areas.dm new file mode 100644 index 0000000000..eed32e1ca5 --- /dev/null +++ b/maps/expedition_vr/beach/submaps/mountains_areas.dm @@ -0,0 +1,170 @@ +/area/submap/cave + name = "Cave Submap Area" + icon_state = "submap" + ambience = AMBIENCE_RUINS + base_turf = /turf/simulated/mineral/floor/ignore_mapgen/cave + +/area/submap/cave/deadBeacon + name = "POI - abandoned relay" + ambience = AMBIENCE_TECH_RUINS + +/area/submap/cave/prepper1 + name = "POI - Prepper Bunker" + ambience = AMBIENCE_FOREBODING + +/area/submap/cave/qShuttle + name = "POI - Quarantined Shuttle" + ambience = AMBIENCE_RUINS + +/area/submap/cave/AMine1 + name = "POI - Abandoned Mine" + +/area/submap/cave/Scave1 + name = "POI - Spider Cave 1" + ambience = AMBIENCE_FOREBODING + +/area/submap/cave/crashed_ufo + name = "POI - Crashed Alien Vessel" + requires_power = FALSE + ambience = AMBIENCE_OTHERWORLDLY + +/area/submap/cave/crashed_ufo_frigate + name = "POI - Crashed Alien Frigate" + requires_power = FALSE + ambience = AMBIENCE_OTHERWORLDLY + +/area/submap/cave/crystal1 + name = "POI - Crystaline Cave" + ambience = AMBIENCE_SPACE + +/area/submap/cave/crystal2 + name = "POI - Crystaline Cave" + ambience = AMBIENCE_SPACE + +/area/submap/cave/crystal3 + name = "POI - Crystaline Cave" + ambience = AMBIENCE_SPACE + +/area/submap/cave/lost_explorer + name = "POI - Final Resting Place" + ambience = AMBIENCE_GHOSTLY + +/area/submap/Rockb1 + name = "POI - RockyBase1" + ambience = AMBIENCE_FOREBODING + +/area/submap/Cavelake + name = "POI - Cavelake" + ambience = AMBIENCE_SPACE + +/area/submap/CaveTrench + name = "POI - Cave River" + ambience = AMBIENCE_FOREBODING + +/area/submap/CorgiRitual + name = "POI - Dark Ritual" + ambience = AMBIENCE_UNHOLY + +/area/submap/AbandonedTemple + name = "POI - Abandoned Temple" + ambience = AMBIENCE_RUINS + +/area/submap/CrashedMedShuttle + name = "POI - Crashed Med Shuttle" + ambience = AMBIENCE_RUINS + +/area/submap/cave/digsite + name = "POI - Dig Site" + ambience = AMBIENCE_OTHERWORLDLY + +/area/submap/cave/vault1 + name = "POI - Mine Vault" + ambience = AMBIENCE_FOREBODING + +/area/submap/cave/vault2 + name = "POI - Mine Vault" + ambience = AMBIENCE_FOREBODING + +/area/submap/cave/vault3 + name = "POI - Mine Vault" + ambience = AMBIENCE_FOREBODING + +/area/submap/cave/vault4 + name = "POI - Mine Vault" + ambience = AMBIENCE_FOREBODING + +/area/submap/cave/vault5 + name = "POI - Mine Vault" + ambience = AMBIENCE_FOREBODING + +/area/submap/cave/vault6 + name = "POI - Mine Vault" + ambience = AMBIENCE_FOREBODING + +/area/submap/cave/IceCave1A + name = "POI - Ice Cave 1A" + ambience = AMBIENCE_SPACE + +/area/submap/cave/IceCave1B + name = "POI - Ice Cave 1B" + ambience = AMBIENCE_SPACE + +/area/submap/cave/IceCave1C + name = "POI - Ice Cave 1C" + ambience = AMBIENCE_SPACE + +/area/submap/cave/swordcave + name = "POI - Cursed Sword Cave" + ambience = AMBIENCE_UNHOLY + +/area/submap/cave/SupplyDrop1 + name = "POI - Supply Drop 1" + ambience = AMBIENCE_TECH_RUINS + +/area/submap/cave/BlastMine1 + name = "POI - Blast Mine 1" + +/area/submap/crashedcontainmentshuttle + name = "POI - Crashed Containment Shuttle" + ambience = AMBIENCE_HIGHSEC + +/area/submap/geyser_1 + name = "POI - Ore-Rich Geyser" + ambience = AMBIENCE_RUINS + +/area/submap/geyser_2 + name = "POI - Fenced Geyser" + ambience = AMBIENCE_RUINS + +/area/submap/geyser_3 + name = "POI - Magmatic Geyser" + ambience = AMBIENCE_RUINS + +/area/submap/ore_cliff + name = "POI - Ore-Topped Cliff" + ambience = AMBIENCE_RUINS + +/area/submap/deadspy + name = "POI - Dead Spy" + ambience = AMBIENCE_FOREBODING + +/area/submap/lava_trench + name = "POI - Lava Trench" + ambience = AMBIENCE_LAVA + +/area/submap/lava_trench/outpost + name = "POI - Trench Outpost" + requires_power = FALSE + icon_state = "submap2" + +/area/submap/Excavation + name = "POI - Excavation Site" + ambience = AMBIENCE_FOREBODING + +/area/submap/spatial_anomaly + name = "POI - Spatial Anomaly" + ambience = AMBIENCE_FOREBODING + +/area/submap/Speakeasy //VOREStation add + name = "POI - Speakeasy" + requires_power = FALSE \ No newline at end of file diff --git a/maps/expedition_vr/beach/submaps/prepper1.dmm b/maps/expedition_vr/beach/submaps/prepper1.dmm new file mode 100644 index 0000000000..1503210411 --- /dev/null +++ b/maps/expedition_vr/beach/submaps/prepper1.dmm @@ -0,0 +1,224 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/template_noop, +/area/template_noop) +"b" = ( +/turf/simulated/wall/r_wall, +/area/submap/cave/prepper1) +"c" = ( +/obj/structure/table/steel, +/obj/random/maintenance/engineering, +/obj/random/maintenance/engineering, +/obj/item/stack/rods, +/turf/simulated/floor/plating, +/area/submap/cave/prepper1) +"d" = ( +/obj/structure/table/steel, +/obj/random/maintenance/security, +/obj/item/stack/cable_coil/random, +/turf/simulated/floor/plating, +/area/submap/cave/prepper1) +"e" = ( +/obj/structure/table/steel, +/obj/random/maintenance/engineering, +/turf/simulated/floor/plating, +/area/submap/cave/prepper1) +"f" = ( +/obj/structure/table/steel, +/obj/random/maintenance/engineering, +/obj/random/maintenance/engineering, +/turf/simulated/floor/plating, +/area/submap/cave/prepper1) +"g" = ( +/obj/structure/table/steel, +/obj/item/weapon/storage/box/glasses, +/turf/simulated/floor/plating, +/area/submap/cave/prepper1) +"h" = ( +/obj/structure/table/steel, +/obj/random/toolbox, +/turf/simulated/floor/plating, +/area/submap/cave/prepper1) +"i" = ( +/turf/simulated/floor/plating, +/area/submap/cave/prepper1) +"j" = ( +/obj/structure/table/steel, +/obj/item/weapon/tape_roll, +/obj/random/maintenance/engineering, +/turf/simulated/floor/plating, +/area/submap/cave/prepper1) +"k" = ( +/obj/structure/table/steel, +/obj/random/maintenance/engineering, +/obj/random/maintenance/engineering, +/obj/item/stack/tile/floor/steel, +/turf/simulated/floor/plating, +/area/submap/cave/prepper1) +"l" = ( +/obj/structure/inflatable/door, +/turf/simulated/floor/plating, +/area/submap/cave/prepper1) +"m" = ( +/obj/structure/closet/wardrobe/grey, +/turf/simulated/floor/plating, +/area/submap/cave/prepper1) +"n" = ( +/obj/structure/closet/crate/freezer/rations, +/turf/simulated/floor/plating, +/area/submap/cave/prepper1) +"o" = ( +/obj/structure/reagent_dispensers/water_cooler/full, +/turf/simulated/floor/plating, +/area/submap/cave/prepper1) +"p" = ( +/obj/structure/loot_pile/maint/technical, +/turf/simulated/floor/plating, +/area/submap/cave/prepper1) +"q" = ( +/obj/structure/table/rack, +/obj/item/weapon/tank/emergency/oxygen/engi, +/obj/item/weapon/tank/emergency/oxygen/engi, +/obj/item/clothing/mask/gas, +/obj/item/clothing/suit/armor/material/makeshift, +/obj/item/clothing/head/helmet/bucket, +/turf/simulated/floor/plating, +/area/submap/cave/prepper1) +"r" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet, +/turf/simulated/floor/plating, +/area/submap/cave/prepper1) +"s" = ( +/obj/structure/table/steel, +/obj/item/device/flashlight/lantern, +/turf/simulated/floor/plating, +/area/submap/cave/prepper1) +"t" = ( +/obj/structure/table/rack, +/obj/item/weapon/gun/projectile/shotgun/pump/rifle/lever, +/obj/item/ammo_magazine/clip/c762, +/obj/item/ammo_magazine/clip/c762, +/turf/simulated/floor/plating, +/area/submap/cave/prepper1) + +(1,1,1) = {" +a +a +a +a +a +a +a +a +a +a +"} +(2,1,1) = {" +a +a +b +b +l +l +b +b +a +a +"} +(3,1,1) = {" +a +b +b +g +i +i +o +b +b +a +"} +(4,1,1) = {" +a +b +c +h +i +i +i +q +b +a +"} +(5,1,1) = {" +a +b +d +i +i +i +i +r +b +a +"} +(6,1,1) = {" +a +b +e +i +i +i +i +s +b +a +"} +(7,1,1) = {" +a +b +f +j +i +i +p +t +b +a +"} +(8,1,1) = {" +a +b +b +k +m +n +n +b +b +a +"} +(9,1,1) = {" +a +a +b +b +b +b +b +b +a +a +"} +(10,1,1) = {" +a +a +a +a +a +a +a +a +a +a +"} diff --git a/maps/expedition_vr/beach/submaps/quarantineshuttle.dmm b/maps/expedition_vr/beach/submaps/quarantineshuttle.dmm new file mode 100644 index 0000000000..beeb7784ff --- /dev/null +++ b/maps/expedition_vr/beach/submaps/quarantineshuttle.dmm @@ -0,0 +1,1518 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/turf/template_noop, +/area/template_noop) +"ab" = ( +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/qShuttle) +"ac" = ( +/obj/item/clothing/head/cone, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/qShuttle) +"ad" = ( +/turf/simulated/shuttle/wall, +/area/submap/cave/qShuttle) +"ae" = ( +/obj/structure/inflatable, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/qShuttle) +"af" = ( +/obj/structure/inflatable/door, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/qShuttle) +"ag" = ( +/obj/structure/shuttle/engine/heater{ + dir = 4; + icon_state = "heater" + }, +/turf/simulated/shuttle/plating, +/area/submap/cave/qShuttle) +"ah" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 8; + icon_state = "propulsion_l" + }, +/turf/simulated/shuttle/plating, +/area/submap/cave/qShuttle) +"ai" = ( +/obj/structure/grille, +/obj/structure/shuttle/window, +/obj/machinery/door/blast/regular{ + dir = 8; + id = "QShuttlePoIDoors"; + layer = 3.3; + name = "Emergency Lockdown Shutters" + }, +/obj/item/tape/medical{ + dir = 4; + icon_state = "tape_door_0"; + layer = 3.4 + }, +/turf/simulated/shuttle/plating, +/area/submap/cave/qShuttle) +"aj" = ( +/turf/simulated/shuttle/wall/hard_corner, +/area/submap/cave/qShuttle) +"ak" = ( +/obj/machinery/door/airlock/external{ + desc = "It opens and closes. It is stamped with the logo of Major Bill's Transportation"; + frequency = 1380; + icon_state = "door_locked"; + id_tag = null; + locked = 1; + name = "MBT-540" + }, +/obj/item/tape/medical{ + dir = 4; + icon_state = "tape_door_0"; + layer = 3.4 + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_white" + }, +/area/submap/cave/qShuttle) +"al" = ( +/obj/structure/sign/biohazard{ + dir = 1 + }, +/turf/simulated/shuttle/wall/hard_corner, +/area/submap/cave/qShuttle) +"am" = ( +/obj/structure/toilet{ + dir = 4 + }, +/obj/effect/decal/cleanable/vomit, +/obj/effect/decal/remains/human, +/turf/simulated/shuttle/floor, +/area/submap/cave/qShuttle) +"an" = ( +/obj/machinery/door/airlock{ + name = "Restroom" + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_white" + }, +/area/submap/cave/qShuttle) +"ao" = ( +/obj/effect/decal/cleanable/vomit, +/turf/simulated/shuttle/floor{ + icon_state = "floor_white" + }, +/area/submap/cave/qShuttle) +"ap" = ( +/obj/effect/decal/remains/human, +/obj/item/clothing/suit/space/emergency, +/obj/item/clothing/head/helmet/space/emergency, +/turf/simulated/shuttle/floor{ + icon_state = "floor_white" + }, +/area/submap/cave/qShuttle) +"aq" = ( +/obj/structure/bed/chair, +/turf/simulated/shuttle/floor{ + icon_state = "floor_white" + }, +/area/submap/cave/qShuttle) +"ar" = ( +/obj/structure/bed/chair, +/obj/effect/decal/remains/human, +/obj/item/clothing/suit/space/emergency, +/turf/simulated/shuttle/floor{ + icon_state = "floor_white" + }, +/area/submap/cave/qShuttle) +"as" = ( +/obj/machinery/vending/snack{ + contraband = null; + products = list(/obj/item/weapon/reagent_containers/food/snacks/candy = 0, /obj/item/weapon/reagent_containers/food/drinks/dry_ramen = 0, /obj/item/weapon/reagent_containers/food/snacks/chips = 0, /obj/item/weapon/reagent_containers/food/snacks/sosjerky = 0, /obj/item/weapon/reagent_containers/food/snacks/no_raisin = 0, /obj/item/weapon/reagent_containers/food/snacks/packaged/spacetwinkie = 0, /obj/item/weapon/reagent_containers/food/snacks/cheesiehonkers = 0, /obj/item/weapon/reagent_containers/food/snacks/tastybread = 0, /obj/item/weapon/reagent_containers/food/snacks/skrellsnacks = 0) + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_white" + }, +/area/submap/cave/qShuttle) +"at" = ( +/obj/machinery/vending/cola{ + contraband = null; + products = list(/obj/item/weapon/reagent_containers/food/drinks/cans/cola = 0, /obj/item/weapon/reagent_containers/food/drinks/cans/space_mountain_wind = 0, /obj/item/weapon/reagent_containers/food/drinks/cans/dr_gibb = 0, /obj/item/weapon/reagent_containers/food/drinks/cans/starkist = 0, /obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle = 0, /obj/item/weapon/reagent_containers/food/drinks/cans/space_up = 0, /obj/item/weapon/reagent_containers/food/drinks/cans/iced_tea = 0, /obj/item/weapon/reagent_containers/food/drinks/cans/grape_juice = 0, /obj/item/weapon/reagent_containers/food/drinks/cans/gingerale = 0) + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_white" + }, +/area/submap/cave/qShuttle) +"au" = ( +/obj/structure/closet/crate/secure/loot, +/turf/simulated/shuttle/floor{ + icon_state = "floor_yellow" + }, +/area/submap/cave/qShuttle) +"av" = ( +/obj/item/weapon/pickaxe/drill, +/turf/simulated/shuttle/floor{ + icon_state = "floor_yellow" + }, +/area/submap/cave/qShuttle) +"aw" = ( +/obj/item/clothing/mask/breath, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/shuttle/floor{ + icon_state = "floor_white" + }, +/area/submap/cave/qShuttle) +"ax" = ( +/obj/effect/decal/cleanable/generic, +/turf/simulated/shuttle/floor{ + icon_state = "floor_white" + }, +/area/submap/cave/qShuttle) +"ay" = ( +/obj/effect/decal/remains/xeno, +/turf/simulated/shuttle/floor{ + icon_state = "floor_yellow" + }, +/area/submap/cave/qShuttle) +"az" = ( +/obj/item/trash/syndi_cakes, +/turf/simulated/shuttle/floor{ + icon_state = "floor_yellow" + }, +/area/submap/cave/qShuttle) +"aA" = ( +/turf/simulated/shuttle/floor{ + icon_state = "floor_yellow" + }, +/area/submap/cave/qShuttle) +"aB" = ( +/obj/item/trash/cigbutt, +/obj/item/weapon/tank/emergency/oxygen, +/turf/simulated/shuttle/floor{ + icon_state = "floor_yellow" + }, +/area/submap/cave/qShuttle) +"aC" = ( +/obj/item/weapon/material/knife/tacknife/boot, +/obj/item/clothing/mask/breath, +/turf/simulated/shuttle/floor{ + icon_state = "floor_yellow" + }, +/area/submap/cave/qShuttle) +"aD" = ( +/obj/effect/decal/remains/human, +/turf/simulated/shuttle/floor{ + icon_state = "floor_white" + }, +/area/submap/cave/qShuttle) +"aE" = ( +/obj/item/trash/sosjerky, +/obj/item/weapon/storage/box/donut/empty, +/obj/item/weapon/reagent_containers/food/drinks/sillycup, +/turf/simulated/shuttle/floor{ + icon_state = "floor_white" + }, +/area/submap/cave/qShuttle) +"aF" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1; + health = 1e+006 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/shuttle/plating, +/area/submap/cave/qShuttle) +"aG" = ( +/obj/machinery/door/airlock/glass, +/turf/simulated/shuttle/floor{ + icon_state = "floor_yellow" + }, +/area/submap/cave/qShuttle) +"aH" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1; + health = 1e+006 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/shuttle/plating, +/area/submap/cave/qShuttle) +"aI" = ( +/obj/machinery/button{ + name = "Cargo Hatch" + }, +/turf/simulated/shuttle/wall, +/area/submap/cave/qShuttle) +"aJ" = ( +/obj/machinery/computer, +/turf/simulated/shuttle/floor, +/area/submap/cave/qShuttle) +"aK" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 8 + }, +/obj/effect/decal/cleanable/vomit, +/turf/simulated/shuttle/floor{ + icon_state = "floor_white" + }, +/area/submap/cave/qShuttle) +"aL" = ( +/obj/structure/prop/blackbox/quarantined_shuttle, +/turf/simulated/shuttle/floor, +/area/submap/cave/qShuttle) +"aM" = ( +/obj/item/trash/cheesie, +/obj/effect/decal/remains/human, +/turf/simulated/shuttle/floor{ + icon_state = "floor_white" + }, +/area/submap/cave/qShuttle) +"aN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/shuttle/floor{ + icon_state = "floor_yellow" + }, +/area/submap/cave/qShuttle) +"aO" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/shuttle/floor{ + icon_state = "floor_yellow" + }, +/area/submap/cave/qShuttle) +"aP" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/decal/remains/human, +/obj/item/clothing/mask/breath, +/turf/simulated/shuttle/floor{ + icon_state = "floor_white" + }, +/area/submap/cave/qShuttle) +"aQ" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_white" + }, +/area/submap/cave/qShuttle) +"aR" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_yellow" + }, +/area/submap/cave/qShuttle) +"aS" = ( +/obj/effect/decal/cleanable/vomit, +/turf/simulated/shuttle/floor{ + icon_state = "floor_yellow" + }, +/area/submap/cave/qShuttle) +"aT" = ( +/obj/item/clothing/head/helmet/space/emergency, +/turf/simulated/shuttle/floor{ + icon_state = "floor_white" + }, +/area/submap/cave/qShuttle) +"aU" = ( +/obj/machinery/door/airlock/engineering{ + icon_state = "door_locked"; + locked = 1; + name = "Cargo Bay" + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_yellow" + }, +/area/submap/cave/qShuttle) +"aV" = ( +/obj/item/weapon/virusdish/random, +/turf/simulated/shuttle/floor{ + icon_state = "floor_yellow" + }, +/area/submap/cave/qShuttle) +"aW" = ( +/obj/item/weapon/material/shard, +/turf/simulated/shuttle/floor{ + icon_state = "floor_yellow" + }, +/area/submap/cave/qShuttle) +"aX" = ( +/obj/item/device/paicard, +/turf/simulated/shuttle/floor{ + icon_state = "floor_yellow" + }, +/area/submap/cave/qShuttle) +"aY" = ( +/obj/machinery/door/blast/regular{ + name = "Cargo Door" + }, +/obj/item/tape/medical{ + dir = 4; + icon_state = "tape_door_0"; + layer = 3.4 + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_yellow" + }, +/area/submap/cave/qShuttle) +"aZ" = ( +/obj/effect/decal/remains/human, +/obj/item/clothing/under/mbill{ + desc = "A uniform belonging to Major Bill's Transportation, a shipping megacorporation. This looks at least a few decades out of date."; + name = "\improper old Major Bill's uniform" + }, +/obj/item/clothing/head/soft/mbill{ + desc = "It's a ballcap bearing the colors of Major Bill's Shipping. This one looks at least a few decades out of date."; + name = "old shipping cap" + }, +/turf/simulated/shuttle/floor, +/area/submap/cave/qShuttle) +"ba" = ( +/obj/item/trash/cigbutt, +/turf/simulated/shuttle/floor{ + icon_state = "floor_white" + }, +/area/submap/cave/qShuttle) +"bb" = ( +/obj/machinery/door/airlock/command{ + icon_state = "door_locked"; + locked = 1 + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_white" + }, +/area/submap/cave/qShuttle) +"bc" = ( +/obj/item/weapon/tank/emergency/oxygen/engi, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/shuttle/floor{ + icon_state = "floor_white" + }, +/area/submap/cave/qShuttle) +"bd" = ( +/obj/effect/decal/remains/human, +/obj/item/clothing/suit/space/emergency, +/obj/item/clothing/head/helmet/space/emergency, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/shuttle/floor{ + icon_state = "floor_yellow" + }, +/area/submap/cave/qShuttle) +"be" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1; + health = 1e+006 + }, +/turf/simulated/shuttle/plating, +/area/submap/cave/qShuttle) +"bf" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1; + health = 1e+006 + }, +/turf/simulated/shuttle/plating, +/area/submap/cave/qShuttle) +"bg" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1; + health = 1e+006 + }, +/turf/simulated/shuttle/plating, +/area/submap/cave/qShuttle) +"bh" = ( +/obj/item/clothing/suit/space/emergency, +/turf/simulated/shuttle/floor{ + icon_state = "floor_yellow" + }, +/area/submap/cave/qShuttle) +"bi" = ( +/obj/item/trash/candy, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/shuttle/floor{ + icon_state = "floor_white" + }, +/area/submap/cave/qShuttle) +"bj" = ( +/obj/structure/table/rack, +/obj/structure/loot_pile/maint/boxfort, +/turf/simulated/shuttle/floor{ + icon_state = "floor_yellow" + }, +/area/submap/cave/qShuttle) +"bk" = ( +/obj/structure/table/rack, +/obj/item/weapon/shovel, +/turf/simulated/shuttle/floor{ + icon_state = "floor_yellow" + }, +/area/submap/cave/qShuttle) +"bl" = ( +/obj/structure/closet/crate/secure/science{ + icon_state = "scisecurecrateopen"; + locked = 0; + name = "Virus Samples - FRAGILE"; + opened = 1 + }, +/obj/item/weapon/virusdish/random, +/obj/item/weapon/virusdish/random, +/obj/item/weapon/virusdish/random, +/turf/simulated/shuttle/floor{ + icon_state = "floor_yellow" + }, +/area/submap/cave/qShuttle) +"bm" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 8 + }, +/obj/effect/decal/remains/human, +/obj/item/clothing/under/mbill{ + desc = "A uniform belonging to Major Bill's Transportation, a shipping megacorporation. This looks at least a few decades out of date."; + name = "\improper old Major Bill's uniform" + }, +/obj/item/clothing/head/soft/mbill{ + desc = "It's a ballcap bearing the colors of Major Bill's Shipping. This one looks at least a few decades out of date."; + name = "old shipping cap" + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_white" + }, +/area/submap/cave/qShuttle) +"bn" = ( +/obj/structure/table/standard, +/obj/item/device/taperecorder, +/turf/simulated/shuttle/floor, +/area/submap/cave/qShuttle) +"bo" = ( +/obj/item/weapon/tool/crowbar/red, +/turf/simulated/shuttle/floor{ + icon_state = "floor_white" + }, +/area/submap/cave/qShuttle) +"bp" = ( +/obj/item/trash/chips, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/shuttle/floor{ + icon_state = "floor_yellow" + }, +/area/submap/cave/qShuttle) +"bq" = ( +/obj/structure/bed/chair, +/turf/simulated/shuttle/floor{ + icon_state = "floor_yellow" + }, +/area/submap/cave/qShuttle) +"br" = ( +/obj/structure/bed/chair, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/shuttle/floor{ + icon_state = "floor_white" + }, +/area/submap/cave/qShuttle) +"bs" = ( +/obj/structure/bed/chair, +/obj/effect/decal/remains/human, +/obj/item/clothing/mask/breath, +/obj/item/clothing/head/soft/mbill{ + desc = "It's a ballcap bearing the colors of Major Bill's Shipping. This one looks at least a few decades out of date."; + name = "old shipping cap" + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_white" + }, +/area/submap/cave/qShuttle) +"bt" = ( +/obj/structure/bed/chair, +/obj/effect/decal/remains/human, +/turf/simulated/shuttle/floor{ + icon_state = "floor_white" + }, +/area/submap/cave/qShuttle) +"bu" = ( +/obj/effect/decal/remains/xeno, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/shuttle/floor{ + icon_state = "floor_white" + }, +/area/submap/cave/qShuttle) +"bv" = ( +/obj/item/weapon/material/shard{ + icon_state = "medium" + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_yellow" + }, +/area/submap/cave/qShuttle) +"bw" = ( +/obj/effect/decal/remains/mouse, +/turf/simulated/shuttle/floor{ + icon_state = "floor_yellow" + }, +/area/submap/cave/qShuttle) +"bx" = ( +/obj/random/maintenance, +/turf/simulated/shuttle/floor{ + icon_state = "floor_yellow" + }, +/area/submap/cave/qShuttle) +"by" = ( +/obj/item/weapon/coin/silver, +/turf/simulated/shuttle/floor{ + icon_state = "floor_white" + }, +/area/submap/cave/qShuttle) +"bz" = ( +/obj/effect/decal/remains/human, +/obj/item/clothing/suit/space/emergency, +/obj/item/clothing/head/helmet/space/emergency, +/turf/simulated/shuttle/floor{ + icon_state = "floor_yellow" + }, +/area/submap/cave/qShuttle) +"bA" = ( +/obj/effect/decal/cleanable/generic, +/turf/simulated/shuttle/floor{ + icon_state = "floor_yellow" + }, +/area/submap/cave/qShuttle) +"bB" = ( +/obj/item/weapon/tank/emergency/oxygen/engi, +/turf/simulated/shuttle/floor{ + icon_state = "floor_yellow" + }, +/area/submap/cave/qShuttle) +"bC" = ( +/obj/item/trash/sosjerky, +/obj/effect/decal/remains/human, +/turf/simulated/shuttle/floor{ + icon_state = "floor_white" + }, +/area/submap/cave/qShuttle) +"bD" = ( +/obj/effect/decal/remains/human, +/obj/item/clothing/mask/breath, +/turf/simulated/shuttle/floor{ + icon_state = "floor_white" + }, +/area/submap/cave/qShuttle) +"bE" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/shuttle/plating, +/area/submap/cave/qShuttle) +"bF" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/shuttle/plating, +/area/submap/cave/qShuttle) +"bG" = ( +/obj/machinery/button{ + dir = 4; + name = "Cargo Access" + }, +/turf/simulated/shuttle/wall, +/area/submap/cave/qShuttle) +"bH" = ( +/obj/machinery/recharge_station, +/turf/simulated/shuttle/floor, +/area/submap/cave/qShuttle) +"bI" = ( +/obj/machinery/door/airlock{ + name = "Charge Station" + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_white" + }, +/area/submap/cave/qShuttle) +"bJ" = ( +/obj/item/trash/tastybread, +/obj/item/weapon/material/butterfly/boxcutter, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/shuttle/floor{ + icon_state = "floor_white" + }, +/area/submap/cave/qShuttle) +"bK" = ( +/obj/effect/decal/cleanable/vomit, +/obj/effect/decal/cleanable/mucus/mapped, +/turf/simulated/shuttle/floor{ + icon_state = "floor_white" + }, +/area/submap/cave/qShuttle) +"bL" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/decal/remains/xeno, +/turf/simulated/shuttle/floor{ + icon_state = "floor_white" + }, +/area/submap/cave/qShuttle) +"bM" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/item/weapon/card/id/external{ + desc = "An identification card of some sort. Looks like this one was issued by the Vir Independent Mining Corp."; + name = "VIMC identification card"; + rank = "Miner"; + registered_name = "Nadia Chu" + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_white" + }, +/area/submap/cave/qShuttle) +"bN" = ( +/obj/structure/table/rack, +/obj/item/weapon/storage/toolbox/emergency, +/turf/simulated/shuttle/floor{ + icon_state = "floor_white" + }, +/area/submap/cave/qShuttle) +"bO" = ( +/obj/structure/table/rack, +/obj/item/clothing/head/soft/mbill{ + desc = "It's a ballcap bearing the colors of Major Bill's Shipping. This one looks at least a few decades out of date."; + name = "old shipping cap" + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_white" + }, +/area/submap/cave/qShuttle) +"bP" = ( +/obj/structure/ore_box, +/turf/simulated/shuttle/floor{ + icon_state = "floor_yellow" + }, +/area/submap/cave/qShuttle) +"bQ" = ( +/obj/item/poster, +/turf/simulated/shuttle/floor{ + icon_state = "floor_yellow" + }, +/area/submap/cave/qShuttle) +"bR" = ( +/obj/structure/loot_pile/maint/technical, +/turf/simulated/shuttle/floor{ + icon_state = "floor_yellow" + }, +/area/submap/cave/qShuttle) +"bS" = ( +/obj/structure/sign/biohazard, +/turf/simulated/shuttle/wall/hard_corner, +/area/submap/cave/qShuttle) +"bT" = ( +/obj/item/tape/medical{ + icon_state = "tape_v_0" + }, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/qShuttle) +"bU" = ( +/obj/item/taperoll/medical, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/qShuttle) +"bV" = ( +/obj/item/tape/medical{ + dir = 1; + icon_state = "tape_dir_0" + }, +/obj/item/tape/medical{ + dir = 4; + icon_state = "tape_dir_0" + }, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/qShuttle) +"bW" = ( +/obj/item/tape/medical{ + icon_state = "tape_h_0" + }, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/qShuttle) +"bX" = ( +/obj/structure/lattice, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/qShuttle) +"bY" = ( +/obj/structure/sign/warning/secure_area, +/turf/simulated/wall/iron, +/area/submap/cave/qShuttle) +"bZ" = ( +/obj/structure/sign/kiddieplaque{ + desc = "By order of the S.D.D.C, this site or craft is to be buried and not disturbed until such time that sterility can be confirmed. Dated: 20/12/2491 "; + name = "\improper Sif Department of Disease Control notice" + }, +/turf/simulated/wall/iron, +/area/submap/cave/qShuttle) +"ca" = ( +/obj/structure/sign/warning, +/turf/simulated/wall/iron, +/area/submap/cave/qShuttle) +"cb" = ( +/obj/item/bodybag, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/qShuttle) +"cc" = ( +/obj/structure/table/steel, +/obj/item/weapon/storage/box/bodybags, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/qShuttle) +"cd" = ( +/obj/structure/table/steel, +/obj/item/clothing/suit/bio_suit, +/obj/random/medical/lite, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/qShuttle) +"ce" = ( +/obj/structure/closet/l3closet/virology, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/qShuttle) +"cf" = ( +/obj/item/weapon/reagent_containers/syringe/antiviral, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/qShuttle) +"cg" = ( +/obj/structure/dispenser/oxygen, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/qShuttle) +"ch" = ( +/obj/structure/table/steel, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/qShuttle) +"ci" = ( +/obj/structure/table/steel, +/obj/item/weapon/reagent_containers/syringe/antiviral, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/qShuttle) +"cj" = ( +/obj/structure/table/steel, +/obj/item/weapon/reagent_containers/spray/cleaner{ + desc = "Someone has crossed out the 'Space' from Space Cleaner and written in Chemistry. Scrawled on the back is, 'Okay, whoever filled this with polytrinic acid, it was only funny the first time. It was hard enough replacing the CMO's first cat!'"; + name = "Chemistry Cleaner" + }, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/qShuttle) +"ck" = ( +/obj/structure/table/steel, +/obj/item/weapon/tool/crowbar/power, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/qShuttle) +"cl" = ( +/obj/structure/table/rack, +/obj/item/clothing/head/bio_hood, +/obj/item/clothing/suit/bio_suit, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/qShuttle) +"cm" = ( +/obj/item/weapon/weldingtool/largetank, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/qShuttle) +"cn" = ( +/obj/structure/closet/crate/medical, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/qShuttle) + +(1,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +ab +aa +aa +aa +aa +aa +aa +aa +aa +"} +(2,1,1) = {" +aa +aa +aa +aa +aa +aa +ab +ac +ab +aa +aa +ab +ab +ab +ab +ab +ab +ab +aa +aa +aa +aa +aa +aa +aa +"} +(3,1,1) = {" +aa +aa +aa +aa +aa +aa +ab +ab +ab +ad +ai +ai +ai +ad +ab +ac +ab +ab +ab +ac +aa +aa +aa +aa +aa +"} +(4,1,1) = {" +aa +aa +aa +aa +aa +aa +ab +ab +ad +ad +aJ +aZ +aJ +ad +ad +ab +ab +ab +ab +ab +ab +aa +aa +aa +aa +"} +(5,1,1) = {" +aa +aa +aa +aa +aa +aa +ab +ad +ad +ad +aK +ba +bm +ad +ad +ad +bT +bV +ab +ab +ab +aa +aa +aa +aa +"} +(6,1,1) = {" +aa +aa +aa +aa +aa +aa +ab +ai +am +ad +aL +ba +bn +ad +bH +ai +ab +bW +ab +cg +cn +aa +aa +aa +aa +"} +(7,1,1) = {" +aa +aa +aa +aa +aa +aa +ae +aj +an +ad +ad +bb +ad +ad +bI +aj +ae +bW +ab +ch +ch +aa +aa +aa +aa +"} +(8,1,1) = {" +aa +aa +aa +aa +aa +aa +af +ak +ao +aw +aM +bc +bo +aD +bJ +ak +ae +bW +ab +ci +ab +aa +aa +aa +aa +"} +(9,1,1) = {" +aa +aa +aa +aa +aa +aa +ae +ak +ap +ax +aN +bd +bp +by +bK +ak +af +bW +ab +cj +ab +aa +aa +aa +aa +"} +(10,1,1) = {" +aa +aa +aa +aa +aa +aa +ae +al +ad +ay +aO +ad +bq +aA +ad +bS +ae +bW +ab +ck +ab +aa +aa +aa +aa +"} +(11,1,1) = {" +aa +aa +aa +aa +aa +aa +ab +ai +aq +az +aP +be +br +bz +bL +ai +ab +bW +bX +cl +ab +aa +aa +aa +aa +"} +(12,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aq +aA +aQ +bf +bs +aA +aQ +ad +ab +bW +bY +ab +ab +aa +aa +aa +aa +"} +(13,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ai +ar +aB +aQ +bg +bt +bA +bM +ai +ab +bW +bZ +ab +ab +aa +aa +aa +aa +"} +(14,1,1) = {" +aa +aa +aa +aa +aa +aa +ab +ad +ad +aC +aR +ad +bq +bB +ad +ad +ab +bW +ca +cm +ab +aa +aa +aa +aa +"} +(15,1,1) = {" +aa +aa +aa +aa +aa +ab +ab +ad +as +aD +aS +bh +aN +bC +bN +ad +bU +bW +cb +ab +ab +aa +aa +aa +aa +"} +(16,1,1) = {" +aa +aa +aa +aa +aa +ac +ab +ad +at +aE +aT +bi +bu +bD +bO +ad +ab +bW +cb +cb +aa +aa +aa +aa +aa +"} +(17,1,1) = {" +aa +aa +aa +aa +aa +ab +ab +ad +ad +ad +aU +ad +aU +ad +ad +ad +ab +bW +cb +cb +aa +aa +aa +aa +aa +"} +(18,1,1) = {" +aa +aa +aa +aa +aa +ab +ab +ad +au +aF +aV +bj +bv +bE +bP +ad +ab +bW +ab +ab +aa +aa +aa +aa +aa +"} +(19,1,1) = {" +aa +aa +aa +aa +aa +aa +ab +ad +av +aG +aA +aA +aA +aG +bQ +ad +ab +bW +cc +ab +aa +aa +aa +aa +aa +"} +(20,1,1) = {" +aa +aa +aa +aa +aa +aa +ab +ad +au +aH +aW +bk +bw +bF +bR +ad +ab +bW +cd +ab +aa +aa +aa +aa +aa +"} +(21,1,1) = {" +aa +aa +aa +aa +aa +ad +ad +ad +ad +ad +aX +aA +aV +ad +ad +ad +ad +ad +ce +ab +ab +aa +aa +aa +aa +"} +(22,1,1) = {" +aa +aa +aa +aa +aa +ad +ag +ad +ag +aI +aA +bl +bx +ad +ag +ad +ag +ad +ab +ab +ab +aa +aa +aa +aa +"} +(23,1,1) = {" +aa +aa +aa +aa +ab +ad +ah +ad +ah +ad +aY +aY +aY +bG +ah +ad +ah +ad +cf +ab +ac +aa +aa +aa +aa +"} +(24,1,1) = {" +aa +aa +aa +aa +ab +ac +ab +aa +aa +ab +ab +ab +ab +ab +ab +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(25,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} diff --git a/maps/expedition_vr/beach/submaps/ritual.dmm b/maps/expedition_vr/beach/submaps/ritual.dmm new file mode 100644 index 0000000000..9506d7e2cb --- /dev/null +++ b/maps/expedition_vr/beach/submaps/ritual.dmm @@ -0,0 +1,70 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/CorgiRitual) +"b" = ( +/obj/structure/plushie/ian, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/CorgiRitual) +"c" = ( +/obj/item/weapon/flame/candle/everburn, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/CorgiRitual) +"d" = ( +/obj/structure/plushie/ian{ + dir = 8 + }, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/CorgiRitual) +"e" = ( +/obj/structure/plushie/ian{ + dir = 4 + }, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/CorgiRitual) +"f" = ( +/obj/structure/ghost_pod/manual/corgi, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/CorgiRitual) +"g" = ( +/obj/structure/plushie/ian{ + dir = 1 + }, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/CorgiRitual) + +(1,1,1) = {" +a +a +e +e +a +"} +(2,1,1) = {" +a +c +a +c +a +"} +(3,1,1) = {" +b +a +f +a +g +"} +(4,1,1) = {" +a +c +a +c +a +"} +(5,1,1) = {" +a +d +d +a +a +"} diff --git a/maps/expedition_vr/beach/submaps/spatial_anomaly.dmm b/maps/expedition_vr/beach/submaps/spatial_anomaly.dmm new file mode 100644 index 0000000000..9b0f64aad9 --- /dev/null +++ b/maps/expedition_vr/beach/submaps/spatial_anomaly.dmm @@ -0,0 +1,1256 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/simulated/wall/solidrock, +/area/submap/spatial_anomaly) +"b" = ( +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/spatial_anomaly) +"c" = ( +/obj/effect/map_effect/portal/master/side_a{ + dir = 4; + icon_state = "portal_side_a"; + portal_id = "spatial_anomaly_5" + }, +/obj/effect/map_effect/perma_light/brighter{ + light_color = "#ff00ff" + }, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/spatial_anomaly) +"d" = ( +/obj/effect/map_effect/portal/master/side_b{ + dir = 8; + icon_state = "portal_side_b"; + portal_id = "spatial_anomaly_5" + }, +/obj/effect/map_effect/perma_light/brighter{ + light_color = "#ff00ff" + }, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/spatial_anomaly) +"e" = ( +/obj/structure/barricade, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/spatial_anomaly) +"f" = ( +/turf/template_noop, +/area/template_noop) +"g" = ( +/obj/effect/map_effect/portal/master/side_b{ + portal_id = "spatial_anomaly_4" + }, +/obj/effect/map_effect/perma_light/brighter{ + light_color = "#ff00ff" + }, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/spatial_anomaly) +"h" = ( +/obj/effect/map_effect/portal/line/side_a{ + icon_state = "portal_line_side_a"; + dir = 4 + }, +/obj/effect/map_effect/perma_light/brighter{ + light_color = "#ff00ff" + }, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/spatial_anomaly) +"i" = ( +/obj/effect/map_effect/portal/line/side_b{ + icon_state = "portal_line_side_b"; + dir = 8 + }, +/obj/effect/map_effect/perma_light/brighter{ + light_color = "#ff00ff" + }, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/spatial_anomaly) +"j" = ( +/turf/simulated/floor/lava, +/area/submap/spatial_anomaly) +"k" = ( +/obj/item/weapon/disposable_teleporter/slime, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/spatial_anomaly) +"l" = ( +/obj/effect/map_effect/perma_light/brighter{ + light_color = "#ff00ff" + }, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/spatial_anomaly) +"m" = ( +/obj/effect/map_effect/perma_light/brighter{ + light_color = "#ff00ff" + }, +/turf/simulated/floor/plating/external, +/area/submap/spatial_anomaly) +"n" = ( +/obj/effect/map_effect/portal/master/side_a{ + dir = 4; + icon_state = "portal_side_a"; + portal_id = "spatial_anomaly_3" + }, +/obj/effect/map_effect/perma_light/brighter{ + light_color = "#ff00ff" + }, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/spatial_anomaly) +"o" = ( +/obj/effect/map_effect/portal/master/side_a{ + dir = 1; + icon_state = "portal_side_a"; + portal_id = "spatial_anomaly_4" + }, +/obj/effect/map_effect/perma_light/brighter{ + light_color = "#ff00ff" + }, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/spatial_anomaly) +"p" = ( +/obj/effect/map_effect/portal/master/side_b{ + dir = 8; + icon_state = "portal_side_b"; + portal_id = "spatial_anomaly_3" + }, +/obj/effect/map_effect/perma_light/brighter{ + light_color = "#ff00ff" + }, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/spatial_anomaly) +"q" = ( +/obj/effect/map_effect/portal/master/side_b{ + portal_id = "spatial_anomaly_2" + }, +/obj/effect/map_effect/perma_light/brighter{ + light_color = "#ff00ff" + }, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/spatial_anomaly) +"r" = ( +/obj/effect/map_effect/portal/line/side_b, +/obj/effect/map_effect/perma_light/brighter{ + light_color = "#ff00ff" + }, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/spatial_anomaly) +"s" = ( +/obj/machinery/crystal/lava, +/turf/simulated/floor/lava, +/area/submap/spatial_anomaly) +"t" = ( +/turf/simulated/floor/plating/external, +/area/submap/spatial_anomaly) +"u" = ( +/obj/effect/map_effect/portal/master/side_a{ + portal_id = "spatial_anomaly_1" + }, +/obj/effect/map_effect/perma_light/brighter{ + light_color = "#ff00ff" + }, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/spatial_anomaly) +"v" = ( +/obj/item/weapon/stool/padded, +/turf/simulated/floor/plating/external, +/area/submap/spatial_anomaly) +"w" = ( +/obj/structure/table/steel_reinforced, +/obj/item/device/xenoarch_multi_tool, +/turf/simulated/floor/plating/external, +/area/submap/spatial_anomaly) +"x" = ( +/turf/simulated/wall/solidrock, +/area/template_noop) +"y" = ( +/obj/random/technology_scanner, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/spatial_anomaly) +"z" = ( +/obj/structure/table/steel_reinforced, +/obj/random/unidentified_medicine/scientific, +/turf/simulated/floor/plating/external, +/area/submap/spatial_anomaly) +"A" = ( +/obj/structure/table/steel_reinforced, +/obj/random/tool/power, +/turf/simulated/floor/plating/external, +/area/submap/spatial_anomaly) +"B" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/ore/diamond, +/turf/simulated/floor/plating/external, +/area/submap/spatial_anomaly) +"C" = ( +/obj/structure/sign/warning/lava, +/turf/simulated/wall, +/area/submap/spatial_anomaly) +"D" = ( +/obj/effect/map_effect/portal/line/side_a, +/obj/effect/map_effect/perma_light/brighter{ + light_color = "#ff00ff" + }, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/spatial_anomaly) +"E" = ( +/obj/structure/table/rack, +/obj/item/weapon/pickaxe/jackhammer, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/spatial_anomaly) +"F" = ( +/obj/effect/map_effect/portal/master/side_a{ + dir = 1; + icon_state = "portal_side_a"; + portal_id = "spatial_anomaly_2" + }, +/obj/effect/map_effect/perma_light/brighter{ + light_color = "#ff00ff" + }, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/spatial_anomaly) +"G" = ( +/obj/effect/map_effect/portal/line/side_a{ + icon_state = "portal_line_side_a"; + dir = 1 + }, +/obj/effect/map_effect/perma_light/brighter{ + light_color = "#ff00ff" + }, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/spatial_anomaly) +"H" = ( +/turf/unsimulated/wall, +/area/template_noop) +"I" = ( +/obj/effect/map_effect/portal/master/side_b{ + dir = 1; + icon_state = "portal_side_b"; + portal_id = "spatial_anomaly_1" + }, +/obj/effect/map_effect/perma_light/brighter{ + light_color = "#ff00ff" + }, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/spatial_anomaly) +"J" = ( +/obj/effect/map_effect/portal/line/side_b{ + icon_state = "portal_line_side_b"; + dir = 1 + }, +/obj/effect/map_effect/perma_light/brighter{ + light_color = "#ff00ff" + }, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/spatial_anomaly) +"K" = ( +/obj/item/weapon/mining_scanner, +/obj/structure/table/rack, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/spatial_anomaly) +"L" = ( +/obj/item/weapon/storage/belt/archaeology, +/obj/effect/decal/remains/human, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/spatial_anomaly) +"M" = ( +/obj/structure/bookcase/manuals/xenoarchaeology, +/turf/simulated/floor/plating/external, +/area/submap/spatial_anomaly) +"N" = ( +/obj/item/weapon/pickaxe/brush, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/spatial_anomaly) +"O" = ( +/obj/item/weapon/pickaxe/one_pick, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/spatial_anomaly) +"P" = ( +/obj/item/weapon/pickaxe/four_pick, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/spatial_anomaly) +"Q" = ( +/obj/effect/decal/remains/human, +/turf/simulated/floor/plating/external, +/area/submap/spatial_anomaly) +"R" = ( +/obj/item/weapon/pickaxe/five_pick, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/spatial_anomaly) +"S" = ( +/obj/item/weapon/pickaxe/six_pick, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/spatial_anomaly) +"T" = ( +/obj/item/weapon/pickaxe/two_pick, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/spatial_anomaly) +"U" = ( +/obj/item/device/measuring_tape, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/spatial_anomaly) +"X" = ( +/obj/item/weapon/pickaxe/three_pick, +/turf/simulated/floor/outdoors/rocks/caves, +/area/submap/spatial_anomaly) +"Y" = ( +/obj/item/weapon/pickaxe/excavationdrill, +/turf/simulated/floor/plating/external, +/area/submap/spatial_anomaly) + +(1,1,1) = {" +f +f +f +f +f +f +f +f +f +f +f +f +f +f +f +f +f +f +f +f +f +f +f +f +f +f +f +f +f +f +"} +(2,1,1) = {" +f +f +f +f +f +f +f +f +f +f +f +f +f +f +f +f +f +f +f +f +f +f +f +f +f +f +f +f +f +f +"} +(3,1,1) = {" +f +f +f +f +f +f +f +f +x +a +a +a +a +a +x +x +x +x +f +f +f +f +f +f +f +f +f +f +f +f +"} +(4,1,1) = {" +f +f +f +f +f +x +a +a +a +a +a +a +a +a +a +a +a +a +a +a +f +f +f +f +f +f +f +f +f +f +"} +(5,1,1) = {" +f +f +f +x +a +a +a +a +a +a +a +l +b +b +b +b +b +a +a +a +a +a +a +a +f +f +f +f +f +f +"} +(6,1,1) = {" +f +f +x +a +a +a +a +a +a +a +a +b +a +a +a +a +R +a +a +a +a +a +a +a +a +a +a +f +f +f +"} +(7,1,1) = {" +f +f +x +a +t +g +b +O +b +a +a +b +a +a +a +a +b +a +a +a +b +T +b +I +t +a +a +f +f +f +"} +(8,1,1) = {" +f +f +x +a +a +a +a +b +b +a +a +b +a +a +a +a +p +a +a +l +b +b +b +J +t +a +a +f +f +f +"} +(9,1,1) = {" +f +f +x +a +a +a +a +a +b +a +a +b +a +a +a +a +t +a +a +b +a +b +b +J +t +a +a +f +f +f +"} +(10,1,1) = {" +f +f +x +a +t +t +a +a +l +a +a +b +b +b +o +t +a +a +a +b +a +a +a +a +a +a +f +f +f +f +"} +(11,1,1) = {" +f +f +x +a +c +h +a +a +b +a +a +a +a +a +a +a +a +a +a +b +b +b +b +b +a +a +f +f +f +f +"} +(12,1,1) = {" +f +f +x +a +b +b +a +a +b +b +t +a +a +a +a +a +a +a +a +a +a +X +b +l +a +a +a +f +f +f +"} +(13,1,1) = {" +f +f +x +a +b +b +a +b +b +b +t +t +B +a +a +t +q +b +b +b +b +b +b +b +a +a +a +f +f +f +"} +(14,1,1) = {" +f +x +a +a +b +b +b +b +y +b +t +v +w +a +a +t +r +b +b +b +a +a +a +a +a +a +a +f +f +f +"} +(15,1,1) = {" +f +x +a +a +b +b +C +N +b +t +t +t +z +a +a +t +r +b +b +b +b +b +b +b +a +a +a +f +f +f +"} +(16,1,1) = {" +f +x +a +a +j +b +b +b +b +m +t +Q +A +a +a +a +a +a +a +a +b +b +b +t +a +a +a +f +f +f +"} +(17,1,1) = {" +f +x +a +a +j +j +b +b +a +a +a +a +a +a +a +a +a +a +a +a +b +L +m +t +a +a +a +f +f +f +"} +(18,1,1) = {" +f +x +a +a +j +j +s +a +a +a +a +a +a +a +b +b +b +b +b +b +b +b +t +t +a +a +a +f +f +f +"} +(19,1,1) = {" +f +x +a +a +s +j +a +a +b +b +b +l +b +b +b +b +S +b +l +b +b +Y +t +M +a +a +a +f +f +f +"} +(20,1,1) = {" +f +f +x +a +j +j +a +a +P +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +f +f +f +f +"} +(21,1,1) = {" +f +f +x +a +k +b +a +a +b +a +a +a +a +t +a +a +a +a +a +a +a +a +a +a +a +a +f +f +f +f +"} +(22,1,1) = {" +f +f +x +a +b +b +a +a +b +a +a +a +a +n +a +a +t +u +b +b +U +b +F +t +a +a +f +f +f +f +"} +(23,1,1) = {" +f +f +x +a +d +i +a +a +b +a +a +a +a +b +a +a +t +D +b +b +b +b +G +t +a +a +f +f +f +f +"} +(24,1,1) = {" +f +f +x +a +t +t +a +a +l +b +b +b +b +b +a +a +t +D +b +b +b +b +G +t +a +a +f +f +f +f +"} +(25,1,1) = {" +f +f +f +x +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +b +a +a +a +a +f +f +f +f +f +"} +(26,1,1) = {" +f +f +f +f +x +a +a +a +a +a +a +a +a +a +a +a +a +b +e +l +E +a +a +a +f +f +f +f +f +f +"} +(27,1,1) = {" +f +f +f +f +f +f +f +x +a +a +a +a +f +H +f +f +H +l +e +b +K +a +a +f +f +f +f +f +f +f +"} +(28,1,1) = {" +f +f +f +f +f +f +f +f +f +f +f +f +f +H +f +f +H +b +a +a +a +a +f +f +f +f +f +f +f +f +"} +(29,1,1) = {" +f +f +f +f +f +f +f +f +f +f +f +f +f +H +H +H +a +a +a +a +f +f +f +f +f +f +f +f +f +f +"} +(30,1,1) = {" +f +f +f +f +f +f +f +f +f +f +f +f +f +f +f +f +f +f +f +f +f +f +f +f +f +f +f +f +f +f +"} diff --git a/maps/expedition_vr/beach/submaps/speakeasy_vr.dmm b/maps/expedition_vr/beach/submaps/speakeasy_vr.dmm new file mode 100644 index 0000000000..a817bd965c --- /dev/null +++ b/maps/expedition_vr/beach/submaps/speakeasy_vr.dmm @@ -0,0 +1,458 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/template_noop, +/area/submap/Speakeasy) +"c" = ( +/turf/simulated/floor/carpet/turcarpet, +/area/submap/Speakeasy) +"f" = ( +/obj/structure/table/gamblingtable, +/turf/simulated/floor/wood, +/area/submap/Speakeasy) +"g" = ( +/obj/structure/bed/chair/wood{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/submap/Speakeasy) +"h" = ( +/obj/random/handgun, +/turf/simulated/floor/wood, +/area/submap/Speakeasy) +"i" = ( +/obj/item/clothing/head/fedora, +/turf/simulated/floor/wood, +/area/submap/Speakeasy) +"j" = ( +/obj/structure/bookcase, +/turf/simulated/floor/wood, +/area/submap/Speakeasy) +"k" = ( +/obj/item/weapon/stool/padded, +/turf/simulated/floor/wood, +/area/submap/Speakeasy) +"l" = ( +/obj/structure/bed/chair/comfy/black, +/turf/simulated/floor/carpet/turcarpet, +/area/submap/Speakeasy) +"m" = ( +/obj/structure/table/woodentable, +/obj/machinery/light/poi{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/submap/Speakeasy) +"n" = ( +/obj/structure/reagent_dispensers/beerkeg, +/turf/simulated/floor/wood, +/area/submap/Speakeasy) +"o" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/wood, +/area/submap/Speakeasy) +"p" = ( +/obj/machinery/media/jukebox, +/turf/simulated/floor/wood, +/area/submap/Speakeasy) +"s" = ( +/obj/structure/bed/chair/wood{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/submap/Speakeasy) +"u" = ( +/obj/structure/table/gamblingtable, +/obj/machinery/light/poi{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/submap/Speakeasy) +"v" = ( +/obj/structure/table/fancyblack, +/obj/item/clothing/mask/smokable/cigarette/cigar, +/turf/simulated/floor/carpet/turcarpet, +/area/submap/Speakeasy) +"w" = ( +/turf/simulated/wall/wood, +/area/submap/Speakeasy) +"x" = ( +/obj/structure/bed/chair/sofa/left/blue{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/submap/Speakeasy) +"B" = ( +/turf/simulated/floor/wood, +/area/submap/Speakeasy) +"C" = ( +/turf/simulated/mineral/floor/cave, +/area/submap/Speakeasy) +"D" = ( +/obj/structure/bed/chair/sofa/corner/black{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/submap/Speakeasy) +"E" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/submap/Speakeasy) +"H" = ( +/obj/machinery/vending/boozeomat, +/turf/simulated/floor/wood, +/area/submap/Speakeasy) +"I" = ( +/obj/structure/table/woodentable, +/obj/random/drinkbottle, +/turf/simulated/floor/wood, +/area/submap/Speakeasy) +"K" = ( +/obj/effect/floor_decal/corner/black/diagonal, +/turf/simulated/floor/tiled/neutral, +/area/submap/Speakeasy) +"L" = ( +/obj/structure/bed/chair/wood{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/submap/Speakeasy) +"M" = ( +/obj/machinery/light/poi{ + dir = 1 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/submap/Speakeasy) +"N" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood, +/area/submap/Speakeasy) +"O" = ( +/obj/machinery/light/poi{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/submap/Speakeasy) +"R" = ( +/obj/structure/bed/chair/sofa/black{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/submap/Speakeasy) +"U" = ( +/obj/structure/bed/chair/sofa/right/blue{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/submap/Speakeasy) +"V" = ( +/obj/structure/table/woodentable, +/obj/machinery/chemical_dispenser/bar_soft/full{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/submap/Speakeasy) +"W" = ( +/obj/structure/bed/chair/wood, +/turf/simulated/floor/wood, +/area/submap/Speakeasy) +"X" = ( +/obj/structure/table/woodentable, +/obj/machinery/chemical_dispenser/bar_alc/full, +/turf/simulated/floor/wood, +/area/submap/Speakeasy) +"Y" = ( +/obj/structure/table/fancyblack, +/obj/random/cash/big, +/turf/simulated/floor/carpet/turcarpet, +/area/submap/Speakeasy) + +(1,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(2,1,1) = {" +a +w +w +w +w +w +w +w +w +w +w +w +a +a +a +a +"} +(3,1,1) = {" +a +w +n +i +h +w +X +B +V +B +p +w +w +w +a +a +"} +(4,1,1) = {" +a +w +n +B +B +w +H +B +N +k +B +x +D +w +a +a +"} +(5,1,1) = {" +a +w +w +j +j +w +w +B +I +k +B +f +R +w +a +a +"} +(6,1,1) = {" +a +w +B +B +B +B +w +O +N +k +B +f +U +w +w +a +"} +(7,1,1) = {" +a +w +M +Y +c +B +w +B +I +k +B +B +B +B +w +C +"} +(8,1,1) = {" +a +w +l +v +E +B +o +B +N +k +B +B +B +B +o +C +"} +(9,1,1) = {" +a +w +M +Y +c +B +w +B +N +k +B +B +B +B +w +C +"} +(10,1,1) = {" +a +w +B +B +B +B +w +B +I +k +B +B +B +B +w +a +"} +(11,1,1) = {" +a +w +w +w +w +w +w +B +B +B +K +K +K +s +w +a +"} +(12,1,1) = {" +a +a +w +f +g +B +B +B +B +B +K +K +K +f +w +a +"} +(13,1,1) = {" +a +a +w +L +B +W +N +N +g +B +K +K +K +L +w +a +"} +(14,1,1) = {" +a +a +w +w +B +W +m +N +g +B +W +u +g +w +w +a +"} +(15,1,1) = {" +a +a +a +w +w +w +w +w +w +w +w +w +w +w +a +a +"} +(16,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} diff --git a/maps/expedition_vr/beach/submaps/temple.dmm b/maps/expedition_vr/beach/submaps/temple.dmm new file mode 100644 index 0000000000..53e0515434 --- /dev/null +++ b/maps/expedition_vr/beach/submaps/temple.dmm @@ -0,0 +1,886 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/template_noop, +/area/submap/AbandonedTemple) +"b" = ( +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/AbandonedTemple) +"c" = ( +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/AbandonedTemple) +"d" = ( +/turf/simulated/wall/sandstone, +/area/submap/AbandonedTemple) +"e" = ( +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/carpet/turcarpet, +/area/submap/AbandonedTemple) +"f" = ( +/obj/effect/decal/remains/mummy1, +/turf/simulated/floor/carpet/turcarpet, +/area/submap/AbandonedTemple) +"g" = ( +/turf/simulated/wall/sandstonediamond, +/area/submap/AbandonedTemple) +"h" = ( +/obj/item/weapon/flame/candle/everburn, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/AbandonedTemple) +"i" = ( +/obj/item/weapon/ectoplasm, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/AbandonedTemple) +"j" = ( +/obj/structure/table/wooden_reinforced, +/obj/item/weapon/coin/iron, +/obj/item/weapon/coin/platinum, +/obj/item/weapon/coin/uranium, +/obj/item/weapon/coin/diamond, +/obj/item/weapon/coin/iron, +/obj/item/weapon/coin/uranium, +/obj/item/weapon/coin/iron, +/obj/item/weapon/coin/phoron, +/obj/item/weapon/coin/platinum, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/AbandonedTemple) +"k" = ( +/obj/structure/table/wooden_reinforced, +/obj/item/weapon/coin/gold, +/obj/item/weapon/coin/gold, +/obj/item/weapon/coin/gold, +/obj/item/weapon/coin/silver, +/obj/item/weapon/coin/silver, +/obj/item/weapon/coin/silver, +/obj/item/weapon/coin/gold, +/obj/item/weapon/coin/gold, +/obj/item/weapon/coin/gold, +/obj/item/weapon/coin/silver, +/obj/item/weapon/coin/silver, +/obj/item/weapon/coin/silver, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/AbandonedTemple) +"l" = ( +/obj/effect/decal/remains/xeno, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/AbandonedTemple) +"m" = ( +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/AbandonedTemple) +"n" = ( +/obj/structure/loot_pile/maint/technical, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/AbandonedTemple) +"o" = ( +/obj/structure/loot_pile/maint/technical, +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/AbandonedTemple) +"p" = ( +/turf/simulated/floor/carpet/turcarpet, +/area/submap/AbandonedTemple) +"q" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/flame/lighter/zippo/royal, +/obj/item/clothing/mask/smokable/pipe, +/turf/simulated/floor/carpet/turcarpet, +/area/submap/AbandonedTemple) +"r" = ( +/obj/effect/rune, +/obj/effect/decal/remains/human, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/AbandonedTemple) +"s" = ( +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/AbandonedTemple) +"t" = ( +/obj/machinery/artifact, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/AbandonedTemple) +"u" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/carpet/turcarpet, +/area/submap/AbandonedTemple) +"v" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/paper, +/obj/item/weapon/pen/fountain, +/turf/simulated/floor/carpet/turcarpet, +/area/submap/AbandonedTemple) +"w" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/AbandonedTemple) +"x" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/decal/remains/posi, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/AbandonedTemple) +"y" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/flame/candle/candelabra/everburn, +/turf/simulated/floor/carpet/turcarpet, +/area/submap/AbandonedTemple) +"z" = ( +/obj/structure/simple_door/gold, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/AbandonedTemple) +"A" = ( +/obj/effect/decal/remains/posi, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/AbandonedTemple) +"B" = ( +/obj/machinery/crystal{ + icon_state = "crystal3"; + light_color = "#f44256"; + light_power = 3 + }, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/cave/crystal1) +"C" = ( +/obj/structure/flora/pottedplant/dead, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/AbandonedTemple) +"D" = ( +/obj/machinery/crystal{ + icon_state = "crystal3"; + light_color = "#f44256"; + light_power = 3 + }, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/AbandonedTemple) +"E" = ( +/obj/effect/decal/remains/human, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/AbandonedTemple) +"F" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/remains/human, +/turf/simulated/floor/carpet/turcarpet, +/area/submap/AbandonedTemple) +"G" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/paper/alien{ + desc = ""; + icon_state = "alienpaper_words"; + info = "(On the screen of the tablet are several lines of characters written in a language you don't seem to recognize. At the end of each line is a set of numbers seperated by a colon. The screen flickers occasionally, as if damaged. Nothing about the tablet seems particularly interesting, but it does seem very, very old.)" + }, +/turf/simulated/floor/carpet/turcarpet, +/area/submap/AbandonedTemple) +"H" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/simulated/floor/carpet/turcarpet, +/area/submap/AbandonedTemple) +"I" = ( +/obj/structure/table/bench/wooden, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/AbandonedTemple) +"J" = ( +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/AbandonedTemple) +"K" = ( +/obj/structure/table/bench/wooden, +/obj/effect/decal/remains/xeno, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/AbandonedTemple) +"L" = ( +/obj/structure/simple_door/sandstone, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/AbandonedTemple) +"M" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/item/weapon/flame/candle/candelabra/everburn, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/AbandonedTemple) +"N" = ( +/obj/effect/decal/cleanable/cobweb2, +/obj/item/weapon/flame/candle/candelabra/everburn, +/turf/simulated/floor/tiled/asteroid_steel, +/area/submap/AbandonedTemple) +"O" = ( +/obj/effect/decal/cleanable/blood, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/AbandonedTemple) + +(1,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(2,1,1) = {" +a +a +a +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +a +a +a +a +a +"} +(3,1,1) = {" +a +a +c +c +c +c +c +c +c +c +c +c +c +c +c +b +b +b +b +b +b +a +a +a +a +"} +(4,1,1) = {" +a +b +c +d +d +d +d +d +d +d +d +d +d +d +m +c +b +b +b +b +b +b +a +a +a +"} +(5,1,1) = {" +a +b +c +d +e +p +u +p +p +p +w +c +c +d +d +m +c +b +b +b +b +b +b +a +a +"} +(6,1,1) = {" +a +b +c +d +f +q +v +y +p +p +c +E +c +s +d +d +c +c +b +b +b +b +b +a +a +"} +(7,1,1) = {" +a +b +c +d +g +g +g +g +g +g +g +g +z +g +g +d +d +c +c +b +b +b +b +a +a +"} +(8,1,1) = {" +a +b +c +d +h +c +h +z +c +g +B +c +c +c +c +c +d +d +c +b +b +b +b +a +a +"} +(9,1,1) = {" +a +b +c +d +i +r +c +g +c +g +C +c +c +c +c +c +D +d +m +c +c +s +b +a +a +"} +(10,1,1) = {" +a +b +c +d +h +s +h +g +c +g +c +w +c +I +c +K +c +d +d +d +d +c +b +a +a +"} +(11,1,1) = {" +a +b +c +d +g +g +g +g +c +z +c +p +p +I +c +I +c +d +M +c +d +c +b +a +a +"} +(12,1,1) = {" +a +b +c +d +j +c +p +p +c +g +c +F +G +c +c +c +w +L +c +w +L +c +b +a +a +"} +(13,1,1) = {" +a +b +c +d +k +c +p +p +c +g +c +p +y +c +c +c +s +L +c +c +L +c +O +a +a +"} +(14,1,1) = {" +a +b +c +d +g +g +g +g +c +z +c +p +H +I +c +I +c +d +N +c +d +s +b +a +a +"} +(15,1,1) = {" +a +b +c +d +c +c +w +g +c +g +c +c +l +I +c +I +c +d +d +d +d +c +b +a +a +"} +(16,1,1) = {" +a +b +c +d +l +t +c +g +c +g +C +c +c +c +c +c +D +d +s +c +c +c +b +a +a +"} +(17,1,1) = {" +a +b +c +d +m +c +c +z +c +g +D +c +c +c +c +s +d +d +c +b +b +b +b +a +a +"} +(18,1,1) = {" +a +b +c +d +g +g +g +g +g +g +g +g +z +g +g +d +d +J +c +b +b +b +b +a +a +"} +(19,1,1) = {" +a +b +c +d +n +c +c +n +c +c +c +c +w +n +d +d +c +c +b +b +b +b +b +a +a +"} +(20,1,1) = {" +a +b +c +d +o +c +x +c +c +A +n +l +n +d +d +c +c +b +b +b +b +b +b +a +a +"} +(21,1,1) = {" +a +b +c +d +d +d +d +d +d +d +d +d +d +d +J +c +b +b +b +b +b +b +a +a +a +"} +(22,1,1) = {" +a +a +c +c +c +c +c +c +c +c +c +c +c +c +c +b +b +b +b +b +b +a +a +a +a +"} +(23,1,1) = {" +a +a +a +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +a +a +a +a +a +"} +(24,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(25,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} diff --git a/maps/expedition_vr/beach/submaps/vault1.dmm b/maps/expedition_vr/beach/submaps/vault1.dmm new file mode 100644 index 0000000000..5f39b245ab --- /dev/null +++ b/maps/expedition_vr/beach/submaps/vault1.dmm @@ -0,0 +1,118 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/template_noop, +/area/template_noop) +"b" = ( +/turf/simulated/wall, +/area/submap/cave/vault1) +"c" = ( +/turf/simulated/floor/plating, +/area/submap/cave/vault1) +"d" = ( +/obj/structure/loot_pile/maint/technical, +/turf/simulated/floor/plating, +/area/submap/cave/vault1) +"e" = ( +/obj/random/multiple/minevault, +/turf/simulated/floor/plating, +/area/submap/cave/vault1) + +(1,1,1) = {" +a +a +a +a +a +a +a +a +a +"} +(2,1,1) = {" +a +a +b +b +b +b +b +a +a +"} +(3,1,1) = {" +a +b +b +c +c +c +b +b +a +"} +(4,1,1) = {" +a +b +c +c +c +c +c +b +a +"} +(5,1,1) = {" +a +b +d +c +e +c +c +b +a +"} +(6,1,1) = {" +a +b +c +c +c +c +c +b +a +"} +(7,1,1) = {" +a +b +b +c +c +c +b +b +a +"} +(8,1,1) = {" +a +a +b +b +b +b +b +a +a +"} +(9,1,1) = {" +a +a +a +a +a +a +a +a +a +"} diff --git a/maps/expedition_vr/beach/submaps/vault2.dmm b/maps/expedition_vr/beach/submaps/vault2.dmm new file mode 100644 index 0000000000..016df627cd --- /dev/null +++ b/maps/expedition_vr/beach/submaps/vault2.dmm @@ -0,0 +1,114 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/template_noop, +/area/template_noop) +"b" = ( +/turf/simulated/wall, +/area/submap/cave/vault2) +"c" = ( +/turf/simulated/floor/plating, +/area/submap/cave/vault2) +"d" = ( +/obj/random/multiple/minevault, +/turf/simulated/floor/plating, +/area/submap/cave/vault2) + +(1,1,1) = {" +a +a +a +a +a +a +a +a +a +"} +(2,1,1) = {" +a +b +b +a +a +a +b +b +a +"} +(3,1,1) = {" +a +b +b +b +b +b +b +b +a +"} +(4,1,1) = {" +a +a +b +c +c +c +b +a +a +"} +(5,1,1) = {" +a +a +b +c +d +c +b +a +a +"} +(6,1,1) = {" +a +a +b +c +c +c +b +a +a +"} +(7,1,1) = {" +a +b +b +b +b +b +b +b +a +"} +(8,1,1) = {" +a +b +b +a +a +a +b +b +a +"} +(9,1,1) = {" +a +a +a +a +a +a +a +a +a +"} diff --git a/maps/expedition_vr/beach/submaps/vault3.dmm b/maps/expedition_vr/beach/submaps/vault3.dmm new file mode 100644 index 0000000000..16c4876348 --- /dev/null +++ b/maps/expedition_vr/beach/submaps/vault3.dmm @@ -0,0 +1,141 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/template_noop, +/area/template_noop) +"b" = ( +/turf/simulated/wall, +/area/submap/cave/vault3) +"c" = ( +/obj/effect/alien/weeds, +/obj/random/multiple/minevault, +/turf/simulated/floor/plating, +/area/submap/cave/vault3) +"d" = ( +/obj/structure/loot_pile/maint/technical, +/obj/effect/alien/weeds, +/turf/simulated/floor/plating, +/area/submap/cave/vault3) +"e" = ( +/obj/effect/alien/weeds, +/mob/living/simple_mob/animal/space/alien/drone, +/turf/simulated/floor/plating, +/area/submap/cave/vault3) +"f" = ( +/obj/effect/alien/weeds, +/obj/effect/alien/weeds, +/turf/simulated/floor/plating, +/area/submap/cave/vault3) +"g" = ( +/obj/effect/alien/weeds, +/turf/simulated/floor/plating, +/area/submap/cave/vault3) +"h" = ( +/obj/effect/alien/weeds, +/obj/effect/alien/weeds, +/obj/effect/alien/weeds/node, +/turf/simulated/floor/plating, +/area/submap/cave/vault3) +"i" = ( +/obj/structure/bed/nest, +/turf/simulated/floor/plating, +/area/submap/cave/vault3) + +(1,1,1) = {" +a +a +a +a +a +a +a +a +a +"} +(2,1,1) = {" +a +a +b +b +b +b +b +a +a +"} +(3,1,1) = {" +a +b +b +e +g +g +b +b +a +"} +(4,1,1) = {" +a +b +c +f +f +f +i +b +a +"} +(5,1,1) = {" +a +b +d +f +h +f +g +b +a +"} +(6,1,1) = {" +a +b +c +f +f +f +i +b +a +"} +(7,1,1) = {" +a +b +b +g +g +e +b +b +a +"} +(8,1,1) = {" +a +a +b +b +b +b +b +a +a +"} +(9,1,1) = {" +a +a +a +a +a +a +a +a +a +"} diff --git a/maps/expedition_vr/beach/submaps/vault4.dmm b/maps/expedition_vr/beach/submaps/vault4.dmm new file mode 100644 index 0000000000..33851a5907 --- /dev/null +++ b/maps/expedition_vr/beach/submaps/vault4.dmm @@ -0,0 +1,141 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/template_noop, +/area/template_noop) +"b" = ( +/obj/structure/alien/wall, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/vault4) +"c" = ( +/obj/structure/simple_door/resin, +/obj/effect/alien/weeds, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/vault4) +"d" = ( +/obj/effect/alien/weeds, +/obj/structure/bed/nest, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/vault4) +"e" = ( +/obj/effect/alien/weeds, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/vault4) +"f" = ( +/obj/effect/alien/weeds, +/mob/living/simple_mob/animal/space/alien/drone, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/vault4) +"g" = ( +/obj/effect/alien/weeds/node, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/vault4) +"h" = ( +/obj/effect/alien/weeds, +/obj/random/multiple/minevault, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/vault4) +"i" = ( +/obj/effect/alien/weeds, +/mob/living/simple_mob/animal/space/alien, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/vault4) + +(1,1,1) = {" +a +a +a +a +a +a +a +a +a +"} +(2,1,1) = {" +a +a +b +b +c +b +b +a +a +"} +(3,1,1) = {" +a +b +b +d +i +h +b +b +a +"} +(4,1,1) = {" +a +b +d +e +e +g +f +b +a +"} +(5,1,1) = {" +a +c +e +e +e +e +e +c +a +"} +(6,1,1) = {" +a +b +f +g +e +e +d +b +a +"} +(7,1,1) = {" +a +b +b +h +i +d +b +b +a +"} +(8,1,1) = {" +a +a +b +b +c +b +b +a +a +"} +(9,1,1) = {" +a +a +a +a +a +a +a +a +a +"} diff --git a/maps/expedition_vr/beach/submaps/vault5.dmm b/maps/expedition_vr/beach/submaps/vault5.dmm new file mode 100644 index 0000000000..3831106ee4 --- /dev/null +++ b/maps/expedition_vr/beach/submaps/vault5.dmm @@ -0,0 +1,151 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/template_noop, +/area/template_noop) +"b" = ( +/obj/structure/alien/wall, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/vault5) +"c" = ( +/obj/structure/simple_door/resin, +/obj/effect/alien/weeds, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/vault5) +"d" = ( +/obj/effect/alien/weeds, +/obj/structure/bed/nest, +/obj/item/weapon/gun/projectile/p92x/large, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/vault5) +"e" = ( +/obj/effect/alien/weeds, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/vault5) +"f" = ( +/obj/effect/alien/weeds, +/obj/item/clothing/suit/storage/vest/tactical, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/vault5) +"g" = ( +/obj/effect/alien/weeds, +/obj/structure/bed/nest, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/vault5) +"h" = ( +/obj/effect/alien/weeds, +/obj/random/multiple/minevault, +/mob/living/simple_mob/animal/space/alien/sentinel/praetorian, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/vault5) +"j" = ( +/obj/effect/alien/weeds, +/obj/effect/alien/weeds/node, +/mob/living/simple_mob/animal/space/alien/queen/empress, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/vault5) +"k" = ( +/obj/effect/alien/weeds, +/obj/item/clothing/head/helmet/tac, +/obj/item/weapon/gun/projectile/SVD, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/vault5) + +(1,1,1) = {" +a +a +a +a +a +a +a +a +a +"} +(2,1,1) = {" +a +a +b +b +b +b +b +a +a +"} +(3,1,1) = {" +a +b +b +g +e +h +b +b +a +"} +(4,1,1) = {" +a +b +d +e +e +e +k +b +a +"} +(5,1,1) = {" +a +c +e +e +j +e +e +c +a +"} +(6,1,1) = {" +a +b +f +e +e +e +g +b +a +"} +(7,1,1) = {" +a +b +b +h +e +g +b +b +a +"} +(8,1,1) = {" +a +a +b +b +b +b +b +a +a +"} +(9,1,1) = {" +a +a +a +a +a +a +a +a +a +"} diff --git a/maps/expedition_vr/beach/submaps/vault6.dmm b/maps/expedition_vr/beach/submaps/vault6.dmm new file mode 100644 index 0000000000..d4200ba5ab --- /dev/null +++ b/maps/expedition_vr/beach/submaps/vault6.dmm @@ -0,0 +1,206 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/template_noop, +/area/template_noop) +"b" = ( +/obj/structure/cliff/automatic/corner{ + icon_state = "cliffbuilder-corner"; + dir = 6 + }, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/vault6) +"c" = ( +/obj/structure/cliff/automatic{ + icon_state = "cliffbuilder"; + dir = 2 + }, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/vault6) +"d" = ( +/obj/structure/cliff/automatic/corner{ + icon_state = "cliffbuilder-corner"; + dir = 10 + }, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/vault6) +"e" = ( +/obj/structure/cliff/automatic{ + icon_state = "cliffbuilder"; + dir = 6 + }, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/vault6) +"f" = ( +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/vault6) +"g" = ( +/obj/structure/cliff/automatic{ + icon_state = "cliffbuilder"; + dir = 10 + }, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/vault6) +"h" = ( +/obj/structure/cliff/automatic{ + icon_state = "cliffbuilder"; + dir = 4 + }, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/vault6) +"i" = ( +/mob/living/simple_mob/humanoid/merc/ranged/grenadier, +/turf/simulated/floor/cult, +/area/submap/cave/vault6) +"j" = ( +/turf/simulated/floor/cult, +/area/submap/cave/vault6) +"k" = ( +/obj/random/tool/power, +/obj/random/tech_supply, +/turf/simulated/floor/cult, +/area/submap/cave/vault6) +"l" = ( +/obj/structure/cliff/automatic{ + icon_state = "cliffbuilder"; + dir = 8 + }, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/vault6) +"m" = ( +/obj/structure/bonfire/permanent/sifwood, +/obj/structure/grille/rustic, +/turf/simulated/floor/cult, +/area/submap/cave/vault6) +"n" = ( +/obj/random/multiple/minevault, +/turf/simulated/floor/cult, +/area/submap/cave/vault6) +"o" = ( +/obj/structure/cliff/automatic/corner, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/vault6) +"p" = ( +/obj/structure/cliff/automatic{ + icon_state = "cliffbuilder"; + dir = 5 + }, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/vault6) +"q" = ( +/obj/structure/cliff/automatic{ + icon_state = "cliffbuilder"; + dir = 9 + }, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/vault6) +"r" = ( +/obj/structure/cliff/automatic/corner{ + icon_state = "cliffbuilder-corner"; + dir = 9 + }, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/vault6) +"s" = ( +/obj/structure/cliff/automatic, +/turf/simulated/mineral/floor/ignore_mapgen/cave, +/area/submap/cave/vault6) + +(1,1,1) = {" +a +a +a +a +a +a +a +a +a +"} +(2,1,1) = {" +a +a +b +h +h +h +o +a +a +"} +(3,1,1) = {" +a +b +e +f +f +f +p +o +a +"} +(4,1,1) = {" +a +c +f +i +j +n +f +s +a +"} +(5,1,1) = {" +a +c +f +j +m +j +f +s +a +"} +(6,1,1) = {" +a +c +f +k +j +j +f +s +a +"} +(7,1,1) = {" +a +d +g +f +f +f +q +r +a +"} +(8,1,1) = {" +a +a +d +l +l +l +r +a +a +"} +(9,1,1) = {" +a +a +a +a +a +a +a +a +a +"} diff --git a/maps/gateway_archive_vr/zoo.dmm b/maps/gateway_archive_vr/zoo.dmm index 3ed7fe26f8..40a2d0ef1b 100644 --- a/maps/gateway_archive_vr/zoo.dmm +++ b/maps/gateway_archive_vr/zoo.dmm @@ -528,8 +528,8 @@ "kh" = (/obj/machinery/vending/food,/turf/simulated/floor/tiled/white,/area/awaymission/zoo) "ki" = (/obj/structure/window/reinforced{dir = 8; health = 1e+006},/turf/simulated/floor/holofloor/beach/sand{icon_state = "dgrass0"},/area/awaymission/zoo) "kj" = (/obj/structure/window/reinforced{dir = 4; health = 1e+006},/turf/simulated/floor/holofloor/beach/sand{icon_state = "dgrass0"},/area/awaymission/zoo) -"kk" = (/obj/structure/table/rack,/obj/item/clothing/suit/storage/hooded/ian_costume,/turf/simulated/floor/holofloor/carpet,/area/awaymission/zoo) -"kl" = (/obj/structure/table/rack,/obj/item/clothing/suit/storage/hooded/carp_costume,/turf/simulated/floor/holofloor/carpet,/area/awaymission/zoo) +"kk" = (/obj/structure/table/rack,/obj/item/clothing/suit/storage/hooded/costume/ian,/turf/simulated/floor/holofloor/carpet,/area/awaymission/zoo) +"kl" = (/obj/structure/table/rack,/obj/item/clothing/suit/storage/hooded/costume/carp,/turf/simulated/floor/holofloor/carpet,/area/awaymission/zoo) "km" = (/obj/structure/table/rack,/obj/effect/landmark/costume,/turf/simulated/floor/holofloor/carpet,/area/awaymission/zoo) "kn" = (/obj/structure/table/rack,/obj/item/clothing/suit/chickensuit,/obj/item/clothing/head/chicken,/turf/simulated/floor/holofloor/carpet,/area/awaymission/zoo) "ko" = (/obj/structure/table/rack,/obj/item/clothing/head/sombrero,/turf/simulated/floor/holofloor/carpet,/area/awaymission/zoo) diff --git a/maps/gateway_vr/carpfarm.dm b/maps/gateway_vr/carpfarm.dm index 281ff2e01b..61658710ef 100644 --- a/maps/gateway_vr/carpfarm.dm +++ b/maps/gateway_vr/carpfarm.dm @@ -1,10 +1,11 @@ -/obj/effect/overmap/visitable/sector/tether_gateway/carpfarm +/obj/effect/overmap/visitable/sector/common_gateway/carpfarm initial_generic_waypoints = list("carpfarm1", "carpfarm2") name = "Carp-Infested Outpost" scanner_desc = @{"[i]Registration[/i]: UNKNOWN [i]Class[/i]: Installation [i]Transponder[/i]: None Detected [b]Notice[/b]: Many spaceborne lifesigns detected"} + known = FALSE /area/awaymission/carpfarm icon_state = "blank" diff --git a/maps/gateway_vr/carpfarm.dmm b/maps/gateway_vr/carpfarm.dmm index 34feaf87d4..df90d3d7fd 100644 --- a/maps/gateway_vr/carpfarm.dmm +++ b/maps/gateway_vr/carpfarm.dmm @@ -746,7 +746,7 @@ /turf/space, /area/space) "Fi" = ( -/obj/effect/overmap/visitable/sector/tether_gateway/carpfarm, +/obj/effect/overmap/visitable/sector/common_gateway/carpfarm, /turf/space, /area/space) "Ia" = ( diff --git a/maps/gateway_vr/eggnogtown.dm b/maps/gateway_vr/eggnogtown.dm index 9626fd1409..33e4f8bf3a 100644 --- a/maps/gateway_vr/eggnogtown.dm +++ b/maps/gateway_vr/eggnogtown.dm @@ -1,4 +1,4 @@ -/obj/effect/overmap/visitable/sector/tether_gateway/eggnogtown +/obj/effect/overmap/visitable/sector/common_gateway/eggnogtown name = "bluespace shimmer" desc = "The shimmering reflection of some sort of bluespace phenomena." scanner_desc = @{"It is difficult to tell just what is beyond this strange shimmering shape. The air beyond seems breathable, if cold."} @@ -7,19 +7,24 @@ color = "#171DFF" //bloo in_space = 0 -/datum/map_template/tether_lateload/gateway/eggnogtown/on_map_loaded(z) - . = ..() - new /datum/random_map/automata/cave_system/no_cracks(null, 3, 3, z, world.maxx - 4, world.maxy - 4) // Create the mining Z-level. - new /datum/random_map/noise/ore(null, 1, 1, z, 64, 64) // Create the mining ore distribution map. + skybox_icon = 'icons/skybox/anomaly.dmi' + skybox_icon_state = "shimmer_b" + skybox_pixel_x = 0 + skybox_pixel_y = 0 -/datum/map_template/tether_lateload/gateway/eggnogtownunderground/on_map_loaded(z) - . = ..() - new /datum/random_map/automata/cave_system/no_cracks(null, 3, 3, z, world.maxx - 4, world.maxy - 4) // Create the mining Z-level. - new /datum/random_map/noise/ore(null, 1, 1, z, 64, 64) // Create the mining ore distribution map. +/datum/map_template/common_lateload/gateway/eggnogtown/on_map_loaded(z) + . = ..() + new /datum/random_map/automata/cave_system/no_cracks(null, 3, 3, z, world.maxx - 4, world.maxy - 4) // Create the mining Z-level. + new /datum/random_map/noise/ore(null, 1, 1, z, 64, 64) // Create the mining ore distribution map. + +/datum/map_template/common_lateload/gateway/eggnogtownunderground/on_map_loaded(z) + . = ..() + new /datum/random_map/automata/cave_system/no_cracks(null, 3, 3, z, world.maxx - 4, world.maxy - 4) // Create the mining Z-level. + new /datum/random_map/noise/ore(null, 1, 1, z, 64, 64) // Create the mining ore distribution map. /obj/effect/landmark/map_data/eggnogtown - height = 2 + height = 2 //Areas// diff --git a/maps/gateway_vr/eggnogtown.dmm b/maps/gateway_vr/eggnogtown.dmm index 502a92bf54..de787f7cab 100644 --- a/maps/gateway_vr/eggnogtown.dmm +++ b/maps/gateway_vr/eggnogtown.dmm @@ -1284,7 +1284,7 @@ }, /area/gateway/eggnogtown/greenhouse) "kG" = ( -/obj/machinery/telecomms/relay/preset/tether, +/obj/machinery/telecomms/relay, /turf/simulated/floor/reinforced, /area/gateway/eggnogtown/gateway) "kI" = ( @@ -1395,7 +1395,7 @@ /turf/simulated/floor/tiled, /area/gateway/eggnogtown/stokeswashere/bathroom) "ma" = ( -/obj/effect/overmap/visitable/sector/tether_gateway/eggnogtown, +/obj/effect/overmap/visitable/sector/common_gateway/eggnogtown, /turf/simulated/mineral/ignore_cavegen{ temperature = 258.15 }, @@ -1502,6 +1502,7 @@ "nd" = ( /obj/structure/bed/double, /obj/structure/lattice, +/obj/structure/curtain/black, /turf/simulated/open, /area/gateway/eggnogtown/houserhomestead) "ne" = ( @@ -3111,7 +3112,7 @@ }, /obj/item/weapon/card/id{ access = list(777); - name = "Houser's secret hidde keycard"; + name = "Houser's secret hidden keycard"; registered_name = "Houser" }, /obj/machinery/light/small{ diff --git a/maps/gateway_vr/eggnogtownunderground.dmm b/maps/gateway_vr/eggnogtownunderground.dmm index c88b450f4c..d7ea90b144 100644 --- a/maps/gateway_vr/eggnogtownunderground.dmm +++ b/maps/gateway_vr/eggnogtownunderground.dmm @@ -1,52 +1,164 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/turf/simulated/mineral/floor/ignore_cavegen{ + nitrogen = 82.1472; + oxygen = 21.8366; + temperature = 258.15 + }, +/area/gateway/eggnogtown/underground) "ab" = ( /turf/simulated/mineral/ignore_cavegen{ + nitrogen = 82.1472; + oxygen = 21.8366; + temperature = 258.15 + }, +/area/gateway/eggnogtown/underground) +"ac" = ( +/obj/random/mob/semirandom_mob_spawner/vore/retaliate, +/turf/simulated/mineral/floor/ignore_cavegen{ + nitrogen = 82.1472; + oxygen = 21.8366; temperature = 258.15 }, /area/gateway/eggnogtown/underground) "ad" = ( -/turf/simulated/mineral/floor/ignore_cavegen{ - temperature = 258.15 - }, -/area/gateway/eggnogtown/underground) -"ae" = ( /obj/machinery/light/small, /turf/simulated/mineral/floor/ignore_cavegen{ + nitrogen = 82.1472; + oxygen = 21.8366; temperature = 258.15 }, /area/gateway/eggnogtown/hotspring) -"af" = ( -/obj/machinery/light/small{ - dir = 8 - }, +"ae" = ( +/obj/random/mob/semirandom_mob_spawner/vore/retaliate/b, /turf/simulated/mineral/floor/ignore_cavegen{ + nitrogen = 82.1472; + oxygen = 21.8366; temperature = 258.15 }, /area/gateway/eggnogtown/underground) -"ag" = ( -/obj/machinery/camera/network/civilian{ - dir = 8 - }, +"af" = ( /turf/simulated/mineral/floor/ignore_cavegen{ + nitrogen = 82.1472; + oxygen = 21.8366; + temperature = 303.15 + }, +/area/gateway/eggnogtown/underground) +"ag" = ( +/obj/random/mob/semirandom_mob_spawner/vore/retaliate/c, +/turf/simulated/mineral/floor/ignore_cavegen{ + nitrogen = 82.1472; + oxygen = 21.8366; temperature = 258.15 }, /area/gateway/eggnogtown/underground) "ah" = ( -/obj/machinery/camera/network/civilian{ - dir = 5 - }, +/obj/random/mob/semirandom_mob_spawner/vore/retaliate, /turf/simulated/mineral/floor/ignore_cavegen{ - temperature = 258.15 + nitrogen = 82.1472; + oxygen = 21.8366; + temperature = 303.15 }, /area/gateway/eggnogtown/underground) "ai" = ( +/obj/random/mob/semirandom_mob_spawner/vore/retaliate/c, +/turf/simulated/mineral/floor/ignore_cavegen{ + nitrogen = 82.1472; + oxygen = 21.8366; + temperature = 303.15 + }, +/area/gateway/eggnogtown/underground) +"aj" = ( +/obj/random/mob/semirandom_mob_spawner/vore/retaliate/b, +/turf/simulated/mineral/floor/ignore_cavegen{ + nitrogen = 82.1472; + oxygen = 21.8366; + temperature = 303.15 + }, +/area/gateway/eggnogtown/underground) +"ak" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/mineral/floor/ignore_cavegen{ + nitrogen = 82.1472; + oxygen = 21.8366; + temperature = 303.15 + }, +/area/gateway/eggnogtown/hotsprings) +"al" = ( /obj/machinery/light/small{ dir = 4 }, /turf/simulated/mineral/floor/ignore_cavegen{ + nitrogen = 82.1472; + oxygen = 21.8366; + temperature = 303.15 + }, +/area/gateway/eggnogtown/hotsprings) +"am" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/mineral/floor/ignore_cavegen{ + nitrogen = 82.1472; + oxygen = 21.8366; temperature = 258.15 }, /area/gateway/eggnogtown/underground) +"an" = ( +/obj/machinery/camera/network/civilian{ + dir = 8 + }, +/turf/simulated/mineral/floor/ignore_cavegen{ + nitrogen = 82.1472; + oxygen = 21.8366; + temperature = 258.15 + }, +/area/gateway/eggnogtown/underground) +"ao" = ( +/obj/random/mob/semirandom_mob_spawner/vore/hostile, +/turf/simulated/mineral/floor/ignore_cavegen{ + nitrogen = 82.1472; + oxygen = 21.8366; + temperature = 303.15 + }, +/area/gateway/eggnogtown/underground) +"ap" = ( +/obj/random/awayloot, +/turf/simulated/mineral/floor/ignore_cavegen{ + nitrogen = 82.1472; + oxygen = 21.8366; + temperature = 303.15 + }, +/area/gateway/eggnogtown/underground) +"aq" = ( +/obj/machinery/camera/network/civilian{ + dir = 5 + }, +/turf/simulated/mineral/floor/ignore_cavegen{ + nitrogen = 82.1472; + oxygen = 21.8366; + temperature = 258.15 + }, +/area/gateway/eggnogtown/underground) +"ar" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/mineral/floor/ignore_cavegen{ + nitrogen = 82.1472; + oxygen = 21.8366; + temperature = 258.15 + }, +/area/gateway/eggnogtown/underground) +"as" = ( +/turf/simulated/mineral/ignore_cavegen{ + nitrogen = 82.1472; + oxygen = 21.8366; + temperature = 258.15 + }, +/area/gateway/eggnogtown/vibeout) "ba" = ( /obj/structure/table/wooden_reinforced, /obj/machinery/chemical_dispenser/bar_alc/full, @@ -91,7 +203,7 @@ check_arrest = 0; check_down = 0; check_records = 0; - control_area = /area/submap/admin_upload/lo/pow; + control_area = /area/gateway/eggnogtown/houserhomestead/basement; desc = "A firewall prevents AIs from interacting with this device."; lethal_is_configurable = 0; name = "DEATH RAY CONTROL"; @@ -142,7 +254,7 @@ }, /area/gateway/eggnogtown/vibeout) "gA" = ( -/turf/unsimulated/beach/water{ +/turf/simulated/floor/beach/water{ name = "hot spring"; temperature = 303.15 }, @@ -166,12 +278,6 @@ temperature = 258.15 }, /area/gateway/eggnogtown/hotspring) -"hz" = ( -/obj/random/mob/semirandom_mob_spawner/vore/retaliate, -/turf/simulated/mineral/floor/ignore_cavegen{ - temperature = 258.15 - }, -/area/gateway/eggnogtown/underground) "hM" = ( /obj/structure/curtain, /turf/simulated/floor/wood{ @@ -199,12 +305,6 @@ temperature = 303.15 }, /area/gateway/eggnogtown/hotsprings) -"jz" = ( -/obj/random/awayloot, -/turf/simulated/mineral/floor/ignore_cavegen{ - temperature = 303.15 - }, -/area/gateway/eggnogtown/underground) "kA" = ( /turf/simulated/wall/iron, /area/gateway/eggnogtown/underground) @@ -231,14 +331,6 @@ temperature = 258.15 }, /area/gateway/eggnogtown/vibeout) -"kV" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/mineral/floor/ignore_cavegen{ - temperature = 303.15 - }, -/area/gateway/eggnogtown/hotsprings) "lo" = ( /obj/structure/bed/chair/sofa/right, /turf/simulated/floor/wood{ @@ -267,7 +359,7 @@ /obj/machinery/light/small{ dir = 8 }, -/turf/unsimulated/beach/water{ +/turf/simulated/floor/beach/water{ name = "hot spring"; temperature = 303.15 }, @@ -276,12 +368,6 @@ /obj/structure/simple_door/silver, /turf/simulated/floor/tiled/steel_ridged, /area/gateway/eggnogtown/hotspring) -"mF" = ( -/obj/random/mob/semirandom_mob_spawner/vore/retaliate/c, -/turf/simulated/mineral/floor/ignore_cavegen{ - temperature = 303.15 - }, -/area/gateway/eggnogtown/underground) "nh" = ( /obj/structure/bed/chair/sofa/black/corner, /turf/simulated/floor/plating/eris/under{ @@ -294,12 +380,6 @@ temperature = 258.15 }, /area/gateway/eggnogtown/hotspring) -"ob" = ( -/obj/random/mob/semirandom_mob_spawner/vore/hostile, -/turf/simulated/mineral/floor/ignore_cavegen{ - temperature = 303.15 - }, -/area/gateway/eggnogtown/underground) "pn" = ( /obj/structure/bed/chair/bay/comfy/red{ dir = 1 @@ -345,7 +425,7 @@ /area/gateway/eggnogtown/vibeout) "sc" = ( /obj/random/mob/semirandom_mob_spawner/vore/passive, -/turf/unsimulated/beach/water{ +/turf/simulated/floor/beach/water{ name = "hot spring"; temperature = 303.15 }, @@ -423,14 +503,6 @@ temperature = 258.15 }, /area/gateway/eggnogtown/houserhomestead/basement) -"vs" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/mineral/floor/ignore_cavegen{ - temperature = 303.15 - }, -/area/gateway/eggnogtown/hotsprings) "vv" = ( /obj/machinery/media/jukebox, /turf/simulated/floor/wood{ @@ -459,12 +531,6 @@ temperature = 258.15 }, /area/gateway/eggnogtown/vibeout) -"vZ" = ( -/obj/random/mob/semirandom_mob_spawner/vore/retaliate, -/turf/simulated/mineral/floor/ignore_cavegen{ - temperature = 303.15 - }, -/area/gateway/eggnogtown/underground) "ws" = ( /obj/structure/railing, /obj/structure/railing{ @@ -499,11 +565,6 @@ temperature = 258.15 }, /area/gateway/eggnogtown/hotspring) -"yD" = ( -/turf/simulated/mineral/ignore_cavegen{ - temperature = 258.15 - }, -/area/gateway/eggnogtown/vibeout) "yM" = ( /obj/structure/table/bench/wooden, /turf/simulated/floor/wood{ @@ -532,11 +593,6 @@ "Ce" = ( /turf/simulated/wall/iron, /area/gateway/eggnogtown/vibeout) -"Da" = ( -/turf/simulated/mineral/floor/ignore_cavegen{ - temperature = 303.15 - }, -/area/gateway/eggnogtown/underground) "Ds" = ( /obj/structure/closet/walllocker{ pixel_y = 26 @@ -572,18 +628,6 @@ temperature = 258.15 }, /area/gateway/eggnogtown/vibeout) -"Gy" = ( -/obj/random/mob/semirandom_mob_spawner/vore/retaliate/b, -/turf/simulated/mineral/floor/ignore_cavegen{ - temperature = 258.15 - }, -/area/gateway/eggnogtown/underground) -"GM" = ( -/obj/random/mob/semirandom_mob_spawner/vore/retaliate/c, -/turf/simulated/mineral/floor/ignore_cavegen{ - temperature = 258.15 - }, -/area/gateway/eggnogtown/underground) "GR" = ( /turf/simulated/wall/iron, /area/gateway/eggnogtown/houserhomestead/basement) @@ -699,9 +743,10 @@ temperature = 303.15 }, /area/gateway/eggnogtown/hotsprings) -"Qe" = ( -/obj/random/mob/semirandom_mob_spawner/vore/retaliate/b, -/turf/simulated/mineral/floor/ignore_cavegen{ +"QL" = ( +/obj/effect/map_effect/interval/effect_emitter/steam, +/turf/simulated/floor/beach/water{ + name = "hot spring"; temperature = 303.15 }, /area/gateway/eggnogtown/underground) @@ -1058,9 +1103,9 @@ ab ab ab ab -ad -ad -ad +aa +aa +aa ab ab ab @@ -1200,16 +1245,16 @@ ab ab ab ab -ad -ad +aa +aa ab ab ab ab -Da -Da -kV -Da +af +af +ak +af ab ab ab @@ -1225,7 +1270,7 @@ ab ab ab ab -Da +af ab ab kA @@ -1341,18 +1386,18 @@ ab ab ab ab -ad -ad +aa +aa ab ab ab ab ab -Da -Da -Da -Da -Da +af +af +af +af +af ab ab ab @@ -1364,13 +1409,13 @@ ab ab ab ab -Da -Da -Da -Da -Da -Da -kV +af +af +af +af +af +af +ak ab ab ab @@ -1481,21 +1526,21 @@ ab ab ab ab -ad -ad -ad -ad +aa +aa +aa +aa ab ab ab ab -Da -Da +af +af gA gA gA -Da -Da +af +af ab ab gA @@ -1505,14 +1550,14 @@ gA ab ab ab -Da -Da +af +af gA gA gA gA gA -Da +af ab ab ab @@ -1622,23 +1667,23 @@ ab ab ab ab -ad -ad -ad -ad +aa +aa +aa +aa ab ab ab ab -Da -Da +af +af gA gA gA gA gA -Da -Da +af +af ab gA gA @@ -1646,8 +1691,8 @@ sc gA gA ab -Da -Da +af +af gA gA gA @@ -1656,8 +1701,8 @@ gA gA gA gA -Da -Da +af +af ab ab ab @@ -1764,32 +1809,32 @@ ab ab ab ab -ad -ad -ad -ad +aa +aa +aa +aa ab ab ab ab -Da -Da +af +af gA gA gA gA gA gA -Da +af ab gA gA +QL gA gA gA -gA -Da -Da +af +af gA gA gA @@ -1799,8 +1844,8 @@ gA gA gA gA -Da -Da +af +af ab ab ab @@ -1906,15 +1951,15 @@ ab ab ab ab -ad -ad -ad +aa +aa +aa ab ab ab ab ab -Da +af gA gA gA @@ -1922,16 +1967,16 @@ gA gA gA gA -Da -Da +af +af gA gA gA gA gA gA -Da -Da +af +af gA gA gA @@ -1941,8 +1986,8 @@ gA gA gA gA -Da -Da +af +af ab ab ab @@ -2047,16 +2092,16 @@ ab ab ab ab -ad -ad -ad +aa +aa +aa ab ab ab ab ab ab -Da +af gA gA gA @@ -2065,26 +2110,26 @@ gA gA gA gA -Da +af ab -Da +af gA gA gA -Da -Da -Da +af +af +af +gA +gA +gA +gA +QL gA gA gA gA gA -gA -gA -gA -gA -gA -Da +af ab ab ab @@ -2189,8 +2234,8 @@ ab ab ab ab -ad -ad +aa +aa ab ab ab @@ -2198,24 +2243,24 @@ ab ab ab ab -Da +af +gA +gA +gA +QL gA gA gA gA -gA -gA -gA -gA -Da -Da -Da -Da -Da -Da -Da -Da -Da +af +af +af +af +af +af +af +af +af gA gA gA @@ -2226,7 +2271,7 @@ gA gA gA gA -Da +af ab ab ab @@ -2331,7 +2376,7 @@ ab ab ab ab -ad +aa ab ab ab @@ -2348,8 +2393,8 @@ gA gA gA gA -Da -Da +af +af cb cb cb @@ -2357,8 +2402,8 @@ cb cb cb cb -Da -Da +af +af gA gA gA @@ -2367,8 +2412,8 @@ gA gA gA gA -Da -Da +af +af ab ab ab @@ -2472,8 +2517,8 @@ ab ab ab ab -ad -ad +aa +aa ab ab ab @@ -2483,15 +2528,15 @@ ab ab ab ab -Da +af gA gA gA gA gA -Da -Da -Da +af +af +af cb cb cb @@ -2499,9 +2544,9 @@ cb cb cb cb -Da -Da -Da +af +af +af gA gA gA @@ -2509,7 +2554,7 @@ gA gA gA gA -Da +af ab ab ab @@ -2614,8 +2659,8 @@ ab ab ab ab -ad -ad +aa +aa ab ab ab @@ -2625,14 +2670,14 @@ ab ab ab ab -Da +af gA gA gA gA -Da -Da -Da +af +af +af Kk iV cb @@ -2644,14 +2689,14 @@ de Kk ab ab -Da -Da +af +af gA gA gA gA -Da -Da +af +af ab ab ab @@ -2756,8 +2801,8 @@ ab ab ab ab -ad -ad +aa +aa ab ab ab @@ -2767,13 +2812,13 @@ ab ab ab ab -Da -Da -Da +af +af +af gA -Da -Da -Da +af +af +af ab Kk Ds @@ -2787,12 +2832,12 @@ Kk ab ab ab -Da -Da -Da -Da -Da -Da +af +af +af +af +af +af ab ab ab @@ -2898,8 +2943,8 @@ ab ab ab ab -ad -ad +aa +aa ab ab ab @@ -2911,9 +2956,9 @@ ab ab ab ab -Da -vs -Da +af +al +af ab ab ab @@ -2930,9 +2975,9 @@ ab ab ab ab -Da -vs -Da +af +al +af ab ab ab @@ -3039,8 +3084,8 @@ ab ab ab ab -ad -ad +aa +aa ab ab ab @@ -3181,8 +3226,8 @@ ab ab ab ab -GM -ad +ag +aa ab ab ab @@ -3323,8 +3368,8 @@ ab ab ab ab -ad -ad +aa +aa ab ab ab @@ -3338,8 +3383,8 @@ ab ab ab ab -ad -ad +aa +aa ab ab ab @@ -3465,8 +3510,8 @@ ab ab ab ab -ad -ad +aa +aa ab ab ab @@ -3478,9 +3523,9 @@ ab ab ab ab -ad -ad -ad +aa +aa +aa ab ab ab @@ -3607,8 +3652,8 @@ ab ab ab ab -ad -ad +aa +aa ab ab ab @@ -3618,9 +3663,9 @@ ab ab ab ab -ad -ad -ad +aa +aa +aa ab ab ab @@ -3749,8 +3794,8 @@ ab ab ab ab -ad -ad +aa +aa ab ab ab @@ -3759,10 +3804,10 @@ ab ab ab ab -ad -ad -ad -ad +aa +aa +aa +aa ab ab ab @@ -3771,9 +3816,9 @@ ab ab ab ab -ad -ad -ad +aa +aa +aa ab ab ab @@ -3891,19 +3936,19 @@ ab ab ab ab -ad -ad -ad +aa +aa +aa ab ab ab ab ab ab -ad -ad -ad -ad +aa +aa +aa +aa ab ab ab @@ -3913,13 +3958,13 @@ ab ab ab ab -ad -ad -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa +aa +aa ab ab ab @@ -4033,18 +4078,18 @@ ab ab ab ab -ad -ad -ad +aa +aa +aa ab ab ab ab ab -ad -ad -ad -ad +aa +aa +aa +aa ab ab ab @@ -4057,12 +4102,12 @@ ab ab ab ab -ad -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa +aa ab ab ab @@ -4177,14 +4222,14 @@ ab ab ab ab -ad -ad +aa +aa ab ab ab -ad -ad -ad +aa +aa +aa ab ab ab @@ -4201,10 +4246,10 @@ ab ab ab ab -ad -ad -ad -ad +aa +aa +aa +aa ab ab ab @@ -4319,34 +4364,34 @@ ab ab ab ab -ad -ad +aa +aa ab ab -ad -ad -ad -ad -GM -ad -ad -ad +aa +aa +aa +aa +ag +aa +aa +aa ab ab ab ab ab ab -ad -ad -ad +aa +aa +aa ab ab ab ab -ad -ad -ad +aa +aa +aa ab ab ab @@ -4461,34 +4506,34 @@ ab ab ab ab -ad -ad +aa +aa ab -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa ab ab ab ab -ad -ad -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa +aa +aa ab ab -ad -ad +aa +aa ab ab ab @@ -4602,36 +4647,36 @@ ab ab ab ab -ad -ad -ad -ad -ad -ad -GM -ad -ad -ad -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa +aa +ag +aa +aa +aa +aa +aa +aa +aa +aa ab ab ab ab -ad -GM -ad -ad -ad -ad -ad -ad -ad -ad -ad +aa +ag +aa +aa +aa +aa +aa +aa +aa +aa +aa ab ab ab @@ -4743,36 +4788,36 @@ ab ab ab ab -ad -ad -ad -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa +aa +aa +aa ab ab ab ab ab -ad -GM -ad +aa +ag +aa ab ab ab ab -ad -ad -ad +aa +aa +aa ab -ad -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa +aa ab ab ab @@ -4784,11 +4829,11 @@ ab ab ab ab -ad +aa ab -ad -af -ad +aa +am +aa ab ab ab @@ -4885,12 +4930,12 @@ ab ab ab ab -ad -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa +aa ab ab ab @@ -4899,21 +4944,21 @@ ab ab ab ab -ad -ad -ad +aa +aa +aa ab ab ab ab -ad -ad +aa +aa ab ab -ad -ad -ad -ad +aa +aa +aa +aa ab ab ab @@ -4926,11 +4971,11 @@ ab ab ab ab -ad -ad -ad -ag -ad +aa +aa +aa +an +aa ab ab ab @@ -5026,9 +5071,9 @@ ab ab ab ab -ad -ad -ad +aa +aa +aa ab ab ab @@ -5042,15 +5087,15 @@ ab ab ab ab -ad -ad +aa +aa ab ab ab ab ab -ad -ad +aa +aa ab ab ab @@ -5065,10 +5110,10 @@ ab ab ab ab -ad -ad -GM -ad +aa +aa +ag +aa ab ab kA @@ -5165,11 +5210,11 @@ ab ab ab ab -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa ab ab ab @@ -5184,15 +5229,15 @@ ab ab ab ab -ad -ad +aa +aa ab ab ab ab ab -ad -ad +aa +aa ab ab ab @@ -5205,12 +5250,12 @@ ab ab ab ab -ad -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa +aa ab ab ab @@ -5305,12 +5350,12 @@ ab ab ab ab -ad -ad -ad -GM -ad -ad +aa +aa +aa +ag +aa +aa ab ab ab @@ -5327,14 +5372,14 @@ ab ab ab ab -ad +aa ab ab ab ab ab -ad -ad +aa +aa ab ab ab @@ -5346,12 +5391,12 @@ ab ab ab ab -ad -ad -GM -ad -ad -ad +aa +aa +ag +aa +aa +aa ab ab ab @@ -5446,13 +5491,13 @@ ab ab ab ab -ad -ad -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa +aa +aa ab ab ab @@ -5468,14 +5513,14 @@ ab ab ab ab -ad -ad -ad +aa +aa +aa ab ab -ad -ad -ad +aa +aa +aa ab ab ab @@ -5486,11 +5531,11 @@ ab ab ab ab -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa ab ab ab @@ -5588,12 +5633,12 @@ ab ab ab ab -ad -GM -ad -ad -GM -ad +aa +ag +aa +aa +ag +aa ab ab ab @@ -5608,16 +5653,16 @@ ab ab ab ab -ad -ad -ad -ad +aa +aa +aa +aa ab ab -ad -ad -ad -ad +aa +aa +aa +aa ab ab ab @@ -5626,9 +5671,9 @@ ab ab ab ab -ad -ad -ad +aa +aa +aa ab ab ab @@ -5731,11 +5776,11 @@ ab ab ab ab -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa ab ab ab @@ -5748,17 +5793,17 @@ ab ab ab ab -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa ab ab ab -ad -ad -ad +aa +aa +aa ab ab ab @@ -5768,8 +5813,8 @@ ab ab ab ab -ad -ad +aa +aa ab ab ab @@ -5889,18 +5934,18 @@ ab ab ab ab -ad -ad -ad -ad +aa +aa +aa +aa ab ab ab ab -ad -ad -ad -ad +aa +aa +aa +aa ab ab ab @@ -5908,9 +5953,9 @@ ab ab ab ab -ad -ad -ad +aa +aa +aa ab ab ab @@ -6029,33 +6074,33 @@ ab ab ab ab -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa ab ab ab ab -ad -GM -ad -ad -ad -GM +aa +ag +aa +aa +aa +ag ab ab ab ab ab ab -ad -ad -ad +aa +aa +aa ab ab -ad +aa ab ab ab @@ -6170,34 +6215,34 @@ ab ab ab ab -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa ab ab ab ab ab -ad -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa +aa ab ab ab ab ab ab -ad -GM -ad +aa +ag +aa ab -ad -ad +aa +aa ab ab ab @@ -6312,34 +6357,34 @@ ab ab ab ab -ad -GM -GM -ad +aa +ag +ag +aa ab ab ab ab ab -ad -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa +aa ab ab ab ab ab ab -ad -ad -ad -ad +aa +aa +aa +aa ab -ad -GM +aa +ag ab ab ab @@ -6453,35 +6498,35 @@ ab ab ab ab -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa ab ab ab ab ab -ad -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa +aa ab ab ab ab ab ab -ad -ad -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa +aa +aa ab ab ab @@ -6595,21 +6640,21 @@ ab ab ab ab -ad -ad -ad -ad +aa +aa +aa +aa ab ab ab -ad -ad -ad -ad +aa +aa +aa +aa ab -GM -ad -ad +ag +aa +aa ab ab ab @@ -6617,13 +6662,13 @@ ab ab ab ab -ad +aa ab ab -ad -GM -GM -ad +aa +ag +ag +aa ab ab ab @@ -6631,11 +6676,11 @@ ab ab ab ab -ad +aa ab -ad -ad -ad +aa +aa +aa ab ab ab @@ -6737,35 +6782,35 @@ ab ab ab ab -ad -GM -ad -ad -ad -ad -ad -ad -ad +aa +ag +aa +aa +aa +aa +aa +aa +aa ab ab ab -ad -ad -ad +aa +aa +aa ab ab ab ab ab ab -ad -ad +aa +aa ab ab ab -ad -ad -ad +aa +aa +aa ab ab ab @@ -6773,12 +6818,12 @@ ab ab ab ab -ad -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa +aa ab ab ab @@ -6879,50 +6924,50 @@ ab ab ab ab -ad -ad -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa +aa +aa ab ab ab ab ab ab -ad -ad +aa +aa ab ab ab ab ab ab -ad +aa ab ab ab ab -ad -ad -ad +aa +aa +aa ab ab ab ab ab ab -ad -ad -ad -ad -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa +aa +aa +aa +aa ab ab ab @@ -7021,8 +7066,8 @@ ab ab ab ab -ad -ad +aa +aa ab ab ab @@ -7035,37 +7080,37 @@ ab ab ab ab -ad -ad -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa +aa +aa ab ab ab ab ab ab -ad +aa ab ab ab ab ab ab -ad -ad -ad +aa +aa +aa ab ab ab ab -ad -ad -ad -ad +aa +aa +aa +aa ab ab ab @@ -7163,8 +7208,8 @@ ab ab ab ab -ad -ad +aa +aa ab ab ab @@ -7190,24 +7235,24 @@ ab ab ab ab -ad +aa ab ab ab ab ab ab -ad -ad +aa +aa ab ab ab ab ab -Gy -ad -Gy -ad +ae +aa +ae +aa ab ab ab @@ -7305,7 +7350,7 @@ ab ab ab ab -ad +aa ab ab ab @@ -7331,24 +7376,24 @@ ab ab ab ab -ad -ad +aa +aa ab ab ab ab ab -ad -ad -ad +aa +aa +aa ab ab ab ab ab -ad -ad -ad +aa +aa +aa ab ab ab @@ -7447,7 +7492,7 @@ ab ab ab ab -ad +aa ab ab ab @@ -7474,23 +7519,23 @@ ab ab ab ab -ad -ad +aa +aa ab ab ab ab -ad -ad -ad +aa +aa +aa ab ab ab ab ab ab -ad -ad +aa +aa ab ab ab @@ -7589,8 +7634,8 @@ ab ab ab ab -ad -ad +aa +aa ab ab ab @@ -7616,15 +7661,15 @@ ab ab ab ab -ad -ad -ad +aa +aa +aa ab ab ab -ad -ad -ad +aa +aa +aa ab ab ab @@ -7632,8 +7677,8 @@ ab ab ab ab -ad -ad +aa +aa ab ab ab @@ -7731,8 +7776,8 @@ ab ab ab ab -ad -ad +aa +aa ab ab ab @@ -7759,14 +7804,14 @@ ab ab ab ab -ad -ad -ad +aa +aa +aa ab -ad -ad -ad -ad +aa +aa +aa +aa ab ab ab @@ -7775,7 +7820,7 @@ ab ab ab ab -ad +aa ab ab ab @@ -7873,8 +7918,8 @@ ab ab ab ab -ad -ad +aa +aa ab ab ab @@ -7890,9 +7935,9 @@ ab ab ab ab -ad -ad -ad +aa +aa +aa ab ab ab @@ -7902,23 +7947,23 @@ ab ab ab ab -ad -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa +aa ab ab -ad -ad +aa +aa ab ab ab ab ab -ad -ad +aa +aa ab ab ab @@ -8016,7 +8061,7 @@ ab ab ab ab -ad +aa ab ab ab @@ -8030,10 +8075,10 @@ ab ab ab ab -ad -ad -ad -ad +aa +aa +aa +aa ab ab ab @@ -8045,24 +8090,24 @@ ab ab ab ab -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa ab -ad -ad -ad -ad +aa +aa +aa +aa ab ab ab ab ab -ad -ad -ad +aa +aa +aa ab ab ab @@ -8074,14 +8119,14 @@ ab ab ab ab -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa ab -ad -ad +aa +aa ab ab ab @@ -8158,22 +8203,22 @@ ab ab ab ab -ad -ad +aa +aa ab ab ab ab ab ab -ad -ad -ad -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa +aa +aa +aa ab ab ab @@ -8187,25 +8232,25 @@ ab ab ab ab -ad -ad -ad -ad -ad -ad -ad -Gy -ad +aa +aa +aa +aa +aa +aa +aa +ae +aa ab ab ab ab ab ab -ad -ad -ad -ad +aa +aa +aa +aa ab ab ab @@ -8215,16 +8260,16 @@ ab ab ab ab -ad -ad -Gy -ad -ad -ad -ad -ad -ad -ad +aa +aa +ae +aa +aa +aa +aa +aa +aa +aa ab ab ab @@ -8301,19 +8346,19 @@ ab ab ab ab -ad -ad +aa +aa ab ab ab ab ab -ad -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa +aa ab ab ab @@ -8329,14 +8374,14 @@ ab ab ab ab -ad +aa ab -ad -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa +aa ab ab ab @@ -8345,9 +8390,9 @@ ab ab ab ab -ad -ad -ad +aa +aa +aa ab ab ab @@ -8357,16 +8402,16 @@ ab ab ab ab -ad -ad -ad -ad +aa +aa +aa +aa ab ab ab -ad -Gy -ad +aa +ae +aa ab ab ab @@ -8444,18 +8489,18 @@ ab ab ab ab -ad -ad +aa +aa ab ab ab ab ab -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa ab ab ab @@ -8471,14 +8516,14 @@ ab ab ab ab -ad +aa ab ab -ad -Gy -ad -ad -ad +aa +ae +aa +aa +aa ab ab ab @@ -8487,9 +8532,9 @@ ab ab ab ab -ad -ad -ad +aa +aa +aa ab ab ab @@ -8498,18 +8543,18 @@ ab ab ab ab -ad -ad -ad -ad +aa +aa +aa +aa ab ab ab ab ab -ad -ad -ad +aa +aa +aa ab ab ab @@ -8586,18 +8631,18 @@ ab ab ab ab -ad -ad -ad +aa +aa +aa ab ab ab ab ab -ad -ad -ad -ad +aa +aa +aa +aa ab ab ab @@ -8607,20 +8652,20 @@ ab ab ab ab -ad -ad +aa +aa ab ab ab ab -ad -ad +aa +aa ab ab -ad -ad -ad -ad +aa +aa +aa +aa ab ab ab @@ -8629,29 +8674,29 @@ ab ab ab ab -ad -ad -ad -ad +aa +aa +aa +aa ab ab ab ab ab ab -ad -ad -ad -ad +aa +aa +aa +aa ab ab ab ab ab ab -ad -ad -ad +aa +aa +aa ab ab ab @@ -8730,14 +8775,14 @@ ab ab ab ab -ad -ad +aa +aa ab ab ab ab -ad -ad +aa +aa ab ab ab @@ -8749,15 +8794,15 @@ ab ab ab ab -ad -ad -ad +aa +aa +aa ab ab ab -ad -ad -ad +aa +aa +aa ab ab ab @@ -8772,18 +8817,18 @@ ab ab ab ab -ad -ad -ad -ad +aa +aa +aa +aa ab ab ab ab -ad -ad -ad -ad +aa +aa +aa +aa ab ab ab @@ -8792,8 +8837,8 @@ ab ab ab ab -ad -ad +aa +aa ab ab ab @@ -8872,15 +8917,15 @@ ab ab ab ab -ad -ad -ad +aa +aa +aa ab ab ab ab -ad -ad +aa +aa ab ab ab @@ -8891,15 +8936,15 @@ ab ab ab ab -ad -ad -ad -ad +aa +aa +aa +aa ab ab -ad -ad -ad +aa +aa +aa ab ab ab @@ -8909,22 +8954,22 @@ ab ab ab ab -ad -ad +aa +aa ab ab ab -ad -ad +aa +aa ab -ad +aa ab ab ab -ad -ad -ad -ad +aa +aa +aa +aa ab ab ab @@ -8934,8 +8979,8 @@ ab ab ab ab -ad -ad +aa +aa ab ab ab @@ -9015,33 +9060,33 @@ ab ab ab ab -ad -ad +aa +aa ab ab ab ab -ad -ad -ad +aa +aa +aa ab ab ab -ad -ad +aa +aa ab ab ab ab -ad -ad +aa +aa ab -ad +aa ab ab ab -ad -ad +aa +aa ab ab ab @@ -9052,20 +9097,20 @@ ab ab ab ab -ad -ad +aa +aa ab ab ab ab ab -ad -Gy +aa +ae ab -ad -Gy -ad -ad +aa +ae +aa +aa ab ab ab @@ -9076,9 +9121,9 @@ ab ab ab ab -ad -ad -ad +aa +aa +aa ab ab ab @@ -9158,33 +9203,33 @@ ab ab ab ab -ad -ad +aa +aa ab ab ab -ad -ad -ad +aa +aa +aa ab ab -ad -ad -ad -ad +aa +aa +aa +aa ab ab ab ab -ad +aa ab -ad -ad +aa +aa ab ab ab -ad -ad +aa +aa ab ab ab @@ -9195,17 +9240,17 @@ ab ab ab ab -ad -ad +aa +aa ab ab ab ab ab -ad -ad -ad -ad +aa +aa +aa +aa ab ab ab @@ -9219,11 +9264,11 @@ ab ab ab ab -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa ab ab ab @@ -9300,34 +9345,34 @@ ab ab ab ab -ad -ad +aa +aa ab ab ab -ad -ad -ad -ad +aa +aa +aa +aa ab -ad +aa ab ab -ad -ad +aa +aa ab ab -ad -ad +aa +aa ab ab -ad -ad +aa +aa ab ab ab -ad -ad +aa +aa ab ab ab @@ -9338,8 +9383,8 @@ ab ab ab ab -ad -ad +aa +aa ab ab ab @@ -9361,12 +9406,12 @@ ab ab ab ab -ad -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa +aa ab ab ab @@ -9443,34 +9488,34 @@ ab ab ab ab -ad +aa ab ab ab -ad -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa +aa ab ab ab ab -ad -ad -ad -ad +aa +aa +aa +aa ab ab ab -ad +aa ab ab ab ab -ad -ad +aa +aa ab ab ab @@ -9480,8 +9525,8 @@ ab ab ab ab -ad -ad +aa +aa ab ab ab @@ -9504,12 +9549,12 @@ ab ab ab ab -ad -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa +aa ab ab ab @@ -9563,7 +9608,7 @@ ab ab ab ab -ad +aa ab ab ab @@ -9585,34 +9630,34 @@ ab ab ab ab -ad -ad +aa +aa ab ab -ad -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa +aa ab ab ab ab ab -ad -ad +aa +aa ab ab ab -ad -ad +aa +aa ab ab ab ab ab -ad +aa ab ab ab @@ -9622,8 +9667,8 @@ ab ab ab ab -ad -ad +aa +aa ab ab ab @@ -9647,10 +9692,10 @@ ab ab ab ab -ad -ad -ad -ad +aa +aa +aa +aa ab ab ab @@ -9704,8 +9749,8 @@ ab ab ab ab -ad -ad +aa +aa ab ab ab @@ -9727,17 +9772,17 @@ ab ab ab ab -ad -ad +aa +aa ab ab -ad -ad -ad -ad -ad -hz -ad +aa +aa +aa +aa +aa +ac +aa ab ab ab @@ -9747,15 +9792,15 @@ ab ab ab ab -ad +aa ab ab ab ab ab ab -ad -ad +aa +aa ab ab ab @@ -9764,8 +9809,8 @@ ab ab ab ab -ad -ad +aa +aa ab ab ab @@ -9788,10 +9833,10 @@ ab ab ab ab -ad -ad -ad -ad +aa +aa +aa +aa ab ab ab @@ -9845,8 +9890,8 @@ ab ab ab ab -ad -ad +aa +aa ab ab ab @@ -9869,35 +9914,35 @@ ab ab ab ab -ad -ad +aa +aa ab ab -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa ab ab ab ab ab ab -ad -ad -ad -ad +aa +aa +aa +aa ab ab -ad -ad -ad +aa +aa +aa ab ab ab @@ -9905,9 +9950,9 @@ ab ab ab ab -ad -ad -ad +aa +aa +aa ab ab ab @@ -9930,10 +9975,10 @@ ab ab ab ab -ad -ad -ad -ad +aa +aa +aa +aa ab ab ab @@ -9987,7 +10032,7 @@ ab ab ab ab -ad +aa ab ab ab @@ -10011,21 +10056,21 @@ ab ab ab ab -ad -ad +aa +aa ab ab -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa ab ab ab @@ -10034,10 +10079,10 @@ ab ab ab ab -ad -ad -ad -ad +aa +aa +aa +aa ab ab ab @@ -10047,9 +10092,9 @@ ab ab ab ab -ad -ad -ad +aa +aa +aa ab ab ab @@ -10071,11 +10116,11 @@ ab ab ab ab -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa ab ab ab @@ -10110,11 +10155,11 @@ ab ab ab ab -yD -yD -yD -yD -yD +as +as +as +as +as ab ab ab @@ -10128,8 +10173,8 @@ ab ab ab ab -ad -ad +aa +aa ab ab ab @@ -10153,22 +10198,22 @@ ab ab ab ab -ad +aa ab ab ab -ad -ad -hz -ad -ad -ad -ad -ad -ad -ad -ad -ad +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa ab ab ab @@ -10177,21 +10222,21 @@ ab ab ab ab -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa ab ab ab ab ab ab -ad -ad -ad -ad +aa +aa +aa +aa ab ab ab @@ -10213,11 +10258,11 @@ ab ab ab ab -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa ab ab ab @@ -10252,11 +10297,11 @@ ab ab ab ab -yD +as vW Hk UX -yD +as ab ab ab @@ -10269,8 +10314,8 @@ ab ab ab ab -ad -ad +aa +aa ab ab ab @@ -10294,23 +10339,23 @@ ab ab ab ab -ad -ad +aa +aa ab ab ab ab -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa ab ab ab @@ -10322,17 +10367,17 @@ ab ab ab ab -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa ab ab ab @@ -10355,10 +10400,10 @@ ab ab ab ab -ad -ad -ad -ad +aa +aa +aa +aa ab ab ab @@ -10394,11 +10439,11 @@ ab ab ab ab -yD +as eY rj UX -yD +as ab ab ab @@ -10410,8 +10455,8 @@ ab ab ab ab -ad -ad +aa +aa ab ab ab @@ -10435,24 +10480,24 @@ ab ab ab ab -ad -ad +aa +aa ab ab ab ab ab ab -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa ab ab ab @@ -10465,16 +10510,16 @@ ab ab ab ab -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa ab ab ab @@ -10496,10 +10541,10 @@ ab ab ab ab -ad -ad -ad -ad +aa +aa +aa +aa ab ab ab @@ -10536,11 +10581,11 @@ ab ab ab ab -yD +as AJ AJ AJ -yD +as ab ab ab @@ -10551,9 +10596,9 @@ ab ab ab ab -ad -Gy -ad +aa +ae +aa ab ab ab @@ -10576,9 +10621,9 @@ ab ab ab ab -ad -ad -ad +aa +aa +aa ab ab ab @@ -10587,15 +10632,15 @@ ab ab ab ab -ad -ad -ad -ad -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa +aa +aa +aa +aa ab ab ab @@ -10608,13 +10653,13 @@ ab ab ab ab -ad -ad -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa +aa +aa ab ab ab @@ -10638,10 +10683,10 @@ ab ab ab ab -ad -ad -ad -ad +aa +aa +aa +aa ab ab ab @@ -10676,15 +10721,15 @@ ab ab ab ab -yD -yD -yD +as +as +as YM YM YM -yD -yD -yD +as +as +as ab ab ab @@ -10692,9 +10737,9 @@ ab ab ab ab -ad -ad -ad +aa +aa +aa ab ab ab @@ -10702,8 +10747,8 @@ ab ab ab ab -Da -Da +af +af ab ab ab @@ -10714,12 +10759,12 @@ ab ab ab ab -ad -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa +aa ab ab ab @@ -10730,14 +10775,14 @@ ab ab ab ab -ad -ad -ad -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa +aa +aa +aa ab ab ab @@ -10751,8 +10796,8 @@ ab ab ab ab -ad -ad +aa +aa ab ab ab @@ -10778,10 +10823,10 @@ ab ab ab ab -ad -ad -ad -ad +aa +aa +aa +aa ab ab ab @@ -10818,7 +10863,7 @@ ab ab ab ab -yD +as rj rj rj @@ -10826,16 +10871,16 @@ rj rj rj rj -yD -yD -yD +as +as +as ab ab ab ab ab -ad -ad +aa +aa uh uh uh @@ -10843,10 +10888,10 @@ uh uh uh uh -Da -Da -Da -Da +af +af +af +af ab ab ab @@ -10858,9 +10903,9 @@ ab ab ab ab -ad -ad -ad +aa +aa +aa ab ab ab @@ -10873,14 +10918,14 @@ ab ab ab ab -ad -ad -ad -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa +aa +aa +aa ab ab ab @@ -10894,7 +10939,7 @@ ab ab ab ab -ad +aa ab ab ab @@ -10909,21 +10954,21 @@ ab ab ab ab -ad -ad -ad -ad -ad -ah -ad -ad -ad +aa +aa +aa +aa +aa +aq +aa +aa +aa ab -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa ab ab ab @@ -10970,14 +11015,14 @@ tf su Gs rj -yD -yD +as +as ab ab ab -ad -ad -ad +aa +aa +aa uh yM yM @@ -10985,11 +11030,11 @@ yM xH gP uh -Da -Da -Da -Da -Da +af +af +af +af +af ab ab ab @@ -11016,14 +11061,14 @@ ab ab ab ab -ad -ad -ad -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa +aa +aa +aa ab ab ab @@ -11036,7 +11081,7 @@ ab ab ab ab -ad +aa ab ab ab @@ -11049,22 +11094,22 @@ ab ab ab ab -ad -ad -Gy -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad +aa +aa +ae +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa ab ab ab @@ -11095,13 +11140,13 @@ lq "} (73,1,1) = {" lq -yD -yD -yD -yD -yD -yD -yD +as +as +as +as +as +as +as rj tf TU @@ -11113,13 +11158,13 @@ su Tx rj Jz -yD +as ab ab ab -ad -ad -ad +aa +aa +aa uh yM bX @@ -11127,12 +11172,12 @@ xH xH xH mf -Da -Da -Da -Da -Da -Da +af +af +af +af +af +af ab ab ab @@ -11159,13 +11204,13 @@ ab ab ab ab -ad -ad -ad -hz -ad -ad -ad +aa +aa +aa +ac +aa +aa +aa ab ab ab @@ -11177,8 +11222,8 @@ ab ab ab ab -ad -ad +aa +aa ab ab ab @@ -11191,21 +11236,21 @@ ab ab ab ab -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa ab ab -ai -ad -ad -ad -ad -ad -ad -ad +ar +aa +aa +aa +aa +aa +aa +aa ab ab ab @@ -11237,7 +11282,7 @@ lq "} (74,1,1) = {" lq -yD +as Ce Ce xk @@ -11255,12 +11300,12 @@ su iu rj ba -yD +as ab ab +aa +aa ad -ad -ae uh uh uG @@ -11269,13 +11314,13 @@ xH Xs uh uh -Da -Da -Da -Da -Da -Da -Da +af +af +af +af +af +af +af ab ab ab @@ -11301,13 +11346,13 @@ ab ab ab ab -ad -ad -ad -ad -ad -hz -ad +aa +aa +aa +aa +aa +ac +aa ab ab ab @@ -11318,14 +11363,14 @@ ab ab ab ab -ad -ad +aa +aa ab ab ab ab -Da -Da +af +af ab ab ab @@ -11342,10 +11387,10 @@ ab ab kA kA -ad -ad -ad -ad +aa +aa +aa +aa ab ab ab @@ -11379,7 +11424,7 @@ lq "} (75,1,1) = {" lq -yD +as Ce Rv rj @@ -11396,13 +11441,13 @@ AJ su iu rj -yD -yD -yD +as +as +as ab -ad -ad -ad +aa +aa +aa HV xH xH @@ -11410,15 +11455,15 @@ xH xH xA Ou -Da -Da +af +af gA gA gA gA -Da -Da -Da +af +af +af ab ab ab @@ -11443,14 +11488,14 @@ ab ab ab ab -ad -ad -ad -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa +aa +aa +aa ab ab ab @@ -11459,16 +11504,16 @@ ab ab ab ab -ad -ad +aa +aa ab ab ab ab -Da -Da -Da -Da +af +af +af +af ab ab ab @@ -11483,10 +11528,10 @@ ab ab ab ab -ad -ad -ad -ad +aa +aa +aa +aa ab ab ab @@ -11521,7 +11566,7 @@ lq "} (76,1,1) = {" lq -yD +as Ce Ce rj @@ -11538,12 +11583,12 @@ gf tf rj rj -yD +as tI zz -ad -ad -ad +aa +aa +aa uh uh sm @@ -11552,15 +11597,15 @@ xH xH Oy vJ -Da -Da +af +af gA gA gA gA gA -Da -Da +af +af ab ab ab @@ -11585,33 +11630,33 @@ ab ab ab ab -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa ab ab ab -ad +aa ab ab ab ab -Da -Da -Da -ob -Da -Da +af +af +af +ao +af +af ab ab ab @@ -11625,10 +11670,10 @@ ab ab ab ab -ad -ad -ad -ad +aa +aa +aa +aa ab ab ab @@ -11663,13 +11708,13 @@ lq "} (77,1,1) = {" lq -yD -yD -yD +as +as +as hM hM -yD -yD +as +as rj tf TU @@ -11683,9 +11728,9 @@ rj tI tI zz -ad -ad -ad +aa +aa +aa uh lo nD @@ -11694,17 +11739,17 @@ xH xH We vJ -Da -Da +af +af gA gA gA gA gA -Da -Da -Da -Da +af +af +af +af ab ab ab @@ -11728,17 +11773,17 @@ ab ab ab ab -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa ab ab ab @@ -11748,13 +11793,13 @@ ab ab ab ab -Da -Da -Da -Da -Da -Da -Da +af +af +af +af +af +af +af ab ab ab @@ -11766,10 +11811,10 @@ ab ab ab ab -ad -ad -Gy -ad +aa +aa +ae +aa ab ab ab @@ -11807,10 +11852,10 @@ lq lq ab ab -yD +as Pb lX -yD +as ab rj tf @@ -11821,13 +11866,13 @@ tf tf tf rj -yD +as tI qr up -ad -ad -ad +aa +aa +aa uh eo XC @@ -11836,18 +11881,18 @@ xH xH OL TN -Da -Da +af +af gA gA gA gA gA gA -Da -Da -Da -Da +af +af +af +af ab ab ab @@ -11870,12 +11915,12 @@ ab ab ab ab -ad -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa +aa ab ab ab @@ -11889,14 +11934,14 @@ ab ab ab ab -Da -Da -Da -Da +af +af +af +af gA gA -Da -Da +af +af ab ab ab @@ -11908,10 +11953,10 @@ ab ab ab ab -ad -ad -ad -ad +aa +aa +aa +aa ab ab ab @@ -11949,12 +11994,12 @@ lq lq ab ab -yD -yD -yD -yD +as +as +as +as ab -yD +as rj rj rj @@ -11962,14 +12007,14 @@ rj rj vv wu -yD -yD +as +as tI qr DZ -ad -ad -ad +aa +aa +aa uh uh uh @@ -11978,19 +12023,68 @@ uh uh uh uh -Da -Da +af +af +gA +gA +QL +gA +gA +gA +ai +af +af +af +af +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ac +aa +aa +aa +aa +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +af +af +af gA gA gA gA -gA -gA -mF -Da -Da -Da -Da +af +af ab ab ab @@ -12000,59 +12094,10 @@ ab ab ab ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -hz -ad -ad -ad -ad -ad -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -Da -Da -Da -gA -gA -gA -gA -Da -Da -ab -ab -ab -ab -ab -ab -ab -ab -ab -ad -ad -ad -ad +aa +aa +aa +aa ab ab ab @@ -12096,22 +12141,22 @@ ab ab ab ab -yD -yD -yD +as +as +as YM YM YM -yD -yD -yD -yD +as +as +as +as tI qr up -ad -ad -ad +aa +aa +aa ab ab ab @@ -12120,8 +12165,8 @@ ab ab ab ab -Da -Da +af +af gA gA gA @@ -12129,11 +12174,11 @@ gA gA gA gA -Da -Da -Da -Da -Da +af +af +af +af +af ab ab ab @@ -12154,12 +12199,12 @@ ab ab ab ab -ad -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa +aa ab ab ab @@ -12171,17 +12216,17 @@ ab ab ab ab -Da -Da -Da -jz +af +af +af +ap gA gA gA gA gA -Da -Da +af +af ab ab ab @@ -12191,10 +12236,10 @@ ab ab ab ab -ad -ad -ad -ad +aa +aa +aa +aa ab ab ab @@ -12240,20 +12285,20 @@ ab ab ab ab -yD +as AJ AJ AJ -yD +as ab ab -yD +as Ki Ki ws -ad -ad -ad +aa +aa +aa ab ab ab @@ -12261,9 +12306,9 @@ ab ab ab ab -Da -Da -Da +af +af +af gA gA gA @@ -12272,12 +12317,12 @@ gA gA gA gA -Da -Da -Da -Da -Da -Da +af +af +af +af +af +af ab ab ab @@ -12296,12 +12341,12 @@ ab ab ab ab -ad -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa +aa ab ab ab @@ -12313,17 +12358,17 @@ ab ab ab ab -Da -Da -Da +af +af +af gA gA gA gA gA gA -Da -Da +af +af ab ab ab @@ -12333,15 +12378,15 @@ ab ab ab ab -Gy -ad -ad +ae +aa +aa ab ab ab -ad -ad -ad +aa +aa +aa ab ab ab @@ -12382,19 +12427,19 @@ ab ab ab ab -yD +as kS Wr ZR -yD +as ab ab ab -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa ab ab ab @@ -12403,10 +12448,10 @@ ab ab ab ab -Da -Da -Da -Da +af +af +af +af gA gA gA @@ -12415,11 +12460,11 @@ gA gA gA gA -Da -Da -Da -Da -Da +af +af +af +af +af ab ab ab @@ -12438,12 +12483,12 @@ ab ab ab ab -ad -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa +aa ab ab ab @@ -12454,18 +12499,18 @@ ab ab ab ab -Da -Da -Da +af +af +af gA gA gA +QL gA gA gA -gA -Da -Da +af +af ab ab ab @@ -12474,16 +12519,16 @@ ab ab ab ab -ad -ad -ad -ad +aa +aa +aa +aa ab ab -ad -ad -ad -ad +aa +aa +aa +aa ab ab ab @@ -12524,19 +12569,19 @@ ab ab ab ab -yD +as nh KY Aw -yD +as ab ab ab -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa ab ab ab @@ -12544,25 +12589,25 @@ ab ab ab ab -Da -Da -Da -Da -Da -Da -vZ -Da +af +af +af +af +af +af +ah +af gA gA gA gA gA gA -Da -Da -Da -Da -Da +af +af +af +af +af ab ab ab @@ -12580,12 +12625,12 @@ ab ab ab ab -ad -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa +aa ab ab ab @@ -12596,18 +12641,18 @@ ab ab ab ab -Da -Da -Da +af +af +af gA gA gA gA gA gA -Da -Da -Da +af +af +af ab ab ab @@ -12616,15 +12661,15 @@ ab ab ab ab -ad -ad -ad -ad +aa +aa +aa +aa ab ab -ad -ad -ad +aa +aa +aa ab ab ab @@ -12666,33 +12711,33 @@ ab ab ab ab -yD -yD -yD -yD -yD +as +as +as +as +as ab ab -ad -ad -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa +aa +aa ab ab ab ab ab ab -Da -Da -Da -Da -Da -Da -Da +af +af +af +af +af +af +af gA gA gA @@ -12701,10 +12746,10 @@ gA gA gA gA -Da -Da -Da -Da +af +af +af +af ab ab ab @@ -12722,12 +12767,12 @@ ab ab ab ab -ad -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa +aa ab ab ab @@ -12738,18 +12783,18 @@ ab ab ab ab -Da -Da -Da +af +af +af gA gA gA gA gA gA -Da -Da -Da +af +af +af ab ab ab @@ -12757,15 +12802,15 @@ ab ab ab ab -ad -ad -ad -ad +aa +aa +aa +aa ab ab -ad -ad -ad +aa +aa +aa ab ab ab @@ -12815,21 +12860,21 @@ ab ab ab ab -ad -ad -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa +aa +aa ab ab ab ab ab -Da -Da -Da +af +af +af gA gA gA @@ -12840,13 +12885,13 @@ gA gA gA gA -Da -Da -Da -Da -Da -Da -Da +af +af +af +af +af +af +af ab ab ab @@ -12862,11 +12907,11 @@ ab ab ab ab -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa ab ab ab @@ -12879,19 +12924,19 @@ ab ab ab ab -Da -Da -Da -Da -Da -Da +af +af +af +af +af +af gA gA gA -Da +af ab ab -Da +af ab ab ab @@ -12899,14 +12944,14 @@ ab ab ab ab -ad -ad -ad +aa +aa +aa ab ab ab -ad -ad +aa +aa ab ab ab @@ -12956,22 +13001,22 @@ ab ab ab ab -ad -ad -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa +aa +aa ab ab ab ab ab -Da -Da -Da -Da +af +af +af +af gA gA gA @@ -12982,12 +13027,12 @@ gA gA gA gA -Da -Da -Da -Da -Da -Da +af +af +af +af +af +af ab ab ab @@ -13002,13 +13047,13 @@ ab ab ab ab -ad -ad -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa +aa +aa ab ab ab @@ -13021,13 +13066,13 @@ ab ab ab ab -Da -Da -Da -Da -ob -Da -Da +af +af +af +af +ao +af +af ab ab ab @@ -13041,14 +13086,14 @@ ab ab ab ab -ad -ad +aa +aa ab ab ab ab -ad -ad +aa +aa ab ab ab @@ -13098,21 +13143,21 @@ ab ab ab ab -ad -ad -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa +aa +aa ab ab ab ab ab -Da -Da -Da +af +af +af gA gA gA @@ -13123,12 +13168,12 @@ gA gA gA gA -Da -Qe -Da -Da -Da -Da +af +aj +af +af +af +af ab ab ab @@ -13143,13 +13188,13 @@ ab ab ab ab -ad -ad -ad -ad -hz -ad -ad +aa +aa +aa +aa +ac +aa +aa ab ab ab @@ -13163,12 +13208,12 @@ ab ab ab ab -Da -Da -Da -Da -Da -Da +af +af +af +af +af +af ab ab ab @@ -13183,13 +13228,13 @@ ab ab ab ab -ad +aa ab ab ab ab -ad -ad +aa +aa ab ab ab @@ -13239,21 +13284,21 @@ ab ab ab ab -ad -ad -ad -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa +aa +aa +aa ab ab ab ab ab -Da -Da +af +af gA gA gA @@ -13265,10 +13310,10 @@ gA gA gA gA -Da -Da -Da -Da +af +af +af +af ab ab ab @@ -13281,14 +13326,14 @@ ab ab ab ab -ad -ad -ad -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa +aa +aa +aa ab ab ab @@ -13306,12 +13351,12 @@ ab ab ab ab -Da -Da -Da -Da -Da -Da +af +af +af +af +af +af ab ab ab @@ -13330,8 +13375,8 @@ ab ab ab ab -ad -ad +aa +aa ab ab ab @@ -13380,22 +13425,22 @@ ab ab ab ab -ad -ad -ad -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa +aa +aa +aa ab ab ab ab ab -Da -Da -Da +af +af +af gA gA gA @@ -13405,10 +13450,10 @@ gA gA gA gA -Da -Da -Da -Da +af +af +af +af ab ab ab @@ -13423,13 +13468,13 @@ ab ab ab ab -ad -ad -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa +aa +aa ab ab ab @@ -13441,19 +13486,19 @@ ab ab ab ab -ad +aa ab ab ab ab ab ab -Da -Da -Da -Da -Da -Da +af +af +af +af +af +af ab ab ab @@ -13472,8 +13517,8 @@ ab ab ab ab -ad -ad +aa +aa ab ab ab @@ -13521,33 +13566,33 @@ ab ab ab ab -ad -ad -hz -ad -ad -ad -ad -ad -ad +aa +aa +ac +aa +aa +aa +aa +aa +aa ab ab ab ab -Da -Da -Da -Da +af +af +af +af gA gA gA +QL gA gA gA -gA -Da -Da -Da +af +af +af ab ab ab @@ -13563,10 +13608,10 @@ ab ab ab ab -ad -ad -ad -ad +aa +aa +aa +aa ab ab ab @@ -13583,8 +13628,8 @@ ab ab ab ab -ad -ad +aa +aa ab ab ab @@ -13592,11 +13637,11 @@ ab ab ab ab -Da -Da -Da -Da -Da +af +af +af +af +af ab ab ab @@ -13614,8 +13659,8 @@ ab ab ab ab -ad -ad +aa +aa ab ab ab @@ -13664,22 +13709,22 @@ ab ab ab ab -ad -ad -ad +aa +aa +aa ab -ad -ad -ad -ad +aa +aa +aa +aa ab ab ab ab -Da -Da -Da -Da +af +af +af +af gA gA gA @@ -13687,7 +13732,7 @@ gA gA gA gA -Da +af ab ab ab @@ -13705,9 +13750,9 @@ ab ab ab ab -ad -ad -ad +aa +aa +aa ab ab ab @@ -13725,20 +13770,20 @@ ab ab ab ab -ad -ad -ad -ad +aa +aa +aa +aa ab ab ab ab ab ab -Da -Da -Da -Da +af +af +af +af ab ab ab @@ -13756,8 +13801,8 @@ ab ab ab ab -ad -ad +aa +aa ab ab ab @@ -13806,30 +13851,30 @@ ab ab ab ab -ad -ad +aa +aa ab ab -ad -ad -ad -ad +aa +aa +aa +aa ab ab ab ab ab -Da -Da -Da +af +af +af gA gA gA gA gA gA -Da -Da +af +af ab ab ab @@ -13846,9 +13891,9 @@ ab ab ab ab -ad -ad -ad +aa +aa +aa ab ab ab @@ -13868,19 +13913,19 @@ ab ab ab ab -ad -ad -ad -ad +aa +aa +aa +aa ab ab ab ab ab -Da -Da -Da -Da +af +af +af +af ab ab ab @@ -13898,8 +13943,8 @@ ab ab ab ab -ad -ad +aa +aa ab ab ab @@ -13948,30 +13993,30 @@ ab ab ab ab -ad -ad +aa +aa ab ab -ad -ad -ad -ad +aa +aa +aa +aa ab ab ab ab ab ab -Da -Da +af +af gA gA gA gA gA gA -Da -Da +af +af ab ab ab @@ -13987,9 +14032,9 @@ ab ab ab ab -ad -ad -ad +aa +aa +aa ab ab ab @@ -14010,19 +14055,19 @@ ab ab ab ab -ad -ad -ad -ad +aa +aa +aa +aa ab ab ab ab ab ab -Da -Da -Da +af +af +af ab ab ab @@ -14040,8 +14085,8 @@ ab ab ab ab -ad -ad +aa +aa ab ab ab @@ -14089,15 +14134,15 @@ ab ab ab ab -ad -ad +aa +aa ab ab ab -ad -ad -ad -ad +aa +aa +aa +aa ab ab ab @@ -14105,15 +14150,15 @@ ab ab ab ab -Da -Da +af +af gA gA gA gA -Da -Da -Da +af +af +af ab ab ab @@ -14128,9 +14173,9 @@ ab ab ab ab -ad -ad -ad +aa +aa +aa ab ab ab @@ -14152,19 +14197,19 @@ ab ab ab ab -ad +aa ab -ad -ad -ad -ad +aa +aa +aa +aa ab ab ab ab ab -Da -Da +af +af ab ab ab @@ -14182,8 +14227,8 @@ ab ab ab ab -ad -ad +aa +aa ab ab ab @@ -14231,15 +14276,15 @@ ab ab ab ab -ad -ad +aa +aa ab ab ab ab -ad -ad -ad +aa +aa +aa ab ab ab @@ -14247,15 +14292,15 @@ ab ab ab ab -Da -Da -Da +af +af +af gA gA -Da +af ab -Da -Da +af +af ab ab ab @@ -14270,9 +14315,9 @@ ab ab ab ab -ad -ad -ad +aa +aa +aa ab ab ab @@ -14285,22 +14330,22 @@ ab ab ab ab -ad -ad -ad -ad +aa +aa +aa +aa ab ab ab ab ab -ad +aa ab ab ab ab -ad -ad +aa +aa ab ab ab @@ -14324,8 +14369,8 @@ ab ab ab ab -ad -ad +aa +aa ab ab ab @@ -14373,16 +14418,16 @@ ab ab ab ab -ad -ad +aa +aa ab ab ab ab -ad -ad -ad -ad +aa +aa +aa +aa ab ab ab @@ -14390,11 +14435,11 @@ ab ab ab ab -Da -Da -Da -Da -Da +af +af +af +af +af ab ab ab @@ -14412,8 +14457,8 @@ ab ab ab ab -ad -ad +aa +aa ab ab ab @@ -14426,24 +14471,24 @@ ab ab ab ab -ad -ad +aa +aa ab -ad -ad +aa +aa ab ab ab ab -ad -ad +aa +aa ab ab ab ab ab -ad -ad +aa +aa ab ab ab @@ -14465,9 +14510,9 @@ ab ab ab ab -ad -ad -ad +aa +aa +aa ab ab ab @@ -14515,16 +14560,16 @@ ab ab ab ab -ad -ad +aa +aa ab ab ab ab ab -ad -ad -ad +aa +aa +aa ab ab ab @@ -14554,9 +14599,9 @@ ab ab ab ab -ad -ad -ad +aa +aa +aa ab ab ab @@ -14568,25 +14613,25 @@ ab ab ab ab -ad +aa ab ab ab -ad +aa ab ab ab ab -ad -ad +aa +aa ab ab ab ab ab ab -ad -ad +aa +aa ab ab ab @@ -14607,9 +14652,9 @@ ab ab ab ab -ad -ad -ad +aa +aa +aa ab ab ab @@ -14656,18 +14701,18 @@ ab ab ab ab -ad -ad -ad +aa +aa +aa ab ab ab ab ab -ad -ad -ad -ad +aa +aa +aa +aa ab ab ab @@ -14696,9 +14741,9 @@ ab ab ab ab -ad -ad -ad +aa +aa +aa ab ab ab @@ -14709,17 +14754,17 @@ ab ab ab ab -ad -ad +aa +aa ab ab ab -ad -ad +aa +aa ab ab ab -ad +aa ab ab ab @@ -14727,8 +14772,8 @@ ab ab ab ab -ad -ad +aa +aa ab ab ab @@ -14749,9 +14794,9 @@ ab ab ab ab -ad -ad -ad +aa +aa +aa ab ab ab @@ -14798,21 +14843,21 @@ ab ab ab ab -ad -ad -ad +aa +aa +aa ab ab ab ab ab ab -ad -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa +aa ab ab ab @@ -14839,8 +14884,8 @@ ab ab ab ab -ad -ad +aa +aa ab ab ab @@ -14851,17 +14896,17 @@ ab ab ab ab -ad +aa ab ab ab -ad -ad -ad +aa +aa +aa ab ab -ad -ad +aa +aa ab ab ab @@ -14870,8 +14915,8 @@ ab ab ab ab -ad -ad +aa +aa ab ab ab @@ -14891,9 +14936,9 @@ ab ab ab ab -ad -ad -ad +aa +aa +aa ab ab ab @@ -14940,9 +14985,9 @@ ab ab ab ab -ad -ad -ad +aa +aa +aa ab ab ab @@ -14950,13 +14995,13 @@ ab ab ab ab -ad -ad -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa +aa +aa ab ab ab @@ -14981,10 +15026,10 @@ ab ab ab ab -ad -ad -ad -ad +aa +aa +aa +aa ab ab ab @@ -14992,18 +15037,18 @@ ab ab ab ab -ad -ad +aa +aa ab ab ab -ad -ad -ad +aa +aa +aa ab -ad -ad -ad +aa +aa +aa ab ab ab @@ -15012,8 +15057,8 @@ ab ab ab ab -ad -ad +aa +aa ab ab ab @@ -15033,9 +15078,9 @@ ab ab ab ab -ad -ad -ad +aa +aa +aa ab ab ab @@ -15082,9 +15127,9 @@ ab ab ab ab -ad -ad -ad +aa +aa +aa ab ab ab @@ -15094,12 +15139,12 @@ ab ab ab ab -ad -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa +aa ab ab ab @@ -15124,38 +15169,38 @@ ab ab ab ab -ad -ad -ad -ad +aa +aa +aa +aa ab ab ab ab ab -ad -ad -ad +aa +aa +aa ab ab ab -ad -ad -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa +aa +aa ab ab ab ab ab ab -ad +aa ab -ad -ad +aa +aa ab ab ab @@ -15175,9 +15220,9 @@ ab ab ab ab -ad -ad -ad +aa +aa +aa ab ab ab @@ -15224,9 +15269,9 @@ ab ab ab ab -ad -ad -ad +aa +aa +aa ab ab ab @@ -15268,16 +15313,16 @@ ab ab ab ab -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa ab -ad -ad -ad -ad +aa +aa +aa +aa ab ab ab @@ -15294,9 +15339,9 @@ ab ab ab ab -ad -ad -ad +aa +aa +aa ab ab ab @@ -15317,9 +15362,9 @@ ab ab ab ab -ad -ad -ad +aa +aa +aa ab ab ab @@ -15366,9 +15411,9 @@ ab ab ab ab -ad -ad -ad +aa +aa +aa ab ab ab @@ -15413,12 +15458,12 @@ ab ab ab ab -ad -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa +aa ab ab ab @@ -15436,9 +15481,9 @@ ab ab ab ab -ad -ad -ad +aa +aa +aa ab ab ab @@ -15460,9 +15505,9 @@ ab ab ab ab -ad -ad -ad +aa +aa +aa ab ab ab @@ -15508,10 +15553,10 @@ ab ab ab ab -ad -ad -ad -ad +aa +aa +aa +aa ab ab ab @@ -15577,10 +15622,10 @@ ab ab ab ab -ad -ad -ad -ad +aa +aa +aa +aa ab ab ab @@ -15603,8 +15648,8 @@ ab ab ab ab -ad -ad +aa +aa ab ab ab @@ -15651,9 +15696,9 @@ ab ab ab ab -ad -ad -ad +aa +aa +aa ab ab ab @@ -15718,10 +15763,10 @@ ab ab ab ab -ad -ad -ad -ad +aa +aa +aa +aa ab ab ab @@ -15746,8 +15791,8 @@ GR ab ab ab -ad -ad +aa +aa ab ab ab @@ -15781,7 +15826,7 @@ lq "} (106,1,1) = {" lz -ad +aa ab ab ab @@ -15794,8 +15839,8 @@ ab ab ab ab -ad -ad +aa +aa ab ab ab @@ -15858,12 +15903,12 @@ ab ab ab ab -ad -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa +aa ab ab ab @@ -15888,9 +15933,9 @@ GR GR GR ab -ad -ad -ad +aa +aa +aa ab ab ab @@ -15923,7 +15968,7 @@ lq "} (107,1,1) = {" lz -ad +aa ab ab ab @@ -15936,8 +15981,8 @@ ab ab ab ab -ad -ad +aa +aa ab ab ab @@ -15997,15 +16042,15 @@ ab ab ab ab -ad -ad -ad -ad -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa +aa +aa +aa +aa ab ab ab @@ -16031,9 +16076,9 @@ gF GR ab ab -ad -ad -ad +aa +aa +aa ab ab ab @@ -16065,8 +16110,8 @@ lq "} (108,1,1) = {" lz -ad -ad +aa +aa ab ab ab @@ -16079,7 +16124,7 @@ ab ab ab ab -ad +aa ab ab ab @@ -16138,16 +16183,16 @@ ab ab ab ab -ad -ad -hz -ad -ad -ad -ad -ad -hz -ad +aa +aa +ac +aa +aa +aa +aa +aa +ac +aa ab ab ab @@ -16174,8 +16219,8 @@ GR ab ab ab -ad -ad +aa +aa ab ab ab @@ -16208,8 +16253,8 @@ lq (109,1,1) = {" lq ab -ad -ad +aa +aa ab ab ab @@ -16221,8 +16266,8 @@ ab ab ab ab -ad -ad +aa +aa ab ab ab @@ -16278,17 +16323,17 @@ ab ab ab ab -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa ab ab ab @@ -16317,8 +16362,8 @@ ab ab ab ab -ad -ad +aa +aa ab ab ab @@ -16351,8 +16396,8 @@ lq lq ab ab -ad -ad +aa +aa ab ab ab @@ -16362,9 +16407,9 @@ ab ab ab ab -ad -ad -ad +aa +aa +aa ab ab ab @@ -16419,18 +16464,18 @@ ab ab ab ab -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa ab ab ab @@ -16459,8 +16504,8 @@ ab ab ab ab -ad -ad +aa +aa ab ab ab @@ -16493,8 +16538,8 @@ lq lq ab ab -ad -ad +aa +aa ab ab ab @@ -16503,10 +16548,10 @@ ab ab ab ab -ad -ad -ad -ad +aa +aa +aa +aa ab ab ab @@ -16560,16 +16605,16 @@ ab ab ab ab -ad -ad -ad -ad -hz -ad -ad -ad -hz -ad +aa +aa +aa +aa +ac +aa +aa +aa +ac +aa ab ab ab @@ -16601,8 +16646,8 @@ ab ab ab ab -ad -ad +aa +aa ab ab ab @@ -16636,17 +16681,17 @@ lq ab ab ab -ad -ad +aa +aa ab ab ab ab ab -ad -ad -ad -ad +aa +aa +aa +aa ab ab ab @@ -16700,18 +16745,18 @@ ab ab ab ab -ad -ad -ad -ad -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa +aa +aa +aa +aa ab -ad -ad +aa +aa ab ab ab @@ -16743,8 +16788,8 @@ ab ab ab ab -ad -ad +aa +aa ab ab ab @@ -16779,15 +16824,15 @@ ab ab ab ab -ad -ad +aa +aa ab ab ab -ad -ad -ad -ad +aa +aa +aa +aa ab ab ab @@ -16840,14 +16885,14 @@ ab ab ab ab -ad -ad -ad -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa +aa +aa +aa ab ab ab @@ -16884,8 +16929,8 @@ ab ab ab ab -ad -ad +aa +aa ab ab ab @@ -16921,14 +16966,14 @@ ab ab ab ab -ad -ad -ad -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa +aa +aa +aa ab ab ab @@ -16982,10 +17027,10 @@ ab ab ab ab -ad -ad -ad -ad +aa +aa +aa +aa ab ab ab @@ -17026,8 +17071,8 @@ ab ab ab ab -ad -ad +aa +aa ab ab ab @@ -17064,11 +17109,11 @@ ab ab ab ab -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa ab ab ab @@ -17124,8 +17169,8 @@ ab ab ab ab -ad -ad +aa +aa ab ab ab @@ -17153,9 +17198,9 @@ ab ab ab ab -ad -ad -ad +aa +aa +aa ab ab ab @@ -17168,8 +17213,8 @@ ab ab ab ab -ad -ad +aa +aa ab ab ab @@ -17265,8 +17310,8 @@ ab ab ab ab -ad -ad +aa +aa ab ab ab @@ -17294,14 +17339,14 @@ ab ab ab ab -ad -ad -ad -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa +aa +aa +aa ab ab ab @@ -17310,8 +17355,8 @@ ab ab ab ab -ad -ad +aa +aa ab ab ab @@ -17407,8 +17452,8 @@ ab ab ab ab -ad -ad +aa +aa ab ab ab @@ -17436,24 +17481,24 @@ ab ab ab ab -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa ab ab ab -ad -ad -ad +aa +aa +aa ab ab ab @@ -17549,8 +17594,8 @@ ab ab ab ab -ad -ad +aa +aa ab ab ab @@ -17579,22 +17624,22 @@ ab ab ab ab -ad +aa ab ab ab ab -ad -ad -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa +aa +aa ab -ad -ad -ad +aa +aa +aa ab ab ab @@ -17690,10 +17735,10 @@ ab ab ab ab -ad -ad -ad -ad +aa +aa +aa +aa ab ab ab @@ -17719,23 +17764,23 @@ ab ab ab ab -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa ab ab ab -ad -ad -ad +aa +aa +aa ab ab -ad -ad -ad -ad +aa +aa +aa +aa ab ab ab @@ -17832,10 +17877,10 @@ ab ab ab ab -ad -ad -ad -ad +aa +aa +aa +aa ab ab ab @@ -17861,11 +17906,11 @@ ab ab ab ab -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa ab ab ab @@ -17875,9 +17920,9 @@ ab ab ab ab -ad -ad -ad +aa +aa +aa ab ab ab @@ -17974,10 +18019,10 @@ ab ab ab ab -ad -ad -ad -ad +aa +aa +aa +aa ab ab ab @@ -18005,10 +18050,10 @@ ab ab ab ab -ad -ad -ad -ad +aa +aa +aa +aa ab ab ab @@ -18017,8 +18062,8 @@ ab ab ab ab -ad -ad +aa +aa ab ab ab @@ -18116,11 +18161,11 @@ ab ab ab ab -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa ab ab ab @@ -18149,8 +18194,8 @@ ab ab ab ab -ad -ad +aa +aa ab ab ab @@ -18258,11 +18303,11 @@ ab ab ab ab -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa ab ab ab @@ -18282,17 +18327,17 @@ ab ab ab ab -ad -ad -ad -ad +aa +aa +aa +aa ab ab ab ab ab -ad -ad +aa +aa ab ab ab @@ -18399,13 +18444,13 @@ ab ab ab ab -ad -ad -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa +aa +aa ab ab ab @@ -18424,18 +18469,18 @@ ab ab ab ab -ad -ad -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa +aa +aa ab ab -ad -ad -ad +aa +aa +aa ab ab ab @@ -18541,14 +18586,14 @@ ab ab ab ab -ad -ad -ad -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa +aa +aa +aa ab ab ab @@ -18565,19 +18610,19 @@ ab ab ab ab -ad -ad -ad -ad -hz -ad -ad -ad -ad -ad -ad -ad -ad +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa ab ab ab @@ -18684,15 +18729,15 @@ ab ab ab ab -ad -ad -ad -ad -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa +aa +aa +aa +aa ab ab ab @@ -18701,26 +18746,26 @@ ab ab ab ab -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa ab ab ab @@ -18827,43 +18872,43 @@ ab ab ab ab -ad -ad -ad -ad -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa +aa +aa +aa +aa ab ab ab ab -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa ab ab ab ab ab -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa ab ab ab @@ -18970,27 +19015,27 @@ ab ab ab ab -ad -ad -ad -ad -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa +aa +aa +aa +aa ab ab -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa ab ab ab @@ -19003,9 +19048,9 @@ ab ab ab ab -ad -ad -ad +aa +aa +aa ab ab ab @@ -19114,22 +19159,22 @@ ab ab ab ab -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa ab ab ab @@ -19146,8 +19191,8 @@ ab ab ab ab -ad -ad +aa +aa ab ab ab @@ -19257,19 +19302,19 @@ ab ab ab ab -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa ab ab ab @@ -19289,8 +19334,8 @@ ab ab ab ab -ad -ad +aa +aa ab ab ab @@ -19402,13 +19447,13 @@ ab ab ab ab -ad -ad -ad +aa +aa +aa ab ab ab -ad +aa ab ab ab @@ -19431,9 +19476,9 @@ ab ab ab ab -ad -ad -ad +aa +aa +aa ab ab ab @@ -19573,9 +19618,9 @@ ab ab ab ab -ad -ad -ad +aa +aa +aa ab ab ab @@ -19716,9 +19761,9 @@ ab ab ab ab -ad -ad -ad +aa +aa +aa ab ab ab @@ -19858,9 +19903,9 @@ ab ab ab ab -ad -ad -ad +aa +aa +aa ab ab ab @@ -19999,11 +20044,11 @@ ab ab ab ab -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa ab ab ab @@ -20141,11 +20186,11 @@ ab ab ab ab -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa ab ab ab @@ -20283,11 +20328,11 @@ ab ab ab ab -ad -ad -ad -ad -ad +aa +aa +aa +aa +aa ab ab ab @@ -20425,10 +20470,10 @@ ab ab ab ab -ad -ad -ad -ad +aa +aa +aa +aa ab ab ab @@ -20567,10 +20612,10 @@ ab ab ab ab -ad -ad -ad -ad +aa +aa +aa +aa ab ab ab diff --git a/maps/gateway_vr/listeningpost.dm b/maps/gateway_vr/listeningpost.dm index 14d95aa2dd..3483d826bb 100644 --- a/maps/gateway_vr/listeningpost.dm +++ b/maps/gateway_vr/listeningpost.dm @@ -1,4 +1,4 @@ -/obj/effect/overmap/visitable/sector/tether_gateway/listeningpost +/obj/effect/overmap/visitable/sector/common_gateway/listeningpost initial_generic_waypoints = list("tether_excursion_listeningpost") name = "Strange Asteroid" scanner_desc = @{"[i]Registration[/i]: UNKNOWN diff --git a/maps/gateway_vr/listeningpost.dmm b/maps/gateway_vr/listeningpost.dmm index 8f451550f0..6c2d6b2fb9 100644 --- a/maps/gateway_vr/listeningpost.dmm +++ b/maps/gateway_vr/listeningpost.dmm @@ -211,7 +211,7 @@ /turf/simulated/mineral/floor, /area/mine/unexplored) "aL" = ( -/turf/simulated/floor/greengrid, +/turf/simulated/floor/greengrid/airless, /area/mine/explored) "aM" = ( /turf/simulated/mineral/floor, @@ -220,54 +220,54 @@ /obj/machinery/gateway{ dir = 9 }, -/turf/simulated/floor/greengrid, +/turf/simulated/floor/greengrid/airless, /area/mine/explored) "aO" = ( /obj/machinery/gateway{ dir = 1 }, -/turf/simulated/floor/greengrid, +/turf/simulated/floor/greengrid/airless, /area/mine/explored) "aP" = ( /obj/machinery/gateway{ dir = 5 }, -/turf/simulated/floor/greengrid, +/turf/simulated/floor/greengrid/airless, /area/mine/explored) "aQ" = ( /obj/machinery/gateway{ dir = 8 }, -/turf/simulated/floor/greengrid, +/turf/simulated/floor/greengrid/airless, /area/mine/explored) "aR" = ( /obj/machinery/gateway/centeraway, -/turf/simulated/floor/greengrid, +/turf/simulated/floor/greengrid/airless, /area/mine/explored) "aS" = ( /obj/machinery/gateway{ dir = 4 }, -/turf/simulated/floor/greengrid, +/turf/simulated/floor/greengrid/airless, /area/mine/explored) "aT" = ( /obj/machinery/gateway{ dir = 10 }, -/turf/simulated/floor/greengrid, +/turf/simulated/floor/greengrid/airless, /area/mine/explored) "aU" = ( /obj/machinery/gateway, -/turf/simulated/floor/greengrid, +/turf/simulated/floor/greengrid/airless, /area/mine/explored) "aV" = ( /obj/machinery/gateway{ dir = 6 }, -/turf/simulated/floor/greengrid, +/turf/simulated/floor/greengrid/airless, /area/mine/explored) "aW" = ( -/obj/effect/overmap/visitable/sector/tether_gateway/listeningpost, +/obj/effect/overmap/visitable/sector/common_gateway/listeningpost, /turf/space, /area/space) "aX" = ( diff --git a/maps/gateway_vr/snow_outpost.dm b/maps/gateway_vr/snow_outpost.dm index c840ce401a..1814683c45 100644 --- a/maps/gateway_vr/snow_outpost.dm +++ b/maps/gateway_vr/snow_outpost.dm @@ -1,4 +1,4 @@ -/obj/effect/overmap/visitable/sector/tether_gateway/snowoutpost +/obj/effect/overmap/visitable/sector/common_gateway/snowoutpost initial_generic_waypoints = list("tether_excursion_snow_outpost") in_space = 0 name = "Snowy Outpost" diff --git a/maps/gateway_vr/snow_outpost.dmm b/maps/gateway_vr/snow_outpost.dmm index f5af281984..6878639a32 100644 --- a/maps/gateway_vr/snow_outpost.dmm +++ b/maps/gateway_vr/snow_outpost.dmm @@ -2868,7 +2868,7 @@ /turf/simulated/floor/snow/snow2, /area/awaymission/snow_outpost/dark) "Uy" = ( -/obj/effect/overmap/visitable/sector/tether_gateway/snowoutpost, +/obj/effect/overmap/visitable/sector/common_gateway/snowoutpost, /turf/simulated/mineral/ignore_mapgen, /area/awaymission/snow_outpost/dark) "Vk" = ( diff --git a/maps/gateway_vr/snowfield.dm b/maps/gateway_vr/snowfield.dm index fc68f82aa9..3aed3117ba 100644 --- a/maps/gateway_vr/snowfield.dm +++ b/maps/gateway_vr/snowfield.dm @@ -1,4 +1,4 @@ -/obj/effect/overmap/visitable/sector/tether_gateway/snowfield +/obj/effect/overmap/visitable/sector/common_gateway/snowfield initial_generic_waypoints = list("tether_excursion_snowfield") in_space = 0 name = "Snowy Field" diff --git a/maps/gateway_vr/snowfield.dmm b/maps/gateway_vr/snowfield.dmm index 1189687dff..7292de11f1 100644 --- a/maps/gateway_vr/snowfield.dmm +++ b/maps/gateway_vr/snowfield.dmm @@ -1643,7 +1643,7 @@ }, /area/awaymission/snowfield/restricted) "Bw" = ( -/obj/effect/overmap/visitable/sector/tether_gateway/snowfield, +/obj/effect/overmap/visitable/sector/common_gateway/snowfield, /turf/simulated/floor/outdoors/snow{ nitrogen = 93.7835; oxygen = 20.7263; diff --git a/maps/gateway_vr/variable/arynthilake.dm b/maps/gateway_vr/variable/arynthilake.dm index e710acf305..50421175f3 100644 --- a/maps/gateway_vr/variable/arynthilake.dm +++ b/maps/gateway_vr/variable/arynthilake.dm @@ -1,36 +1,43 @@ -/obj/effect/overmap/visitable/sector/tether_gateway/arynthilake +/obj/effect/overmap/visitable/sector/common_gateway/arynthilake name = "bluespace shimmer" desc = "The shimmering reflection of some sort of bluespace phenomena." scanner_desc = @{"It is difficult to tell just what is beyond this strange shimmering shape. The air beyond seems breathable."} icon = 'icons/obj/overmap_vr.dmi' icon_state = "shimmer" + color = "#171DFF" //bloo in_space = 0 unknown_state = "field" known = FALSE -/datum/map_template/tether_lateload/gateway/arynthilake/on_map_loaded(z) - . = ..() - new /datum/random_map/automata/cave_system/no_cracks(null, 3, 3, z, world.maxx - 4, world.maxy - 4) // Create the mining Z-level. - new /datum/random_map/noise/ore(null, 1, 1, z, 64, 64) // Create the mining ore distribution map. + skybox_icon = 'icons/skybox/anomaly.dmi' + skybox_icon_state = "shimmer_b" + skybox_pixel_x = 0 + skybox_pixel_y = 0 -/datum/map_template/tether_lateload/gateway/arynthilakeunderground/on_map_loaded(z) - . = ..() - new /datum/random_map/automata/cave_system/no_cracks(null, 3, 3, z, world.maxx - 4, world.maxy - 4) // Create the mining Z-level. - new /datum/random_map/noise/ore(null, 1, 1, z, 64, 64) // Create the mining ore distribution map. -/datum/map_template/tether_lateload/gateway/arynthilake_b/on_map_loaded(z) - . = ..() - new /datum/random_map/automata/cave_system/no_cracks(null, 3, 3, z, world.maxx - 4, world.maxy - 4) // Create the mining Z-level. - new /datum/random_map/noise/ore(null, 1, 1, z, 64, 64) // Create the mining ore distribution map. +/datum/map_template/common_lateload/gateway/arynthilake/on_map_loaded(z) + . = ..() + new /datum/random_map/automata/cave_system/no_cracks(null, 3, 3, z, world.maxx - 4, world.maxy - 4) // Create the mining Z-level. + new /datum/random_map/noise/ore(null, 1, 1, z, 64, 64) // Create the mining ore distribution map. -/datum/map_template/tether_lateload/gateway/arynthilakeunderground_b/on_map_loaded(z) - . = ..() - new /datum/random_map/automata/cave_system/no_cracks(null, 3, 3, z, world.maxx - 4, world.maxy - 4) // Create the mining Z-level. - new /datum/random_map/noise/ore(null, 1, 1, z, 64, 64) // Create the mining ore distribution map. +/datum/map_template/common_lateload/gateway/arynthilakeunderground/on_map_loaded(z) + . = ..() + new /datum/random_map/automata/cave_system/no_cracks(null, 3, 3, z, world.maxx - 4, world.maxy - 4) // Create the mining Z-level. + new /datum/random_map/noise/ore(null, 1, 1, z, 64, 64) // Create the mining ore distribution map. + +/datum/map_template/common_lateload/gateway/arynthilake_b/on_map_loaded(z) + . = ..() + new /datum/random_map/automata/cave_system/no_cracks(null, 3, 3, z, world.maxx - 4, world.maxy - 4) // Create the mining Z-level. + new /datum/random_map/noise/ore(null, 1, 1, z, 64, 64) // Create the mining ore distribution map. + +/datum/map_template/common_lateload/gateway/arynthilakeunderground_b/on_map_loaded(z) + . = ..() + new /datum/random_map/automata/cave_system/no_cracks(null, 3, 3, z, world.maxx - 4, world.maxy - 4) // Create the mining Z-level. + new /datum/random_map/noise/ore(null, 1, 1, z, 64, 64) // Create the mining ore distribution map. /obj/effect/landmark/map_data/arynthilake - height = 2 + height = 2 //Areas// diff --git a/maps/gateway_vr/variable/arynthilake_a.dmm b/maps/gateway_vr/variable/arynthilake_a.dmm index 6da233bf6c..42f3f1b517 100644 --- a/maps/gateway_vr/variable/arynthilake_a.dmm +++ b/maps/gateway_vr/variable/arynthilake_a.dmm @@ -3,7 +3,7 @@ /turf/unsimulated/mineral, /area/gateway/arynthilake) "ac" = ( -/turf/simulated/mineral/ignore_cavegen, +/turf/simulated/mineral/ignore_cavegen/cave, /area/gateway/arynthilake) "ae" = ( /obj/effect/floor_decal/techfloor{ @@ -18,7 +18,7 @@ /turf/simulated/floor/tiled/techfloor, /area/gateway/arynthilake/gateway) "af" = ( -/turf/simulated/mineral/floor/ignore_cavegen, +/turf/simulated/mineral/floor/ignore_cavegen/cave, /area/gateway/arynthilake) "ag" = ( /turf/simulated/wall/r_wall, @@ -147,7 +147,7 @@ /area/gateway/arynthilake/oldcabin) "aV" = ( /obj/item/weapon/lampshade, -/turf/simulated/mineral/floor/ignore_cavegen, +/turf/simulated/mineral/floor/ignore_cavegen/cave, /area/gateway/arynthilake/caves) "aX" = ( /turf/simulated/floor/carpet/bcarpet, @@ -227,13 +227,13 @@ /area/gateway/arynthilake) "bn" = ( /obj/structure/table/steel, -/turf/simulated/mineral/floor/ignore_cavegen{ +/turf/simulated/mineral/floor/ignore_cavegen/cave{ outdoors = 1 }, /area/gateway/arynthilake) "bo" = ( /obj/structure/table, -/turf/simulated/mineral/floor/ignore_cavegen{ +/turf/simulated/mineral/floor/ignore_cavegen/cave{ outdoors = 1 }, /area/gateway/arynthilake) @@ -345,7 +345,7 @@ /obj/item/stack/material/steel{ amount = 50 }, -/turf/simulated/mineral/floor/ignore_cavegen{ +/turf/simulated/mineral/floor/ignore_cavegen/cave{ outdoors = 1 }, /area/gateway/arynthilake) @@ -540,7 +540,7 @@ /area/gateway/arynthilake/dome) "eV" = ( /obj/effect/landmark/mcguffin_spawner, -/turf/simulated/mineral/floor/ignore_cavegen, +/turf/simulated/mineral/floor/ignore_cavegen/cave, /area/gateway/arynthilake/caves) "eW" = ( /obj/item/device/analyzer/plant_analyzer, @@ -641,7 +641,7 @@ /obj/item/clothing/under/dress/dress_saloon, /obj/item/clothing/under/dress/lilacdress, /obj/item/clothing/under/dress/littleblackdress, -/obj/item/clothing/under/dress/qipao/red, +/obj/item/clothing/under/qipao/red, /obj/item/clothing/under/dress/red_swept_dress, /obj/item/clothing/under/dress/redeveninggown, /obj/item/clothing/under/dress/sailordress, @@ -727,7 +727,7 @@ }, /area/gateway/arynthilake/dome) "jI" = ( -/turf/simulated/mineral/floor/ignore_cavegen, +/turf/simulated/mineral/floor/ignore_cavegen/cave, /area/gateway/arynthilake/caves) "jK" = ( /obj/structure/table/rack/shelf/steel, @@ -919,7 +919,7 @@ /area/gateway/arynthilake) "nc" = ( /obj/random/awayloot, -/turf/simulated/mineral/floor/ignore_cavegen, +/turf/simulated/mineral/floor/ignore_cavegen/cave, /area/gateway/arynthilake/caves) "np" = ( /obj/random/mob/semirandom_mob_spawner/animal/e, @@ -927,7 +927,7 @@ /area/gateway/arynthilake) "nr" = ( /obj/effect/fake_sun, -/turf/simulated/mineral/ignore_cavegen, +/turf/simulated/mineral/ignore_cavegen/cave, /area/gateway/arynthilake/caves) "nx" = ( /obj/machinery/door/airlock/engineering, @@ -1175,8 +1175,8 @@ /turf/simulated/floor/tiled/eris, /area/gateway/arynthilake/engine) "sl" = ( -/obj/effect/overmap/visitable/sector/tether_gateway/arynthilake, -/turf/simulated/mineral/ignore_cavegen, +/obj/effect/overmap/visitable/sector/common_gateway/arynthilake, +/turf/simulated/mineral/ignore_cavegen/cave, /area/gateway/arynthilake/caves) "sA" = ( /obj/structure/table/rack/steel, @@ -1258,7 +1258,7 @@ }, /area/gateway/arynthilake/dome) "ug" = ( -/obj/machinery/telecomms/relay/preset/tether, +/obj/machinery/telecomms/relay, /turf/simulated/floor/tiled/eris, /area/gateway/arynthilake/engine) "uo" = ( @@ -1754,7 +1754,7 @@ /area/gateway/arynthilake/engine) "Iq" = ( /obj/random/mob/semirandom_mob_spawner/humanoid/retaliate, -/turf/simulated/mineral/floor/ignore_cavegen{ +/turf/simulated/mineral/floor/ignore_cavegen/cave{ outdoors = 1 }, /area/gateway/arynthilake) @@ -1813,7 +1813,7 @@ /turf/simulated/floor/tiled/eris/techmaint_cargo, /area/gateway/arynthilake/dome) "JK" = ( -/turf/simulated/mineral/floor/ignore_cavegen{ +/turf/simulated/mineral/floor/ignore_cavegen/cave{ outdoors = 1 }, /area/gateway/arynthilake) @@ -1936,7 +1936,7 @@ /turf/simulated/floor/carpet/purcarpet, /area/gateway/arynthilake/dome) "MD" = ( -/turf/simulated/mineral/floor/ignore_cavegen{ +/turf/simulated/mineral/floor/ignore_cavegen/cave{ outdoors = 1 }, /area/gateway/arynthilake/caves) @@ -2070,7 +2070,7 @@ /area/gateway/arynthilake/dome) "Or" = ( /obj/effect/landmark/hidden_level, -/turf/simulated/mineral/ignore_cavegen, +/turf/simulated/mineral/ignore_cavegen/cave, /area/gateway/arynthilake/caves) "OC" = ( /turf/simulated/floor/carpet/blucarpet{ @@ -2098,7 +2098,7 @@ check_arrest = 0; check_down = 0; check_records = 0; - control_area = /area/gateway/grasslands/underground/maintenance; + control_area = /area/gateway/arynthilake/underground/maintenance; desc = "A firewall prevents AIs from interacting with this device."; lethal = 1; locked = 0; @@ -2150,7 +2150,7 @@ /turf/simulated/floor/tiled/steel_ridged, /area/gateway/arynthilake/engine) "Qr" = ( -/turf/simulated/mineral/ignore_cavegen, +/turf/simulated/mineral/ignore_cavegen/cave, /area/gateway/arynthilake/caves) "Qx" = ( /obj/random/mob/semirandom_mob_spawner/robot/retaliate, @@ -2308,7 +2308,7 @@ /turf/simulated/floor/wood, /area/gateway/arynthilake/dome) "UZ" = ( -/turf/simulated/mineral/ignore_cavegen, +/turf/simulated/mineral/ignore_cavegen/cave, /area/gateway/arynthilake/caveruins) "Vf" = ( /obj/structure/closet, @@ -2324,7 +2324,7 @@ /obj/item/clothing/under/dress/wench, /obj/item/clothing/under/dress/white, /obj/item/clothing/under/haltertop, -/obj/item/clothing/under/hephaestus, +/obj/item/clothing/under/corp/hephaestus, /obj/item/clothing/under/lawyer/blue, /obj/item/clothing/under/lawyer/bluesuit, /obj/item/clothing/under/lawyer/bluesuit/skirt, @@ -2355,7 +2355,7 @@ /area/gateway/arynthilake/caveruins) "We" = ( /obj/random/mob/semirandom_mob_spawner/monster/e, -/turf/simulated/mineral/floor/ignore_cavegen, +/turf/simulated/mineral/floor/ignore_cavegen/cave, /area/gateway/arynthilake/caves) "Wj" = ( /obj/machinery/light{ diff --git a/maps/gateway_vr/variable/arynthilake_b.dmm b/maps/gateway_vr/variable/arynthilake_b.dmm index 5ed87dc765..612294d96b 100644 --- a/maps/gateway_vr/variable/arynthilake_b.dmm +++ b/maps/gateway_vr/variable/arynthilake_b.dmm @@ -3,7 +3,7 @@ /obj/item/stack/material/steel{ amount = 50 }, -/turf/simulated/mineral/floor/ignore_cavegen{ +/turf/simulated/mineral/floor/ignore_cavegen/cave{ outdoors = 1 }, /area/gateway/arynthilake) @@ -41,7 +41,7 @@ /area/gateway/arynthilake/dome) "bs" = ( /obj/effect/landmark/mcguffin_spawner, -/turf/simulated/mineral/floor/ignore_cavegen, +/turf/simulated/mineral/floor/ignore_cavegen/cave, /area/gateway/arynthilake/caves) "bw" = ( /obj/structure/table/sifwooden_reinforced, @@ -72,7 +72,7 @@ /turf/simulated/floor/carpet/purcarpet, /area/gateway/arynthilake/dome) "cg" = ( -/turf/simulated/mineral/ignore_cavegen, +/turf/simulated/mineral/ignore_cavegen/cave, /area/gateway/arynthilake) "ch" = ( /turf/simulated/floor/plating{ @@ -230,7 +230,7 @@ /turf/simulated/floor/tiled/eris, /area/gateway/arynthilake/engine) "ek" = ( -/turf/simulated/mineral/ignore_cavegen, +/turf/simulated/mineral/ignore_cavegen/cave, /area/gateway/arynthilake/caves) "eq" = ( /obj/structure/lattice, @@ -247,7 +247,7 @@ /area/gateway/arynthilake/dome) "eN" = ( /obj/effect/fake_sun, -/turf/simulated/mineral/ignore_cavegen, +/turf/simulated/mineral/ignore_cavegen/cave, /area/gateway/arynthilake/caves) "eP" = ( /obj/structure/table/standard{ @@ -308,8 +308,8 @@ }, /area/gateway/arynthilake/dome) "fC" = ( -/obj/effect/overmap/visitable/sector/tether_gateway/arynthilake, -/turf/simulated/mineral/ignore_cavegen, +/obj/effect/overmap/visitable/sector/common_gateway/arynthilake, +/turf/simulated/mineral/ignore_cavegen/cave, /area/gateway/arynthilake/caves) "fX" = ( /obj/structure/table/standard{ @@ -356,7 +356,7 @@ /obj/item/clothing/under/dress/wench, /obj/item/clothing/under/dress/white, /obj/item/clothing/under/haltertop, -/obj/item/clothing/under/hephaestus, +/obj/item/clothing/under/corp/hephaestus, /obj/item/clothing/under/lawyer/blue, /obj/item/clothing/under/lawyer/bluesuit, /obj/item/clothing/under/lawyer/bluesuit/skirt, @@ -467,7 +467,7 @@ /turf/simulated/floor/tiled/techfloor, /area/gateway/arynthilake/gateway) "iX" = ( -/turf/simulated/mineral/floor/ignore_cavegen, +/turf/simulated/mineral/floor/ignore_cavegen/cave, /area/gateway/arynthilake) "jh" = ( /obj/structure/cable/green{ @@ -503,7 +503,7 @@ check_arrest = 0; check_down = 0; check_records = 0; - control_area = /area/gateway/grasslands/underground/maintenance; + control_area = /area/gateway/arynthilake/underground/maintenance; desc = "A firewall prevents AIs from interacting with this device."; lethal = 1; locked = 0; @@ -731,7 +731,7 @@ /area/gateway/arynthilake/dome) "nK" = ( /obj/structure/table/steel, -/turf/simulated/mineral/floor/ignore_cavegen{ +/turf/simulated/mineral/floor/ignore_cavegen/cave{ outdoors = 1 }, /area/gateway/arynthilake) @@ -838,7 +838,7 @@ /area/gateway/arynthilake/dome) "pS" = ( /obj/random/awayloot, -/turf/simulated/mineral/floor/ignore_cavegen, +/turf/simulated/mineral/floor/ignore_cavegen/cave, /area/gateway/arynthilake/caves) "pT" = ( /obj/structure/bed/double/padded, @@ -886,7 +886,7 @@ /turf/simulated/floor/beach/sand/desert, /area/gateway/arynthilake/caves) "rt" = ( -/turf/simulated/mineral/floor/ignore_cavegen{ +/turf/simulated/mineral/floor/ignore_cavegen/cave{ outdoors = 1 }, /area/gateway/arynthilake) @@ -929,7 +929,7 @@ /area/gateway/arynthilake/dome) "si" = ( /obj/structure/table, -/turf/simulated/mineral/floor/ignore_cavegen{ +/turf/simulated/mineral/floor/ignore_cavegen/cave{ outdoors = 1 }, /area/gateway/arynthilake) @@ -1187,7 +1187,7 @@ /turf/simulated/floor/water, /area/gateway/arynthilake/caves) "zs" = ( -/turf/simulated/mineral/ignore_cavegen, +/turf/simulated/mineral/ignore_cavegen/cave, /area/gateway/arynthilake/caveruins) "zt" = ( /obj/structure/table/rack, @@ -1262,7 +1262,7 @@ /turf/simulated/floor/tiled/techfloor, /area/gateway/arynthilake/gateway) "Bg" = ( -/obj/machinery/telecomms/relay/preset/tether, +/obj/machinery/telecomms/relay, /turf/simulated/floor/tiled/eris, /area/gateway/arynthilake/engine) "Bz" = ( @@ -1337,7 +1337,7 @@ /area/gateway/arynthilake) "Ev" = ( /obj/random/mob/semirandom_mob_spawner/monster, -/turf/simulated/mineral/floor/ignore_cavegen{ +/turf/simulated/mineral/floor/ignore_cavegen/cave{ outdoors = 1 }, /area/gateway/arynthilake) @@ -1472,7 +1472,7 @@ /turf/simulated/floor/plating/external, /area/gateway/arynthilake/caveruins) "Hw" = ( -/turf/simulated/mineral/floor/ignore_cavegen, +/turf/simulated/mineral/floor/ignore_cavegen/cave, /area/gateway/arynthilake/caves) "HK" = ( /obj/machinery/light, @@ -1564,7 +1564,7 @@ /area/gateway/arynthilake/dome) "JB" = ( /obj/item/weapon/lampshade, -/turf/simulated/mineral/floor/ignore_cavegen, +/turf/simulated/mineral/floor/ignore_cavegen/cave, /area/gateway/arynthilake/caves) "JK" = ( /obj/structure/table/marble, @@ -1666,7 +1666,7 @@ /turf/simulated/floor/outdoors/grass/forest, /area/gateway/arynthilake) "KQ" = ( -/turf/simulated/mineral/floor/ignore_cavegen{ +/turf/simulated/mineral/floor/ignore_cavegen/cave{ outdoors = 1 }, /area/gateway/arynthilake/caves) @@ -1707,7 +1707,7 @@ /area/gateway/arynthilake/caveruins) "LR" = ( /obj/random/mob/semirandom_mob_spawner/monster/f, -/turf/simulated/mineral/floor/ignore_cavegen, +/turf/simulated/mineral/floor/ignore_cavegen/cave, /area/gateway/arynthilake/caves) "LY" = ( /obj/random/mob/semirandom_mob_spawner/animal/retaliate/c, @@ -1810,7 +1810,7 @@ /obj/item/clothing/under/dress/dress_saloon, /obj/item/clothing/under/dress/lilacdress, /obj/item/clothing/under/dress/littleblackdress, -/obj/item/clothing/under/dress/qipao/red, +/obj/item/clothing/under/qipao/red, /obj/item/clothing/under/dress/red_swept_dress, /obj/item/clothing/under/dress/redeveninggown, /obj/item/clothing/under/dress/sailordress, @@ -1841,7 +1841,7 @@ /area/gateway/arynthilake/dome) "NX" = ( /obj/random/mob/semirandom_mob_spawner/monster/e, -/turf/simulated/mineral/floor/ignore_cavegen, +/turf/simulated/mineral/floor/ignore_cavegen/cave, /area/gateway/arynthilake/caves) "Ob" = ( /obj/structure/catwalk, @@ -2024,7 +2024,7 @@ /area/gateway/arynthilake/dome) "Ry" = ( /obj/effect/landmark/hidden_level, -/turf/simulated/mineral/ignore_cavegen, +/turf/simulated/mineral/ignore_cavegen/cave, /area/gateway/arynthilake/caves) "RK" = ( /obj/structure/table/fancyblack, @@ -2153,7 +2153,7 @@ /area/gateway/arynthilake/dome) "Uq" = ( /obj/random/mob/semirandom_mob_spawner/monster/b, -/turf/simulated/mineral/floor/ignore_cavegen, +/turf/simulated/mineral/floor/ignore_cavegen/cave, /area/gateway/arynthilake/caves) "UA" = ( /turf/simulated/wall/sifwood, diff --git a/maps/gateway_vr/variable/arynthilakeunderground_a.dmm b/maps/gateway_vr/variable/arynthilakeunderground_a.dmm index 121b0fac96..9c1e9f7982 100644 --- a/maps/gateway_vr/variable/arynthilakeunderground_a.dmm +++ b/maps/gateway_vr/variable/arynthilakeunderground_a.dmm @@ -44,7 +44,7 @@ /turf/simulated/floor/tiled/eris/steel/techfloor, /area/gateway/arynthilake/engine) "gh" = ( -/turf/simulated/mineral/ignore_cavegen, +/turf/simulated/mineral/ignore_cavegen/cave, /area/gateway/arynthilake/underground) "hB" = ( /obj/structure/table/steel_reinforced, @@ -85,7 +85,7 @@ "lM" = ( /obj/effect/map_effect/perma_light/gateway{ light_color = "#0c6ba6"; - light_power = .3; + light_power = 0.3; light_range = 5 }, /turf/simulated/floor/beach/sand/desert, @@ -123,10 +123,10 @@ /area/gateway/arynthilake/engine) "nD" = ( /obj/effect/landmark/hidden_level, -/turf/simulated/mineral/ignore_cavegen, +/turf/simulated/mineral/ignore_cavegen/cave, /area/gateway/arynthilake/underground) "nO" = ( -/turf/simulated/mineral/floor/ignore_cavegen, +/turf/simulated/mineral/floor/ignore_cavegen/cave, /area/gateway/arynthilake/underground) "oM" = ( /turf/simulated/floor/plating/eris/under, @@ -157,7 +157,7 @@ /area/gateway/arynthilake/engine) "qU" = ( /obj/random/awayloot, -/turf/simulated/mineral/floor/ignore_cavegen, +/turf/simulated/mineral/floor/ignore_cavegen/cave, /area/gateway/arynthilake/underground) "qX" = ( /obj/machinery/porta_turret{ @@ -209,7 +209,7 @@ /area/gateway/arynthilake/engine) "xh" = ( /obj/machinery/crystal, -/turf/simulated/mineral/floor/ignore_cavegen, +/turf/simulated/mineral/floor/ignore_cavegen/cave, /area/gateway/arynthilake/underground) "zh" = ( /obj/structure/ladder/up, @@ -229,7 +229,7 @@ /area/gateway/arynthilake/engine) "Bj" = ( /obj/random/mob/semirandom_mob_spawner/monster/e, -/turf/simulated/mineral/floor/ignore_cavegen, +/turf/simulated/mineral/floor/ignore_cavegen/cave, /area/gateway/arynthilake/underground) "BJ" = ( /obj/effect/landmark/gateway_scatter, @@ -253,7 +253,7 @@ /area/gateway/arynthilake/engine) "Eb" = ( /obj/random/mob/semirandom_mob_spawner/monster/f, -/turf/simulated/mineral/floor/ignore_cavegen, +/turf/simulated/mineral/floor/ignore_cavegen/cave, /area/gateway/arynthilake/underground) "Ek" = ( /obj/machinery/light/small{ @@ -306,9 +306,7 @@ /turf/simulated/floor/tiled/eris/steel/techfloor, /area/gateway/arynthilake/engine) "LF" = ( -/turf/simulated/floor/plating/eris/under{ - temperature = 258.15 - }, +/turf/simulated/floor/plating/eris/under, /area/gateway/arynthilake/underground/maintenance) "LY" = ( /turf/simulated/floor/beach/sand/desert, @@ -381,7 +379,7 @@ /area/gateway/arynthilake/underground/maintenance) "YC" = ( /obj/random/mob/semirandom_mob_spawner/monster/d, -/turf/simulated/mineral/floor/ignore_cavegen, +/turf/simulated/mineral/floor/ignore_cavegen/cave, /area/gateway/arynthilake/underground) "ZY" = ( /obj/structure/table/rack/shelf/steel, diff --git a/maps/gateway_vr/variable/arynthilakeunderground_b.dmm b/maps/gateway_vr/variable/arynthilakeunderground_b.dmm index 75fa807ad5..5acb316d64 100644 --- a/maps/gateway_vr/variable/arynthilakeunderground_b.dmm +++ b/maps/gateway_vr/variable/arynthilakeunderground_b.dmm @@ -18,7 +18,7 @@ /turf/simulated/floor/tiled/eris/steel/orangecorner, /area/gateway/arynthilake/engine) "bL" = ( -/turf/simulated/mineral/ignore_cavegen, +/turf/simulated/mineral/ignore_cavegen/cave, /area/gateway/arynthilake/underground) "bX" = ( /turf/unsimulated/mineral, @@ -50,7 +50,7 @@ /area/gateway/arynthilake/engine) "eQ" = ( /obj/random/awayloot, -/turf/simulated/mineral/floor/ignore_cavegen, +/turf/simulated/mineral/floor/ignore_cavegen/cave, /area/gateway/arynthilake/underground) "fM" = ( /turf/simulated/floor/tiled/eris/steel/danger, @@ -105,7 +105,7 @@ /area/gateway/arynthilake/engine) "jX" = ( /obj/effect/landmark/hidden_level, -/turf/simulated/mineral/ignore_cavegen, +/turf/simulated/mineral/ignore_cavegen/cave, /area/gateway/arynthilake/underground) "kb" = ( /turf/simulated/wall/r_wall, @@ -136,7 +136,7 @@ "ng" = ( /obj/effect/map_effect/perma_light/gateway{ light_color = "#0c6ba6"; - light_power = .3; + light_power = 0.3; light_range = 5 }, /turf/simulated/floor/beach/sand/desert, @@ -188,11 +188,11 @@ "vG" = ( /obj/random/awayloot, /obj/random/mob/semirandom_mob_spawner/monster/f, -/turf/simulated/mineral/floor/ignore_cavegen, +/turf/simulated/mineral/floor/ignore_cavegen/cave, /area/gateway/arynthilake/underground) "wg" = ( /obj/random/mob/semirandom_mob_spawner/monster/e, -/turf/simulated/mineral/floor/ignore_cavegen, +/turf/simulated/mineral/floor/ignore_cavegen/cave, /area/gateway/arynthilake/underground) "wi" = ( /turf/simulated/wall/r_wall, @@ -261,7 +261,7 @@ /turf/simulated/floor/tiled/eris/techmaint, /area/gateway/arynthilake/engine) "Ff" = ( -/turf/simulated/mineral/floor/ignore_cavegen, +/turf/simulated/mineral/floor/ignore_cavegen/cave, /area/gateway/arynthilake/underground) "Fs" = ( /obj/structure/table/rack/shelf/steel, @@ -323,7 +323,7 @@ /area/gateway/arynthilake/underground/maintenance) "LR" = ( /obj/random/mob/semirandom_mob_spawner/monster/f, -/turf/simulated/mineral/floor/ignore_cavegen, +/turf/simulated/mineral/floor/ignore_cavegen/cave, /area/gateway/arynthilake/underground) "LY" = ( /obj/structure/table/steel_reinforced, @@ -362,7 +362,7 @@ /area/gateway/arynthilake/engine) "QA" = ( /obj/machinery/crystal, -/turf/simulated/mineral/floor/ignore_cavegen, +/turf/simulated/mineral/floor/ignore_cavegen/cave, /area/gateway/arynthilake/underground) "QT" = ( /obj/structure/table/steel_reinforced, @@ -408,7 +408,7 @@ /turf/simulated/floor/plating/eris/under, /area/gateway/arynthilake/underground/maintenance) "Xt" = ( -/turf/simulated/mineral/ignore_cavegen, +/turf/simulated/mineral/ignore_cavegen/cave, /area/gateway/arynthilake/underground/maintenance) "Xx" = ( /obj/structure/table/rack/shelf/steel, diff --git a/maps/gateway_vr/variable/honlethhighlands.dm b/maps/gateway_vr/variable/honlethhighlands.dm index 9eb1104f22..0a01167848 100644 --- a/maps/gateway_vr/variable/honlethhighlands.dm +++ b/maps/gateway_vr/variable/honlethhighlands.dm @@ -1,4 +1,4 @@ -/obj/effect/overmap/visitable/sector/tether_gateway/honlethhighlands +/obj/effect/overmap/visitable/sector/common_gateway/honlethhighlands name = "bluespace shimmer" desc = "The shimmering reflection of some sort of bluespace phenomena." scanner_desc = @{"It is difficult to tell just what is beyond this strange shimmering shape. The air beyond seems breathable, if very cold."} @@ -8,12 +8,18 @@ in_space = 0 unknown_state = "field" -/datum/map_template/tether_lateload/gateway/honlethhighlands_a/on_map_loaded(z) + skybox_icon = 'icons/skybox/anomaly.dmi' + skybox_icon_state = "shimmer_b" + skybox_pixel_x = 0 + skybox_pixel_y = 0 + + +/datum/map_template/common_lateload/gateway/honlethhighlands_a/on_map_loaded(z) . = ..() new /datum/random_map/automata/cave_system/no_cracks(null, 3, 3, z, world.maxx - 4, world.maxy - 4) // Create the mining Z-level. new /datum/random_map/noise/ore(null, 1, 1, z, 64, 64) // Create the mining ore distribution map. -/datum/map_template/tether_lateload/gateway/honlethhighlands_b/on_map_loaded(z) +/datum/map_template/common_lateload/gateway/honlethhighlands_b/on_map_loaded(z) . = ..() new /datum/random_map/automata/cave_system/no_cracks(null, 3, 3, z, world.maxx - 4, world.maxy - 4) // Create the mining Z-level. new /datum/random_map/noise/ore(null, 1, 1, z, 64, 64) // Create the mining ore distribution map. diff --git a/maps/gateway_vr/variable/honlethhighlands_a.dmm b/maps/gateway_vr/variable/honlethhighlands_a.dmm index 19eebf89a3..db7570d4ef 100644 --- a/maps/gateway_vr/variable/honlethhighlands_a.dmm +++ b/maps/gateway_vr/variable/honlethhighlands_a.dmm @@ -6,12 +6,12 @@ }, /area/gateway/honlethhighlands) "ab" = ( -/turf/simulated/mineral/ignore_cavegen{ +/turf/simulated/mineral/ignore_cavegen/cave{ temperature = 253.15 }, /area/gateway/honlethhighlands/caves) "ac" = ( -/turf/simulated/mineral/floor/ignore_cavegen{ +/turf/simulated/mineral/floor/ignore_cavegen/cave{ temperature = 253.15 }, /area/gateway/honlethhighlands/caves) @@ -125,7 +125,7 @@ }, /area/gateway/honlethhighlands/caves) "aE" = ( -/turf/simulated/mineral/floor/ignore_cavegen{ +/turf/simulated/mineral/floor/ignore_cavegen/cave{ name = "dirt"; outdoors = 1; temperature = 253.15 @@ -190,7 +190,7 @@ /area/gateway/honlethhighlands/town/command) "aS" = ( /obj/effect/landmark/gateway_scatter, -/turf/simulated/mineral/floor/ignore_cavegen{ +/turf/simulated/mineral/floor/ignore_cavegen/cave{ temperature = 253.15 }, /area/gateway/honlethhighlands/caves) @@ -216,7 +216,7 @@ }, /area/gateway/honlethhighlands) "aX" = ( -/turf/simulated/mineral/ignore_cavegen{ +/turf/simulated/mineral/ignore_cavegen/cave{ temperature = 253.15 }, /area/gateway/honlethhighlands/beach) @@ -308,7 +308,7 @@ /area/gateway/honlethhighlands/beach) "bp" = ( /obj/random/mob/semirandom_mob_spawner/animal/retaliate/c, -/turf/simulated/mineral/floor/ignore_cavegen{ +/turf/simulated/mineral/floor/ignore_cavegen/cave{ temperature = 253.15 }, /area/gateway/honlethhighlands/caves) @@ -513,7 +513,7 @@ /area/gateway/honlethhighlands/gate) "fa" = ( /obj/random/mob/semirandom_mob_spawner/animal/retaliate/b, -/turf/simulated/mineral/floor/ignore_cavegen{ +/turf/simulated/mineral/floor/ignore_cavegen/cave{ temperature = 253.15 }, /area/gateway/honlethhighlands/caves) @@ -540,7 +540,7 @@ /obj/item/stack/material/wood, /obj/item/stack/material/wood, /obj/item/stack/material/wood, -/turf/simulated/mineral/floor/ignore_cavegen{ +/turf/simulated/mineral/floor/ignore_cavegen/cave{ temperature = 253.15 }, /area/gateway/honlethhighlands/caves) @@ -665,7 +665,7 @@ /area/gateway/honlethhighlands) "is" = ( /obj/item/weapon/flame/lighter/random, -/turf/simulated/mineral/floor/ignore_cavegen{ +/turf/simulated/mineral/floor/ignore_cavegen/cave{ temperature = 253.15 }, /area/gateway/honlethhighlands/caves) @@ -676,7 +676,7 @@ }, /area/gateway/honlethhighlands) "jn" = ( -/obj/effect/overmap/visitable/sector/tether_gateway/honlethhighlands, +/obj/effect/overmap/visitable/sector/common_gateway/honlethhighlands, /turf/simulated/floor/water/deep{ temperature = 253.15 }, @@ -822,7 +822,7 @@ /area/gateway/honlethhighlands/beach) "mG" = ( /obj/structure/table/bench/wooden, -/turf/simulated/mineral/floor/ignore_cavegen{ +/turf/simulated/mineral/floor/ignore_cavegen/cave{ temperature = 253.15 }, /area/gateway/honlethhighlands/caves) @@ -945,7 +945,7 @@ "oe" = ( /obj/structure/bonfire, /obj/random/meat, -/turf/simulated/mineral/floor/ignore_cavegen{ +/turf/simulated/mineral/floor/ignore_cavegen/cave{ temperature = 253.15 }, /area/gateway/honlethhighlands/caves) @@ -1025,13 +1025,13 @@ /area/gateway/honlethhighlands/town/engineering) "pT" = ( /obj/effect/landmark/mcguffin_spawner, -/turf/simulated/mineral/floor/ignore_cavegen{ +/turf/simulated/mineral/floor/ignore_cavegen/cave{ temperature = 253.15 }, /area/gateway/honlethhighlands/caves) "pX" = ( /obj/random/maintenance, -/turf/simulated/mineral/floor/ignore_cavegen{ +/turf/simulated/mineral/floor/ignore_cavegen/cave{ temperature = 253.15 }, /area/gateway/honlethhighlands/caves) @@ -1643,7 +1643,7 @@ /area/gateway/honlethhighlands/town/xenobio) "zE" = ( /obj/random/junk, -/turf/simulated/mineral/floor/ignore_cavegen{ +/turf/simulated/mineral/floor/ignore_cavegen/cave{ temperature = 253.15 }, /area/gateway/honlethhighlands/caves) @@ -1721,7 +1721,7 @@ "AK" = ( /obj/random/mre, /obj/random/mre, -/turf/simulated/mineral/floor/ignore_cavegen{ +/turf/simulated/mineral/floor/ignore_cavegen/cave{ temperature = 253.15 }, /area/gateway/honlethhighlands/caves) @@ -1968,7 +1968,7 @@ /area/gateway/honlethhighlands/gate) "Et" = ( /obj/random/mob/semirandom_mob_spawner/animal/retaliate, -/turf/simulated/mineral/floor/ignore_cavegen{ +/turf/simulated/mineral/floor/ignore_cavegen/cave{ temperature = 253.15 }, /area/gateway/honlethhighlands/caves) @@ -2204,7 +2204,7 @@ /area/gateway/honlethhighlands/gate) "JM" = ( /obj/random/cigarettes, -/turf/simulated/mineral/floor/ignore_cavegen{ +/turf/simulated/mineral/floor/ignore_cavegen/cave{ temperature = 253.15 }, /area/gateway/honlethhighlands/caves) @@ -2262,7 +2262,7 @@ /area/gateway/honlethhighlands/beach) "Ld" = ( /obj/random/awayloot, -/turf/simulated/mineral/floor/ignore_cavegen{ +/turf/simulated/mineral/floor/ignore_cavegen/cave{ temperature = 253.15 }, /area/gateway/honlethhighlands/caves) @@ -2321,7 +2321,7 @@ "Ms" = ( /obj/structure/table/bench/wooden, /obj/random/mob/semirandom_mob_spawner/humanoid/retaliate, -/turf/simulated/mineral/floor/ignore_cavegen{ +/turf/simulated/mineral/floor/ignore_cavegen/cave{ temperature = 253.15 }, /area/gateway/honlethhighlands/caves) @@ -2519,7 +2519,7 @@ /turf/simulated/floor/tiled, /area/gateway/honlethhighlands/town/engineering) "QB" = ( -/obj/machinery/telecomms/relay/preset/tether, +/obj/machinery/telecomms/relay, /turf/simulated/floor/tiled, /area/gateway/honlethhighlands/town/engineering) "QG" = ( @@ -2556,7 +2556,7 @@ /area/gateway/honlethhighlands/town/command) "Ro" = ( /obj/random/mob/semirandom_mob_spawner/vore/passive/b, -/turf/simulated/mineral/floor/ignore_cavegen{ +/turf/simulated/mineral/floor/ignore_cavegen/cave{ temperature = 253.15 }, /area/gateway/honlethhighlands/caves) @@ -2910,13 +2910,13 @@ /area/gateway/honlethhighlands/town/bar) "Zw" = ( /obj/random/mob/semirandom_mob_spawner/vore/passive, -/turf/simulated/mineral/floor/ignore_cavegen{ +/turf/simulated/mineral/floor/ignore_cavegen/cave{ temperature = 253.15 }, /area/gateway/honlethhighlands/caves) "Zy" = ( /obj/random/drinkbottle, -/turf/simulated/mineral/floor/ignore_cavegen{ +/turf/simulated/mineral/floor/ignore_cavegen/cave{ temperature = 253.15 }, /area/gateway/honlethhighlands/caves) diff --git a/maps/gateway_vr/variable/honlethhighlands_b.dmm b/maps/gateway_vr/variable/honlethhighlands_b.dmm index 1e46fe78df..7de8389bc7 100644 --- a/maps/gateway_vr/variable/honlethhighlands_b.dmm +++ b/maps/gateway_vr/variable/honlethhighlands_b.dmm @@ -6,12 +6,12 @@ }, /area/gateway/honlethhighlands) "ab" = ( -/turf/simulated/mineral/ignore_cavegen{ +/turf/simulated/mineral/ignore_cavegen/cave{ temperature = 253.15 }, /area/gateway/honlethhighlands/caves) "ac" = ( -/turf/simulated/mineral/floor/ignore_cavegen{ +/turf/simulated/mineral/floor/ignore_cavegen/cave{ temperature = 253.15 }, /area/gateway/honlethhighlands/caves) @@ -125,7 +125,7 @@ }, /area/gateway/honlethhighlands/caves) "aE" = ( -/turf/simulated/mineral/floor/ignore_cavegen{ +/turf/simulated/mineral/floor/ignore_cavegen/cave{ name = "dirt"; outdoors = 1; temperature = 253.15 @@ -190,7 +190,7 @@ /area/gateway/honlethhighlands/town/command) "aS" = ( /obj/effect/landmark/gateway_scatter, -/turf/simulated/mineral/floor/ignore_cavegen{ +/turf/simulated/mineral/floor/ignore_cavegen/cave{ temperature = 253.15 }, /area/gateway/honlethhighlands/caves) @@ -216,7 +216,7 @@ }, /area/gateway/honlethhighlands) "aX" = ( -/turf/simulated/mineral/ignore_cavegen{ +/turf/simulated/mineral/ignore_cavegen/cave{ temperature = 253.15 }, /area/gateway/honlethhighlands/beach) @@ -520,7 +520,7 @@ /obj/item/stack/material/wood, /obj/item/stack/material/wood, /obj/item/stack/material/wood, -/turf/simulated/mineral/floor/ignore_cavegen{ +/turf/simulated/mineral/floor/ignore_cavegen/cave{ temperature = 253.15 }, /area/gateway/honlethhighlands/caves) @@ -656,13 +656,13 @@ /area/gateway/honlethhighlands) "is" = ( /obj/item/weapon/flame/lighter/random, -/turf/simulated/mineral/floor/ignore_cavegen{ +/turf/simulated/mineral/floor/ignore_cavegen/cave{ temperature = 253.15 }, /area/gateway/honlethhighlands/caves) "iw" = ( /obj/random/mob/semirandom_mob_spawner/monster, -/turf/simulated/mineral/floor/ignore_cavegen{ +/turf/simulated/mineral/floor/ignore_cavegen/cave{ temperature = 253.15 }, /area/gateway/honlethhighlands/caves) @@ -718,7 +718,7 @@ /turf/simulated/floor/plating, /area/gateway/honlethhighlands/town/supply) "kk" = ( -/obj/effect/overmap/visitable/sector/tether_gateway/honlethhighlands, +/obj/effect/overmap/visitable/sector/common_gateway/honlethhighlands, /turf/simulated/floor/water/deep{ temperature = 253.15 }, @@ -821,7 +821,7 @@ "mo" = ( /obj/structure/table/bench/wooden, /obj/random/mob/semirandom_mob_spawner/humanoid, -/turf/simulated/mineral/floor/ignore_cavegen{ +/turf/simulated/mineral/floor/ignore_cavegen/cave{ temperature = 253.15 }, /area/gateway/honlethhighlands/caves) @@ -836,7 +836,7 @@ /area/gateway/honlethhighlands) "mG" = ( /obj/structure/table/bench/wooden, -/turf/simulated/mineral/floor/ignore_cavegen{ +/turf/simulated/mineral/floor/ignore_cavegen/cave{ temperature = 253.15 }, /area/gateway/honlethhighlands/caves) @@ -944,7 +944,7 @@ "oe" = ( /obj/structure/bonfire, /obj/random/meat, -/turf/simulated/mineral/floor/ignore_cavegen{ +/turf/simulated/mineral/floor/ignore_cavegen/cave{ temperature = 253.15 }, /area/gateway/honlethhighlands/caves) @@ -1033,13 +1033,13 @@ /area/gateway/honlethhighlands/town/engineering) "pR" = ( /obj/random/mob/semirandom_mob_spawner/monster/c, -/turf/simulated/mineral/floor/ignore_cavegen{ +/turf/simulated/mineral/floor/ignore_cavegen/cave{ temperature = 253.15 }, /area/gateway/honlethhighlands/caves) "pT" = ( /obj/effect/landmark/mcguffin_spawner, -/turf/simulated/mineral/floor/ignore_cavegen{ +/turf/simulated/mineral/floor/ignore_cavegen/cave{ temperature = 253.15 }, /area/gateway/honlethhighlands/caves) @@ -1155,7 +1155,7 @@ /area/gateway/honlethhighlands/gate) "qO" = ( /obj/random/mob/semirandom_mob_spawner/monster/f, -/turf/simulated/mineral/floor/ignore_cavegen{ +/turf/simulated/mineral/floor/ignore_cavegen/cave{ temperature = 253.15 }, /area/gateway/honlethhighlands/caves) @@ -1509,7 +1509,7 @@ /area/gateway/honlethhighlands/gate) "wF" = ( /obj/random/mob/semirandom_mob_spawner/monster/b, -/turf/simulated/mineral/floor/ignore_cavegen{ +/turf/simulated/mineral/floor/ignore_cavegen/cave{ temperature = 253.15 }, /area/gateway/honlethhighlands/caves) @@ -1677,7 +1677,7 @@ /area/gateway/honlethhighlands/town/xenobio) "zE" = ( /obj/random/junk, -/turf/simulated/mineral/floor/ignore_cavegen{ +/turf/simulated/mineral/floor/ignore_cavegen/cave{ temperature = 253.15 }, /area/gateway/honlethhighlands/caves) @@ -1748,7 +1748,7 @@ "AK" = ( /obj/random/mre, /obj/random/mre, -/turf/simulated/mineral/floor/ignore_cavegen{ +/turf/simulated/mineral/floor/ignore_cavegen/cave{ temperature = 253.15 }, /area/gateway/honlethhighlands/caves) @@ -2197,7 +2197,7 @@ /area/gateway/honlethhighlands/gate) "JM" = ( /obj/random/cigarettes, -/turf/simulated/mineral/floor/ignore_cavegen{ +/turf/simulated/mineral/floor/ignore_cavegen/cave{ temperature = 253.15 }, /area/gateway/honlethhighlands/caves) @@ -2493,7 +2493,7 @@ /area/gateway/honlethhighlands/gate) "Qm" = ( /obj/random/mob/semirandom_mob_spawner/monster/e, -/turf/simulated/mineral/floor/ignore_cavegen{ +/turf/simulated/mineral/floor/ignore_cavegen/cave{ temperature = 253.15 }, /area/gateway/honlethhighlands/caves) @@ -2578,7 +2578,7 @@ /area/gateway/honlethhighlands/town/command) "Ro" = ( /obj/random/mob/semirandom_mob_spawner/monster/d, -/turf/simulated/mineral/floor/ignore_cavegen{ +/turf/simulated/mineral/floor/ignore_cavegen/cave{ temperature = 253.15 }, /area/gateway/honlethhighlands/caves) @@ -2634,7 +2634,7 @@ /area/gateway/honlethhighlands/town/supply) "Td" = ( /obj/random/awayloot, -/turf/simulated/mineral/floor/ignore_cavegen{ +/turf/simulated/mineral/floor/ignore_cavegen/cave{ temperature = 253.15 }, /area/gateway/honlethhighlands/caves) @@ -2887,7 +2887,7 @@ /area/gateway/honlethhighlands/town/command) "WQ" = ( /obj/random/mob/semirandom_mob_spawner/humanoid, -/turf/simulated/mineral/floor/ignore_cavegen{ +/turf/simulated/mineral/floor/ignore_cavegen/cave{ temperature = 253.15 }, /area/gateway/honlethhighlands/caves) @@ -2959,7 +2959,7 @@ /area/gateway/honlethhighlands/town/bar) "Zy" = ( /obj/random/drinkbottle, -/turf/simulated/mineral/floor/ignore_cavegen{ +/turf/simulated/mineral/floor/ignore_cavegen/cave{ temperature = 253.15 }, /area/gateway/honlethhighlands/caves) diff --git a/maps/gateway_vr/wildwest.dm b/maps/gateway_vr/wildwest.dm index 632c98c171..e697c3812d 100644 --- a/maps/gateway_vr/wildwest.dm +++ b/maps/gateway_vr/wildwest.dm @@ -177,7 +177,7 @@ return 1 */ -/obj/effect/overmap/visitable/sector/tether_gateway/wildwest +/obj/effect/overmap/visitable/sector/common_gateway/wildwest name = "redspace shimmer" desc = "The shimmering reflection of some sort of redspace phenomena." scanner_desc = @{"It is difficult to tell just what is beyond this strange shimmering shape. The air beyond seems breathable."} @@ -187,4 +187,8 @@ in_space = 1 unknown_state = "field" known = FALSE - \ No newline at end of file + + skybox_icon = 'icons/skybox/anomaly.dmi' + skybox_icon_state = "shimmer_r" + skybox_pixel_x = 0 + skybox_pixel_y = 0 \ No newline at end of file diff --git a/maps/gateway_vr/wildwest.dmm b/maps/gateway_vr/wildwest.dmm index 16e6a42d3f..4aa6d1cace 100644 --- a/maps/gateway_vr/wildwest.dmm +++ b/maps/gateway_vr/wildwest.dmm @@ -98,11 +98,6 @@ }, /turf/space, /area/space) -"ar" = ( -/obj/structure/lattice, -/obj/structure/lattice, -/turf/space, -/area/space) "as" = ( /obj/effect/gateway, /turf/simulated/floor/cult, @@ -2420,7 +2415,7 @@ af af af af -ar +af af af af @@ -7260,7 +7255,7 @@ fH gF cx aD -ar +af af ia ia @@ -7543,7 +7538,7 @@ af af af af -ar +af ad fM nd @@ -7671,7 +7666,7 @@ ia ia ia af -ar +af af af af diff --git a/maps/gateway_vr/zoo.dmm b/maps/gateway_vr/zoo.dmm index 831eae8e7f..19fa7fc4da 100644 --- a/maps/gateway_vr/zoo.dmm +++ b/maps/gateway_vr/zoo.dmm @@ -3856,12 +3856,12 @@ /area/awaymission/zoo) "kk" = ( /obj/structure/table/rack, -/obj/item/clothing/suit/storage/hooded/ian_costume, +/obj/item/clothing/suit/storage/hooded/costume/ian, /turf/simulated/floor/holofloor/carpet, /area/awaymission/zoo) "kl" = ( /obj/structure/table/rack, -/obj/item/clothing/suit/storage/hooded/carp_costume, +/obj/item/clothing/suit/storage/hooded/costume/carp, /turf/simulated/floor/holofloor/carpet, /area/awaymission/zoo) "km" = ( diff --git a/maps/offmap_vr/common_offmaps.dm b/maps/offmap_vr/common_offmaps.dm new file mode 100644 index 0000000000..b726a2fec3 --- /dev/null +++ b/maps/offmap_vr/common_offmaps.dm @@ -0,0 +1,524 @@ +/// Away Missions +#if AWAY_MISSION_TEST +#include "../expedition_vr/beach/beach.dmm" +#include "../expedition_vr/beach/cave.dmm" +#include "../expedition_vr/alienship/alienship.dmm" +#include "../expedition_vr/aerostat/aerostat.dmm" +#include "../expedition_vr/aerostat/surface.dmm" +#include "../expedition_vr/space/debrisfield.dmm" +#include "../expedition_vr/space/fueldepot.dmm" +#endif + +#include "../expedition_vr/beach/_beach.dm" +/datum/map_template/common_lateload/away_beach + name = "Desert Planet - Z1 Beach" + desc = "The beach away mission." + mappath = 'maps/expedition_vr/beach/beach.dmm' + associated_map_datum = /datum/map_z_level/common_lateload/away_beach + +/datum/map_z_level/common_lateload/away_beach + name = "Away Mission - Desert Beach" + z = Z_LEVEL_BEACH + base_turf = /turf/simulated/floor/outdoors/rocks/caves + +/datum/map_template/common_lateload/away_beach_cave + name = "Desert Planet - Z2 Cave" + desc = "The beach away mission's cave." + mappath = 'maps/expedition_vr/beach/cave.dmm' + associated_map_datum = /datum/map_z_level/common_lateload/away_beach_cave + +/datum/map_template/common_lateload/away_beach_cave/on_map_loaded(z) + . = ..() + seed_submaps(list(Z_LEVEL_BEACH_CAVE), 120, /area/tether_away/cave/unexplored/normal, /datum/map_template/surface/mountains/normal) + //seed_submaps(list(Z_LEVEL_BEACH_CAVE), 70, /area/tether_away/cave/unexplored/normal, /datum/map_template/surface/mountains/deep) + + // Now for the tunnels. + new /datum/random_map/automata/cave_system/no_cracks(null, 3, 3, Z_LEVEL_BEACH_CAVE, world.maxx - 4, world.maxy - 4) + new /datum/random_map/noise/ore/beachmine(null, 1, 1, Z_LEVEL_BEACH_CAVE, 64, 64) + +/datum/map_z_level/common_lateload/away_beach_cave + name = "Away Mission - Desert Cave" + z = Z_LEVEL_BEACH_CAVE + base_turf = /turf/simulated/floor/outdoors/rocks/caves + +/obj/effect/step_trigger/zlevel_fall/beach + var/static/target_z + + +#include "../expedition_vr/alienship/_alienship.dm" +/datum/map_template/common_lateload/away_alienship + name = "Alien Ship - Z1 Ship" + desc = "The alien ship away mission." + mappath = 'maps/expedition_vr/alienship/alienship.dmm' + associated_map_datum = /datum/map_z_level/common_lateload/away_alienship + +/datum/map_z_level/common_lateload/away_alienship + name = "Away Mission - Alien Ship" + +/datum/map_z_level/common_lateload/away_aerostat + name = "Away Mission - Aerostat" + z = Z_LEVEL_AEROSTAT + base_turf = /turf/unsimulated/floor/sky/virgo2_sky + +/datum/map_template/common_lateload/away_aerostat_surface + name = "Remmi Aerostat - Z2 Surface" + desc = "The surface from the Virgo 2 Aerostat." + mappath = 'maps/expedition_vr/aerostat/surface.dmm' + associated_map_datum = /datum/map_z_level/common_lateload/away_aerostat_surface + +/datum/map_template/common_lateload/away_aerostat_surface/on_map_loaded(z) + . = ..() + seed_submaps(list(Z_LEVEL_AEROSTAT_SURFACE), 120, /area/offmap/aerostat/surface/unexplored, /datum/map_template/virgo2) + new /datum/random_map/automata/cave_system/no_cracks(null, 3, 3, Z_LEVEL_AEROSTAT_SURFACE, world.maxx - 4, world.maxy - 4) + new /datum/random_map/noise/ore/virgo2(null, 1, 1, Z_LEVEL_AEROSTAT_SURFACE, 64, 64) + +/datum/map_z_level/common_lateload/away_aerostat_surface + name = "Away Mission - Aerostat Surface" + z = Z_LEVEL_AEROSTAT_SURFACE + base_turf = /turf/simulated/mineral/floor/ignore_mapgen/virgo2 + + +#include "../expedition_vr/space/_debrisfield.dm" +#include "../expedition_vr/space/_fueldepot.dm" +#include "../submaps/pois_vr/debris_field/_templates.dm" +#include "../submaps/pois_vr/debris_field/debrisfield_things.dm" +/datum/map_template/common_lateload/away_debrisfield + name = "Debris Field - Z1 Space" + desc = "The Virgo 3 Debris Field away mission." + mappath = 'maps/expedition_vr/space/debrisfield.dmm' + associated_map_datum = /datum/map_z_level/common_lateload/away_debrisfield + +/datum/map_template/common_lateload/away_debrisfield/on_map_loaded(z) + . = ..() + //Commented out until we actually get POIs + seed_submaps(list(Z_LEVEL_DEBRISFIELD), 400, /area/space, /datum/map_template/debrisfield) + +/datum/map_z_level/common_lateload/away_debrisfield + name = "Away Mission - Debris Field" + z = Z_LEVEL_DEBRISFIELD + +/datum/map_template/common_lateload/away_fueldepot + name = "Fuel Depot - Z1 Space" + desc = "An unmanned fuel depot floating in space." + mappath = 'maps/expedition_vr/space/fueldepot.dmm' + associated_map_datum = /datum/map_z_level/common_lateload/away_fueldepot + +/datum/map_z_level/common_lateload/away_fueldepot + name = "Away Mission - Fuel Depot" + z = Z_LEVEL_FUELDEPOT + +////////////////////////////////////////////////////////////////////////////////////// +// Gateway submaps go here + +/obj/effect/overmap/visitable/sector/common_gateway + name = "Unknown" + desc = "Approach and perform a scan to obtain further information." + icon_state = "object" //or "globe" for planetary stuff + known = FALSE + +/datum/map_template/common_lateload/gateway + name = "Gateway Submap" + desc = "Please do not use this." + mappath = null + associated_map_datum = null + +/datum/map_z_level/common_lateload/gateway_destination + name = "Gateway Destination" + z = Z_LEVEL_GATEWAY +/* // Removed due to heavy merc presence +#include "../gateway_vr/snow_outpost.dm" +/datum/map_template/common_lateload/gateway/snow_outpost + name = "Snow Outpost" + desc = "Big snowy area with various outposts." + mappath = 'maps/gateway_vr/snow_outpost.dmm' + associated_map_datum = /datum/map_z_level/common_lateload/gateway_destination +*/ +#include "../gateway_vr/zoo.dm" +/datum/map_template/common_lateload/gateway/zoo + name = "Zoo" + desc = "Gigantic space zoo" + mappath = 'maps/gateway_vr/zoo.dmm' + associated_map_datum = /datum/map_z_level/common_lateload/gateway_destination + +#include "../gateway_vr/carpfarm.dm" +/datum/map_template/common_lateload/gateway/carpfarm + name = "Carp Farm" + desc = "Asteroid base surrounded by carp" + mappath = 'maps/gateway_vr/carpfarm.dmm' + associated_map_datum = /datum/map_z_level/common_lateload/gateway_destination + +#include "../gateway_vr/snowfield.dm" +/datum/map_template/common_lateload/gateway/snowfield + name = "Snow Field" + desc = "An old base in middle of snowy wasteland" + mappath = 'maps/gateway_vr/snowfield.dmm' + associated_map_datum = /datum/map_z_level/common_lateload/gateway_destination + +#include "../gateway_vr/listeningpost.dm" +/datum/map_template/common_lateload/gateway/listeningpost + name = "Listening Post" + desc = "Asteroid-bound mercenary listening post" + mappath = 'maps/gateway_vr/listeningpost.dmm' + associated_map_datum = /datum/map_z_level/common_lateload/gateway_destination + +#include "../gateway_vr/variable/honlethhighlands.dm" +/datum/map_template/common_lateload/gateway/honlethhighlands_a + name = "Honleth Highlands A" + desc = "The cold surface of some planet." + mappath = 'maps/gateway_vr/variable/honlethhighlands_a.dmm' + associated_map_datum = /datum/map_z_level/common_lateload/gateway_destination + +/datum/map_template/common_lateload/gateway/honlethhighlands_b + name = "Honleth Highlands B" + desc = "The cold surface of some planet." + mappath = 'maps/gateway_vr/variable/honlethhighlands_b.dmm' + associated_map_datum = /datum/map_z_level/common_lateload/gateway_destination + + +#include "../gateway_vr/variable/arynthilake.dm" +/datum/map_template/common_lateload/gateway/arynthilake + name = "Arynthi Lake A" + desc = "A grassy surface with some abandoned structures." + mappath = 'maps/gateway_vr/variable/arynthilake_a.dmm' + associated_map_datum = /datum/map_z_level/common_lateload/gateway_destination + +/datum/map_template/common_lateload/gateway/arynthilakeunderground + name = "Arynthi Lake Underground A" + desc = "A grassy surface with some abandoned structures." + mappath = 'maps/gateway_vr/variable/arynthilakeunderground_a.dmm' + associated_map_datum = /datum/map_z_level/common_lateload/gateway_destination + +/datum/map_template/common_lateload/gateway/arynthilake_b + name = "Arynthi Lake B" + desc = "A grassy surface with some abandoned structures." + mappath = 'maps/gateway_vr/variable/arynthilake_b.dmm' + associated_map_datum = /datum/map_z_level/common_lateload/gateway_destination + +/datum/map_template/common_lateload/gateway/arynthilakeunderground_b + name = "Arynthi Lake Underground B" + desc = "A grassy surface with some abandoned structures." + mappath = 'maps/gateway_vr/variable/arynthilakeunderground_b.dmm' + associated_map_datum = /datum/map_z_level/common_lateload/gateway_destination + +#include "../gateway_vr/eggnogtown.dm" +/datum/map_template/common_lateload/gateway/eggnogtown + name = "Eggnog Town" + desc = "A comfortable snowy town." + mappath = 'maps/gateway_vr/eggnogtown.dmm' + associated_map_datum = /datum/map_z_level/common_lateload/gateway_destination + +/datum/map_template/common_lateload/gateway/eggnogtownunderground + name = "Eggnog Town Underground" + desc = "A comfortable snowy town." + mappath = 'maps/gateway_vr/eggnogtownunderground.dmm' + associated_map_datum = /datum/map_z_level/common_lateload/gateway_destination + +#include "../gateway_vr/wildwest.dm" +/datum/map_template/common_lateload/gateway/wildwest + name = "Wild West" + desc = "A classic." + mappath = 'maps/gateway_vr/wildwest.dmm' + associated_map_datum = /datum/map_z_level/common_lateload/gateway_destination + + +///////////////////////////////////////////////////////////////////////////////////// + +/datum/map_template/common_lateload/om_adventure + name = "OM Adventure Submap" + desc = "Please do not use this." + mappath = null + associated_map_datum = null + +/datum/map_z_level/common_lateload/om_adventure_destination + name = "OM Adventure Destination" + z = Z_LEVEL_OM_ADVENTURE + +#include "../om_adventure/grasscave.dm" +/datum/map_template/common_lateload/om_adventure/grasscave + name = "Grass Cave" + desc = "Looks like a cave with some grass in it." + mappath = 'maps/om_adventure/grasscave.dmm' + associated_map_datum = /datum/map_z_level/common_lateload/om_adventure_destination + +/datum/map_template/common_lateload/om_adventure/grasscave/on_map_loaded(z) + . = ..() + seed_submaps(list(z), 60, /area/om_adventure/grasscave/unexplored, /datum/map_template/om_adventure/outdoor) + seed_submaps(list(z), 60, /area/om_adventure/grasscave/rocks, /datum/map_template/om_adventure/cave) + new /datum/random_map/automata/cave_system/no_cracks(null, 3, 3, z, world.maxx - 4, world.maxy - 4) + new /datum/random_map/noise/ore/grasscave(null, 1, 1, z, 64, 64) + +////////////////////////////////////////////////////////////////////////////////////// +// Admin-use z-levels for loading whenever an admin feels like +#if AWAY_MISSION_TEST +#include "../submaps/admin_use_vr/spa.dmm" +#endif +#include "../submaps/admin_use_vr/fun.dm" +/datum/map_template/common_lateload/fun/spa + name = "Space Spa" + desc = "A pleasant spa located in a spaceship." + mappath = 'maps/submaps/admin_use_vr/spa.dmm' + + associated_map_datum = /datum/map_z_level/common_lateload/fun/spa + +/datum/map_z_level/common_lateload/fun/spa + name = "Spa" + flags = MAP_LEVEL_PLAYER|MAP_LEVEL_SEALED + +////////////////////////////////////////////////////////////////////////////////////// +// Code Shenanigans for Tether lateload maps +/datum/map_template/common_lateload + allow_duplicates = FALSE + var/associated_map_datum + +/datum/map_template/common_lateload/on_map_loaded(z) + if(!associated_map_datum || !ispath(associated_map_datum)) + log_game("Extra z-level [src] has no associated map datum") + return + + new associated_map_datum(using_map, z) + +/datum/map_z_level/common_lateload + z = 0 + +/datum/map_z_level/common_lateload/New(var/datum/map/map, mapZ) + if(mapZ && !z) + z = mapZ + return ..(map) + +/obj/effect/step_trigger/zlevel_fall //Don't ever use this, only use subtypes.Define a new var/static/target_z on each + affect_ghosts = 1 + +/obj/effect/step_trigger/zlevel_fall/Initialize() + . = ..() + + if(istype(get_turf(src), /turf/simulated/floor)) + src:target_z = z + return INITIALIZE_HINT_QDEL + +/obj/effect/step_trigger/zlevel_fall/Trigger(var/atom/movable/A) //mostly from /obj/effect/step_trigger/teleporter/planetary_fall, step_triggers.dm L160 + if(!src:target_z) + return + + var/attempts = 100 + var/turf/simulated/T + while(attempts && !T) + var/turf/simulated/candidate = locate(rand(5,world.maxx-5),rand(5,world.maxy-5),src:target_z) + if(candidate.density) + attempts-- + continue + + T = candidate + break + + if(!T) + return + + if(isobserver(A)) + A.forceMove(T) // Harmlessly move ghosts. + return + + A.forceMove(T) + if(isliving(A)) // Someday, implement parachutes. For now, just turbomurder whoever falls. + message_admins("\The [A] fell out of the sky.") + var/mob/living/L = A + L.fall_impact(T, 42, 90, FALSE, TRUE) //You will not be defibbed from this. + +///////////////////////////// +/obj/tether_away_spawner + name = "RENAME ME, JERK" + desc = "Spawns the mobs!" + icon = 'icons/mob/screen1.dmi' + icon_state = "x" + invisibility = 101 + mouse_opacity = 0 + density = 0 + anchored = 1 + + //Weighted with values (not %chance, but relative weight) + //Can be left value-less for all equally likely + var/list/mobs_to_pick_from + + //When the below chance fails, the spawner is marked as depleted and stops spawning + var/prob_spawn = 100 //Chance of spawning a mob whenever they don't have one + var/prob_fall = 5 //Above decreases by this much each time one spawns + + //Settings to help mappers/coders have their mobs do what they want in this case + var/faction //To prevent infighting if it spawns various mobs, set a faction + var/atmos_comp //TRUE will set all their survivability to be within 20% of the current air + //var/guard //# will set the mobs to remain nearby their spawn point within this dist + + //Internal use only + var/mob/living/simple_mob/my_mob + var/depleted = FALSE + +/obj/tether_away_spawner/Initialize() + . = ..() + + if(!LAZYLEN(mobs_to_pick_from)) + error("Mob spawner at [x],[y],[z] ([get_area(src)]) had no mobs_to_pick_from set on it!") + initialized = TRUE + return INITIALIZE_HINT_QDEL + START_PROCESSING(SSobj, src) + +/obj/tether_away_spawner/process() + if(my_mob && my_mob.stat != DEAD) + return //No need + + for(var/mob/living/L in view(src,world.view)) + if(L.client) + return //I'll wait. + + if(prob(prob_spawn)) + prob_spawn -= prob_fall + var/picked_type = pickweight(mobs_to_pick_from) + my_mob = new picked_type(get_turf(src)) + my_mob.low_priority = TRUE + + if(faction) + my_mob.faction = faction + + if(atmos_comp) + var/turf/T = get_turf(src) + var/datum/gas_mixture/env = T.return_air() + if(env) + if(my_mob.minbodytemp > env.temperature) + my_mob.minbodytemp = env.temperature * 0.8 + if(my_mob.maxbodytemp < env.temperature) + my_mob.maxbodytemp = env.temperature * 1.2 + + var/list/gaslist = env.gas + if(my_mob.min_oxy) + my_mob.min_oxy = gaslist["oxygen"] * 0.8 + if(my_mob.min_tox) + my_mob.min_tox = gaslist["phoron"] * 0.8 + if(my_mob.min_n2) + my_mob.min_n2 = gaslist["nitrogen"] * 0.8 + if(my_mob.min_co2) + my_mob.min_co2 = gaslist["carbon_dioxide"] * 0.8 + if(my_mob.max_oxy) + my_mob.max_oxy = gaslist["oxygen"] * 1.2 + if(my_mob.max_tox) + my_mob.max_tox = gaslist["phoron"] * 1.2 + if(my_mob.max_n2) + my_mob.max_n2 = gaslist["nitrogen"] * 1.2 + if(my_mob.max_co2) + my_mob.max_co2 = gaslist["carbon_dioxide"] * 1.2 +/* //VORESTATION AI TEMPORARY REMOVAL + if(guard) + my_mob.returns_home = TRUE + my_mob.wander_distance = guard +*/ + return + else + STOP_PROCESSING(SSobj, src) + depleted = TRUE + return + +//Shadekin spawner. Could have them show up on any mission, so it's here. +//Make sure to put them away from others, so they don't get demolished by rude mobs. +/obj/tether_away_spawner/shadekin + name = "Shadekin Spawner" + icon = 'icons/mob/vore_shadekin.dmi' + icon_state = "spawner" + + faction = "shadekin" + prob_spawn = 1 + prob_fall = 1 + //guard = 10 //Don't wander too far, to stay alive. + mobs_to_pick_from = list( + /mob/living/simple_mob/shadekin + ) + +////////////////////////////////////////////////////////////////////////////// +//Antag/Event/ERT Areas + +#include "../submaps/admin_use_vr/ert.dm" +#include "../submaps/admin_use_vr/mercship.dm" +#include "../submaps/admin_use_vr/salamander_trader.dm" + +/datum/map_template/admin_use/ert + name = "Special Area - ERT" + desc = "It's the ERT ship! Lorge." + mappath = 'maps/submaps/admin_use_vr/ert.dmm' + +/datum/map_template/admin_use/trader + name = "Special Area - Trader" + desc = "Big trader ship." + mappath = 'maps/submaps/admin_use_vr/tradeship.dmm' + +/datum/map_template/admin_use/salamander_trader + name = "Special Area - Salamander Trader" + desc = "Modest trader ship." + mappath = 'maps/submaps/admin_use_vr/salamander_trader.dmm' + +/datum/map_template/admin_use/mercenary + name = "Special Area - Merc Ship" + desc = "Prepare tae be boarded, arr!" + mappath = 'maps/submaps/admin_use_vr/kk_mercship.dmm' + +/datum/map_template/admin_use/skipjack + name = "Special Area - Skipjack Base" + desc = "Stinky!" + mappath = 'maps/submaps/admin_use_vr/skipjack.dmm' + +/datum/map_template/admin_use/thunderdome + name = "Special Area - Thunderdome" + desc = "Thunderrrrdomeee" + mappath = 'maps/submaps/admin_use_vr/thunderdome.dmm' + +/datum/map_template/admin_use/wizardbase + name = "Special Area - Wizard Base" + desc = "Wingardium Levosia" + mappath = 'maps/submaps/admin_use_vr/wizard.dmm' + +/datum/map_template/admin_use/dojo + name = "Special Area - Ninja Dojo" + desc = "Sneaky" + mappath = 'maps/submaps/admin_use_vr/dojo.dmm' + +////////////////////////////////////////////////////////////////////////////// +//Overmap ship spawns + +#include "../offmap_vr/om_ships/hybridshuttle.dm" +#include "../offmap_vr/om_ships/screebarge.dm" +#include "../offmap_vr/om_ships/aro.dm" +#include "../offmap_vr/om_ships/aro2.dm" +#include "../offmap_vr/om_ships/aro3.dm" +#include "../offmap_vr/om_ships/bearcat.dm" +#include "../offmap_vr/om_ships/cruiser.dm" +#include "../offmap_vr/om_ships/vespa.dm" +#include "../offmap_vr/om_ships/generic_shuttle.dm" +#include "../offmap_vr/om_ships/salamander.dm" +#include "../offmap_vr/om_ships/geckos.dm" +#include "../offmap_vr/om_ships/mackerels.dm" +#include "../offmap_vr/om_ships/mercenarybase.dm" +#include "../offmap_vr/om_ships/mercship.dm" +#include "../offmap_vr/om_ships/curashuttle.dm" +#include "../offmap_vr/om_ships/itglight.dm" +#include "../offmap_vr/om_ships/abductor.dm" + +////////////////////////////////////////////////////////////////////////////// +//Capsule deployed ships +#include "../offmap_vr/om_ships/shelter_5.dm" +#include "../offmap_vr/om_ships/shelter_6.dm" + +////////////////////////////////////////////////////////////////////////////// +//Offmap Spawn Locations +#include "../offmap_vr/talon/talon_v2.dm" +#include "../offmap_vr/talon/talon_v2_areas.dm" + +#if MAP_TEST +#include "../offmap_vr/talon/talon_v2.dmm" +#endif + +/datum/map_template/common_lateload/offmap/talon_v2 + name = "Offmap Ship - Talon V2" + desc = "Offmap spawn ship, the Talon." + mappath = 'maps/offmap_vr/talon/talon_v2.dmm' + associated_map_datum = /datum/map_z_level/common_lateload/talon_v2 + +/datum/map_z_level/common_lateload/talon_v2 + name = "Talon" + flags = MAP_LEVEL_PLAYER|MAP_LEVEL_PERSIST|MAP_LEVEL_MAPPABLE + base_turf = /turf/space + z = Z_LEVEL_OFFMAP1 \ No newline at end of file diff --git a/maps/offmap_vr/talon/talon_v2.dm b/maps/offmap_vr/talon/talon_v2.dm index e224723141..8f8efc0879 100644 --- a/maps/offmap_vr/talon/talon_v2.dm +++ b/maps/offmap_vr/talon/talon_v2.dm @@ -11,7 +11,7 @@ var/global/list/latejoin_talon = list() /datum/spawnpoint/talon display_name = "ITV Talon Cryo" - restrict_job = list("Talon Captain", "Talon Pilot", "Talon Engineer", "Talon Doctor", "Talon Guard") + restrict_job = list("Talon Captain", "Talon Pilot", "Talon Engineer", "Talon Doctor", "Talon Guard", "Talon Miner") msg = "has come out of cryostasis" announce_channel = "Talon" @@ -47,7 +47,7 @@ var/global/list/latejoin_talon = list() vessel_mass = 10000 vessel_size = SHIP_SIZE_LARGE initial_generic_waypoints = list("talon_v2_near_fore_port", "talon_v2_near_fore_star", "talon_v2_near_aft_port", "talon_v2_near_aft_star", "talon_v2_wing_port", "talon_v2_wing_star") - initial_restricted_waypoints = list("Talon's Shuttle" = list("offmap_spawn_talonboat")) + initial_restricted_waypoints = list("Talon's Shuttle" = list("offmap_spawn_talonboat"), "Talon's Escape Pod" = list("offmap_spawn_talonpod")) skybox_icon = 'talon.dmi' skybox_icon_state = "skybox" @@ -55,7 +55,7 @@ var/global/list/latejoin_talon = list() skybox_pixel_y = 60 levels_for_distress = list(1, Z_LEVEL_BEACH, Z_LEVEL_AEROSTAT, Z_LEVEL_DEBRISFIELD, Z_LEVEL_FUELDEPOT) - unowned_areas = list(/area/shuttle/talonboat) + unowned_areas = list(/area/shuttle/talonboat,/area/shuttle/talonpod) // The shuttle's 'shuttle' computer /obj/machinery/computer/shuttle_control/explore/talonboat @@ -70,6 +70,8 @@ var/global/list/latejoin_talon = list() vessel_size = SHIP_SIZE_TINY shuttle = "Talon's Shuttle" + levels_for_distress = list(1, Z_LEVEL_BEACH, Z_LEVEL_AEROSTAT, Z_LEVEL_DEBRISFIELD, Z_LEVEL_FUELDEPOT) + // A shuttle lateloader landmark /obj/effect/shuttle_landmark/shuttle_initializer/talonboat name = "Talon's shuttle bay" @@ -94,6 +96,49 @@ var/global/list/latejoin_talon = list() icon = 'icons/turf/areas_vr_talon.dmi' icon_state = "green" + +/////////////////////////// +//// The Escape Pod + +// The shuttle's 'shuttle' computer +/obj/machinery/computer/shuttle_control/explore/talon_escape + name = "shuttle control console" + shuttle_tag = "Talon's Escape Pod" + req_one_access = list(access_talon) + +/obj/effect/overmap/visitable/ship/landable/talon_pod + name = "ITV Talon Escape Pod" + desc = "An emergency escape pod from the ITV Talon." + vessel_mass = 500 + vessel_size = SHIP_SIZE_TINY + shuttle = "Talon's Escape Pod" + + levels_for_distress = list(1, Z_LEVEL_BEACH, Z_LEVEL_AEROSTAT, Z_LEVEL_DEBRISFIELD, Z_LEVEL_FUELDEPOT) + +// A shuttle lateloader landmark +/obj/effect/shuttle_landmark/shuttle_initializer/talonpod + name = "Talon's pod bay" + base_area = /area/talon_v2/pod_hangar + base_turf = /turf/simulated/floor/reinforced + landmark_tag = "offmap_spawn_talonpod" + docking_controller = "talon_podbay" + shuttle_type = /datum/shuttle/autodock/overmap/talonpod + +// The talon's boat +/datum/shuttle/autodock/overmap/talonpod + name = "Talon's Escape Pod" + current_location = "offmap_spawn_talonpod" + docking_controller_tag = "talonpod_docker" + shuttle_area = /area/shuttle/talonpod + fuel_consumption = 1 + defer_initialisation = TRUE + +/area/shuttle/talonpod + name = "Talon's Escape Pod" + requires_power = 1 + icon = 'icons/turf/areas_vr_talon.dmi' + icon_state = "green" + /////////////////////////// //// The Various Machines /obj/machinery/telecomms/allinone/talon @@ -186,11 +231,43 @@ speaking of, if some dumbass does take it and fly off solo then get themselves k
\ Harry Townes"} +/obj/item/weapon/paper/talon_cannon + name = "ITV Talon OFD Console" + info = {"to whoever's got the itchiest trigger finger,
\ +as a reward for recent good performance, the lads upstairs have seen fit to have our ship retrofitted with an Obstruction Field Disperser. This fancy bit of hardware can be used to, well, 'disperse' 'obstructions'. asteroids or carp shoals in the way? no problem! load her up and fire! range is pretty short though.
\ +
\ +they haven't issued very much ammo for it, so if you want more you'll have to trade with those nanotrasen boys and girls. use the blue ones for ion storms and electrical clouds, and the red ones for asteroids and carp. calibration and aiming the thing is a bit of a pain but you'll figure it out. pre-calibrate then mess with the numbers until accuracy hits 100%.
\ +
\ +aside from that, only thing you really need to keep in mind is that it'll explode pretty spectacularly if you try to fire it whilst it's cooling down *or* if the hatch is closed. hatch is rigged to the bridge shutter controls.
\ +
\ +oh, and it's not a weapon. don't try to shoot other ships with it or anything, it won't work.
\ +
\ +Harry Townes"} + +/obj/item/weapon/paper/talon_escape_pod + name = "ITV Talon Escape Pod" + info = {"to whoever's stuck bailing out,
\ +after some extensive retrofits to comply with starfaring vessel regulations, our lovely little ship has been outfitted with a proper escape pod, which you are now standing in if you are reading this paper! congratulations!
\ +
\ +in the untimely event that you actually need to use it and survive long enough to, here's what you need to know;
\ +1. the thrusters don't have enough power to really fly around in space very much.
\ +2. you probably don't have very much air either.
\ +3. on the plus side, plenty of seats and supplies.
\ +4. remember to hit the emergency distress signal button.
\ +5. you have no sensors, so I hope you wrote down or remember what's around.
\ +
\ +if you have to punch out, do it whilst the ship is in open space. the pod has nothing to stop space debris ventilating it! it is rated for reentry though, so if you can bail over a planet it should be able to take you down to a safe landing spot. from there, use the emergency supplies and try to hold out until rescue comes.
\ +
\ +personally I recommend using the ship's boat if you need to evacuate, but if you're stuck with the pod then... good luck!
\ +
\ +Harry Townes"} + //Prevents remote control of drones /obj/machinery/drone_fabricator/talon name = "somewhat glitchy drone fabricator" desc = "Obtained from a derelict, it seems to work sometimes, not work sometimes, and work TOO good sometimes. Didn't come with a control console either..." drone_type = /mob/living/silicon/robot/drone/talon + fabricator_tag = "Talon" /mob/living/silicon/robot/drone/talon foreign_droid = TRUE @@ -272,6 +349,12 @@ speaking of, if some dumbass does take it and fly off solo then get themselves k /obj/item/clothing/suit/space/void/pilot/talon name = "talon pilot's voidsuit" +/obj/item/clothing/head/helmet/space/void/mining/talon + name = "talon miner's voidsuit helmet" + camera_networks = list(NETWORK_TALON_HELMETS) +/obj/item/clothing/suit/space/void/mining/talon + name = "talon miner's voidsuit" + /obj/item/device/gps/command/taloncap gps_tag = "TALC" /obj/item/device/gps/security/talonguard @@ -282,6 +365,8 @@ speaking of, if some dumbass does take it and fly off solo then get themselves k gps_tag = "TALE" /obj/item/device/gps/explorer/talonpilot gps_tag = "TALP" +/obj/item/device/gps/mining/talonminer + gps_tag = "TALM" /obj/structure/closet/secure_closet/talon_captain name = "talon captain's locker" @@ -397,6 +482,29 @@ speaking of, if some dumbass does take it and fly off solo then get themselves k /obj/item/device/gps/explorer/talonpilot ) +/obj/structure/closet/secure_closet/talon_miner + name = "talon miner's locker" + req_access = list(access_talon) + closet_appearance = /decl/closet_appearance/secure_closet/talon/miner + + starts_with = list( + /obj/item/device/radio/headset/talon, + /obj/item/clothing/head/helmet/space/void/refurb/mining/talon, + /obj/item/clothing/suit/space/void/refurb/mining/talon, + /obj/item/weapon/tank/oxygen, + /obj/item/device/suit_cooling_unit, + /obj/item/device/gps/mining/talonminer, + /obj/item/clothing/gloves/black, + /obj/item/device/analyzer, + /obj/item/weapon/storage/bag/ore, + /obj/item/device/flashlight/lantern, + /obj/item/weapon/shovel, + /obj/item/weapon/pickaxe, + /obj/item/weapon/mining_scanner, + /obj/item/clothing/glasses/material, + /obj/item/clothing/glasses/meson + ) + /obj/machinery/vending/medical_talon //Not a subtype for *reasons* name = "NanoMed Plus" desc = "Medical drug dispenser." @@ -500,6 +608,13 @@ speaking of, if some dumbass does take it and fly off solo then get themselves k hard_drive.store_file(new/datum/computer_file/program/camera_monitor/talon_helmet()) set_autorun("tsensormonitor") +/obj/item/modular_computer/laptop/preset/custom_loadout/standard/talon/miner + name = "miner's laptop" + +/obj/item/modular_computer/laptop/preset/custom_loadout/standard/talon/miner/install_default_programs() + ..() + hard_drive.store_file(new/datum/computer_file/program/ship_nav()) + //Generic modular consoles scattered around /obj/item/modular_computer/console/preset/talon name = "talon modular computer" @@ -545,7 +660,7 @@ speaking of, if some dumbass does take it and fly off solo then get themselves k /obj/effect/shuttle_landmark/premade/talon_v2_wing_star name = "ITV Talon (Starboard Wingtip)" landmark_tag = "talon_v2_wing_star" - + /obj/random/multiple/corp_crate/talon_cargo name = "random corporate crate (talon)" desc = "A random corporate crate with thematic contents. No weapons, no SAARE cashbox, 50% chance to not appear." diff --git a/maps/offmap_vr/talon/talon_v2.dmm b/maps/offmap_vr/talon/talon_v2.dmm index 1c040f2c16..59d89d7a42 100644 --- a/maps/offmap_vr/talon/talon_v2.dmm +++ b/maps/offmap_vr/talon/talon_v2.dmm @@ -2,791 +2,228 @@ "aa" = ( /turf/space, /area/space) -"ab" = ( -/obj/machinery/mineral/input, -/obj/machinery/conveyor{ - dir = 4; - id = "talonrefinery" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/refining) "ac" = ( -/obj/machinery/mineral/processing_unit_console{ +/obj/machinery/computer/ship/helm{ req_one_access = list(301) }, -/obj/structure/girder, -/obj/structure/railing/grey{ - dir = 4 - }, -/obj/structure/railing/grey, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/refining) -"ad" = ( -/obj/structure/extinguisher_cabinet{ - dir = 8; - pixel_x = 30 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/brig) -"ae" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway/fore) -"af" = ( -/obj/structure/closet/secure_closet/talon_guard, -/obj/item/device/radio/off{ - channels = list("Talon" = 1) - }, -/obj/item/weapon/storage/box/nifsofts_security, -/turf/simulated/floor/wood, -/area/talon_v2/crew_quarters/sec_room) -"ag" = ( -/obj/structure/closet/secure_closet/talon_doctor, -/obj/item/device/radio/off{ - channels = list("Talon" = 1) - }, -/obj/item/weapon/storage/box/nifsofts_medical, -/turf/simulated/floor/wood, -/area/talon_v2/crew_quarters/med_room) -"ah" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera/network/talon, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway/star) -"ai" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/talon_v2/crew_quarters/sec_room) -"aj" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/random/multiple/corp_crate/talon_cargo, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/maintenance/wing_starboard) -"ak" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 9 - }, -/turf/simulated/floor/reinforced/airless, -/area/talon_v2/engineering/port) -"al" = ( /obj/machinery/light{ dir = 1 }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/central_hallway) -"am" = ( -/obj/machinery/alarm/talon{ - dir = 4; - pixel_x = -22 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/apc/talon{ - dir = 1; - name = "north bump"; - pixel_y = 28 - }, -/obj/structure/table/steel, -/obj/item/weapon/storage/box/nifsofts_mining, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/refining) -"an" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/light_switch{ - pixel_y = 24 - }, /obj/machinery/camera/network/talon, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/hangar) -"ao" = ( -/obj/structure/table/rack/steel, -/obj/random/maintenance/engineering, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/port_store) -"ap" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/structure/table/steel, -/obj/structure/extinguisher_cabinet{ - pixel_y = 32 +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/bridge) +"ad" = ( +/obj/machinery/door/firedoor/glass/talon, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 }, -/obj/fiftyspawner/uranium, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/generators) -"aq" = ( -/obj/machinery/recharge_station, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/generators) -"ar" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/structure/table/steel, -/obj/machinery/recharger, -/obj/item/device/geiger{ - pixel_x = -7 - }, -/obj/machinery/alarm/talon{ - pixel_y = 24 - }, -/obj/machinery/camera/network/talon{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/generators) -"as" = ( -/obj/machinery/holoposter{ - dir = 8; - pixel_x = -32 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway/fore) -"at" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/warning{ +/obj/structure/window/reinforced{ dir = 1 }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/port) -"au" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "talon_bridge_shields" }, /turf/simulated/floor/plating, -/area/talon_v2/engineering) -"av" = ( -/obj/structure/table/standard, -/obj/machinery/recharger, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 - }, -/obj/machinery/light/small{ - dir = 8 +/area/talon_v2/bridge) +"ae" = ( +/obj/machinery/vending/sovietsoda, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/central_hallway/fore) +"af" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/aux, +/obj/structure/sign/painting/public{ + pixel_x = -30 }, /turf/simulated/floor/tiled/techfloor, -/area/talon_v2/workroom) -"aw" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/area/talon_v2/central_hallway/fore) +"ag" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/aux, +/obj/machinery/alarm/talon{ + dir = 8; + pixel_x = 22 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/talon_v2/crew_quarters/med_room) -"ax" = ( -/obj/structure/closet/secure_closet/talon_engineer, -/obj/item/device/radio/off{ - channels = list("Talon" = 1) - }, -/obj/item/weapon/storage/box/nifsofts_engineering, -/turf/simulated/floor/wood, -/area/talon_v2/crew_quarters/eng_room) -"ay" = ( -/obj/machinery/disposal/wall{ - dir = 4 +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/central_hallway/fore) +"ah" = ( +/obj/machinery/light{ + dir = 8 }, /obj/structure/disposalpipe/trunk{ dir = 4 }, -/obj/structure/sign/painting/public{ - pixel_x = -30 - }, -/turf/simulated/floor/wood, -/area/talon_v2/crew_quarters/meditation) -"az" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/catwalk, -/obj/machinery/power/apc/talon/hyper{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/generators) -"aA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/cable/yellow{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/generators) -"aB" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/effect/catwalk_plated, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/talon_v2/central_hallway/star) -"aC" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/glass/talon, -/obj/structure/sign/warning/nosmoking_1{ - pixel_x = -26 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/engineering{ - name = "Talon Port Engines"; - req_one_access = list(301) - }, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/port) -"aD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/cable/yellow{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/generators) -"aE" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/glass/talon, -/obj/machinery/door/airlock/hatch{ - name = "Generator Room"; - req_one_access = list(301) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/sign/warning/radioactive{ - pixel_y = 32 - }, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/generators) -"aF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/vending/medical_talon{ +/obj/machinery/disposal/wall{ dir = 4 }, /turf/simulated/floor/tiled/white, /area/talon_v2/medical) -"aG" = ( -/obj/structure/cable/yellow{ - 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/catwalk, +"aj" = ( +/obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/cable/green{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/turf/simulated/floor/plating, -/area/talon_v2/engineering) -"aH" = ( -/obj/effect/map_helper/airlock/atmos/chamber_pump, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 +/obj/machinery/alarm/talon{ + dir = 4; + pixel_x = -22 }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/talonboat) -"aI" = ( -/obj/machinery/atmospherics/pipe/manifold/visible, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/atmospherics) -"aJ" = ( -/obj/structure/cable/yellow, -/obj/machinery/power/rtg/advanced, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/generators) -"aK" = ( -/obj/structure/cable/yellow, -/obj/machinery/light/small, -/obj/machinery/power/port_gen/pacman/super/potato, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/generators) -"aL" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/wall/rshull, -/area/talon_v2/engineering/star_store) -"aN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/brig) -"aO" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/bridge) -"aP" = ( -/obj/machinery/power/apc/talon/hyper{ - pixel_y = -24 - }, -/obj/effect/catwalk_plated/dark, -/obj/structure/closet/walllocker_double/hydrant/west, -/obj/structure/cable/green, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/talon_v2/engineering) -"aQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/engineering) -"aR" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/wall/rshull, -/area/talon_v2/maintenance/aft_port) -"aS" = ( -/obj/machinery/door/firedoor/glass/talon, -/obj/machinery/door/airlock/command{ - name = "Bridge"; - req_one_access = list(301) - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/bridge) -"aT" = ( -/obj/structure/handrail, -/turf/simulated/floor/tiled/techmaint, +/obj/random/multiple/corp_crate/talon_cargo, +/obj/structure/railing/grey, +/turf/simulated/floor/tiled/techfloor, /area/talon_v2/maintenance/wing_starboard) -"aU" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" +"ak" = ( +/obj/effect/floor_decal/industrial/outline/red, +/obj/machinery/atmospherics/portables_connector{ + dir = 4 }, +/obj/structure/railing/grey, +/obj/machinery/portable_atmospherics/canister/phoron/engine_setup, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/port) +"al" = ( +/obj/structure/table/woodentable, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/item/modular_computer/laptop/preset/custom_loadout/standard/talon/pilot, +/turf/simulated/floor/carpet, +/area/talon_v2/crew_quarters/pilot_room) +"am" = ( +/obj/machinery/computer/ship/navigation{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/bridge) +"an" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/sign/department/bridge{ - pixel_y = 31 - }, /obj/structure/disposalpipe/segment{ dir = 1 }, -/obj/machinery/camera/network/talon, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway/fore) -"aV" = ( -/obj/machinery/light/small, -/obj/machinery/light_switch{ +/obj/structure/sign/directions/bar{ dir = 1; - pixel_x = 2; - pixel_y = -28 - }, -/obj/structure/cable/yellow{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/terminal{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/talon_v2/engineering) -"aW" = ( -/obj/effect/shuttle_landmark/shuttle_initializer/talonboat, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/obj/effect/overmap/visitable/ship/landable/talon_boat, -/obj/structure/handrail, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/talonboat) -"aZ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" + pixel_x = 32; + pixel_y = -3 }, /obj/structure/sign/directions/bridge{ dir = 1; - pixel_x = 32 + pixel_x = 32; + pixel_y = 3 }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway/fore) -"ba" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/maintenance/wing_port) -"bc" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/atmospherics) -"bd" = ( -/obj/machinery/vending/dinnerware{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/talon_v2/crew_quarters/bar) -"bf" = ( -/obj/structure/railing/grey{ - dir = 1 - }, -/obj/machinery/oxygen_pump{ - dir = 8; - pixel_x = -30 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/handrail{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/bridge) -"bg" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/crew_quarters/restrooms) -"bh" = ( -/obj/effect/map_helper/airlock/atmos/chamber_pump, -/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux, -/obj/structure/handrail, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/maintenance/wing_port) -"bk" = ( -/obj/structure/table/woodentable, -/obj/machinery/firealarm{ - dir = 4; - layer = 3.3; - pixel_x = 26 - }, -/obj/machinery/power/apc/talon{ - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/cable/green, -/obj/item/weapon/paper/talon_captain, -/turf/simulated/floor/carpet/blucarpet, -/area/talon_v2/crew_quarters/cap_room) -"bo" = ( -/obj/machinery/computer/ship/engines, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/talonboat) -"bp" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/holoposter{ - pixel_y = -32 - }, /turf/simulated/floor/tiled/techmaint, /area/talon_v2/central_hallway) -"bq" = ( -/obj/machinery/suit_cycler/vintage/tguard, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/brig) -"br" = ( -/obj/effect/floor_decal/industrial/warning/corner, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/hangar) -"by" = ( -/obj/effect/floor_decal/industrial/warning{ +"ao" = ( +/obj/machinery/computer/ship/sensors{ dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/hangar) -"bz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, /obj/structure/cable/green{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/armory) -"bA" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner{ - dir = 4 - }, -/turf/simulated/floor/reinforced/airless, -/area/space) -"bB" = ( +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/bridge) +"ap" = ( /obj/structure/railing/grey{ dir = 1 }, -/obj/structure/flora/pottedplant/small, +/obj/structure/flora/pottedplant/sticky, /turf/simulated/floor/tiled/techfloor, /area/talon_v2/bridge) -"bC" = ( -/obj/machinery/power/pointdefense{ - id_tag = "talon_pd" - }, -/obj/structure/cable/green, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 10 - }, -/turf/simulated/floor/reinforced/airless, -/area/space) -"bI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/central_hallway/fore) -"bJ" = ( -/obj/machinery/atmospherics/pipe/manifold4w/visible/yellow, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, +"aq" = ( /obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/starboard) -"bK" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/maintenance/wing_starboard) -"bM" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/glass/talon, -/obj/machinery/door/airlock/maintenance/common, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/aft_starboard) -"bN" = ( -/obj/machinery/light_switch{ - dir = 1; - pixel_y = -26 - }, -/obj/structure/table/woodentable, -/obj/machinery/button/remote/blast_door{ +/obj/structure/extinguisher_cabinet{ dir = 4; - id = "talon_quietroom"; - name = "window blast shields"; + pixel_x = -30 + }, +/turf/simulated/floor/plating, +/area/talon_v2/engineering) +"ar" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/structure/railing/grey{ + dir = 8 + }, +/obj/structure/table/steel, +/obj/random/maintenance/engineering, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/engineering) +"as" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/sign/department/commander{ pixel_x = -28 }, -/obj/machinery/recharger, -/turf/simulated/floor/wood, -/area/talon_v2/crew_quarters/meditation) -"bP" = ( -/obj/machinery/door/firedoor/glass/talon, -/obj/machinery/door/airlock/maintenance/common, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway/fore) +"at" = ( +/obj/structure/bed/chair/bay/comfy/brown{ + dir = 1 + }, +/obj/structure/panic_button{ + pixel_x = 32; + pixel_y = 32 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/bridge) +"au" = ( +/obj/structure/bed/chair/bay/chair, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/engineering) +"av" = ( +/obj/structure/table/standard, +/obj/fiftyspawner/steel, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/item/device/paicard, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/workroom) +"ax" = ( +/obj/machinery/camera/network/talon{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/talon_v2/crew_quarters/mine_room) +"ay" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/camera/network/talon, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway/port) +"az" = ( +/obj/machinery/computer/ship/engines{ + dir = 8; + req_one_access = list(301) + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/bridge) +"aA" = ( +/obj/structure/catwalk, +/obj/machinery/light/small{ + dir = 8 + }, /turf/simulated/floor/plating, -/area/talon_v2/maintenance/aft_starboard) -"bQ" = ( +/area/talon_v2/engineering) +"aB" = ( /obj/machinery/optable, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1 @@ -800,567 +237,276 @@ }, /turf/simulated/floor/tiled/white, /area/talon_v2/medical) -"bU" = ( -/obj/structure/table/steel, -/obj/item/device/measuring_tape, -/obj/item/weapon/tool/wrench, -/obj/item/weapon/storage/excavation, -/obj/item/stack/flag/yellow, -/obj/item/weapon/pickaxe, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/anomaly_storage) -"bV" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/gen_store) -"bX" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet{ - dir = 1; - pixel_y = -32 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway/star) -"bY" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/closet/emergsuit_wall{ - dir = 8; - pixel_x = -32 - }, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/port) -"bZ" = ( -/obj/machinery/oxygen_pump{ - dir = 1; - pixel_y = -30 - }, -/obj/structure/handrail{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/bridge) -"ca" = ( +"aC" = ( /obj/structure/cable/green{ - d1 = 4; + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 1; d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway/star) -"cc" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/effect/floor_decal/industrial/outline, -/obj/machinery/portable_atmospherics/powered/pump/filled, -/obj/structure/railing/grey{ - dir = 8 + icon_state = "1-8" }, +/obj/machinery/atmospherics/pipe/manifold/visible, +/obj/structure/catwalk, /turf/simulated/floor/plating, /area/talon_v2/engineering/atmospherics) -"ce" = ( -/obj/structure/disposalpipe/segment{ - dir = 1 +"aD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway) -"cf" = ( -/obj/machinery/button/remote/airlock{ - dir = 8; - id = "talon_meddoor"; - name = "Door Bolts"; - pixel_x = -28; - specialfunctions = 4 - }, -/obj/machinery/light{ +/obj/structure/railing/grey{ dir = 8 }, -/obj/effect/landmark/start{ - name = "Talon Doctor" - }, -/turf/simulated/floor/carpet, -/area/talon_v2/crew_quarters/med_room) -"cg" = ( -/obj/structure/catwalk, -/obj/machinery/alarm/talon{ - dir = 4; - pixel_x = -22 - }, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/aft_starboard) -"ch" = ( -/turf/simulated/wall/rshull, -/area/talon_v2/anomaly_storage) -"ck" = ( -/obj/machinery/door/firedoor/glass/talon, -/obj/machinery/door/airlock/maintenance/engi{ - name = "Starboard Eng. Storage"; - req_one_access = list(301) - }, -/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/plating, -/area/talon_v2/engineering/star_store) -"cl" = ( -/obj/machinery/disposal/wall{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/engineering/star_store) -"cm" = ( -/obj/effect/floor_decal/industrial/outline/red, -/obj/machinery/atmospherics/portables_connector{ - dir = 8 +/obj/effect/floor_decal/industrial/warning{ + dir = 10 }, /obj/structure/railing/grey, -/obj/machinery/portable_atmospherics/canister/phoron/engine_setup, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/port) -"cn" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, +/obj/structure/table/steel, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/engineering) +"aE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/maintenance/wing_starboard) -"cp" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/talon_v2/crew_quarters/cap_room) -"cr" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway) -"ct" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/railing/grey{ - dir = 1 - }, -/obj/random/multiple/corp_crate/talon_cargo, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/maintenance/wing_starboard) -"cv" = ( -/obj/structure/bed/chair/office/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/workroom) -"cw" = ( -/obj/structure/catwalk, -/obj/structure/handrail, -/turf/simulated/floor/reinforced/airless, -/area/talon_v2/maintenance/aft_port) -"cx" = ( -/obj/machinery/recharge_station, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/bridge) -"cB" = ( +/obj/structure/railing/grey, +/obj/effect/floor_decal/industrial/warning, +/obj/structure/table/steel, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/engineering) +"aF" = ( /obj/machinery/door/firedoor/glass/talon, -/obj/machinery/door/airlock/maintenance/common, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/aft_port) -"cE" = ( -/obj/machinery/camera/network/talon{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/maintenance/wing_port) -"cG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/closet/walllocker/medical/east, -/obj/item/weapon/storage/firstaid/regular, -/obj/item/weapon/storage/firstaid/o2, -/obj/item/weapon/storage/firstaid/fire, -/obj/item/device/radio/off{ - channels = list("Talon" = 1) - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/brig) -"cH" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/camera/network/talon, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway/star) -"cK" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/glass/talon, -/obj/machinery/door/blast/regular/open{ - id = "talon_boat_cockpit" - }, /obj/structure/window/reinforced{ dir = 4 }, -/turf/simulated/floor/plating, -/area/shuttle/talonboat) -"cM" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ +/obj/structure/window/reinforced{ dir = 8 }, -/obj/structure/closet/walllocker_double/east, +/obj/machinery/door/blast/regular/open{ + dir = 2; + id = "talon_bridge_shields" + }, +/obj/machinery/door/blast/regular/open{ + dir = 2; + id = "talon_bridge_shields" + }, +/turf/simulated/floor/plating, +/area/talon_v2/bridge) +"aG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/computer/ship/engines{ + dir = 1 + }, +/obj/structure/railing/grey, +/obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/engineering/star_store) -"cN" = ( +/area/talon_v2/engineering) +"aH" = ( +/obj/structure/closet/walllocker/medical/east, +/obj/item/weapon/storage/firstaid/regular, +/obj/item/weapon/storage/firstaid/o2, +/obj/item/weapon/extinguisher/mini, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/talonboat) +"aI" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/atmospherics) +"aJ" = ( /obj/machinery/door/firedoor/glass/talon, -/obj/machinery/door/airlock/security{ - id_tag = "talon_secdoor"; - name = "Guard's Cabin"; +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/engineeringatmos{ + name = "Talon Atmospherics"; req_one_access = list(301) }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/crew_quarters/sec_room) -"cS" = ( -/obj/structure/catwalk, -/obj/machinery/firealarm{ +/obj/structure/sign/directions/engineering/atmospherics{ + dir = 8; + pixel_y = 35 + }, +/obj/structure/sign/directions/engineering{ dir = 4; - pixel_x = 26 + pixel_y = 29 + }, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/atmospherics) +"aK" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/structure/closet/walllocker/medical/south, +/obj/item/weapon/storage/firstaid/regular, +/obj/item/weapon/storage/firstaid/fire, +/turf/simulated/floor/plating, +/area/talon_v2/engineering) +"aL" = ( +/obj/structure/table/rack/shelf/steel, +/obj/random/maintenance/engineering, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/star_store) +"aN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/bridge) +"aO" = ( +/obj/structure/hull_corner{ + dir = 8 + }, +/obj/structure/lattice, +/turf/space, +/area/space) +"aP" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/talon_v2/engineering) +"aQ" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/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/talon_v2/engineering) +"aR" = ( +/obj/machinery/door/firedoor/glass/talon, +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/aft_port) +"aS" = ( +/obj/machinery/door/firedoor/glass/talon, +/obj/machinery/door/airlock/command{ + name = "Bridge"; + req_one_access = list(301) + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/bridge) +"aT" = ( +/obj/machinery/door/firedoor/glass/talon, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/talon_v2/bridge) +"aU" = ( +/obj/machinery/door/firedoor/glass/talon, +/obj/machinery/door/airlock/command{ + name = "Bridge"; + req_one_access = list(301) }, /obj/structure/cable/green{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/fore_port) -"cT" = ( -/obj/structure/catwalk, -/obj/machinery/light/small, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/fore_port) -"cU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/bridge) +"aV" = ( +/obj/structure/disposalpipe/junction/yjunction{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 }, /obj/structure/catwalk, /turf/simulated/floor/plating, -/area/talon_v2/engineering/starboard) -"cV" = ( +/area/talon_v2/engineering) +"aW" = ( +/obj/machinery/atmospherics/portables_connector/fuel{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/phoron, +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/talonboat) +"aZ" = ( +/obj/machinery/shipsensors{ + dir = 1 + }, +/turf/simulated/floor/reinforced/airless, +/area/talon_v2/bridge) +"ba" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/random/multiple/corp_crate/talon_cargo, +/obj/structure/railing/grey{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/maintenance/wing_port) +"bc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/holoposter{ + pixel_y = -32 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway) +"bd" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/power/sensor{ - name = "Talon Main Grid"; - name_tag = "TLN-MAIN-GRID" - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/cable/green, -/obj/effect/catwalk_plated/dark, -/obj/structure/sign/department/eng{ - name = "ENGINEER'S QUARTERS"; - pixel_x = 32 - }, -/turf/simulated/floor/plating, -/area/talon_v2/engineering) -"cX" = ( -/obj/effect/floor_decal/industrial/warning/corner, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/anomaly_storage) -"cZ" = ( -/obj/structure/table/woodentable, -/obj/item/device/paicard, -/turf/simulated/floor/wood, -/area/talon_v2/crew_quarters/meditation) -"da" = ( -/obj/machinery/door/airlock/glass_external{ - req_one_access = list(301) - }, -/obj/effect/map_helper/airlock/door/int_door, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/maintenance/wing_starboard) -"db" = ( /turf/simulated/wall/shull, -/area/talon_v2/brig) -"dc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/aux, -/obj/machinery/alarm/talon{ - dir = 8; - pixel_x = 22 - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/central_hallway/fore) -"dd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/aux, -/obj/machinery/door/firedoor/glass/talon, -/obj/machinery/door/airlock/maintenance/common, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/wing_starboard) -"dh" = ( -/obj/structure/ore_box, -/obj/structure/railing/grey, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/refining) -"di" = ( -/obj/machinery/door/firedoor/glass/talon, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/blast/regular/open{ - dir = 4; - id = "talon_bridge_shields" - }, -/turf/simulated/floor/plating, -/area/talon_v2/bridge) -"dj" = ( -/obj/machinery/light/small, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/aft_starboard) -"dl" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/port_store) -"dn" = ( -/obj/machinery/door/firedoor/glass/talon, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/blast/regular/open{ - dir = 4; - id = "talon_bridge_shields" - }, -/turf/simulated/floor/plating, -/area/talon_v2/bridge) -"dp" = ( -/obj/machinery/computer/ship/sensors{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/bridge) -"dq" = ( -/obj/machinery/atmospherics/binary/pump/high_power/on{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/closet/emergsuit_wall{ - dir = 1; - pixel_y = -32 - }, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/atmospherics) -"dr" = ( -/obj/machinery/door/firedoor/glass/talon, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/door/blast/regular/open{ - dir = 4; - id = "talon_bridge_shields" - }, -/turf/simulated/floor/plating, -/area/talon_v2/bridge) -"ds" = ( -/obj/machinery/door/firedoor/glass/talon, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/blast/regular/open{ - dir = 2; - id = "talon_bridge_shields" - }, -/turf/simulated/floor/plating, -/area/talon_v2/bridge) -"dt" = ( -/obj/machinery/door/firedoor/glass/talon, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/blast/regular/open{ - dir = 2; - id = "talon_bridge_shields" - }, -/turf/simulated/floor/plating, -/area/talon_v2/bridge) -"dv" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/aft_starboard) -"dw" = ( -/obj/machinery/vending/wallmed1{ - emagged = 1; - pixel_y = 32; - shut_up = 0 - }, -/turf/simulated/floor/wood, -/area/talon_v2/crew_quarters/bar) -"dz" = ( -/obj/machinery/door/firedoor/glass/talon, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/blast/regular/open{ - dir = 2; - id = "talon_bridge_shields" - }, -/turf/simulated/floor/plating, -/area/talon_v2/bridge) -"dA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/port_store) -"dC" = ( +/area/talon_v2/ofd_ops) +"bf" = ( /obj/structure/railing/grey, /obj/machinery/light{ dir = 8 @@ -1376,209 +522,60 @@ }, /turf/simulated/floor/tiled/techfloor, /area/talon_v2/bridge) -"dD" = ( -/obj/structure/railing/grey{ +"bg" = ( +/obj/machinery/door/firedoor/glass/talon, +/obj/machinery/door/airlock/medical{ + id_tag = "talon_meddoor"; + name = "Doctor's Cabin"; + req_one_access = list(301) + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/crew_quarters/med_room) +"bh" = ( +/obj/effect/floor_decal/industrial/warning/dust{ dir = 1 }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/bridge) -"dF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/reinforced/airless, +/area/space) +"bi" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/machinery/camera/network/talon{ + dir = 1 + }, +/obj/structure/closet/walllocker_double/hydrant/south, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/atmospherics) +"bn" = ( +/obj/structure/hull_corner{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/turf/space, +/area/space) +"bo" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/closet/emergsuit_wall{ - dir = 1; - pixel_y = -32 +/obj/machinery/computer/ship/sensors{ + dir = 8 }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techmaint, +/turf/simulated/floor/tiled/techfloor, /area/talon_v2/central_hallway) -"dG" = ( -/obj/machinery/door/firedoor/glass/talon, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/blast/regular/open{ - dir = 2; - id = "talon_bridge_shields" - }, -/turf/simulated/floor/plating, -/area/talon_v2/bridge) -"dJ" = ( -/obj/structure/catwalk, -/obj/structure/trash_pile, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/aft_starboard) -"dK" = ( -/obj/machinery/power/pointdefense{ - id_tag = "talon_pd" - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 9 - }, -/turf/simulated/floor/reinforced/airless, -/area/space) -"dL" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/port_store) -"dN" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/device/suit_cooling_unit, -/obj/item/weapon/tank/oxygen, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/secure_storage) -"dO" = ( -/obj/structure/sign/warning/airlock{ - pixel_x = -31 - }, -/obj/effect/floor_decal/industrial/warning, -/obj/structure/handrail{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/maintenance/wing_starboard) -"dP" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/maintenance/wing_port) -"dQ" = ( -/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/techmaint, -/area/talon_v2/maintenance/wing_starboard) -"dR" = ( -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/atmospherics) -"dT" = ( -/obj/structure/table/standard, -/obj/fiftyspawner/steel, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/item/device/paicard, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/workroom) -"dV" = ( -/obj/machinery/door/airlock/glass_external{ - req_one_access = list(301) - }, -/obj/effect/map_helper/airlock/door/int_door, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/maintenance/fore_starboard) -"dW" = ( -/obj/structure/railing/grey{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/bridge) -"dX" = ( -/obj/machinery/computer/ship/navigation, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/button/remote/blast_door{ - id = "talon_bridge_shields"; - name = "bridge blast shields"; - pixel_y = 16 - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/bridge) -"dY" = ( -/obj/machinery/door/firedoor/glass/talon, -/obj/machinery/door/airlock/maintenance/common, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/fore_starboard) -"dZ" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/railing/grey, -/obj/random/multiple/corp_crate/talon_cargo, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/maintenance/wing_port) -"ed" = ( -/obj/structure/railing/grey{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/bridge) -"ef" = ( -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/bridge) -"eg" = ( +"bp" = ( /obj/machinery/alarm/talon{ dir = 8; pixel_x = 22 @@ -1592,260 +589,63 @@ /obj/item/weapon/bedsheet/red, /turf/simulated/floor/carpet, /area/talon_v2/crew_quarters/sec_room) -"eh" = ( -/obj/machinery/door/firedoor/glass/talon, +"br" = ( +/obj/structure/flora/pottedplant/fern, +/obj/machinery/holoposter{ + dir = 1; + pixel_y = 32 + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/central_hallway) +"bt" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 1 +/obj/structure/window/reinforced{ + dir = 8 }, -/turf/simulated/floor/plating, -/area/talon_v2/bridge) -"ei" = ( -/obj/machinery/conveyor{ - id = "talontrash" - }, -/turf/simulated/floor/plating, -/area/talon_v2/engineering) -"ej" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ +/obj/structure/window/reinforced{ dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 +/obj/machinery/door/blast/regular/open{ + id = "talon_windows" }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/effect/catwalk_plated, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/talon_v2/central_hallway/fore) -"ek" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/random/multiple/corp_crate/talon_cargo, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/maintenance/wing_port) -"el" = ( -/obj/machinery/vending/engineering{ - products = list(/obj/item/clothing/under/rank/chief_engineer = 4, /obj/item/clothing/under/rank/engineer = 4, /obj/item/clothing/shoes/orange = 4, /obj/item/clothing/head/hardhat = 4, /obj/item/weapon/storage/belt/utility = 4, /obj/item/clothing/glasses/meson = 4, /obj/item/clothing/gloves/yellow = 4, /obj/item/weapon/tool/screwdriver = 12, /obj/item/weapon/tool/crowbar = 12, /obj/item/weapon/tool/wirecutters = 12, /obj/item/device/multitool = 12, /obj/item/weapon/tool/wrench = 12, /obj/item/device/t_scanner = 12, /obj/item/stack/cable_coil/heavyduty = 8, /obj/item/weapon/cell = 8, /obj/item/weapon/weldingtool = 8, /obj/item/clothing/head/welding = 8, /obj/item/weapon/light/tube = 10, /obj/item/clothing/head/hardhat/red = 4, /obj/item/clothing/suit/fire = 4, /obj/item/weapon/stock_parts/scanning_module = 5, /obj/item/weapon/stock_parts/micro_laser = 5, /obj/item/weapon/stock_parts/matter_bin = 5, /obj/item/weapon/stock_parts/manipulator = 5, /obj/item/weapon/stock_parts/console_screen = 5); - req_access = list(301); - req_log_access = 301; - req_one_access = list(301) - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/engineering/star_store) -"eo" = ( +/obj/machinery/door/firedoor/glass/talon, /obj/structure/cable/green{ d1 = 4; d2 = 8; icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/closet/emergsuit_wall{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway/star) -"ep" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "talontrash" - }, -/obj/machinery/door/blast/regular{ - dir = 4; - id = "talontrashblast" - }, /turf/simulated/floor/plating, -/area/talon_v2/engineering/starboard) -"eq" = ( -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/port_store) -"er" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/random/multiple/corp_crate/talon_cargo, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/maintenance/wing_starboard) -"eu" = ( -/obj/structure/catwalk, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/reinforced/airless, -/area/talon_v2/maintenance/fore_starboard) -"ew" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/maintenance/wing_port) -"ex" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "talontrash" - }, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/starboard) -"ey" = ( -/obj/machinery/button/remote/airlock{ - dir = 4; - id = "talon_capdoor"; - name = "Door Bolts"; - pixel_x = 28; - specialfunctions = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/talon_v2/crew_quarters/cap_room) -"ez" = ( -/obj/machinery/light/small, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/aft_port) -"eC" = ( -/obj/effect/floor_decal/industrial/outline/red, -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/structure/railing/grey, -/obj/machinery/portable_atmospherics/canister/phoron/engine_setup, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/starboard) -"eD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled/white, -/area/talon_v2/medical) -"eF" = ( -/obj/structure/disposaloutlet{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/starboard) -"eG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/secure_storage) -"eH" = ( -/obj/effect/shuttle_landmark/premade/talon_v2_near_aft_port, -/turf/space, -/area/space) -"eI" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/railing/grey{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/talon_v2/engineering) -"eK" = ( -/obj/machinery/disposal/deliveryChute{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk, -/turf/simulated/floor/plating, -/area/talon_v2/engineering) -"eL" = ( -/obj/structure/railing/grey{ - dir = 1 - }, -/obj/structure/flora/pottedplant/sticky, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/bridge) -"eM" = ( -/obj/machinery/door/window/brigdoor/eastleft{ - dir = 1; - req_access = list(301) - }, -/obj/machinery/button/remote/blast_door{ - dir = 1; - id = "talontrashblast"; - pixel_y = -28 - }, -/obj/machinery/conveyor_switch/oneway{ - id = "talontrash" - }, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/starboard) -"eN" = ( -/obj/machinery/light/small, -/obj/structure/railing/grey{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/starboard) -"eP" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/wall/rshull, -/area/talon_v2/engineering) -"eR" = ( -/obj/structure/disposalpipe/segment, +/area/talon_v2/crew_quarters/bar) +"bx" = ( /obj/structure/trash_pile, +/obj/machinery/camera/network/talon, +/obj/structure/railing/grey{ + dir = 4 + }, /turf/simulated/floor/plating, -/area/talon_v2/engineering) -"eS" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/armory) -"eT" = ( +/area/talon_v2/engineering/star_store) +"bz" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway/port) +"bB" = ( /obj/structure/railing/grey, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 @@ -1864,499 +664,100 @@ }, /turf/simulated/floor/tiled/techfloor, /area/talon_v2/bridge) -"eV" = ( -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/workroom) -"eX" = ( -/obj/machinery/atmospherics/portables_connector/aux, -/obj/effect/floor_decal/industrial/outline, -/obj/structure/railing/grey, -/obj/machinery/portable_atmospherics/canister/air, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/port_store) -"eY" = ( -/obj/structure/sign/warning/airlock{ - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 5 - }, -/obj/machinery/light/small, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/aft_port) -"eZ" = ( -/obj/effect/map_helper/airlock/sensor/int_sensor, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 10 - }, -/obj/machinery/airlock_sensor{ - dir = 8; - pixel_x = 28; - req_one_access = list(301) - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/aft_port) -"fa" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/anomaly_storage) -"fb" = ( -/turf/simulated/wall/shull, -/area/talon_v2/engineering/star_store) -"fd" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/clothing/head/beret/talon, -/obj/item/clothing/head/beret/talon, -/obj/item/clothing/head/beret/talon, -/obj/item/clothing/head/beret/talon, -/obj/item/clothing/suit/storage/hooded/wintercoat/talon, -/obj/item/clothing/suit/storage/hooded/wintercoat/talon, -/obj/item/clothing/suit/storage/hooded/wintercoat/talon, -/obj/item/clothing/suit/storage/hooded/wintercoat/talon, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/secure_storage) -"ff" = ( -/obj/effect/map_helper/airlock/sensor/int_sensor, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 6 - }, -/obj/machinery/airlock_sensor{ - dir = 4; - pixel_x = -28; - req_one_access = list(301) - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/aft_starboard) -"fg" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/table/rack/steel, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/star_store) -"fh" = ( -/obj/structure/sign/warning/airlock{ - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 9 - }, -/obj/machinery/light/small, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/aft_starboard) -"fi" = ( -/obj/structure/table/rack/shelf/steel, -/obj/random/maintenance/engineering, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/star_store) -"fj" = ( -/obj/structure/closet/walllocker_double/hydrant/west, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/secure_storage) -"fk" = ( -/obj/structure/railing/grey{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/smartfridge/sheets/persistent_lossy{ - layer = 3.3 - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/refining) -"fm" = ( -/obj/machinery/door/airlock/glass_external{ - req_one_access = list(301) - }, -/obj/effect/map_helper/airlock/door/int_door, -/obj/machinery/atmospherics/pipe/simple/hidden/aux, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/maintenance/aft_port) -"fn" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ - dir = 4 - }, -/obj/effect/map_helper/airlock/atmos/chamber_pump, -/obj/structure/handrail{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/maintenance/aft_port) -"fo" = ( -/obj/machinery/door/firedoor/glass/talon, -/obj/machinery/door/airlock/glass{ - name = "Cantina" - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/crew_quarters/bar) -"fp" = ( -/obj/machinery/door/firedoor/glass/talon, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +"bC" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/machinery/door/airlock{ - name = "Storage Room" +/obj/structure/catwalk, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 26 + }, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/aft_port) +"bG" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass/talon, +/obj/machinery/door/airlock/maintenance/common, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/aft_port) +"bI" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/sign/department/bridge{ + pixel_y = 31 + }, +/obj/structure/disposalpipe/segment{ + dir = 1 + }, +/obj/machinery/camera/network/talon, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/central_hallway/fore) +"bJ" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/sign/directions/bridge{ + dir = 1; + pixel_x = 32 }, /turf/simulated/floor/tiled/techmaint, -/area/talon_v2/gen_store) -"fq" = ( -/obj/effect/map_helper/airlock/sensor/chamber_sensor, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 9 - }, -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - dir = 1; - id_tag = "talon_port_aft"; - pixel_y = -30; - req_one_access = list(301) - }, -/obj/machinery/airlock_sensor{ - dir = 8; - pixel_x = 28; - req_one_access = list(301) - }, -/obj/machinery/light/small, -/obj/structure/handrail{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/maintenance/aft_port) -"fr" = ( -/obj/effect/map_helper/airlock/sensor/chamber_sensor, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 5 - }, -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - dir = 1; - id_tag = "talon_starboard_aft"; - pixel_y = -30; - req_one_access = list(301) - }, -/obj/machinery/airlock_sensor{ +/area/talon_v2/central_hallway/fore) +"bK" = ( +/obj/machinery/power/apc/talon{ dir = 4; - pixel_x = -28; - req_one_access = list(301) + name = "east bump"; + pixel_x = 24 }, -/obj/machinery/light/small, -/obj/structure/handrail{ - dir = 4 +/obj/structure/cable/green, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" }, -/obj/effect/floor_decal/industrial/warning/corner, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/maintenance/aft_starboard) -"fs" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ - dir = 8 - }, -/obj/effect/map_helper/airlock/atmos/chamber_pump, /obj/structure/handrail{ dir = 8 }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/techfloor/grid, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/maintenance/wing_starboard) +"bM" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, /area/talon_v2/maintenance/aft_starboard) -"fv" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/random/multiple/corp_crate/talon_cargo, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/maintenance/wing_port) -"fw" = ( -/obj/structure/railing/grey, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet{ - dir = 8; - pixel_x = 30 - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/bridge) -"fx" = ( -/obj/structure/table/steel, -/obj/machinery/cell_charger, -/obj/item/weapon/cell/apc, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/engineering) -"fz" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/talon_v2/crew_quarters/cap_room) -"fC" = ( +"bN" = ( /obj/structure/reagent_dispensers/water_cooler/full, /obj/structure/sign/painting/public{ pixel_y = 30 }, /turf/simulated/floor/wood, /area/talon_v2/crew_quarters/bar) -"fF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/atmospherics) -"fG" = ( -/obj/machinery/door/airlock/glass_external{ - req_one_access = list(301) - }, -/obj/effect/map_helper/airlock/door/ext_door, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/maintenance/aft_port) -"fM" = ( -/obj/structure/table/woodentable, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/talon_v2/crew_quarters/meditation) -"fN" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/firealarm{ - layer = 3.3; - pixel_y = 26 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway/star) -"fQ" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, +"bP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/engineering) -"fR" = ( -/obj/effect/map_helper/airlock/sensor/ext_sensor, -/obj/machinery/airlock_sensor{ - pixel_x = -28; - pixel_y = 28; - req_one_access = list(301) - }, -/obj/structure/catwalk, -/turf/simulated/floor/reinforced/airless, -/area/talon_v2/maintenance/aft_port) -"fS" = ( -/obj/effect/map_helper/airlock/sensor/ext_sensor, -/obj/machinery/airlock_sensor{ - pixel_x = 28; - pixel_y = 28; - req_one_access = list(301) - }, -/obj/structure/catwalk, -/turf/simulated/floor/reinforced/airless, -/area/talon_v2/maintenance/aft_starboard) -"fU" = ( -/obj/machinery/computer/ship/engines{ - dir = 8; - req_one_access = list(301) - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/bridge) -"fV" = ( -/turf/simulated/wall/shull, -/area/talon_v2/hangar) -"fW" = ( -/turf/simulated/wall/shull, -/area/talon_v2/refining) -"gb" = ( -/obj/structure/bed/chair/wood, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/sign/painting/public{ - pixel_x = 30 - }, -/turf/simulated/floor/carpet/blucarpet, -/area/talon_v2/crew_quarters/cap_room) -"gc" = ( -/obj/effect/map_helper/airlock/atmos/chamber_pump, -/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ - dir = 1 - }, -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - dir = 1; - id_tag = "talon_port"; - pixel_y = -30; - req_one_access = list(301) - }, -/obj/machinery/light/small, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/maintenance/wing_port) -"gd" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/junction{ - dir = 8; + dir = 2; icon_state = "pipe-j2" }, -/turf/simulated/floor/wood, -/area/talon_v2/crew_quarters/eng_room) -"ge" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/wood, -/area/talon_v2/crew_quarters/bar) -"gg" = ( -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -24 - }, -/obj/structure/table/rack/shelf/steel, -/obj/item/weapon/whetstone, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/armory) -"gj" = ( -/obj/machinery/power/sensor{ - name = "Talon Power Generation"; - name_tag = "TLN-PWR-GEN" - }, -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/cable/yellow, -/obj/structure/cable/yellow{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/effect/catwalk_plated/dark, -/turf/simulated/floor/plating, -/area/talon_v2/engineering) -"gl" = ( -/obj/structure/catwalk, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/talon_v2/engineering) -"gm" = ( -/obj/structure/table/woodentable, -/turf/simulated/floor/wood, -/area/talon_v2/crew_quarters/cap_room) -"gn" = ( -/obj/machinery/alarm/talon{ - dir = 1; - pixel_y = -25 - }, -/obj/structure/table/standard, -/obj/machinery/photocopier/faxmachine/talon, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/workroom) -"go" = ( -/obj/machinery/alarm/talon{ - dir = 8; - pixel_x = 22 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/aft_port) -"gr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 5 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/apc/talon{ - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/fore_port) -"gs" = ( -/obj/effect/floor_decal/emblem/talon_big{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 1 - }, /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -2364,838 +765,113 @@ }, /turf/simulated/floor/tiled/techfloor, /area/talon_v2/central_hallway/fore) -"gt" = ( -/turf/simulated/floor/carpet/blucarpet, -/area/talon_v2/crew_quarters/cap_room) -"gu" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +"bQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/effect/floor_decal/industrial/warning/dust/corner, -/turf/simulated/floor/reinforced/airless, -/area/space) -"gx" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/structure/railing/grey, -/obj/effect/floor_decal/industrial/outline, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/atmospherics) -"gA" = ( -/obj/structure/table/rack/steel, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/item/weapon/storage/firstaid/regular, +/obj/item/weapon/storage/firstaid/o2, +/obj/structure/closet/walllocker/medical/south, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/crew_quarters/restrooms) +"bT" = ( +/obj/effect/floor_decal/industrial/outline/red, +/obj/machinery/portable_atmospherics/canister/empty/phoron, /turf/simulated/floor/plating, /area/talon_v2/engineering/star_store) -"gB" = ( +"bU" = ( /obj/machinery/light{ - dir = 1 + dir = 4 }, -/obj/structure/bed/chair/bay/chair, -/obj/machinery/camera/network/talon, -/obj/machinery/button/remote/blast_door{ - id = "talon_brig2"; - name = "Cell 2 Shutters"; - pixel_x = 7; - pixel_y = 28; - req_one_access = list(301) - }, -/obj/machinery/button/remote/blast_door{ - id = "talon_brig1"; - name = "Cell 1 Shutters"; - pixel_x = -8; - pixel_y = 28; - req_one_access = list(301) - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/brig) -"gD" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, -/turf/simulated/floor/reinforced/airless, -/area/space) -"gE" = ( -/obj/structure/catwalk, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/fore_starboard) -"gF" = ( -/obj/machinery/ntnet_relay, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/engineering) -"gH" = ( -/obj/machinery/door/firedoor/glass/talon, -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 1; - name = "Cargo Bay"; - req_one_access = list(301) - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway/port) -"gI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/aft_port) -"gJ" = ( -/obj/machinery/door/blast/regular{ - dir = 4; - id = "talon_cargo_port"; - name = "Cargo Loading Hatch" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/maintenance/wing_port) -"gM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/catwalk, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/starboard) -"gN" = ( -/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/effect/catwalk_plated, /obj/structure/disposalpipe/segment{ - dir = 1 + dir = 4 }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, +/turf/simulated/floor/tiled/techmaint, /area/talon_v2/central_hallway/fore) -"gO" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 9 - }, +"bW" = ( /obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/port) -"gP" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner{ dir = 1 }, -/obj/structure/hull_corner/long_vert{ - dir = 5 - }, -/turf/simulated/floor/reinforced/airless, -/area/space) -"gR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/refining) -"gU" = ( -/obj/machinery/power/apc/talon{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/green, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/handrail{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/maintenance/wing_starboard) -"gV" = ( -/obj/structure/disposalpipe/segment{ +/obj/structure/ship_munition/disperser_charge/explosive, +/obj/structure/railing{ dir = 1 }, -/obj/machinery/holoposter{ - dir = 4; - pixel_x = 32 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway) -"gX" = ( -/obj/structure/hull_corner/long_horiz{ - dir = 10 - }, -/turf/space, -/area/space) -"hb" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/camera/network/talon{ - dir = 1 - }, -/obj/random/multiple/corp_crate/talon_cargo, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/maintenance/wing_starboard) -"hc" = ( -/obj/effect/floor_decal/emblem/talon_big{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/central_hallway/fore) -"hg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/holoposter{ - dir = 8; - pixel_x = -32 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway) -"hh" = ( -/obj/machinery/door/firedoor/glass/talon, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/blast/regular/open{ - dir = 4; - id = "talon_bridge_shields" - }, -/turf/simulated/floor/plating, -/area/talon_v2/bridge) -"hi" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/machinery/alarm/talon{ - dir = 8; - pixel_x = 22 - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/anomaly_storage) -"hj" = ( -/turf/simulated/wall/rshull, -/area/talon_v2/engineering/star_store) -"hk" = ( -/obj/machinery/light/small, -/obj/structure/sign/directions/engineering/engeqp{ - pixel_y = -24 - }, -/turf/simulated/floor/carpet, -/area/talon_v2/crew_quarters/eng_room) -"ho" = ( -/obj/structure/bed/chair/bay/shuttle{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/talonboat) -"hp" = ( -/obj/machinery/atmospherics/binary/algae_farm/filled{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/atmospherics) -"hr" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/hangar) -"hs" = ( -/obj/machinery/door/firedoor/glass/talon, -/obj/machinery/door/airlock/glass{ - name = "Cantina" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/crew_quarters/bar) -"hu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/bridge) -"hw" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 6 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/atmospherics) -"hA" = ( -/obj/structure/bookcase/manuals/engineering, -/turf/simulated/floor/wood, -/area/talon_v2/crew_quarters/meditation) -"hD" = ( -/obj/structure/closet/autolok_wall{ - dir = 1; - pixel_y = -32 - }, -/obj/structure/handrail{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ - dir = 4 - }, -/obj/effect/map_helper/airlock/atmos/chamber_pump, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/talonboat) -"hG" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/warning/dust/corner{ - dir = 8 - }, -/turf/simulated/floor/reinforced/airless, -/area/space) -"hH" = ( -/obj/effect/map_helper/airlock/sensor/int_sensor, -/obj/machinery/airlock_sensor{ - dir = 1; - pixel_y = -23; - req_one_access = list(301) - }, -/obj/structure/bed/chair/bay/shuttle{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/talonboat) -"hK" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/wall/rshull, -/area/talon_v2/maintenance/aft_starboard) -"hL" = ( -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/aft_starboard) -"hM" = ( -/obj/structure/table/woodentable, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/item/modular_computer/laptop/preset/custom_loadout/standard/talon/medical, +/turf/simulated/floor/reinforced, +/area/talon_v2/ofd_ops) +"bX" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, -/turf/simulated/floor/carpet, -/area/talon_v2/crew_quarters/med_room) -"hP" = ( -/obj/machinery/power/pointdefense{ - id_tag = "talon_pd" +/turf/simulated/floor/tiled/white, +/area/talon_v2/medical) +"bY" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 9 }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 5 - }, -/turf/simulated/floor/reinforced/airless, -/area/space) -"hQ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/armory) -"hS" = ( /obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/fore_port) -"hT" = ( -/obj/structure/disposalpipe/segment{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/central_hallway/fore) -"hU" = ( -/obj/machinery/camera/network/talon{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/brig) -"hW" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/wall/rshull, -/area/talon_v2/maintenance/aft_port) -"hY" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline, +/obj/structure/railing/grey, /turf/simulated/floor/plating, /area/talon_v2/engineering/atmospherics) -"ia" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +"bZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/simulated/floor/wood, +/turf/simulated/wall/shull, /area/talon_v2/crew_quarters/bar) -"ig" = ( -/obj/structure/sign/warning/nosmoking_1{ - pixel_x = 26 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/talon_v2/engineering) -"ii" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/star_store) -"ik" = ( -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc/talon{ - dir = 1; - name = "north bump"; - pixel_y = 28 - }, -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/aft_starboard) -"in" = ( -/turf/simulated/floor/plating, -/area/talon_v2/engineering/star_store) -"iq" = ( -/turf/simulated/floor/wood, -/area/talon_v2/crew_quarters/eng_room) -"ir" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/random/multiple/corp_crate/talon_cargo, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/maintenance/wing_port) -"iv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 6 - }, -/obj/structure/handrail, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/maintenance/fore_port) -"iw" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/blast/regular/open{ - id = "talon_windows" - }, -/obj/machinery/door/firedoor/glass/talon, -/turf/simulated/floor/plating, -/area/talon_v2/crew_quarters/bar) -"iy" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/aft_port) -"iz" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/wood, -/area/talon_v2/crew_quarters/bar) -"iB" = ( -/obj/machinery/mineral/stacking_machine, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/refining) -"iD" = ( -/obj/structure/catwalk, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/reinforced/airless, -/area/talon_v2/maintenance/aft_port) -"iF" = ( -/obj/machinery/airlock_sensor{ - dir = 4; - pixel_x = -28; - pixel_y = 28; - req_one_access = list(301) - }, -/obj/effect/map_helper/airlock/sensor/ext_sensor, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/reinforced/airless, -/area/talon_v2/maintenance/wing_starboard) -"iI" = ( -/obj/machinery/atmospherics/portables_connector/aux{ - dir = 4 - }, -/obj/machinery/light/small, -/obj/effect/floor_decal/industrial/outline, -/obj/machinery/portable_atmospherics/canister/air, -/obj/machinery/alarm/talon{ - dir = 1; - pixel_y = -25 - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/talonboat) -"iJ" = ( -/obj/structure/catwalk, -/obj/machinery/alarm/talon{ - dir = 4; - pixel_x = -22 - }, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/star_store) -"iM" = ( -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/fore_starboard) -"iN" = ( -/obj/machinery/vending/engivend{ - products = list(/obj/item/device/geiger = 4, /obj/item/clothing/glasses/meson = 2, /obj/item/device/multitool = 4, /obj/item/weapon/cell/high = 10, /obj/item/weapon/airlock_electronics = 10, /obj/item/weapon/module/power_control = 10, /obj/item/weapon/circuitboard/airalarm = 10, /obj/item/weapon/circuitboard/firealarm = 10, /obj/item/weapon/circuitboard/status_display = 2, /obj/item/weapon/circuitboard/ai_status_display = 2, /obj/item/weapon/circuitboard/newscaster = 2, /obj/item/weapon/circuitboard/holopad = 2, /obj/item/weapon/circuitboard/intercom = 4, /obj/item/weapon/circuitboard/security/telescreen/entertainment = 4, /obj/item/weapon/stock_parts/motor = 2, /obj/item/weapon/stock_parts/spring = 2, /obj/item/weapon/stock_parts/gear = 2, /obj/item/weapon/circuitboard/atm, /obj/item/weapon/circuitboard/guestpass, /obj/item/weapon/circuitboard/keycard_auth, /obj/item/weapon/circuitboard/photocopier, /obj/item/weapon/circuitboard/fax, /obj/item/weapon/circuitboard/request, /obj/item/weapon/circuitboard/microwave, /obj/item/weapon/circuitboard/washing, /obj/item/weapon/circuitboard/scanner_console, /obj/item/weapon/circuitboard/sleeper_console, /obj/item/weapon/circuitboard/body_scanner, /obj/item/weapon/circuitboard/sleeper, /obj/item/weapon/circuitboard/dna_analyzer, /obj/item/weapon/circuitboard/partslathe); - req_access = list(301); - req_log_access = 301 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/engineering/star_store) -"iP" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/central_hallway/fore) -"iQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/carpet, -/area/talon_v2/crew_quarters/med_room) -"iR" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/port) -"iS" = ( +"cc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 + dir = 9 }, -/obj/machinery/atmospherics/pipe/manifold4w/visible/yellow, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/port) -"iU" = ( -/obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, -/obj/random/multiple/corp_crate/talon_cargo, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/maintenance/wing_starboard) -"iV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/bridge) -"jb" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, /obj/structure/cable/green{ d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/hangar) -"jc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/railing/grey, -/obj/structure/railing/grey{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/obj/machinery/power/shield_generator/charged, -/obj/structure/cable/green{ d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/engineering) -"jg" = ( -/obj/effect/landmark/start{ - name = "Talon Pilot" - }, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/carpet, -/area/talon_v2/crew_quarters/pilot_room) -"jh" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/random/multiple/corp_crate/talon_cargo, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/maintenance/wing_port) -"ji" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/weapon/gun/energy/gun, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/armory) -"jk" = ( -/obj/structure/hull_corner/long_vert{ - dir = 5 - }, -/turf/simulated/floor/reinforced/airless, -/area/space) -"jr" = ( -/obj/structure/fitness/weightlifter, -/obj/machinery/camera/network/talon{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/workroom) -"ju" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 + icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/talon_v2/crew_quarters/restrooms) -"jv" = ( -/obj/structure/table/woodentable, -/obj/machinery/button/remote/blast_door{ - dir = 8; - id = "talon_quietroom"; - name = "window blast shields"; - pixel_x = 28 +/area/talon_v2/armory) +"cd" = ( +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/star_store) +"ce" = ( +/obj/machinery/cryopod/talon, +/obj/machinery/camera/network/talon, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/central_hallway) +"cf" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, /obj/structure/closet/walllocker/medical/south, /obj/item/weapon/storage/firstaid/regular, /obj/item/weapon/storage/firstaid/o2, -/turf/simulated/floor/wood, -/area/talon_v2/crew_quarters/meditation) -"jx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/closet/walllocker_double/hydrant/west, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/port_store) -"jy" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4 - }, -/turf/simulated/floor/reinforced/airless, -/area/space) -"jC" = ( -/obj/machinery/atmospherics/pipe/tank/oxygen{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/atmospherics) -"jD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/item/device/radio/off{ + channels = list("Talon" = 1) }, /turf/simulated/floor/tiled/techfloor, -/area/talon_v2/bridge) -"jF" = ( -/obj/structure/table/bench/wooden, -/turf/simulated/floor/wood, -/area/talon_v2/crew_quarters/cap_room) -"jG" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/visible, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/atmospherics) -"jI" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ +/area/talon_v2/central_hallway/fore) +"cg" = ( +/obj/machinery/disposal/wall{ dir = 4 }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/maintenance/wing_starboard) -"jL" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/closet/emergsuit_wall{ - dir = 1; - pixel_y = -32 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway/port) -"jM" = ( -/obj/machinery/door/firedoor/glass/talon, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ +/obj/structure/disposalpipe/trunk{ dir = 8 }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/talon_v2/hangar) -"jN" = ( -/obj/structure/table/standard, -/obj/item/weapon/paper_bin, -/obj/item/weapon/pen, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/bar) +"ch" = ( +/obj/structure/closet/excavation, /turf/simulated/floor/tiled/techfloor, -/area/talon_v2/brig) -"jO" = ( +/area/talon_v2/anomaly_storage) +"ci" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -3205,1967 +881,81 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway) -"jQ" = ( -/obj/machinery/power/apc/talon{ - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/gen_store) -"jS" = ( -/obj/machinery/mineral/output, -/obj/machinery/conveyor{ - dir = 8; - id = "talonrefinery" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/refining) -"jY" = ( -/obj/structure/table/steel, -/obj/item/weapon/storage/bag/ore, -/obj/item/weapon/pickaxe/drill, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/refining) -"kc" = ( -/obj/machinery/conveyor{ +/obj/structure/closet/emergsuit_wall{ dir = 1; - id = "talonrefinery" + pixel_y = -32 }, -/obj/structure/sign/warning/moving_parts{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/refining) -"kd" = ( -/obj/effect/shuttle_landmark/premade/talon_v2_wing_star, -/turf/space, -/area/space) -"ke" = ( -/obj/structure/catwalk, -/turf/simulated/floor/reinforced/airless, -/area/talon_v2/maintenance/wing_starboard) -"kf" = ( -/obj/machinery/power/apc/talon{ - dir = 8; - name = "west bump"; - pixel_x = -28 - }, -/obj/structure/cable/green, /obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/handrail{ - dir = 4 + d1 = 4; + d2 = 8; + icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/talon_v2/maintenance/wing_port) -"kg" = ( -/turf/simulated/floor/tiled/techfloor, /area/talon_v2/central_hallway) -"ki" = ( -/obj/machinery/atmospherics/unary/engine/bigger{ - dir = 1 - }, -/turf/space, -/area/talon_v2/engineering/port) -"kj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 4 - }, +"ck" = ( /obj/machinery/door/firedoor/glass/talon, -/obj/machinery/door/airlock/maintenance/common, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/fore_starboard) -"kk" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway/port) -"kl" = ( -/obj/structure/sign/warning/airlock{ - pixel_x = -31 - }, -/obj/structure/handrail, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/maintenance/wing_port) -"kn" = ( -/obj/structure/closet/secure_closet/personal/cabinet{ - locked = 0 - }, -/turf/simulated/floor/wood, -/area/talon_v2/crew_quarters/eng_room) -"kr" = ( /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{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway/star) -"kt" = ( -/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{ - dir = 10 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/port) -"ku" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/random/multiple/corp_crate/talon_cargo, -/obj/structure/railing/grey{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/maintenance/wing_starboard) -"kx" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/port_store) -"kz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/light/small, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/port) -"kA" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/atmospherics) -"kC" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ - dir = 1 - }, -/obj/effect/map_helper/airlock/atmos/chamber_pump, -/obj/structure/handrail{ - dir = 1 +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/engineering{ + id_tag = "talon_engdoor"; + name = "Engineer's Cabin"; + req_one_access = list(301) }, /turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/maintenance/fore_starboard) -"kD" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -26; - pixel_y = -25 - }, +/area/talon_v2/engineering/star_store) +"cl" = ( +/obj/structure/table/woodentable, /turf/simulated/floor/wood, /area/talon_v2/crew_quarters/bar) -"kG" = ( -/obj/structure/table/marble, -/obj/effect/floor_decal/corner/black/diagonal, -/obj/machinery/camera/network/talon{ - dir = 8 - }, -/obj/random/mre, -/obj/random/mre, -/obj/random/mre, -/obj/random/mre, -/obj/random/mre, -/obj/random/mre, -/obj/structure/closet/walllocker_double/kitchen/east, -/turf/simulated/floor/tiled/white, -/area/talon_v2/crew_quarters/bar) -"kH" = ( -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway/fore) -"kI" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/aux, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/fuel, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/effect/catwalk_plated/dark, -/turf/simulated/floor/plating, -/area/shuttle/talonboat) -"kJ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/port_store) -"kM" = ( -/obj/structure/closet/autolok_wall{ - dir = 1; - pixel_y = -32 - }, -/obj/structure/handrail{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ - dir = 8 - }, -/obj/effect/map_helper/airlock/atmos/chamber_pump, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/talonboat) -"kP" = ( -/obj/structure/extinguisher_cabinet{ - dir = 1; - pixel_y = -32 - }, -/obj/machinery/power/smes/buildable/offmap_spawn{ - RCon_tag = "Talon Port SMES" - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/talon_v2/engineering) -"kR" = ( -/obj/structure/handrail, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/maintenance/wing_port) -"kS" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, +"cn" = ( /obj/machinery/light/small{ - dir = 4 + dir = 1 }, -/obj/machinery/alarm/talon{ - dir = 8; - pixel_x = 22 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/starboard) -"kT" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 9 - }, -/obj/structure/catwalk, -/obj/structure/railing/grey, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/atmospherics) -"kU" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/maintenance/wing_starboard) +"cp" = ( +/obj/machinery/button/remote/airlock{ + dir = 4; + id = "talon_capdoor"; + name = "Door Bolts"; + pixel_x = 28; + specialfunctions = 4 }, /obj/structure/cable/green{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 2; + icon_state = "1-2" }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway/fore) -"kW" = ( +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/cap_room) +"ct" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/random/multiple/corp_crate/talon_cargo, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/maintenance/wing_starboard) +"cw" = ( +/obj/machinery/door/firedoor/glass/talon, +/obj/machinery/door/airlock/maintenance/common, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/aft_port) +"cy" = ( /obj/effect/shuttle_landmark/premade/talon_v2_near_fore_star, /turf/space, /area/space) -"kX" = ( -/obj/machinery/door/firedoor/glass/talon, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway/star) -"kY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 6 - }, -/obj/machinery/airlock_sensor{ - dir = 8; - pixel_x = 28; - pixel_y = 28; - req_one_access = list(301) - }, -/obj/effect/map_helper/airlock/sensor/int_sensor, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/maintenance/wing_starboard) -"kZ" = ( -/obj/structure/railing/grey{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/refining) -"lc" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/table/woodentable, -/turf/simulated/floor/wood, -/area/talon_v2/crew_quarters/bar) -"le" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/handrail{ - dir = 4 - }, -/obj/structure/closet/emergsuit_wall{ - dir = 8; - pixel_x = -32 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/maintenance/wing_port) -"lf" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/port_store) -"lg" = ( -/obj/machinery/door/airlock/glass_external{ - req_one_access = list(301) - }, -/obj/effect/map_helper/airlock/door/int_door, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/maintenance/fore_port) -"lj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/effect/catwalk_plated, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/talon_v2/central_hallway/fore) -"lk" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/maintenance/wing_port) -"lm" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/handrail, -/obj/structure/closet/autolok_wall{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/talonboat) -"ln" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/shoes/magboots, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/secure_storage) -"lr" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/port) -"ls" = ( -/obj/structure/bed/chair/bay/comfy/brown{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/bridge) -"lv" = ( -/obj/structure/railing/grey{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/conveyor_switch/oneway{ - id = "talonrefinery"; - name = "Conveyor Control"; - req_one_access = list(301) - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/refining) -"lw" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/glass/talon, -/obj/structure/sign/warning/nosmoking_1{ - pixel_x = 26 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/engineering{ - name = "Talon Starboard Engines"; - req_one_access = list(301) - }, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/starboard) -"lx" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/catwalk, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/fore_starboard) -"lA" = ( -/obj/machinery/light/small, -/obj/structure/railing/grey{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/refining) -"lB" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway) -"lC" = ( -/obj/machinery/atmospherics/portables_connector/fuel{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister/phoron, -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/talonboat) -"lD" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/landmark/start{ - name = "Talon Guard" - }, -/obj/machinery/button/remote/airlock{ - dir = 8; - id = "talon_secdoor"; - name = "Door Bolts"; - pixel_x = 28; - specialfunctions = 4 - }, -/turf/simulated/floor/carpet, -/area/talon_v2/crew_quarters/sec_room) -"lF" = ( -/obj/machinery/light_switch{ - dir = 1; - pixel_y = -26 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/gen_store) -"lI" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/holoposter{ - pixel_y = -32 - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/central_hallway/fore) -"lJ" = ( -/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/techmaint, -/area/talon_v2/armory) -"lM" = ( -/obj/effect/landmark/start{ - name = "Talon Captain" - }, -/turf/simulated/floor/carpet/blucarpet, -/area/talon_v2/crew_quarters/cap_room) -"lN" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/port_store) -"lO" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/closet/emergsuit_wall{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/central_hallway/fore) -"lP" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/closet/walllocker_double/hydrant/west, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/maintenance/wing_starboard) -"lR" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/loading{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/refining) -"lS" = ( -/obj/machinery/door/firedoor/glass/talon, -/obj/machinery/door/airlock/maintenance/common, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/fore_port) -"lT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/starboard) -"lU" = ( -/turf/simulated/wall/shull, -/area/talon_v2/crew_quarters/pilot_room) -"lV" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/aft_port) -"lW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/holoposter{ - dir = 1; - pixel_y = 32 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway/port) -"lX" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/starboard) -"lZ" = ( -/obj/item/modular_computer/console/preset/talon, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/bridge) -"ma" = ( -/obj/machinery/cryopod/robot/talon, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/central_hallway) -"mb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/holoposter{ - pixel_y = -32 - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/central_hallway/fore) -"mc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway/fore) -"md" = ( -/obj/structure/railing/grey{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/atmospherics) -"me" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/clothing/accessory/holster/machete, -/obj/item/weapon/material/knife/machete, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/armory) -"mk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/catwalk, -/obj/machinery/light_switch{ - pixel_y = 24 - }, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/atmospherics) -"ml" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/railing/grey{ - dir = 1 - }, -/obj/random/multiple/corp_crate/talon_cargo, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/maintenance/wing_starboard) -"mm" = ( -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/aft_starboard) -"mo" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner{ - dir = 8 - }, -/turf/simulated/floor/reinforced/airless, -/area/space) -"ms" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/obj/machinery/light_switch{ - pixel_y = 24 - }, -/turf/simulated/floor/wood, -/area/talon_v2/crew_quarters/eng_room) -"mt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/aux, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/maintenance/wing_port) -"mu" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/holoposter{ - pixel_y = -32 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway/port) -"mw" = ( -/turf/simulated/wall/shull, -/area/talon_v2/maintenance/wing_starboard) -"mx" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/catwalk_plated, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/talon_v2/central_hallway) -"mA" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/aux{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/maintenance/wing_port) -"mC" = ( -/obj/structure/sign/warning/airlock{ - pixel_x = -31 - }, -/obj/effect/floor_decal/industrial/warning, -/obj/structure/handrail{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/maintenance/wing_port) -"mE" = ( -/obj/structure/sign/directions/cargo/refinery{ - pixel_y = -32 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway/star) -"mG" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/closet/walllocker/medical/west, -/obj/item/weapon/storage/firstaid/regular, -/obj/item/weapon/storage/firstaid/o2, -/obj/item/device/radio/off{ - channels = list("Talon" = 1) - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/maintenance/wing_starboard) -"mH" = ( -/obj/structure/catwalk, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/star_store) -"mI" = ( -/obj/structure/hull_corner{ - dir = 8 - }, -/turf/space, -/area/space) -"mM" = ( -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/engineering) -"mO" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/structure/railing/grey{ - dir = 4 - }, -/obj/structure/railing/grey{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/talon_v2/engineering) -"mP" = ( -/obj/structure/railing/grey, -/obj/structure/railing/grey{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/refining) -"mQ" = ( -/obj/structure/railing/grey, -/obj/structure/window/reinforced, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/refining) -"mS" = ( -/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{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/refining) -"mT" = ( -/obj/effect/map_helper/airlock/atmos/chamber_pump, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/talonboat) -"mV" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/maintenance/wing_starboard) -"mX" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/empty/carbon_dioxide, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/atmospherics) -"mZ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/junction, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway/fore) -"nb" = ( -/obj/structure/flora/pottedplant/minitree, -/obj/machinery/holoposter{ - dir = 1; - pixel_y = 32 - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/central_hallway) -"nc" = ( -/obj/machinery/camera/network/talon{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/maintenance/wing_starboard) -"ne" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/reinforced/airless, -/area/space) -"ng" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera/network/talon{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway) -"nh" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 9 - }, -/turf/simulated/floor/reinforced/airless, -/area/talon_v2/engineering/starboard) -"nk" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/wall/rshull, -/area/talon_v2/maintenance/wing_port) -"nl" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/turf/simulated/floor/reinforced/airless, -/area/space) -"nn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway) -"nq" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway) -"ns" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/talon_v2/crew_quarters/pilot_room) -"nu" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/talon_v2/crew_quarters/sec_room) -"nw" = ( -/obj/structure/catwalk, -/obj/structure/handrail{ - dir = 4 - }, -/turf/simulated/floor/reinforced/airless, -/area/talon_v2/maintenance/fore_starboard) -"nx" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/item/modular_computer/console/preset/talon{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/engineering) -"nz" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/aux, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/light/small, -/obj/structure/closet/emergsuit_wall{ - dir = 1; - pixel_y = -32 - }, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/fore_port) -"nB" = ( -/obj/machinery/alarm/talon{ - dir = 4; - pixel_x = -22 - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/central_hallway/fore) -"nC" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/red{ - dir = 8 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/atmospherics) -"nD" = ( -/obj/structure/table/woodentable, -/obj/machinery/camera/network/talon{ - dir = 8 - }, -/obj/machinery/recharger, -/turf/simulated/floor/wood, -/area/talon_v2/crew_quarters/eng_room) -"nE" = ( -/obj/structure/table/woodentable, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/item/weapon/paper/talon_guard, -/turf/simulated/floor/carpet, -/area/talon_v2/crew_quarters/sec_room) -"nH" = ( -/obj/machinery/light, -/obj/structure/extinguisher_cabinet{ - dir = 1; - pixel_y = -32 - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/central_hallway/fore) -"nI" = ( -/obj/machinery/power/smes/buildable/offmap_spawn{ - RCon_tag = "Talon Port SMES" - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/plating, -/area/talon_v2/engineering) -"nK" = ( -/obj/structure/closet/walllocker/emerglocker/west, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/armory) -"nL" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/starboard) -"nM" = ( -/obj/machinery/door/firedoor/glass/talon, -/obj/machinery/door/airlock{ - id_tag = "talon_restroom2"; - name = "Unisex Restroom" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/talon_v2/crew_quarters/restrooms) -"nN" = ( -/obj/structure/sign/warning/nosmoking_1{ - pixel_x = 26 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/port) -"nP" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/atmospherics) -"nS" = ( -/obj/machinery/atmospherics/portables_connector/aux, -/obj/effect/floor_decal/industrial/outline, -/obj/machinery/portable_atmospherics/canister/air, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/fore_starboard) -"nW" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/central_hallway/fore) -"oc" = ( -/obj/structure/disposalpipe/segment{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway) -"od" = ( -/turf/simulated/floor/reinforced, -/area/talon_v2/hangar) -"oh" = ( -/turf/simulated/wall/rshull, -/area/talon_v2/crew_quarters/bar) -"ol" = ( -/obj/machinery/door/airlock/glass_external{ - req_one_access = list(301) - }, -/obj/effect/map_helper/airlock/door/ext_door, -/obj/machinery/door/blast/regular/open{ - id = "talon_boat_east" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 4 - }, -/obj/effect/map_helper/airlock/sensor/ext_sensor, -/obj/machinery/airlock_sensor/airlock_exterior/shuttle{ - dir = 4; - pixel_x = 11; - pixel_y = 24; - req_one_access = list(301) - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/talonboat) -"om" = ( +"cA" = ( /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled/techfloor/grid, /area/talon_v2/maintenance/wing_port) -"on" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/wood, -/area/talon_v2/crew_quarters/pilot_room) -"oo" = ( -/obj/machinery/door/firedoor/glass/talon, -/obj/machinery/door/airlock/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway/fore) -"op" = ( -/obj/machinery/alarm/talon{ - dir = 4; - pixel_x = -22 - }, -/turf/simulated/floor/tiled/white, -/area/talon_v2/medical) -"oq" = ( -/obj/structure/sign/warning/airlock{ - pixel_x = 32 - }, -/obj/effect/floor_decal/industrial/warning, -/obj/structure/handrail{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/maintenance/wing_port) -"or" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/refining) -"ow" = ( -/obj/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - dir = 1; - pixel_y = -32 - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/central_hallway/fore) -"ox" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway) -"oz" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/atmospherics) -"oA" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/hangar) -"oC" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/blast/regular/open{ - id = "talon_windows" - }, -/obj/machinery/door/firedoor/glass/talon, -/turf/simulated/floor/plating, -/area/talon_v2/crew_quarters/cap_room) -"oF" = ( -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/white, -/area/talon_v2/medical) -"oG" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/floor_decal/industrial/outline/blue, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/atmospherics) -"oK" = ( -/obj/structure/sign/warning/nosmoking_1{ - pixel_x = -26 - }, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/star_store) -"oN" = ( -/obj/machinery/door/firedoor/glass/talon, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/glass_research{ - name = "Anomaly Storage"; - req_one_access = list(301) - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/anomaly_storage) -"oO" = ( -/obj/structure/closet/emergsuit_wall{ - dir = 1; - pixel_y = -32 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway/star) -"oT" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/aux{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/maintenance/wing_starboard) -"oU" = ( -/obj/machinery/door/firedoor/glass/talon, -/obj/machinery/door/airlock/maintenance/common, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/fore_port) -"oV" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/talon_v2/crew_quarters/med_room) -"oW" = ( -/obj/structure/sink{ - pixel_y = 22 - }, -/obj/structure/mirror{ - pixel_y = 32 - }, -/obj/machinery/button/remote/airlock{ - dir = 8; - id = "talon_restroom2"; - name = "Door Bolts"; - pixel_x = -28; - specialfunctions = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/white, -/area/talon_v2/crew_quarters/restrooms) -"pa" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/maintenance/wing_port) -"pb" = ( -/obj/machinery/camera/network/talon{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/talon_v2/crew_quarters/cap_room) -"pc" = ( -/obj/machinery/washing_machine, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/crew_quarters/restrooms) -"pf" = ( -/obj/effect/floor_decal/industrial/outline/red, -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/phoron/engine_setup, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/port) -"pi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 5 - }, -/obj/structure/closet/emergsuit_wall{ - dir = 1; - pixel_y = -32 - }, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/wing_starboard) -"pk" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/fuel, -/turf/simulated/wall/rshull, -/area/shuttle/talonboat) -"pl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway) -"pn" = ( -/obj/structure/flora/pottedplant/fern, -/obj/machinery/holoposter{ - dir = 1; - pixel_y = 32 - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/central_hallway) -"po" = ( -/obj/machinery/fitness/punching_bag, -/obj/structure/sign/painting/public{ - pixel_x = 30 - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/workroom) -"pp" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/obj/structure/closet/walllocker_double/hydrant/east, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway) -"pr" = ( -/obj/structure/railing/grey{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 6 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/atmospherics) -"pt" = ( -/obj/structure/cable/yellow{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/structure/railing/grey{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/talon_v2/engineering) -"pv" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/alarm/talon{ - pixel_y = 28 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/engineering/star_store) -"pw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/catwalk, -/obj/structure/disposalpipe/segment, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 24 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/talon_v2/engineering) -"px" = ( -/obj/machinery/oxygen_pump{ - dir = 4; - pixel_x = 30 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/carpet/blucarpet, -/area/talon_v2/crew_quarters/cap_room) -"pA" = ( -/obj/structure/disposalpipe/junction/yjunction{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/engineering) -"pB" = ( -/obj/structure/table/standard, -/obj/machinery/alarm/talon{ - dir = 4; - pixel_x = -22 - }, -/obj/item/device/radio/off{ - channels = list("Talon" = 1) - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/crew_quarters/restrooms) -"pC" = ( -/obj/structure/disposalpipe/segment{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet{ - dir = 8; - pixel_x = 30 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway) -"pE" = ( -/obj/structure/catwalk, -/obj/structure/railing/grey, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/atmospherics) -"pG" = ( -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway) -"pH" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/hangar) -"pK" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/aux, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/light/small, -/obj/structure/closet/emergsuit_wall{ - dir = 1; - pixel_y = -32 - }, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/fore_starboard) -"pL" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/sign/department/commander{ - pixel_x = -28 - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/central_hallway/fore) -"pN" = ( -/turf/simulated/floor/carpet, -/area/talon_v2/crew_quarters/pilot_room) -"pQ" = ( -/obj/machinery/light/small, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/atmospherics) -"pR" = ( -/obj/structure/extinguisher_cabinet{ - dir = 1; - pixel_y = -32 - }, -/obj/structure/table/steel, -/obj/item/device/radio/off{ - channels = list("Talon" = 1) - }, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/atmospherics) -"pT" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/engineering) -"pV" = ( -/obj/machinery/atmospherics/binary/pump/high_power/on, -/obj/structure/railing/grey{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/starboard) -"pZ" = ( -/obj/structure/table/rack/shelf/steel, -/obj/random/maintenance/engineering, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/port_store) -"qa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/aft_port) -"qb" = ( -/obj/structure/bed/chair/wood, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/carpet/blucarpet, -/area/talon_v2/crew_quarters/cap_room) -"qc" = ( -/obj/structure/bed/chair/bay/chair, -/obj/machinery/alarm/talon{ - pixel_y = 24 - }, -/turf/simulated/floor/wood, -/area/talon_v2/crew_quarters/bar) -"qe" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/hangar) -"qi" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/camera/network/talon, -/obj/structure/railing/grey{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/port_store) -"qk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/maintenance/wing_port) -"ql" = ( -/obj/structure/hull_corner{ - dir = 4 - }, -/turf/space, -/area/space) -"qm" = ( -/obj/machinery/door/window/brigdoor/eastleft{ - dir = 1; - req_access = list(301) - }, -/obj/machinery/door/window/brigdoor/eastleft{ - dir = 2; - req_access = list(301) - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "talon_brig1"; - name = "Cell Shutters"; - opacity = 0 - }, -/obj/machinery/door/firedoor/glass/talon, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/brig) -"qn" = ( -/obj/structure/hull_corner{ - dir = 8 - }, -/obj/structure/lattice, -/turf/space, -/area/space) -"qo" = ( -/obj/structure/table/rack/steel, -/obj/random/maintenance/engineering, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/star_store) -"qp" = ( -/turf/simulated/wall/shull, -/area/talon_v2/crew_quarters/bar) -"qq" = ( -/obj/structure/closet/walllocker_double/south, -/obj/structure/handrail{ - dir = 1 - }, -/obj/item/weapon/storage/toolbox/mechanical, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/talonboat) -"qr" = ( -/turf/simulated/wall/shull, -/area/talon_v2/crew_quarters/med_room) -"qs" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/glass/talon, -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 1; - req_one_access = list(301) - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway/port) -"qt" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/hangar) -"qu" = ( -/obj/structure/barricade, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/port_store) -"qv" = ( -/obj/structure/table/rack/steel, -/obj/machinery/power/apc/talon{ - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/cable/green, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/armory) -"qw" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 9 - }, -/obj/structure/cable/green, -/obj/machinery/power/apc/talon{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/atmospherics) -"qy" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, -/turf/simulated/floor/reinforced/airless, -/area/space) -"qC" = ( -/obj/machinery/door/firedoor/glass/talon, -/obj/machinery/door/airlock/maintenance/engi{ - name = "Port Eng. Storage"; - req_one_access = list(301) - }, -/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/plating, -/area/talon_v2/engineering/port_store) -"qD" = ( -/obj/structure/table/standard, -/obj/item/weapon/storage/toolbox/electrical, -/obj/item/weapon/pipe_dispenser, -/obj/machinery/light/small, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/engineering/star_store) -"qE" = ( +"cB" = ( /obj/structure/disposalpipe/trunk{ dir = 4 }, @@ -5173,454 +963,178 @@ dir = 4 }, /turf/simulated/floor/wood, -/area/talon_v2/crew_quarters/sec_room) -"qH" = ( -/obj/machinery/door/firedoor/glass/talon, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/mining{ - name = "Refinery"; - req_one_access = list(301) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/refining) -"qI" = ( -/obj/structure/table/woodentable, -/turf/simulated/floor/wood, -/area/talon_v2/crew_quarters/bar) -"qJ" = ( -/obj/machinery/light{ - dir = 1 - }, -/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/techmaint, -/area/talon_v2/central_hallway/port) -"qK" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/effect/catwalk_plated, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/talon_v2/central_hallway/star) -"qL" = ( -/obj/structure/closet/walllocker_double/south, -/obj/machinery/light, -/obj/item/weapon/extinguisher, -/obj/item/stack/cable_coil/green, -/obj/item/stack/cable_coil/green, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ - dir = 8 - }, -/obj/effect/map_helper/airlock/atmos/chamber_pump, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/talonboat) -"qN" = ( -/turf/simulated/wall/shull{ - can_open = 1 - }, -/area/talon_v2/workroom) -"qO" = ( -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc/talon{ - dir = 1; - name = "north bump"; - pixel_y = 28 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/brig) -"qP" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/random/multiple/corp_crate/talon_cargo, +/area/talon_v2/crew_quarters/cap_room) +"cC" = ( /obj/structure/railing/grey{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/maintenance/wing_port) -"qQ" = ( -/obj/structure/sign/warning/moving_parts{ - pixel_y = -32 - }, -/obj/machinery/conveyor{ - dir = 4; - id = "talonrefinery" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/refining) -"qU" = ( -/obj/machinery/power/apc/talon{ - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/handrail{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/bridge) -"qV" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/maintenance/wing_port) -"qW" = ( -/obj/machinery/atmospherics/omni/atmos_filter{ - name = "CO2 Filter"; - tag_east = 2; - tag_north = 1; - tag_south = 5 - }, -/obj/effect/catwalk_plated/dark, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/atmospherics) -"qX" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4 - }, -/turf/simulated/floor/reinforced/airless, -/area/space) -"rg" = ( -/obj/machinery/door/firedoor/glass/talon, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway/port) -"rh" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/closet/walllocker_double/hydrant/west, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/anomaly_storage) -"ri" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/maintenance/wing_port) -"rj" = ( -/obj/machinery/holoposter{ - pixel_y = -32 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway/star) -"rk" = ( -/obj/machinery/atmospherics/pipe/simple/visible/blue{ - dir = 6 - }, -/obj/structure/closet/emergsuit_wall{ - pixel_y = 32 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/atmospherics) -"rl" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/turf/simulated/floor/reinforced/airless, -/area/talon_v2/engineering/starboard) -"rm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/aux, -/obj/machinery/door/firedoor/glass/talon, -/obj/machinery/door/airlock/maintenance/common, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/wing_port) -"rq" = ( -/obj/structure/bed, -/obj/item/weapon/bedsheet/mime, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/brig) -"rt" = ( -/obj/effect/floor_decal/emblem/talon_big, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/central_hallway/fore) -"ru" = ( -/obj/machinery/door/firedoor/glass/talon, -/obj/machinery/door/airlock/glass, -/obj/structure/disposalpipe/segment{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway/fore) -"rv" = ( -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/workroom) -"rw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/power/apc/talon{ - dir = 1; - name = "north bump"; - pixel_y = 28 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/aft_port) -"rx" = ( -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/fore_starboard) -"rz" = ( -/obj/structure/closet/crate/hydroponics, -/obj/item/stack/material/algae, -/obj/item/stack/material/algae, -/obj/item/stack/material/algae, -/obj/item/stack/material/algae, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/atmospherics) -"rB" = ( -/obj/structure/railing/grey, -/obj/effect/floor_decal/industrial/outline/red, -/obj/machinery/portable_atmospherics/canister/empty/phoron, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/port_store) -"rC" = ( -/obj/structure/table/standard, -/obj/item/weapon/storage/box/handcuffs, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/brig) -"rF" = ( -/obj/machinery/suit_cycler/vintage/tcrew, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/secure_storage) -"rG" = ( -/obj/structure/table/standard, -/obj/item/weapon/storage/firstaid/regular, -/obj/item/weapon/storage/firstaid/adv{ - pixel_x = 2; - pixel_y = 5 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/closet/walllocker_double/medical/south, -/turf/simulated/floor/tiled/white, -/area/talon_v2/medical) -"rI" = ( -/obj/machinery/door/firedoor/glass/talon, -/obj/machinery/door/airlock/glass{ - name = "Hangar Bay"; - req_one_access = list(301) - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/hangar) -"rJ" = ( -/obj/machinery/firealarm{ - layer = 3.3; - pixel_y = 26 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/machinery/camera/network/talon, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/port_store) -"rL" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/aft_starboard) -"rP" = ( -/obj/effect/floor_decal/industrial/outline/red, -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/structure/railing/grey, -/obj/machinery/portable_atmospherics/canister/phoron/engine_setup, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/port) -"rQ" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/talon_v2/crew_quarters/restrooms) -"rR" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/alarm/talon{ - dir = 4; - pixel_x = -22 - }, -/obj/random/multiple/corp_crate/talon_cargo, -/obj/structure/railing/grey, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/maintenance/wing_starboard) -"rS" = ( -/obj/effect/floor_decal/industrial/outline/red, -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/structure/railing/grey, -/obj/machinery/portable_atmospherics/canister/phoron/engine_setup, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/starboard) -"rT" = ( -/obj/machinery/door/firedoor/glass/talon, -/obj/machinery/door/airlock/engineering{ - name = "Talon Starboard Engines"; - req_one_access = list(301) - }, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/starboard) -"rU" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway) -"rW" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/aft_port) -"sc" = ( -/obj/structure/catwalk, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 26 - }, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/port_store) -"se" = ( -/obj/structure/closet/crate/engineering, -/obj/fiftyspawner/cardboard, -/obj/fiftyspawner/floor, -/obj/fiftyspawner/glass, -/obj/fiftyspawner/plastic, -/obj/fiftyspawner/steel, -/obj/fiftyspawner/wood, -/obj/item/stack/material/plasteel{ - amount = 30 - }, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/port_store) -"sf" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/hangar) -"sh" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/maintenance/wing_starboard) -"sl" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/plating, /area/talon_v2/engineering/star_store) -"sn" = ( +"cG" = ( +/obj/machinery/door/firedoor/glass/talon, +/obj/machinery/door/airlock/security{ + id_tag = "talon_secdoor"; + name = "Guard's Cabin"; + req_one_access = list(301) + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/crew_quarters/sec_room) +"cH" = ( +/obj/machinery/fitness/punching_bag, +/obj/structure/sign/painting/public{ + pixel_x = 30 + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/workroom) +"cK" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/firedoor/glass/talon, +/obj/machinery/door/blast/regular/open{ + id = "talon_boat_cockpit" + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/shuttle/talonboat) +"cL" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/railing/grey{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/port_store) +"cN" = ( +/obj/machinery/door/firedoor/glass/talon, +/obj/machinery/door/airlock/maintenance/sec{ + id_tag = "talon_secdoor"; + req_one_access = list(301) + }, +/turf/simulated/floor/plating, +/area/talon_v2/crew_quarters/sec_room) +"cP" = ( +/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/talon_v2/engineering/starboard) +"cU" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/railing/grey{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/starboard) +"cV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/closet/walllocker_double/east, +/obj/item/weapon/cell/device/weapon, +/obj/item/weapon/cell/device/weapon, +/obj/item/weapon/cell/device, +/obj/item/weapon/cell/device, +/obj/random/maintenance/engineering, +/obj/random/maintenance/engineering, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/talon_v2/engineering) +"cX" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway/star) +"cZ" = ( +/obj/machinery/door/firedoor/glass/talon, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 1 + }, +/obj/machinery/door/airlock{ + name = "Observation Room" + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/crew_quarters/meditation) +"db" = ( +/turf/simulated/wall/shull, +/area/talon_v2/brig) +"dd" = ( +/obj/structure/sign/warning/airlock{ + pixel_x = 32 + }, +/obj/structure/handrail, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/maintenance/wing_starboard) +"de" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/refining) +"df" = ( +/obj/effect/landmark/start{ + name = "Talon Miner" + }, +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/mine_room) +"di" = ( +/turf/simulated/floor/carpet, +/area/talon_v2/crew_quarters/mine_room) +"dj" = ( /obj/machinery/door/firedoor/glass/talon, /obj/machinery/door/airlock/command{ id_tag = "talon_capdoor"; @@ -5643,856 +1157,147 @@ }, /turf/simulated/floor/tiled/techfloor, /area/talon_v2/crew_quarters/cap_room) -"so" = ( -/obj/item/weapon/storage/dicecup/loaded{ - pixel_x = 7; - pixel_y = 11 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/floor_decal/corner/black/diagonal, -/obj/structure/table/marble, -/obj/item/weapon/deck/cards{ - pixel_x = 3 - }, -/turf/simulated/floor/tiled/white, -/area/talon_v2/crew_quarters/bar) -"ss" = ( -/obj/structure/sign/periodic{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/workroom) -"sv" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/weapon/gun/energy/gun/burst, -/obj/item/weapon/cell/device/weapon{ - pixel_x = -5; - pixel_y = 2 - }, -/obj/item/weapon/cell/device/weapon, -/obj/item/clothing/accessory/holster/waist, -/obj/machinery/light_switch{ - dir = 1; - pixel_y = -26 - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/armory) -"sw" = ( -/obj/machinery/power/apc/talon{ - dir = 8; - name = "west bump"; - pixel_x = -28 - }, +"dl" = ( /obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/crew_quarters/restrooms) -"sx" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/closet/emergsuit_wall{ - dir = 4; - pixel_x = 32 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/maintenance/wing_port) -"sz" = ( -/obj/machinery/door/blast/regular/open{ - dir = 4; - id = "talon_bridge_shields" - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/dust, -/turf/simulated/floor/reinforced/airless, -/area/talon_v2/bridge) -"sC" = ( -/obj/structure/closet/walllocker_double/hydrant/west, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/engineering/star_store) -"sD" = ( -/obj/structure/disposalpipe/segment{ - dir = 1 - }, -/obj/structure/sign/directions/bar{ - dir = 1; - pixel_x = -32; - pixel_y = -3 - }, -/obj/structure/sign/directions/bridge{ - dir = 1; - pixel_x = -32; - pixel_y = 3 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway) -"sE" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" + d1 = 2; + d2 = 4; + icon_state = "2-4" }, /obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, /turf/simulated/floor/plating, -/area/talon_v2/engineering/port_store) -"sF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/junction{ - dir = 2; - icon_state = "pipe-j2" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway/fore) -"sI" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/fore_starboard) -"sJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/power/apc/talon{ - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway) -"sK" = ( +/area/talon_v2/engineering/atmospherics) +"dn" = ( +/obj/machinery/door/firedoor/glass/talon, /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/structure/window/reinforced{ dir = 1 }, /obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "talon_brig2"; - name = "Cell Shutters"; - opacity = 0 - }, -/obj/machinery/door/firedoor/glass/talon, -/turf/simulated/floor/plating, -/area/talon_v2/brig) -"sL" = ( -/obj/machinery/power/apc/talon{ - dir = 1; - name = "north bump"; - pixel_y = 28 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/starboard) -"sM" = ( -/obj/effect/landmark/map_data/talon, -/turf/space, -/area/space) -"sT" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/random/multiple/corp_crate/talon_cargo, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/maintenance/wing_port) -"sV" = ( -/obj/structure/catwalk, /obj/structure/cable/green{ d1 = 4; d2 = 8; icon_state = "4-8" }, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/fore_starboard) -"sZ" = ( -/obj/structure/catwalk, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/aft_starboard) -"ta" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/anomaly_storage) -"tb" = ( -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/central_hallway/fore) -"tc" = ( -/obj/machinery/door/firedoor/glass/talon, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/central_hallway/fore) -"td" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/maintenance/wing_starboard) -"te" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/glass/talon, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/engineering{ - id_tag = "talon_engdoor"; - name = "Engineer's Cabin"; - req_one_access = list(301) - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/crew_quarters/eng_room) -"tf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/talon_v2/medical) -"tg" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/aft_starboard) -"ti" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 6 - }, -/obj/structure/sign/warning/nosmoking_1{ - pixel_x = -26 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/atmospherics) -"tj" = ( -/obj/structure/disposalpipe/segment{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway/fore) -"tk" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway) -"tl" = ( -/obj/effect/floor_decal/emblem/talon_big{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/central_hallway/fore) -"tm" = ( -/obj/structure/lattice, -/turf/space, -/area/space) -"tn" = ( -/obj/structure/table/rack/shelf/steel, -/obj/machinery/recharger/wallcharger{ - pixel_x = 5; - pixel_y = 24 - }, -/obj/item/weapon/storage/backpack/dufflebag/talon, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/armory) -"to" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/sign/directions/medical{ - dir = 4; - pixel_x = 32; - pixel_y = -3 - }, -/obj/structure/sign/directions/engineering{ - pixel_x = 32; - pixel_y = 3 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway) -"tp" = ( -/obj/machinery/atmospherics/pipe/simple/visible, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/atmospherics) -"tu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/talon_v2/medical) -"tw" = ( -/obj/machinery/door/firedoor/glass/talon, -/obj/machinery/door/airlock/medical{ - id_tag = "talon_meddoor"; - name = "Doctor's Cabin"; - req_one_access = list(301) - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/crew_quarters/med_room) -"tx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/sign/directions/engineering{ - pixel_x = 32; - pixel_y = -6 - }, -/obj/structure/sign/directions/cargo{ - dir = 4; - pixel_x = 32 - }, -/obj/structure/sign/directions/science/xenoarch{ - dir = 4; - pixel_x = 32; - pixel_y = 6 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway) -"ty" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/maintenance/wing_port) -"tz" = ( -/obj/structure/closet/secure_closet/talon_pilot, -/obj/item/device/radio/off{ - channels = list("Talon" = 1) - }, -/turf/simulated/floor/wood, -/area/talon_v2/crew_quarters/pilot_room) -"tA" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/closet/walllocker_double/hydrant/east, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/armory) -"tB" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/closet/walllocker_double/east, -/obj/item/weapon/storage/toolbox/electrical, -/turf/simulated/floor/plating, -/area/talon_v2/engineering) -"tC" = ( -/turf/simulated/wall/rshull, -/area/talon_v2/maintenance/aft_port) -"tD" = ( -/obj/structure/table/rack/shelf/steel, -/obj/random/maintenance/cargo, -/obj/random/maintenance/cargo, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/gen_store) -"tE" = ( -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - frequency = 1380; - id_tag = "talonboat_docker"; - pixel_y = 24 - }, -/obj/machinery/computer/shuttle_control/explore/talonboat{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/talonboat) -"tJ" = ( -/obj/structure/railing/grey{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/table/steel, -/obj/machinery/recharger, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/refining) -"tK" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway) -"tM" = ( -/obj/structure/mopbucket, -/obj/item/weapon/mop, -/obj/item/weapon/reagent_containers/glass/bucket, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/engineering/star_store) -"tQ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/star_store) -"tR" = ( -/obj/structure/table/marble, -/obj/machinery/chemical_dispenser/bar_soft/full{ - dir = 8 - }, -/obj/effect/floor_decal/corner/black/diagonal, -/turf/simulated/floor/tiled/white, -/area/talon_v2/crew_quarters/bar) -"tU" = ( -/obj/machinery/door/firedoor/glass/talon, -/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/techmaint, -/area/talon_v2/central_hallway/port) -"tX" = ( -/obj/structure/railing/grey{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/refining) -"tY" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/disposal/wall{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/brig) -"tZ" = ( -/obj/structure/hull_corner/long_horiz{ - dir = 5 - }, -/turf/space, -/area/space) -"ub" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 10 - }, -/turf/simulated/wall/rshull, -/area/shuttle/talonboat) -"uc" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/closet/emergsuit_wall{ - dir = 8; - pixel_x = -32 - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/maintenance/wing_starboard) -"ud" = ( -/obj/effect/map_helper/airlock/atmos/chamber_pump, -/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux, -/obj/machinery/airlock_sensor{ - pixel_y = 28; - req_one_access = list(301) - }, -/obj/effect/map_helper/airlock/sensor/chamber_sensor, -/obj/structure/handrail, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/maintenance/wing_starboard) -"uf" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 26 - }, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/aft_port) -"uh" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/talon_v2/medical) -"ui" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/weapon/tank/jetpack/carbondioxide, -/obj/item/weapon/tank/jetpack/carbondioxide, -/obj/item/weapon/tank/jetpack/carbondioxide, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/secure_storage) -"uk" = ( -/obj/machinery/power/apc/talon{ - dir = 1; - name = "north bump"; - pixel_y = 28 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/talon_v2/crew_quarters/eng_room) -"ul" = ( -/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/techmaint, -/area/talon_v2/central_hallway/port) -"um" = ( -/obj/machinery/door/firedoor/glass/talon, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, /obj/machinery/door/blast/regular/open{ dir = 4; id = "talon_bridge_shields" }, /turf/simulated/floor/plating, /area/talon_v2/bridge) -"up" = ( -/obj/machinery/power/pointdefense{ - id_tag = "talon_pd" - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 6 - }, -/turf/simulated/floor/reinforced/airless, -/area/space) -"uv" = ( -/obj/structure/barricade, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/star_store) -"uw" = ( -/obj/structure/flora/pottedplant/tall, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/crew_quarters/restrooms) -"ux" = ( -/obj/structure/closet/secure_closet/personal/cabinet{ - locked = 0 - }, -/turf/simulated/floor/wood, -/area/talon_v2/crew_quarters/med_room) -"uz" = ( -/obj/structure/catwalk, -/obj/structure/railing/grey{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/fore_starboard) -"uA" = ( -/obj/machinery/power/apc/talon{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/wood, -/area/talon_v2/crew_quarters/pilot_room) -"uB" = ( -/obj/structure/bed/chair/bay/chair{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/talon_v2/crew_quarters/bar) -"uF" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/clothing/suit/space/void/refurb/talon, -/obj/item/clothing/head/helmet/space/void/refurb/talon, -/obj/machinery/camera/network/talon, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/secure_storage) -"uH" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/portable_atmospherics/canister/empty, -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, +"dp" = ( /obj/structure/railing/grey{ dir = 1 }, +/obj/machinery/oxygen_pump{ + dir = 8; + pixel_x = -30 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/handrail{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/bridge) +"dq" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible, /turf/simulated/floor/plating, /area/talon_v2/engineering/atmospherics) -"uI" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/starboard) -"uJ" = ( -/obj/structure/sign/warning/airlock{ - pixel_x = 32 - }, -/obj/structure/handrail, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/maintenance/wing_starboard) -"uK" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4 - }, -/turf/simulated/floor/reinforced/airless, -/area/space) -"uL" = ( -/obj/structure/hull_corner/long_vert{ - dir = 5 - }, -/turf/space, -/area/space) -"uM" = ( -/obj/structure/disposalpipe/segment{ - dir = 1 - }, -/obj/structure/closet/emergsuit_wall{ - dir = 4; - pixel_x = 32 - }, +"dr" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway) -"uO" = ( -/obj/structure/flora/pottedplant/shoot, -/turf/simulated/floor/wood, -/area/talon_v2/crew_quarters/cap_room) -"uQ" = ( -/obj/structure/table/rack/shelf/steel, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/star_store) -"uR" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/railing/grey, -/obj/structure/railing/grey{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/talon_v2/engineering) -"uS" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/sign/department/biblio{ - pixel_y = -32 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway/port) -"uT" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/maintenance/wing_port) -"uU" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/talonboat) -"uV" = ( -/obj/structure/closet/walllocker_double/south, -/obj/structure/handrail{ - dir = 1 - }, -/obj/item/weapon/storage/toolbox/emergency, -/obj/machinery/atmospherics/pipe/manifold/hidden/aux, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/talonboat) -"uW" = ( -/obj/structure/table/rack/steel, -/obj/item/clothing/suit/space/void/refurb/talon, -/obj/item/clothing/head/helmet/space/void/refurb/talon, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ +/turf/simulated/wall/rshull, +/area/talon_v2/maintenance/aft_starboard) +"dt" = ( +/obj/machinery/door/firedoor/glass/talon, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ dir = 8 }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/secure_storage) -"uZ" = ( -/obj/structure/closet/wardrobe/black{ - starts_with = list(/obj/item/clothing/under/color/black = 4, /obj/item/clothing/accessory/storage/black_vest = 4, /obj/item/clothing/accessory/storage/black_drop_pouches = 4, /obj/item/clothing/gloves/black = 4, /obj/item/clothing/head/soft/black = 4, /obj/item/clothing/mask/balaclava = 4, /obj/item/clothing/mask/bandana = 4, /obj/item/clothing/mask/gas/commando = 4, /obj/item/weapon/storage/backpack/messenger/black = 4, /obj/item/weapon/storage/backpack/dufflebag = 4, /obj/item/clothing/shoes/black = 4, /obj/item/clothing/shoes/boots/duty = 4) +/obj/structure/window/reinforced, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/crew_quarters/restrooms) -"va" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/machinery/door/blast/regular/open{ + dir = 2; + id = "talon_bridge_shields" + }, +/turf/simulated/floor/plating, +/area/talon_v2/bridge) +"dv" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/junction, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/talon_v2/central_hallway/fore) +"dw" = ( +/obj/machinery/vending/wallmed1{ + emagged = 1; + pixel_y = 32; + shut_up = 0 + }, +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/bar) +"dA" = ( +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway/fore) +"dB" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/turf/simulated/wall/rshull, +/area/talon_v2/engineering/port) +"dC" = ( +/obj/machinery/alarm/talon{ + dir = 1; + pixel_y = -22 + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/bridge) +"dD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/department/eng{ - pixel_y = -32 + dir = 10 }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/bridge) +"dH" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; icon_state = "4-8" }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway) -"vb" = ( +/turf/simulated/wall/rshull, +/area/talon_v2/engineering/star_store) +"dI" = ( +/obj/machinery/light/small, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = 2; + pixel_y = -28 + }, /obj/structure/cable/yellow{ d2 = 8; icon_state = "0-8" @@ -6502,1631 +1307,54 @@ }, /turf/simulated/floor/plating, /area/talon_v2/engineering) -"vc" = ( -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +"dJ" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "talonrefinery" }, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/aft_starboard) -"vd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/starboard) -"ve" = ( -/obj/machinery/suit_cycler/vintage/tmedic, -/turf/simulated/floor/wood, -/area/talon_v2/crew_quarters/med_room) -"vh" = ( -/obj/machinery/atmospherics/binary/pump/high_power/on, -/obj/structure/railing/grey{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/port) -"vi" = ( -/obj/effect/floor_decal/industrial/outline/red, -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister/phoron/engine_setup, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/port) -"vp" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/effect/catwalk_plated, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/talon_v2/brig) -"vs" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/talon_v2/medical) -"vt" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/workroom) -"vw" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/machinery/holoposter{ - dir = 4; +/obj/structure/sign/warning/moving_parts{ pixel_x = 32 }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway) -"vx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/techmaint, +/turf/simulated/floor/tiled/techfloor/grid, /area/talon_v2/refining) -"vy" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/handrail, -/obj/structure/closet/autolok_wall{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/talonboat) -"vz" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/obj/structure/railing/grey{ - dir = 8 - }, -/obj/structure/table/steel, -/obj/random/maintenance/engineering, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/engineering) -"vA" = ( -/obj/structure/bed/chair/bay/chair{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/light, -/obj/machinery/alarm/talon{ - dir = 1; - pixel_y = -25 - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/talonboat) -"vB" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/catwalk, -/obj/structure/extinguisher_cabinet{ - dir = 1; - pixel_y = -32 - }, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/port) -"vC" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/catwalk, -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/aft_port) -"vE" = ( -/obj/structure/railing/grey{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/red, -/obj/machinery/portable_atmospherics/canister/empty/phoron, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/star_store) -"vF" = ( -/obj/effect/landmark/talon, -/obj/structure/handrail, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/central_hallway) -"vG" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway/star) -"vH" = ( -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc/talon{ - dir = 1; - name = "north bump"; - pixel_y = 28 - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/anomaly_storage) -"vJ" = ( -/obj/machinery/door/firedoor/glass/talon, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway/star) -"vL" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/aft_starboard) -"vP" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/visible, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/atmospherics) -"vR" = ( -/obj/structure/handrail{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/maintenance/wing_port) -"vU" = ( -/obj/machinery/door/firedoor/glass/talon, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/medical{ - id_tag = "talon_meddoor"; - name = "Doctor's Cabin"; - req_one_access = list(301) - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/crew_quarters/med_room) -"vV" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/crate/secure/phoron{ - req_one_access = list(301) - }, -/obj/item/weapon/tank/phoron/pressurized{ - pixel_x = -3 - }, -/obj/item/weapon/tank/phoron/pressurized{ - pixel_x = 3 - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/talonboat) -"vW" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/maintenance/wing_port) -"vY" = ( -/obj/structure/table/steel, -/obj/item/weapon/pickaxe/drill, -/obj/machinery/button/remote/blast_door{ - id = "talon_boat_cockpit"; - pixel_y = 28 - }, -/obj/item/device/radio/off{ - channels = list("Talon" = 1) - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/talonboat) -"vZ" = ( -/obj/machinery/door/firedoor/glass/talon, -/obj/machinery/door/airlock/medical{ - req_one_access = list(301) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/medical) -"wa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/bed/chair/bay/chair, -/turf/simulated/floor/carpet, -/area/talon_v2/crew_quarters/sec_room) -"wd" = ( -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/fore_port) -"we" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/reinforced/airless, -/area/space) -"wg" = ( -/obj/structure/sign/directions/engineering{ - pixel_x = 32; - pixel_y = 3 - }, -/obj/structure/sign/directions/medical{ - pixel_x = 32; - pixel_y = -3 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway) -"wh" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/light, -/obj/structure/sign/department/armory{ - pixel_y = -32 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway/port) -"wi" = ( -/turf/simulated/wall/rshull, -/area/talon_v2/maintenance/fore_port) -"wj" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/turf/simulated/wall/rshull, -/area/talon_v2/engineering/starboard) -"wm" = ( -/obj/structure/railing/grey{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/bridge) -"wo" = ( -/obj/machinery/suit_cycler/vintage/tcaptain, -/turf/simulated/floor/wood, -/area/talon_v2/crew_quarters/cap_room) -"wr" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/closet/emergsuit_wall{ - dir = 8; - pixel_x = -32 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/maintenance/wing_starboard) -"ws" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/warning, -/obj/structure/handrail{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/maintenance/wing_port) -"wu" = ( -/obj/structure/catwalk, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/talon_v2/engineering) -"wx" = ( -/obj/structure/bed/chair/bay/chair{ - dir = 1 - }, -/turf/simulated/floor/carpet, -/area/talon_v2/crew_quarters/eng_room) -"wy" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/catwalk, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/talon_v2/engineering) -"wz" = ( -/obj/machinery/atmospherics/pipe/manifold4w/visible/yellow, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/port) -"wB" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/maintenance/wing_port) -"wF" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/random/multiple/corp_crate/talon_cargo, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/maintenance/wing_starboard) -"wH" = ( -/obj/machinery/pointdefense_control{ - id_tag = "talon_pd" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/engineering) -"wM" = ( -/obj/structure/closet/walllocker/emerglocker/west, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/secure_storage) -"wN" = ( -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/fore_starboard) -"wO" = ( -/obj/structure/bed/chair/bay/comfy/brown{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/bridge) -"wP" = ( -/obj/structure/catwalk, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/reinforced/airless, -/area/talon_v2/maintenance/fore_port) -"wS" = ( -/obj/structure/catwalk, -/obj/structure/railing/grey{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/atmospherics) -"wU" = ( -/obj/machinery/door/firedoor/glass/talon, -/obj/machinery/door/airlock/maintenance/sec{ - id_tag = "talon_secdoor"; - req_one_access = list(301) - }, -/turf/simulated/floor/plating, -/area/talon_v2/crew_quarters/sec_room) -"wV" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/flora/pottedplant/mysterious, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/central_hallway/fore) -"wW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor/glass/talon, -/obj/machinery/door/airlock/engineeringatmos{ - name = "Talon Atmospherics"; - req_one_access = list(301) - }, -/obj/structure/sign/warning/nosmoking_1{ - pixel_x = 26 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/engineering/atmospherics) -"wX" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/aux{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/talonboat) -"wZ" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/engineering/star_store) -"xb" = ( -/obj/structure/table/woodentable, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/item/weapon/paper/dockingcodes, -/turf/simulated/floor/carpet/blucarpet, -/area/talon_v2/crew_quarters/cap_room) -"xd" = ( -/obj/structure/bed/chair/bay/chair, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/wood, -/area/talon_v2/crew_quarters/meditation) -"xf" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/sign/directions/security/armory{ - dir = 10; - pixel_x = -32; - pixel_y = -6 - }, -/obj/structure/sign/directions/security{ - dir = 1; - pixel_x = -32; - pixel_y = 6 - }, -/obj/structure/sign/directions/security/brig{ - dir = 1; - pixel_x = -32 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway) -"xh" = ( -/obj/machinery/computer/ship/helm{ - req_one_access = list(301) - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/camera/network/talon, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/bridge) -"xi" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/random/multiple/corp_crate/talon_cargo, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/maintenance/wing_starboard) -"xk" = ( -/obj/structure/extinguisher_cabinet{ - dir = 1; - pixel_y = -32 - }, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/port_store) -"xm" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/sign/department/bar{ - pixel_x = 29 - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/central_hallway/fore) -"xq" = ( -/obj/effect/floor_decal/corner/black/diagonal, -/obj/structure/table/marble, -/turf/simulated/floor/tiled/white, -/area/talon_v2/crew_quarters/bar) -"xr" = ( -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/aft_starboard) -"xt" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway/port) -"xu" = ( -/obj/structure/railing/grey, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/bridge) -"xv" = ( -/obj/machinery/alarm/talon{ - dir = 8; - pixel_x = 22 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/carpet/blucarpet, -/area/talon_v2/crew_quarters/cap_room) -"xw" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/disposal/wall{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/workroom) -"xx" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 6 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/atmospherics) -"xB" = ( -/obj/machinery/power/pointdefense{ - id_tag = "talon_pd" - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 5 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/reinforced/airless, -/area/space) -"xE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/handrail, -/obj/machinery/firealarm{ - layer = 3.3; - pixel_y = 26 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/talonboat) -"xH" = ( -/turf/simulated/wall/rshull, -/area/talon_v2/engineering/port_store) -"xJ" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/closet/emergsuit_wall{ - pixel_y = 32 - }, -/turf/simulated/floor/wood, -/area/talon_v2/crew_quarters/eng_room) -"xL" = ( -/obj/machinery/alarm/talon{ - dir = 8; - pixel_x = 22 - }, -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/fore_port) -"xM" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/blast/regular/open{ - dir = 4; - id = "talon_quietroom" - }, -/turf/simulated/floor/plating, -/area/talon_v2/crew_quarters/meditation) -"xN" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/talon_v2/crew_quarters/sec_room) -"xP" = ( -/obj/structure/catwalk, -/obj/structure/barricade, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/aft_starboard) -"xQ" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/holoposter{ - dir = 1; - pixel_y = 32 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway/star) -"xR" = ( -/obj/machinery/alarm/talon{ - dir = 1; - pixel_y = -25 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway/star) -"xW" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/plating, -/area/talon_v2/engineering) -"xX" = ( -/obj/machinery/door/blast/regular{ - dir = 4; - id = "talon_cargo_star"; - name = "Cargo Loading Hatch" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/maintenance/wing_starboard) -"xZ" = ( -/obj/structure/bookcase/manuals/xenoarchaeology, -/obj/structure/closet/emergsuit_wall{ - dir = 4; - pixel_x = 32 - }, -/turf/simulated/floor/wood, -/area/talon_v2/crew_quarters/meditation) -"ya" = ( -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/star_store) -"yc" = ( -/obj/machinery/light/small, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/atmospherics) -"yd" = ( -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -24 - }, -/turf/simulated/floor/wood, -/area/talon_v2/crew_quarters/sec_room) -"yf" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/maintenance/wing_starboard) -"yg" = ( -/obj/machinery/door/firedoor/glass/talon, -/obj/machinery/door/airlock/maintenance/common, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/aft_port) -"yh" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/holoposter{ - pixel_y = -32 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway) -"yj" = ( -/obj/machinery/door/firedoor/glass/talon, -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 1; - req_one_access = list(301) - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway/star) -"ym" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/effect/catwalk_plated, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/department/medbay{ - pixel_y = 32 - }, -/turf/simulated/floor/plating, -/area/talon_v2/central_hallway/star) -"yo" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/catwalk, -/obj/structure/closet/walllocker_double/west, -/obj/item/weapon/cell/apc, -/obj/item/weapon/cell/apc, -/obj/random/maintenance/engineering, -/obj/random/maintenance/engineering, -/obj/item/device/radio/off{ - channels = list("Talon" = 1) - }, -/obj/item/clothing/suit/radiation, -/obj/item/clothing/head/radiation, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/plating, -/area/talon_v2/engineering) -"yp" = ( -/obj/item/modular_computer/console/preset/talon{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/brig) -"yq" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/atmospherics) -"yr" = ( -/obj/effect/overmap/visitable/ship/talon, -/turf/space, -/area/space) -"yu" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/wall/rshull, -/area/talon_v2/maintenance/fore_starboard) -"yv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 10 - }, -/obj/structure/handrail, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/maintenance/fore_starboard) -"yw" = ( -/obj/structure/catwalk, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/reinforced/airless, -/area/talon_v2/maintenance/wing_port) -"yx" = ( -/obj/machinery/door/firedoor/glass/talon, -/obj/machinery/door/airlock/maintenance/common, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/aft_starboard) -"yA" = ( -/obj/structure/bed/chair/bay/chair{ - dir = 1 - }, -/turf/simulated/floor/carpet/blucarpet, -/area/talon_v2/crew_quarters/cap_room) -"yC" = ( -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/maintenance/wing_starboard) -"yD" = ( -/obj/machinery/power/apc/talon{ - dir = 1; - name = "north bump"; - pixel_y = 28 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/port) -"yF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/atmospherics) -"yJ" = ( -/obj/machinery/door/firedoor/glass/talon, -/obj/machinery/door/airlock/maintenance/common, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/wing_port) -"yN" = ( -/obj/structure/trash_pile, -/obj/machinery/camera/network/talon, -/obj/structure/railing/grey{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/star_store) -"yO" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/table/rack/steel, -/obj/random/maintenance/engineering, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/port_store) -"yP" = ( -/obj/machinery/vending/food{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/talon_v2/crew_quarters/bar) -"yR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/sign/directions/security/armory{ - pixel_x = -32 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway) -"yU" = ( -/obj/structure/table/woodentable, -/obj/item/modular_computer/laptop/preset/custom_loadout/standard/talon/engineer, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/carpet, -/area/talon_v2/crew_quarters/eng_room) -"yV" = ( -/obj/machinery/door/firedoor/glass/talon, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/talon_v2/hangar) -"yW" = ( -/turf/simulated/wall/shull{ - can_open = 1 - }, -/area/talon_v2/engineering/atmospherics) -"yX" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/engineering/star_store) -"yY" = ( -/obj/structure/railing/grey{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/red, -/obj/machinery/portable_atmospherics/canister/empty/phoron, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/port_store) -"yZ" = ( -/obj/structure/closet/crate, -/obj/structure/railing/grey{ - dir = 1 - }, -/obj/machinery/camera/network/talon{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/refining) -"zd" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway/star) -"zj" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/camera/network/talon, -/obj/random/multiple/corp_crate/talon_cargo, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/maintenance/wing_starboard) -"zm" = ( -/turf/simulated/wall/rshull, -/area/talon_v2/engineering/starboard) -"zn" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/closet/walllocker_double/hydrant/east, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/maintenance/wing_port) -"zo" = ( -/obj/machinery/media/jukebox, -/obj/machinery/light, -/turf/simulated/floor/wood, -/area/talon_v2/crew_quarters/bar) -"zq" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/wall/rshull, -/area/talon_v2/maintenance/fore_port) -"zs" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/firedoor/glass/talon, -/obj/machinery/door/airlock/engineering{ - name = "Talon Port Engines & Spare Fuel"; - req_one_access = list(301) - }, -/obj/structure/sign/warning/nosmoking_1{ - pixel_x = -26 - }, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/port) -"zu" = ( -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/crew_quarters/restrooms) -"zv" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/weapon/tank/oxygen, -/obj/item/weapon/tank/oxygen, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/secure_storage) -"zw" = ( -/obj/effect/floor_decal/emblem/talon_big{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/central_hallway/fore) -"zy" = ( -/obj/structure/closet/emergsuit_wall{ - pixel_y = 32 - }, -/turf/simulated/floor/wood, -/area/talon_v2/crew_quarters/med_room) -"zz" = ( -/obj/structure/table/rack/shelf/steel, -/obj/random/maintenance/cargo, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/random/maintenance/cargo, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/gen_store) -"zB" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/clothing/head/helmet/space/void/refurb/talon, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/secure_storage) -"zC" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/aux{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/talonboat) -"zF" = ( -/obj/structure/catwalk, -/obj/structure/handrail{ - dir = 4 - }, -/turf/simulated/floor/reinforced/airless, -/area/talon_v2/maintenance/wing_starboard) -"zH" = ( -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/brig) -"zI" = ( -/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 = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/maintenance/wing_starboard) -"zJ" = ( -/obj/machinery/vending/tool{ - req_log_access = 301 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/engineering/star_store) -"zK" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/talon_v2/crew_quarters/meditation) -"zL" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/effect/floor_decal/industrial/outline, -/obj/machinery/portable_atmospherics/powered/pump/filled, -/obj/structure/railing/grey{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/atmospherics) -"zM" = ( -/obj/machinery/door/window/brigdoor/eastright{ - req_access = list(); - req_one_access = list(301) - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/port) -"zQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/wood, -/area/talon_v2/crew_quarters/sec_room) -"zT" = ( -/obj/machinery/airlock_sensor{ - dir = 8; - pixel_x = 28; - pixel_y = 28; - req_one_access = list(301) - }, -/obj/effect/map_helper/airlock/sensor/ext_sensor, -/obj/structure/catwalk, -/turf/simulated/floor/reinforced/airless, -/area/talon_v2/maintenance/fore_port) -"zV" = ( -/obj/machinery/atmospherics/pipe/manifold4w/visible, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/atmospherics) -"zW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/talonboat) -"zX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 1 - }, -/obj/machinery/camera/network/talon{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/bridge) -"zZ" = ( -/obj/machinery/alarm/talon{ - dir = 4; - pixel_x = -22 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/fore_starboard) -"Ad" = ( -/obj/structure/bed/chair/bay/chair{ - dir = 4 - }, -/obj/machinery/power/apc/talon{ - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/cable/green, -/turf/simulated/floor/wood, -/area/talon_v2/crew_quarters/bar) -"Ag" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/aux, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/maintenance/wing_starboard) -"Aj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/maintenance/wing_starboard) -"An" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 26 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/secure_storage) -"Aq" = ( -/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/sign/department/telecoms{ - pixel_y = -31 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway) -"As" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/hangar) -"At" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/maintenance/wing_port) -"Av" = ( -/obj/structure/catwalk, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/aft_starboard) -"Aw" = ( +"dK" = ( /obj/machinery/door/firedoor/glass/talon, /obj/machinery/door/airlock/glass{ - name = "Flight Control" + name = "Cantina" }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/central_hallway) -"Ax" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/crew_quarters/bar) +"dL" = ( +/obj/structure/railing/grey{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/wood, -/area/talon_v2/crew_quarters/eng_room) -"Az" = ( -/obj/structure/table/steel, -/obj/item/device/radio/off{ - channels = list("Talon" = 1); - pixel_y = 6 - }, -/obj/item/device/radio/off{ - channels = list("Talon" = 1); - pixel_x = -6; - pixel_y = 4 - }, -/obj/item/device/radio/off{ - channels = list("Talon" = 1); - pixel_x = 6; - pixel_y = 4 - }, -/obj/item/device/radio/off{ - channels = list("Talon" = 1) - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/secure_storage) -"AD" = ( +/turf/simulated/floor/plating, +/area/talon_v2/engineering/atmospherics) +"dN" = ( /obj/structure/table/rack/shelf/steel, /obj/item/clothing/suit/space/void/refurb/talon, /obj/item/clothing/head/helmet/space/void/refurb/talon, /turf/simulated/floor/tiled/techfloor, /area/talon_v2/secure_storage) -"AE" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/effect/floor_decal/industrial/outline/blue, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/atmospherics) -"AH" = ( -/obj/machinery/power/apc/talon{ - dir = 8; - name = "west bump"; - pixel_x = -28 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/disposalpipe/segment{ +"dO" = ( +/obj/machinery/light_switch{ dir = 4; - icon_state = "pipe-c" + pixel_x = -26; + pixel_y = 24 }, /turf/simulated/floor/wood, -/area/talon_v2/crew_quarters/sec_room) -"AI" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway) -"AJ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/star_store) -"AL" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ +/area/talon_v2/crew_quarters/bar) +"dP" = ( +/obj/effect/shuttle_landmark/premade/talon_v2_near_fore_port, +/turf/space, +/area/space) +"dT" = ( +/obj/machinery/light{ dir = 8 }, -/obj/structure/closet/emergsuit_wall{ - dir = 4; - pixel_x = 32 - }, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/starboard) -"AN" = ( -/obj/machinery/door/airlock/glass_external{ - req_one_access = list(301) - }, -/obj/effect/map_helper/airlock/door/ext_door, -/obj/machinery/door/blast/regular/open{ - id = "talon_boat_east" - }, -/obj/machinery/button/remote/blast_door{ - dir = 1; - id = "talon_boat_east"; - pixel_y = -28; - req_one_access = list(301) - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/talonboat) -"AO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 1 - }, -/obj/structure/sign/department/medbay{ - name = "DOCTOR'S QUARTERS"; - pixel_x = 32 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway/fore) -"AQ" = ( -/obj/structure/table/woodentable, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/item/weapon/paper/talon_doctor, -/turf/simulated/floor/carpet, -/area/talon_v2/crew_quarters/med_room) -"AR" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/weapon/tank/jetpack/carbondioxide, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/secure_storage) -"AS" = ( +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/cap_room) +"dW" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, @@ -8135,849 +1363,44 @@ }, /turf/simulated/floor/tiled/techmaint, /area/talon_v2/bridge) -"AT" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/starboard) -"AU" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/random/multiple/corp_crate/talon_cargo, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/maintenance/wing_starboard) -"AV" = ( -/obj/effect/floor_decal/industrial/warning{ +"dX" = ( +/obj/structure/bed/chair/bay/comfy/brown{ dir = 1 }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/extinguisher_cabinet{ - dir = 1; - pixel_y = -32 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/hangar) -"AW" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/hangar) -"AX" = ( -/obj/machinery/door/firedoor/glass/talon, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, -/area/talon_v2/crew_quarters/bar) -"AY" = ( -/obj/machinery/mineral/unloading_machine, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/refining) -"AZ" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/structure/closet/emergsuit_wall{ - dir = 1; - pixel_y = -32 - }, -/turf/simulated/floor/plating, -/area/talon_v2/engineering) -"Bb" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, /obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/engineering) -"Bc" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 5 - }, -/turf/simulated/floor/reinforced/airless, -/area/talon_v2/engineering/port) -"Bd" = ( -/obj/machinery/computer/ship/sensors, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/talonboat) -"Be" = ( -/turf/simulated/wall/shull{ - can_open = 1 - }, -/area/talon_v2/gen_store) -"Bf" = ( -/obj/machinery/shipsensors{ - dir = 1 - }, -/turf/simulated/floor/reinforced/airless, -/area/talon_v2/bridge) -"Bi" = ( -/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/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway/fore) -"Bk" = ( -/obj/machinery/atmospherics/binary/pump/high_power/on{ - dir = 4 - }, -/obj/structure/railing/grey{ - dir = 4 - }, -/obj/structure/railing/grey{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/atmospherics) -"Bn" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 9 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/atmospherics) -"Bq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/bridge) -"Br" = ( -/obj/machinery/airlock_sensor{ - dir = 8; - pixel_x = 28; - pixel_y = 28; - req_one_access = list(301) - }, -/obj/effect/map_helper/airlock/sensor/ext_sensor, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/reinforced/airless, -/area/talon_v2/maintenance/wing_port) -"Bs" = ( -/obj/machinery/door/firedoor/glass/talon, -/obj/machinery/door/airlock/maintenance/sec{ - req_one_access = list(301) - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/brig) -"Bt" = ( -/obj/machinery/door/firedoor/glass/talon, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway/fore) -"Bu" = ( -/obj/structure/table/woodentable, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/talon_v2/crew_quarters/meditation) -"Bv" = ( -/obj/machinery/button/remote/blast_door{ - id = "talon_cargo_port"; - name = "Cargo Loading Hatches"; - pixel_y = -28 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/window/brigdoor/northleft{ - req_access = list(); - req_one_access = list(301) - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/maintenance/wing_port) -"Bw" = ( -/turf/simulated/wall/shull, -/area/talon_v2/workroom) -"By" = ( -/turf/simulated/floor/wood, -/area/talon_v2/crew_quarters/bar) -"BB" = ( -/obj/machinery/door/airlock/glass_external{ - req_one_access = list(301) - }, -/obj/effect/map_helper/airlock/door/ext_door, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/maintenance/fore_port) -"BC" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 26 - }, -/obj/random/multiple/corp_crate/talon_cargo, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/maintenance/wing_port) -"BF" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/random/multiple/corp_crate/talon_cargo, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/maintenance/wing_starboard) -"BH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/item/weapon/storage/firstaid/regular, -/obj/item/weapon/storage/firstaid/o2, -/obj/structure/closet/walllocker/medical/south, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/crew_quarters/restrooms) -"BJ" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/effect/catwalk_plated, -/obj/structure/disposalpipe/junction{ dir = 2; - icon_state = "pipe-j2" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/talon_v2/central_hallway) -"BK" = ( -/obj/structure/disposalpipe/trunk, -/obj/machinery/disposal/wall, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/engineering) -"BN" = ( -/turf/simulated/wall/shull{ - can_open = 1 - }, -/area/talon_v2/crew_quarters/restrooms) -"BO" = ( -/obj/machinery/light/small, -/obj/machinery/atmospherics/binary/pump/on{ - dir = 8; - name = "Waste Compresser" - }, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/atmospherics) -"BT" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/atmospherics) -"BU" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/closet/emergsuit_wall{ - dir = 8; - pixel_x = -32 + icon_state = "pipe-c" }, /turf/simulated/floor/tiled/techmaint, -/area/talon_v2/crew_quarters/restrooms) -"BV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/maintenance/wing_port) -"BW" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ - dir = 1 - }, -/obj/effect/map_helper/airlock/atmos/chamber_pump, -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - dir = 1; - id_tag = "talon_starboard_fore"; - pixel_y = -30; - req_one_access = list(301) - }, -/obj/structure/handrail{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/maintenance/fore_starboard) -"BX" = ( -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, +/area/talon_v2/bridge) +"dZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/cap_room) +"ec" = ( /obj/machinery/power/apc/talon{ dir = 1; name = "north bump"; pixel_y = 28 }, -/obj/structure/table/rack/steel, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/secure_storage) -"BY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood, -/area/talon_v2/crew_quarters/cap_room) -"BZ" = ( -/obj/structure/table/woodentable, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/item/weapon/paper/talon_power, -/turf/simulated/floor/carpet, -/area/talon_v2/crew_quarters/eng_room) -"Cb" = ( -/obj/machinery/door/firedoor/glass/talon, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/glass_centcom{ - name = "Talon Storage"; - req_one_access = list(301) - }, /obj/structure/cable/green{ - d1 = 1; d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/secure_storage) -"Cd" = ( -/obj/structure/closet/secure_closet/personal/cabinet{ - locked = 0 - }, -/obj/machinery/camera/network/talon{ - dir = 1 - }, -/turf/simulated/floor/carpet, -/area/talon_v2/crew_quarters/pilot_room) -"Ce" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 10 - }, -/obj/machinery/airlock_sensor{ - dir = 4; - pixel_x = -28; - pixel_y = 28; - req_one_access = list(301) - }, -/obj/effect/map_helper/airlock/sensor/int_sensor, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/maintenance/wing_port) -"Cf" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/blast/regular/open{ - dir = 4; - id = "talon_anomalystorage" - }, -/turf/simulated/floor/plating, -/area/talon_v2/anomaly_storage) -"Cg" = ( -/obj/structure/bed/chair/office/light, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/workroom) -"Ck" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/obj/structure/closet/walllocker/medical/south, -/obj/item/weapon/storage/firstaid/regular, -/obj/item/weapon/storage/firstaid/fire, -/turf/simulated/floor/plating, -/area/talon_v2/engineering) -"Cq" = ( -/obj/effect/map_helper/airlock/door/ext_door, -/obj/machinery/door/airlock/glass_external{ - req_one_access = list(301) - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/maintenance/wing_starboard) -"Cr" = ( -/obj/structure/trash_pile, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/port_store) -"Cs" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/catwalk, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/closet/walllocker_double/east, -/obj/item/weapon/cell/device/weapon, -/obj/item/weapon/cell/device/weapon, -/obj/item/weapon/cell/device, -/obj/item/weapon/cell/device, -/obj/random/maintenance/engineering, -/obj/random/maintenance/engineering, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/talon_v2/engineering) -"Cw" = ( -/obj/structure/bed/chair/bay/chair{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/light, -/obj/machinery/light_switch{ - dir = 1; - pixel_x = 8; - pixel_y = -26 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_x = -6; - pixel_y = -24 + icon_state = "0-2" }, /turf/simulated/floor/tiled/techfloor, -/area/shuttle/talonboat) -"Cx" = ( -/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/sign/department/shield{ - pixel_y = -31 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway) -"Cy" = ( -/obj/machinery/light/small{ +/area/talon_v2/ofd_ops) +"ed" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/aft_starboard) -"CA" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red, -/obj/structure/catwalk, -/obj/structure/railing/grey, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/atmospherics) -"CB" = ( -/obj/machinery/suit_cycler/vintage/tpilot, -/obj/machinery/button/remote/airlock{ - id = "talon_pilotdoor"; - name = "Door Bolts"; - pixel_y = 28; - specialfunctions = 4 - }, -/turf/simulated/floor/wood, -/area/talon_v2/crew_quarters/pilot_room) -"CC" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/obj/structure/railing/grey{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/atmospherics) -"CD" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/atmospherics) -"CE" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/talon_v2/maintenance/wing_port) -"CF" = ( -/obj/machinery/door/firedoor/glass/talon, -/obj/machinery/door/airlock{ - id_tag = "talon_charger"; - name = "Cyborg Recharging Station" - }, -/turf/simulated/floor/tiled/white, -/area/talon_v2/crew_quarters/restrooms) -"CH" = ( -/obj/structure/table/woodentable, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/item/weapon/paper/talon_pilot, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/carpet, -/area/talon_v2/crew_quarters/pilot_room) -"CI" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/closet/emergsuit_wall{ - dir = 4; - pixel_x = 32 - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/maintenance/wing_port) -"CL" = ( -/obj/machinery/light/small, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/fore_starboard) -"CN" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway/fore) -"CO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway) -"CP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera/network/talon, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway/port) -"CS" = ( -/obj/machinery/door/firedoor/glass/talon, -/obj/machinery/door/airlock/maintenance/medical{ - req_one_access = list(301) - }, -/turf/simulated/floor/plating, -/area/talon_v2/medical) -"CU" = ( -/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" - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/anomaly_storage) -"CV" = ( -/obj/structure/catwalk, -/obj/machinery/alarm/talon{ - dir = 8; - pixel_x = 22 - }, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/port_store) -"CX" = ( -/turf/simulated/wall/shull, -/area/talon_v2/maintenance/fore_port) -"CY" = ( -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/maintenance/wing_port) -"Dc" = ( -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/gen_store) -"Dd" = ( -/turf/simulated/wall/shull, -/area/talon_v2/secure_storage) -"Dg" = ( -/obj/structure/hull_corner/long_vert{ - dir = 9 - }, -/turf/space, -/area/space) -"Dh" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/engineering) -"Di" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/item/weapon/storage/firstaid/regular, -/obj/item/weapon/storage/firstaid/o2, -/obj/structure/closet/walllocker/medical/east, -/obj/item/device/radio/off{ - channels = list("Talon" = 1) - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/maintenance/wing_port) -"Dj" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/hangar) -"Dm" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway) -"Dp" = ( -/obj/structure/catwalk, -/turf/simulated/floor/reinforced/airless, -/area/talon_v2/maintenance/wing_port) -"Dq" = ( -/turf/simulated/wall/rshull, -/area/talon_v2/maintenance/aft_starboard) -"Ds" = ( -/obj/machinery/atmospherics/pipe/manifold/visible{ - dir = 4 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/atmospherics) -"Du" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/wing_port) -"Dx" = ( -/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/techmaint, -/area/talon_v2/central_hallway/star) -"Dy" = ( -/obj/machinery/door/airlock/glass_external{ - req_one_access = list(301) - }, -/obj/effect/map_helper/airlock/door/ext_door, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/maintenance/wing_starboard) -"DB" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass/talon, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/hangar) -"DC" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass/talon, -/obj/machinery/door/blast/regular/open{ - id = "talon_boat_cockpit" - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/shuttle/talonboat) -"DD" = ( -/turf/simulated/wall/shull, -/area/talon_v2/maintenance/aft_starboard) -"DG" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/obj/structure/closet/walllocker_double/hydrant/west, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway) -"DH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/aux, -/obj/machinery/camera/network/talon{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/central_hallway/fore) -"DI" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/railing/grey, -/obj/random/multiple/corp_crate/talon_cargo, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/maintenance/wing_starboard) -"DK" = ( -/obj/machinery/vending/nifsoft_shop, -/obj/structure/sign/painting/public{ - pixel_y = 30 - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/central_hallway/fore) -"DM" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/catwalk, -/obj/structure/railing/grey{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/atmospherics) -"DP" = ( -/obj/structure/girder, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/atmospherics) -"DR" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 9 - }, -/obj/structure/catwalk, -/obj/structure/railing/grey{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/atmospherics) -"DU" = ( +/area/talon_v2/bridge) +"eg" = ( /obj/machinery/vending/boozeomat{ density = 0; pixel_y = 32; @@ -9002,246 +1425,260 @@ }, /turf/simulated/floor/tiled/white, /area/talon_v2/crew_quarters/bar) -"DW" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/random/multiple/corp_crate/talon_cargo, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/maintenance/wing_port) -"DX" = ( -/obj/machinery/power/pointdefense{ - id_tag = "talon_pd" - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 5 - }, -/turf/simulated/floor/reinforced/airless, -/area/space) -"DY" = ( -/obj/machinery/light/small{ - dir = 4 - }, +"eh" = ( +/obj/structure/flora/pottedplant/shoot, +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/cap_room) +"ei" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/generators) +"ej" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/aft_port) -"Ea" = ( -/obj/machinery/computer/ship/sensors{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/bridge) -"Eb" = ( -/obj/structure/reagent_dispensers/watertank/high, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/gen_store) -"Ef" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/red{ - dir = 1 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/atmospherics) -"Ek" = ( -/obj/machinery/door/firedoor/glass/talon, -/obj/machinery/door/airlock{ - id_tag = "talon_pilotdoor"; - name = "Pilot's Cabin"; - req_one_access = list(301) - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/crew_quarters/pilot_room) -"En" = ( -/obj/structure/table/standard, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/brig) -"Eo" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor/glass/talon, -/obj/machinery/door/blast/regular/open{ - dir = 4; - id = "talon_boat_cockpit" - }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/shuttle/talonboat) -"Ep" = ( -/obj/structure/table/rack/shelf/steel, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/port_store) -"Eq" = ( -/obj/structure/closet/emergsuit_wall{ - dir = 4; - pixel_x = 32 - }, -/turf/simulated/floor/carpet, -/area/talon_v2/crew_quarters/pilot_room) -"Er" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/red, -/obj/machinery/portable_atmospherics/canister/empty/phoron, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/port_store) -"Et" = ( -/obj/structure/catwalk, -/obj/structure/trash_pile, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/fore_port) -"Ev" = ( -/obj/effect/floor_decal/emblem/talon_big{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/central_hallway/fore) -"Ew" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 26 - }, /turf/simulated/floor/tiled/techmaint, -/area/talon_v2/armory) -"Ey" = ( -/obj/structure/table/rack/steel, -/obj/item/device/suit_cooling_unit, -/obj/item/device/suit_cooling_unit, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/secure_storage) -"EB" = ( +/area/talon_v2/central_hallway/fore) +"ek" = ( +/obj/structure/table/woodentable, +/obj/item/modular_computer/tablet/preset/custom_loadout/advanced, +/obj/item/weapon/paper_bin, +/obj/item/weapon/pen, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, +/turf/simulated/floor/carpet/blucarpet, +/area/talon_v2/crew_quarters/cap_room) +"el" = ( +/obj/structure/table/woodentable, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/item/weapon/paper/dockingcodes, +/turf/simulated/floor/carpet/blucarpet, +/area/talon_v2/crew_quarters/cap_room) +"ep" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/table/steel, +/obj/machinery/recharger, +/obj/item/device/geiger{ + pixel_x = -7 + }, +/obj/machinery/alarm/talon{ + pixel_y = 24 + }, +/obj/machinery/camera/network/talon{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/generators) +"eq" = ( +/obj/machinery/light/small, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = 2; + pixel_y = -28 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, /turf/simulated/floor/plating, /area/talon_v2/engineering/port_store) -"ED" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, +"er" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/railing/grey, +/obj/random/multiple/corp_crate/talon_cargo, /turf/simulated/floor/tiled/techfloor, -/area/talon_v2/secure_storage) -"EF" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/effect/catwalk_plated, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/junction, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/talon_v2/central_hallway/fore) -"EH" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, +/area/talon_v2/maintenance/wing_starboard) +"et" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/wood, -/area/talon_v2/crew_quarters/med_room) -"EI" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/obj/structure/catwalk, -/obj/structure/railing/grey, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/atmospherics) -"EJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 6 - }, -/turf/simulated/wall/rshull, -/area/shuttle/talonboat) -"EL" = ( +/area/talon_v2/crew_quarters/eng_room) +"eu" = ( +/obj/item/modular_computer/console/preset/talon, /obj/structure/cable/green{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" +/turf/simulated/floor/carpet/blucarpet, +/area/talon_v2/crew_quarters/cap_room) +"ex" = ( +/obj/machinery/alarm/talon{ + dir = 4; + pixel_x = -22 }, /turf/simulated/floor/tiled/techmaint, -/area/talon_v2/maintenance/wing_port) -"EN" = ( -/obj/item/weapon/storage/firstaid/regular, -/obj/item/weapon/storage/firstaid/o2, -/obj/structure/closet/walllocker/medical/north, -/obj/item/device/radio/off{ - channels = list("Talon" = 1) +/area/talon_v2/central_hallway/fore) +"ey" = ( +/obj/structure/bed/chair/wood, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/sign/painting/public{ + pixel_x = 30 + }, +/turf/simulated/floor/carpet/blucarpet, +/area/talon_v2/crew_quarters/cap_room) +"ez" = ( +/obj/effect/floor_decal/corner/black/diagonal, +/obj/structure/table/marble, +/turf/simulated/floor/tiled/white, +/area/talon_v2/crew_quarters/bar) +"eA" = ( +/obj/machinery/atmospherics/unary/engine/bigger{ + dir = 1 + }, +/turf/space, +/area/talon_v2/engineering/port) +"eB" = ( +/obj/structure/sign/warning/pods{ + dir = 4; + pixel_x = 32 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway/fore) +"eC" = ( +/obj/structure/closet/walllocker_double/hydrant/west, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/engineering/star_store) +"eD" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/crew_quarters/restrooms) +"eF" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/talon_v2/engineering) +"eG" = ( +/obj/structure/table/marble, +/obj/machinery/chemical_dispenser/bar_soft/full{ + dir = 8 + }, +/obj/effect/floor_decal/corner/black/diagonal, +/turf/simulated/floor/tiled/white, +/area/talon_v2/crew_quarters/bar) +"eH" = ( +/obj/structure/sign/painting/public{ + pixel_x = -30 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway/fore) +"eI" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/plating, +/area/talon_v2/engineering) +"eK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/yellow{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/generators) +"eL" = ( +/obj/structure/railing/grey, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 }, /turf/simulated/floor/tiled/techfloor, /area/talon_v2/bridge) -"EO" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ - dir = 1 +"eM" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/obj/structure/railing/grey{ +/obj/machinery/door/firedoor/glass/talon, +/obj/machinery/door/airlock/hatch{ + name = "Generator Room"; + req_one_access = list(301) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/sign/warning/radioactive{ + pixel_y = 32 + }, /turf/simulated/floor/plating, -/area/talon_v2/engineering/port) -"EP" = ( +/area/talon_v2/engineering/generators) +"eN" = ( +/obj/structure/cable/yellow{ + 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/catwalk, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/talon_v2/engineering) +"eP" = ( +/obj/structure/cable/yellow, +/obj/machinery/light/small, +/obj/machinery/power/port_gen/pacman/super/potato, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/generators) +"eQ" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -9258,22 +1695,352 @@ }, /turf/simulated/floor/plating, /area/talon_v2/maintenance/aft_starboard) -"ES" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +"eR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/black/diagonal, +/obj/item/weapon/stool/baystool/padded{ dir = 4 }, +/turf/simulated/floor/tiled/white, +/area/talon_v2/crew_quarters/bar) +"eS" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light, +/obj/structure/sign/department/armory{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway/port) +"eU" = ( +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "talon_bridge_shields" + }, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/dust, +/turf/simulated/floor/reinforced/airless, +/area/talon_v2/bridge) +"eX" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/floor_decal/corner/black/diagonal, +/obj/structure/table/marble, +/obj/item/device/radio/off{ + channels = list("Talon" = 1) + }, +/turf/simulated/floor/tiled/white, +/area/talon_v2/crew_quarters/bar) +"eY" = ( +/obj/structure/table/marble, +/obj/effect/floor_decal/corner/black/diagonal, +/obj/machinery/camera/network/talon{ + dir = 8 + }, +/obj/random/mre, +/obj/random/mre, +/obj/random/mre, +/obj/random/mre, +/obj/random/mre, +/obj/random/mre, +/obj/structure/closet/walllocker_double/kitchen/east{ + name = "Ration Cabinet" + }, +/turf/simulated/floor/tiled/white, +/area/talon_v2/crew_quarters/bar) +"eZ" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/port_store) +"fa" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway/port) -"ET" = ( +/area/talon_v2/central_hallway/star) +"fb" = ( +/turf/simulated/wall/shull, +/area/talon_v2/engineering/star_store) +"fc" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/engineering/star_store) +"fd" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/device/suit_cooling_unit, +/obj/item/device/suit_cooling_unit, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/secure_storage) +"ff" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/star_store) +"fg" = ( +/obj/structure/table/woodentable, +/obj/item/clothing/accessory/talon{ + pixel_x = 4; + pixel_y = 7 + }, +/obj/item/clothing/head/caphat/talon{ + pixel_x = -5 + }, +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/cap_room) +"fh" = ( +/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/structure/disposalpipe/segment{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/talon_v2/central_hallway/fore) +"fi" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/closet/walllocker_double/east, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/engineering/star_store) +"fj" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway/fore) +"fm" = ( +/obj/structure/catwalk, +/obj/machinery/alarm/talon{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/port_store) +"fn" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/bar) +"fo" = ( +/obj/machinery/door/firedoor/glass/talon, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/talon_v2/crew_quarters/bar) +"fp" = ( +/obj/structure/closet/crate, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/gen_store) +"fq" = ( +/obj/structure/catwalk, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 26 + }, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/port_store) +"fr" = ( +/obj/structure/catwalk, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/star_store) +"fs" = ( +/obj/structure/bed/chair/bay/chair, +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/bar) +"ft" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 6 + }, +/obj/structure/sign/warning/nosmoking_1{ + pixel_x = -26 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/atmospherics) +"fu" = ( +/obj/structure/railing/grey{ + dir = 1 + }, +/obj/machinery/power/smes/buildable/offmap_spawn{ + RCon_tag = "Talon Port SMES" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/talon_v2/engineering) +"fw" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/bridge) +"fx" = ( +/obj/structure/table/woodentable, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/cap_room) +"fA" = ( +/obj/machinery/atmospherics/pipe/tank/air/full{ + dir = 8 + }, +/obj/structure/railing/grey, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/atmospherics) +"fF" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/armory) +"fG" = ( +/obj/machinery/atmospherics/portables_connector/aux, +/obj/effect/floor_decal/industrial/outline, +/obj/structure/railing/grey, +/obj/machinery/portable_atmospherics/canister/air, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/port_store) +"fM" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/bluedouble, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/carpet/blucarpet, +/area/talon_v2/crew_quarters/cap_room) +"fN" = ( +/obj/structure/table/woodentable, +/obj/machinery/firealarm{ + dir = 4; + layer = 3.3; + pixel_x = 26 + }, +/obj/machinery/power/apc/talon{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/green, +/obj/item/weapon/paper/talon_captain, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/carpet/blucarpet, +/area/talon_v2/crew_quarters/cap_room) +"fQ" = ( +/obj/structure/railing/grey{ + dir = 4 + }, +/obj/structure/table/steel, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/item/weapon/paper/talon_shields, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/engineering) +"fR" = ( +/obj/structure/sign/warning/airlock{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 5 + }, +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/aft_port) +"fS" = ( +/obj/structure/sign/warning/airlock{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 9 + }, +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/aft_starboard) +"fU" = ( /obj/structure/railing/grey{ dir = 1 }, @@ -9291,118 +2058,116 @@ }, /turf/simulated/floor/tiled/techfloor, /area/talon_v2/bridge) -"EU" = ( -/turf/simulated/wall/rshull, -/area/talon_v2/maintenance/fore_starboard) -"EV" = ( -/obj/machinery/alarm/talon{ - dir = 1; - pixel_y = -25 - }, -/obj/structure/table/rack/steel, -/obj/item/weapon/grenade/spawnergrenade/manhacks/mercenary{ - pixel_x = -5; - pixel_y = 4 - }, -/obj/item/device/spaceflare, -/obj/machinery/camera/network/talon{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/armory) -"EX" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/handrail{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet{ - dir = 8; - pixel_x = 30 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/maintenance/wing_starboard) -"Fc" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/clothing/suit/space/void/refurb/talon, -/obj/machinery/light_switch{ - dir = 1; - pixel_y = -26 - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/secure_storage) -"Fd" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - frequency = 1380; - id_tag = "talon_boatbay"; - pixel_y = 26 - }, -/turf/simulated/floor/tiled/techfloor/grid, +"fV" = ( +/turf/simulated/wall/shull, /area/talon_v2/hangar) -"Fe" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning/corner, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/anomaly_storage) -"Ff" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/central_hallway/fore) -"Fg" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, -/turf/simulated/floor/reinforced/airless, -/area/space) -"Fj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ +"fW" = ( +/turf/simulated/wall/shull, +/area/talon_v2/refining) +"fX" = ( +/turf/simulated/wall/rshull, +/area/talon_v2/ofd_ops) +"gb" = ( +/obj/machinery/light{ dir = 4 }, -/obj/structure/closet/walllocker/medical/north, -/obj/item/weapon/storage/firstaid/regular, -/obj/item/weapon/storage/firstaid/o2, -/obj/item/device/radio/off{ - channels = list("Talon" = 1) +/obj/structure/sign/department/bar{ + pixel_x = 29 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway/fore) +"gd" = ( +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/mine_room) +"ge" = ( +/obj/machinery/vending/coffee{ + dir = 1 }, /turf/simulated/floor/wood, -/area/talon_v2/crew_quarters/cap_room) -"Fk" = ( -/obj/machinery/power/pointdefense{ - id_tag = "talon_pd" +/area/talon_v2/crew_quarters/bar) +"gh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/light/small{ + dir = 8 }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/aft_port) +"gi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/starboard) +"gj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/railing/grey, +/obj/structure/railing/grey{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/machinery/power/shield_generator/charged, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/engineering) +"gk" = ( +/obj/machinery/media/jukebox, +/obj/machinery/light, +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/bar) +"gm" = ( +/obj/structure/bed/chair/bay/chair{ + dir = 4 + }, +/obj/machinery/power/apc/talon{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/green, /obj/structure/cable/green{ d2 = 4; icon_state = "0-4" }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 10 +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/bar) +"gn" = ( +/turf/simulated/wall/shull{ + can_open = 1 }, -/turf/simulated/floor/reinforced/airless, -/area/space) -"Fn" = ( -/obj/machinery/door/firedoor/glass/talon, -/obj/machinery/door/airlock/medical{ - req_one_access = list(301) +/area/talon_v2/workroom) +"go" = ( +/obj/structure/closet/walllocker/emerglocker/west, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/armory) +"gr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 6 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/handrail, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/maintenance/fore_port) +"gs" = ( /obj/structure/disposalpipe/segment{ dir = 1 }, @@ -9411,100 +2176,1432 @@ d2 = 2; icon_state = "1-2" }, -/turf/simulated/floor/tiled/white, -/area/talon_v2/medical) -"Fo" = ( -/obj/structure/railing/grey{ - dir = 8 +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/effect/catwalk_plated/dark, /turf/simulated/floor/plating, -/area/talon_v2/engineering/atmospherics) -"Fq" = ( -/obj/effect/landmark/talon, -/obj/structure/handrail, -/obj/machinery/computer/cryopod{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/central_hallway) -"Ft" = ( -/obj/structure/hull_corner/long_horiz{ - dir = 6 - }, -/turf/space, -/area/space) -"Fv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/bridge) -"Fx" = ( -/obj/structure/catwalk, -/obj/structure/extinguisher_cabinet{ - dir = 4; - pixel_x = -30 - }, -/turf/simulated/floor/plating, -/area/talon_v2/engineering) -"Fy" = ( -/obj/effect/map_helper/airlock/door/int_door, -/obj/machinery/atmospherics/pipe/simple/hidden/aux, -/obj/machinery/door/airlock/glass_external{ - req_one_access = list(301) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/area/talon_v2/central_hallway/fore) +"gu" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; icon_state = "1-2" }, +/obj/effect/floor_decal/industrial/warning, +/obj/structure/handrail{ + dir = 8 + }, /turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/talonboat) -"Fz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/aux, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/central_hallway/fore) -"FB" = ( -/obj/effect/landmark/start{ - name = "Talon Engineer" - }, -/turf/simulated/floor/carpet, -/area/talon_v2/crew_quarters/eng_room) -"FG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/port_store) -"FH" = ( -/obj/structure/sign/painting/public{ - pixel_x = -30 - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/central_hallway/fore) -"FJ" = ( -/obj/machinery/light/small{ +/area/talon_v2/maintenance/wing_port) +"gx" = ( +/obj/effect/floor_decal/industrial/warning/dust{ dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 +/obj/effect/floor_decal/industrial/warning/dust, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "talon_bridge_shields" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 +/turf/simulated/floor/reinforced/airless, +/area/talon_v2/ofd_ops) +"gA" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/star_store) +"gC" = ( +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/talon_v2/engineering) +"gF" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/power/apc/talon{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/camera/network/talon{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/hangar) +"gH" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + dir = 8; + frequency = 1380; + id_tag = "talon_podbay"; + pixel_x = 26 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway/fore) +"gI" = ( +/obj/machinery/door/firedoor/glass/talon, +/obj/machinery/door/airlock/maintenance/common, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/fore_port) +"gK" = ( +/obj/machinery/power/pointdefense{ + id_tag = "talon_pd" + }, +/obj/structure/cable/green, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 6 + }, +/turf/simulated/floor/reinforced/airless, +/area/space) +"gL" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 5 }, /obj/structure/cable/green{ d1 = 4; d2 = 8; icon_state = "4-8" }, +/obj/machinery/alarm/talon{ + dir = 1; + pixel_y = -25 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/atmospherics) +"gM" = ( +/obj/machinery/disposal/deliveryChute{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/reinforced, +/area/talon_v2/ofd_ops) +"gN" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/talon_v2/ofd_ops) +"gO" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/ofd_ops) +"gR" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/loading{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/refining) +"gS" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/port_store) +"gU" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/maintenance/wing_starboard) +"gV" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway) +"gW" = ( +/obj/machinery/computer/ship/sensors, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/ofd_ops) +"gX" = ( +/obj/machinery/door/airlock/glass_external, +/obj/effect/map_helper/airlock/door/int_door, +/obj/machinery/atmospherics/pipe/manifold/hidden/aux, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/ofd_ops) +"ha" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/alarm/talon{ + dir = 4; + pixel_x = -22 + }, +/obj/structure/closet/walllocker_double/east, +/obj/random/maintenance/engineering, +/obj/random/maintenance/engineering, +/obj/random/maintenance/engineering, +/obj/random/maintenance/engineering, +/obj/random/maintenance/engineering, +/turf/simulated/floor/plating, +/area/talon_v2/engineering) +"hb" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/random/multiple/corp_crate/talon_cargo, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/maintenance/wing_starboard) +"hd" = ( +/obj/machinery/door/airlock/glass_external{ + req_one_access = list(301) + }, +/obj/effect/map_helper/airlock/door/ext_door, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/maintenance/aft_port) +"hg" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/ofd_ops) +"hh" = ( +/obj/machinery/door/firedoor/glass/talon, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/blast/regular/open{ + dir = 2; + id = "talon_bridge_shields" + }, +/turf/simulated/floor/plating, +/area/talon_v2/bridge) +"hi" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/camera/network/talon, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway/star) +"hj" = ( +/turf/simulated/wall/rshull, +/area/talon_v2/engineering/star_store) +"hk" = ( +/obj/machinery/power/apc/talon{ + dir = 1; + name = "north bump"; + pixel_y = 28 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/eng_room) +"hp" = ( +/obj/structure/catwalk, +/obj/structure/railing/grey{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/atmospherics) +"hq" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 4 + }, +/turf/simulated/floor/reinforced/airless, +/area/space) +"hr" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway) +"hs" = ( +/turf/simulated/wall/shull, +/area/talon_v2/crew_quarters/bar) +"hu" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/map_helper/airlock/door/simple, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/angled_tgmc/wide/generic_steel{ + density = 0; + icon_state = "door_open"; + name = "Escape Pod Hatch" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/talonpod) +"hw" = ( +/obj/machinery/atmospherics/pipe/simple/visible/blue, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/atmospherics) +"hz" = ( +/obj/machinery/power/pointdefense{ + id_tag = "talon_pd" + }, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 10 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/reinforced/airless, +/area/space) +"hA" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/fuel_port{ + dir = 1; + pixel_x = 8; + pixel_y = -28 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + dir = 1; + frequency = 1380; + id_tag = "talonpod_docker"; + pixel_x = -8; + pixel_y = -24; + req_one_access = list(301) + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/talonpod) +"hD" = ( +/obj/machinery/atmospherics/portables_connector/aux{ + dir = 4 + }, +/obj/machinery/light/small, +/obj/effect/floor_decal/industrial/outline, +/obj/machinery/portable_atmospherics/canister/air, +/obj/machinery/alarm/talon{ + dir = 1; + pixel_y = -25 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/talonboat) +"hG" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning, +/obj/structure/handrail{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/maintenance/wing_starboard) +"hH" = ( +/obj/structure/bed/chair/bay/chair{ + dir = 1 + }, +/obj/machinery/light, +/obj/machinery/alarm/talon{ + dir = 1; + pixel_y = -25 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/talonboat) +"hK" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/machinery/alarm/talon{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/aft_starboard) +"hL" = ( +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/aft_starboard) +"hM" = ( +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/obj/machinery/airlock_sensor{ + dir = 1; + pixel_y = -28; + req_one_access = list(301) + }, +/obj/structure/handrail{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ + dir = 1 + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/ofd_ops) +"hO" = ( +/obj/structure/sign/directions/bridge{ + dir = 1; + pixel_x = -32 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway/fore) +"hP" = ( +/obj/structure/handrail{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ + dir = 1 + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + dir = 1; + id_tag = "talon_ofd"; + pixel_y = -30; + req_one_access = list(301) + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/ofd_ops) +"hQ" = ( +/obj/machinery/door/firedoor/glass/talon, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/glass_security{ + name = "Talon Armory"; + req_one_access = list(301) + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/armory) +"hT" = ( +/obj/machinery/door/firedoor/glass/talon, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/map_helper/airlock/door/simple, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 1; + name = "Escape Pod"; + req_one_access = list(301) + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/central_hallway/fore) +"hW" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/machinery/alarm/talon{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/aft_port) +"hY" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/hangar) +"ia" = ( +/obj/machinery/vending/dinnerware{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/bar) +"ib" = ( +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/aft_port) +"ie" = ( +/obj/structure/hull_corner/long_horiz{ + dir = 5 + }, +/turf/space, +/area/space) +"ig" = ( +/obj/machinery/door/firedoor/glass/talon, +/obj/machinery/door/airlock/engineering{ + name = "Talon Engineering"; + req_one_access = list(301) + }, +/obj/structure/sign/warning/nosmoking_1{ + pixel_x = -26 + }, +/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" + }, +/turf/simulated/floor/plating, +/area/talon_v2/engineering) +"ii" = ( +/obj/machinery/vending/engivend{ + products = list(/obj/item/device/geiger = 4, /obj/item/clothing/glasses/meson = 2, /obj/item/device/multitool = 4, /obj/item/weapon/cell/high = 10, /obj/item/weapon/airlock_electronics = 10, /obj/item/weapon/module/power_control = 10, /obj/item/weapon/circuitboard/airalarm = 10, /obj/item/weapon/circuitboard/firealarm = 10, /obj/item/weapon/circuitboard/status_display = 2, /obj/item/weapon/circuitboard/ai_status_display = 2, /obj/item/weapon/circuitboard/newscaster = 2, /obj/item/weapon/circuitboard/holopad = 2, /obj/item/weapon/circuitboard/intercom = 4, /obj/item/weapon/circuitboard/security/telescreen/entertainment = 4, /obj/item/weapon/stock_parts/motor = 2, /obj/item/weapon/stock_parts/spring = 2, /obj/item/weapon/stock_parts/gear = 2, /obj/item/weapon/circuitboard/atm, /obj/item/weapon/circuitboard/guestpass, /obj/item/weapon/circuitboard/keycard_auth, /obj/item/weapon/circuitboard/photocopier, /obj/item/weapon/circuitboard/fax, /obj/item/weapon/circuitboard/request, /obj/item/weapon/circuitboard/microwave, /obj/item/weapon/circuitboard/washing, /obj/item/weapon/circuitboard/scanner_console, /obj/item/weapon/circuitboard/sleeper_console, /obj/item/weapon/circuitboard/body_scanner, /obj/item/weapon/circuitboard/sleeper, /obj/item/weapon/circuitboard/dna_analyzer, /obj/item/weapon/circuitboard/partslathe); + req_access = list(301); + req_log_access = 301 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/engineering/star_store) +"ik" = ( +/obj/machinery/door/firedoor/glass/talon, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/talon_v2/ofd_ops) +"il" = ( +/obj/structure/ship_munition/disperser_charge/emp, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/talon_v2/ofd_ops) +"im" = ( +/obj/structure/railing/grey{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/bridge) +"in" = ( +/turf/simulated/floor/plating, +/area/talon_v2/engineering/star_store) +"io" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/talon_v2/engineering) +"iq" = ( +/obj/machinery/light/small, +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/mine_room) +"ir" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/aux, +/obj/machinery/door/firedoor/glass/talon, +/obj/machinery/door/airlock/maintenance/common, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/wing_port) +"is" = ( +/obj/structure/catwalk, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/aft_starboard) +"it" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/aft_port) +"ix" = ( +/obj/structure/table/woodentable, +/obj/machinery/recharger, +/turf/simulated/floor/carpet, +/area/talon_v2/crew_quarters/mine_room) +"iy" = ( +/obj/structure/catwalk, +/obj/structure/trash_pile, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/aft_port) +"iz" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -26; + pixel_y = -25 + }, +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/bar) +"iB" = ( +/obj/structure/hull_corner{ + dir = 4 + }, +/turf/simulated/floor/reinforced/airless, +/area/talon_v2/ofd_ops) +"iC" = ( +/obj/structure/table/rack/shelf/steel, +/obj/random/maintenance/engineering, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/port_store) +"iD" = ( +/obj/effect/map_helper/airlock/sensor/int_sensor, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 10 + }, +/obj/machinery/airlock_sensor{ + dir = 8; + pixel_x = 28; + req_one_access = list(301) + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/aft_port) +"iE" = ( +/obj/structure/catwalk, +/obj/structure/handrail{ + dir = 4 + }, +/turf/simulated/floor/reinforced/airless, +/area/talon_v2/maintenance/fore_starboard) +"iF" = ( +/obj/structure/catwalk, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/reinforced/airless, +/area/talon_v2/maintenance/fore_port) +"iH" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/red, +/obj/machinery/portable_atmospherics/canister/empty/phoron, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/star_store) +"iI" = ( +/obj/structure/table/steel, +/obj/structure/closet/autolok_wall{ + dir = 1; + pixel_y = -32 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/talonboat) +"iJ" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ + dir = 1 + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + dir = 1; + id_tag = "talon_port_fore"; + pixel_y = -30; + req_one_access = list(301) + }, +/obj/structure/handrail{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/maintenance/fore_port) +"iK" = ( +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/aft_starboard) +"iL" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ + dir = 1 + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/structure/handrail{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/maintenance/fore_port) +"iM" = ( +/obj/machinery/power/pointdefense{ + id_tag = "talon_pd" + }, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 5 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/reinforced/airless, +/area/space) +"iN" = ( +/obj/structure/table/woodentable, +/obj/item/modular_computer/laptop/preset/custom_loadout/standard/talon/engineer, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/carpet, +/area/talon_v2/crew_quarters/eng_room) +"iO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/aux, +/obj/machinery/camera/network/talon{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/central_hallway/fore) +"iP" = ( +/obj/machinery/door/firedoor/glass/talon, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/glass_security{ + name = "O.F.D. Ops"; + req_one_access = list(301) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/ofd_ops) +"iQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/holoposter{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/central_hallway/fore) +"iR" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/port) +"iS" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/central_hallway/fore) +"iU" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/maintenance/wing_starboard) +"jg" = ( +/obj/effect/floor_decal/emblem/talon_big{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/central_hallway/fore) +"jh" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/railing/grey, +/obj/random/multiple/corp_crate/talon_cargo, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/maintenance/wing_port) +"jj" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/port_store) +"jk" = ( +/obj/effect/map_helper/airlock/door/ext_door, +/obj/machinery/door/airlock/glass_external{ + req_one_access = list(301) + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/airlock_sensor{ + pixel_y = 24; + req_one_access = list(301) + }, +/obj/effect/map_helper/airlock/sensor/ext_sensor, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/maintenance/wing_port) +"jn" = ( +/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/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/techfloor/grid, +/area/talon_v2/engineering/star_store) +"jr" = ( +/obj/machinery/light/small, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/fore_starboard) +"ju" = ( +/obj/effect/floor_decal/emblem/talon_big{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/central_hallway/fore) +"jv" = ( +/obj/structure/disposalpipe/segment{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/central_hallway/fore) +"jx" = ( +/obj/machinery/atmospherics/pipe/manifold/visible, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/atmospherics) +"jy" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/blast/regular{ + dir = 4; + id = "talon_cargo_port"; + name = "Cargo Loading Hatch" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/maintenance/wing_port) +"jC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/atmospherics) +"jF" = ( +/obj/structure/table/bench/wooden, +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/cap_room) +"jG" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/blue{ + dir = 8 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/atmospherics) +"jJ" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/starboard) +"jM" = ( +/obj/machinery/door/firedoor/glass/talon, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/talon_v2/hangar) +"jN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/aux, +/obj/machinery/camera/network/talon{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/central_hallway/fore) +"jO" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/hangar) +"jQ" = ( +/turf/simulated/wall/shull{ + can_open = 1 + }, +/area/talon_v2/gen_store) +"jS" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ + dir = 1 + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/structure/handrail{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/maintenance/fore_starboard) +"jY" = ( +/obj/structure/closet/crate, +/obj/structure/railing/grey, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/refining) +"jZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/mine_room) +"kc" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet{ + dir = 1; + pixel_y = -32 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway/star) +"kd" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ + dir = 1 + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + dir = 1; + id_tag = "talon_starboard_fore"; + pixel_y = -30; + req_one_access = list(301) + }, +/obj/structure/handrail{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/maintenance/fore_starboard) +"ke" = ( +/obj/structure/catwalk, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/reinforced/airless, +/area/talon_v2/maintenance/fore_starboard) +"kf" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/maintenance/wing_port) +"kg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/bed/chair/bay/chair{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/talon_v2/crew_quarters/pilot_room) +"kh" = ( +/obj/structure/hull_corner/long_horiz{ + dir = 9 + }, +/turf/space, +/area/space) +"ki" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/port) +"kj" = ( +/obj/machinery/door/airlock/glass_external{ + req_one_access = list(301) + }, +/obj/effect/map_helper/airlock/door/int_door, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/maintenance/fore_starboard) +"kk" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/reagent_dispensers/fueltank/high, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/gen_store) +"kl" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/central_hallway/fore) +"kn" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway/fore) +"kt" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 8 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/atmospherics) +"kv" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/aux, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/fuel, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/shuttle/talonboat) +"kw" = ( +/obj/structure/table/marble, +/obj/machinery/chemical_dispenser/bar_alc/full{ + dir = 8 + }, +/obj/effect/floor_decal/corner/black/diagonal, +/turf/simulated/floor/tiled/white, +/area/talon_v2/crew_quarters/bar) +"kx" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /obj/structure/catwalk, /turf/simulated/floor/plating, /area/talon_v2/engineering/port_store) -"FK" = ( +"kz" = ( +/obj/effect/floor_decal/industrial/outline/red, +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/phoron/engine_setup, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/port) +"kC" = ( +/obj/structure/bed/chair/bay/shuttle{ + dir = 4 + }, +/obj/machinery/light, +/obj/structure/closet/walllocker_double/survival/south, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/talonpod) +"kD" = ( +/obj/machinery/vending/food{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/bar) +"kG" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/bar) +"kH" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway/fore) +"kI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/shuttle/talonboat) +"kJ" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/central_hallway/fore) +"kM" = ( +/obj/machinery/light/small, +/obj/structure/bed/chair/bay/shuttle{ + dir = 1 + }, +/obj/machinery/power/apc/talon/hyper{ + pixel_y = -24 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/talonboat) +"kP" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/railing/grey, +/obj/structure/railing/grey{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/talon_v2/engineering) +"kQ" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/atmospherics) +"kR" = ( +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/fore_port) +"kS" = ( +/obj/effect/floor_decal/industrial/outline/red, +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/phoron/engine_setup, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/starboard) +"kV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/light/small, +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/starboard) +"kW" = ( +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/fore_starboard) +"kX" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/wall/rshull, +/area/talon_v2/maintenance/fore_port) +"kZ" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/fore_port) +"lc" = ( +/obj/machinery/door/firedoor/glass/talon, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance/engi{ + name = "Engine Crawlway Access"; + req_one_access = list(301) + }, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/starboard) +"le" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/closet/emergsuit_wall{ + dir = 1; + pixel_y = -32 + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/central_hallway/fore) +"lf" = ( +/obj/effect/floor_decal/industrial/outline/red, +/obj/machinery/portable_atmospherics/canister/empty/phoron, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/port_store) +"lk" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/closet/walllocker_double/hydrant/east, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/maintenance/wing_port) +"ll" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "talontrash" + }, +/obj/machinery/door/blast/regular{ + dir = 4; + id = "talontrashblast" + }, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/starboard) +"lm" = ( +/obj/machinery/computer/ship/helm{ + req_one_access = list(301) + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/talonboat) +"lq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -9524,63 +3621,1464 @@ }, /turf/simulated/floor/tiled/techmaint, /area/talon_v2/central_hallway) -"FM" = ( -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +"lr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/talon_v2/crew_quarters/restrooms) -"FN" = ( -/obj/effect/floor_decal/industrial/outline/yellow, +/area/talon_v2/central_hallway/fore) +"ls" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 1 + }, /obj/machinery/camera/network/talon{ dir = 1 }, -/obj/random/multiple/corp_crate/talon_cargo, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/bridge) +"lv" = ( +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway/star) +"lw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/talon_v2/engineering) +"lx" = ( +/obj/machinery/light, +/obj/structure/extinguisher_cabinet{ + dir = 1; + pixel_y = -32 + }, /turf/simulated/floor/tiled/techfloor, -/area/talon_v2/maintenance/wing_port) -"FO" = ( +/area/talon_v2/central_hallway/fore) +"ly" = ( +/obj/machinery/power/pointdefense{ + id_tag = "talon_pd" + }, +/obj/structure/cable/green, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 10 + }, +/turf/simulated/floor/reinforced/airless, +/area/space) +"lA" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/refining) +"lB" = ( +/obj/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + dir = 1; + pixel_y = -32 + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/central_hallway/fore) +"lC" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/flora/pottedplant/mysterious, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/central_hallway/fore) +"lD" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/holoposter{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/central_hallway/fore) +"lF" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/fore_starboard) +"lG" = ( +/obj/structure/sign/warning/airlock{ + pixel_x = -31 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/structure/handrail{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/maintenance/wing_starboard) +"lI" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atm{ + pixel_y = 31 + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/central_hallway/fore) +"lJ" = ( +/obj/machinery/door/firedoor/glass/talon, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/glass_centcom{ + name = "Talon Storage"; + req_one_access = list(301) + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/secure_storage) +"lK" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "talon_anomalystorage" + }, +/turf/simulated/floor/plating, +/area/talon_v2/anomaly_storage) +"lM" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/structure/railing/grey{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/atmospherics) +"lN" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/port_store) +"lQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/port) +"lR" = ( +/obj/machinery/door/firedoor/glass/talon, +/obj/machinery/door/airlock/medical{ + req_one_access = list(301) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/talon_v2/medical) +"lS" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/wall/rshull, +/area/talon_v2/maintenance/fore_starboard) +"lT" = ( +/obj/structure/hull_corner, +/turf/space, +/area/space) +"lU" = ( +/turf/simulated/wall/shull, +/area/talon_v2/crew_quarters/pilot_room) +"lX" = ( +/obj/machinery/door/firedoor/glass/talon, +/obj/machinery/door/airlock/maintenance/common, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/fore_port) +"lY" = ( +/obj/structure/barricade, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/star_store) +"lZ" = ( +/obj/machinery/door/firedoor/glass/talon, +/obj/machinery/door/airlock/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway/fore) +"ma" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/sec_room) +"mb" = ( +/obj/effect/map_helper/airlock/sensor/int_sensor, +/obj/machinery/airlock_sensor{ + dir = 8; + pixel_x = 28; + pixel_y = -28; + req_one_access = list(301) + }, +/obj/structure/sign/warning/airlock{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/maintenance/fore_starboard) +"mc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway/fore) +"md" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/red{ + dir = 1 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/atmospherics) +"mg" = ( +/obj/structure/mopbucket, +/obj/item/weapon/mop, +/obj/item/weapon/reagent_containers/glass/bucket, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/engineering/star_store) +"mk" = ( +/obj/machinery/door/firedoor/glass/talon, +/obj/machinery/door/airlock/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway/fore) +"ml" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/random/multiple/corp_crate/talon_cargo, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/maintenance/wing_starboard) +"mm" = ( +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/aft_starboard) +"mo" = ( +/obj/machinery/door/blast/regular{ + dir = 4; + id = "talon_cargo_port"; + name = "Cargo Loading Hatch" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/maintenance/wing_port) +"mq" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, /obj/structure/cable/green{ d1 = 1; d2 = 4; icon_state = "1-4" }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/aft_starboard) +"mr" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/eng_room) +"mu" = ( +/obj/structure/table/rack/shelf/steel, +/obj/random/maintenance/cargo, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/random/maintenance/cargo, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/gen_store) +"mw" = ( +/turf/simulated/wall/shull, +/area/talon_v2/maintenance/wing_starboard) +"mx" = ( +/obj/structure/table/woodentable, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/item/modular_computer/laptop/preset/custom_loadout/standard/talon/security, +/obj/machinery/camera/network/talon{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/talon_v2/crew_quarters/sec_room) +"mE" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/talon_v2/medical) +"mG" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/maintenance/wing_starboard) +"mH" = ( +/obj/machinery/door/firedoor/glass/talon, +/obj/machinery/door/airlock/maintenance/common, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/fore_starboard) +"mI" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/fore_port) +"mL" = ( +/obj/machinery/mineral/unloading_machine, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/refining) +"mN" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/catwalk, +/obj/structure/extinguisher_cabinet{ + dir = 1; + pixel_y = -32 + }, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/port) +"mO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera/network/talon{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway) +"mS" = ( +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/sec_room) +"mT" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/crate/secure/phoron{ + req_one_access = list(301) + }, +/obj/item/weapon/tank/phoron/pressurized{ + pixel_x = -3 + }, +/obj/item/weapon/tank/phoron/pressurized{ + pixel_x = 3 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/talonboat) +"mV" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/handrail{ + dir = 8 + }, +/obj/structure/closet/emergsuit_wall{ + dir = 4; + pixel_x = 32 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/maintenance/wing_starboard) +"mX" = ( +/obj/machinery/light/small, +/obj/machinery/atmospherics/binary/pump/on{ + dir = 8; + name = "Waste Compresser" + }, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/atmospherics) +"mZ" = ( +/obj/machinery/vending/snack, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/central_hallway/fore) +"na" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/starboard) +"nb" = ( +/obj/machinery/door/firedoor/glass/talon, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/medical{ + id_tag = "talon_meddoor"; + name = "Doctor's Cabin"; + req_one_access = list(301) + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/crew_quarters/med_room) +"ne" = ( +/obj/structure/closet/secure_closet/personal/cabinet{ + locked = 0 + }, +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/sec_room) +"ng" = ( +/obj/structure/closet/secure_closet/talon_guard, +/obj/item/device/radio/off{ + channels = list("Talon" = 1) + }, +/obj/item/weapon/storage/box/nifsofts_security, +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/sec_room) +"nh" = ( +/obj/effect/floor_decal/industrial/outline/red, +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/structure/railing/grey, +/obj/machinery/portable_atmospherics/canister/phoron/engine_setup, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/starboard) +"nk" = ( +/obj/machinery/suit_cycler/vintage/tguard, +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/sec_room) +"nl" = ( /obj/structure/cable/green{ d1 = 2; d2 = 4; icon_state = "2-4" }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/maintenance/wing_port) +"nn" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/effect/catwalk_plated, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/talon_v2/central_hallway) +"no" = ( +/obj/machinery/suit_cycler/vintage/tmedic, +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/med_room) +"np" = ( /obj/structure/catwalk, /turf/simulated/floor/plating, -/area/talon_v2/maintenance/aft_port) -"FR" = ( +/area/talon_v2/engineering/port_store) +"nq" = ( +/obj/structure/closet/secure_closet/talon_doctor, +/obj/item/device/radio/off{ + channels = list("Talon" = 1) + }, +/obj/item/weapon/storage/box/nifsofts_medical, +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/med_room) +"ns" = ( +/obj/effect/floor_decal/emblem/talon_big/center, +/obj/structure/cable/green, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/central_hallway/fore) +"nt" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/table/rack/steel, +/obj/random/maintenance/engineering, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/port_store) +"nw" = ( +/obj/structure/closet/secure_closet/personal/cabinet{ + locked = 0 + }, +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/med_room) +"nz" = ( +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/obj/machinery/atmospherics/pipe/manifold/hidden/aux{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/airlock_sensor{ + pixel_y = 28; + req_one_access = list(301) + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/maintenance/fore_port) +"nB" = ( +/obj/structure/closet/emergsuit_wall{ + pixel_y = 32 + }, +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/med_room) +"nC" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/fore_starboard) +"nD" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/closet/emergsuit_wall{ + pixel_y = 32 + }, +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/eng_room) +"nE" = ( +/obj/machinery/power/apc/talon{ + dir = 8; + name = "west bump"; + pixel_x = -28 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/sec_room) +"nH" = ( +/obj/machinery/power/apc/talon{ + dir = 1; + name = "north bump"; + pixel_y = 28 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/table/standard, +/obj/machinery/recharger, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/central_hallway/fore) +"nI" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/talon_v2/engineering) +"nJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/port) +"nK" = ( +/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/closet/emergsuit_wall{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway/port) +"nL" = ( +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/disposal/wall{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/pilot_room) +"nM" = ( +/obj/machinery/power/apc/talon{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/pilot_room) +"nN" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/med_room) +"nP" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/effect/floor_decal/industrial/outline, +/obj/machinery/portable_atmospherics/powered/pump/filled, +/obj/structure/railing/grey{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/atmospherics) +"nV" = ( +/obj/machinery/power/apc/talon{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/med_room) +"nW" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/sec_room) +"nY" = ( +/obj/machinery/door/blast/regular/open{ + id = "talon_boat_east" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 4 + }, +/obj/machinery/airlock_sensor/airlock_exterior/shuttle{ + dir = 4; + pixel_x = 11; + pixel_y = 24; + req_one_access = list(301) + }, +/obj/machinery/button/remote/airlock{ + id = "tal_shuttle_sb"; + name = "Starboard Airlock Control"; + pixel_x = -9; + pixel_y = 24; + specialfunctions = 4 + }, +/obj/machinery/door/airlock/glass_external{ + frequency = 1420; + id_tag = "tal_shuttle_sb"; + req_one_access = list(301) + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/talonboat) +"od" = ( +/obj/structure/disposalpipe/segment{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway) +"oh" = ( +/obj/item/weapon/storage/dicecup/loaded{ + pixel_x = 7; + pixel_y = 11 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/floor_decal/corner/black/diagonal, +/obj/structure/table/marble, +/obj/item/weapon/deck/cards{ + pixel_x = 3 + }, +/turf/simulated/floor/tiled/white, +/area/talon_v2/crew_quarters/bar) +"ok" = ( +/obj/structure/bed/pod, +/obj/item/weapon/bedsheet/brown, +/turf/simulated/floor/carpet, +/area/talon_v2/crew_quarters/mine_room) +"ol" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Talon Guard" + }, +/obj/machinery/button/remote/airlock{ + dir = 8; + id = "talon_secdoor"; + name = "Door Bolts"; + pixel_x = 28; + specialfunctions = 4 + }, +/turf/simulated/floor/carpet, +/area/talon_v2/crew_quarters/sec_room) +"on" = ( +/obj/effect/floor_decal/emblem/talon_big, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/central_hallway/fore) +"oo" = ( +/obj/structure/closet/emergsuit_wall{ + dir = 4; + pixel_x = 32 + }, +/turf/simulated/floor/carpet, +/area/talon_v2/crew_quarters/pilot_room) +"op" = ( +/obj/machinery/button/remote/airlock{ + dir = 8; + id = "talon_meddoor"; + name = "Door Bolts"; + pixel_x = -28; + specialfunctions = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/landmark/start{ + name = "Talon Doctor" + }, +/turf/simulated/floor/carpet, +/area/talon_v2/crew_quarters/med_room) +"oq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/carpet, +/area/talon_v2/crew_quarters/med_room) +"or" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/refining) +"ot" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/med_room) +"ov" = ( +/obj/machinery/alarm/talon{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = 2; + pixel_y = -28 + }, +/obj/structure/bed/pod, +/obj/item/weapon/bedsheet/medical, +/turf/simulated/floor/carpet, +/area/talon_v2/crew_quarters/med_room) +"ow" = ( +/obj/structure/disposalpipe/trunk, +/obj/machinery/disposal, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/central_hallway/fore) +"oA" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/hangar) +"oB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/power/apc/talon{ + dir = 1; + name = "north bump"; + pixel_y = 28 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/catwalk, /obj/structure/cable/green{ d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/aft_port) +"oE" = ( +/obj/structure/railing/grey{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/red, +/obj/machinery/portable_atmospherics/canister/empty/phoron, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/star_store) +"oF" = ( +/obj/structure/table/standard, +/obj/machinery/alarm/talon{ + dir = 4; + pixel_x = -22 + }, +/obj/item/device/radio/off{ + channels = list("Talon" = 1) + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/crew_quarters/restrooms) +"oN" = ( +/obj/machinery/alarm/talon{ + dir = 1; + pixel_y = -25 + }, +/obj/structure/table/standard, +/obj/machinery/photocopier/faxmachine/talon, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/workroom) +"oO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/workroom) +"oS" = ( +/obj/structure/disposalpipe/segment{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet{ + dir = 8; + pixel_x = 30 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway) +"oV" = ( +/obj/structure/table/woodentable, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/item/weapon/paper/talon_doctor, +/turf/simulated/floor/carpet, +/area/talon_v2/crew_quarters/med_room) +"oW" = ( +/obj/structure/sign/directions/medical{ + pixel_y = -32 + }, +/obj/machinery/camera/network/talon{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/med_room) +"pa" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/handrail{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = -30 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/maintenance/wing_port) +"pb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/cap_room) +"pc" = ( +/obj/machinery/power/pointdefense{ + id_tag = "talon_pd" + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 9 + }, +/turf/simulated/floor/reinforced/airless, +/area/space) +"pf" = ( +/obj/machinery/portable_atmospherics/canister/phoron/engine_setup, +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/port) +"pg" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/atmospherics) +"pi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 6 + }, +/obj/machinery/airlock_sensor{ + dir = 8; + pixel_x = 28; + pixel_y = 28; + req_one_access = list(301) + }, +/obj/effect/map_helper/airlock/sensor/int_sensor, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/maintenance/wing_starboard) +"pk" = ( +/obj/effect/map_helper/airlock/door/int_door, +/obj/machinery/atmospherics/pipe/simple/hidden/aux, +/obj/machinery/door/airlock/glass_external{ + req_one_access = list(301) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/talonboat) +"pl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/carpet, +/area/talon_v2/crew_quarters/sec_room) +"pn" = ( +/obj/machinery/door/firedoor/glass/talon, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/security{ + id_tag = "talon_secdoor"; + name = "Guard's Cabin"; + req_one_access = list(301) + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/crew_quarters/sec_room) +"pp" = ( +/turf/simulated/floor/carpet, +/area/talon_v2/crew_quarters/pilot_room) +"pq" = ( +/obj/effect/landmark/start{ + name = "Talon Engineer" + }, +/turf/simulated/floor/carpet, +/area/talon_v2/crew_quarters/eng_room) +"pr" = ( +/obj/machinery/atmospherics/pipe/simple/visible/universal{ + name = "Waste to Filter" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/atmospherics) +"ps" = ( +/obj/structure/catwalk, +/obj/machinery/alarm/talon{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/aft_starboard) +"pt" = ( +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/talon_v2/engineering) +"pv" = ( +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/eng_room) +"pw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/machinery/holoposter{ + dir = 4; + pixel_x = 32 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway) +"px" = ( +/obj/machinery/camera/network/talon{ dir = 1 }, -/obj/effect/catwalk_plated, -/turf/simulated/floor/plating, +/obj/structure/safe/floor{ + name = "smuggling compartment" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/carpet/blucarpet, +/area/talon_v2/crew_quarters/cap_room) +"pz" = ( +/obj/effect/floor_decal/emblem/talon, +/turf/simulated/floor/reinforced/airless, +/area/space) +"pA" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/engineering) +"pB" = ( +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/crew_quarters/restrooms) +"pC" = ( +/obj/structure/disposalpipe/segment{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway) +"pE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera/network/talon{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway) +"pG" = ( +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway) +"pH" = ( +/obj/machinery/alarm/talon{ + dir = 8; + pixel_x = 22 + }, +/obj/structure/bed/pod, +/obj/item/weapon/bedsheet/blue, +/obj/machinery/computer/ship/navigation/telescreen{ + pixel_y = -32 + }, +/obj/machinery/light, +/turf/simulated/floor/carpet, +/area/talon_v2/crew_quarters/pilot_room) +"pK" = ( +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/obj/machinery/atmospherics/pipe/manifold/hidden/aux{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/airlock_sensor{ + pixel_y = 28; + req_one_access = list(301) + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/maintenance/fore_starboard) +"pL" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, /area/talon_v2/central_hallway/fore) -"FS" = ( +"pM" = ( +/turf/space, +/area/talon_v2/engineering/starboard) +"pN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/pilot_room) +"pR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/atmospherics) +"pS" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/disposal/wall{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/eng_room) +"pU" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/toolbox/mechanical, +/obj/item/weapon/storage/box/mousetraps, +/obj/item/weapon/storage/box/lights/mixed, +/obj/item/weapon/reagent_containers/spray/cleaner, +/obj/item/weapon/reagent_containers/glass/rag, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = 2; + pixel_y = -28 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/engineering/star_store) +"pV" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/starboard) +"pY" = ( +/obj/machinery/light/small, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/atmospherics) +"pZ" = ( +/obj/structure/closet/crate/engineering, +/obj/fiftyspawner/cardboard, +/obj/fiftyspawner/floor, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/plastic, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/wood, +/obj/item/stack/material/plasteel{ + amount = 30 + }, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/port_store) +"qa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/catwalk, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/aft_port) +"qb" = ( +/obj/machinery/door/firedoor/glass/talon, +/obj/machinery/door/airlock/glass, +/obj/structure/disposalpipe/segment{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway/fore) +"qe" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/hangar) +"qf" = ( +/obj/structure/table/rack/steel, +/obj/random/maintenance/engineering, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/port_store) +"qg" = ( /obj/machinery/atmospherics/pipe/simple/visible{ dir = 5 }, @@ -9595,118 +5093,274 @@ /obj/structure/catwalk, /turf/simulated/floor/plating, /area/talon_v2/engineering/atmospherics) -"FT" = ( -/obj/machinery/door/firedoor/glass/talon, -/obj/machinery/door/airlock/engineering{ - name = "Talon Engineering"; - req_one_access = list(301) +"qi" = ( +/obj/machinery/firealarm{ + layer = 3.3; + pixel_y = 26 }, -/obj/structure/sign/warning/nosmoking_1{ - pixel_x = -26 - }, -/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" - }, -/turf/simulated/floor/plating, -/area/talon_v2/engineering) -"FU" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" + d1 = 4; + d2 = 8; + icon_state = "4-8" }, /obj/structure/catwalk, +/obj/machinery/camera/network/talon, /turf/simulated/floor/plating, -/area/talon_v2/engineering/star_store) -"FX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/closet/emergsuit_wall{ - dir = 8; - pixel_x = -32 +/area/talon_v2/engineering/port_store) +"qk" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/bed/chair/bay/chair, +/obj/machinery/camera/network/talon, +/obj/machinery/button/remote/blast_door{ + id = "talon_brig2"; + name = "Cell 2 Shutters"; + pixel_x = 7; + pixel_y = 28; + req_one_access = list(301) + }, +/obj/machinery/button/remote/blast_door{ + id = "talon_brig1"; + name = "Cell 1 Shutters"; + pixel_x = -8; + pixel_y = 28; + req_one_access = list(301) }, /turf/simulated/floor/tiled/techmaint, +/area/talon_v2/brig) +"qm" = ( +/obj/machinery/vending/security{ + req_access = list(301); + req_log_access = 301 + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/brig) +"qo" = ( +/obj/machinery/cryopod/talon{ + dir = 4 + }, +/obj/machinery/camera/network/talon, +/turf/simulated/floor/tiled/techfloor, /area/talon_v2/central_hallway) -"FY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +"qq" = ( +/obj/effect/map_helper/airlock/sensor/int_sensor, +/obj/machinery/airlock_sensor{ + dir = 1; + pixel_y = -23; + req_one_access = list(301) + }, +/obj/structure/bed/chair/bay/shuttle{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/talonboat) +"qr" = ( +/turf/simulated/wall/shull, +/area/talon_v2/crew_quarters/med_room) +"qs" = ( +/obj/effect/landmark/talon, +/obj/structure/handrail, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/central_hallway) +"qt" = ( +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/talonboat) +"qu" = ( +/obj/structure/railing/grey, +/obj/effect/floor_decal/industrial/outline/red, +/obj/machinery/portable_atmospherics/canister/empty/phoron, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/port_store) +"qv" = ( +/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/techmaint, +/area/talon_v2/armory) +"qw" = ( +/obj/structure/railing/grey, +/obj/machinery/atmospherics/pipe/manifold/visible/blue, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/atmospherics) +"qx" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ dir = 5 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 +/obj/effect/floor_decal/industrial/warning{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow, /obj/structure/catwalk, /turf/simulated/floor/plating, /area/talon_v2/engineering/port) -"FZ" = ( -/obj/structure/catwalk, -/obj/structure/handrail{ - dir = 8 - }, -/turf/simulated/floor/reinforced/airless, -/area/talon_v2/maintenance/wing_port) -"Ga" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/extinguisher_cabinet{ - dir = 4; - pixel_x = -30 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway) -"Gb" = ( +"qy" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; icon_state = "1-2" }, +/obj/machinery/door/blast/regular{ + dir = 4; + id = "talon_cargo_star"; + name = "Cargo Loading Hatch" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/maintenance/wing_starboard) +"qz" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/aux{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/ofd_ops) +"qA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/wall/shull, +/area/talon_v2/crew_quarters/mine_room) +"qC" = ( /obj/machinery/door/firedoor/glass/talon, -/obj/machinery/door/airlock/engineering{ - name = "Talon Starboard Engines & Trash Management"; +/obj/machinery/door/airlock/engineeringatmos{ + name = "Talon Atmospherics"; req_one_access = list(301) }, -/obj/structure/sign/warning/nosmoking_1{ - pixel_x = 26 +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, -/area/talon_v2/engineering/starboard) -"Ge" = ( +/area/talon_v2/engineering/port_store) +"qD" = ( +/obj/machinery/button/remote/airlock{ + dir = 8; + id = "talon_engdoor"; + name = "Door Bolts"; + pixel_x = -28; + specialfunctions = 4 + }, +/obj/item/weapon/bedsheet/orange, +/obj/structure/bed/pod, +/obj/machinery/light_switch{ + dir = 1; + pixel_y = -26 + }, +/turf/simulated/floor/carpet, +/area/talon_v2/crew_quarters/eng_room) +"qE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 5 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc/talon{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/fore_port) +"qG" = ( +/obj/structure/hull_corner, +/turf/simulated/floor/reinforced/airless, +/area/talon_v2/ofd_ops) +"qH" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/camera/network/talon{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/talon_v2/medical) +"qI" = ( +/obj/structure/bed/chair/bay/chair, +/obj/machinery/alarm/talon{ + pixel_y = 24 + }, +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/bar) +"qJ" = ( +/obj/structure/reagent_dispensers/watertank/high, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/gen_store) +"qK" = ( +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/workroom) +"qL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/talonboat) +"qM" = ( /obj/structure/closet/secure_closet/personal/cabinet{ locked = 0 }, /turf/simulated/floor/wood, -/area/talon_v2/crew_quarters/sec_room) -"Gg" = ( -/obj/machinery/vending/sovietsoda, +/area/talon_v2/crew_quarters/eng_room) +"qO" = ( +/obj/machinery/cryopod/robot/talon, /turf/simulated/floor/tiled/techfloor, +/area/talon_v2/central_hallway) +"qP" = ( +/obj/effect/landmark/talon, +/obj/structure/handrail, +/obj/machinery/computer/cryopod{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/central_hallway) +"qQ" = ( +/obj/effect/floor_decal/industrial/loading{ + dir = 4 + }, +/obj/machinery/mineral/input, +/obj/machinery/light/small, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/sign/warning/moving_parts{ + pixel_y = -31 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/refining) +"qU" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, /area/talon_v2/central_hallway/fore) -"Gh" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 6 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/atmospherics) -"Gj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera/network/talon{ - dir = 1 +"qV" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" }, /obj/structure/cable/green{ d1 = 1; @@ -9714,75 +5368,338 @@ icon_state = "1-4" }, /turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway) -"Gl" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/effect/catwalk_plated, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/structure/sign/directions/engineering/atmospherics{ - pixel_x = -32 - }, -/turf/simulated/floor/plating, -/area/talon_v2/central_hallway) -"Gm" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "talonrefinery" - }, -/obj/structure/sign/warning/moving_parts{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/refining) -"Gn" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/table/rack/shelf/steel, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/port_store) -"Go" = ( -/obj/effect/map_helper/airlock/atmos/chamber_pump, -/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux, -/obj/machinery/airlock_sensor{ - pixel_y = 28; - req_one_access = list(301) - }, -/obj/effect/map_helper/airlock/sensor/chamber_sensor, -/obj/structure/handrail, -/turf/simulated/floor/tiled/techfloor/grid, /area/talon_v2/maintenance/wing_port) -"Gp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, +"qW" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 10 + }, /obj/structure/catwalk, /turf/simulated/floor/plating, -/area/talon_v2/engineering/starboard) -"Gq" = ( -/obj/structure/sink{ - pixel_y = 22 - }, -/obj/structure/mirror{ - pixel_y = 32 - }, -/obj/machinery/button/remote/airlock{ - dir = 1; - id = "talon_charger"; - name = "Door Bolts"; - pixel_y = -28; - specialfunctions = 4 +/area/talon_v2/engineering/atmospherics) +"rc" = ( +/obj/machinery/recharge_station, +/obj/machinery/light/small{ + dir = 4 }, /turf/simulated/floor/tiled/white, /area/talon_v2/crew_quarters/restrooms) -"Gs" = ( +"rg" = ( +/obj/item/modular_computer/console/preset/talon{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/brig) +"rh" = ( +/obj/structure/closet/emergsuit_wall{ + dir = 1; + pixel_y = -32 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway/star) +"ri" = ( +/obj/structure/table/standard, +/obj/item/weapon/paper_bin, +/obj/item/weapon/pen, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/brig) +"rj" = ( +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/brig) +"rk" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/extinguisher_cabinet{ + dir = 1; + pixel_y = -32 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/hangar) +"rl" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/starboard) +"rm" = ( +/obj/structure/sign/warning/airlock{ + pixel_x = -31 + }, +/obj/structure/handrail, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/maintenance/wing_port) +"rn" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/red, +/obj/machinery/portable_atmospherics/canister/empty/phoron, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/port_store) +"rq" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/brig) +"rt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass/talon, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/talon_v2/central_hallway/fore) +"ru" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 1 + }, +/obj/structure/sign/department/medbay{ + name = "DOCTOR'S QUARTERS"; + pixel_x = 32 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway/fore) +"rw" = ( +/obj/machinery/door/firedoor/glass/talon, +/obj/machinery/door/airlock/glass{ + name = "Flight Control" + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/central_hallway) +"rx" = ( +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/fore_starboard) +"rz" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 6 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/atmospherics) +"rG" = ( +/obj/structure/table/standard, +/obj/machinery/reagentgrinder, +/turf/simulated/floor/tiled/white, +/area/talon_v2/medical) +"rI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/hangar) +"rJ" = ( +/obj/structure/closet/crate/hydroponics, +/obj/item/stack/material/algae, +/obj/item/stack/material/algae, +/obj/item/stack/material/algae, +/obj/item/stack/material/algae, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/atmospherics) +"rK" = ( +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/central_hallway) +"rL" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/aft_starboard) +"rP" = ( +/obj/structure/closet/emergsuit_wall{ + dir = 4; + pixel_x = 32 + }, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/port_store) +"rQ" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/toilet, +/turf/simulated/floor/tiled/white, +/area/talon_v2/crew_quarters/restrooms) +"rR" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/closet/emergsuit_wall{ + dir = 8; + pixel_x = -32 + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/maintenance/wing_starboard) +"rS" = ( +/obj/machinery/door/window/brigdoor/eastleft{ + dir = 1; + req_access = list(301) + }, +/obj/machinery/button/remote/blast_door{ + dir = 1; + id = "talontrashblast"; + pixel_y = -28 + }, +/obj/machinery/conveyor_switch/oneway{ + id = "talontrash" + }, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/starboard) +"rT" = ( +/obj/structure/sign/directions/engineering{ + pixel_x = 32; + pixel_y = 3 + }, +/obj/structure/sign/directions/medical{ + pixel_x = 32; + pixel_y = -3 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway) +"rU" = ( +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/disposal/wall{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/brig) +"rW" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/aft_port) +"rZ" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 9 + }, +/obj/structure/cable/green, +/obj/machinery/power/apc/talon{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/atmospherics) +"sc" = ( +/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/techmaint, +/area/talon_v2/brig) +"se" = ( +/obj/structure/extinguisher_cabinet{ + dir = 1; + pixel_y = -32 + }, +/obj/structure/table/steel, +/obj/item/device/radio/off{ + channels = list("Talon" = 1) + }, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/atmospherics) +"sf" = ( +/obj/machinery/door/firedoor/glass/talon, +/obj/machinery/door/airlock{ + id_tag = "talon_pilotdoor"; + name = "Pilot's Cabin"; + req_one_access = list(301) + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/crew_quarters/pilot_room) +"sh" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/catwalk_plated, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/talon_v2/brig) +"sk" = ( +/obj/machinery/alarm/talon{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/railing/grey{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/port_store) +"sl" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, @@ -9799,104 +5716,7 @@ }, /turf/simulated/floor/tiled/techmaint, /area/talon_v2/brig) -"Gv" = ( -/obj/structure/handrail{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/maintenance/wing_starboard) -"Gw" = ( -/obj/machinery/door/firedoor/glass/talon, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 1 - }, -/obj/machinery/door/airlock{ - id_tag = "talon_pilotdoor"; - name = "Pilot's Cabin"; - req_one_access = list(301) - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/crew_quarters/pilot_room) -"Gx" = ( -/obj/machinery/power/apc/talon{ - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/cable/green, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway/star) -"Gy" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 5 - }, -/turf/simulated/floor/reinforced/airless, -/area/talon_v2/engineering/starboard) -"GC" = ( -/obj/machinery/power/pointdefense{ - id_tag = "talon_pd" - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 9 - }, -/turf/simulated/floor/reinforced/airless, -/area/space) -"GE" = ( -/obj/machinery/door/firedoor/glass/talon, -/obj/machinery/door/airlock/maintenance/engi{ - name = "Port Eng. Storage"; - req_one_access = list(301) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/port_store) -"GF" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/firealarm{ - layer = 3.3; - pixel_y = 26 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/gen_store) -"GH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway/port) -"GJ" = ( -/obj/structure/sink{ - pixel_y = 22 - }, -/obj/structure/medical_stand/anesthetic, -/turf/simulated/floor/tiled/white, -/area/talon_v2/medical) -"GK" = ( +"sn" = ( /obj/machinery/door/firedoor/glass/talon, /obj/machinery/door/airlock/glass_security{ name = "Talon Brig/Sec"; @@ -9918,113 +5738,149 @@ }, /turf/simulated/floor/tiled/techmaint, /area/talon_v2/brig) -"GQ" = ( -/obj/machinery/atmospherics/pipe/simple/visible/blue, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/atmospherics) -"GT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/maintenance/wing_starboard) -"GU" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/light/small{ +"so" = ( +/obj/effect/floor_decal/corner/black/diagonal, +/obj/structure/table/marble, +/obj/random/pizzabox, +/turf/simulated/floor/tiled/white, +/area/talon_v2/crew_quarters/bar) +"sq" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/anomaly_storage) -"GV" = ( -/obj/machinery/alarm/talon{ - dir = 1; - pixel_y = -22 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/railing/grey{ +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 }, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/port_store) -"GW" = ( -/obj/machinery/atmospherics/omni/atmos_filter{ - name = "N2/O2 Filter"; - tag_east = 4; - tag_north = 3; - tag_south = 2; - tag_west = 1 - }, -/obj/effect/catwalk_plated/dark, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/atmospherics) -"GY" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; icon_state = "4-8" }, -/obj/structure/catwalk, -/obj/machinery/camera/network/talon{ - dir = 1 - }, -/obj/structure/closet/walllocker_double/hydrant/south, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/atmospherics) -"Ha" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/effect/catwalk_plated, +/obj/structure/disposalpipe/segment{ dir = 4 }, +/turf/simulated/floor/plating, +/area/talon_v2/central_hallway) +"ss" = ( /obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/atmospherics) -"Hb" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/aux{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/wing_starboard) -"Hc" = ( /obj/structure/cable/green{ d1 = 2; d2 = 8; icon_state = "2-8" }, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/fore_starboard) +"su" = ( +/obj/structure/railing/grey{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 6 + }, /obj/structure/catwalk, /turf/simulated/floor/plating, -/area/talon_v2/engineering) -"Hf" = ( +/area/talon_v2/engineering/atmospherics) +"sv" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/weapon/gun/energy/netgun, +/obj/item/weapon/cell/device/weapon{ + pixel_x = -5; + pixel_y = 2 + }, +/obj/item/weapon/cell/device/weapon{ + pixel_x = -5; + pixel_y = 2 + }, +/obj/item/weapon/cell/device/weapon, +/obj/item/clothing/accessory/holster/waist, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/armory) +"sw" = ( +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/med_room) +"sx" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24 + }, +/obj/random/multiple/corp_crate/talon_cargo, +/obj/structure/railing/grey{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/maintenance/wing_port) +"sz" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/port) +"sB" = ( /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{ - dir = 10 + dir = 9 }, /obj/structure/catwalk, /turf/simulated/floor/plating, -/area/talon_v2/engineering/port) -"Hg" = ( +/area/talon_v2/engineering/star_store) +"sC" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/closet/walllocker_double/east, +/obj/item/weapon/storage/toolbox/electrical, +/turf/simulated/floor/plating, +/area/talon_v2/engineering) +"sD" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway/fore) +"sE" = ( +/obj/machinery/atmospherics/binary/pump/high_power/on{ + dir = 8 + }, /obj/structure/railing/grey{ dir = 4 }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/table/steel, -/obj/item/stack/marker_beacon/thirty, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/refining) -"Hh" = ( +/turf/simulated/floor/plating, +/area/talon_v2/engineering/atmospherics) +"sF" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -10033,183 +5889,781 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/machinery/holoposter{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway) +"sG" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 8 + }, +/turf/simulated/floor/reinforced/airless, +/area/space) +"sI" = ( +/obj/machinery/door/airlock/glass_external{ + req_one_access = list(301) + }, +/obj/effect/map_helper/airlock/door/ext_door, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/maintenance/fore_starboard) +"sJ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/fuel, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/wall/rshull, +/area/shuttle/talonboat) +"sK" = ( +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc/talon{ + dir = 1; + name = "north bump"; + pixel_y = 28 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/brig) +"sL" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/obj/structure/closet/walllocker_double/hydrant/east, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway) +"sM" = ( +/obj/effect/landmark/map_data/talon, +/turf/space, +/area/space) +"sP" = ( +/obj/machinery/door/firedoor/glass/talon, +/obj/machinery/door/airlock/maintenance/engi{ + name = "Port Eng. Storage"; + req_one_access = list(301) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/port_store) +"sR" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/camera/network/talon{ + dir = 1 + }, +/obj/structure/vehiclecage/quadbike, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/maintenance/wing_starboard) +"sT" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/railing/grey, +/obj/random/multiple/corp_crate/talon_cargo, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/maintenance/wing_port) +"sZ" = ( +/obj/structure/catwalk, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/aft_starboard) +"ta" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/effect/catwalk_plated, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/talon_v2/central_hallway/star) +"tb" = ( +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/central_hallway/fore) +"tc" = ( +/obj/machinery/power/pointdefense{ + id_tag = "talon_pd" + }, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 9 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/reinforced/airless, +/area/space) +"td" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/wall/shull, +/area/talon_v2/central_hallway) +"tf" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/obj/structure/closet/walllocker_double/hydrant/west, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway) +"tg" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/aft_starboard) +"th" = ( +/obj/machinery/camera/network/talon{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/brig) +"ti" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/structure/railing/grey{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/atmospherics) +"tj" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/junction, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway/fore) +"tk" = ( +/obj/structure/disposalpipe/segment{ + dir = 1 + }, +/obj/structure/closet/emergsuit_wall{ + dir = 4; + pixel_x = 32 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway) +"tm" = ( +/obj/structure/lattice, +/turf/space, +/area/space) +"tn" = ( +/obj/structure/closet/emergsuit_wall{ + dir = 1; + pixel_y = -32 + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/brig) +"to" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway) +"tp" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/atmospherics) +"tq" = ( +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/aft_starboard) +"tu" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/crew_quarters/restrooms) +"tw" = ( +/obj/machinery/door/firedoor/glass/talon, +/obj/machinery/door/airlock/maintenance/medical{ + id_tag = "talon_meddoor"; + req_one_access = list(301) + }, +/turf/simulated/floor/plating, +/area/talon_v2/crew_quarters/med_room) +"tx" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/computer/guestpass{ + dir = 8; + pixel_x = 26 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway) +"tz" = ( +/obj/effect/floor_decal/emblem/talon_big{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/central_hallway/fore) +"tA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/brig) +"tB" = ( +/obj/structure/sign/warning/nosmoking_1{ + pixel_x = 26 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/talon_v2/engineering) +"tC" = ( +/turf/simulated/wall/rshull, +/area/talon_v2/maintenance/aft_port) +"tE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/closet/walllocker/medical/east, +/obj/item/weapon/storage/firstaid/regular, +/obj/item/weapon/storage/firstaid/o2, +/obj/item/weapon/storage/firstaid/fire, +/obj/item/device/radio/off{ + channels = list("Talon" = 1) + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/brig) +"tJ" = ( +/obj/structure/railing/grey{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/ore_box, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/refining) +"tK" = ( +/obj/structure/table/woodentable, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/item/modular_computer/laptop/preset/custom_loadout/standard/talon/medical, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/talon_v2/crew_quarters/med_room) +"tM" = ( +/obj/structure/table/woodentable, +/obj/machinery/camera/network/talon{ + dir = 8 + }, +/obj/machinery/recharger, +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/eng_room) +"tQ" = ( +/obj/machinery/light{ + dir = 4 + }, /turf/simulated/floor/tiled/techmaint, /area/talon_v2/central_hallway) -"Hj" = ( -/obj/structure/catwalk, +"tS" = ( +/obj/structure/railing/grey, +/obj/effect/floor_decal/industrial/outline/red, +/obj/machinery/portable_atmospherics/canister/empty/phoron, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/star_store) +"tU" = ( /obj/machinery/light{ dir = 8 }, -/turf/simulated/floor/reinforced/airless, -/area/talon_v2/maintenance/wing_starboard) -"Hl" = ( -/obj/effect/floor_decal/corner/black/diagonal, -/turf/simulated/floor/tiled/white, -/area/talon_v2/crew_quarters/bar) -"Hn" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway) +"tX" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/port) -"Ho" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/machinery/computer/ship/engines{ - dir = 1 - }, -/obj/structure/railing/grey, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/engineering) -"Hq" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/structure/table/standard, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/machinery/camera/network/talon{ - dir = 4 - }, -/obj/machinery/recharger, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/crew_quarters/restrooms) -"Hr" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/anomaly_storage) -"Ht" = ( -/obj/effect/map_helper/airlock/sensor/chamber_sensor, -/obj/machinery/atmospherics/pipe/manifold/hidden/aux{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/airlock_sensor{ - pixel_y = 28; - req_one_access = list(301) - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/maintenance/fore_port) -"Hu" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/workroom) -"Hw" = ( -/obj/structure/railing/grey, -/obj/effect/floor_decal/emblem/talon, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/bridge) -"Hz" = ( -/obj/structure/hull_corner, -/turf/space, -/area/space) -"HA" = ( -/obj/machinery/door/firedoor/glass/talon, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/glass_security{ - name = "Talon Armory"; - req_one_access = list(301) - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, /turf/simulated/floor/tiled/techmaint, -/area/talon_v2/armory) -"HC" = ( +/area/talon_v2/central_hallway/star) +"tZ" = ( +/obj/machinery/door/firedoor/glass/talon, +/obj/machinery/door/airlock{ + name = "Restrooms & Charger" + }, /obj/structure/cable/green{ d1 = 4; d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/talon_v2/maintenance/wing_starboard) -"HD" = ( -/obj/machinery/atmospherics/pipe/manifold4w/visible/yellow, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 +/area/talon_v2/crew_quarters/restrooms) +"ub" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/crew_quarters/restrooms) +"uc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/crew_quarters/restrooms) +"uf" = ( +/obj/machinery/light/small{ + dir = 4 }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/starboard) -"HE" = ( -/obj/item/modular_computer/console/preset/talon, /obj/structure/cable/green{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/turf/simulated/floor/carpet/blucarpet, -/area/talon_v2/crew_quarters/cap_room) -"HF" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/disposal, -/obj/structure/sign/directions/medical{ - pixel_y = -32 - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/crew_quarters/restrooms) -"HG" = ( -/obj/machinery/mineral/stacking_unit_console{ - pixel_y = -6; - req_one_access = list(301) - }, -/obj/structure/girder, -/obj/structure/railing/grey{ - dir = 4 - }, -/obj/structure/railing/grey{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/refining) -"HH" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/obj/effect/catwalk_plated/dark, +/obj/structure/catwalk, /turf/simulated/floor/plating, +/area/talon_v2/maintenance/aft_port) +"uh" = ( +/obj/machinery/door/firedoor/glass/talon, +/obj/machinery/door/airlock{ + id_tag = "talon_restroom1"; + name = "Unisex Restroom" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/talon_v2/crew_quarters/restrooms) +"ui" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet/mime, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/brig) +"uk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/talon_v2/crew_quarters/restrooms) +"ul" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/gen_store) +"um" = ( +/obj/machinery/door/firedoor/glass/talon, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/blast/regular/open{ + dir = 2; + id = "talon_bridge_shields" + }, +/turf/simulated/floor/plating, +/area/talon_v2/bridge) +"uo" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/ofd_ops) +"up" = ( +/turf/simulated/wall/rshull, +/area/talon_v2/anomaly_storage) +"uu" = ( +/obj/structure/hull_corner/long_vert{ + dir = 9 + }, +/turf/space, +/area/space) +"uv" = ( +/obj/machinery/shower, +/obj/item/weapon/soap/deluxe, +/obj/structure/curtain, +/turf/simulated/floor/tiled/white, +/area/talon_v2/crew_quarters/restrooms) +"uw" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/hangar) +"uz" = ( +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/fore_starboard) +"uA" = ( +/obj/effect/floor_decal/emblem/talon_big{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/central_hallway/fore) +"uC" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 5 + }, +/turf/simulated/floor/reinforced/airless, /area/talon_v2/engineering/port) -"HI" = ( -/obj/structure/disposalpipe/segment, +"uF" = ( +/obj/machinery/door/window/brigdoor/eastleft{ + dir = 1; + req_access = list(301) + }, +/obj/machinery/door/window/brigdoor/eastleft{ + dir = 2; + req_access = list(301) + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "talon_brig1"; + name = "Cell Shutters"; + opacity = 0 + }, +/obj/machinery/door/firedoor/glass/talon, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/brig) +"uG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/catwalk, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/aft_port) +"uH" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 6 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/atmospherics) +"uI" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/firealarm{ + layer = 3.3; + pixel_y = 26 + }, +/obj/structure/catwalk, +/obj/machinery/camera/network/talon, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/starboard) +"uJ" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/light_switch{ + pixel_y = 24 + }, +/obj/machinery/camera/network/talon, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/hangar) +"uL" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/wall/rshull, +/area/talon_v2/maintenance/aft_port) +"uM" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway) +"uO" = ( +/obj/machinery/power/pointdefense{ + id_tag = "talon_pd" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 9 + }, +/turf/simulated/floor/reinforced/airless, +/area/space) +"uQ" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/alarm/talon{ + pixel_y = 28 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/engineering/star_store) +"uR" = ( +/obj/structure/table/steel, +/obj/machinery/cell_charger, +/obj/item/weapon/cell/apc, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/engineering) +"uS" = ( +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/gen_store) +"uU" = ( +/obj/structure/bed/chair/bay/chair{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/talonboat) +"uV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/handrail{ + dir = 1 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = 8; + pixel_y = -26 + }, +/obj/structure/fuel_port/heavy{ + dir = 1; + pixel_y = -28 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/talonboat) +"uW" = ( +/obj/structure/table/standard, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/brig) +"uY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/wall/shull, +/area/talon_v2/ofd_ops) +"uZ" = ( +/obj/structure/catwalk, +/obj/structure/trash_pile, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/fore_starboard) +"va" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + id_tag = "talon_boatbay"; + pixel_y = 26 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/hangar) +"vb" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, /obj/structure/catwalk, /turf/simulated/floor/plating, /area/talon_v2/engineering) -"HK" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, +"vc" = ( +/obj/structure/catwalk, +/obj/structure/trash_pile, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/aft_starboard) +"vd" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/starboard) +"ve" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/hangar) +"vh" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/port) +"vi" = ( /obj/machinery/alarm/talon{ dir = 8; pixel_x = 22 @@ -10221,99 +6675,647 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/talon_v2/engineering) -"HN" = ( -/obj/structure/sign/warning/nosmoking_1{ - pixel_x = 26 - }, -/obj/structure/table/rack/shelf/steel, -/obj/random/maintenance/engineering, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/port_store) -"HS" = ( -/turf/simulated/wall/shull, -/area/talon_v2/anomaly_storage) -"HT" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/table/rack/steel, -/obj/item/weapon/shovel, -/obj/item/weapon/shovel, -/obj/item/weapon/mining_scanner, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/refining) -"HU" = ( -/obj/machinery/recharge_station, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/engineering) -"HW" = ( -/obj/machinery/disposal/wall{ +/area/talon_v2/maintenance/fore_port) +"vj" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ dir = 4 }, -/obj/structure/disposalpipe/trunk{ - dir = 8 +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/structure/handrail{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/maintenance/aft_port) +"vk" = ( +/obj/machinery/atmospherics/unary/engine/bigger{ + dir = 1 + }, +/turf/space, +/area/talon_v2/engineering/starboard) +"vp" = ( +/obj/structure/bed/chair/bay/chair, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/brig) +"vr" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/maintenance/wing_starboard) +"vs" = ( +/obj/machinery/smartfridge/chemistry{ + req_access = list(301); + req_one_access = list(301) }, -/turf/simulated/floor/wood, -/area/talon_v2/crew_quarters/bar) -"HX" = ( -/obj/structure/table/standard, -/obj/item/device/defib_kit/jumper_kit/loaded, -/obj/item/device/defib_kit/loaded, -/obj/item/weapon/storage/belt/medical/emt, -/obj/item/device/sleevemate, /turf/simulated/floor/tiled/white, /area/talon_v2/medical) -"HZ" = ( -/obj/machinery/door/airlock/glass_external{ - req_one_access = list(301) +"vt" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 }, -/obj/effect/map_helper/airlock/door/ext_door, +/obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/maintenance/fore_starboard) -"Ia" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 1; - name = "Hangar Bay"; - req_one_access = list(301) - }, -/obj/machinery/door/firedoor/glass/talon, -/turf/simulated/floor/tiled/techfloor, /area/talon_v2/hangar) -"Id" = ( +"vx" = ( +/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{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/refining) +"vy" = ( +/obj/machinery/computer/ship/engines, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/talonboat) +"vz" = ( +/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/closet/walllocker_double/hydrant/south, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway) +"vB" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/port) +"vC" = ( +/obj/machinery/shipsensors{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/shuttle/talonboat) +"vE" = ( +/obj/structure/hull_corner{ + dir = 8 + }, +/turf/simulated/floor/reinforced, +/area/shuttle/talonboat) +"vF" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/sec_room) +"vG" = ( +/obj/structure/extinguisher_cabinet{ + dir = 1; + pixel_y = 32 + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/workroom) +"vH" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/hangar) +"vJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/crew_quarters/restrooms) +"vK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/catwalk, -/obj/machinery/door/firedoor/glass/talon, -/obj/machinery/door/airlock/maintenance/common, /obj/structure/cable/green{ d1 = 1; d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, +/area/talon_v2/maintenance/aft_port) +"vL" = ( +/obj/machinery/power/pointdefense{ + id_tag = "talon_pd" + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 5 + }, +/turf/simulated/floor/reinforced/airless, +/area/space) +"vO" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/talon_v2/engineering) +"vP" = ( +/obj/machinery/atmospherics/pipe/simple/visible/blue{ + dir = 10 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/atmospherics) +"vR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/wing_port) +"vU" = ( +/obj/machinery/door/firedoor/glass/talon, +/obj/machinery/door/airlock/maintenance/sec{ + req_one_access = list(301) + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/brig) +"vV" = ( +/obj/machinery/computer/shuttle_control/explore/talonboat{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/talonboat) +"vY" = ( +/obj/machinery/light/small, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/brig) +"vZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/crew_quarters/restrooms) +"wa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass/talon, +/obj/machinery/door/airlock/maintenance/common, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, /area/talon_v2/maintenance/fore_port) -"Ie" = ( +"wc" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/talon_v2/engineering) +"we" = ( +/obj/structure/catwalk, +/obj/structure/railing/grey{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/fore_starboard) +"wf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/aft_port) +"wg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/bed/chair/bay/chair, +/turf/simulated/floor/carpet, +/area/talon_v2/crew_quarters/med_room) +"wh" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 26 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/secure_storage) +"wi" = ( +/obj/machinery/door/airlock/glass_external, +/obj/effect/map_helper/airlock/door/ext_door, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/ofd_ops) +"wm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/bridge) +"wn" = ( +/obj/structure/disposaloutlet, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/reinforced/airless, +/area/talon_v2/engineering) +"wp" = ( +/obj/effect/map_helper/airlock/sensor/ext_sensor, +/obj/machinery/airlock_sensor{ + pixel_x = -28; + pixel_y = 28; + req_one_access = list(301) + }, +/obj/structure/catwalk, +/turf/simulated/floor/reinforced/airless, +/area/talon_v2/maintenance/aft_port) +"wr" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -24 + }, +/obj/random/multiple/corp_crate/talon_cargo, +/obj/structure/railing/grey{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/maintenance/wing_starboard) +"ws" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/random/multiple/corp_crate/talon_cargo, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/maintenance/wing_port) +"wu" = ( +/obj/structure/catwalk, +/obj/structure/trash_pile, +/obj/structure/railing/grey{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/fore_port) +"wv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = -30 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway) +"ww" = ( +/obj/machinery/power/pointdefense{ + id_tag = "talon_pd" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 10 + }, +/turf/simulated/floor/reinforced/airless, +/area/space) +"wx" = ( +/obj/structure/disposalpipe/segment{ + dir = 1 + }, +/obj/machinery/holoposter{ + dir = 4; + pixel_x = 32 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway) +"wy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment, /obj/machinery/light/small{ dir = 4 }, -/obj/structure/flora/pottedplant/thinbush, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/talon_v2/engineering) +"wz" = ( +/obj/machinery/door/window/brigdoor/eastleft{ + req_access = list(); + req_one_access = list(301) + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/port) +"wF" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/maintenance/wing_starboard) +"wG" = ( +/obj/machinery/power/pointdefense{ + id_tag = "talon_pd" + }, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 5 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/reinforced/airless, +/area/space) +"wI" = ( +/obj/structure/sign/warning/nosmoking_1{ + pixel_x = 26 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/port) +"wK" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 9 + }, +/obj/structure/catwalk, +/obj/structure/railing/grey{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/atmospherics) +"wM" = ( +/obj/machinery/suit_cycler/vintage/tguard, /turf/simulated/floor/tiled/techfloor, -/area/talon_v2/workroom) -"If" = ( -/obj/effect/map_helper/airlock/door/int_door, +/area/talon_v2/brig) +"wN" = ( +/obj/machinery/door/firedoor/glass/talon, +/obj/machinery/door/airlock/medical{ + req_one_access = list(301) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/medical) +"wP" = ( +/obj/machinery/disperser/back{ + dir = 1 + }, +/obj/effect/map_helper/airlock/sensor/ext_sensor, +/obj/machinery/airlock_sensor{ + dir = 8; + pixel_x = 28; + pixel_y = 28; + req_one_access = list(301) + }, +/turf/simulated/floor/reinforced/airless, +/area/talon_v2/ofd_ops) +"wQ" = ( +/obj/structure/trash_pile, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/port_store) +"wS" = ( +/obj/structure/closet/wardrobe/black{ + starts_with = list(/obj/item/clothing/under/color/black = 4, /obj/item/clothing/accessory/storage/black_vest = 4, /obj/item/clothing/accessory/storage/black_drop_pouches = 4, /obj/item/clothing/gloves/black = 4, /obj/item/clothing/head/soft/black = 4, /obj/item/clothing/mask/balaclava = 4, /obj/item/clothing/mask/bandana = 4, /obj/item/clothing/mask/gas/commando = 4, /obj/item/weapon/storage/backpack/messenger/black = 4, /obj/item/weapon/storage/backpack/dufflebag = 4, /obj/item/clothing/shoes/black = 4, /obj/item/clothing/shoes/boots/duty = 4) + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/armory) +"wT" = ( +/obj/machinery/power/pointdefense{ + id_tag = "talon_pd" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 6 + }, +/turf/simulated/floor/reinforced/airless, +/area/space) +"wV" = ( +/obj/machinery/vending/fitness, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/central_hallway/fore) +"wX" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/talonboat) +"wY" = ( +/obj/machinery/light_switch{ + pixel_x = -5; + pixel_y = 26 + }, +/obj/machinery/button/remote/airlock{ + id = "talon_minerdoor"; + name = "Door Bolts"; + pixel_x = 5; + pixel_y = 28; + specialfunctions = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/mine_room) +"xa" = ( /obj/machinery/door/airlock/glass_external{ req_one_access = list(301) }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ +/obj/effect/map_helper/airlock/door/int_door, +/obj/machinery/atmospherics/pipe/simple/hidden/aux, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/maintenance/aft_starboard) +"xb" = ( +/obj/structure/bed/chair/bay/chair{ + dir = 1 + }, +/turf/simulated/floor/carpet/blucarpet, +/area/talon_v2/crew_quarters/cap_room) +"xd" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/closet/emergsuit_wall{ + dir = 1; + pixel_y = -32 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway/port) +"xf" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway) +"xg" = ( +/obj/machinery/button/remote/blast_door{ + id = "talon_cargo_star"; + name = "Cargo Loading Hatches"; + pixel_y = -28 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ dir = 4 }, +/obj/machinery/door/window/brigdoor/northright{ + req_access = list(); + req_one_access = list(301) + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/maintenance/wing_starboard) +"xh" = ( +/obj/structure/bed/chair/bay/comfy/brown{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/bridge) +"xj" = ( +/obj/machinery/vending/engineering{ + products = list(/obj/item/clothing/under/rank/chief_engineer = 4, /obj/item/clothing/under/rank/engineer = 4, /obj/item/clothing/shoes/orange = 4, /obj/item/clothing/head/hardhat = 4, /obj/item/weapon/storage/belt/utility = 4, /obj/item/clothing/glasses/meson = 4, /obj/item/clothing/gloves/yellow = 4, /obj/item/weapon/tool/screwdriver = 12, /obj/item/weapon/tool/crowbar = 12, /obj/item/weapon/tool/wirecutters = 12, /obj/item/device/multitool = 12, /obj/item/weapon/tool/wrench = 12, /obj/item/device/t_scanner = 12, /obj/item/stack/cable_coil/heavyduty = 8, /obj/item/weapon/cell = 8, /obj/item/weapon/weldingtool = 8, /obj/item/clothing/head/welding = 8, /obj/item/weapon/light/tube = 10, /obj/item/clothing/head/hardhat/red = 4, /obj/item/clothing/suit/fire = 4, /obj/item/weapon/stock_parts/scanning_module = 5, /obj/item/weapon/stock_parts/micro_laser = 5, /obj/item/weapon/stock_parts/matter_bin = 5, /obj/item/weapon/stock_parts/manipulator = 5, /obj/item/weapon/stock_parts/console_screen = 5); + req_access = list(301); + req_log_access = 301; + req_one_access = list(301) + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/engineering/star_store) +"xk" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/empty/carbon_dioxide, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/atmospherics) +"xm" = ( +/obj/machinery/door/firedoor/glass/talon, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, /obj/structure/cable/green{ d1 = 4; d2 = 8; icon_state = "4-8" }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/maintenance/wing_starboard) -"Ig" = ( +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "talon_bridge_shields" + }, +/turf/simulated/floor/plating, +/area/talon_v2/bridge) +"xo" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/aft_port) +"xr" = ( /obj/machinery/light/small{ dir = 4 }, @@ -10324,7 +7326,980 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/talon_v2/refining) -"Ih" = ( +"xs" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning/dust/corner, +/turf/simulated/floor/reinforced/airless, +/area/space) +"xu" = ( +/obj/item/modular_computer/console/preset/talon, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/bridge) +"xv" = ( +/obj/machinery/oxygen_pump{ + dir = 4; + pixel_x = 30 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/carpet/blucarpet, +/area/talon_v2/crew_quarters/cap_room) +"xw" = ( +/obj/machinery/door/firedoor/glass/talon, +/obj/machinery/door/airlock/maintenance/common, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/wing_port) +"xx" = ( +/obj/structure/table/rack/steel, +/obj/machinery/power/apc/talon{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/green, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/armory) +"xB" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/catwalk, +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/fore_port) +"xE" = ( +/obj/structure/catwalk, +/obj/machinery/door/firedoor/glass/talon, +/obj/machinery/door/airlock/maintenance/common, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/fore_port) +"xH" = ( +/turf/simulated/wall/rshull, +/area/talon_v2/engineering/port_store) +"xK" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/starboard) +"xL" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/wall/rshull, +/area/talon_v2/maintenance/fore_port) +"xM" = ( +/obj/structure/bookcase/manuals/medical, +/obj/machinery/camera/network/talon, +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/meditation) +"xN" = ( +/obj/machinery/door/firedoor/glass/talon, +/obj/machinery/door/airlock/maintenance/common, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/wing_starboard) +"xP" = ( +/obj/structure/closet/walllocker/emerglocker/west, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/secure_storage) +"xQ" = ( +/obj/machinery/suit_cycler/vintage/tmedic, +/turf/simulated/floor/tiled/white, +/area/talon_v2/medical) +"xR" = ( +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/disposal/wall{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/workroom) +"xV" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/structure/railing/grey, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/atmospherics) +"xW" = ( +/obj/machinery/conveyor{ + id = "talontrash" + }, +/turf/simulated/floor/plating, +/area/talon_v2/engineering) +"xY" = ( +/obj/machinery/door/firedoor/glass/talon, +/obj/machinery/door/airlock/engineering{ + name = "Talon Starboard Engines"; + req_one_access = list(301) + }, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/starboard) +"xZ" = ( +/obj/structure/closet/walllocker/emerglocker/east, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/secure_storage) +"ya" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/toolbox/electrical, +/obj/item/weapon/pipe_dispenser, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/engineering/star_store) +"yc" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/atmospherics) +"yd" = ( +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -24 + }, +/obj/item/device/mass_spectrometer/adv, +/obj/structure/table/standard, +/turf/simulated/floor/tiled/white, +/area/talon_v2/medical) +"yh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 6 + }, +/turf/simulated/wall/rshull, +/area/shuttle/talonboat) +"yi" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/cap_room) +"yj" = ( +/obj/structure/table/standard, +/obj/machinery/chemical_dispenser/full, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/talon_v2/medical) +"yl" = ( +/obj/structure/sign/warning/airlock{ + pixel_x = 32 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/structure/handrail{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/maintenance/wing_port) +"ym" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/tiled/white, +/area/talon_v2/medical) +"yn" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/aft_port) +"yo" = ( +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/talon_v2/engineering) +"yq" = ( +/obj/structure/table/rack/steel, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/suit/space/syndicate/black, +/obj/item/clothing/head/helmet/space/syndicate/black, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/armory) +"yr" = ( +/obj/effect/overmap/visitable/ship/talon, +/turf/space, +/area/space) +"ys" = ( +/obj/structure/hull_corner{ + dir = 1 + }, +/turf/space, +/area/space) +"yt" = ( +/obj/item/weapon/storage/firstaid/regular, +/obj/item/weapon/storage/firstaid/o2, +/obj/structure/closet/walllocker/medical/north, +/obj/item/device/radio/off{ + channels = list("Talon" = 1) + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/bridge) +"yu" = ( +/obj/effect/map_helper/airlock/sensor/ext_sensor, +/obj/machinery/airlock_sensor{ + dir = 4; + pixel_x = -28; + pixel_y = 28; + req_one_access = list(301) + }, +/obj/structure/catwalk, +/turf/simulated/floor/reinforced/airless, +/area/talon_v2/maintenance/fore_starboard) +"yv" = ( +/obj/machinery/computer/shuttle_control/explore/talon_escape{ + dir = 8 + }, +/obj/machinery/alarm/talon{ + pixel_y = 24 + }, +/obj/item/weapon/paper/talon_escape_pod, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/talonpod) +"yw" = ( +/obj/machinery/door/firedoor/glass/talon, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "talon_bridge_shields" + }, +/turf/simulated/floor/plating, +/area/talon_v2/bridge) +"yx" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/random/medical, +/obj/random/medical, +/obj/random/medical, +/obj/random/medical, +/obj/structure/closet/walllocker_double/medical/west, +/turf/simulated/floor/tiled/white, +/area/talon_v2/medical) +"yz" = ( +/obj/machinery/door/airlock/glass_external{ + req_one_access = list(301) + }, +/obj/effect/map_helper/airlock/door/ext_door, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/maintenance/aft_starboard) +"yA" = ( +/obj/effect/landmark/start{ + name = "Talon Captain" + }, +/turf/simulated/floor/carpet/blucarpet, +/area/talon_v2/crew_quarters/cap_room) +"yC" = ( +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/maintenance/wing_starboard) +"yD" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/white, +/area/talon_v2/medical) +"yF" = ( +/obj/item/weapon/storage/firstaid/toxin, +/obj/item/weapon/storage/firstaid/toxin, +/obj/item/weapon/storage/firstaid/o2, +/obj/item/weapon/storage/firstaid/o2, +/obj/item/weapon/storage/firstaid/fire, +/obj/item/weapon/storage/firstaid/fire, +/obj/item/weapon/storage/firstaid/adv, +/obj/item/weapon/storage/firstaid/adv, +/obj/structure/closet/walllocker_double/medical/east, +/turf/simulated/floor/tiled/white, +/area/talon_v2/medical) +"yH" = ( +/obj/machinery/disposal/wall{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/engineering/star_store) +"yJ" = ( +/obj/structure/table/standard, +/obj/fiftyspawner/glass, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/workroom) +"yK" = ( +/obj/machinery/light/small, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/aft_starboard) +"yM" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/atmospherics) +"yN" = ( +/obj/machinery/power/apc/talon{ + dir = 1; + name = "north bump"; + pixel_y = 28 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/camera/network/talon, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/engineering/star_store) +"yO" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/workroom) +"yR" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/table/standard, +/obj/machinery/cell_charger, +/obj/item/weapon/storage/firstaid/regular, +/obj/item/weapon/storage/firstaid/o2, +/obj/structure/closet/walllocker/medical/north, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/workroom) +"yS" = ( +/turf/simulated/wall/shull{ + can_open = 1 + }, +/area/talon_v2/engineering/port_store) +"yU" = ( +/obj/machinery/suit_cycler/vintage/tminer, +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/mine_room) +"yV" = ( +/obj/structure/closet/secure_closet/personal/cabinet{ + locked = 0 + }, +/obj/machinery/camera/network/talon{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/talon_v2/crew_quarters/pilot_room) +"yW" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/structure/railing/grey, +/obj/effect/floor_decal/industrial/outline, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/atmospherics) +"yY" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/weapon/tank/jetpack/carbondioxide, +/obj/item/weapon/tank/jetpack/carbondioxide, +/obj/item/weapon/tank/jetpack/carbondioxide, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/secure_storage) +"yZ" = ( +/obj/machinery/alarm/talon{ + dir = 4; + pixel_x = -22 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc/talon{ + dir = 1; + name = "north bump"; + pixel_y = 28 + }, +/obj/structure/table/rack/steel, +/obj/item/weapon/shovel, +/obj/item/weapon/mining_scanner, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/refining) +"zd" = ( +/obj/structure/fitness/weightlifter, +/obj/machinery/camera/network/talon{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/workroom) +"ze" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway/fore) +"zh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold4w/visible/yellow, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/port) +"zj" = ( +/obj/structure/table/rack/steel, +/obj/item/clothing/suit/space/void/refurb/talon, +/obj/item/clothing/head/helmet/space/void/refurb/talon, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/secure_storage) +"zk" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/wall/rshull, +/area/talon_v2/engineering/port_store) +"zm" = ( +/turf/simulated/wall/rshull, +/area/talon_v2/engineering/starboard) +"zo" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/port_store) +"zq" = ( +/obj/machinery/airlock_sensor{ + dir = 8; + pixel_x = 28; + pixel_y = 28; + req_one_access = list(301) + }, +/obj/effect/map_helper/airlock/sensor/ext_sensor, +/obj/structure/catwalk, +/obj/structure/handrail, +/turf/simulated/floor/reinforced/airless, +/area/talon_v2/maintenance/fore_port) +"zs" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/visible, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/atmospherics) +"zu" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/disposal/wall{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/med_room) +"zv" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "talon_brig1"; + name = "Cell Shutters"; + opacity = 0 + }, +/obj/machinery/door/firedoor/glass/talon, +/turf/simulated/floor/plating, +/area/talon_v2/brig) +"zw" = ( +/obj/machinery/door/airlock/medical{ + name = "Medical Storage"; + req_one_access = list(301) + }, +/obj/machinery/door/firedoor/glass/talon, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/talon_v2/medical) +"zz" = ( +/obj/structure/catwalk, +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/fore_port) +"zA" = ( +/obj/machinery/suit_cycler/vintage/tengi, +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/eng_room) +"zB" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/clothing/suit/space/void/refurb/talon, +/obj/item/clothing/head/helmet/space/void/refurb/talon, +/obj/machinery/camera/network/talon, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/secure_storage) +"zC" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/talonboat) +"zE" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/structure/railing/grey{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/atmospherics) +"zH" = ( +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/disposal/wall{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/sec_room) +"zI" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/random/multiple/corp_crate/talon_cargo, +/obj/structure/railing/grey{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/maintenance/wing_starboard) +"zJ" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/camera/network/talon{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/talon_v2/engineering) +"zK" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway/port) +"zL" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/weapon/gun/energy/locked/frontier/holdout/unlocked, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/armory) +"zM" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/canister/empty, +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/atmospherics) +"zQ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/aux, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light/small, +/obj/structure/closet/emergsuit_wall{ + dir = 1; + pixel_y = -32 + }, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/fore_port) +"zT" = ( +/obj/machinery/disperser/middle{ + dir = 1 + }, +/turf/simulated/floor/reinforced/airless, +/area/talon_v2/ofd_ops) +"zV" = ( +/obj/machinery/atmospherics/pipe/simple/visible/universal{ + dir = 8; + name = "Air to Distro" + }, +/obj/machinery/camera/network/talon, +/obj/structure/railing/grey{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/atmospherics) +"zX" = ( +/obj/machinery/door/firedoor/glass/talon, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "talon_bridge_shields" + }, +/turf/simulated/floor/plating, +/area/talon_v2/bridge) +"zZ" = ( +/obj/structure/table/standard, +/obj/item/clothing/gloves/sterile/nitrile, +/obj/item/clothing/mask/surgical, +/obj/item/clothing/suit/surgicalapron, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/sign/warning/nosmoking_1{ + pixel_x = 26 + }, +/turf/simulated/floor/tiled/white, +/area/talon_v2/medical) +"Af" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/camera/network/talon, +/obj/structure/railing/grey{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/port_store) +"Ag" = ( +/obj/machinery/alarm/talon{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/tiled/white, +/area/talon_v2/medical) +"Ak" = ( +/obj/machinery/door/firedoor/glass/talon, +/obj/machinery/door/airlock/glass, +/obj/structure/sign/directions/bar{ + dir = 1; + pixel_x = 32 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway/fore) +"An" = ( +/obj/structure/bed/chair/office/light, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/workroom) +"Aq" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/flora/pottedplant/thinbush, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/workroom) +"As" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/closet/walllocker_double/hydrant/west, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/maintenance/wing_starboard) +"Au" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass/talon, +/obj/machinery/door/airlock/maintenance/common, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/aft_starboard) +"Av" = ( +/obj/effect/floor_decal/emblem/talon, +/turf/simulated/wall/rshull, +/area/talon_v2/maintenance/wing_port) +"Aw" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/wall/rshull, +/area/talon_v2/maintenance/wing_port) +"Ax" = ( +/obj/machinery/power/apc/talon{ + dir = 1; + name = "north bump"; + pixel_y = 28 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/closet/secure_closet/personal/cabinet{ + locked = 0 + }, +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/mine_room) +"Az" = ( +/obj/structure/table/rack/steel, +/obj/item/device/suit_cooling_unit, +/obj/item/device/suit_cooling_unit, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/secure_storage) +"AB" = ( +/obj/structure/catwalk, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/aft_starboard) +"AD" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/maintenance/wing_port) +"AE" = ( +/obj/machinery/light_switch{ + dir = 1; + pixel_y = -26 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/gen_store) +"AH" = ( +/obj/machinery/atmospherics/portables_connector/aux, +/obj/effect/floor_decal/industrial/outline, +/obj/machinery/portable_atmospherics/canister/air, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/fore_port) +"AI" = ( +/obj/machinery/power/apc/talon{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/gen_store) +"AJ" = ( +/obj/machinery/alarm/talon{ + dir = 1; + pixel_y = -25 + }, +/obj/structure/reagent_dispensers/foam, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/gen_store) +"AL" = ( +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/railing/grey{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/talon_v2/engineering) +"AN" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/clothing/head/beret/talon, +/obj/item/clothing/head/beret/talon, +/obj/item/clothing/head/beret/talon, +/obj/item/clothing/head/beret/talon, +/obj/item/clothing/suit/storage/hooded/wintercoat/talon, +/obj/item/clothing/suit/storage/hooded/wintercoat/talon, +/obj/item/clothing/suit/storage/hooded/wintercoat/talon, +/obj/item/clothing/suit/storage/hooded/wintercoat/talon, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/secure_storage) +"AO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/catwalk_plated, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/talon_v2/central_hallway/fore) +"AQ" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/secure_storage) +"AS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/bridge) +"AT" = ( +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/terminal{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/talon_v2/engineering) +"AU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/aux, +/obj/machinery/door/firedoor/glass/talon, +/obj/machinery/door/airlock/maintenance/common, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/wing_starboard) +"AV" = ( /obj/machinery/door/airlock/glass_external{ req_one_access = list(301) }, @@ -10340,30 +8315,513 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/shuttle/talonboat) -"Ii" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 +"AY" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "talonrefinery" }, -/obj/structure/railing/grey{ - dir = 8 +/obj/machinery/mineral/output, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/refining) +"AZ" = ( +/obj/machinery/telecomms/allinone/talon{ + id = "talon_aio"; + network = "Talon" }, -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/obj/structure/railing/grey, -/obj/structure/table/steel, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/engineering) -"Ij" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/corner{ +/obj/machinery/light/small{ dir = 1 }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/engineering) +"Ba" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/device/suit_cooling_unit, +/obj/item/weapon/tank/oxygen, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/secure_storage) +"Bb" = ( +/obj/structure/catwalk, +/obj/structure/disposalpipe/junction/yjunction, /turf/simulated/floor/plating, -/area/talon_v2/engineering/starboard) -"Il" = ( +/area/talon_v2/engineering) +"Bc" = ( +/obj/effect/floor_decal/industrial/outline/red, +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/structure/railing/grey, +/obj/machinery/portable_atmospherics/canister/phoron/engine_setup, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/port) +"Bd" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/bed/chair/bay/chair, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/central_hallway) +"Be" = ( +/obj/machinery/door/firedoor/glass/talon, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/talon_v2/ofd_ops) +"Bf" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/maintenance/wing_starboard) +"Bi" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/clothing/suit/space/void/refurb/talon, +/obj/machinery/light_switch{ + dir = 1; + pixel_y = -26 + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/secure_storage) +"Bj" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/aft_starboard) +"Bm" = ( +/obj/structure/hull_corner{ + dir = 8 + }, +/turf/space, +/area/space) +"Bn" = ( +/obj/machinery/atmospherics/binary/pump/on{ + dir = 8; + name = "Air to Distro" + }, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/atmospherics) +"Bq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/bridge) +"Bt" = ( +/obj/structure/table/steel, +/obj/item/device/radio/off{ + channels = list("Talon" = 1); + pixel_y = 6 + }, +/obj/item/device/radio/off{ + channels = list("Talon" = 1); + pixel_x = -6; + pixel_y = 4 + }, +/obj/item/device/radio/off{ + channels = list("Talon" = 1); + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/device/radio/off{ + channels = list("Talon" = 1) + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/secure_storage) +"Bu" = ( +/obj/machinery/alarm/talon{ + dir = 1; + pixel_y = -25 + }, +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/secure_storage) +"Bv" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/maintenance/wing_port) +"Bw" = ( +/turf/simulated/wall/shull, +/area/talon_v2/workroom) +"By" = ( +/obj/structure/extinguisher_cabinet{ + dir = 8; + pixel_x = 30 + }, +/obj/structure/flora/pottedplant/orientaltree, +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/bar) +"Bz" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 1 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/atmospherics) +"BC" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/alarm/talon{ + dir = 8; + pixel_x = 22 + }, +/obj/random/multiple/corp_crate/talon_cargo, +/obj/structure/railing/grey, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/maintenance/wing_port) +"BD" = ( +/obj/machinery/door/firedoor/glass/talon, +/obj/machinery/door/airlock/maintenance/engi{ + name = "Talon Atmospherics Maintenance Access"; + req_one_access = list(301) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/atmospherics) +"BH" = ( +/obj/structure/closet/wardrobe/black{ + starts_with = list(/obj/item/clothing/under/color/black = 4, /obj/item/clothing/accessory/storage/black_vest = 4, /obj/item/clothing/accessory/storage/black_drop_pouches = 4, /obj/item/clothing/gloves/black = 4, /obj/item/clothing/head/soft/black = 4, /obj/item/clothing/mask/balaclava = 4, /obj/item/clothing/mask/bandana = 4, /obj/item/clothing/mask/gas/commando = 4, /obj/item/weapon/storage/backpack/messenger/black = 4, /obj/item/weapon/storage/backpack/dufflebag = 4, /obj/item/clothing/shoes/black = 4, /obj/item/clothing/shoes/boots/duty = 4) + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/crew_quarters/restrooms) +"BI" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/effect/floor_decal/industrial/outline, +/obj/machinery/portable_atmospherics/powered/pump/filled, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/atmospherics) +"BK" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet{ + dir = 1; + pixel_y = -32 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/hangar) +"BO" = ( +/obj/machinery/power/apc/talon{ + dir = 8; + name = "west bump"; + pixel_x = -28 + }, +/obj/structure/table/standard, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -25 + }, +/obj/machinery/recharger, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/white, +/area/talon_v2/medical) +"BT" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/talon_v2/medical) +"BU" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/firstaid/regular, +/obj/item/weapon/storage/firstaid/adv{ + pixel_x = 2; + pixel_y = 5 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/closet/walllocker_double/medical/south, +/turf/simulated/floor/tiled/white, +/area/talon_v2/medical) +"BV" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/maintenance/wing_port) +"BW" = ( +/obj/structure/panic_button, +/obj/structure/table/steel, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/talonpod) +"BX" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/firstaid/surgery, +/obj/item/stack/nanopaste{ + pixel_x = -7; + pixel_y = -4 + }, +/obj/item/stack/nanopaste{ + pixel_x = 9; + pixel_y = -4 + }, +/obj/item/device/robotanalyzer{ + pixel_y = -8 + }, +/obj/machinery/alarm/talon{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/tiled/white, +/area/talon_v2/medical) +"BY" = ( +/obj/structure/bed/chair/wood, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/carpet/blucarpet, +/area/talon_v2/crew_quarters/cap_room) +"BZ" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/mine_room) +"Cb" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/secure_storage) +"Cd" = ( +/obj/structure/closet/secure_closet/talon_pilot, +/obj/item/device/radio/off{ + channels = list("Talon" = 1) + }, +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/pilot_room) +"Cf" = ( +/obj/structure/table/rack/steel, +/obj/item/clothing/suit/space/anomaly, +/obj/item/clothing/head/helmet/space/anomaly, +/obj/item/clothing/mask/breath, +/obj/item/weapon/storage/belt/archaeology, +/obj/machinery/light_switch{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/anomaly_storage) +"Ck" = ( +/obj/machinery/ntnet_relay, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/engineering) +"Cq" = ( +/obj/structure/table/standard, +/obj/machinery/chemical_dispenser/biochemistry/full, +/turf/simulated/floor/tiled/white, +/area/talon_v2/medical) +"Cr" = ( +/obj/structure/railing/grey{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/red, +/obj/machinery/portable_atmospherics/canister/empty/phoron, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/port_store) +"Cv" = ( +/obj/structure/disposaloutlet{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/reinforced/airless, +/area/talon_v2/ofd_ops) +"Cy" = ( +/obj/structure/table/standard, +/obj/item/device/defib_kit/jumper_kit/loaded, +/obj/item/device/defib_kit/loaded, +/obj/item/weapon/storage/belt/medical/emt, +/obj/item/device/sleevemate, +/turf/simulated/floor/tiled/white, +/area/talon_v2/medical) +"CA" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/catwalk_plated, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/sign/directions/engineering/atmospherics{ + pixel_x = -32 + }, +/turf/simulated/floor/plating, +/area/talon_v2/central_hallway) +"CB" = ( +/obj/effect/floor_decal/emblem/talon_big{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/central_hallway/fore) +"CC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/atmospherics) +"CE" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/handrail{ + dir = 4 + }, +/obj/structure/closet/emergsuit_wall{ + dir = 8; + pixel_x = -32 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/maintenance/wing_port) +"CF" = ( +/obj/item/weapon/storage/box/bodybags, +/obj/item/roller, +/obj/item/roller{ + pixel_y = 8 + }, +/obj/structure/table/standard, +/turf/simulated/floor/tiled/white, +/area/talon_v2/medical) +"CH" = ( +/obj/structure/table/standard, +/obj/machinery/recharger, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -25 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/workroom) +"CI" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/workroom) +"CJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/aft_port) +"CK" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/catwalk, +/obj/structure/closet/walllocker_double/west, +/obj/item/weapon/cell/apc, +/obj/item/weapon/cell/apc, +/obj/random/maintenance/engineering, +/obj/random/maintenance/engineering, +/obj/item/device/radio/off{ + channels = list("Talon" = 1) + }, +/obj/item/clothing/suit/radiation, +/obj/item/clothing/head/radiation, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/talon_v2/engineering) +"CM" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/engineering/star_store) +"CN" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/noticeboard{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway/fore) +"CO" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway) +"CP" = ( +/obj/machinery/suit_cycler/vintage/tcrew, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/secure_storage) +"CR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -10372,8 +8830,981 @@ }, /obj/structure/catwalk, /turf/simulated/floor/plating, +/area/talon_v2/engineering/atmospherics) +"CS" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/workroom) +"CU" = ( +/obj/item/modular_computer/console/preset/talon{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/workroom) +"CV" = ( +/obj/machinery/power/apc/talon{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/table/standard, +/obj/item/weapon/paper_bin, +/obj/item/weapon/pen, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/workroom) +"CX" = ( +/obj/machinery/disperser/front{ + dir = 1 + }, +/turf/simulated/floor/reinforced/airless, +/area/talon_v2/ofd_ops) +"CY" = ( +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/maintenance/wing_port) +"Dd" = ( +/turf/simulated/wall/shull, +/area/talon_v2/secure_storage) +"Dg" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/wall/rshull, +/area/talon_v2/maintenance/aft_starboard) +"Di" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/maintenance/wing_port) +"Dj" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/hangar) +"Dk" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/holoposter{ + dir = 1; + pixel_y = 32 + }, +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/bar) +"Dl" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/maintenance/wing_starboard) +"Dm" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/wall/rshull, +/area/talon_v2/maintenance/wing_starboard) +"Dq" = ( +/turf/simulated/wall/rshull, +/area/talon_v2/maintenance/aft_starboard) +"Ds" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/atmospherics) +"Du" = ( +/obj/effect/floor_decal/emblem/talon, +/turf/simulated/wall/rshull, +/area/talon_v2/maintenance/wing_starboard) +"Dx" = ( +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/workroom) +"Dy" = ( +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux, +/obj/structure/handrail, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/maintenance/wing_port) +"DB" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/railing/grey, +/obj/random/multiple/corp_crate/talon_cargo, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/maintenance/wing_port) +"DC" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass/talon, +/obj/machinery/door/blast/regular/open{ + id = "talon_boat_cockpit" + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/shuttle/talonboat) +"DD" = ( +/turf/simulated/wall/shull, +/area/talon_v2/maintenance/aft_starboard) +"DG" = ( +/obj/structure/disposalpipe/segment{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway/fore) +"DH" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 10 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/ofd_ops) +"DI" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/camera/network/talon, +/obj/random/multiple/corp_crate/talon_cargo, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/maintenance/wing_starboard) +"DK" = ( +/obj/structure/bed/chair/bay/chair{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/ofd_ops) +"DM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/atmospherics) +"DN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/aft_port) +"DP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/catwalk, +/obj/machinery/light_switch{ + pixel_y = 24 + }, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/atmospherics) +"DR" = ( +/obj/structure/railing/grey{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/atmospherics) +"DU" = ( +/obj/effect/floor_decal/corner/black/diagonal, +/turf/simulated/floor/tiled/white, +/area/talon_v2/crew_quarters/bar) +"DV" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 9 + }, +/turf/simulated/floor/reinforced/airless, /area/talon_v2/engineering/starboard) -"Im" = ( +"DW" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/maintenance/wing_port) +"DX" = ( +/obj/machinery/camera/network/talon{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway) +"DY" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/railing/grey, +/obj/random/multiple/corp_crate/talon_cargo, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/maintenance/wing_starboard) +"DZ" = ( +/obj/structure/closet/secure_closet/talon_captain, +/obj/item/device/radio/off{ + channels = list("Talon" = 1) + }, +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/cap_room) +"Ea" = ( +/obj/structure/railing/grey{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/bridge) +"Ec" = ( +/obj/machinery/door/airlock/maintenance/cargo{ + id_tag = talon_minerdoor; + req_one_access = list(301) + }, +/turf/simulated/floor/plating, +/area/talon_v2/crew_quarters/mine_room) +"Ee" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/visible/yellow, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/starboard) +"Ef" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/weapon/gun/energy/gun/burst, +/obj/item/weapon/cell/device/weapon{ + pixel_x = -5; + pixel_y = 2 + }, +/obj/item/weapon/cell/device/weapon, +/obj/item/clothing/accessory/holster/waist, +/obj/machinery/light_switch{ + dir = 1; + pixel_y = -26 + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/armory) +"Ei" = ( +/obj/machinery/door/airlock/mining{ + id_tag = talon_minerdoor; + name = "Miner's Cabin"; + req_one_access = list(301) + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/crew_quarters/mine_room) +"Ej" = ( +/obj/structure/table/rack/steel, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/star_store) +"Ek" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/pilot_room) +"En" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/brig) +"Eo" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/central_hallway) +"Ep" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/closet/walllocker_double/hydrant/west, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/port_store) +"Eq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/central_hallway/fore) +"Er" = ( +/obj/structure/loot_pile/maint/boxfort, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/port_store) +"Eu" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/closet/secure_closet/talon_miner, +/obj/item/weapon/storage/box/nifsofts_mining, +/obj/item/device/radio/off{ + channels = list("Talon" = 1) + }, +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/mine_room) +"Ev" = ( +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux, +/obj/structure/handrail, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/maintenance/wing_starboard) +"Ew" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera/network/talon, +/obj/machinery/atm{ + pixel_y = 31 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway/port) +"Ey" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "talon_brig2"; + name = "Cell Shutters"; + opacity = 0 + }, +/obj/machinery/door/firedoor/glass/talon, +/turf/simulated/floor/plating, +/area/talon_v2/brig) +"EB" = ( +/obj/effect/shuttle_landmark/premade/talon_v2_wing_port, +/turf/simulated/floor/reinforced/airless, +/area/space) +"ED" = ( +/obj/machinery/door/window/brigdoor/eastleft{ + dir = 1; + req_access = list(301) + }, +/obj/machinery/door/window/brigdoor/eastleft{ + dir = 2; + req_access = list(301) + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "talon_brig2"; + name = "Cell Shutters"; + opacity = 0 + }, +/obj/machinery/door/firedoor/glass/talon, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/brig) +"EE" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/aft_port) +"EF" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/aux{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/maintenance/wing_port) +"EH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/aux, +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/central_hallway/fore) +"EI" = ( +/obj/structure/catwalk, +/obj/structure/railing/grey, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/atmospherics) +"EJ" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/aux, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/maintenance/wing_port) +"EL" = ( +/obj/machinery/power/apc/talon{ + dir = 8; + name = "west bump"; + pixel_x = -28 + }, +/obj/structure/cable/green, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/handrail{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/maintenance/wing_port) +"EN" = ( +/obj/machinery/door/firedoor/glass/talon, +/obj/machinery/door/airlock/command{ + id_tag = "talon_capdoor"; + name = "Captain's Cabin"; + req_one_access = list(301) + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/bridge) +"EO" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/closet/emergsuit_wall{ + dir = 8; + pixel_x = -32 + }, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/port) +"EP" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/maintenance/wing_port) +"ES" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/secure_storage) +"ET" = ( +/obj/structure/railing/grey, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + dir = 8; + pixel_x = 30 + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/bridge) +"EV" = ( +/obj/structure/table/rack/steel, +/obj/item/clothing/shoes/leg_guard/combat, +/obj/item/clothing/gloves/arm_guard/combat, +/obj/item/clothing/under/syndicate/combat, +/obj/item/clothing/suit/armor/combat, +/obj/item/clothing/head/helmet/combat, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/armory) +"EX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/maintenance/wing_port) +"EY" = ( +/obj/structure/extinguisher_cabinet{ + dir = 1; + pixel_y = -32 + }, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/port_store) +"Fa" = ( +/obj/effect/map_helper/airlock/sensor/ext_sensor, +/obj/machinery/airlock_sensor{ + pixel_x = 28; + pixel_y = 28; + req_one_access = list(301) + }, +/obj/structure/catwalk, +/turf/simulated/floor/reinforced/airless, +/area/talon_v2/maintenance/aft_starboard) +"Fc" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/weapon/tank/oxygen, +/obj/item/weapon/tank/oxygen, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/secure_storage) +"Fd" = ( +/obj/structure/disposalpipe/segment{ + dir = 1 + }, +/obj/structure/sign/directions/bar{ + dir = 1; + pixel_x = -32; + pixel_y = -3 + }, +/obj/structure/sign/directions/bridge{ + dir = 1; + pixel_x = -32; + pixel_y = 3 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway) +"Fe" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/effect/catwalk_plated, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/talon_v2/central_hallway/star) +"Ff" = ( +/turf/simulated/wall/tgmc/rwall, +/area/shuttle/talonpod) +"Fg" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/turf/simulated/floor/reinforced/airless, +/area/space) +"Fh" = ( +/obj/structure/sign/warning/airlock{ + pixel_x = 32 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/structure/handrail{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/maintenance/wing_starboard) +"Fj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/closet/walllocker/medical/north, +/obj/item/weapon/storage/firstaid/regular, +/obj/item/weapon/storage/firstaid/o2, +/obj/item/device/radio/off{ + channels = list("Talon" = 1) + }, +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/cap_room) +"Fk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/maintenance/wing_port) +"Fn" = ( +/turf/simulated/floor/tiled/white, +/area/talon_v2/medical) +"Fo" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway) +"Fq" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/med_room) +"Fr" = ( +/obj/machinery/mineral/processing_unit{ + points_mult = 0 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/refining) +"Ft" = ( +/obj/machinery/door/firedoor/glass/talon, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway/port) +"Fv" = ( +/obj/machinery/power/apc/talon{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/handrail{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/bridge) +"Fw" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/port) +"Fx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/power/apc/talon{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway) +"Fy" = ( +/obj/machinery/door/firedoor/glass/talon, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/voidcraft{ + name = "Cabin Access"; + req_one_access = list(301) + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/talonboat) +"Fz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/aux, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/ship_munition/disperser_charge/emp, +/turf/simulated/floor/reinforced, +/area/talon_v2/ofd_ops) +"FB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/firealarm{ + layer = 3.3; + pixel_y = 26 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway/port) +"FC" = ( +/obj/machinery/drone_fabricator/talon, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/port_store) +"FG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/port_store) +"FK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc/talon{ + dir = 1; + name = "north bump"; + pixel_y = 28 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway/port) +"FM" = ( +/obj/machinery/washing_machine, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/crew_quarters/restrooms) +"FN" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/random/multiple/corp_crate/talon_cargo, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/maintenance/wing_port) +"FO" = ( +/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/closet/walllocker_double/hydrant/north, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway/port) +"FP" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/catwalk, +/obj/structure/extinguisher_cabinet{ + dir = 1; + pixel_y = -32 + }, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/starboard) +"FT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway) +"FU" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/star_store) +"FX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/sign/directions/security{ + dir = 8; + pixel_x = -32; + pixel_y = 3 + }, +/obj/structure/sign/directions/security/brig{ + dir = 8; + pixel_x = -32; + pixel_y = -3 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway) +"FY" = ( +/obj/machinery/power/apc/talon{ + dir = 1; + name = "north bump"; + pixel_y = 28 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/port) +"FZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway/port) +"Ga" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/sign/directions/security/armory{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway) +"Gb" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -10390,272 +9821,685 @@ /obj/structure/catwalk, /turf/simulated/floor/plating, /area/talon_v2/engineering) -"In" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ +"Gg" = ( +/obj/machinery/computer/ship/disperser{ dir = 8 }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/bridge) -"Io" = ( -/obj/machinery/atmospherics/portables_connector/aux, -/obj/effect/floor_decal/industrial/outline, -/obj/machinery/portable_atmospherics/canister/air, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/fore_port) -"Ip" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/effect/floor_decal/corner/black/diagonal, -/obj/item/weapon/stool/baystool/padded{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/talon_v2/crew_quarters/bar) -"Iq" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway) -"Is" = ( -/obj/machinery/camera/network/talon{ - dir = 1 - }, -/obj/structure/safe/floor{ - name = "smuggling compartment" - }, -/turf/simulated/floor/carpet/blucarpet, -/area/talon_v2/crew_quarters/cap_room) -"It" = ( -/obj/structure/closet/crate, -/obj/structure/railing/grey, -/obj/structure/extinguisher_cabinet{ - dir = 4; - pixel_x = -30 +/obj/item/weapon/paper/talon_cannon, +/obj/machinery/alarm/talon{ + pixel_y = 24 }, /turf/simulated/floor/tiled/techfloor, -/area/talon_v2/refining) -"Iu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/workroom) -"Iv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/firedoor/glass/talon, -/obj/machinery/door/airlock/maintenance/common, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/aft_port) -"Ix" = ( -/obj/structure/bed/chair/bay/chair, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/brig) -"Iz" = ( +/area/talon_v2/ofd_ops) +"Gi" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/maintenance/wing_starboard) -"IC" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/railing/grey{ +/obj/structure/catwalk, +/obj/machinery/light/small{ dir = 4 }, /turf/simulated/floor/plating, /area/talon_v2/engineering/port_store) -"ID" = ( -/obj/effect/floor_decal/industrial/warning/dust{ +"Gl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ dir = 1 }, -/turf/simulated/floor/reinforced/airless, -/area/talon_v2/engineering/port) -"IE" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ +/obj/machinery/light{ dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/machinery/holoposter{ + dir = 8; + pixel_x = -32 }, /turf/simulated/floor/tiled/techmaint, -/area/talon_v2/maintenance/wing_port) -"IF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 9 +/area/talon_v2/central_hallway) +"Gm" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/effect/catwalk_plated, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/talon_v2/central_hallway/port) +"Gn" = ( +/obj/machinery/power/apc/talon{ + dir = 1; + name = "north bump"; + pixel_y = 28 }, /obj/structure/cable/green{ d2 = 8; icon_state = "0-8" }, -/obj/machinery/power/apc/talon{ - name = "south bump"; - pixel_y = -24 +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/port_store) +"Gp" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/starboard) +"Gq" = ( +/obj/machinery/door/firedoor/glass/talon, +/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/techmaint, +/area/talon_v2/central_hallway/port) +"Gr" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/maintenance/wing_starboard) +"Gs" = ( +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -24 + }, +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/sec_room) +"Gu" = ( +/obj/structure/table/rack/steel, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/port_store) +"Gv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/wing_starboard) +"Gw" = ( +/obj/effect/floor_decal/emblem/talon_big{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/central_hallway/fore) +"Gx" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + dir = 8; + pixel_x = 30 + }, +/turf/simulated/floor/tiled/white, +/area/talon_v2/medical) +"Gy" = ( +/obj/effect/floor_decal/industrial/outline/red, +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/structure/railing/grey, +/obj/machinery/portable_atmospherics/canister/phoron/engine_setup, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/starboard) +"Gz" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 4 + }, +/turf/simulated/floor/reinforced/airless, +/area/space) +"GA" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/talon_v2/engineering) +"GC" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway) +"GE" = ( +/obj/machinery/atmospherics/binary/algae_farm/filled{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/atmospherics) +"GH" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/firealarm{ + layer = 3.3; + pixel_y = 26 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/gen_store) +"GJ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/table/standard, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/camera/network/talon{ + dir = 4 + }, +/obj/machinery/recharger, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/crew_quarters/restrooms) +"GK" = ( +/obj/structure/closet/emergsuit_wall{ + dir = 1; + pixel_y = -32 + }, +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/sec_room) +"GP" = ( +/obj/machinery/power/smes/buildable/offmap_spawn{ + RCon_tag = "Talon Port SMES" }, /obj/structure/cable/green{ d2 = 4; icon_state = "0-4" }, /turf/simulated/floor/plating, -/area/talon_v2/maintenance/fore_starboard) -"IG" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal{ - name = "Waste to Filter" +/area/talon_v2/engineering) +"GQ" = ( +/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/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway) +"GU" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway/star) +"GV" = ( +/obj/machinery/light/small, /obj/structure/catwalk, /turf/simulated/floor/plating, /area/talon_v2/engineering/atmospherics) -"IJ" = ( +"GW" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red, /obj/structure/catwalk, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, +/obj/structure/railing/grey, /turf/simulated/floor/plating, -/area/talon_v2/maintenance/aft_starboard) -"IK" = ( -/turf/simulated/wall/rshull, -/area/talon_v2/engineering/generators) -"IL" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ - dir = 1 +/area/talon_v2/engineering/atmospherics) +"GY" = ( +/obj/structure/girder, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/atmospherics) +"GZ" = ( +/obj/machinery/light/small{ + dir = 8 }, -/turf/simulated/wall/rshull, -/area/shuttle/talonboat) -"IM" = ( +/obj/structure/table/rack/steel, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/star_store) +"Ha" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/atmospherics) +"Hb" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/maintenance/wing_starboard) +"Hc" = ( +/obj/structure/disposalpipe/trunk, +/obj/machinery/disposal/wall, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/engineering) +"Hf" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 6 }, /obj/structure/catwalk, -/obj/structure/disposalpipe/segment{ +/turf/simulated/floor/plating, +/area/talon_v2/engineering/atmospherics) +"Hg" = ( +/obj/machinery/conveyor{ dir = 8; - icon_state = "pipe-c" + id = "talonrefinery" }, -/obj/structure/railing/grey{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/starboard) -"IN" = ( -/obj/structure/table/steel, -/obj/machinery/camera/network/talon, -/obj/machinery/cell_charger, -/obj/item/weapon/cell/apc, +/obj/structure/plasticflaps, /turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/engineering) -"IP" = ( -/obj/structure/catwalk, -/obj/structure/barricade, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/aft_port) -"IR" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ +/area/talon_v2/refining) +"Hh" = ( +/obj/structure/table/woodentable, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, -/obj/effect/map_helper/airlock/atmos/chamber_pump, -/obj/structure/handrail{ - dir = 1 +/obj/item/weapon/paper/talon_guard, +/turf/simulated/floor/carpet, +/area/talon_v2/crew_quarters/sec_room) +"Hj" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/maintenance/fore_port) -"IS" = ( -/obj/effect/floor_decal/industrial/warning/corner{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, +/obj/machinery/door/firedoor/glass/talon, /turf/simulated/floor/tiled/techfloor, -/area/talon_v2/anomaly_storage) -"IU" = ( -/obj/structure/bookcase/manuals/research_and_development, -/turf/simulated/floor/wood, -/area/talon_v2/crew_quarters/meditation) -"IW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/sign/department/armory{ - name = "GUARD'S QUARTERS"; +/area/talon_v2/hangar) +"Hn" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/firealarm{ + layer = 3.3; + pixel_y = 26 + }, +/obj/structure/catwalk, +/obj/machinery/camera/network/talon, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/port) +"Hq" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/closet/emergsuit_wall{ + dir = 8; pixel_x = -32 }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/crew_quarters/restrooms) +"Hr" = ( +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/obj/machinery/airlock_sensor{ + pixel_y = 24; + req_one_access = list(301) + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/aux{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/structure/handrail, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/talonboat) +"Ht" = ( +/obj/machinery/door/firedoor/glass/talon, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/talon_v2/ofd_ops) +"Hu" = ( +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + id_tag = "talon_boat"; + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/aux{ + dir = 1 + }, +/obj/structure/handrail, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/talonboat) +"Hv" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/railing/grey{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/talon_v2/engineering) +"Hw" = ( +/obj/machinery/computer/ship/navigation, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/button/remote/blast_door{ + id = "talon_bridge_shields"; + name = "bridge blast shields"; + pixel_y = 16 + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/bridge) +"Hx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/starboard) +"Hy" = ( +/obj/structure/handrail, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 4 + }, +/obj/structure/closet/walllocker_double/survival/north, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/talonboat) +"Hz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass/talon, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/hangar) +"HA" = ( +/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/techmaint, -/area/talon_v2/central_hallway/fore) -"IX" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/shoes/magboots, -/turf/simulated/floor/tiled/techfloor, /area/talon_v2/secure_storage) -"IY" = ( +"HD" = ( +/obj/structure/disposaloutlet{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/starboard) +"HE" = ( +/obj/machinery/alarm/talon{ + dir = 8; + pixel_x = 22 + }, /obj/structure/cable/green{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/wood, -/area/talon_v2/crew_quarters/eng_room) -"Jd" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 +/turf/simulated/floor/carpet/blucarpet, +/area/talon_v2/crew_quarters/cap_room) +"HF" = ( +/obj/machinery/power/apc/talon{ + dir = 8; + name = "west bump"; + pixel_x = -28 }, -/obj/machinery/suspension_gen{ - req_access = list(301) +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/crew_quarters/restrooms) +"HG" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/closet/emergsuit_wall{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway/star) +"HH" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/anomaly_storage) -"Jf" = ( /obj/machinery/door/firedoor/glass/talon, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/structure/sign/warning/nosmoking_1{ + pixel_x = -26 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, /obj/machinery/door/airlock/engineering{ - id_tag = "talon_engdoor"; - name = "Engineer's Cabin"; + name = "Talon Port Engines"; req_one_access = list(301) }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/engineering/star_store) -"Ji" = ( +/turf/simulated/floor/plating, +/area/talon_v2/engineering/port) +"HI" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/loot_pile/maint/trash, +/turf/simulated/floor/plating, +/area/talon_v2/engineering) +"HK" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/effect/catwalk_plated, +/obj/structure/disposalpipe/junction, +/obj/structure/sign/directions/engineering{ + pixel_x = 32; + pixel_y = -3 + }, +/obj/structure/sign/directions/engineering/atmospherics{ + dir = 8; + pixel_x = 32; + pixel_y = 3 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/talon_v2/central_hallway) +"HN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway) +"HS" = ( +/turf/simulated/wall/shull, +/area/talon_v2/anomaly_storage) +"HT" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/effect/catwalk_plated, +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-j2" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/talon_v2/central_hallway) +"HU" = ( +/obj/machinery/door/firedoor/glass/talon, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway/star) +"HV" = ( +/obj/machinery/alarm/talon{ + dir = 1; + pixel_y = -25 + }, +/obj/structure/table/rack/steel, +/obj/item/weapon/grenade/spawnergrenade/manhacks/mercenary{ + pixel_x = -5; + pixel_y = 4 + }, +/obj/item/device/spaceflare, +/obj/machinery/camera/network/talon{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/armory) +"HW" = ( /obj/machinery/door/firedoor/glass/talon, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -10669,17 +10513,1352 @@ }, /turf/simulated/floor/plating, /area/talon_v2/engineering/port) -"Jk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +"HX" = ( +/obj/machinery/vending/blood{ + req_access = list(301); + req_log_access = 301 + }, +/turf/simulated/floor/tiled/white, +/area/talon_v2/medical) +"HY" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 1 + }, +/obj/structure/railing/grey{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/starboard) +"HZ" = ( +/turf/simulated/wall/tgmc/window/rwall, +/area/shuttle/talonpod) +"Ia" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/holoposter{ + dir = 1; + pixel_y = 32 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway/star) +"Id" = ( +/obj/structure/catwalk, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 26 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/fore_port) +"Ie" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/fore_starboard) +"If" = ( +/obj/structure/hull_corner/long_horiz{ + dir = 10 + }, +/turf/simulated/floor/reinforced/airless, +/area/space) +"Ig" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/mineral/input, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/refining) +"Ih" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway/star) +"Ij" = ( +/obj/machinery/door/firedoor/glass/talon, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway/star) +"Il" = ( +/obj/machinery/power/apc/talon{ + dir = 1; + name = "north bump"; + pixel_y = 28 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/starboard) +"Im" = ( +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/talon_v2/engineering) +"In" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, -/obj/structure/bed/chair/bay/chair{ +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/bridge) +"Ip" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/corner/black/diagonal, +/obj/item/weapon/stool/baystool/padded{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/talon_v2/crew_quarters/bar) +"Iq" = ( +/obj/machinery/camera/network/talon{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway) +"Ir" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/port_store) +"Is" = ( +/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 = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/maintenance/wing_starboard) +"It" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/structure/railing/grey{ + dir = 1 + }, +/obj/structure/closet/crate, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/refining) +"Iu" = ( +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/fore_starboard) +"Iv" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/maintenance/wing_starboard) +"Ix" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/box/donut, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/alarm/talon{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/firealarm{ + layer = 3.3; + pixel_y = 26 + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/brig) +"Iz" = ( +/obj/structure/handrail, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/maintenance/wing_starboard) +"IA" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/atmospherics) +"IB" = ( +/turf/simulated/wall/shull, +/area/talon_v2/crew_quarters/mine_room) +"IC" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/port_store) +"ID" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/port) +"IF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 10 + }, +/obj/structure/handrail, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/maintenance/fore_starboard) +"IJ" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/maintenance/wing_starboard) +"IK" = ( +/turf/simulated/wall/rshull, +/area/talon_v2/engineering/generators) +"IL" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/maintenance/wing_starboard) +"IM" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/talon_v2/engineering) +"IN" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/hangar) +"IO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/catwalk, +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/aft_port) +"IP" = ( +/turf/simulated/wall/shull, +/area/talon_v2/maintenance/aft_port) +"IS" = ( +/obj/machinery/door/firedoor/glass/talon, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/glass_research{ + name = "Anomaly Storage"; + req_one_access = list(301) + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/anomaly_storage) +"IU" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/aux, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/maintenance/wing_starboard) +"IW" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/effect/catwalk_plated, +/turf/simulated/floor/plating, +/area/talon_v2/central_hallway/fore) +"IY" = ( +/obj/structure/sign/warning/moving_parts{ + pixel_y = -32 + }, +/obj/machinery/disposal/wall{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/mine_room) +"Jd" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/aux{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/maintenance/wing_starboard) +"Je" = ( +/obj/structure/handrail{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/maintenance/wing_starboard) +"Jf" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/eng_room) +"Ji" = ( +/obj/effect/shuttle_landmark/premade/talon_v2_wing_star, +/turf/simulated/floor/reinforced/airless, +/area/space) +"Jk" = ( +/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/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway/fore) +"Jl" = ( +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 5 + }, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + dir = 1; + id_tag = "talon_starboard_aft"; + pixel_y = -30; + req_one_access = list(301) + }, +/obj/machinery/airlock_sensor{ + dir = 4; + pixel_x = -28; + req_one_access = list(301) + }, +/obj/machinery/light/small, +/obj/structure/handrail{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/maintenance/aft_starboard) +"Jm" = ( +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ + dir = 1 + }, +/obj/structure/handrail{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + dir = 1; + id_tag = "talon_port"; + pixel_y = -30; + req_one_access = list(301) + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/maintenance/wing_port) +"Jp" = ( +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ + dir = 1 + }, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/maintenance/wing_port) +"Jr" = ( +/obj/machinery/door/airlock/glass_external{ + req_one_access = list(301) + }, +/obj/effect/map_helper/airlock/door/int_door, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/maintenance/wing_port) +"Jt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/aux, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/maintenance/wing_port) +"Ju" = ( +/obj/machinery/camera/network/talon{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/maintenance/wing_port) +"Jv" = ( +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/atmospherics) +"Jw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor/glass/talon, +/obj/machinery/door/airlock/engineeringatmos{ + name = "Talon Atmospherics"; + req_one_access = list(301) + }, +/obj/structure/sign/warning/nosmoking_1{ + pixel_x = 26 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/engineering/atmospherics) +"Jy" = ( +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 9 + }, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + dir = 1; + id_tag = "talon_port_aft"; + pixel_y = -30; + req_one_access = list(301) + }, +/obj/machinery/airlock_sensor{ + dir = 8; + pixel_x = 28; + req_one_access = list(301) + }, +/obj/machinery/light/small, +/obj/structure/handrail{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/maintenance/aft_port) +"Jz" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/reinforced/airless, +/area/space) +"JA" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/firedoor/glass/talon, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "talon_boat_cockpit" + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/shuttle/talonboat) +"JB" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/maintenance/wing_port) +"JC" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/computer/shuttle_control/explore/talonboat{ + dir = 4; + name = "boat remote control console" + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/central_hallway) +"JI" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/talon_v2/crew_quarters/restrooms) +"JJ" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/maintenance/wing_port) +"JK" = ( +/obj/structure/table/woodentable, +/obj/item/modular_computer/laptop/preset/custom_loadout/standard/talon/miner, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/carpet, -/area/talon_v2/crew_quarters/pilot_room) -"Jm" = ( +/area/talon_v2/crew_quarters/mine_room) +"JL" = ( +/turf/simulated/wall/shull, +/area/talon_v2/ofd_ops) +"JM" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/turf/simulated/wall/rshull, +/area/talon_v2/engineering/starboard) +"JN" = ( +/obj/structure/catwalk, +/obj/structure/barricade, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/aft_starboard) +"JO" = ( +/obj/machinery/computer/ship/sensors{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/bridge) +"JQ" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/maintenance/wing_port) +"JR" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/machinery/alarm/talon{ + dir = 4; + pixel_x = -22 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/port) +"JU" = ( +/obj/machinery/atmospherics/binary/pump/high_power/on, +/obj/structure/railing/grey{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/starboard) +"JV" = ( +/obj/effect/map_helper/airlock/door/int_door, +/obj/machinery/door/airlock/glass_external{ + req_one_access = list(301) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/maintenance/wing_starboard) +"JZ" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway/fore) +"Ke" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/holoposter{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway/port) +"Kf" = ( +/obj/machinery/door/firedoor/glass/talon, +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 1; + name = "Cargo Bay"; + req_one_access = list(301) + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway/port) +"Kg" = ( +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/cap_room) +"Kk" = ( +/obj/machinery/door/airlock/glass_external{ + req_one_access = list(301) + }, +/obj/effect/map_helper/airlock/door/ext_door, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/maintenance/fore_port) +"Km" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ + dir = 8 + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/structure/handrail{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/maintenance/aft_starboard) +"Kn" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet{ + dir = 1; + pixel_y = -32 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway/port) +"Ko" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway/port) +"Kp" = ( +/obj/machinery/chem_master, +/turf/simulated/floor/tiled/white, +/area/talon_v2/medical) +"Ks" = ( +/obj/machinery/door/firedoor/glass/talon, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/talon_v2/hangar) +"Kv" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/alarm/talon{ + dir = 1; + pixel_y = -25 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway/port) +"Kw" = ( +/obj/machinery/alarm/talon{ + pixel_y = 28 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/mine_room) +"Kx" = ( +/obj/machinery/recharger/wallcharger{ + pixel_x = 5; + pixel_y = 24 + }, +/obj/structure/table/rack/shelf/steel, +/obj/item/device/radio/off{ + channels = list("Talon" = 1); + pixel_y = 6 + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/armory) +"Kz" = ( +/obj/machinery/holoposter{ + dir = 8; + pixel_x = -32 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway/fore) +"KB" = ( +/turf/simulated/wall/shull, +/area/talon_v2/maintenance/fore_port) +"KC" = ( +/obj/structure/closet/walllocker_double/hydrant/west, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/secure_storage) +"KE" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass/talon, +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 1; + req_one_access = list(301) + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway/port) +"KH" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/port_store) +"KI" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway) +"KJ" = ( +/obj/structure/table/bench/wooden, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/cap_room) +"KM" = ( +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/port_store) +"KN" = ( +/obj/structure/table/steel, +/obj/item/weapon/pickaxe/drill, +/obj/machinery/button/remote/blast_door{ + id = "talon_boat_cockpit"; + pixel_x = 6; + pixel_y = 28 + }, +/obj/item/device/radio/off{ + channels = list("Talon" = 1) + }, +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + id_tag = "talonboat_docker"; + pixel_x = -6; + pixel_y = 24 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/talonboat) +"KO" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway) +"KQ" = ( +/obj/structure/railing/grey, +/obj/effect/floor_decal/emblem/talon, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/bridge) +"KS" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/atmospherics) +"KT" = ( +/obj/machinery/atmospherics/portables_connector/aux, +/obj/effect/floor_decal/industrial/outline, +/obj/machinery/portable_atmospherics/canister/air, +/obj/structure/railing/grey, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/star_store) +"KU" = ( +/turf/simulated/wall/shull, +/area/talon_v2/engineering/port_store) +"KX" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 1; + name = "Hangar Bay"; + req_one_access = list(301) + }, +/obj/machinery/door/firedoor/glass/talon, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/hangar) +"KY" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/aux{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/talonboat) +"KZ" = ( +/obj/effect/map_helper/airlock/sensor/int_sensor, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 6 + }, +/obj/machinery/airlock_sensor{ + dir = 4; + pixel_x = -28; + req_one_access = list(301) + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/aft_starboard) +"Lc" = ( +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/talonboat) +"Le" = ( +/obj/machinery/door/firedoor/glass/talon, +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 1; + req_one_access = list(301) + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway/star) +"Lg" = ( +/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{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway/star) +"Li" = ( +/obj/structure/flora/pottedplant/minitree, +/obj/machinery/holoposter{ + dir = 1; + pixel_y = 32 + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/central_hallway) +"Lj" = ( +/obj/structure/sign/directions/cargo/refinery{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway/star) +"Lk" = ( +/obj/machinery/door/firedoor/glass/talon, +/obj/machinery/door/airlock/maintenance/common, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/aft_starboard) +"Ll" = ( +/obj/structure/table/woodentable, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/item/weapon/paper/talon_power, +/turf/simulated/floor/carpet, +/area/talon_v2/crew_quarters/eng_room) +"Ln" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/red, +/obj/machinery/portable_atmospherics/powered/scrubber, +/obj/structure/railing/grey{ + dir = 8 + }, +/obj/structure/railing/grey, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/atmospherics) +"Lo" = ( +/obj/machinery/holoposter{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway/star) +"Lr" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/hangar) +"Ls" = ( +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/pointdefense{ + id_tag = "talon_pd" + }, +/turf/simulated/floor/reinforced/airless, +/area/space) +"Lu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/engineering/star_store) +"Lv" = ( +/obj/structure/cable/yellow, +/obj/machinery/power/rtg/advanced, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/generators) +"Lw" = ( +/obj/machinery/door/firedoor/glass/talon, +/obj/machinery/door/airlock/maintenance/engi{ + name = "Starboard Eng. Storage"; + req_one_access = list(301) + }, +/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/plating, +/area/talon_v2/engineering/star_store) +"Lx" = ( +/obj/machinery/door/firedoor/glass/talon, +/obj/machinery/door/airlock/glass{ + name = "Workroom" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/workroom) +"Ly" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/closet/walllocker_double/hydrant/north, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway/star) +"Lz" = ( +/obj/machinery/power/apc/talon{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/green, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway/star) +"LA" = ( +/obj/machinery/alarm/talon{ + dir = 1; + pixel_y = -25 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway/star) +"LB" = ( +/obj/machinery/door/firedoor/glass/talon, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/blast/regular/open{ + dir = 2; + id = "talon_bridge_shields" + }, +/turf/simulated/floor/plating, +/area/talon_v2/bridge) +"LC" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway/fore) +"LD" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/sign/directions/medical{ + dir = 4; + pixel_x = 32; + pixel_y = -3 + }, +/obj/structure/sign/directions/engineering{ + pixel_x = 32; + pixel_y = 3 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway) +"LF" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/firealarm{ + layer = 3.3; + pixel_y = 26 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway/star) +"LH" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/blast/regular/open{ + id = "talon_windows" + }, +/obj/machinery/door/firedoor/glass/talon, +/turf/simulated/floor/plating, +/area/talon_v2/crew_quarters/bar) +"LI" = ( +/obj/machinery/door/firedoor/glass/talon, +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 1; + name = "Cargo Bay"; + req_one_access = list(301) + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway/star) +"LJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable/yellow{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/generators) +"LL" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/fore_port) +"LM" = ( +/obj/machinery/atmospherics/binary/pump/fuel, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/talonboat) +"LN" = ( +/obj/structure/table/steel, +/obj/machinery/camera/network/talon, +/obj/machinery/cell_charger, +/obj/item/weapon/cell/apc, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/engineering) +"LO" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 26 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/aft_port) +"LQ" = ( /obj/effect/map_helper/airlock/door/ext_door, /obj/machinery/door/airlock/glass_external{ req_one_access = list(301) @@ -10707,1387 +11886,149 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/shuttle/talonboat) -"Jp" = ( -/obj/structure/closet/excavation, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/anomaly_storage) -"Jr" = ( +"LR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 }, -/obj/structure/catwalk, -/obj/machinery/light/small{ - dir = 4 +/obj/machinery/alarm/talon{ + pixel_y = 28 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/eng_room) +"LT" = ( +/obj/structure/table/rack/shelf/steel, +/obj/random/maintenance/cargo, +/obj/random/maintenance/cargo, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/gen_store) +"LU" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, /obj/structure/cable/green{ d1 = 2; d2 = 8; icon_state = "2-8" }, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/aft_port) -"Jt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/effect/catwalk_plated, /obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/workroom) -"Ju" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "talonrefinery" - }, -/obj/structure/plasticflaps, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/refining) -"Jv" = ( -/obj/machinery/atmospherics/pipe/manifold/visible{ - dir = 1 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/atmospherics) -"Jw" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 9 - }, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/atmospherics) -"Jz" = ( -/obj/effect/map_helper/airlock/atmos/chamber_pump, -/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ - dir = 1 - }, -/obj/structure/handrail{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/maintenance/wing_port) -"JA" = ( -/obj/machinery/door/firedoor/glass/talon, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/door/airlock/voidcraft{ - name = "Cabin Access"; - req_one_access = list(301) - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/talonboat) -"JB" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/machinery/light/small{ dir = 4 }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/aft_port) -"JC" = ( -/obj/machinery/computer/ship/helm{ - req_one_access = list(301) - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/talonboat) -"JE" = ( -/obj/machinery/power/apc/talon{ - dir = 1; - name = "north bump"; - pixel_y = 28 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/table/standard, -/obj/machinery/recharger, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/central_hallway/fore) -"JF" = ( -/obj/structure/catwalk, -/obj/structure/trash_pile, -/obj/structure/railing/grey{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/fore_port) -"JG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/closet/crate, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/gen_store) -"JH" = ( -/obj/structure/extinguisher_cabinet{ - dir = 1; +/obj/structure/sign/department/medbay{ pixel_y = 32 }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/workroom) -"JI" = ( -/obj/machinery/door/airlock/medical{ - name = "Medical Storage"; - req_one_access = list(301) - }, -/obj/machinery/door/firedoor/glass/talon, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/talon_v2/medical) -"JJ" = ( -/obj/effect/map_helper/airlock/sensor/ext_sensor, -/obj/machinery/airlock_sensor{ - dir = 4; - pixel_x = -28; - pixel_y = 28; - req_one_access = list(301) - }, -/obj/structure/catwalk, -/turf/simulated/floor/reinforced/airless, -/area/talon_v2/maintenance/fore_starboard) -"JK" = ( -/obj/machinery/suit_cycler/vintage/tengi, -/turf/simulated/floor/wood, -/area/talon_v2/crew_quarters/eng_room) -"JL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway/fore) -"JO" = ( -/turf/simulated/wall/rshull, -/area/talon_v2/bridge) -"JP" = ( -/obj/machinery/door/blast/regular/open{ - dir = 2; - id = "talon_bridge_shields" - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4 - }, -/turf/simulated/floor/reinforced/airless, -/area/talon_v2/bridge) -"JQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, /turf/simulated/floor/plating, -/area/talon_v2/engineering/port) -"JT" = ( -/obj/structure/table/rack/steel, -/obj/item/clothing/shoes/magboots, -/obj/item/clothing/suit/space/syndicate/black, -/obj/item/clothing/head/helmet/space/syndicate/black, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/armory) -"JV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 4 - }, -/obj/structure/closet/emergsuit_wall{ - dir = 1; - pixel_y = -32 - }, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/wing_starboard) -"JW" = ( -/obj/structure/catwalk, -/obj/structure/handrail, -/turf/simulated/floor/reinforced/airless, -/area/talon_v2/maintenance/aft_starboard) -"JX" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor/glass/talon, -/turf/simulated/floor/plating, -/area/talon_v2/secure_storage) -"Ka" = ( -/turf/simulated/wall/shull, -/area/talon_v2/maintenance/fore_starboard) -"Kc" = ( -/obj/structure/table/steel, -/obj/structure/closet/autolok_wall{ - dir = 1; - pixel_y = -32 - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/talonboat) -"Kd" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/fore_starboard) -"Ke" = ( -/obj/machinery/alarm/talon{ - dir = 8; - pixel_x = 22 - }, -/obj/structure/flora/pottedplant, -/turf/simulated/floor/wood, -/area/talon_v2/crew_quarters/meditation) -"Kf" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/catwalk, -/obj/machinery/light/small, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/fore_port) -"Kg" = ( -/obj/structure/closet/secure_closet/talon_captain, -/obj/item/device/radio/off{ - channels = list("Talon" = 1) - }, -/turf/simulated/floor/wood, -/area/talon_v2/crew_quarters/cap_room) -"Kh" = ( -/obj/machinery/door/firedoor/glass/talon, -/obj/structure/sign/directions/bridge{ - dir = 1; - pixel_x = 32; - pixel_y = 3 - }, -/obj/structure/sign/directions/bar{ - dir = 1; - pixel_x = 32; - pixel_y = -3 - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/central_hallway/fore) -"Kj" = ( -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/brig) -"Kk" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/fore_port) -"Kl" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/turf/simulated/floor/reinforced/airless, -/area/space) -"Ko" = ( -/obj/machinery/suit_cycler/vintage/tmedic, -/turf/simulated/floor/tiled/white, -/area/talon_v2/medical) -"Kp" = ( -/obj/structure/table/standard, -/obj/item/weapon/storage/firstaid/surgery, -/obj/item/stack/nanopaste{ - pixel_x = -7; - pixel_y = -4 - }, -/obj/item/stack/nanopaste{ - pixel_x = 9; - pixel_y = -4 - }, -/obj/item/device/robotanalyzer{ - pixel_y = -8 - }, -/obj/machinery/alarm/talon{ - dir = 8; - pixel_x = 22 - }, -/turf/simulated/floor/tiled/white, -/area/talon_v2/medical) -"Kr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/closet/crate, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/gen_store) -"Ks" = ( -/obj/machinery/door/firedoor/glass/talon, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/talon_v2/hangar) -"Kt" = ( -/obj/machinery/door/airlock/glass_external{ - req_one_access = list(301) - }, -/obj/effect/map_helper/airlock/door/int_door, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/maintenance/wing_port) -"Kv" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/port_store) -"Kx" = ( -/obj/structure/closet/wardrobe/black{ - starts_with = list(/obj/item/clothing/under/color/black = 4, /obj/item/clothing/accessory/storage/black_vest = 4, /obj/item/clothing/accessory/storage/black_drop_pouches = 4, /obj/item/clothing/gloves/black = 4, /obj/item/clothing/head/soft/black = 4, /obj/item/clothing/mask/balaclava = 4, /obj/item/clothing/mask/bandana = 4, /obj/item/clothing/mask/gas/commando = 4, /obj/item/weapon/storage/backpack/messenger/black = 4, /obj/item/weapon/storage/backpack/dufflebag = 4, /obj/item/clothing/shoes/black = 4, /obj/item/clothing/shoes/boots/duty = 4) - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/armory) -"Kz" = ( -/obj/machinery/door/firedoor/glass/talon, -/obj/machinery/door/airlock/command{ - name = "Bridge"; - req_one_access = list(301) - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/bridge) -"KA" = ( -/obj/structure/catwalk, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/talon_v2/engineering) -"KB" = ( -/turf/simulated/floor/wood, -/area/talon_v2/crew_quarters/sec_room) -"KC" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway/port) -"KD" = ( -/obj/machinery/atmospherics/pipe/tank/air/full{ +/area/talon_v2/central_hallway/star) +"LV" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ dir = 8 }, /obj/structure/railing/grey, /turf/simulated/floor/plating, /area/talon_v2/engineering/atmospherics) -"KE" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/camera/network/talon, -/obj/random/multiple/corp_crate/talon_cargo, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/maintenance/wing_port) -"KI" = ( -/obj/structure/catwalk, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/fore_port) -"KM" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/wall/rshull, -/area/talon_v2/engineering/port_store) -"KN" = ( -/obj/structure/bed/chair/bay/shuttle{ - dir = 1 - }, -/obj/structure/closet/walllocker/medical/east, -/obj/item/weapon/storage/firstaid/regular, -/obj/item/weapon/storage/firstaid/o2, -/obj/item/weapon/extinguisher/mini, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/talonboat) -"KO" = ( -/turf/simulated/wall/shull{ - can_open = 1 - }, -/area/talon_v2/engineering/port_store) -"KS" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/atmospherics) -"KT" = ( -/obj/machinery/door/airlock/glass_external{ - req_one_access = list(301) - }, -/obj/effect/map_helper/airlock/door/ext_door, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/maintenance/aft_starboard) -"KU" = ( -/turf/simulated/wall/shull, -/area/talon_v2/engineering/port_store) -"KX" = ( -/obj/machinery/door/firedoor/glass/talon, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/engineeringatmos{ - name = "Talon Atmospherics"; - req_one_access = list(301) - }, -/obj/structure/sign/directions/engineering/atmospherics{ - dir = 8; - pixel_y = 35 - }, -/obj/structure/sign/directions/engineering{ - dir = 4; - pixel_y = 29 - }, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/atmospherics) -"KY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/firealarm{ - layer = 3.3; - pixel_y = 26 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway/port) -"KZ" = ( -/obj/structure/catwalk, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/reinforced/airless, -/area/talon_v2/maintenance/aft_starboard) -"Lc" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/talon_v2/medical) -"Le" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/maintenance/wing_starboard) -"Li" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/hangar) -"Lj" = ( -/obj/effect/map_helper/airlock/door/ext_door, -/obj/machinery/door/airlock/glass_external{ - req_one_access = list(301) - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/maintenance/wing_port) -"Lk" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/wall/rshull, -/area/talon_v2/maintenance/aft_starboard) -"Ll" = ( -/obj/machinery/power/apc/talon{ - dir = 1; - name = "north bump"; - pixel_y = 28 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/camera/network/talon, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/engineering/star_store) -"Lo" = ( -/obj/structure/sign/warning/nosmoking_1{ - pixel_x = -26 - }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/starboard) -"Lr" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/hangar) -"Lt" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/bridge) -"Lu" = ( -/obj/structure/railing/grey{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/star_store) -"Lx" = ( -/obj/structure/table/rack/steel, -/obj/item/clothing/suit/space/anomaly, -/obj/item/clothing/head/helmet/space/anomaly, -/obj/item/clothing/mask/breath, -/obj/item/weapon/storage/belt/archaeology, -/obj/machinery/light_switch{ - pixel_y = 24 - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/anomaly_storage) -"Ly" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "talonrefinery" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/refining) -"Lz" = ( -/obj/effect/floor_decal/emblem/talon, -/turf/simulated/floor/reinforced/airless, -/area/space) -"LA" = ( -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/aft_port) -"LB" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway/fore) -"LD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway) -"LF" = ( -/obj/structure/catwalk, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/aft_starboard) -"LI" = ( -/obj/machinery/door/firedoor/glass/talon, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance/engi{ - name = "Engine Crawlway Access"; - req_one_access = list(301) - }, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/starboard) -"LL" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/reagent_dispensers/fueltank/high, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/gen_store) -"LM" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ - dir = 1 - }, -/obj/effect/map_helper/airlock/atmos/chamber_pump, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/talonboat) -"LN" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/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/talon_v2/engineering) -"LO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/aft_port) -"LT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/camera/network/talon, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway/port) -"LU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/refining) -"LV" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/portable_atmospherics/canister/empty, -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/atmospherics) "LX" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/machinery/door/firedoor/glass/talon, -/obj/machinery/door/airlock/maintenance/common, +/obj/structure/catwalk, +/obj/machinery/light/small{ + dir = 4 + }, /turf/simulated/floor/plating, /area/talon_v2/maintenance/aft_port) "LY" = ( -/turf/simulated/wall/shull, -/area/talon_v2/engineering) -"Mb" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -24 - }, -/obj/random/multiple/corp_crate/talon_cargo, -/obj/structure/railing/grey{ +/obj/effect/map_helper/airlock/atmos/pump_out_external, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 1 }, -/turf/simulated/floor/tiled/techfloor, +/obj/effect/floor_decal/industrial/warning/cee, +/obj/structure/handrail, +/turf/simulated/floor/reinforced, +/area/shuttle/talonboat) +"Mb" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/closet/walllocker/medical/west, +/obj/item/weapon/storage/firstaid/regular, +/obj/item/weapon/storage/firstaid/o2, +/obj/item/device/radio/off{ + channels = list("Talon" = 1) + }, +/turf/simulated/floor/tiled/techmaint, /area/talon_v2/maintenance/wing_starboard) "Mc" = ( /obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/railing/grey, +/obj/machinery/camera/network/talon, /obj/random/multiple/corp_crate/talon_cargo, /turf/simulated/floor/tiled/techfloor, /area/talon_v2/maintenance/wing_port) "Mf" = ( -/obj/machinery/atmospherics/portables_connector/aux, -/obj/effect/floor_decal/industrial/outline, -/obj/machinery/portable_atmospherics/canister/air, -/obj/structure/railing/grey, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/star_store) +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/maintenance/wing_starboard) "Mg" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/white, -/area/talon_v2/medical) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/maintenance/wing_starboard) "Mh" = ( -/obj/machinery/light/small, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/brig) +/obj/machinery/camera/network/talon{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/maintenance/wing_starboard) "Mi" = ( -/obj/structure/catwalk, -/obj/structure/trash_pile, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/aft_port) +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -24 + }, +/obj/structure/table/rack/shelf/steel, +/obj/item/weapon/whetstone, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/armory) "Mj" = ( -/obj/machinery/computer/ship/navigation{ - dir = 4 +/obj/structure/railing/grey{ + dir = 1 }, /turf/simulated/floor/tiled/techfloor, /area/talon_v2/bridge) +"Mk" = ( +/obj/structure/disposalpipe/segment{ + dir = 1 + }, +/turf/simulated/wall/shull, +/area/talon_v2/crew_quarters/mine_room) "Ml" = ( -/obj/machinery/light, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway/star) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/vending/medical_talon{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/talon_v2/medical) "Mm" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/aft_starboard) +/obj/machinery/atmospherics/pipe/simple/hidden/aux, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/maintenance/wing_starboard) "Mo" = ( -/obj/machinery/atmospherics/binary/pump/high_power/on{ - dir = 8 - }, -/obj/structure/railing/grey{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/atmospherics) -"Mp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/crew_quarters/restrooms) -"Mr" = ( -/obj/structure/disposaloutlet, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/simulated/floor/reinforced/airless, -/area/talon_v2/engineering) -"Mu" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner, -/turf/simulated/floor/reinforced/airless, -/area/space) -"Mv" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/fore_starboard) -"MA" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/central_hallway/fore) -"MB" = ( -/obj/structure/sign/directions/medical{ - pixel_y = -32 - }, -/obj/machinery/camera/network/talon{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/talon_v2/crew_quarters/med_room) -"MD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/light/small, -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/starboard) -"ME" = ( -/obj/structure/handrail, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/talonboat) -"MG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/talon_v2/medical) -"ML" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/wall/rshull, -/area/talon_v2/maintenance/fore_port) -"MO" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/talon_v2/crew_quarters/eng_room) -"MP" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/maintenance/wing_starboard) -"MQ" = ( -/obj/structure/table/marble, -/obj/machinery/chemical_dispenser/bar_alc/full{ - dir = 8 - }, -/obj/effect/floor_decal/corner/black/diagonal, -/turf/simulated/floor/tiled/white, -/area/talon_v2/crew_quarters/bar) -"MR" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/random/multiple/corp_crate/talon_cargo, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/maintenance/wing_starboard) -"MT" = ( -/obj/machinery/light/small, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/fore_port) -"MU" = ( -/obj/machinery/door/firedoor/glass/talon, -/obj/machinery/door/airlock{ - id_tag = "talon_restroom1"; - name = "Unisex Restroom" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/talon_v2/crew_quarters/restrooms) -"MV" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ - dir = 1 - }, -/obj/effect/catwalk_plated/dark, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/starboard) -"MX" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/industrial/warning, -/obj/structure/handrail{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/maintenance/wing_starboard) -"Na" = ( -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway/star) -"Nb" = ( -/obj/machinery/smartfridge/chemistry{ - req_access = list(301); - req_one_access = list(301) - }, -/turf/simulated/floor/tiled/white, -/area/talon_v2/medical) -"Nc" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/camera/network/talon{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/talon_v2/engineering) -"Nf" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/hangar) -"Nh" = ( -/obj/structure/railing/grey, -/obj/machinery/atmospherics/pipe/manifold/visible/blue, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/atmospherics) -"Nj" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/aux, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/maintenance/wing_port) -"Nk" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/obj/machinery/alarm/talon{ - dir = 4; - pixel_x = -22 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/port) -"Nl" = ( -/turf/simulated/wall/shull, -/area/talon_v2/crew_quarters/meditation) -"Nm" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/maintenance/wing_starboard) -"Nn" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/visible, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/atmospherics) -"Nq" = ( -/turf/simulated/wall/shull, -/area/talon_v2/crew_quarters/cap_room) -"Ns" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/hangar) -"Nt" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/starboard) -"Nv" = ( -/obj/machinery/recharger/wallcharger{ - pixel_x = 5; - pixel_y = 24 - }, -/obj/structure/table/rack/shelf/steel, -/obj/item/device/radio/off{ - channels = list("Talon" = 1); - pixel_y = 6 - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/armory) -"Nw" = ( -/obj/structure/sign/directions/science/xenoarch{ - pixel_y = -32 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway/star) -"Nz" = ( -/obj/structure/table/standard, -/obj/item/clothing/gloves/sterile/nitrile, -/obj/item/clothing/mask/surgical, -/obj/item/clothing/suit/surgicalapron, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/sign/warning/nosmoking_1{ - pixel_x = 26 - }, -/turf/simulated/floor/tiled/white, -/area/talon_v2/medical) -"NB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/aft_port) -"NC" = ( -/turf/simulated/wall/shull, -/area/talon_v2/crew_quarters/sec_room) -"NE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 1 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/holoposter{ - dir = 8; - pixel_x = -32 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway) -"NI" = ( -/obj/machinery/vending/snack, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/central_hallway/fore) -"NK" = ( -/obj/machinery/suit_cycler/vintage/tguard, -/turf/simulated/floor/wood, -/area/talon_v2/crew_quarters/sec_room) -"NM" = ( -/obj/structure/table/rack/steel, -/obj/item/clothing/shoes/leg_guard/combat, -/obj/item/clothing/gloves/arm_guard/combat, -/obj/item/clothing/under/syndicate/combat, -/obj/item/clothing/suit/armor/combat, -/obj/item/clothing/head/helmet/combat, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/armory) -"NO" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/disposal/wall{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/talon_v2/crew_quarters/med_room) -"NQ" = ( -/obj/effect/map_helper/airlock/atmos/chamber_pump, -/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ - dir = 1 - }, -/obj/machinery/light/small, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/maintenance/wing_starboard) -"NR" = ( -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/fore_port) -"NS" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/aux{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/wing_port) -"NT" = ( -/obj/effect/map_helper/airlock/atmos/chamber_pump, -/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux, -/obj/structure/handrail, -/obj/effect/floor_decal/industrial/warning/corner, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/maintenance/wing_starboard) -"NU" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/wall/shull, -/area/talon_v2/central_hallway) -"NV" = ( -/turf/simulated/wall/rshull, -/area/talon_v2/crew_quarters/cap_room) -"NW" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/weapon/gun/energy/netgun, -/obj/item/weapon/cell/device/weapon{ - pixel_x = -5; - pixel_y = 2 - }, -/obj/item/weapon/cell/device/weapon{ - pixel_x = -5; - pixel_y = 2 - }, -/obj/item/weapon/cell/device/weapon, -/obj/item/clothing/accessory/holster/waist, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/armory) -"NZ" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway/star) -"Ob" = ( -/obj/effect/floor_decal/industrial/outline/red, -/obj/machinery/atmospherics/portables_connector{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister/phoron/engine_setup, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/starboard) -"Od" = ( -/obj/structure/table/standard, -/obj/machinery/reagentgrinder, -/turf/simulated/floor/tiled/white, -/area/talon_v2/medical) -"Og" = ( -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/wood, -/area/talon_v2/crew_quarters/med_room) -"Oi" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/effect/floor_decal/industrial/outline, -/obj/machinery/portable_atmospherics/powered/pump/filled, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/atmospherics) -"Oj" = ( -/turf/simulated/wall/shull, -/area/talon_v2/armory) -"Ok" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/obj/structure/ore_box, -/obj/structure/railing/grey{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/refining) -"Om" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/fore_port) -"On" = ( -/obj/machinery/chem_master, -/turf/simulated/floor/tiled/white, -/area/talon_v2/medical) -"Oo" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/aft_starboard) -"Op" = ( /obj/machinery/atmospherics/portables_connector{ dir = 1 }, @@ -12099,271 +12040,230 @@ /obj/structure/railing/grey, /turf/simulated/floor/plating, /area/talon_v2/engineering/atmospherics) -"Oq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 +"Mp" = ( +/obj/machinery/door/airlock/glass_external{ + req_one_access = list(301) }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/black/diagonal, -/obj/item/weapon/stool/baystool/padded{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/talon_v2/crew_quarters/bar) -"Ot" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/random/multiple/corp_crate/talon_cargo, -/turf/simulated/floor/tiled/techfloor, +/obj/effect/map_helper/airlock/door/int_door, +/turf/simulated/floor/tiled/techfloor/grid, /area/talon_v2/maintenance/wing_starboard) -"Ow" = ( -/obj/machinery/vending/coffee{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/talon_v2/crew_quarters/bar) -"OB" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/handrail{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - dir = 4; - pixel_x = -30 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/maintenance/wing_port) -"OD" = ( -/obj/machinery/light{ +"Mr" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/light/small{ dir = 8 }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/disposal/wall{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/talon_v2/medical) -"OE" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 5 - }, +/obj/structure/railing/grey, +/turf/simulated/floor/plating, +/area/talon_v2/engineering) +"Ms" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible/yellow, /obj/effect/floor_decal/industrial/warning{ - dir = 4 + dir = 8 }, /obj/structure/catwalk, /turf/simulated/floor/plating, /area/talon_v2/engineering/port) -"OH" = ( -/obj/machinery/power/pointdefense{ - id_tag = "talon_pd" - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, +"Mt" = ( /obj/effect/floor_decal/industrial/warning/dust{ dir = 9 }, /turf/simulated/floor/reinforced/airless, -/area/space) -"OI" = ( -/obj/effect/floor_decal/industrial/loading, +/area/talon_v2/engineering/port) +"Mu" = ( +/obj/machinery/door/blast/regular{ + dir = 4; + id = "talon_cargo_star"; + name = "Cargo Loading Hatch" + }, /turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/refining) -"OJ" = ( -/obj/machinery/atmospherics/pipe/simple/visible, +/area/talon_v2/maintenance/wing_starboard) +"Mv" = ( +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ + dir = 1 + }, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/maintenance/wing_starboard) +"My" = ( +/obj/machinery/door/firedoor/glass/talon, +/obj/machinery/door/airlock/glass{ + name = "Cantina" + }, /obj/structure/cable/green{ d1 = 4; d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/crew_quarters/bar) +"Mz" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/blast/regular/open{ + id = "talon_windows" + }, +/obj/machinery/door/firedoor/glass/talon, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/talon_v2/crew_quarters/cap_room) +"MB" = ( +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ + dir = 1 + }, +/obj/structure/handrail{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + dir = 1; + id_tag = "talon_starboard"; + pixel_y = -30; + req_one_access = list(301) + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/maintenance/wing_starboard) +"MD" = ( +/obj/effect/floor_decal/industrial/outline/red, +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/phoron/engine_setup, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/starboard) +"ME" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/firealarm{ + layer = 3.3; + pixel_y = 26 + }, +/obj/structure/bed/chair/bay/shuttle, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/talonboat) +"MF" = ( +/obj/machinery/light/small{ + dir = 1 + }, /obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/atmospherics) -"OK" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/effect/catwalk_plated, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/talon_v2/central_hallway/port) -"OL" = ( /obj/structure/railing/grey{ dir = 1 }, -/obj/machinery/power/smes/buildable/offmap_spawn{ - RCon_tag = "Talon Port SMES" - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, /turf/simulated/floor/plating, -/area/talon_v2/engineering) -"OM" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 +/area/talon_v2/engineering/atmospherics) +"MG" = ( +/obj/machinery/door/firedoor/glass/talon, +/obj/machinery/door/airlock{ + id_tag = "talon_restroom2"; + name = "Unisex Restroom" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/crew_quarters/restrooms) -"ON" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/alarm/talon{ - dir = 1; - pixel_y = -25 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway/port) -"OP" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/structure/railing/grey{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/atmospherics) -"OQ" = ( -/turf/simulated/wall/shull, -/area/talon_v2/gen_store) -"OR" = ( -/obj/structure/disposalpipe/segment{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/turf/simulated/floor/wood, -/area/talon_v2/crew_quarters/meditation) -"OS" = ( -/obj/structure/sign/department/bridge{ - name = "PILOT'S QUARTERS"; - pixel_y = -32 - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/central_hallway/fore) -"OT" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/reinforced/airless, -/area/space) -"OU" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/structure/railing/grey{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/atmospherics) -"OW" = ( -/obj/effect/shuttle_landmark/premade/talon_v2_near_aft_star, -/turf/space, -/area/space) -"OX" = ( -/obj/structure/bed/chair/bay/chair, -/turf/simulated/floor/wood, -/area/talon_v2/crew_quarters/bar) -"OY" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/floor_decal/corner/black/diagonal, -/obj/structure/table/marble, -/obj/item/device/radio/off{ - channels = list("Talon" = 1) - }, /turf/simulated/floor/tiled/white, -/area/talon_v2/crew_quarters/bar) -"OZ" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" +/area/talon_v2/crew_quarters/restrooms) +"ML" = ( +/obj/machinery/door/airlock/glass_external{ + req_one_access = list(301) }, +/obj/effect/map_helper/airlock/door/ext_door, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/maintenance/wing_starboard) +"MO" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/railing/grey{ + dir = 1 + }, +/obj/random/multiple/corp_crate/talon_cargo, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/maintenance/wing_port) +"MP" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/railing/grey{ + dir = 1 + }, +/obj/random/multiple/corp_crate/talon_cargo, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/maintenance/wing_port) +"MU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor/glass/talon, +/obj/machinery/door/airlock/maintenance/common, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/aft_port) +"MV" = ( /obj/structure/cable/green{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 2; + icon_state = "1-2" }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/maintenance/wing_port) -"Pb" = ( -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +/obj/machinery/door/firedoor/glass/talon, +/obj/structure/sign/warning/nosmoking_1{ + pixel_x = 26 }, -/turf/simulated/floor/wood, -/area/talon_v2/crew_quarters/med_room) -"Pd" = ( -/obj/structure/hull_corner/long_horiz{ - dir = 6 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/engineering{ + name = "Talon Starboard Engines"; + req_one_access = list(301) + }, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/starboard) +"MW" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/bridge) +"MZ" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning/dust/corner{ + dir = 8 }, /turf/simulated/floor/reinforced/airless, /area/space) -"Pe" = ( -/turf/simulated/floor/wood, -/area/talon_v2/crew_quarters/cap_room) -"Pf" = ( -/obj/structure/railing/grey, -/obj/effect/floor_decal/industrial/outline/red, -/obj/machinery/portable_atmospherics/canister/empty/phoron, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/star_store) -"Pg" = ( -/obj/machinery/vending/fitness, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/central_hallway/fore) -"Ph" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ +"Na" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/structure/closet/emergsuit_wall{ - dir = 1; - pixel_y = -32 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 }, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/wing_port) -"Pj" = ( +/turf/simulated/floor/tiled/white, +/area/talon_v2/medical) +"Nb" = ( /obj/machinery/light/small{ dir = 4 }, @@ -12377,647 +12277,59 @@ }, /turf/simulated/floor/tiled/techfloor, /area/talon_v2/crew_quarters/restrooms) -"Pk" = ( -/obj/effect/floor_decal/corner/black/diagonal, -/obj/structure/table/marble, -/obj/random/pizzabox, -/turf/simulated/floor/tiled/white, -/area/talon_v2/crew_quarters/bar) -"Pl" = ( +"Nc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/alarm/talon{ + dir = 8; + pixel_x = 22 + }, +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/talon_v2/engineering) +"Ne" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/wall/rshull, +/area/talon_v2/maintenance/aft_port) +"Nf" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/hangar) +"Nh" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, /obj/machinery/door/firedoor/glass/talon, -/obj/machinery/door/airlock/maintenance/engi{ - name = "Talon Atmospherics Maintenance Access"; - req_one_access = list(301) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/turf/simulated/floor/plating, +/area/talon_v2/armory) +"Nl" = ( +/turf/simulated/wall/shull, +/area/talon_v2/crew_quarters/meditation) +"Nn" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" }, +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/structure/catwalk, /turf/simulated/floor/plating, /area/talon_v2/engineering/atmospherics) -"Pm" = ( -/obj/structure/table/rack/shelf/steel, -/obj/machinery/recharger/wallcharger{ - pixel_x = 5; - pixel_y = 24 - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/armory) -"Po" = ( -/obj/effect/map_helper/airlock/door/simple, -/obj/machinery/door/airlock/glass_external{ - req_one_access = list(301) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/talonboat) -"Pr" = ( -/obj/machinery/shower, -/obj/item/weapon/soap/deluxe, -/obj/structure/curtain, -/turf/simulated/floor/tiled/white, -/area/talon_v2/crew_quarters/restrooms) -"Ps" = ( -/obj/machinery/power/apc/talon{ - dir = 8; - name = "west bump"; - pixel_x = -28 - }, -/obj/structure/table/standard, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -25 - }, -/obj/machinery/recharger, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/white, -/area/talon_v2/medical) -"Pt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/port) -"Pu" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/engineering) -"Pv" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/maintenance/wing_starboard) -"Px" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/railing/grey{ - dir = 1 - }, -/obj/random/multiple/corp_crate/talon_cargo, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/maintenance/wing_port) -"Py" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/turf/simulated/wall/rshull, -/area/talon_v2/engineering/port) -"PB" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet{ - dir = 1; - pixel_y = -32 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway/port) -"PC" = ( -/obj/machinery/door/firedoor/glass/talon, -/obj/machinery/door/airlock/multi_tile/glass{ - dir = 1; - name = "Cargo Bay"; - req_one_access = list(301) - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway/star) -"PE" = ( -/obj/effect/floor_decal/emblem/talon_big{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/central_hallway/fore) -"PF" = ( -/obj/structure/catwalk, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/plating, -/area/talon_v2/engineering) -"PG" = ( -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/fore_starboard) -"PH" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ - dir = 1 - }, -/obj/structure/railing/grey{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/starboard) -"PI" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/mineral/input, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/refining) -"PK" = ( -/obj/effect/shuttle_landmark/premade/talon_v2_near_fore_port, -/turf/space, -/area/space) -"PL" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/maintenance/wing_port) -"PO" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/talon_v2/crew_quarters/meditation) -"PP" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/effect/catwalk_plated, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/talon_v2/central_hallway) -"PR" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/disposal/wall{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/talon_v2/crew_quarters/pilot_room) -"PU" = ( -/obj/machinery/alarm/talon{ - dir = 1; - pixel_y = -22 - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/bridge) -"PV" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/maintenance/wing_port) -"PW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, +"Nq" = ( /turf/simulated/wall/shull, -/area/talon_v2/crew_quarters/bar) -"PX" = ( -/obj/machinery/door/firedoor/glass/talon, -/obj/machinery/door/airlock{ - name = "Restrooms & Charger" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/crew_quarters/restrooms) -"PZ" = ( -/obj/structure/bed/chair/wood, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/carpet/blucarpet, /area/talon_v2/crew_quarters/cap_room) -"Qa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/railing/grey, -/obj/effect/floor_decal/industrial/warning, -/obj/structure/table/steel, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/engineering) -"Qb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/crew_quarters/restrooms) -"Qc" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/maintenance/wing_starboard) -"Qi" = ( -/obj/effect/map_helper/airlock/sensor/int_sensor, -/obj/structure/sign/warning/airlock{ - pixel_y = 32 - }, -/obj/machinery/airlock_sensor{ - dir = 4; - pixel_x = -28; - pixel_y = -28; - req_one_access = list(301) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/maintenance/fore_port) -"Qj" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/effect/catwalk_plated, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/talon_v2/central_hallway/port) -"Qk" = ( -/obj/machinery/door/airlock/glass_external{ - req_one_access = list(301) - }, -/obj/effect/map_helper/airlock/door/ext_door, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/maintenance/wing_port) -"Qm" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/aft_port) -"Qn" = ( -/obj/structure/closet/secure_closet/chemical{ - req_access = list(301) - }, -/obj/item/weapon/reagent_containers/spray/cleaner{ - desc = "Someone has crossed out the 'Space' from Space Cleaner and written in Chemistry. Scrawled on the back is, 'Okay, whoever filled this with polytrinic acid, it was only funny the first time. It was hard enough replacing the CMO's first cat!'"; - name = "Chemistry Cleaner" - }, -/turf/simulated/floor/tiled/white, -/area/talon_v2/medical) -"Qo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 9 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/central_hallway/fore) -"Qq" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/railing/grey, -/obj/random/multiple/corp_crate/talon_cargo, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/maintenance/wing_starboard) -"Qu" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 26 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/aft_port) -"Qv" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/port_store) -"Qx" = ( -/obj/structure/catwalk, -/obj/structure/closet/walllocker_double/west, -/obj/item/weapon/storage/toolbox/electrical, -/obj/item/weapon/storage/toolbox/mechanical, -/obj/item/stack/cable_coil/green, -/turf/simulated/floor/plating, -/area/talon_v2/engineering) -"Qy" = ( -/obj/machinery/door/firedoor/glass/talon, -/obj/machinery/door/airlock/maintenance/medical{ - id_tag = "talon_meddoor"; - req_one_access = list(301) - }, -/turf/simulated/floor/plating, -/area/talon_v2/crew_quarters/med_room) -"Qz" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/star_store) -"QA" = ( -/obj/structure/hull_corner/long_horiz{ - dir = 9 - }, -/turf/space, -/area/space) -"QB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/talon_v2/crew_quarters/restrooms) -"QC" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/central_hallway/fore) -"QD" = ( -/obj/machinery/alarm/talon{ - dir = 1; - pixel_y = -25 - }, -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/secure_storage) -"QE" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 4; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway/fore) -"QF" = ( -/obj/structure/closet/emergsuit_wall{ - dir = 4; - pixel_x = 32 - }, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/port_store) -"QG" = ( -/obj/structure/table/standard, -/obj/item/weapon/storage/box/donut, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/alarm/talon{ - dir = 4; - pixel_x = -22 - }, -/obj/machinery/firealarm{ - layer = 3.3; - pixel_y = 26 - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/brig) -"QH" = ( -/obj/machinery/recharge_station, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/talon_v2/crew_quarters/restrooms) -"QI" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner{ - dir = 1 - }, -/turf/simulated/floor/reinforced/airless, -/area/space) -"QJ" = ( -/obj/structure/catwalk, -/obj/structure/disposalpipe/junction/yjunction, -/turf/simulated/floor/plating, -/area/talon_v2/engineering) -"QM" = ( -/obj/machinery/atmospherics/unary/engine{ - dir = 1 - }, -/turf/simulated/floor/reinforced, -/area/shuttle/talonboat) -"QN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/carpet, -/area/talon_v2/crew_quarters/sec_room) -"QR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/turf/simulated/floor/wood, -/area/talon_v2/crew_quarters/meditation) -"QS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway) -"QV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass/talon, -/obj/machinery/door/airlock/maintenance/common, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/fore_port) -"QY" = ( -/obj/structure/catwalk, -/obj/structure/trash_pile, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/fore_starboard) -"Rb" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/port) -"Rd" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/talon_v2/engineering) -"Re" = ( -/obj/structure/closet/crate, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/gen_store) -"Rf" = ( -/turf/simulated/wall/shull{ - can_open = 1 - }, -/area/talon_v2/engineering/star_store) -"Rg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/engineering/star_store) -"Ri" = ( -/obj/machinery/power/pointdefense{ - id_tag = "talon_pd" - }, -/obj/structure/cable/green, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 6 - }, -/turf/simulated/floor/reinforced/airless, -/area/space) -"Rj" = ( -/obj/machinery/door/firedoor/glass/talon, -/obj/machinery/door/airlock/engineeringatmos{ - name = "Talon Atmospherics"; - req_one_access = list(301) - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/port_store) -"Rp" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/wood, -/area/talon_v2/crew_quarters/meditation) -"Rs" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/disposal/wall{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/talon_v2/crew_quarters/cap_room) -"Rt" = ( -/obj/machinery/drone_fabricator/talon, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/port_store) -"Ru" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/random/multiple/corp_crate/talon_cargo, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/maintenance/wing_port) -"Rx" = ( -/turf/space, -/area/talon_v2/engineering/port) -"Ry" = ( -/obj/machinery/mineral/processing_unit{ - points_mult = 0 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/refining) -"RA" = ( -/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{ - dir = 9 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/star_store) -"RB" = ( +"Ns" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment{ @@ -13038,511 +12350,14 @@ }, /turf/simulated/floor/tiled/techmaint, /area/talon_v2/central_hallway) -"RC" = ( -/obj/effect/floor_decal/emblem/talon_big/center, -/obj/structure/cable/green, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/central_hallway/fore) -"RD" = ( -/obj/machinery/power/pointdefense{ - id_tag = "talon_pd" - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/reinforced/airless, -/area/space) -"RE" = ( -/obj/structure/trash_pile, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/star_store) -"RF" = ( -/obj/machinery/door/firedoor/glass/talon, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/blast/regular/open{ - dir = 2; - id = "talon_bridge_shields" - }, -/turf/simulated/floor/plating, -/area/talon_v2/bridge) -"RG" = ( -/obj/structure/table/standard, -/obj/item/weapon/storage/toolbox/mechanical, -/obj/item/weapon/storage/box/mousetraps, -/obj/item/weapon/storage/box/lights/mixed, -/obj/item/weapon/reagent_containers/spray/cleaner, -/obj/item/weapon/reagent_containers/glass/rag, -/obj/machinery/light_switch{ - dir = 1; - pixel_x = 2; - pixel_y = -28 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/engineering/star_store) -"RI" = ( -/obj/effect/floor_decal/industrial/outline/red, -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/phoron/engine_setup, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/starboard) -"RJ" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/central_hallway/fore) -"RK" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway/port) -"RL" = ( -/obj/structure/bed/chair/bay/chair{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/talonboat) -"RO" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/starboard) -"RP" = ( -/obj/effect/map_helper/airlock/sensor/chamber_sensor, -/obj/machinery/airlock_sensor{ - pixel_y = 24; - req_one_access = list(301) - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/aux{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/obj/structure/handrail, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/talonboat) -"RQ" = ( -/turf/simulated/wall/shull, -/area/talon_v2/medical) -"RV" = ( -/obj/machinery/atmospherics/pipe/manifold4w/visible/yellow, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/port) -"RW" = ( -/obj/structure/table/rack/shelf/steel, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/armory) -"Sa" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - dir = 10 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/atmospherics) -"Sb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood, -/area/talon_v2/crew_quarters/cap_room) -"Sd" = ( -/obj/machinery/door/firedoor/glass/talon, -/obj/machinery/door/airlock/engineering{ - name = "Talon Port Engines"; - req_one_access = list(301) - }, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/port) -"Sg" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/table/standard, -/obj/machinery/cell_charger, -/obj/item/weapon/storage/firstaid/regular, -/obj/item/weapon/storage/firstaid/o2, -/obj/structure/closet/walllocker/medical/north, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/workroom) -"Si" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/weapon/gun/energy/netgun, -/obj/item/weapon/cell/device/weapon{ - pixel_x = -5; - pixel_y = 2 - }, -/obj/item/weapon/cell/device/weapon, -/obj/item/clothing/accessory/holster/waist, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/armory) -"Sj" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - dir = 8; - pixel_x = 30 - }, -/turf/simulated/floor/tiled/white, -/area/talon_v2/medical) -"Sk" = ( -/turf/simulated/wall/shull, -/area/talon_v2/crew_quarters/restrooms) -"Sn" = ( -/turf/simulated/wall/rshull, -/area/talon_v2/crew_quarters/meditation) -"So" = ( -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/armory) -"Sr" = ( +"Nt" = ( +/obj/machinery/light/small, /obj/structure/railing/grey{ - dir = 4 - }, -/obj/structure/table/steel, -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/obj/item/weapon/paper/talon_shields, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/engineering) -"Ss" = ( -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 24 - }, -/turf/simulated/floor/wood, -/area/talon_v2/crew_quarters/cap_room) -"St" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/computer/shuttle_control/explore/talonboat{ - dir = 4; - name = "boat remote control console" - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/central_hallway) -"Su" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/light/small, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/atmospherics) -"Sv" = ( -/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/closet/walllocker_double/hydrant/south, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway) -"Sx" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ dir = 1 }, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "talon_brig1"; - name = "Cell Shutters"; - opacity = 0 - }, -/obj/machinery/door/firedoor/glass/talon, -/turf/simulated/floor/plating, -/area/talon_v2/brig) -"Sz" = ( -/obj/machinery/cryopod/talon{ - dir = 4 - }, -/obj/machinery/camera/network/talon, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/central_hallway) -"SE" = ( -/obj/machinery/light/small, -/obj/machinery/light_switch{ - dir = 1; - pixel_x = 2; - pixel_y = -28 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/port_store) -"SG" = ( -/obj/machinery/button/remote/blast_door{ - id = "talon_cargo_star"; - name = "Cargo Loading Hatches"; - pixel_y = -28 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/window/brigdoor/northright{ - req_access = list(); - req_one_access = list(301) - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/maintenance/wing_starboard) -"SL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/carpet, -/area/talon_v2/crew_quarters/pilot_room) -"SN" = ( -/obj/machinery/alarm/talon{ - dir = 4; - pixel_x = -22 - }, -/obj/machinery/light_switch{ - dir = 1; - pixel_x = 2; - pixel_y = -28 - }, -/obj/structure/bed/pod, -/obj/item/weapon/bedsheet/medical, -/turf/simulated/floor/carpet, -/area/talon_v2/crew_quarters/med_room) -"SQ" = ( -/obj/machinery/door/firedoor/glass/talon, -/obj/machinery/door/airlock/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway/fore) -"ST" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/handrail{ - dir = 8 - }, -/obj/structure/closet/emergsuit_wall{ - dir = 4; - pixel_x = 32 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/maintenance/wing_starboard) -"SU" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/secure_storage) -"SW" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/star_store) -"SX" = ( -/obj/structure/closet/walllocker/emerglocker/west, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/armory) -"SY" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway) -"Ta" = ( -/obj/machinery/vending/blood{ - req_access = list(301); - req_log_access = 301 - }, -/turf/simulated/floor/tiled/white, -/area/talon_v2/medical) -"Tb" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/red, -/obj/machinery/portable_atmospherics/canister/empty/phoron, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/star_store) -"Td" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/effect/catwalk_plated, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/plating, -/area/talon_v2/central_hallway/star) -"Te" = ( -/obj/effect/shuttle_landmark/premade/talon_v2_wing_port, -/turf/space, -/area/space) -"Tf" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/catwalk, -/obj/structure/extinguisher_cabinet{ - dir = 1; - pixel_y = -32 - }, /turf/simulated/floor/plating, /area/talon_v2/engineering/starboard) -"Tg" = ( -/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/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/techfloor/grid, -/area/talon_v2/engineering/star_store) -"Ti" = ( -/obj/structure/table/rack/shelf/steel, -/obj/item/device/suit_cooling_unit, -/obj/item/device/suit_cooling_unit, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/secure_storage) -"Tl" = ( +"Nu" = ( /obj/machinery/light/small{ dir = 4 }, @@ -13559,8 +12374,636 @@ /obj/structure/catwalk, /turf/simulated/floor/plating, /area/talon_v2/maintenance/aft_port) -"Tq" = ( +"Nv" = ( +/obj/structure/handrail{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ + dir = 4 + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/structure/closet/walllocker_double/survival/south, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/talonboat) +"Nw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/workroom) +"Nz" = ( +/obj/structure/closet/walllocker_double/south, +/obj/structure/handrail{ + dir = 1 + }, +/obj/item/weapon/storage/toolbox/emergency, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/talonboat) +"NB" = ( +/obj/structure/closet/walllocker_double/south, +/obj/machinery/light, +/obj/item/weapon/extinguisher, +/obj/item/stack/cable_coil/green, +/obj/item/stack/cable_coil/green, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/effect/map_helper/airlock/atmos/pump_out_internal, +/obj/machinery/atmospherics/unary/vent_pump/high_volume, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/talonboat) +"NC" = ( +/turf/simulated/wall/shull, +/area/talon_v2/crew_quarters/sec_room) +"NE" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/sign/directions/security/armory{ + dir = 10; + pixel_x = -32; + pixel_y = -6 + }, +/obj/structure/sign/directions/security{ + dir = 1; + pixel_x = -32; + pixel_y = 6 + }, +/obj/structure/sign/directions/security/brig{ + dir = 1; + pixel_x = -32 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway) +"NF" = ( /obj/machinery/door/firedoor/glass/talon, +/obj/machinery/door/airlock/maintenance/engi{ + name = "Port Eng. Storage"; + req_one_access = list(301) + }, +/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/plating, +/area/talon_v2/engineering/port_store) +"NG" = ( +/obj/structure/closet/walllocker_double/south, +/obj/structure/handrail{ + dir = 1 + }, +/obj/item/weapon/storage/toolbox/mechanical, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/talonboat) +"NH" = ( +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/port) +"NI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/talonpod) +"NK" = ( +/obj/structure/handrail{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ + dir = 8 + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/structure/closet/walllocker_double/survival/south, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/talonboat) +"NO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 9 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc/talon{ + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/fore_starboard) +"NR" = ( +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/fore_port) +"NS" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/maintenance/wing_port) +"NT" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/turf/simulated/floor/reinforced/airless, +/area/space) +"NU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/hangar) +"NW" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor/glass/talon, +/turf/simulated/floor/plating, +/area/talon_v2/secure_storage) +"NZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/talon_v2/medical) +"Ob" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "talontrash" + }, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/starboard) +"Oc" = ( +/obj/structure/catwalk, +/obj/structure/barricade, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/aft_port) +"Od" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/structure/sign/directions/engineering{ + pixel_x = 32; + pixel_y = -6 + }, +/obj/structure/sign/directions/cargo{ + dir = 4; + pixel_x = 32 + }, +/obj/structure/sign/directions/science/xenoarch{ + dir = 4; + pixel_x = 32; + pixel_y = 6 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway) +"Og" = ( +/obj/machinery/door/firedoor/glass/talon, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/mining{ + name = "Refinery"; + req_one_access = list(301) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/refining) +"Oi" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/weapon/gun/energy/netgun, +/obj/item/weapon/cell/device/weapon{ + pixel_x = -5; + pixel_y = 2 + }, +/obj/item/weapon/cell/device/weapon, +/obj/item/clothing/accessory/holster/waist, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/armory) +"Oj" = ( +/turf/simulated/wall/shull, +/area/talon_v2/armory) +"Ok" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera/network/talon, +/obj/machinery/atm{ + pixel_y = 31 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway/star) +"Ol" = ( +/turf/simulated/wall/shull{ + can_open = 1 + }, +/area/talon_v2/engineering/star_store) +"On" = ( +/obj/machinery/door/firedoor/glass/talon, +/obj/machinery/door/airlock/maintenance/common, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/aft_starboard) +"Oo" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/railing/grey{ + dir = 1 + }, +/obj/random/multiple/corp_crate/talon_cargo, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/maintenance/wing_starboard) +"Op" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/railing/grey{ + dir = 1 + }, +/obj/random/multiple/corp_crate/talon_cargo, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/maintenance/wing_starboard) +"Ot" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/railing/grey, +/obj/random/multiple/corp_crate/talon_cargo, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/maintenance/wing_starboard) +"Ov" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/turf/simulated/floor/reinforced/airless, +/area/talon_v2/engineering/starboard) +"Oy" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/port_store) +"Oz" = ( +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc/talon{ + dir = 1; + name = "north bump"; + pixel_y = 28 + }, +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/aft_starboard) +"OB" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/maintenance/wing_port) +"OD" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/disposal, +/obj/structure/sign/directions/medical{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/crew_quarters/restrooms) +"OE" = ( +/obj/machinery/door/window/brigdoor/eastright{ + req_access = list(); + req_one_access = list(301) + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/port) +"OF" = ( +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/aft_starboard) +"OH" = ( +/obj/machinery/atmospherics/portables_connector/aux{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline, +/obj/machinery/portable_atmospherics/canister/air, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/wing_port) +"OJ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/blue{ + dir = 6 + }, +/obj/structure/closet/emergsuit_wall{ + pixel_y = 32 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/atmospherics) +"OK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/closet/crate, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/gen_store) +"OL" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/railing/grey{ + dir = 4 + }, +/obj/structure/railing/grey{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/talon_v2/engineering) +"OM" = ( +/obj/machinery/door/firedoor/glass/talon, +/obj/machinery/door/airlock{ + id_tag = "talon_charger"; + name = "Cyborg Recharging Station" + }, +/turf/simulated/floor/tiled/white, +/area/talon_v2/crew_quarters/restrooms) +"ON" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/aux{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/wing_port) +"OP" = ( +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/armory) +"OQ" = ( +/turf/simulated/wall/shull, +/area/talon_v2/gen_store) +"OR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway/port) +"OS" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/random/multiple/corp_crate/talon_cargo, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/maintenance/wing_port) +"OT" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/maintenance/wing_port) +"OW" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/random/multiple/corp_crate/talon_cargo, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/maintenance/wing_port) +"OX" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/table/woodentable, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/bar) +"OY" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/bar) +"OZ" = ( +/obj/structure/handrail, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/maintenance/wing_port) +"Pb" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/aux, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light/small, +/obj/structure/closet/emergsuit_wall{ + dir = 1; + pixel_y = -32 + }, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/fore_starboard) +"Pd" = ( +/obj/effect/floor_decal/industrial/warning/dust/corner, +/turf/simulated/floor/reinforced/airless, +/area/space) +"Pe" = ( +/obj/machinery/camera/network/talon{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/cap_room) +"Pf" = ( +/obj/structure/sign/warning/nosmoking_1{ + pixel_x = -26 + }, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/star_store) +"Pg" = ( +/obj/machinery/power/apc/talon/hyper{ + dir = 1; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/shuttle_landmark/shuttle_initializer/talonpod, +/obj/effect/overmap/visitable/ship/landable/talon_pod, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/talonpod) +"Ph" = ( +/obj/effect/map_helper/airlock/door/int_door, +/obj/machinery/door/airlock/glass_external{ + req_one_access = list(301) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/maintenance/wing_port) +"Pi" = ( +/obj/machinery/door/firedoor/glass/talon, +/obj/machinery/door/airlock/engineering{ + name = "Talon Port Engines"; + req_one_access = list(301) + }, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/port) +"Pj" = ( +/obj/structure/sink{ + pixel_y = 22 + }, +/obj/structure/mirror{ + pixel_y = 32 + }, +/obj/machinery/button/remote/airlock{ + dir = 1; + id = "talon_charger"; + name = "Door Bolts"; + pixel_y = -28; + specialfunctions = 4 + }, +/turf/simulated/floor/tiled/white, +/area/talon_v2/crew_quarters/restrooms) +"Pk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/yellow{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/catwalk, +/obj/machinery/power/apc/talon/hyper{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/generators) +"Pl" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 26 + }, +/obj/random/multiple/corp_crate/talon_cargo, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/maintenance/wing_port) +"Pm" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -13571,68 +13014,378 @@ /obj/structure/disposalpipe/segment{ dir = 1 }, -/obj/machinery/door/airlock{ - name = "Observation Room" +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/meditation) +"Po" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/hangar) +"Pq" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/port) +"Pr" = ( +/obj/structure/bookcase/manuals/research_and_development, +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/meditation) +"Ps" = ( +/obj/structure/sink{ + pixel_y = 22 + }, +/obj/structure/medical_stand/anesthetic, +/turf/simulated/floor/tiled/white, +/area/talon_v2/medical) +"Pt" = ( +/obj/structure/bookcase/manuals/xenoarchaeology, +/obj/structure/closet/emergsuit_wall{ + dir = 4; + pixel_x = 32 + }, +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/meditation) +"Pv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 5 + }, +/obj/structure/closet/emergsuit_wall{ + dir = 1; + pixel_y = -32 + }, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/wing_starboard) +"Px" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/random/multiple/corp_crate/talon_cargo, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/maintenance/wing_port) +"Py" = ( +/obj/effect/floor_decal/industrial/outline/red, +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/phoron/engine_setup, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/port) +"PA" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/talon_v2/crew_quarters/meditation) -"Tr" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 +/area/talon_v2/refining) +"PB" = ( +/obj/structure/table/rack/shelf/steel, +/obj/machinery/recharger/wallcharger{ + pixel_x = 5; + pixel_y = 24 }, +/obj/item/weapon/storage/backpack/dufflebag/talon, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/armory) +"PC" = ( +/obj/structure/table/rack/shelf/steel, +/obj/machinery/recharger/wallcharger{ + pixel_x = 5; + pixel_y = 24 + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/armory) +"PD" = ( +/obj/structure/extinguisher_cabinet{ + dir = 1; + pixel_y = -32 + }, +/obj/machinery/power/smes/buildable/offmap_spawn{ + RCon_tag = "Talon Port SMES" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/talon_v2/engineering) +"PF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 + dir = 4 }, -/obj/structure/sign/directions/security{ - dir = 8; - pixel_x = -32; - pixel_y = 3 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/structure/sign/directions/security/brig{ - dir = 8; - pixel_x = -32; - pixel_y = -3 +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/department/eng{ + pixel_y = -32 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, /area/talon_v2/central_hallway) -"Tt" = ( +"PH" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/closet/emergsuit_wall{ + dir = 4; + pixel_x = 32 + }, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/starboard) +"PI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 10 + }, /turf/simulated/wall/rshull, /area/shuttle/talonboat) -"Tw" = ( -/obj/machinery/atmospherics/binary/pump/fuel, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/talonboat) -"Tz" = ( +"PK" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "talonrefinery" + }, +/obj/structure/sign/warning/moving_parts{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/refining) +"PL" = ( /obj/structure/hull_corner/long_horiz{ + dir = 6 + }, +/turf/space, +/area/space) +"PO" = ( +/obj/machinery/door/firedoor/glass/talon, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock{ + name = "Storage Room" + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/gen_store) +"PP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/holoposter{ + dir = 8; + pixel_x = -32 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway) +"PR" = ( +/obj/effect/floor_decal/emblem/talon_big{ dir = 10 }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/central_hallway/fore) +"PT" = ( +/obj/machinery/power/pointdefense{ + id_tag = "talon_pd" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 9 + }, /turf/simulated/floor/reinforced/airless, /area/space) -"TA" = ( +"PX" = ( +/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" + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/anomaly_storage) +"Qa" = ( /turf/simulated/wall/shull, -/area/talon_v2/maintenance/wing_port) -"TB" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, -/obj/effect/catwalk_plated, -/obj/structure/disposalpipe/segment{ +/area/talon_v2/engineering) +"Qb" = ( +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc/talon{ + dir = 1; + name = "north bump"; + pixel_y = 28 + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/anomaly_storage) +"Qc" = ( +/obj/structure/table/steel, +/obj/item/device/measuring_tape, +/obj/item/weapon/tool/wrench, +/obj/item/weapon/storage/excavation, +/obj/item/stack/flag/yellow, +/obj/item/weapon/pickaxe, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/anomaly_storage) +"Qe" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/wall/shull, +/area/talon_v2/ofd_ops) +"Qf" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 1 + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/starboard) +"Qi" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/map_helper/airlock/sensor/int_sensor, +/obj/machinery/airlock_sensor{ + dir = 4; + pixel_x = -28; + req_one_access = list(301) + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/ofd_ops) +"Qj" = ( +/obj/structure/catwalk, +/obj/machinery/light/small{ + dir = 8 + }, /obj/structure/cable/green{ d1 = 1; d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/talon_v2/central_hallway/port) -"TD" = ( -/obj/structure/bed/chair/bay/chair, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/area/talon_v2/maintenance/fore_port) +"Qk" = ( +/obj/structure/hull_corner/long_horiz{ + dir = 6 + }, +/turf/simulated/floor/reinforced/airless, +/area/space) +"Qm" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/random/multiple/corp_crate/talon_cargo, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/maintenance/wing_starboard) +"Qn" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/random/multiple/corp_crate/talon_cargo, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/maintenance/wing_starboard) +"Qo" = ( +/obj/effect/map_helper/airlock/sensor/int_sensor, +/obj/structure/sign/warning/airlock{ + pixel_y = 32 + }, +/obj/machinery/airlock_sensor{ + dir = 4; + pixel_x = -28; + pixel_y = -28; + req_one_access = list(301) + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/aux{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/maintenance/fore_port) +"Qq" = ( +/obj/structure/hull_corner/long_horiz{ dir = 10 }, -/turf/simulated/floor/wood, -/area/talon_v2/crew_quarters/meditation) -"TE" = ( +/turf/space, +/area/space) +"Qt" = ( +/obj/machinery/power/apc/talon/hyper{ + pixel_y = -24 + }, +/obj/effect/catwalk_plated/dark, +/obj/structure/closet/walllocker_double/hydrant/west, +/obj/structure/cable/green, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/talon_v2/engineering) +"Qu" = ( +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/armory) +"Qx" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/random/multiple/corp_crate/talon_cargo, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/maintenance/wing_starboard) +"Qy" = ( +/turf/simulated/wall/shull, +/area/talon_v2/maintenance/fore_starboard) +"Qz" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/handrail{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + dir = 8; + pixel_x = 30 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/maintenance/wing_starboard) +"QA" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/random/multiple/corp_crate/talon_cargo, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/maintenance/wing_port) +"QB" = ( /obj/structure/sink{ pixel_y = 22 }, @@ -13649,85 +13402,455 @@ /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled/white, /area/talon_v2/crew_quarters/restrooms) -"TG" = ( -/obj/machinery/power/apc/talon{ - dir = 1; - name = "north bump"; - pixel_y = 28 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, +"QC" = ( +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/bridge) +"QD" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/secure_storage) +"QE" = ( +/turf/simulated/wall/rshull, +/area/talon_v2/central_hallway/fore) +"QF" = ( +/obj/machinery/atmospherics/pipe/simple/visible, /obj/structure/catwalk, /turf/simulated/floor/plating, -/area/talon_v2/engineering/port_store) -"TJ" = ( -/obj/structure/catwalk, +/area/talon_v2/engineering/atmospherics) +"QH" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/aux{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/wing_starboard) +"QI" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/maintenance/wing_port) +"QJ" = ( +/obj/machinery/atmospherics/portables_connector/aux{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline, +/obj/machinery/portable_atmospherics/canister/air, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/wing_starboard) +"QM" = ( +/obj/effect/shuttle_landmark/shuttle_initializer/talonboat, /obj/structure/cable/green{ d1 = 4; d2 = 8; icon_state = "4-8" }, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/aft_starboard) -"TL" = ( -/obj/machinery/alarm/talon{ - dir = 8; - pixel_x = 22 +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 }, -/obj/structure/bed/pod, -/obj/item/weapon/bedsheet/blue, -/obj/machinery/computer/ship/navigation/telescreen{ - pixel_y = -32 - }, -/obj/machinery/light, -/turf/simulated/floor/carpet, -/area/talon_v2/crew_quarters/pilot_room) -"TN" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/port_store) -"TO" = ( -/obj/structure/sign/warning/airlock{ - pixel_x = 32 - }, -/obj/effect/floor_decal/industrial/warning, -/obj/structure/handrail{ +/obj/effect/overmap/visitable/ship/landable/talon_boat, +/obj/structure/handrail, +/obj/effect/floor_decal/industrial/warning{ dir = 8 }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 4 + }, +/obj/structure/closet/walllocker_double/survival/north, /turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/maintenance/wing_starboard) -"TP" = ( -/obj/effect/map_helper/airlock/sensor/int_sensor, -/obj/machinery/airlock_sensor{ - dir = 8; - pixel_x = 28; - pixel_y = -28; +/area/shuttle/talonboat) +"QN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/central_hallway/fore) +"QO" = ( +/obj/machinery/door/blast/regular/open{ + dir = 2; + id = "talon_bridge_shields" + }, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 4 + }, +/turf/simulated/floor/reinforced/airless, +/area/talon_v2/bridge) +"QP" = ( +/obj/effect/shuttle_landmark/premade/talon_v2_near_aft_port, +/turf/space, +/area/space) +"QR" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway/port) +"QS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway) +"QU" = ( +/turf/simulated/wall/rshull, +/area/talon_v2/crew_quarters/bar) +"QV" = ( +/obj/machinery/door/airlock/glass_external{ req_one_access = list(301) }, -/obj/structure/sign/warning/airlock{ - pixel_y = 32 - }, +/obj/effect/map_helper/airlock/door/int_door, /obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/maintenance/fore_port) +"QW" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/red{ + dir = 8 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/atmospherics) +"Ra" = ( +/obj/structure/railing/grey{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/bridge) +"Rb" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass/talon, +/obj/machinery/door/airlock/engineering{ + name = "Talon Port Engines & Spare Fuel"; + req_one_access = list(301) + }, +/obj/structure/sign/warning/nosmoking_1{ + pixel_x = -26 + }, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/port) +"Rd" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/talon_v2/engineering) +"Re" = ( +/turf/simulated/wall/rshull, +/area/talon_v2/maintenance/fore_port) +"Rf" = ( +/obj/structure/hull_corner/long_vert{ + dir = 5 + }, +/turf/simulated/floor/reinforced/airless, +/area/space) +"Rg" = ( +/obj/structure/bed/chair/bay/chair{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/talon_v2/crew_quarters/eng_room) +"Ri" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/aft_starboard) +"Rj" = ( +/obj/machinery/atmospherics/binary/pump/high_power/on{ + dir = 4 + }, +/obj/structure/railing/grey{ + dir = 4 + }, +/obj/structure/railing/grey{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/atmospherics) +"Rk" = ( +/obj/effect/shuttle_landmark/premade/talon_v2_near_aft_star, +/turf/space, +/area/space) +"Rn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/catwalk, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/starboard) +"Rp" = ( +/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/techmaint, +/area/talon_v2/central_hallway/port) +"Rs" = ( +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/cap_room) +"Rt" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/atmospherics) +"Ru" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/maintenance/wing_port) +"Rx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/maintenance/fore_starboard) -"TR" = ( -/turf/simulated/wall/rshull, -/area/talon_v2/maintenance/wing_port) -"TT" = ( -/mob/living/simple_mob/animal/passive/dog/corgi/puppy{ - desc = "That's Hendrickson, warden of the Talon's brig. No schemes can escape the watchful gleam of this corgi's deep, dark eyes."; - name = "Hendrickson" +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 }, -/obj/structure/dogbed, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/port) +"Ry" = ( +/obj/machinery/mineral/stacking_machine, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/refining) +"RA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 4 + }, +/obj/structure/closet/emergsuit_wall{ + dir = 1; + pixel_y = -32 + }, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/wing_port) +"RB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/computer/guestpass{ + dir = 4; + pixel_x = -26 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway) +"RC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 9 + }, +/obj/structure/closet/emergsuit_wall{ + dir = 1; + pixel_y = -32 + }, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/wing_port) +"RE" = ( +/obj/structure/table/rack/steel, +/obj/random/maintenance/engineering, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/star_store) +"RF" = ( +/obj/structure/railing/grey{ + dir = 1 + }, +/obj/structure/flora/pottedplant/small, /turf/simulated/floor/tiled/techfloor, -/area/talon_v2/brig) -"TW" = ( +/area/talon_v2/bridge) +"RG" = ( +/obj/machinery/light/small, +/obj/structure/sign/directions/engineering/engeqp{ + pixel_y = -24 + }, +/turf/simulated/floor/carpet, +/area/talon_v2/crew_quarters/eng_room) +"RI" = ( +/obj/machinery/vending/tool{ + req_log_access = 301 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/engineering/star_store) +"RJ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/ship_munition/disperser_charge/explosive, +/turf/simulated/floor/reinforced, +/area/talon_v2/ofd_ops) +"RK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/closet/crate, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/gen_store) +"RO" = ( +/obj/machinery/power/sensor{ + name = "Talon Power Generation"; + name_tag = "TLN-PWR-GEN" + }, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/yellow, +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable/yellow{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/talon_v2/engineering) +"RP" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/handrail, +/obj/structure/closet/autolok_wall{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/talonboat) +"RQ" = ( +/turf/simulated/wall/shull, +/area/talon_v2/medical) +"RT" = ( +/obj/machinery/atmospherics/omni/atmos_filter{ + name = "N2/O2 Filter"; + tag_east = 4; + tag_north = 3; + tag_south = 2; + tag_west = 1 + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/atmospherics) +"RV" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/random/multiple/corp_crate/talon_cargo, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/maintenance/wing_port) +"RY" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/mine_room) +"RZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/meditation) +"Sa" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/weapon/gun/energy/gun, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/armory) +"Sb" = ( +/obj/structure/bed/chair/wood, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/carpet/blucarpet, +/area/talon_v2/crew_quarters/cap_room) +"Sd" = ( /obj/structure/cable/green{ d1 = 1; d2 = 4; @@ -13741,868 +13864,378 @@ }, /turf/simulated/floor/wood, /area/talon_v2/crew_quarters/meditation) -"TX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, +"Sf" = ( /obj/structure/catwalk, -/turf/simulated/floor/plating, +/obj/structure/handrail, +/turf/simulated/floor/reinforced/airless, /area/talon_v2/maintenance/aft_port) -"TZ" = ( -/obj/machinery/atmospherics/pipe/manifold/visible{ - dir = 8 - }, -/obj/structure/railing/grey, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/atmospherics) -"Ua" = ( -/obj/machinery/camera/network/talon{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway) -"Uf" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/firealarm{ - layer = 3.3; - pixel_y = 26 - }, -/obj/structure/catwalk, -/obj/machinery/camera/network/talon, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/starboard) -"Ug" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/hangar) -"Uh" = ( -/obj/machinery/atmospherics/pipe/simple/visible/blue{ - dir = 10 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/atmospherics) -"Uj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/bed/chair/bay/chair, -/turf/simulated/floor/carpet, -/area/talon_v2/crew_quarters/med_room) -"Uk" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/maintenance/wing_starboard) -"Um" = ( -/obj/machinery/mineral/mint, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/refining) -"Un" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 5 - }, +"Sg" = ( +/turf/simulated/wall/rshull, +/area/talon_v2/maintenance/fore_starboard) +"Si" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; icon_state = "4-8" }, -/obj/machinery/alarm/talon{ - dir = 1; - pixel_y = -25 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/atmospherics) -"Uo" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/catwalk, -/obj/machinery/alarm/talon{ - dir = 4; - pixel_x = -22 - }, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/aft_starboard) -"Up" = ( -/turf/simulated/wall/rshull, -/area/talon_v2/maintenance/wing_starboard) -"Ur" = ( -/obj/structure/table/woodentable, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/item/modular_computer/laptop/preset/custom_loadout/standard/talon/pilot, -/turf/simulated/floor/carpet, -/area/talon_v2/crew_quarters/pilot_room) -"Us" = ( -/obj/effect/map_helper/airlock/atmos/chamber_pump, -/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ - dir = 1 - }, -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - dir = 1; - id_tag = "talon_starboard"; - pixel_y = -30; +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway/port) +"Sj" = ( +/obj/machinery/door/firedoor/glass/talon, +/obj/machinery/door/airlock/maintenance/medical{ req_one_access = list(301) }, -/obj/structure/handrail{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ +/turf/simulated/floor/plating, +/area/talon_v2/medical) +"Sk" = ( +/turf/simulated/wall/shull, +/area/talon_v2/crew_quarters/restrooms) +"Sn" = ( +/obj/structure/bookcase/manuals/engineering, +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/meditation) +"So" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/maintenance/wing_starboard) -"Uu" = ( -/obj/machinery/light{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/holoposter{ + dir = 1; + pixel_y = 32 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway) -"Uw" = ( -/obj/structure/bed/chair/bay/chair, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 +/area/talon_v2/central_hallway/port) +"Sr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/engineering) -"Ux" = ( -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - id_tag = "talon_boat"; - pixel_y = 24 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/aux{ - dir = 1 +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/department/shield{ + pixel_y = -31 }, -/obj/structure/handrail, /obj/structure/cable/green{ d1 = 4; d2 = 8; icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/shuttle/talonboat) -"Uz" = ( -/obj/structure/catwalk, -/obj/structure/handrail{ - dir = 8 - }, -/turf/simulated/floor/reinforced/airless, -/area/talon_v2/maintenance/fore_port) -"UA" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/wing_starboard) -"UB" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/hangar) -"UC" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/toilet, -/turf/simulated/floor/tiled/white, -/area/talon_v2/crew_quarters/restrooms) -"UF" = ( -/obj/structure/bookcase/manuals/medical, -/obj/machinery/camera/network/talon, -/turf/simulated/floor/wood, -/area/talon_v2/crew_quarters/meditation) -"UG" = ( -/obj/machinery/camera/network/talon{ - dir = 8 - }, /turf/simulated/floor/tiled/techmaint, /area/talon_v2/central_hallway) -"UI" = ( -/obj/machinery/power/pointdefense{ - id_tag = "talon_pd" - }, +"Ss" = ( /obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" + d1 = 2; + d2 = 4; + icon_state = "2-4" }, -/turf/simulated/floor/reinforced/airless, -/area/space) -"UJ" = ( -/obj/structure/railing/grey{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/bridge) -"UK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/cap_room) +"St" = ( +/obj/structure/table/woodentable, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, -/obj/machinery/light/small, +/obj/item/weapon/paper/talon_pilot, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/carpet, +/area/talon_v2/crew_quarters/pilot_room) +"Su" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 9 + }, +/obj/structure/catwalk, /turf/simulated/floor/plating, -/area/talon_v2/engineering/port) -"UL" = ( -/obj/structure/disposalpipe/trunk, -/obj/machinery/disposal, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/central_hallway/fore) -"UN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 +/area/talon_v2/engineering/atmospherics) +"Sv" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ + dir = 1 + }, +/turf/simulated/wall/rshull, +/area/shuttle/talonboat) +"Sx" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/meditation) +"Sy" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 5 + }, +/turf/simulated/floor/reinforced/airless, +/area/talon_v2/engineering/starboard) +"Sz" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/visible/yellow, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/starboard) -"UR" = ( -/obj/machinery/power/pointdefense{ - id_tag = "talon_pd" - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 10 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/reinforced/airless, -/area/space) -"UW" = ( -/obj/machinery/power/pointdefense{ - id_tag = "talon_pd" - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/reinforced/airless, -/area/space) -"UX" = ( -/obj/structure/closet/emergsuit_wall{ - dir = 1; - pixel_y = -32 - }, /turf/simulated/floor/wood, /area/talon_v2/crew_quarters/sec_room) -"Va" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +"SC" = ( +/obj/machinery/button/remote/blast_door{ + id = "talon_cargo_port"; + name = "Cargo Loading Hatches"; + pixel_y = -28 }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" +/obj/structure/window/reinforced{ + dir = 4 }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway/port) -"Vc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/bridge) -"Vg" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/catwalk, -/obj/machinery/light/small{ +/obj/structure/window/reinforced{ dir = 8 }, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/aft_port) -"Vh" = ( -/obj/structure/hull_corner{ - dir = 1 - }, -/turf/space, -/area/space) -"Vi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/structure/disposalpipe/segment{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway) -"Vj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/talonboat) -"Vo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/brig) -"Vp" = ( -/obj/structure/table/woodentable, -/obj/item/modular_computer/tablet/preset/custom_loadout/advanced, -/obj/item/weapon/paper_bin, -/obj/item/weapon/pen, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor/carpet/blucarpet, -/area/talon_v2/crew_quarters/cap_room) -"Vs" = ( -/obj/machinery/atmospherics/pipe/tank/nitrogen{ - dir = 8 - }, -/obj/structure/railing/grey, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/atmospherics) -"Vt" = ( -/obj/machinery/door/firedoor/glass/talon, -/obj/machinery/door/airlock/glass{ - name = "Workroom" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 1 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/workroom) -"Vv" = ( -/obj/machinery/portable_atmospherics/canister/phoron/engine_setup, -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/port) -"Vw" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/alarm/talon{ - dir = 8; - pixel_x = 22 - }, -/obj/random/multiple/corp_crate/talon_cargo, -/obj/structure/railing/grey, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/maintenance/wing_port) -"Vx" = ( -/obj/machinery/door/firedoor/glass/talon, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/security{ - id_tag = "talon_secdoor"; - name = "Guard's Cabin"; +/obj/machinery/door/window/brigdoor/northleft{ + req_access = list(); req_one_access = list(301) }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/crew_quarters/sec_room) -"VD" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/random/multiple/corp_crate/talon_cargo, +/obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/techfloor, /area/talon_v2/maintenance/wing_port) -"VE" = ( -/obj/item/weapon/storage/box/bodybags, -/obj/item/roller, -/obj/item/roller{ - pixel_y = 8 +"SE" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/obj/structure/table/standard, -/turf/simulated/floor/tiled/white, -/area/talon_v2/medical) -"VF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/corner/black/diagonal, -/obj/item/weapon/stool/baystool/padded{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/talon_v2/crew_quarters/bar) -"VH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/catwalk, /turf/simulated/floor/plating, -/area/talon_v2/engineering/port) -"VI" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/wall/rshull, -/area/talon_v2/bridge) -"VK" = ( -/obj/machinery/atmospherics/omni/mixer{ - name = "Air Mixer"; - tag_north = 2; - tag_south = 1; - tag_south_con = 0.79; - tag_west = 1; - tag_west_con = 0.21 - }, -/obj/effect/catwalk_plated/dark, -/turf/simulated/floor/plating, /area/talon_v2/engineering/atmospherics) -"VO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +"SG" = ( +/obj/machinery/light/small{ dir = 4 }, /obj/structure/cable/green{ + d1 = 1; d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc/talon{ - dir = 1; - name = "north bump"; - pixel_y = 28 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 + icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway/port) -"VQ" = ( -/obj/machinery/door/firedoor/glass/talon, -/obj/machinery/door/airlock/maintenance/common, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, /area/talon_v2/maintenance/wing_starboard) -"VS" = ( -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/refining) -"VT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/aux, -/obj/machinery/recharge_station, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/central_hallway/fore) -"VX" = ( -/obj/machinery/alarm/talon{ - dir = 1; - pixel_y = -25 - }, -/obj/structure/reagent_dispensers/foam, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/gen_store) -"VY" = ( -/obj/structure/closet/walllocker/emerglocker/east, +"SJ" = ( /obj/machinery/light{ dir = 4 }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/secure_storage) -"Wa" = ( -/obj/machinery/atmospherics/portables_connector/aux{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline, -/obj/machinery/portable_atmospherics/canister/air, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/wing_port) -"Wb" = ( -/obj/machinery/shipsensors{ - dir = 1 - }, -/turf/simulated/floor/reinforced, -/area/shuttle/talonboat) -"Wc" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/machinery/power/apc/talon{ - name = "south bump"; - pixel_y = -24 - }, /obj/structure/cable/green{ d2 = 8; icon_state = "0-8" }, -/obj/machinery/camera/network/talon{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/hangar) -"Wd" = ( -/obj/machinery/autolathe, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/workroom) -"Wf" = ( -/obj/machinery/door/airlock/glass_external{ - req_one_access = list(301) - }, -/obj/effect/map_helper/airlock/door/int_door, -/obj/machinery/atmospherics/pipe/simple/hidden/aux, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/maintenance/aft_starboard) -"Wj" = ( -/obj/structure/table/standard, -/obj/machinery/chemical_dispenser/biochemistry/full, -/turf/simulated/floor/tiled/white, -/area/talon_v2/medical) -"Wk" = ( -/obj/structure/table/standard, -/obj/machinery/chemical_dispenser/full, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/talon_v2/medical) -"Wl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/gen_store) -"Wm" = ( -/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/closet/walllocker_double/hydrant/north, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway/port) -"Wo" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/blast/regular{ +/obj/machinery/power/apc/talon{ dir = 4; - id = "talon_cargo_star"; - name = "Cargo Loading Hatch" + name = "east bump"; + pixel_x = 24 }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/maintenance/wing_starboard) -"Wp" = ( -/obj/structure/table/woodentable, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/item/modular_computer/laptop/preset/custom_loadout/standard/talon/security, -/obj/machinery/camera/network/talon{ - dir = 1 - }, -/turf/simulated/floor/carpet, -/area/talon_v2/crew_quarters/sec_room) -"Wq" = ( -/obj/machinery/door/firedoor/glass/talon, -/obj/machinery/door/airlock/command{ - id_tag = "talon_capdoor"; - name = "Captain's Cabin"; - req_one_access = list(301) - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/bridge) -"Wr" = ( +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/meditation) +"SK" = ( +/obj/machinery/light/small, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/bed/chair/bay/chair, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/central_hallway) -"Ws" = ( -/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/aft_port) +"SL" = ( +/obj/machinery/door/firedoor/glass/talon, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/railing/grey, -/obj/random/multiple/corp_crate/talon_cargo, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/maintenance/wing_starboard) -"Wt" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/effect/catwalk_plated, -/obj/structure/disposalpipe/junction, -/obj/structure/sign/directions/engineering{ - pixel_x = 32; - pixel_y = -3 - }, -/obj/structure/sign/directions/engineering/atmospherics{ - dir = 8; - pixel_x = 32; - pixel_y = 3 +/obj/machinery/door/airlock{ + id_tag = "talon_pilotdoor"; + name = "Pilot's Cabin"; + req_one_access = list(301) }, /obj/structure/cable/green{ d1 = 1; d2 = 2; icon_state = "1-2" }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/crew_quarters/pilot_room) +"SN" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 26 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/armory) +"SQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/sign/department/armory{ + name = "GUARD'S QUARTERS"; + pixel_x = -32 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway/fore) +"SS" = ( +/obj/machinery/power/pointdefense{ + id_tag = "talon_pd" + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/reinforced/airless, +/area/space) +"ST" = ( /obj/structure/cable/green{ d1 = 2; d2 = 8; icon_state = "2-8" }, -/turf/simulated/floor/plating, -/area/talon_v2/central_hallway) -"Wu" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/talon_v2/medical) -"Wy" = ( -/obj/machinery/cryopod/talon, -/obj/machinery/camera/network/talon, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/central_hallway) -"Wz" = ( -/obj/machinery/button/remote/airlock{ - dir = 8; - id = "talon_engdoor"; - name = "Door Bolts"; - pixel_x = -28; - specialfunctions = 4 - }, -/obj/item/weapon/bedsheet/orange, -/obj/structure/bed/pod, -/obj/machinery/light_switch{ - dir = 1; - pixel_y = -26 - }, -/turf/simulated/floor/carpet, -/area/talon_v2/crew_quarters/eng_room) -"WB" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/closet/walllocker_double/hydrant/north, /turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway/star) -"WC" = ( -/obj/structure/hull_corner/long_vert{ - dir = 9 - }, -/turf/simulated/floor/reinforced/airless, -/area/space) -"WF" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ +/area/talon_v2/maintenance/wing_starboard) +"SU" = ( +/obj/effect/floor_decal/industrial/warning{ dir = 4 }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/port) -"WJ" = ( -/turf/simulated/wall/shull, -/area/talon_v2/crew_quarters/eng_room) -"WK" = ( -/obj/structure/table/woodentable, -/obj/item/clothing/accessory/talon{ - pixel_x = 4; - pixel_y = 7 - }, -/obj/item/clothing/head/caphat/talon{ - pixel_x = -5 - }, -/turf/simulated/floor/wood, -/area/talon_v2/crew_quarters/cap_room) -"WM" = ( -/obj/machinery/atmospherics/unary/engine/bigger{ +/obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, -/turf/space, -/area/talon_v2/engineering/starboard) -"WN" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/blue{ - dir = 8 - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/atmospherics) -"WQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/aux, -/obj/machinery/camera/network/talon{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/central_hallway/fore) -"WS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/alarm/talon{ - pixel_y = 28 - }, -/turf/simulated/floor/wood, -/area/talon_v2/crew_quarters/eng_room) -"WT" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/flora/pottedplant/crystal, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/central_hallway/fore) -"WU" = ( -/obj/effect/floor_decal/industrial/outline/red, -/obj/machinery/portable_atmospherics/canister/empty/phoron, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/star_store) -"WY" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/atmospherics) -"WZ" = ( -/turf/simulated/wall/shull, -/area/talon_v2/maintenance/aft_port) -"Xa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/catwalk, /obj/structure/cable/green{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/aft_port) -"Xb" = ( +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/hangar) +"SV" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/power/sensor{ + name = "Talon Main Grid"; + name_tag = "TLN-MAIN-GRID" + }, /obj/structure/cable/green{ - d1 = 4; d2 = 8; - icon_state = "4-8" + icon_state = "0-8" }, -/turf/simulated/wall/rshull, -/area/talon_v2/maintenance/wing_starboard) -"Xf" = ( -/obj/machinery/telecomms/allinone/talon{ - id = "talon_aio"; - network = "Talon" +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" }, +/obj/structure/cable/green, +/obj/effect/catwalk_plated/dark, +/obj/structure/sign/department/eng{ + name = "ENGINEER'S QUARTERS"; + pixel_x = 32 + }, +/turf/simulated/floor/plating, +/area/talon_v2/engineering) +"SW" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/star_store) +"SX" = ( +/obj/structure/hull_corner{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/shuttle/talonboat) +"SY" = ( +/obj/machinery/atmospherics/unary/engine{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/shuttle/talonboat) +"SZ" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/turf/simulated/floor/reinforced/airless, +/area/talon_v2/engineering/port) +"Ta" = ( +/obj/structure/hull_corner{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/shuttle/talonboat) +"Tb" = ( +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/star_store) +"Td" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/workroom) +"Tf" = ( /obj/machinery/light/small{ dir = 1 }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/engineering) -"Xh" = ( +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/starboard) +"Tg" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/eng_room) +"Ti" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/box/handcuffs, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/brig) +"Tk" = ( /obj/machinery/door/firedoor/glass/talon, /obj/machinery/door/airlock/maintenance/engi{ name = "Starboard Eng. Storage"; @@ -14615,56 +14248,72 @@ }, /turf/simulated/floor/plating, /area/talon_v2/engineering/star_store) -"Xi" = ( +"Tl" = ( +/turf/simulated/wall/shull{ + can_open = 1 + }, +/area/talon_v2/engineering/atmospherics) +"Tm" = ( +/obj/structure/catwalk, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/reinforced/airless, +/area/talon_v2/maintenance/aft_starboard) +"To" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/ofd_ops) +"Tq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ d1 = 2; d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled/techmaint, -/area/talon_v2/maintenance/wing_port) -"Xj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/aux, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/maintenance/wing_starboard) -"Xl" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/camera/network/talon{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/talon_v2/medical) -"Xm" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/brig) -"Xn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/area/talon_v2/gen_store) +"Tr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ +/obj/structure/bed/chair/bay/chair, +/turf/simulated/floor/carpet, +/area/talon_v2/crew_quarters/sec_room) +"Ts" = ( +/obj/structure/sign/warning/nosmoking_1{ + pixel_x = 26 + }, +/obj/structure/table/rack/shelf/steel, +/obj/random/maintenance/engineering, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/port_store) +"Tt" = ( +/turf/simulated/wall/rshull, +/area/shuttle/talonboat) +"Tw" = ( +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/talonboat) +"Tz" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, -/obj/structure/sign/directions/bar{ - dir = 1; - pixel_x = 32; - pixel_y = -3 +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/hangar) +"TA" = ( +/turf/simulated/wall/shull, +/area/talon_v2/maintenance/wing_port) +"TB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 }, -/obj/structure/sign/directions/bridge{ - dir = 1; - pixel_x = 32; - pixel_y = 3 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 }, /obj/structure/cable/green{ d1 = 1; @@ -14672,30 +14321,590 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway) -"Xo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 4 +/area/talon_v2/secure_storage) +"TD" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/handrail{ +/obj/structure/sign/department/biblio{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway/port) +"TE" = ( +/obj/structure/railing/grey{ dir = 1 }, -/obj/machinery/light_switch{ - dir = 1; - pixel_x = 8; - pixel_y = -26 +/obj/structure/window/reinforced{ + dir = 1 }, -/obj/structure/fuel_port/heavy{ +/obj/machinery/smartfridge/sheets/persistent_lossy{ + layer = 3.3 + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/refining) +"TF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/starboard) +"TG" = ( +/obj/machinery/atmospherics/omni/atmos_filter{ + name = "CO2 Filter"; + tag_east = 2; + tag_north = 1; + tag_south = 5 + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/atmospherics) +"TH" = ( +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = -30 + }, +/turf/simulated/wall/shull, +/area/talon_v2/crew_quarters/mine_room) +"TJ" = ( +/obj/machinery/mineral/stacking_unit_console{ + pixel_y = -6; + req_one_access = list(301) + }, +/obj/structure/girder, +/obj/structure/railing/grey{ + dir = 4 + }, +/obj/structure/railing/grey{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/refining) +"TL" = ( +/obj/machinery/suit_cycler/vintage/tpilot, +/obj/machinery/button/remote/airlock{ + id = "talon_minerdoor"; + name = "Door Bolts"; + pixel_y = 28; + specialfunctions = 4 + }, +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/pilot_room) +"TN" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/port_store) +"TO" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/random/multiple/corp_crate/talon_cargo, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/maintenance/wing_starboard) +"TP" = ( +/obj/structure/bed/chair/bay/shuttle, +/obj/structure/closet/walllocker_double/survival/north, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/talonpod) +"TR" = ( +/obj/effect/floor_decal/industrial/warning/dust/corner{ + dir = 4 + }, +/turf/simulated/floor/reinforced/airless, +/area/space) +"TW" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/effect/catwalk_plated, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/talon_v2/central_hallway/port) +"TX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/aft_port) +"TY" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/item/modular_computer/console/preset/talon{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/engineering) +"TZ" = ( +/obj/machinery/conveyor{ dir = 1; - pixel_y = -28 + id = "talonrefinery" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/refining) +"Ua" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/anomaly_storage) +"Uc" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/atmospherics) +"Ud" = ( +/obj/structure/bed/chair/bay/chair{ + dir = 1 + }, +/obj/structure/panic_button{ + pixel_x = -32; + pixel_y = 32 }, /turf/simulated/floor/tiled/techfloor, /area/shuttle/talonboat) -"Xp" = ( +"Ue" = ( +/obj/machinery/power/pointdefense{ + id_tag = "talon_pd" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 5 + }, +/turf/simulated/floor/reinforced/airless, +/area/space) +"Uf" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/anomaly_storage) +"Ug" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/hangar) +"Uh" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/hangar) +"Uj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass/talon, +/obj/machinery/door/airlock/maintenance/common, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/fore_starboard) +"Uk" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/maintenance/wing_starboard) +"Um" = ( +/obj/machinery/camera/network/talon{ + dir = 4 + }, +/obj/machinery/mineral/mint, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/refining) +"Un" = ( +/obj/machinery/atmospherics/pipe/tank/oxygen{ + dir = 4 + }, /turf/simulated/floor/plating, /area/talon_v2/engineering/atmospherics) -"Xq" = ( +"Uo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/anomaly_storage) +"Up" = ( +/obj/effect/floor_decal/industrial/warning/dust/corner{ + dir = 1 + }, +/turf/simulated/floor/reinforced/airless, +/area/space) +"Ur" = ( +/obj/structure/sign/department/bridge{ + name = "PILOT'S QUARTERS"; + pixel_y = -32 + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/central_hallway/fore) +"Us" = ( +/obj/structure/hull_corner/long_horiz{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/reinforced/airless, +/area/space) +"Ut" = ( +/turf/simulated/wall/rshull, +/area/talon_v2/crew_quarters/cap_room) +"Uu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/closet/emergsuit_wall{ + dir = 8; + pixel_x = -32 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway) +"Uv" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/catwalk, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/star_store) +"Uw" = ( +/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/sign/department/telecoms{ + pixel_y = -31 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway) +"Ux" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/closet/autolok_wall{ + pixel_y = 32 + }, +/obj/structure/bed/chair/bay/shuttle, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/talonboat) +"UA" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/anomaly_storage) +"UB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway) +"UC" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/machinery/alarm/talon{ + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/anomaly_storage) +"UD" = ( +/obj/machinery/atmospherics/binary/pump/high_power/on, +/obj/structure/railing/grey{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/port) +"UF" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/random/multiple/corp_crate/talon_cargo, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/maintenance/wing_starboard) +"UG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 4 + }, +/obj/structure/closet/emergsuit_wall{ + dir = 1; + pixel_y = -32 + }, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/wing_starboard) +"UJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/bridge) +"UK" = ( +/turf/simulated/floor/plating, +/area/talon_v2/engineering/atmospherics) +"UL" = ( +/obj/machinery/door/firedoor/glass/talon, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/central_hallway/fore) +"UM" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/aft_starboard) +"UN" = ( +/obj/structure/hull_corner/long_vert{ + dir = 9 + }, +/turf/simulated/floor/reinforced/airless, +/area/space) +"UQ" = ( +/obj/structure/sign/warning/airlock{ + pixel_x = -31 + }, +/obj/effect/floor_decal/industrial/warning, +/obj/structure/handrail{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/maintenance/wing_port) +"UR" = ( +/turf/simulated/wall/rshull, +/area/talon_v2/crew_quarters/meditation) +"US" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/starboard) +"UW" = ( +/obj/effect/floor_decal/industrial/warning/dust, +/turf/simulated/floor/reinforced/airless, +/area/space) +"UX" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/meditation) +"Va" = ( +/obj/structure/bed/chair/bay/chair, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/meditation) +"Vc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/bridge) +"Vf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/meditation) +"Vg" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/effect/catwalk_plated, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/talon_v2/central_hallway/port) +"Vh" = ( +/obj/machinery/disposal/wall{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/sign/painting/public{ + pixel_x = -30 + }, +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/meditation) +"Vi" = ( +/obj/structure/bed/chair/bay/chair, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/meditation) +"Vj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/talonboat) +"Vl" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/camera/network/talon{ + dir = 1 + }, +/obj/structure/vehiclecage/quadbike, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/maintenance/wing_port) +"Vp" = ( +/turf/simulated/floor/carpet/blucarpet, +/area/talon_v2/crew_quarters/cap_room) +"Vr" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/eng_room) +"Vs" = ( +/obj/machinery/alarm/talon{ + dir = 8; + pixel_x = 22 + }, +/obj/structure/flora/pottedplant, +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/meditation) +"Vt" = ( +/obj/structure/sign/periodic{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/workroom) +"Vu" = ( /obj/effect/floor_decal/industrial/warning/dust/corner{ dir = 4 }, @@ -14704,84 +14913,747 @@ }, /turf/simulated/floor/reinforced/airless, /area/space) -"Xy" = ( +"Vv" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/clothing/accessory/holster/machete, +/obj/item/weapon/material/knife/machete, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/armory) +"Vw" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/closet/emergsuit_wall{ + dir = 4; + pixel_x = 32 + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/maintenance/wing_port) +"Vx" = ( +/obj/structure/railing/grey{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/conveyor_switch/oneway{ + id = "talonrefinery"; + name = "Conveyor Control"; + req_one_access = list(301) + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/refining) +"Vy" = ( +/obj/machinery/power/pointdefense{ + id_tag = "talon_pd" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 5 + }, +/turf/simulated/floor/reinforced/airless, +/area/space) +"Vz" = ( +/obj/structure/catwalk, +/obj/structure/handrail, +/turf/simulated/floor/reinforced/airless, +/area/talon_v2/maintenance/aft_starboard) +"VD" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/simulated/floor/wood, -/area/talon_v2/crew_quarters/cap_room) -"XB" = ( -/obj/machinery/light_switch{ +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/maintenance/wing_port) +"VE" = ( +/obj/structure/closet/emergsuit_wall{ dir = 4; - pixel_x = -26; - pixel_y = 24 + pixel_x = 32 }, -/turf/simulated/floor/wood, -/area/talon_v2/crew_quarters/bar) -"XC" = ( -/obj/machinery/atmospherics/portables_connector/aux{ +/turf/simulated/floor/tiled/white, +/area/talon_v2/medical) +"VH" = ( +/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{ + dir = 10 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/port) +"VJ" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ + dir = 1 + }, +/obj/structure/railing/grey{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/port) +"VK" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/closet/walllocker_double/hydrant/west, +/obj/machinery/light/small{ dir = 8 }, -/obj/effect/floor_decal/industrial/outline, -/obj/machinery/portable_atmospherics/canister/air, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/wing_starboard) -"XD" = ( -/obj/structure/table/standard, -/obj/fiftyspawner/glass, /turf/simulated/floor/tiled/techfloor, -/area/talon_v2/workroom) -"XE" = ( +/area/talon_v2/anomaly_storage) +"VL" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; icon_state = "4-8" }, -/obj/structure/closet/walllocker/medical/south, -/obj/item/weapon/storage/firstaid/regular, -/obj/item/weapon/storage/firstaid/o2, +/obj/structure/catwalk, +/obj/structure/closet/emergsuit_wall{ + dir = 1; + pixel_y = -32 + }, +/turf/simulated/floor/plating, +/area/talon_v2/engineering) +"VM" = ( +/obj/machinery/atmospherics/pipe/tank/nitrogen{ + dir = 8 + }, +/obj/structure/railing/grey, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/atmospherics) +"VN" = ( +/obj/structure/hull_corner/long_vert{ + dir = 5 + }, +/turf/space, +/area/space) +"VO" = ( +/obj/structure/anomaly_container, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/anomaly_storage) +"VQ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/anomaly_storage) +"VS" = ( +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/refining) +"VT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/aux, +/turf/simulated/wall/shull, +/area/talon_v2/ofd_ops) +"VX" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/anomaly_storage) +"VY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/brig) +"VZ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/alarm/talon{ + dir = 8; + pixel_x = 22 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/starboard) +"Wa" = ( +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux, +/obj/machinery/airlock_sensor{ + pixel_y = 28; + req_one_access = list(301) + }, +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/obj/structure/handrail, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/maintenance/wing_port) +"Wb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway) +"Wc" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ + dir = 1 + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/talonboat) +"Wd" = ( +/obj/effect/floor_decal/industrial/warning/dust/corner{ + dir = 8 + }, +/turf/simulated/floor/reinforced/airless, +/area/space) +"Wf" = ( +/obj/structure/catwalk, +/obj/machinery/alarm/talon{ + dir = 4; + pixel_x = -22 + }, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/star_store) +"Wj" = ( +/obj/structure/closet/secure_closet/chemical{ + req_access = list(301) + }, +/obj/item/weapon/reagent_containers/spray/cleaner{ + desc = "Someone has crossed out the 'Space' from Space Cleaner and written in Chemistry. Scrawled on the back is, 'Okay, whoever filled this with polytrinic acid, it was only funny the first time. It was hard enough replacing the CMO's first cat!'"; + name = "Chemistry Cleaner" + }, +/turf/simulated/floor/tiled/white, +/area/talon_v2/medical) +"Wk" = ( +/obj/structure/sink{ + pixel_y = 22 + }, +/obj/structure/mirror{ + pixel_y = 32 + }, +/obj/machinery/button/remote/airlock{ + dir = 8; + id = "talon_restroom2"; + name = "Door Bolts"; + pixel_x = -28; + specialfunctions = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/white, +/area/talon_v2/crew_quarters/restrooms) +"Wl" = ( +/obj/machinery/power/pointdefense{ + id_tag = "talon_pd" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/reinforced/airless, +/area/space) +"Wm" = ( +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/secure_storage) +"Wo" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 8 + }, +/turf/simulated/floor/reinforced/airless, +/area/space) +"Wp" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/wall/rshull, +/area/talon_v2/maintenance/wing_port) +"Wq" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/maintenance/wing_port) +"Wr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/carpet, +/area/talon_v2/crew_quarters/pilot_room) +"Wt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway) +"Wu" = ( +/turf/simulated/wall/shull{ + can_open = 1 + }, +/area/talon_v2/crew_quarters/restrooms) +"Wx" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/closet/emergsuit_wall{ + dir = 4; + pixel_x = 32 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/maintenance/wing_port) +"Wy" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/med_room) +"Wz" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/light_switch{ + pixel_y = 24 + }, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/eng_room) +"WB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/talon_v2/medical) +"WC" = ( +/obj/effect/map_helper/airlock/door/ext_door, +/obj/machinery/door/airlock/glass_external{ + req_one_access = list(301) + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/map_helper/airlock/sensor/ext_sensor, +/obj/machinery/airlock_sensor{ + pixel_y = 24; + req_one_access = list(301) + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/maintenance/wing_starboard) +"WF" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/port) +"WI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/central_hallway/fore) +"WJ" = ( +/turf/simulated/wall/shull, +/area/talon_v2/crew_quarters/eng_room) +"WK" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/blast/regular/open{ + id = "talon_windows" + }, +/obj/machinery/door/firedoor/glass/talon, +/turf/simulated/floor/plating, +/area/talon_v2/crew_quarters/cap_room) +"WL" = ( +/turf/simulated/wall/rshull, +/area/talon_v2/bridge) +"WM" = ( +/obj/structure/sign/warning/nosmoking_1{ + pixel_x = -26 + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/starboard) +"WN" = ( +/obj/machinery/door/firedoor/glass/talon, +/obj/machinery/door/airlock/glass{ + name = "Hangar Bay"; + req_one_access = list(301) + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/hangar) +"WQ" = ( +/obj/structure/bed/chair/bay/shuttle{ + dir = 1 + }, +/obj/structure/closet/walllocker_double/survival/south, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/talonpod) +"WS" = ( +/obj/machinery/light_switch{ + dir = 1; + pixel_y = -26 + }, +/obj/structure/table/woodentable, +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "talon_quietroom"; + name = "window blast shields"; + pixel_x = -28 + }, +/obj/machinery/recharger, +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/meditation) +"WT" = ( +/obj/machinery/vending/nifsoft_shop, +/obj/machinery/item_bank{ + pixel_y = 28 + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/central_hallway/fore) +"WU" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/star_store) +"WV" = ( +/obj/structure/catwalk, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/reinforced/airless, +/area/talon_v2/maintenance/aft_port) +"WY" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/effect/floor_decal/industrial/outline, +/obj/machinery/portable_atmospherics/powered/pump/filled, +/obj/structure/railing/grey{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/atmospherics) +"WZ" = ( +/obj/structure/closet/walllocker/emerglocker/west, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/armory) +"Xa" = ( +/obj/machinery/alarm/talon{ + dir = 8; + pixel_x = 22 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/aft_port) +"Xb" = ( +/obj/structure/table/woodentable, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/meditation) +"Xe" = ( +/obj/machinery/door/firedoor/glass/talon, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/blast/regular/open{ + dir = 2; + id = "talon_bridge_shields" + }, +/turf/simulated/floor/plating, +/area/talon_v2/bridge) +"Xf" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/hangar) +"Xh" = ( +/obj/structure/closet/secure_closet/talon_engineer, /obj/item/device/radio/off{ channels = list("Talon" = 1) }, +/obj/item/weapon/storage/box/nifsofts_engineering, +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/eng_room) +"Xi" = ( +/obj/structure/table/woodentable, +/obj/item/device/paicard, +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/meditation) +"Xl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/talon_v2/medical) +"Xm" = ( +/obj/machinery/light/small, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/fore_port) +"Xn" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/catwalk_plated, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/talon_v2/central_hallway/fore) +"Xo" = ( +/obj/structure/bed/chair/bay/chair{ + dir = 1 + }, +/obj/machinery/light, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = 8; + pixel_y = -26 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_x = -6; + pixel_y = -24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/talonboat) +"Xp" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/atmospherics) +"Xq" = ( +/turf/simulated/wall/rshull, +/area/talon_v2/maintenance/wing_starboard) +"Xr" = ( +/turf/space, +/area/talon_v2/engineering/port) +"Xw" = ( +/obj/structure/catwalk, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/aft_starboard) +"Xy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/cap_room) +"XA" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/talon_v2/engineering) +"XB" = ( +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/bar) +"XC" = ( +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux, +/obj/machinery/airlock_sensor{ + pixel_y = 28; + req_one_access = list(301) + }, +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/obj/structure/handrail, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/maintenance/wing_starboard) +"XD" = ( +/obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/fore_starboard) +"XE" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/closet/emergsuit_wall{ + pixel_y = 32 + }, /turf/simulated/floor/tiled/techfloor, /area/talon_v2/central_hallway/fore) "XG" = ( -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/secure_storage) +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/brig) "XH" = ( /turf/simulated/floor/plating, /area/talon_v2/engineering/port_store) "XJ" = ( -/obj/structure/anomaly_container, +/obj/structure/sign/directions/science/xenoarch{ + pixel_y = -32 + }, /turf/simulated/floor/tiled/techmaint, -/area/talon_v2/anomaly_storage) +/area/talon_v2/central_hallway/star) "XK" = ( -/obj/effect/map_helper/airlock/door/int_door, -/obj/machinery/door/airlock/glass_external{ - req_one_access = list(301) +/obj/structure/table/woodentable, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/maintenance/wing_port) +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/meditation) "XO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/machinery/oxygen_pump{ + dir = 1; + pixel_y = -30 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/handrail{ + dir = 1 }, /turf/simulated/floor/tiled/techfloor, /area/talon_v2/bridge) @@ -14789,26 +15661,258 @@ /turf/simulated/floor/reinforced/airless, /area/space) "XQ" = ( -/obj/structure/closet/emergsuit_wall{ - dir = 1; - pixel_y = -32 - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/brig) +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/fore_port) "XR" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/effect/catwalk_plated, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/talon_v2/central_hallway/star) +"XS" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/canister/empty, +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/structure/railing/grey{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/atmospherics) +"XT" = ( +/obj/structure/table/woodentable, +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "talon_quietroom"; + name = "window blast shields"; + pixel_x = 28 + }, +/obj/structure/closet/walllocker/medical/south, +/obj/item/weapon/storage/firstaid/regular, +/obj/item/weapon/storage/firstaid/o2, +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/meditation) +"XU" = ( +/obj/structure/bed/chair/bay/chair{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/bar) +"XW" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/closet/walllocker_double/hydrant/east, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/armory) +"XX" = ( +/obj/effect/landmark/start{ + name = "Talon Pilot" + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/carpet, +/area/talon_v2/crew_quarters/pilot_room) +"XY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway) +"XZ" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/random/multiple/corp_crate/talon_cargo, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/maintenance/wing_starboard) +"Ya" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/item/weapon/storage/firstaid/regular, +/obj/item/weapon/storage/firstaid/o2, +/obj/structure/closet/walllocker/medical/east, +/obj/item/device/radio/off{ + channels = list("Talon" = 1) + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/maintenance/wing_port) +"Yb" = ( +/obj/machinery/computer/ship/sensors, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/talonboat) +"Yc" = ( /turf/simulated/floor/tiled/techfloor, /area/talon_v2/refining) -"XS" = ( -/obj/machinery/door/window/brigdoor/eastleft{ - req_access = list(); +"Ye" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 10 + }, +/obj/machinery/airlock_sensor{ + dir = 4; + pixel_x = -28; + pixel_y = 28; req_one_access = list(301) }, -/obj/effect/floor_decal/industrial/warning{ +/obj/effect/map_helper/airlock/sensor/int_sensor, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/maintenance/wing_port) +"Yf" = ( +/obj/machinery/door/firedoor/glass/talon, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/talon_v2/hangar) +"Yg" = ( +/obj/machinery/door/airlock/glass_external{ + req_one_access = list(301) + }, +/obj/effect/map_helper/airlock/door/int_door, +/obj/machinery/atmospherics/pipe/simple/hidden/aux, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/maintenance/aft_port) +"Yh" = ( +/obj/machinery/suit_cycler/vintage/tcaptain, +/turf/simulated/floor/wood, +/area/talon_v2/crew_quarters/cap_room) +"Yj" = ( +/obj/structure/catwalk, +/obj/structure/closet/walllocker_double/west, +/obj/item/weapon/storage/toolbox/electrical, +/obj/item/weapon/storage/toolbox/mechanical, +/obj/item/stack/cable_coil/green, +/turf/simulated/floor/plating, +/area/talon_v2/engineering) +"Yk" = ( +/turf/simulated/floor/reinforced, +/area/talon_v2/ofd_ops) +"Ym" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/table/rack/steel, +/obj/item/weapon/storage/bag/ore, +/obj/item/weapon/pickaxe/drill, +/obj/item/stack/marker_beacon/thirty, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/refining) +"Yo" = ( +/obj/structure/catwalk, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/fore_starboard) +"Yp" = ( +/obj/structure/bed/chair/bay/chair{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/talon_v2/crew_quarters/mine_room) +"Yq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/port) +"Yr" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 8 + }, +/turf/simulated/floor/reinforced/airless, +/area/space) +"Yt" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/catwalk, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/fore_starboard) +"Yu" = ( +/turf/simulated/wall/rshull, +/area/talon_v2/maintenance/wing_port) +"Yv" = ( +/mob/living/simple_mob/animal/passive/dog/corgi/puppy{ + desc = "That's Hendrickson, warden of the Talon's brig. No schemes can escape the watchful gleam of this corgi's deep, dark eyes."; + name = "Hendrickson" + }, +/obj/structure/dogbed, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/brig) +"Yw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning/corner{ dir = 4 }, /turf/simulated/floor/plating, /area/talon_v2/engineering/port) -"XT" = ( +"Yx" = ( +/obj/machinery/mineral/processing_unit_console{ + req_one_access = list(301) + }, +/obj/structure/girder, +/obj/structure/railing/grey{ + dir = 4 + }, +/obj/structure/railing/grey, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/refining) +"Yy" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 4 }, @@ -14820,365 +15924,90 @@ }, /turf/simulated/floor/tiled/techfloor, /area/talon_v2/anomaly_storage) -"XU" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/holoposter{ - dir = 1; - pixel_y = 32 - }, -/turf/simulated/floor/wood, -/area/talon_v2/crew_quarters/bar) -"XW" = ( -/obj/machinery/power/pointdefense{ - id_tag = "talon_pd" - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 5 - }, -/turf/simulated/floor/reinforced/airless, -/area/space) -"XX" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/computer/ship/sensors{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/central_hallway) -"XY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/atmospherics) -"XZ" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/maintenance/wing_starboard) -"Ya" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 24 - }, -/obj/random/multiple/corp_crate/talon_cargo, -/obj/structure/railing/grey{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/maintenance/wing_port) -"Yb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/effect/catwalk_plated/dark, -/turf/simulated/floor/plating, -/area/shuttle/talonboat) -"Yc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/refining) -"Ye" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 9 - }, -/obj/structure/closet/emergsuit_wall{ - dir = 1; - pixel_y = -32 - }, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/wing_port) -"Yf" = ( -/turf/simulated/floor/tiled/techfloor, -/area/shuttle/talonboat) -"Ym" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/blast/regular{ - dir = 4; - id = "talon_cargo_port"; - name = "Cargo Loading Hatch" - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/maintenance/wing_port) -"Yo" = ( -/obj/structure/closet/emergsuit_wall{ - dir = 4; - pixel_x = 32 - }, -/turf/simulated/floor/tiled/white, -/area/talon_v2/medical) -"Yp" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/disposal/wall{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/talon_v2/crew_quarters/eng_room) -"Yt" = ( -/obj/machinery/power/apc/talon{ - name = "south bump"; - pixel_y = -24 - }, -/obj/structure/table/standard, -/obj/item/weapon/paper_bin, -/obj/item/weapon/pen, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/workroom) -"Yu" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/railing/grey, -/obj/random/multiple/corp_crate/talon_cargo, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/maintenance/wing_port) -"Yv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/brig) -"Yx" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/glass/talon, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/hangar) -"Yy" = ( -/obj/item/modular_computer/console/preset/talon{ - dir = 1 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/workroom) "Yz" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/machinery/atmospherics/omni/mixer{ + name = "Air Mixer"; + tag_north = 2; + tag_south = 1; + tag_south_con = 0.79; + tag_west = 1; + tag_west_con = 0.21 }, -/obj/machinery/atmospherics/pipe/manifold/visible{ - dir = 8 - }, -/obj/structure/catwalk, +/obj/effect/catwalk_plated/dark, /turf/simulated/floor/plating, /area/talon_v2/engineering/atmospherics) "YA" = ( -/obj/structure/bed/chair/bay/comfy/brown{ +/obj/structure/railing/grey{ dir = 1 }, -/obj/structure/panic_button{ - pixel_x = 32; - pixel_y = 32 +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/turf/simulated/floor/tiled/techmaint, +/turf/simulated/floor/tiled/techfloor, /area/talon_v2/bridge) "YB" = ( -/obj/effect/map_helper/airlock/sensor/chamber_sensor, -/obj/machinery/atmospherics/pipe/manifold/hidden/aux{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/airlock_sensor{ - pixel_y = 28; - req_one_access = list(301) - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/maintenance/fore_starboard) -"YC" = ( -/obj/machinery/atmospherics/pipe/simple/visible/universal{ - dir = 8; - name = "Air to Distro" - }, -/obj/machinery/camera/network/talon, -/obj/structure/railing/grey{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/atmospherics) -"YD" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/random/medical, -/obj/random/medical, -/obj/random/medical, -/obj/random/medical, -/obj/structure/closet/walllocker_double/medical/west, -/turf/simulated/floor/tiled/white, -/area/talon_v2/medical) -"YI" = ( -/obj/machinery/door/window/brigdoor/eastleft{ - dir = 1; - req_access = list(301) - }, -/obj/machinery/door/window/brigdoor/eastleft{ - dir = 2; - req_access = list(301) - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/blast/shutters{ - density = 0; - dir = 2; - icon_state = "shutter0"; - id = "talon_brig2"; - name = "Cell Shutters"; - opacity = 0 - }, -/obj/machinery/door/firedoor/glass/talon, -/obj/machinery/light/small{ +/obj/structure/bed/chair/bay/shuttle{ dir = 4 }, +/obj/structure/closet/walllocker_double/survival/north, +/turf/simulated/floor/tiled/techfloor, +/area/shuttle/talonpod) +"YC" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway) +"YD" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/anomaly_storage) +"YG" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/starboard) +"YH" = ( +/obj/structure/trash_pile, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/star_store) +"YI" = ( +/obj/structure/extinguisher_cabinet{ + dir = 8; + pixel_x = 30 + }, /turf/simulated/floor/tiled/techmaint, /area/talon_v2/brig) "YJ" = ( /obj/machinery/light{ - dir = 4 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc/talon{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/turf/simulated/floor/wood, -/area/talon_v2/crew_quarters/meditation) -"YL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/talon_v2/crew_quarters/eng_room) -"YN" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/anomaly_storage) -"YP" = ( -/obj/structure/bed/double/padded, -/obj/item/weapon/bedsheet/bluedouble, -/turf/simulated/floor/carpet/blucarpet, -/area/talon_v2/crew_quarters/cap_room) -"YQ" = ( -/obj/item/weapon/storage/firstaid/toxin, -/obj/item/weapon/storage/firstaid/toxin, -/obj/item/weapon/storage/firstaid/o2, -/obj/item/weapon/storage/firstaid/o2, -/obj/item/weapon/storage/firstaid/fire, -/obj/item/weapon/storage/firstaid/fire, -/obj/item/weapon/storage/firstaid/adv, -/obj/item/weapon/storage/firstaid/adv, -/obj/structure/closet/walllocker_double/medical/east, -/turf/simulated/floor/tiled/white, -/area/talon_v2/medical) -"YR" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 + dir = 1 }, /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/techmaint, -/area/talon_v2/central_hallway) -"YS" = ( -/turf/simulated/floor/tiled/white, -/area/talon_v2/medical) -"YT" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/alarm/talon{ - dir = 4; - pixel_x = -22 - }, -/obj/structure/closet/walllocker_double/east, -/obj/random/maintenance/engineering, -/obj/random/maintenance/engineering, -/obj/random/maintenance/engineering, -/obj/random/maintenance/engineering, -/obj/random/maintenance/engineering, -/turf/simulated/floor/plating, -/area/talon_v2/engineering) -"YW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/starboard) -"YX" = ( +/area/talon_v2/central_hallway/port) +"YL" = ( +/obj/structure/railing/grey, +/obj/structure/window/reinforced, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/refining) +"YN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -15187,158 +16016,237 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, +/area/talon_v2/central_hallway/star) +"YO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/light/small, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/port) +"YP" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/anomaly_storage) +"YQ" = ( +/obj/machinery/alarm/talon{ + dir = 4; + pixel_x = -22 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/fore_starboard) +"YR" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/machinery/suspension_gen{ + req_access = list(301) + }, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/anomaly_storage) +"YS" = ( +/obj/structure/flora/pottedplant/tall, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/crew_quarters/restrooms) +"YT" = ( +/obj/machinery/disposal/deliveryChute{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/plating, +/area/talon_v2/engineering) +"YW" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass/talon, +/obj/machinery/door/airlock/engineering{ + name = "Talon Starboard Engines & Trash Management"; + req_one_access = list(301) + }, +/obj/structure/sign/warning/nosmoking_1{ + pixel_x = 26 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/starboard) +"YX" = ( +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc/talon{ + dir = 1; + name = "north bump"; + pixel_y = 28 + }, +/obj/structure/table/rack/steel, +/turf/simulated/floor/tiled/techfloor, /area/talon_v2/secure_storage) "YY" = ( -/obj/structure/reagent_dispensers/watertank, +/obj/machinery/autolathe, /turf/simulated/floor/tiled/techfloor, /area/talon_v2/workroom) "YZ" = ( -/obj/machinery/power/apc/talon{ - dir = 4; - name = "east bump"; - pixel_x = 24 +/obj/machinery/atmospherics/portables_connector/aux, +/obj/effect/floor_decal/industrial/outline, +/obj/machinery/portable_atmospherics/canister/air, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/fore_starboard) +"Zb" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/structure/table/steel, +/obj/structure/extinguisher_cabinet{ + pixel_y = 32 }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" +/obj/fiftyspawner/uranium, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" - }, -/turf/simulated/floor/wood, -/area/talon_v2/crew_quarters/med_room) +/turf/simulated/floor/plating, +/area/talon_v2/engineering/generators) "Zc" = ( /turf/simulated/wall/shull, /area/talon_v2/engineering/atmospherics) "Zd" = ( -/obj/effect/floor_decal/emblem/talon_big{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor, +/obj/machinery/door/firedoor/glass/talon, +/obj/machinery/door/airlock/glass, +/turf/simulated/floor/tiled/techmaint, /area/talon_v2/central_hallway/fore) "Ze" = ( /obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/railing/grey{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 }, /obj/random/multiple/corp_crate/talon_cargo, /turf/simulated/floor/tiled/techfloor, /area/talon_v2/maintenance/wing_port) "Zf" = ( -/obj/structure/extinguisher_cabinet{ - dir = 8; - pixel_x = 30 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 }, -/obj/structure/flora/pottedplant/orientaltree, -/turf/simulated/floor/wood, +/obj/effect/floor_decal/corner/black/diagonal, +/obj/item/weapon/stool/baystool/padded{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, /area/talon_v2/crew_quarters/bar) "Zg" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/machinery/light/small{ + dir = 8 }, -/obj/structure/catwalk, -/obj/machinery/alarm/talon{ +/obj/structure/closet/emergsuit_wall{ dir = 8; - pixel_x = 22 + pixel_x = -32 }, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/aft_port) +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/maintenance/wing_starboard) "Zh" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 }, /turf/simulated/floor/tiled/techfloor/grid, /area/talon_v2/hangar) "Zi" = ( -/turf/space, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/plating, /area/talon_v2/engineering/starboard) "Zk" = ( /turf/simulated/wall/rshull, /area/talon_v2/engineering/port) -"Zm" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor/glass/talon, +"Zl" = ( +/obj/structure/barricade, /turf/simulated/floor/plating, -/area/talon_v2/armory) +/area/talon_v2/engineering/port_store) +"Zm" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/clothing/head/helmet/space/void/refurb/talon, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/secure_storage) "Zn" = ( -/obj/structure/table/rack/steel, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, /turf/simulated/floor/plating, /area/talon_v2/engineering/port_store) "Zo" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/obj/machinery/pointdefense_control{ + id_tag = "talon_pd" }, -/obj/structure/catwalk, -/turf/simulated/floor/plating, +/turf/simulated/floor/tiled/techfloor/grid, /area/talon_v2/engineering) "Zp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/hangar) -"Zr" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet{ - dir = 1; - pixel_y = -32 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/hangar) -"Zv" = ( /obj/structure/cable/green{ d1 = 1; d2 = 4; icon_state = "1-4" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/structure/disposalpipe/junction{ - dir = 2; - icon_state = "pipe-j2" - }, /turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway/fore) -"Zx" = ( -/obj/effect/floor_decal/industrial/outline/red, -/obj/machinery/portable_atmospherics/canister/empty/phoron, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/port_store) -"Zy" = ( +/area/talon_v2/maintenance/wing_starboard) +"Zr" = ( +/obj/machinery/door/airlock/glass_external{ + frequency = 1420; + id_tag = "tal_shuttle_sb"; + req_one_access = list(301) + }, +/obj/machinery/door/blast/regular/open{ + id = "talon_boat_east" + }, +/obj/machinery/button/remote/blast_door{ + dir = 1; + id = "talon_boat_east"; + pixel_y = -28; + req_one_access = list(301) + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/talonboat) +"Zv" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/wall/rshull, +/area/talon_v2/maintenance/wing_starboard) +"Zw" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass/talon, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -15348,141 +16256,159 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/brig) -"Zz" = ( -/obj/machinery/light/small, -/obj/structure/bed/chair/bay/shuttle{ +/obj/machinery/door/airlock/engineering{ + id_tag = "talon_engdoor"; + name = "Engineer's Cabin"; + req_one_access = list(301) + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/crew_quarters/eng_room) +"Zx" = ( +/obj/machinery/light/small{ dir = 1 }, -/obj/machinery/power/apc/talon/hyper{ - pixel_y = -24 +/obj/structure/table/rack/shelf/steel, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/port_store) +"Zz" = ( +/obj/structure/table/steel, +/obj/structure/closet/autolok_wall{ + dir = 1; + pixel_y = -32 }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 }, /turf/simulated/floor/tiled/techfloor, /area/shuttle/talonboat) "ZA" = ( -/obj/machinery/light/small{ - dir = 4 - }, +/obj/machinery/mineral/input, /obj/machinery/conveyor{ - dir = 1; + dir = 4; id = "talonrefinery" }, -/obj/machinery/mineral/output, /turf/simulated/floor/tiled/techfloor/grid, /area/talon_v2/refining) "ZB" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 +/obj/machinery/light/small{ + dir = 1 }, /obj/structure/catwalk, /turf/simulated/floor/plating, /area/talon_v2/engineering/atmospherics) "ZC" = ( -/obj/machinery/door/firedoor/glass/talon, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 4 +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/blast/regular/open{ - dir = 2; - id = "talon_bridge_shields" - }, -/obj/machinery/door/blast/regular/open{ - dir = 2; - id = "talon_bridge_shields" - }, -/turf/simulated/floor/plating, +/turf/simulated/wall/rshull, /area/talon_v2/bridge) -"ZE" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/firealarm{ - layer = 3.3; - pixel_y = 26 - }, -/obj/structure/catwalk, -/obj/machinery/camera/network/talon, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/port) -"ZF" = ( -/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/closet/emergsuit_wall{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/techmaint, -/area/talon_v2/central_hallway/port) -"ZI" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ - dir = 1 - }, -/obj/effect/map_helper/airlock/atmos/chamber_pump, -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - dir = 1; - id_tag = "talon_port_fore"; - pixel_y = -30; - req_one_access = list(301) - }, -/obj/structure/handrail{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/maintenance/fore_port) -"ZJ" = ( -/obj/effect/floor_decal/industrial/warning/dust, -/turf/simulated/floor/reinforced/airless, -/area/space) -"ZK" = ( +"ZD" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; icon_state = "1-2" }, /obj/structure/catwalk, -/turf/simulated/floor/plating, -/area/talon_v2/maintenance/fore_port) -"ZO" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/hangar) -"ZP" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/machinery/light/small{ dir = 8 }, -/obj/structure/railing/grey, /turf/simulated/floor/plating, +/area/talon_v2/engineering/star_store) +"ZE" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 4 + }, +/turf/simulated/floor/reinforced/airless, +/area/space) +"ZF" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/weapon/tank/jetpack/carbondioxide, +/turf/simulated/floor/tiled/techfloor, +/area/talon_v2/secure_storage) +"ZH" = ( +/obj/machinery/atmospherics/binary/pump/high_power/on{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/closet/emergsuit_wall{ + dir = 1; + pixel_y = -32 + }, +/turf/simulated/floor/plating, +/area/talon_v2/engineering/atmospherics) +"ZI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/ofd_ops) +"ZJ" = ( +/obj/machinery/door/airlock/glass_external{ + req_one_access = list(301) + }, +/obj/effect/map_helper/airlock/door/ext_door, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/maintenance/wing_port) +"ZK" = ( +/obj/machinery/power/pointdefense{ + id_tag = "talon_pd" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/reinforced/airless, +/area/space) +"ZO" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/aux{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/shuttle/talonboat) +"ZP" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/wall/rshull, /area/talon_v2/engineering) "ZQ" = ( +/obj/effect/floor_decal/industrial/warning/dust/corner{ + dir = 1 + }, +/obj/structure/hull_corner/long_vert{ + dir = 5 + }, +/turf/simulated/floor/reinforced/airless, +/area/space) +"ZR" = ( +/obj/machinery/mineral/output, +/obj/machinery/conveyor{ + dir = 8; + id = "talonrefinery" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/talon_v2/refining) +"ZS" = ( +/obj/structure/handrail{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/talon_v2/maintenance/wing_port) +"ZW" = ( +/obj/structure/catwalk, +/obj/structure/trash_pile, +/turf/simulated/floor/plating, +/area/talon_v2/maintenance/fore_port) +"ZY" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -15490,46 +16416,19 @@ }, /turf/simulated/wall/rshull, /area/talon_v2/maintenance/fore_starboard) -"ZR" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/mineral/input, -/turf/simulated/floor/tiled/techfloor/grid, -/area/talon_v2/refining) -"ZS" = ( -/obj/machinery/atmospherics/portables_connector{ +"ZZ" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ dir = 1 }, -/obj/effect/floor_decal/industrial/outline/red, -/obj/machinery/portable_atmospherics/powered/scrubber, -/obj/structure/railing/grey{ - dir = 8 - }, -/obj/structure/railing/grey, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/atmospherics) -"ZW" = ( -/obj/machinery/vending/security{ - req_access = list(301); - req_log_access = 301 - }, -/turf/simulated/floor/tiled/techfloor, -/area/talon_v2/brig) -"ZY" = ( -/obj/structure/catwalk, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "talon_quietroom" }, /turf/simulated/floor/plating, -/area/talon_v2/maintenance/fore_starboard) -"ZZ" = ( -/obj/machinery/atmospherics/binary/pump/on{ - dir = 8; - name = "Air to Distro" - }, -/turf/simulated/floor/plating, -/area/talon_v2/engineering/atmospherics) +/area/talon_v2/crew_quarters/meditation) (1,1,1) = {" aa @@ -18770,11 +19669,11 @@ aa aa aa aa -eH aa aa aa aa +QP aa aa aa @@ -19433,7 +20332,7 @@ aa aa aa aa -Te +aa aa aa aa @@ -19705,24 +20604,24 @@ aa aa aa aa +aa +aa +aa +aa tm tm tm XP XP -Mu -uK -bA XP XP XP XP XP XP -aa -aa -aa -aa +XP +XP +XP aa aa aa @@ -19851,22 +20750,22 @@ aa aa aa aa -XP -ZJ -UW -nl -OT -OT -OT -OT -we -XP -XP -XP aa aa aa aa +XP +XP +XP +XP +XP +XP +XP +XP +XP +EB +XP +XP aa aa aa @@ -19964,7 +20863,11 @@ aa aa aa aa -PK +aa +aa +aa +aa +dP aa aa aa @@ -19994,25 +20897,21 @@ aa aa tm tm -mo -Fg -QI XP XP -Lz -FZ -Br -Dp -yw XP XP -Mu -uK -bA -aa -aa -aa -aa +XP +XP +XP +XP +XP +XP +XP +XP +Pd +hq +TR aa aa aa @@ -20137,25 +21036,25 @@ aa aa aa aa -XP -XP -XP +aa +aa +aa Pd -TR -TR -Lj -Qk +hq TR XP +Qk +Av +Yu jk ZJ -RD -Kl +Yu +XP +Rf +UW +Wl +Fg XP -aa -aa -aa -aa aa aa aa @@ -20281,18 +21180,22 @@ aa aa aa aa -XP -XP -TR +aa +aa +SS bh -mA Jz -TR -TR -TR -TR -gD -gP +Jz +Aw +Dy +EF +Jm +Yu +Yu +Yu +Yu +Wo +ZQ XP XP aa @@ -20354,10 +21257,6 @@ aa aa aa aa -aa -aa -aa -aa "} (35,1,1) = {" aa @@ -20423,21 +21322,25 @@ aa aa aa aa -Pd -TR -TR -Go -Nj -gc +aa +aa +aa +Up +Qk +Yu +Yu +Wa +EJ +Jp TA -Wa -Wa -TR -nk -TR -TR +OH +OH +Yu +Wp +Yu +Yu XP -jk +Rf XP aa aa @@ -20496,10 +21399,6 @@ aa aa aa aa -aa -aa -aa -aa "} (36,1,1) = {" aa @@ -20565,23 +21464,27 @@ aa aa aa aa +aa +aa +aa +aa XP -TR +Yu TA TA -XK -Kt -TA -Du Ph +Jr TA -ir vR +RA +TA +ws +ZS +Yu +Yu +Yu +Yu TR -TR -TR -TR -bA XP aa aa @@ -20638,10 +21541,6 @@ aa aa aa aa -aa -aa -aa -aa "} (37,1,1) = {" aa @@ -20706,24 +21605,28 @@ aa aa aa aa -Ft -TR -TR -kl -ty -Ce -mt +aa +aa +aa +aa +PL +Yu +Yu rm NS Ye -TA +Jt ir +ON +RC +TA +ws CY -ty -vR -mC -gJ -Kl +NS +ZS +UQ +mo +Fg XP XP XP @@ -20780,10 +21683,6 @@ aa aa aa aa -aa -aa -aa -aa "} (38,1,1) = {" aa @@ -20849,27 +21748,31 @@ aa aa aa aa -TR -VD -VD -dZ -uT -cE +aa +aa +aa +aa +Yu +QA +QA +DB +EP +Ju TA TA TA TA -ir -CY -Xi -CE ws -Ym +CY nl OT gu jy -bA +NT +Jz +xs +Gz +TR XP aa aa @@ -20922,10 +21825,6 @@ aa aa aa aa -aa -aa -aa -aa "} (39,1,1) = {" aa @@ -20989,29 +21888,33 @@ aa aa aa aa -Ft -TR -TR -kR +aa +aa +aa +aa PL -CY -vW +Yu +Yu OZ kf -le +CY OB qV EL CE pa Bv -TR -TR +Wq +OT QI +SC +Yu +Yu +Up XP -ZJ -UI -Kl +UW +ZK +Fg XP aa aa @@ -21064,10 +21967,6 @@ aa aa aa aa -aa -aa -aa -aa "} (40,1,1) = {" aa @@ -21132,32 +22031,32 @@ aa aa aa aa -TR -VD -VD -ek +aa +aa +aa +aa Yu -wB -At +QA +QA Px jh Ru -VD -VD -VD +JB +MO +OS +RV +QA +QA +QA CY -om -gJ -Kl -XP -XP +cA mo Fg -QI -aa -aa -aa -aa +XP +XP +Wd +Yr +Up aa aa aa @@ -21272,15 +22171,19 @@ aa aa aa aa -Ft -TR -TR -ri -CY -CY -CY +aa +aa +aa +aa +PL +Yu +Yu BV -uT +CY +CY +CY +EX +EP CY CY CY @@ -21288,13 +22191,9 @@ CY CY CY CY -oq -gJ -Kl -aa -aa -aa -aa +yl +mo +Fg aa aa aa @@ -21415,28 +22314,28 @@ aa aa aa aa -TR -KE -VD -VD -fv +aa +aa +aa +aa +Yu Mc -IE -PV +QA +QA Ze sT DW -VD -CY -CY +JJ +MP +OW FN -TR -TR -QI -aa -aa -aa -aa +QA +CY +CY +Vl +Yu +Yu +Up aa aa aa @@ -21555,29 +22454,29 @@ aa aa aa aa -Ft -TR -TR -kR -CY -CY -ew -CY -qk -uT -CY -CY -ew -CY -CY -VD -TR -TR -Vh aa aa aa aa +PL +Yu +Yu +OZ +CY +CY +AD +CY +Fk +EP +CY +CY +AD +CY +CY +QA +Yu +Yu +ys aa aa aa @@ -21698,11 +22597,11 @@ aa aa aa aa -TR -dP -CI -qP -zn +aa +aa +aa +aa +Yu Di Vw ba @@ -21710,15 +22609,15 @@ lk Ya BC VD -VD +JQ sx -VD -TR +Pl QA -aa -aa -aa -aa +QA +Wx +QA +Yu +kh aa aa aa @@ -21839,27 +22738,27 @@ aa aa aa aa -TR -TR -yJ -OQ -OQ -OQ -OQ -OQ -rg -gH -Nl -Nl -Nl -Nl -Nl -Sn -TR aa aa aa aa +Yu +Yu +xw +OQ +OQ +OQ +OQ +OQ +Ft +Kf +Nl +Nl +Nl +Nl +Nl +UR +Yu aa aa aa @@ -21980,28 +22879,28 @@ aa aa aa aa -OH -ML -ZK -Kf -OQ -tD +aa +aa +aa +aa +pc +xL LL -tD +xB OQ LT kk -Nl -hA +LT +OQ ay zK -bN +Nl Sn Vh -aa -aa -aa -aa +UX +WS +UR +ys aa aa aa @@ -22121,28 +23020,28 @@ aa aa aa aa -Hz -wi -wi -hS +aa +aa +aa +aa +lT +Re +Re +XQ OQ OQ -GF -Dc -lF -OQ GH -jL -Nl -UF +uS +AE +OQ OR xd -fM +Nl xM -aa -aa -aa -aa +RZ +Va +Xb +ZZ aa aa aa @@ -22262,16 +23161,16 @@ aa aa aa aa -Hz -wi -wi -Et -hS -OQ +aa +aa +aa +aa +lT Re -Kr -JG -Wl +Re +ZW +XQ +OQ fp OK RK @@ -22280,11 +23179,11 @@ PO TW QR cZ -xM -aa -aa -aa -aa +Pm +Sd +Vf +Xi +ZZ aa aa aa @@ -22403,30 +23302,30 @@ aa aa aa aa -Hz -wi -wi -hS -hS -hS -Be -Dc -bV -Dc +aa +aa +aa +aa +lT +Re +Re +XQ +XQ +XQ jQ -OQ +uS ul uS -Nl -IU +AI +OQ Rp TD -Bu -xM -aa -aa -aa -aa +Nl +Pr +Sx +Vi +XK +ZZ aa aa aa @@ -22544,32 +23443,32 @@ aa aa aa aa -Hz -wi -wi -Et -hS -hS -cT -OQ -tD -Eb +aa +aa +aa +aa +lT +Re +Re +ZW +XQ +XQ zz -VX OQ +LT qJ mu -Nl -xZ +AJ +OQ YJ Ke -jv -Sn -ql -aa -aa -aa -aa +Nl +Pt +SJ +Vs +XT +UR +bn aa aa aa @@ -22685,36 +23584,36 @@ aa aa aa aa -Hz -wi -wi -hS -hS -hS -hS -JF +aa +aa +aa +aa +lT +Re +Re +XQ +XQ +XQ +XQ +wu OQ OQ OQ OQ OQ OQ -KY -PB +FB +Kn Nl Nl Nl Nl Nl -Sn -tC -tC -tC UR -aa -aa -aa -aa +tC +tC +tC +hz aa aa aa @@ -22826,41 +23725,41 @@ aa aa aa aa -OH -ML -ML -NR -NR -cS +aa +aa +aa +aa +pc +xL xL NR NR Id -NR -KI +vi NR NR -lS +xE +NR Qj -Va -Iv +NR +NR gI Vg -gI -gI -yg +Ko +MU +TX qa TX -tC +TX aR +gh +wf tC -tC -aa uL +tC +tC aa -aa -aa -aa +VN aa aa aa @@ -22967,15 +23866,19 @@ aa aa aa aa -Hz -wi -wi -hS -MT +aa +aa +aa +aa +lT +Re +Re +XQ +Xm db db db -Bs +vU db Dd Dd @@ -22983,29 +23886,25 @@ Dd Dd Dd Dd -VO -ON +FK +Kv Oj Oj Oj Oj Oj Oj -WZ -NB -TX -LA IP +CJ +wf +ib +Oc tC tC tC tC aa -uL -aa -aa -aa -aa +VN aa aa aa @@ -23108,44 +24007,48 @@ aa aa aa aa -Hz -wi -wi -hS -hS +aa +aa +aa +aa +lT +Re +Re +XQ +XQ db db -rC -bq -Kj -db Ti wM -AR -fj +XG +db fd -Dd +xP ZF KC -Oj -tn +AN +Dd nK -gg -SX -RW +Si +Oj +PB WZ Mi go Qu -lV +IP iy Xa LO +xo +yn +vK +DN tC tC tC tC -Fk +ww XP XP XP @@ -23157,7 +24060,7 @@ XP XP XP XP -GC +PT tm tm tm @@ -23194,10 +24097,6 @@ aa aa aa aa -aa -aa -aa -aa "} (55,1,1) = {" aa @@ -23249,45 +24148,49 @@ aa aa aa aa -Hz -wi -wi -hS -hS +aa +aa +aa +aa +lT +Re +Re +XQ +XQ db db -hU -Kj -Kj -Mh -db -AR +th XG -zv XG -IX +vY +db +ZF +Wm +Fc +Wm +AQ Dd -lW -KC +So +Si Oj -Pm -So -me -So -RW +PC +OP +Vv +OP +Qu Zc Zc Zc Zc Zc -Pl +BD Zc -Jr -Xa -Xa -vC +uG +vK +vK +IO tC -aR +uL tC tC tC @@ -23299,7 +24202,7 @@ tC tC tC tC -aR +uL tC tC tC @@ -23336,10 +24239,6 @@ aa aa aa aa -aa -aa -aa -aa "} (56,1,1) = {" aa @@ -23390,72 +24289,76 @@ aa aa aa aa -Hz -wi -wi -hS -hS -db -db -tY +aa +aa +aa +aa +lT +Re +Re +XQ XQ db db +rU +tn +db +db db db -AD -XG -XG -XG dN -Dd Wm -KC -Oj -Pm -So -So -So -RW -Zc -oG -OP -OU -gx -pQ -Zc -Zc -yW -Zc -rw +Wm +Wm +Ba +Dd FO +Si +Oj +PC +OP +OP +OP +Qu +Zc +Ha +ti +zE +yW +pY +Zc +Zc Tl -LX +Zc +oB +it +Nu +bG rW rW rW rW -Qm -rW -rW -rW LX rW -JB +rW +rW +bG +rW +EE rW rW rW rW rW -DY -rW -rW -Zg uf rW -ez +rW hW bC +rW +SK +Ne +ly tm tm aa @@ -23478,10 +24381,6 @@ aa aa aa aa -aa -aa -aa -aa "} (57,1,1) = {" aa @@ -23524,53 +24423,57 @@ aa aa aa aa +XP +XP +XP +XP +XP +XP aa aa aa aa aa -aa -aa -Hz -wi -wi -hS -hS +lT +Re +Re +XQ +XQ db db -QG -Vo -Kj -Sx Ix En -db +XG zv -XG -ln -XG +vp +uW +db Fc -Dd +Wm ES -KC +Wm +Bi +Dd +FZ +Si Oj -Nv -So -RW -So Kx -Zc -oG +OP +Qu OP wS -dR +Zc Ha ti hp -FS +Jv +CR +ft +GE +qg Zc KU -GE +sP KU KU KU @@ -23588,22 +24491,18 @@ KU KU KU KU -KO +yS KU KU KU KU KU KU -cB -tC -tC -tC cw -aa -aa -aa -aa +tC +tC +tC +Sf aa aa aa @@ -23665,68 +24564,72 @@ aa aa aa aa +XP +qG +JL +JL +JL +JL +iB aa aa aa aa -aa -aa -aa -dK -wi -wi -Et -hS -MT -db +uO +Re +Re ZW -TT +XQ Xm -aN +db qm Yv rq -db +tA uF -XG +VY ui -XG +db zB -JX -ul -KC +Wm +yY +Wm Zm -NM -So -JT -So +NW +Rp +Si +Nh EV -Zc +OP yq -dR -dR -BT +OP +HV +Zc ZB Jv -hp +Jv aI pR -KU -FJ +Bz +GE jx se KU -Cr +Ir Ep pZ -yY +KU Er -rB -XH +KM +iC Cr -XH +rn qu XH +wQ +XH +Zl +XH XH XH XH @@ -23736,12 +24639,12 @@ XH XH XH XH -eX -eY -tC -fn fG fR +tC +vj +hd +wp XP XP aa @@ -23762,10 +24665,6 @@ aa aa aa aa -aa -aa -aa -aa "} (59,1,1) = {" aa @@ -23807,59 +24706,63 @@ aa aa aa aa -aa -aa -Uz +XP +gx +CX zT wP -wi -wi +Cv +JL zq -wi -Om -hS -hS -Et -db -gB -yp -Zy +iF +Re +Re +kX +Re +mI XQ +XQ +ZW +db +qk +rg +sc +tn db db db db -BX -SU -eG -YX YX Cb TB -xt +HA HA lJ -lJ +Gm bz hQ qv -Zc +qv cc fF xx -ZS +Zc nP CC rz -CD +Ln yc -KU +lM rJ -Qv +Rt GV KU qi IC +sk +KU +Af +cL lN lN lN @@ -23874,20 +24777,16 @@ lN lN lN lN -Kv -kJ -CV -sc -eq +Gi eZ fm fq -tC +np iD -aa -aa -aa -aa +Yg +Jy +tC +WV aa aa aa @@ -23947,54 +24846,54 @@ aa aa aa aa -aa XP XP -XP -NV -BB +tc +fX +uY +Qe wi -wi -wd +bd +JL Kk -oU -hS +Re +Re +kR +kZ +lX +XQ NC NC NC NC -qO -jN -vp -Kj sK -Ix -En -db +ri +sh +XG Ey -XG +vp uW -XG +db Az -JX -ul -KC -Zm +Wm +zj +Wm +Bt NW -So +Rp Si -So +Nh sv -Zc +OP Oi -kA +OP Ef -Op -dR -Bk +Zc +BI +Ds md Mo -oz +Jv Rj dL sE @@ -24002,22 +24901,26 @@ dl qC kx TN -TN +zo +NF +KH +jj +jj FG FG FG FG FG -dA -EB -yO -ao Zn -Ep -pZ -pZ -xH +gS +nt +qf +Gu KM +iC +iC +xH +zk xH xH xH @@ -24025,7 +24928,7 @@ tC tC tC tC -Lz +pz XP XP XP @@ -24046,10 +24949,6 @@ aa aa aa aa -aa -aa -aa -aa "} (61,1,1) = {" aa @@ -24086,72 +24985,76 @@ aa aa aa aa -aa XP XP XP -NV -oC -oC -NV -iv +Ut +WK +Mz +Ut +gM +Ht ZI -CX -Io +hM +JL gr -NC -wU -NC +iJ +KB +AH qE -yd +NC cN -ad +NC zH Gs cG YI -Yv -rq -db +rj +sl +tE ED VY -rF -An +ui +db QD -Dd +xZ CP wh -Oj -eS +Bu +Dd Ew eS -tA -ji -Zc +Oj zL -kA +SN +zL +XW Sa -nC +Zc WY Ds qW -aI -KS -KU +QW +Uc +IA TG -XH +jx SE KU Gn -HN +XH eq -yY +KU Zx -rB -Ep -pZ -lf +Ts +np Cr +lf +qu +KM +iC +Oy +wQ xH xH xH @@ -24159,7 +25062,7 @@ xH xH xH xH -up +wT XP XP XP @@ -24188,10 +25091,6 @@ aa aa aa aa -aa -aa -aa -aa "} (62,1,1) = {" aa @@ -24218,7 +25117,6 @@ aa aa aa aa -aa tm tm tm @@ -24229,27 +25127,32 @@ XP XP XP XP -NV -oC -oC -NV +Ut WK -gm +WK +Ut +fg +fx Nq +Yk Ht -IR -CX -Io +qz +hP +JL nz -NC +iL KB AH zQ -UX +NC +mS +nE +nW +GK NC db db -GK +sn db db db @@ -24261,8 +25164,8 @@ Dd Dd Dd Dd -tU -qs +Gq +KE Oj Oj Oj @@ -24270,23 +25173,23 @@ Oj Oj Oj Zc -mk -yF -pE -BO DP DM -CD +EI mX GY -Zk +MF Rt xk +bi +Zk +FC +EY Zk Zk Zk Zk -Sd +Pi Zk Zk Zk @@ -24296,11 +25199,7 @@ xH xH xH aa -Dg -aa -aa -aa -aa +uu aa aa aa @@ -24365,55 +25264,55 @@ aa aa aa aa -aa XP -JO -JP -NV -NV -NV -uO -Pe -wo -jF +WL +QO +Ut +Ut +Ut +eh +Rs +Yh jF +KJ Nq -lg -CX -CX -CX +gN +JL +gX +ik +JL QV -NC -Ge -nu +KB +KB +KB wa -Wp NC +ne Sz Tr mx -yR -QS +NC +qo FX -QS +sq Ga QS Uu -hg QS +wv QS xf PP -Dm +QS RB NE nn -nn -nn +KI +Ns Gl -wW XY -IG +XY +XY CA Jw jC @@ -24421,22 +25320,22 @@ pr GW tp Un +su +RT +QF +gL Zk XH -QF -Zk -vi -vi rP -at -Nk +Zk +Py Py ak ki -aa -aa -aa -aa +JR +dB +Mt +eA aa aa aa @@ -24506,35 +25405,39 @@ aa aa aa aa -aa XP XP -sz -Bf -NV +eU +aZ +Ut +cB +dT Rs -fz -Pe -Pe -Pe -Pe -Pe +Rs +Rs +Rs +yi Nq +ec Qi DH Fz VT Qo -NC +iO af -ai +EH QN -nE NC +ng vF pl Hh -nq +NC +qs +UB +hr +tQ pG pG pG @@ -24544,41 +25447,37 @@ pG pG pG pG -UG -YR -lB Iq -Iq -Iq -Iq -ox -Gj -Zc +GC +KO +YC +YC +YC YC Fo pE -AE +Zc zV DR EI Xp dq +wK +xV +UK +ZH Zk Zk Zk Zk -ZE -RV -gO -Pt Hn -Zk +Ms ID Rx -aa -aa -aa -aa +sz +Zk +SZ +Xr aa aa aa @@ -24645,37 +25544,41 @@ aa aa aa aa -aa XP XP -dK -JO -JO -JO -NV -NV +uO +WL +WL +WL +Ut +Ut Fj +dZ Sb -PZ +ek Vp -gt -gt -Is +Vp +px Nq -lO -tb -tb -tb +gO +To +hg +il +JL lI -NC -NK -xN +tb +tb +tb lD -eg NC +nk ma -pl +ol bp +NC +qO +UB +sF fV Ks Ks @@ -24687,40 +25590,36 @@ Ks Ks Ks fV -DB -Ia +Hj +KX fV Ks Ks Ks fV -FK +lq Zc -ZZ -Xp -dR -Gh Bn -Gh -kT -Xp +UK +Jv +uH Su -Zk +uH bY UK +kQ Zk -lr EO vh -iS +Zk iR -Py -ID -ki -aa -aa -aa -aa +VJ +UD +zh +NH +dB +SZ +eA aa aa aa @@ -24784,43 +25683,47 @@ aa aa aa aa -aa XP XP XP -JO -dz -VI -JO +WL +Xe +ZC +WL +yt EN -Wq +Rs Pe pb Xy BY -qb +el xb yA -lM -YP +fM Nq +gW DK -tb +uo RJ -tb +JL WT -NC -NC -Vx -NC +tb +kl +tb +le NC NC pn -pl -Hh -rI +NC +NC +NC br UB +hr +WN +uw +vt Nf Nf Nf @@ -24829,19 +25732,15 @@ Nf Nf Nf Nf -As -Ns -Zp -Ns Lr -jb +jO rI jO -Zc +SU Uh WN GQ -VK +Zc vP jG hw @@ -24856,13 +25755,13 @@ WF VH HH vB +lQ +nJ +Fw +mN Zk -ID -Rx -aa -aa -aa -aa +SZ +Xr aa aa aa @@ -24922,89 +25821,89 @@ aa aa aa aa -tm -tm -tm +aa +aa tm XP -JO -dz -dz +WL +Xe +Xe +WL JO dp bf dC -PU -JO +WL +DZ Kg Ss cp ey -gb +eu HE xv -px -bk +fN Nq +JL Gg -tb -FR +uo +bW JL ae -oo +tb IW ej -mc -mc +lr +lZ SQ Xn -Vi -pp -fV +mc +mc +mk an Wb -Tt -cK -cK -Tt -cK -cK -cK -Tt -Jm -Ih -Tt -Tt -Tt -AV +sL fV -jO -Zc +uJ +vC +Tt +cK +cK +Tt +cK +Tt +cK +Tt +LQ +AV +Tt +Tt +SX rk -Nh -Gh -TZ +fV +GQ +Zc OJ qw uH LV -LV -Zk +pg +rZ XS zM +zM Zk -yD wz OE -JQ +Zk FY -Py -ID -ki -aa -aa -aa -aa +Pq +qx +Yw +Yq +dB +SZ +eA aa aa aa @@ -25066,21 +25965,20 @@ aa aa aa aa -aa -dK +uO +zX um -ds +RF bB -eT -lZ -wO -wm +xu +xh +YA +aN XO -bZ -JO +WL Nq Nq -sn +dj Nq Nq Nq @@ -25088,11 +25986,16 @@ Nq Nq Nq Nq -JE +JL +Be iP -kU -tb +JL +JL nH +iS +kn +tb +lx lU lU lU @@ -25100,53 +26003,49 @@ lU lU lU lU -Aw -NU +rw +td fV -sf +Po Tt Tt -tE -Kc -Tt -lC vV iI Tt aW mT hD -EJ +Tt QM qt -yV +Nv yh -Zc +SY hY -KD +Yf bc -Vs +Zc KS +fA +yM +VM +SE IK IK IK IK IK -Vv -Vv +pf +pf Zk -pf -pf -cm -nN kz -Zk +kz Bc -Rx -aa -aa -aa -aa +wI +YO +Zk +uC +Xr aa aa aa @@ -25208,72 +26107,76 @@ aa aa aa aa -XP -di -ds +xm +um +am Mj dD -iV Bq Bq +Ra dW AS -hu +aS Kz as pL -LB -tb -QC -nB -FH -tb -nW -tc -tb -PE -zw +dA +ze +ex +eH +dA +CN +hO +dA +dA +LC +dA Zd -OS -lU +dA +jg tz PR Ur -CH -Cd lU +Cd +nL al St yV -sf +lU Eo JC -RL -Cw -Tt +Yf +Po +JA lm -uU +Ud Xo Tt RP wX uV -IL -QM -qt -yV -dF +Tt +Hr +KY +Nz +Sv +SY +hY +Yf +ci Zc Zc Zc Zc Zc -KX -IK -ap -az aJ IK +Zb +Pk +Lv +IK Zk Zk Zk @@ -25281,7 +26184,7 @@ Zk Zk Zk Zk -Ji +HW Zk Zk Zk @@ -25324,10 +26227,6 @@ aa aa aa aa -aa -aa -aa -aa "} (70,1,1) = {" aa @@ -25350,33 +26249,33 @@ aa aa aa aa -XP dn +ac xh -wO -ef -ef -ef +QC +QC +QC +KQ Hw dX ls -zX -eh -aU -sF -EF -mc -mc -mc -mc -gN -mc -Bt -mc +aT +bI +bP +dv +WI +WI +WI +WI +fh +WI +WI +WI +WI gs -RC +WI rt -Bi +WI Gw ns on @@ -25386,12 +26285,12 @@ pN Ek kg Wr -yV +pp sf -Eo +rK Bd Yf -zW +Po JA Yb Tw @@ -25401,17 +26300,17 @@ kI LM qL pk -Tt +kv Wc -fV +NB sJ LY gF -Qx +fV Fx -gl +Qa Ck -IK +Yj aq aA aK @@ -25419,18 +26318,18 @@ IK ei eK eP -eR +IK xW YT ZP HI eI -eP +ha Mr -aa -aa -aa -aa +vO +Hv +ZP +wn aa aa aa @@ -25492,80 +26391,84 @@ aa aa aa aa -XP -dr +yw dt +ao Ea UJ -jD Vc Vc +im ed In -aO -aS -aZ -MA -kH -tb -tb -tb -tb -CN -xm -Kh -tb -hc -Ev -tl -bI -lU +aU +bJ +bU +dA +dA +dA +dA +dA +fj +gb +dA +gH +qU +JZ +eB +Ak +dA +ju CB uA Eq -jg -TL lU -al +TL +nM +oo XX -yV -sf +pH +lU Eo bo -RL -vA -Tt +Yf +Po +JA vy -ho +uU hH Tt Ux zC qq -IL -QM +Tt +Hu ZO -yV +NG Sv -LY +SY Xf -mM +Yf vz -Ii +Qa AZ -IK +gC ar aD -aJ +VL IK ep +LJ +Lv +IK +ll zm zm zm zm zm zm -LI +lc zm zm zm @@ -25608,10 +26511,6 @@ aa aa aa aa -aa -aa -aa -aa "} (72,1,1) = {" aa @@ -25634,33 +26533,37 @@ aa aa aa aa -aa -hP +Ue +ad hh -RF +ap eL xu -lZ +at YA wm Fv -qU -JO -qp -PW -fo -AX -AX -AX -AX +WL hs -qp -qp +bZ +dK +fo +fo +fo +fo +My +hs +QU +QE UL hT QE -tb +QE ow +jv +kH +tb +lB lU lU lU @@ -25668,53 +26571,49 @@ lU lU lU lU -Aw -NU +rw +td fV -sf +Po Tt Tt -vY -Kc -Tt -xE KN Zz Tt ME aH kM -ub -QM -ZO -yV -jO -LY -wH -mM -nx +Tt +Hy +Lc +NK +PI +SY +Xf +Yf +GQ Qa Zo -IK -IK +gC +TY aE +GA IK IK -ex eM -zm -Ob +IK +IK Ob rS -Lo +zm +MD MD -wj nh WM -aa -aa -aa -aa +kV +JM +DV +vk aa aa aa @@ -25777,86 +26676,86 @@ aa aa aa aa -aa XP -JO -dG -dG -JO +WL +LB +LB +WL +az fU ET fw -Lt -JO -fC -HW +WL +bN +cg +dO XB -By -By -By -By +XB +XB +XB +iz kD -yP -qp +QU +Ff NI -tb -lj -mc +hu +Ff +QE mZ -SQ +tb AO -Zv -tj +mc tj +mk ru sD -oc DG -fV +DG +qb Fd od -Tt -DC -DC -Tt -Po -Tt -DC -Tt -ol -AN -Tt -Tt -Tt -Zr +tf fV -Aq -LY +va +vE +Tt +DC +DC +Tt +DC +Tt +DC +Tt +nY +Zr +Tt +Tt +Ta BK -wu +fV Uw -Ho +Qa Hc yo au aG aP -zm +CK eF eN +Qt zm -sL HD Nt -Ij -Il zm +Il +jJ rl Zi -aa -aa -aa -aa +cP +zm +Ov +pM aa aa aa @@ -25918,66 +26817,66 @@ aa aa aa aa -aa tm tm XP XP XP -JO +WL +aF ZC -VI -JO -cx -JO +WL +MW +WL dw +XB By Zf Ip -VF -VF -Oq +Ip +eR +OY ge -Ow -qp -Pg -tb +QU Ff -tb +Pg +hA +Ff +QE wV -qr -qr -vU -qr +tb +kJ +tb +lC qr qr nb -pG -Hh -rI +qr +qr +qr Li -pH -hr -hr -hr +pG hr +WN +ve +vH +Ug +Ug +Ug Ug -AW -AW -AW Zh -by qe -by +qe +qe oA Dj -rI -Cx -LY +NU +Dj +Tz IN -KA +WN Sr -jc +Qa LN Im fQ @@ -25992,13 +26891,13 @@ cU Gp MV vd -wj -rl -WM -aa -aa -aa -aa +Hx +TF +Qf +US +JM +Ov +vk aa aa aa @@ -26065,37 +26964,41 @@ aa aa aa aa -aa XP XP -hP -JO -JO -JO +Ue +WL +WL +WL +Dk XU -uB +QU oh so -Pk -xq -OY +ez +eX +fn ia -bd -qp -lO -tb -tb -tb +QU +Ff +TP +WQ +Ff +QE XE -qr -ve -oV +tb +tb +tb cf -SN qr -ma +no +nN +op +ov +qr +qO pG -bp +sF fV Ks jM @@ -26107,40 +27010,36 @@ jM jM jM fV -Yx -Ia +Hz +KX fV Ks jM jM fV -va -LY -HU -QJ PF -pT +Qa pA Bb pt vb aV -zm +wc AL AT +dI zm -nL PH pV -UN -Tf zm -rl -Zi -aa -aa -aa -aa +Tf +HY +JU +Ee +FP +zm +Ov +pM aa aa aa @@ -26210,35 +27109,39 @@ aa aa aa aa -aa -mI -JO -JO -qc +Bm +WL +WL qI -oh +cl +QU +eg DU -Hl -Hl -Hl -ia -zo -qp +DU +DU +fn +gk +QU +Ff TP WQ -dc -VT +Ff +QE mb -qr +jN ag EH iQ -AQ qr +nq Fq +oq +oV +qr +qP pG -Hh -SY +hr +tU pG pG pG @@ -26248,41 +27151,37 @@ pG pG pG pG -Ua -AI +DX +HN pG pG pG pG pG -SY -ng -LY -fx -KA +tU mO -Pu +Qa uR -Dh +Im OL nI kP +XA +fu +GP +PD zm zm zm zm -Uf -bJ -lX -lT uI -wj -rl -WM -aa -aa -aa -aa +YG +xK +gi +na +JM +Ov +vk aa aa aa @@ -26350,58 +27249,58 @@ aa aa aa aa -aa tm tm tm -qn -JO -iw -iw -oh -oh -MQ -tR +aO +WL +LH +LH +QU +QU +kw +eG +eY kG -iz -Ad -qp -dV -Ka -Ka -Ka +gm +QU +Ff +TP +WQ +Ff +QE kj -qr -ux -aw +Qy +Qy +Qy Uj -hM qr +nw Wy wg tK -rU -ce +qr ce +rT uM gV pC -cr -tk -tk +pC tk +wx +oS to -BJ +CO CO tx LD -CO -vw -CO +HT +FT +Od Wt FT pw -Cs +FT HK ig wy @@ -26409,22 +27308,22 @@ cV Nc tB Rd -zm +SV zJ sC +io zm RI -RI eC -gM -kS zm +kS +kS Gy -Zi -aa -aa -aa -aa +Rn +VZ +zm +Sy +pM aa aa aa @@ -26496,33 +27395,37 @@ aa aa aa aa -aa XP XP XP XP -oh -iw -iw -oh +QU +LH +LH +QU +fs OX -lc -qp +QU +Ff YB kC -Ka -nS +Ff +QE pK -qr -zy +jS +Qy YZ Pb -MB +qr +nB +nV +ot +oW qr Sk Sk Sk -PX +tZ Sk Sk Sk @@ -26533,32 +27436,32 @@ RQ RQ RQ RQ -kX -yj +HU +Le fW fW fW fW fW fW -LY -LY -LY -LY +Qa +Qa +Qa +Qa WJ -te +Zw WJ WJ WJ WJ zm -el -cl +xj +yH zm zm zm zm -rT +xY zm zm zm @@ -26568,11 +27471,7 @@ hj hj hj aa -uL -aa -aa -aa -aa +VN aa aa aa @@ -26642,72 +27541,76 @@ aa aa aa aa -aa XP XP XP -oh -iw -iw -oh +QU +LH +bt +QU +Ff yv BW -Ka -nS +Ff +QE IF -qr +kd Qy -qr +YZ NO -Og +qr tw -BU +qr zu sw bg Hq pB HF -RQ +ub GJ oF OD -aF -Ps RQ +Ps +yd ah Ml -fW -am +BO +RQ Ok -dh -HT +GU +fW yZ It jY -jY +Ym Um -WJ -ms +TH Ax +Eu yU -wx +IB Wz -fb +Vr iN Rg qD fb ii -oK +Lu ya -vE +fb WU Pf -fi -uQ -fi -uQ +cd +oE +bT +tS +aL +Tb +aL +Tb hj hj hj @@ -26715,7 +27618,7 @@ hj hj hj hj -Fk +ww XP XP XP @@ -26744,10 +27647,6 @@ aa aa aa aa -aa -aa -aa -aa "} (80,1,1) = {" aa @@ -26787,77 +27686,81 @@ aa aa aa aa -aa XP XP -XP -oh +wG +QU +Ff HZ -EU -EU -PG +HZ +Ff +QE sI -dY +Sg +Sg +kW +lF +mH rx qr qr qr qr -CF -Sk -pc -Qb OM -Mp +Sk FM vZ tu -tu +vJ eD -YS +wN +Xl Xl -RQ ym -kr +Fn qH -mS -LU -LU +RQ LU +Lg +Og vx or -VS -VS +or +PA lA -WJ -uk -MO +Ei +RY +jZ BZ -FB +IB hk -fb +mr Ll -Rg +pq RG fb yN Lu -ya +pU +fb +bx +cC +cd in in in in in -sl -in -fg -qo gA -fi -uQ +in +GZ RE -hj +Ej aL +Tb +YH +hj +dH hj hj hj @@ -26865,7 +27768,7 @@ Dq Dq Dq Dq -Lz +pz XP XP XP @@ -26886,10 +27789,6 @@ aa aa aa aa -aa -aa -aa -aa "} (81,1,1) = {" aa @@ -26932,56 +27831,60 @@ aa aa aa aa -aa -nw -JJ -eu -EU -EU +XP +XP +XP +XP +XP +iE yu -EU -Kd +ke +Sg +Sg +lS +Sg +nC rx rx -QY -Sk -Gq -Sk uZ -ju +Sk Pj -uw +Sk BH -RQ +uc Nb YS bQ -Lc +RQ vs Fn aB mE -fW +BT lR XR -VS -XR +Lj +fW gR Yc VS -OI +de qQ -WJ -WS +qA +wY gd IY -IY -IY +Mk +LR Jf Tg -wZ -yX +Tg +Tg ck +jn +fc +CM +Lw SW SW SW @@ -26990,28 +27893,24 @@ SW SW SW SW -RA -AJ +sB +Uv FU FU FU FU FU FU -Qz -tQ -iJ -mH -ya +ZD ff Wf fr -Dq +cd KZ -aa -aa -aa -aa +xa +Jl +Dq +Tm aa aa aa @@ -27080,56 +27979,60 @@ aa aa aa aa -hP -EU -EU +aa +aa +aa +aa +Ue +Sg +Sg rx rx -CL +jr Sk -QH +rc Sk Sk -MU +uh Sk Sk -nM -RQ -Od -YS MG -tf -rG RQ -ca +rG +Fn +NZ Na -fW -Gm +BU +RQ tX +lv +fW +PK +tJ VS -XR -gR -Yc -XR -mQ -ab -WJ -xJ YL +mL +IB +Kw +df iq -iq +IB nD -fb +et +pv pv -cM tM fb uQ fi -fi -vE +mg +fb Tb -Pf +aL +aL +oE +iH +tS in in in @@ -27139,17 +28042,17 @@ in in in in -uv +lY in in in in -Mf -fh -Dq -fs KT fS +Dq +Km +yz +Fa XP XP aa @@ -27170,10 +28073,6 @@ aa aa aa aa -aa -aa -aa -aa "} (83,1,1) = {" aa @@ -27223,46 +28122,50 @@ aa aa aa aa -mI -EU -EU +aa +aa +aa +aa +Bm +Sg +Sg rx rx Sk Sk Sk -TE QB +uk Sk -oW -QB -RQ -On Wk -MG -Nz -Kp +uk RQ +Kp +yj NZ -Na +zZ +BX +RQ +cX +lv fW -Ju -tX -VS -XR Hg tJ -kZ -mP +VS +YL AY -WJ +IB JK Yp ax -kn +IB +zA +pS +Xh +qM WJ fb -Xh +Tk fb fb fb @@ -27274,7 +28177,7 @@ fb fb fb fb -Rf +Ol fb fb fb @@ -27287,15 +28190,11 @@ fb fb fb fb -bP +Lk Dq Dq Dq -JW -aa -aa -aa -aa +Vz aa aa aa @@ -27366,72 +28265,76 @@ aa aa aa aa -mI -EU -EU +aa +aa +aa +aa +Bm +Sg +Sg rx rx -QY +uZ Sk -UC rQ +JI Sk -UC rQ -RQ -RQ -RQ JI RQ RQ RQ -ca -rj +zw +RQ +RQ +RQ +tX +Lo fW -jS -fk -VS -mQ ZR -Ly -kc -Ly +TE +VS +YL ZA -fW +IB +ix +di +ok +IB DD DD DD DD DD -ik -dv -Oo -bM +Oz +UM +mq +Au rL rL rL rL -vL -rL -rL -rL bM rL -EP +rL +rL +Au +rL +eQ rL rL rL rL rL -Cy -rL -rL -Uo tg rL -dj +rL hK Ri +rL +yK +dr +gK tm tm aa @@ -27454,10 +28357,6 @@ aa aa aa aa -aa -aa -aa -aa "} (85,1,1) = {" aa @@ -27509,45 +28408,49 @@ aa aa aa aa -mI -EU -EU +aa +aa +aa +aa +Bm +Sg +Sg rx rx Sk Sk -Pr +uv Sk Sk -Pr +uv RQ -Qn -YD -MG -op Wj +yx +NZ +Ag +Cq RQ -eo -Na -fW -iB HG lv -ac +fW Ry -fW -fW -fW -fW -fW -dJ -cg -IJ -Av +TJ +Vx +Yx +Fr +IB +IB +Ec +IB +IB vc -mm +ps +Xw +AB +tq +OF Dq -Lk +Dg Dq Dq Dq @@ -27559,7 +28462,7 @@ Dq Dq Dq Dq -Lk +Dg Dq Dq Dq @@ -27596,10 +28499,6 @@ aa aa aa aa -aa -aa -aa -aa "} (86,1,1) = {" aa @@ -27652,44 +28551,48 @@ aa aa aa aa -mI -EU -EU +aa +aa +aa +aa +Bm +Sg +Sg rx -CL +jr +Sk +Wu +Sk Sk -BN -Sk -Sk -BN -RQ -Ta -Mg Wu -uh -HX RQ +HX +yD WB bX -fW -PI +Cy +RQ Ly kc -Ly -Ig fW +Ig +TZ dJ -hL +TZ xr -Mm -vc +fW vc +hL mm +Bj +tq +tq +OF Dq Dq Dq Dq -up +wT XP XP XP @@ -27701,7 +28604,7 @@ XP XP XP XP -DX +Vy tm tm tm @@ -27738,10 +28641,6 @@ aa aa aa aa -aa -aa -aa -aa "} (87,1,1) = {" aa @@ -27795,24 +28694,28 @@ aa aa aa aa -mI -EU -EU +aa +aa +aa +aa +Bm +Sg +Sg rx rx rx -gE -zZ -rx -CS Yo YQ -Ko +rx Sj VE -RQ +yF xQ Gx +CF +RQ +Ia +Lz fW fW fW @@ -27822,18 +28725,14 @@ fW fW hL hL -TJ -xP +iK +JN Dq Dq Dq Dq aa -Dg -aa -aa -aa -aa +uu aa aa aa @@ -27938,14 +28837,18 @@ aa aa aa aa -xB -ZQ -ZQ -iM -iM +aa +aa +aa +aa iM ZY +ZY uz +uz +uz +Iu +we RQ RQ RQ @@ -27953,26 +28856,22 @@ RQ RQ RQ RQ -fN -Na -yx -hL LF +lv +On hL -hL -bP sZ hL -Dq +hL Lk +is +hL Dq -Dq -aa Dg +Dq +Dq aa -aa -aa -aa +uu aa aa aa @@ -28081,36 +28980,36 @@ aa aa aa aa -mI -EU -EU -QY +aa +aa +aa +aa +Bm +Sg +Sg +uZ rx -sV -CL -Bw -dT XD jr -xw -av Bw +av +yJ zd xR +CH +Bw +Ih +LA HS HS HS HS HS -ch -Dq -Dq -Dq up -aa -aa -aa -aa +Dq +Dq +Dq +wT aa aa aa @@ -28224,32 +29123,32 @@ aa aa aa aa -mI -EU -EU +aa +aa +aa +aa +Bm +Sg +Sg rx -sV -QY +XD +uZ Bw -Wd -cv -rv -Hu YY -Bw -NZ +yO +Dx oO -HS -Jp +CI +Bw cX rh -XT +HS ch -Vh -aa -aa -aa -aa +Ua +VK +Yy +up +ys aa aa aa @@ -28367,30 +29266,30 @@ aa aa aa aa -mI -EU -EU -wN -ZY -Bw -Bw +aa +aa +aa +aa +Bm +Sg +Sg ss Iu -Jt -vt +Bw +Bw Vt Td Nw -HS +CS Lx ta XJ -Hr +HS Cf -aa -aa -aa -aa +Uf +VO +YD +lK aa aa aa @@ -28510,29 +29409,29 @@ aa aa aa aa -mI -EU -EU -wN -ZY -qN +aa +aa +aa +aa +Bm Sg -eV -rv +Sg +ss +Iu gn -Bw +yR qK Dx oN -CU +Bw Fe YN IS -Cf -aa -aa -aa -aa +PX +Uo +VQ +YP +lK aa aa aa @@ -28653,28 +29552,28 @@ aa aa aa aa -mI -EU -EU -sV +aa +aa +aa +aa +Bm +Sg +Sg +XD Bw Bw -JH -Cg -Yy -Bw vG -Na -HS -vH +An +CU +Bw fa -XJ -Hr -Cf -aa -aa -aa -aa +lv +HS +Qb +UA +VO +YD +lK aa aa aa @@ -28796,28 +29695,28 @@ aa aa aa aa -XW -ZQ -Mv -lx -Bw -po +aa +aa +aa +aa +vL +ZY Ie Yt Bw cH -Ml -HS -bU +Aq +CV +Bw hi GU -Jd -ch -ql -aa -aa -aa -aa +HS +Qc +UC +VX +YR +up +bn aa aa aa @@ -28939,28 +29838,28 @@ aa aa aa aa -Up -Up -VQ -Bw -Bw -Bw -Bw -Bw -vJ -PC -HS -HS -HS -HS -HS -ch -Up -tZ aa aa aa aa +Xq +Xq +xN +Bw +Bw +Bw +Bw +Bw +Ij +LI +HS +HS +HS +HS +HS +up +Xq +ie aa aa aa @@ -29081,27 +29980,27 @@ aa aa aa aa -gX -Up -sh -uc -ku -lP +aa +aa +aa +aa +Qq +Xq mG rR zI -yC +As Mb aj -BF -BF +Is +yC wr -BF -Up -aa -aa -aa -aa +Qm +XZ +XZ +Zg +XZ +Xq aa aa aa @@ -29224,28 +30123,28 @@ aa aa aa aa -Up -Up -aT -yC -yC -jI -yC -td -yC -yC -yC -jI -yC -yC -BF -Up -Up -ql aa aa aa aa +Xq +Xq +Iz +yC +yC +Dl +yC +Iv +yC +yC +yC +Dl +yC +yC +XZ +Xq +Xq +bn aa aa aa @@ -29366,29 +30265,29 @@ aa aa aa aa -gX -Up -zj -BF -BF -xi +aa +aa +aa +aa +Qq +Xq DI XZ -Aj +XZ ct er wF -BF -yC -yC +Mf +Oo +Qn hb -Up -Up -bA -aa -aa -aa -aa +XZ +yC +yC +sR +Xq +Xq +TR aa aa aa @@ -29509,28 +30408,28 @@ aa aa aa aa -Up -Up -Le -yC -yC -yC +aa +aa +aa +aa +Xq +Xq cn yC yC yC +IJ yC yC yC yC yC -dO -xX -Kl -aa -aa -aa -aa +yC +yC +yC +lG +Mu +Fg aa aa aa @@ -29651,33 +30550,33 @@ aa aa aa aa -gX -Up -BF -BF -MR -Ws -yf -GT +aa +aa +aa +aa +Qq +Xq +XZ +XZ ml Ot iU -BF -BF -BF +Mg +Op +Qx +UF +XZ +XZ +XZ yC -Nm -xX -Kl -XP -XP +Bf Mu -uK -bA -aa -aa -aa -aa +Fg +XP +XP +Pd +hq +TR aa aa aa @@ -29794,28 +30693,32 @@ aa aa aa aa -Up -Up -aT -MP -yC -dQ +aa +aa +aa +aa +Xq +Xq Iz gU -EX +yC ST Uk bK -Iz +Qz mV SG -Up -Up -bA +Zp +Uk +vr +xg +Xq +Xq +TR XP -ZJ -RD -Kl +UW +Wl +Fg XP aa aa @@ -29868,10 +30771,6 @@ aa aa aa aa -aa -aa -aa -aa "} (102,1,1) = {" aa @@ -29936,28 +30835,32 @@ aa aa aa aa -gX -Up -BF -BF +aa +aa +aa +aa Qq -HC -nc +Xq +XZ +XZ +DY +IL +Mh mw mw mw mw -AU +TO yC -Qc -Iz -MX -Wo -nl -OT +Gr +Uk hG qy -QI +NT +Jz +MZ +sG +Up XP aa aa @@ -30010,10 +30913,6 @@ aa aa aa aa -aa -aa -aa -aa "} (103,1,1) = {" aa @@ -30079,23 +30978,27 @@ aa aa aa aa -Up -Up -uJ -Pv -kY -Xj +aa +aa +aa +aa +Xq +Xq dd Hb pi -mw +Mm AU -yC +QH Pv -Gv +mw TO -xX -Kl +yC +Hb +Je +Fh +Mu +Fg XP XP XP @@ -30152,10 +31055,6 @@ aa aa aa aa -aa -aa -aa -aa "} (104,1,1) = {" aa @@ -30221,23 +31120,27 @@ aa aa aa aa -Tz -Up -mw -mw +aa +aa +aa +aa If -da +Xq +mw mw -UA JV +Mp mw -AU Gv +UG +mw +TO +Je +Xq +Xq +Xq +Xq Up -Up -Up -Up -QI XP aa aa @@ -30294,10 +31197,6 @@ aa aa aa aa -aa -aa -aa -aa "} (105,1,1) = {" aa @@ -30363,21 +31262,25 @@ aa aa aa aa +aa +aa +aa +TR XP -Up -Up -ud -Ag -NQ +Xq +Xq +XC +IU +Mv mw -XC -XC -Up -Xb -Up -Up +QJ +QJ +Xq +Zv +Xq +Xq XP -WC +UN XP aa aa @@ -30436,10 +31339,6 @@ aa aa aa aa -aa -aa -aa -aa "} (106,1,1) = {" aa @@ -30505,18 +31404,22 @@ aa aa aa aa -XP -Tz -Up +aa +aa +Ls NT -oT +Jz Us -Up -Up -Up -Up -qX +Dm +Ev +Jd +MB Xq +Xq +Xq +Xq +ZE +Vu XP XP aa @@ -30578,10 +31481,6 @@ aa aa aa aa -aa -aa -aa -aa "} (107,1,1) = {" aa @@ -30645,25 +31544,25 @@ aa aa aa aa -XP -XP -XP -XP -Up -Up -Cq -Dy +aa +aa +aa +aa +Yr Up XP +XP +Du +Xq WC -ZJ -UI -Kl +ML +Xq +XP +UN +UW +ZK +Fg XP -aa -aa -aa -aa aa aa aa @@ -30784,27 +31683,27 @@ aa aa aa aa +aa +aa +aa +aa tm tm -Mu -uK -bA XP XP -Lz -zF -iF -ke -Hj XP XP -mo -Fg -QI -aa -aa -aa -aa +XP +XP +XP +XP +XP +XP +XP +XP +Wd +Yr +Up aa aa aa @@ -30927,22 +31826,22 @@ aa aa aa aa -XP -ZJ -UW -nl -OT -OT -OT -OT -ne -XP -XP -XP aa aa aa aa +XP +XP +XP +XP +XP +XP +XP +XP +Ji +XP +XP +XP aa aa aa @@ -31038,7 +31937,11 @@ aa aa aa aa -kW +aa +aa +aa +aa +cy aa aa aa @@ -31070,19 +31973,15 @@ tm tm XP XP -mo -Fg -QI XP XP XP XP XP XP -aa -aa -aa -aa +XP +XP +XP aa aa aa @@ -31361,7 +32260,7 @@ aa aa aa aa -kd +aa aa aa aa @@ -32261,11 +33160,11 @@ aa aa aa aa -OW aa aa aa aa +Rk aa aa aa diff --git a/maps/offmap_vr/talon/talon_v2_areas.dm b/maps/offmap_vr/talon/talon_v2_areas.dm index 654484f728..ab607a8dcf 100644 --- a/maps/offmap_vr/talon/talon_v2_areas.dm +++ b/maps/offmap_vr/talon/talon_v2_areas.dm @@ -50,6 +50,9 @@ /area/talon_v2/hangar name = "\improper Talon - Hangar" icon_state = "red" +/area/talon_v2/pod_hangar + name = "\improper Talon - Pod Hangar" + icon_state = "red" /area/talon_v2/engineering name = "\improper Talon - Engineering" @@ -90,6 +93,9 @@ /area/talon_v2/secure_storage name = "\improper Talon - Secure Storage" icon_state = "red" +/area/talon_v2/ofd_ops + name = "\improper Talon - OFD Ops" + icon_state = "red" /area/talon_v2/bridge name = "\improper Talon - Bridge" icon_state = "blue" @@ -106,6 +112,9 @@ /area/talon_v2/crew_quarters/sec_room name = "\improper Talon - Guard's Cabin" icon_state = "red" +/area/talon_v2/crew_quarters/mine_room + name = "\improper Talon - Miner's Cabin" + icon_state = "gray" /area/talon_v2/crew_quarters/cap_room name = "\improper Talon - Captain's Cabin" icon_state = "blue" diff --git a/maps/om_adventure/grasscave.dm b/maps/om_adventure/grasscave.dm new file mode 100644 index 0000000000..e9e3a21dda --- /dev/null +++ b/maps/om_adventure/grasscave.dm @@ -0,0 +1,335 @@ +#if MAP_TEST +#include "pois/darkstar.dmm" +#include "pois/darktear1.dmm" +#include "pois/darktear2.dmm" +#include "pois/darktear3.dmm" +#include "pois/darktear4.dmm" +#include "pois/fleshtear1.dmm" +#include "pois/fleshtear2.dmm" +#include "pois/fleshtear3.dmm" +#include "pois/fleshtear4.dmm" +#include "pois/cabin1.dmm" +#include "pois/cabin2.dmm" +#include "pois/cabin3.dmm" +#include "pois/camp.dmm" +#include "pois/shuttlewreck1.dmm" +#include "pois/shuttlewreck2.dmm" +#include "pois/shuttlewreck3.dmm" +#include "pois/shuttlewreck4.dmm" +#endif + + +/obj/effect/shuttle_landmark/premade/om_adventure/grasscave/center + name = "Anomaly - Center" + landmark_tag = "om-grasscave-center" + +/obj/effect/shuttle_landmark/premade/om_adventure/grasscave/southeast + name = "Anomaly - Southeast" + landmark_tag = "om-grasscave-southeast" + + +/area/om_adventure/grasscave + name = "Grass Cave" + icon = 'icons/turf/areas_vr.dmi' + icon_state = "bluwhicir" + requires_power = TRUE + dynamic_lighting = TRUE + flags = RAD_SHIELDED + base_turf = /turf/simulated/floor/weird_things/dark + ambience = AMBIENCE_FOREBODING + +/area/om_adventure/grasscave/explored + +/area/om_adventure/grasscave/unexplored + ambience = AMBIENCE_RUINS + +/area/om_adventure/grasscave/rocks + +/obj/effect/overmap/visitable/simplemob/spacewhale/grasscave + initial_generic_waypoints = list("om-grasscave-center", "om-grasscave-southeast") + +/turf/simulated/mineral/omadventure/make_ore(var/rare_ore) + if(mineral) + return + var/mineral_name + if(rare_ore) + mineral_name = pickweight(list( + "marble" = 3, + "uranium" = 10, + "platinum" = 10, + "hematite" = 20, + "carbon" = 30, + "diamond" = 20, + "gold" = 8, + "silver" = 8, + "phoron" = 18, + "lead" = 5, + "verdantium" = 5)) + else + mineral_name = pickweight(list( + "marble" = 2, + "uranium" = 5, + "platinum" = 5, + "hematite" = 35, + "carbon" = 30, + "gold" = 3, + "silver" = 3, + "phoron" = 25, + "lead" = 1)) + + if(mineral_name && (mineral_name in GLOB.ore_data)) + mineral = GLOB.ore_data[mineral_name] + UpdateMineral() + update_icon() + +/datum/random_map/noise/ore/grasscave + descriptor = "grasscave ore distribution map" + deep_val = 0.6 //More riches, normal is 0.7 and 0.8 + rare_val = 0.5 + +/datum/map_template/om_adventure + +/area/om_adventure/poi + name = "POI - OM-A" + icon = 'icons/turf/areas_vr.dmi' + icon_state = "orawhisqu" + ambience = AMBIENCE_FOREBODING + +/area/om_adventure/poi/darkstar + name = "POI - Darkstar" + +/datum/map_template/om_adventure/outdoor/darkstar + name = "Darkstar" + desc = "A mysterious shape!" + mappath = 'pois/darkstar.dmm' + cost = 5 + +/area/om_adventure/poi/darktear1 + name = "POI - Darktear 1" + +/datum/map_template/om_adventure/cave/darktear1 + name = "darktear1" + desc = "A mysterious shape!" + mappath = 'pois/darktear1.dmm' + cost = 5 + +/area/om_adventure/poi/darktear2 + name = "POI - Darktear 2" + +/datum/map_template/om_adventure/cave/darktear2 + name = "darktear2" + desc = "A mysterious shape!" + mappath = 'pois/darktear2.dmm' + cost = 5 + +/area/om_adventure/poi/darktear3 + name = "POI - Darktear 3" + +/datum/map_template/om_adventure/cave/darktear3 + name = "darktear3" + desc = "A mysterious shape!" + mappath = 'pois/darktear3.dmm' + cost = 5 + +/area/om_adventure/poi/darktear4 + name = "POI - Darktear 4" + +/datum/map_template/om_adventure/cave/darktear4 + name = "darktear4" + desc = "A mysterious shape!" + mappath = 'pois/darktear4.dmm' + cost = 5 + +/area/om_adventure/poi/fleshtear1 + name = "POI - Fleshtear 1" + +/datum/map_template/om_adventure/cave/fleshtear1 + name = "fleshtear1" + desc = "Wow gross!" + mappath = 'pois/fleshtear1.dmm' + cost = 5 + +/area/om_adventure/poi/fleshtear2 + name = "POI - Fleshtear 2" + +/datum/map_template/om_adventure/cave/fleshtear2 + name = "fleshtear2" + desc = "Wow gross!" + mappath = 'pois/fleshtear2.dmm' + cost = 5 + +/area/om_adventure/poi/fleshtear3 + name = "POI - Fleshtear 3" + +/datum/map_template/om_adventure/cave/fleshtear3 + name = "fleshtear3" + desc = "Wow gross!" + mappath = 'pois/fleshtear3.dmm' + cost = 5 + +/area/om_adventure/poi/fleshtear4 + name = "POI - Fleshtear 4" + +/datum/map_template/om_adventure/cave/fleshtear4 + name = "fleshtear4" + desc = "Wow gross!" + mappath = 'pois/fleshtear4.dmm' + cost = 5 + +/area/om_adventure/poi/cabin1 + name = "POI - Cabin 1" + +/datum/map_template/om_adventure/outdoor/cabin1 + name = "cabin1" + desc = "A comfy home!" + mappath = 'pois/cabin1.dmm' + cost = 20 + +/area/om_adventure/poi/cabin2 + name = "POI - Cabin 2" + +/datum/map_template/om_adventure/outdoor/cabin2 + name = "cabin2" + desc = "A comfy home!" + mappath = 'pois/cabin2.dmm' + cost = 20 + +/area/om_adventure/poi/cabin3 + name = "POI - Cabin 3" + +/datum/map_template/om_adventure/outdoor/cabin3 + name = "cabin3" + desc = "A comfy... home?" + mappath = 'pois/cabin3.dmm' + cost = 10 + +/area/om_adventure/poi/camp + name = "POI - Camp" + +/datum/map_template/om_adventure/outdoor/camp + name = "Camp" + desc = "A camp!" + mappath = 'pois/camp.dmm' + cost = 20 + +/area/om_adventure/poi/shuttlewreck1 + name = "POI - Shuttlewreck 1" + +/datum/map_template/om_adventure/outdoor/shuttlewreck1 + name = "Shuttle wreck" + desc = "Long abandoned!" + mappath = 'pois/shuttlewreck1.dmm' + cost = 5 + +/area/om_adventure/poi/shuttlewreck2 + name = "POI - Shuttlewreck 2" + +/datum/map_template/om_adventure/outdoor/shuttlewreck2 + name = "Shuttle wreck" + desc = "Long abandoned!" + mappath = 'pois/shuttlewreck2.dmm' + cost = 10 + +/area/om_adventure/poi/shuttlewreck3 + name = "POI - Shuttlewreck 3" + +/datum/map_template/om_adventure/outdoor/shuttlewreck3 + name = "Shuttle wreck" + desc = "Long abandoned!" + mappath = 'pois/shuttlewreck3.dmm' + cost = 5 + +/area/om_adventure/poi/shuttlewreck4 + name = "POI - Shuttlewreck 4" + +/datum/map_template/om_adventure/outdoor/shuttlewreck4 + name = "Shuttle wreck" + desc = "Long abandoned!" + mappath = 'pois/shuttlewreck4.dmm' + cost = 10 + +/area/om_adventure/poi/medicalcenter + name = "POI - medical center" + +/datum/map_template/om_adventure/outdoor/medicalcenter + name = "Medical Center" + desc = "Maybe they used to heal people here." + mappath = 'pois/medicalcenter.dmm' + cost = 10 + +/area/om_adventure/poi/shippart1 + name = "POI - ship part 1" + +/datum/map_template/om_adventure/outdoor/shippart1 + name = "Ship Part" + desc = "Something bad happened here." + mappath = 'pois/shippart1.dmm' + cost = 10 + +/area/om_adventure/poi/woodentemple + name = "POI - Wooden Temple" + +/datum/map_template/om_adventure/cave/woodentemple + name = "Wooden Temple" + desc = "A comfy wooden temple." + mappath = 'pois/woodentemple.dmm' + cost = 10 + +/area/om_adventure/poi/alienchamber1 + name = "POI - Alien Chamber 1" + +/datum/map_template/om_adventure/cave/alienchamber1 + name = "Alien Chamber" + desc = "A mysterious alien chamber!" + mappath = 'pois/alienchamber1.dmm' + cost = 10 + +/area/om_adventure/poi/alienchamber2 + name = "POI - Alien Chamber 2" + +/datum/map_template/om_adventure/cave/alienchamber2 + name = "Alien Chamber" + desc = "A mysterious alien chamber!" + mappath = 'pois/alienchamber2.dmm' + cost = 10 + +/area/om_adventure/poi/alienchamber3 + name = "POI - Alien Chamber 3" + +/datum/map_template/om_adventure/cave/alienchamber3 + name = "Alien Chamber" + desc = "A mysterious alien chamber!" + mappath = 'pois/alienchamber3.dmm' + cost = 10 + +/area/om_adventure/poi/alienchamber4 + name = "POI - Alien Chamber 4" + +/datum/map_template/om_adventure/cave/alienchamber4 + name = "Alien Chamber" + desc = "A mysterious alien chamber!" + mappath = 'pois/alienchamber4.dmm' + cost = 10 + +/obj/tether_away_spawner/spookyland + name = "Spookyland Spawner" + icon = 'icons/mob/randomlandmarks.dmi' + icon_state = "monster" + + faction = "spookyland" + prob_spawn = 50 + prob_fall = 10 + //guard = 10 //Don't wander too far, to stay alive. + mobs_to_pick_from = list( + /mob/living/simple_mob/shadekin/blue = 1, + /mob/living/simple_mob/shadekin/red = 1, + /mob/living/simple_mob/shadekin/green = 10, + /mob/living/simple_mob/shadekin/purple = 1, + /mob/living/simple_mob/shadekin/yellow = 20, + /mob/living/simple_mob/vore/alienanimals/space_ghost = 100, + /mob/living/simple_mob/vore/alienanimals/space_jellyfish = 100, + /mob/living/simple_mob/faithless = 50, + /mob/living/simple_mob/mechanical/infectionbot = 30, + /mob/living/simple_mob/animal/passive/cat/bluespace = 1, + /mob/living/simple_mob/animal/passive/dog/void_puppy = 1 + ) \ No newline at end of file diff --git a/maps/om_adventure/grasscave.dmm b/maps/om_adventure/grasscave.dmm new file mode 100644 index 0000000000..b275729757 --- /dev/null +++ b/maps/om_adventure/grasscave.dmm @@ -0,0 +1,19919 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/obj/effect/overmap/visitable/simplemob/spacewhale/grasscave, +/turf/unsimulated/wall/dark, +/area/om_adventure/grasscave) +"c" = ( +/turf/simulated/floor/outdoors/grass/forest, +/area/om_adventure/grasscave/unexplored) +"n" = ( +/obj/effect/shuttle_landmark/premade/om_adventure/grasscave/southeast, +/turf/simulated/floor/outdoors/grass/forest, +/area/om_adventure/grasscave) +"q" = ( +/turf/simulated/mineral/cave, +/area/om_adventure/grasscave/rocks) +"s" = ( +/turf/simulated/mineral, +/area/om_adventure/grasscave/rocks) +"u" = ( +/turf/simulated/floor/outdoors/grass/forest, +/area/om_adventure/grasscave/explored) +"A" = ( +/obj/effect/shuttle_landmark/premade/om_adventure/grasscave/center, +/turf/simulated/floor/outdoors/grass/forest, +/area/om_adventure/grasscave/explored) +"C" = ( +/turf/unsimulated/wall/dark, +/area/om_adventure/grasscave) +"N" = ( +/turf/simulated/floor/outdoors/grass/forest, +/area/om_adventure/grasscave) +"P" = ( +/turf/unsimulated/floor/dark, +/area/om_adventure/grasscave) +"X" = ( +/obj/effect/fake_sun, +/turf/unsimulated/wall/dark, +/area/om_adventure/grasscave) + +(1,1,1) = {" +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +X +a +"} +(2,1,1) = {" +C +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +q +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +C +"} +(3,1,1) = {" +C +P +P +P +P +P +P +P +P +P +P +P +P +P +q +P +P +P +q +q +q +q +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +q +q +q +q +P +P +P +P +q +P +q +q +P +P +P +P +P +P +P +q +q +q +q +q +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +C +"} +(4,1,1) = {" +C +P +P +P +P +P +P +P +P +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +P +P +P +P +P +P +P +P +P +P +P +P +q +q +q +q +q +q +q +q +q +q +q +P +P +P +P +q +P +P +P +P +P +P +P +q +P +P +q +q +q +q +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +P +P +P +P +q +q +q +q +q +q +q +P +P +q +P +P +q +q +q +q +q +P +P +P +P +P +P +P +P +q +P +P +P +P +P +P +P +P +P +P +P +P +C +"} +(5,1,1) = {" +C +P +P +P +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +P +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +P +P +P +P +P +C +"} +(6,1,1) = {" +C +P +P +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +P +P +P +C +"} +(7,1,1) = {" +C +P +P +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +P +P +C +"} +(8,1,1) = {" +C +P +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +P +P +C +"} +(9,1,1) = {" +C +P +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +P +P +C +"} +(10,1,1) = {" +C +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +P +P +C +"} +(11,1,1) = {" +C +P +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +C +"} +(12,1,1) = {" +C +P +P +P +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +P +C +"} +(13,1,1) = {" +C +P +P +P +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +C +"} +(14,1,1) = {" +C +P +P +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +P +C +"} +(15,1,1) = {" +C +P +P +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +P +C +"} +(16,1,1) = {" +C +P +P +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +s +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +P +P +C +"} +(17,1,1) = {" +C +P +P +P +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +P +P +P +C +"} +(18,1,1) = {" +C +P +P +P +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +P +P +P +C +"} +(19,1,1) = {" +C +P +P +P +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +P +P +P +C +"} +(20,1,1) = {" +C +P +P +P +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +P +P +P +C +"} +(21,1,1) = {" +C +P +P +P +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +q +q +q +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +P +P +P +C +"} +(22,1,1) = {" +C +P +P +P +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +q +q +q +q +q +q +q +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +P +P +P +C +"} +(23,1,1) = {" +C +P +P +P +P +P +q +q +q +q +q +q +q +q +c +c +c +c +q +q +q +q +q +q +q +q +q +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +P +P +C +"} +(24,1,1) = {" +C +P +P +P +P +P +q +q +q +q +q +q +q +q +q +c +q +q +q +q +c +c +c +q +q +q +q +q +q +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +P +C +"} +(25,1,1) = {" +C +P +P +P +P +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +q +q +q +q +q +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +P +C +"} +(26,1,1) = {" +C +P +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +P +C +"} +(27,1,1) = {" +C +P +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +P +C +"} +(28,1,1) = {" +C +P +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +P +C +"} +(29,1,1) = {" +C +P +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +P +C +"} +(30,1,1) = {" +C +P +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +P +C +"} +(31,1,1) = {" +C +P +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +P +C +"} +(32,1,1) = {" +C +P +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +P +C +"} +(33,1,1) = {" +C +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +P +C +"} +(34,1,1) = {" +C +P +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +C +"} +(35,1,1) = {" +C +P +P +P +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +q +c +c +c +c +c +c +c +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +P +C +"} +(36,1,1) = {" +C +P +P +P +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +C +"} +(37,1,1) = {" +C +P +P +P +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +C +"} +(38,1,1) = {" +C +P +P +P +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +C +"} +(39,1,1) = {" +C +P +P +P +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +C +"} +(40,1,1) = {" +C +P +P +P +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +C +"} +(41,1,1) = {" +C +P +P +P +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +q +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +C +"} +(42,1,1) = {" +C +P +P +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +C +"} +(43,1,1) = {" +C +P +P +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +P +C +"} +(44,1,1) = {" +C +P +P +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +P +C +"} +(45,1,1) = {" +C +P +P +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +c +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +q +q +q +q +q +q +q +q +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +P +C +"} +(46,1,1) = {" +C +P +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +q +q +q +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +q +q +q +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +P +C +"} +(47,1,1) = {" +C +P +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +q +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +C +"} +(48,1,1) = {" +C +P +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +q +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +C +"} +(49,1,1) = {" +C +P +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +c +c +q +q +q +q +q +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +C +"} +(50,1,1) = {" +C +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +c +c +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +C +"} +(51,1,1) = {" +C +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +q +q +q +c +c +c +c +c +c +q +q +q +q +q +c +c +c +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +P +C +"} +(52,1,1) = {" +C +P +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +N +N +q +q +q +q +q +q +c +c +c +q +q +q +q +q +q +c +c +c +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +P +C +"} +(53,1,1) = {" +C +P +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +N +N +q +q +q +q +q +q +q +c +c +c +q +q +q +q +c +c +c +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +P +C +"} +(54,1,1) = {" +C +P +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +N +N +q +q +q +q +q +q +q +c +c +c +c +q +q +c +c +c +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +P +P +C +"} +(55,1,1) = {" +C +P +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +N +N +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +P +P +C +"} +(56,1,1) = {" +C +P +P +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +N +N +N +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +P +P +C +"} +(57,1,1) = {" +C +P +P +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +N +N +N +q +q +q +q +q +q +q +q +q +c +c +c +c +c +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +P +C +"} +(58,1,1) = {" +C +P +P +P +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +N +N +N +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +C +"} +(59,1,1) = {" +C +P +P +P +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +N +N +N +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +C +"} +(60,1,1) = {" +C +P +P +P +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +u +u +u +u +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +P +C +"} +(61,1,1) = {" +C +P +P +P +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +u +u +u +u +u +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +P +C +"} +(62,1,1) = {" +C +P +P +P +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +u +u +u +u +u +u +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +P +P +C +"} +(63,1,1) = {" +C +P +P +P +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +q +q +q +q +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +u +u +u +u +u +u +u +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +P +P +P +C +"} +(64,1,1) = {" +C +P +P +P +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +q +q +q +q +q +q +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +u +u +u +u +u +u +u +u +u +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +P +P +P +C +"} +(65,1,1) = {" +C +P +P +P +P +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +c +q +q +q +q +q +q +q +q +q +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +u +u +u +u +u +u +u +u +u +u +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +P +P +P +P +C +"} +(66,1,1) = {" +C +P +P +P +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +u +u +u +u +u +u +u +u +u +u +u +u +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +P +P +P +P +C +"} +(67,1,1) = {" +C +P +P +P +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +u +u +u +u +u +u +u +u +u +u +u +u +u +u +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +P +P +P +P +C +"} +(68,1,1) = {" +C +P +P +P +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +P +P +P +C +"} +(69,1,1) = {" +C +P +P +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +N +N +N +N +N +N +N +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +P +P +C +"} +(70,1,1) = {" +C +P +P +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +N +N +N +N +N +N +N +N +N +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +P +C +"} +(71,1,1) = {" +C +P +P +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +N +N +N +N +N +N +N +N +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +P +C +"} +(72,1,1) = {" +C +P +P +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +N +N +N +N +N +u +u +u +u +u +u +u +u +u +u +u +u +A +u +u +u +u +u +u +u +u +u +u +u +u +u +u +N +q +q +q +N +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +P +C +"} +(73,1,1) = {" +C +P +P +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +N +N +N +N +N +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +P +C +"} +(74,1,1) = {" +C +P +P +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +N +N +N +N +N +c +c +c +c +q +q +q +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +P +C +"} +(75,1,1) = {" +C +P +P +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +N +q +q +q +N +c +c +c +q +q +q +q +q +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +P +C +"} +(76,1,1) = {" +C +P +P +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +q +q +q +q +q +q +q +q +q +q +c +q +q +q +q +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +P +C +"} +(77,1,1) = {" +C +P +P +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +u +u +u +u +u +u +u +u +u +u +u +u +u +u +u +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +P +C +"} +(78,1,1) = {" +C +P +P +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +u +u +u +u +u +u +u +u +u +u +u +u +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +P +C +"} +(79,1,1) = {" +C +P +P +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +q +q +q +q +q +q +q +q +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +u +u +u +u +u +u +u +u +u +u +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +P +C +"} +(80,1,1) = {" +C +P +P +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +u +u +u +u +u +u +u +u +u +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +N +N +q +q +q +q +q +q +q +q +q +P +P +P +C +"} +(81,1,1) = {" +C +P +P +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +u +u +u +u +u +u +u +u +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +N +N +N +N +N +N +N +N +q +q +q +q +N +N +N +q +q +q +q +q +q +q +q +q +P +P +P +C +"} +(82,1,1) = {" +C +P +P +P +P +P +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +u +u +u +u +u +u +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +q +q +q +q +q +q +q +q +P +P +C +"} +(83,1,1) = {" +C +P +P +P +P +P +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +u +u +u +u +u +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +q +q +q +q +q +q +q +q +q +P +P +C +"} +(84,1,1) = {" +C +P +P +P +P +P +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +u +u +u +u +u +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +q +q +q +q +q +q +q +q +P +P +C +"} +(85,1,1) = {" +C +P +P +P +P +P +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +N +N +N +N +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +q +q +q +q +q +q +q +q +q +P +P +C +"} +(86,1,1) = {" +C +P +P +P +P +P +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +N +N +N +N +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +q +q +q +q +q +q +q +q +q +q +q +P +C +"} +(87,1,1) = {" +C +P +P +P +P +P +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +N +N +N +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +q +q +q +q +q +q +q +q +q +q +P +P +C +"} +(88,1,1) = {" +C +P +P +P +P +P +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +N +N +N +N +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +q +q +q +q +q +q +q +q +q +q +P +P +C +"} +(89,1,1) = {" +C +P +P +P +P +P +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +N +N +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +q +q +q +q +q +q +q +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +q +q +q +q +q +q +q +q +q +q +P +P +C +"} +(90,1,1) = {" +C +P +P +P +P +P +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +N +N +N +N +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +q +q +q +q +q +q +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +q +q +q +q +q +q +q +q +q +q +q +P +P +C +"} +(91,1,1) = {" +C +P +P +P +P +P +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +N +N +N +N +N +q +N +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +q +q +q +q +q +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +q +q +q +q +q +q +q +q +q +q +P +P +P +C +"} +(92,1,1) = {" +C +P +P +P +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +N +N +N +N +N +N +N +N +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +q +q +q +q +q +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +q +q +q +q +q +q +q +q +q +P +P +P +P +C +"} +(93,1,1) = {" +C +P +P +P +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +N +N +N +N +N +N +N +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +q +q +q +q +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +q +q +q +q +q +q +q +q +q +P +P +P +P +C +"} +(94,1,1) = {" +C +P +P +P +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +N +N +N +N +N +N +N +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +q +q +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +q +q +q +q +q +q +q +q +q +P +P +P +P +P +C +"} +(95,1,1) = {" +C +P +P +P +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +N +N +N +N +N +N +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +q +q +q +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +q +q +q +q +q +q +q +q +P +P +P +P +P +P +C +"} +(96,1,1) = {" +C +P +P +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +N +N +N +N +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +q +q +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +q +q +q +q +q +q +q +q +P +P +P +P +P +P +P +C +"} +(97,1,1) = {" +C +P +P +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +N +N +N +N +N +N +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +q +q +c +c +c +c +q +q +N +N +N +N +N +N +N +N +N +N +N +N +N +N +n +N +N +N +N +N +N +N +q +q +q +q +q +q +q +q +P +P +P +P +P +P +P +C +"} +(98,1,1) = {" +C +P +P +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +N +N +N +N +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +q +q +q +c +c +c +c +c +q +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +q +q +q +q +q +q +P +P +P +P +P +P +P +P +P +C +"} +(99,1,1) = {" +C +P +P +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +N +N +N +N +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +q +q +q +q +c +c +c +c +c +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +q +q +q +q +q +q +q +P +P +P +P +P +P +P +P +P +C +"} +(100,1,1) = {" +C +P +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +N +N +N +N +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +q +q +q +q +q +c +c +c +c +c +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +q +q +q +q +q +q +q +P +P +q +P +P +P +q +q +P +C +"} +(101,1,1) = {" +C +P +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +N +N +N +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +q +q +q +q +c +c +c +c +c +N +N +N +N +q +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +N +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +C +"} +(102,1,1) = {" +C +P +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +N +N +N +N +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +q +q +q +q +q +c +c +c +c +c +N +N +N +q +q +q +N +N +N +N +N +N +N +N +N +N +N +N +N +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +C +"} +(103,1,1) = {" +C +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +N +N +N +N +N +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +q +q +q +q +c +c +c +c +c +c +N +N +q +q +q +q +q +N +N +N +N +N +N +N +N +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +C +"} +(104,1,1) = {" +C +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +N +N +N +N +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +q +q +q +q +q +q +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +C +"} +(105,1,1) = {" +C +P +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +N +N +N +N +N +N +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +q +q +q +q +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +C +"} +(106,1,1) = {" +C +P +P +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +N +N +N +N +N +N +N +N +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +C +"} +(107,1,1) = {" +C +P +P +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +N +q +N +N +q +N +N +N +N +N +N +N +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +C +"} +(108,1,1) = {" +C +P +P +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +N +N +N +N +N +N +N +N +N +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +C +"} +(109,1,1) = {" +C +P +P +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +N +N +N +N +N +N +N +N +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +C +"} +(110,1,1) = {" +C +P +P +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +q +N +N +N +N +N +N +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +C +"} +(111,1,1) = {" +C +P +P +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +N +N +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +C +"} +(112,1,1) = {" +C +P +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +C +"} +(113,1,1) = {" +C +P +P +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +C +"} +(114,1,1) = {" +C +P +P +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +P +q +P +P +P +C +"} +(115,1,1) = {" +C +P +P +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +P +P +P +P +P +P +C +"} +(116,1,1) = {" +C +P +P +P +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +P +P +P +P +P +P +C +"} +(117,1,1) = {" +C +P +P +P +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +P +P +P +P +P +P +C +"} +(118,1,1) = {" +C +P +P +P +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +P +P +P +P +P +C +"} +(119,1,1) = {" +C +P +P +P +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +P +P +P +P +C +"} +(120,1,1) = {" +C +P +P +P +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +P +P +P +C +"} +(121,1,1) = {" +C +P +P +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +P +C +"} +(122,1,1) = {" +C +P +P +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +P +C +"} +(123,1,1) = {" +C +P +P +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +C +"} +(124,1,1) = {" +C +P +P +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +P +C +"} +(125,1,1) = {" +C +P +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +P +C +"} +(126,1,1) = {" +C +P +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +c +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +P +P +C +"} +(127,1,1) = {" +C +P +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +c +c +c +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +P +P +C +"} +(128,1,1) = {" +C +P +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +P +P +C +"} +(129,1,1) = {" +C +P +P +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +P +P +C +"} +(130,1,1) = {" +C +P +P +P +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +P +C +"} +(131,1,1) = {" +C +P +P +P +P +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +P +C +"} +(132,1,1) = {" +C +P +P +P +P +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +P +C +"} +(133,1,1) = {" +C +P +P +P +P +P +P +P +q +q +q +P +P +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +P +P +C +"} +(134,1,1) = {" +C +P +P +P +P +P +P +P +q +q +P +P +P +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +P +P +P +C +"} +(135,1,1) = {" +C +P +P +P +P +P +P +q +q +P +P +P +P +P +P +P +q +q +q +q +q +q +q +q +q +q +q +P +P +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +P +P +P +P +P +C +"} +(136,1,1) = {" +C +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +q +q +q +q +q +q +q +q +q +P +P +P +P +P +P +P +P +P +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +P +P +P +P +q +q +q +P +P +P +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +P +P +P +P +P +P +P +C +"} +(137,1,1) = {" +C +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +q +q +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +q +q +q +q +q +q +q +q +q +q +q +q +q +q +P +P +P +P +P +P +P +P +P +P +q +q +q +q +q +q +q +q +q +q +q +P +P +P +P +P +P +P +P +P +q +q +q +q +q +q +q +q +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +C +"} +(138,1,1) = {" +C +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +q +q +q +q +q +q +q +q +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +q +q +q +q +q +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +q +q +q +q +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +C +"} +(139,1,1) = {" +C +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +P +C +"} +(140,1,1) = {" +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +C +"} diff --git a/maps/om_adventure/pois/alienchamber1.dmm b/maps/om_adventure/pois/alienchamber1.dmm new file mode 100644 index 0000000000..40aae71e2c --- /dev/null +++ b/maps/om_adventure/pois/alienchamber1.dmm @@ -0,0 +1,151 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/simulated/wall/eris/r_wall, +/area/om_adventure/poi/alienchamber1) +"e" = ( +/obj/tether_away_spawner/spookyland, +/turf/simulated/shuttle/floor/alien/blue, +/area/om_adventure/poi/alienchamber1) +"f" = ( +/obj/structure/loot_pile/surface/alien/security, +/turf/simulated/shuttle/floor/alien/blue, +/area/om_adventure/poi/alienchamber1) +"n" = ( +/turf/template_noop, +/area/template_noop) +"x" = ( +/turf/simulated/shuttle/floor/alienplating/vacuum, +/area/om_adventure/poi/alienchamber1) +"D" = ( +/obj/structure/table/alien, +/obj/random/awayloot/looseloot, +/turf/simulated/shuttle/floor/alienplating/vacuum, +/area/om_adventure/poi/alienchamber1) +"P" = ( +/turf/simulated/shuttle/floor/alien/blue, +/area/om_adventure/poi/alienchamber1) +"Z" = ( +/obj/structure/table/alien, +/turf/simulated/shuttle/floor/alienplating/vacuum, +/area/om_adventure/poi/alienchamber1) + +(1,1,1) = {" +n +n +n +a +a +a +a +a +a +a +"} +(2,1,1) = {" +n +n +n +a +Z +Z +x +x +x +a +"} +(3,1,1) = {" +n +n +n +a +Z +x +e +x +x +a +"} +(4,1,1) = {" +a +a +a +a +x +P +P +e +x +a +"} +(5,1,1) = {" +a +D +Z +x +x +x +P +x +Z +a +"} +(6,1,1) = {" +a +Z +x +P +x +x +x +Z +D +a +"} +(7,1,1) = {" +a +x +e +f +P +x +a +a +a +a +"} +(8,1,1) = {" +a +x +x +e +x +Z +a +n +n +n +"} +(9,1,1) = {" +a +x +x +x +Z +Z +a +n +n +n +"} +(10,1,1) = {" +a +a +a +a +a +a +a +n +n +n +"} diff --git a/maps/om_adventure/pois/alienchamber2.dmm b/maps/om_adventure/pois/alienchamber2.dmm new file mode 100644 index 0000000000..8366c7736a --- /dev/null +++ b/maps/om_adventure/pois/alienchamber2.dmm @@ -0,0 +1,261 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/template_noop, +/area/template_noop) +"i" = ( +/turf/simulated/shuttle/floor/alienplating/vacuum, +/area/om_adventure/poi/alienchamber2) +"q" = ( +/obj/tether_away_spawner/spookyland, +/turf/simulated/shuttle/floor/alien/blue, +/area/om_adventure/poi/alienchamber2) +"u" = ( +/turf/simulated/shuttle/floor/alien/blue, +/area/om_adventure/poi/alienchamber2) +"x" = ( +/obj/random/awayloot/looseloot, +/obj/structure/table/alien, +/turf/simulated/shuttle/floor/alienplating/vacuum, +/area/om_adventure/poi/alienchamber2) +"H" = ( +/obj/structure/loot_pile/surface/alien/security, +/turf/simulated/shuttle/floor/alien/blue, +/area/om_adventure/poi/alienchamber2) +"M" = ( +/obj/structure/table/alien, +/turf/simulated/shuttle/floor/alienplating/vacuum, +/area/om_adventure/poi/alienchamber2) +"P" = ( +/turf/simulated/wall/eris/r_wall, +/area/om_adventure/poi/alienchamber2) +"Q" = ( +/obj/machinery/door/airlock/alien/public, +/turf/simulated/shuttle/floor/alienplating/vacuum, +/area/om_adventure/poi/alienchamber2) +"W" = ( +/obj/structure/table/alien, +/obj/random/awayloot/looseloot, +/turf/simulated/shuttle/floor/alienplating/vacuum, +/area/om_adventure/poi/alienchamber2) + +(1,1,1) = {" +a +a +a +a +P +P +P +P +P +P +a +"} +(2,1,1) = {" +a +a +a +a +P +M +M +M +x +P +P +"} +(3,1,1) = {" +a +a +a +a +P +x +i +q +i +i +P +"} +(4,1,1) = {" +a +a +a +a +P +M +i +i +u +i +P +"} +(5,1,1) = {" +a +P +P +P +P +P +P +i +i +i +P +"} +(6,1,1) = {" +P +P +W +M +M +i +P +i +i +i +P +"} +(7,1,1) = {" +P +i +i +i +i +i +P +P +Q +P +P +"} +(8,1,1) = {" +P +i +i +u +i +i +P +i +i +i +P +"} +(9,1,1) = {" +P +i +q +H +u +i +Q +i +q +i +P +"} +(10,1,1) = {" +P +i +i +u +i +i +P +i +i +i +P +"} +(11,1,1) = {" +P +i +i +i +i +i +P +P +Q +P +P +"} +(12,1,1) = {" +P +P +M +x +M +i +P +i +i +i +P +"} +(13,1,1) = {" +a +P +P +P +P +P +P +i +i +i +P +"} +(14,1,1) = {" +a +a +a +a +P +M +i +i +u +i +P +"} +(15,1,1) = {" +a +a +a +a +P +x +i +q +i +i +P +"} +(16,1,1) = {" +a +a +a +a +P +M +i +i +x +P +P +"} +(17,1,1) = {" +a +a +a +a +P +P +P +P +P +P +a +"} diff --git a/maps/om_adventure/pois/alienchamber3.dmm b/maps/om_adventure/pois/alienchamber3.dmm new file mode 100644 index 0000000000..a8c3a50974 --- /dev/null +++ b/maps/om_adventure/pois/alienchamber3.dmm @@ -0,0 +1,221 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/template_noop, +/area/template_noop) +"c" = ( +/turf/simulated/shuttle/floor/alien/blue, +/area/om_adventure/poi/alienchamber3) +"f" = ( +/obj/structure/loot_pile/surface/alien/security, +/turf/simulated/shuttle/floor/alien/blue, +/area/om_adventure/poi/alienchamber3) +"r" = ( +/turf/simulated/wall/eris/r_wall, +/area/om_adventure/poi/alienchamber3) +"P" = ( +/turf/simulated/shuttle/floor/alienplating/vacuum, +/area/om_adventure/poi/alienchamber3) +"V" = ( +/obj/random/awayloot/looseloot, +/turf/simulated/shuttle/floor/alienplating/vacuum, +/area/om_adventure/poi/alienchamber3) +"X" = ( +/obj/tether_away_spawner/spookyland, +/turf/simulated/shuttle/floor/alienplating/vacuum, +/area/om_adventure/poi/alienchamber3) + +(1,1,1) = {" +a +a +a +a +a +r +r +r +a +a +a +a +a +"} +(2,1,1) = {" +a +a +a +a +r +r +P +r +r +a +a +a +a +"} +(3,1,1) = {" +a +a +a +r +r +P +P +P +r +r +a +a +a +"} +(4,1,1) = {" +a +a +r +r +P +P +c +P +P +r +r +a +a +"} +(5,1,1) = {" +a +r +r +P +V +P +X +P +V +P +r +r +a +"} +(6,1,1) = {" +r +r +P +P +P +P +c +P +P +P +P +r +r +"} +(7,1,1) = {" +r +P +P +c +X +c +f +c +X +c +P +P +r +"} +(8,1,1) = {" +r +r +P +P +P +P +c +P +P +P +P +r +r +"} +(9,1,1) = {" +a +r +r +P +P +V +X +P +P +P +r +r +a +"} +(10,1,1) = {" +a +a +r +r +P +P +c +P +P +r +r +a +a +"} +(11,1,1) = {" +a +a +a +r +r +P +P +P +r +r +a +a +a +"} +(12,1,1) = {" +a +a +a +a +r +r +P +r +r +a +a +a +a +"} +(13,1,1) = {" +a +a +a +a +a +r +r +r +a +a +a +a +a +"} diff --git a/maps/om_adventure/pois/alienchamber4.dmm b/maps/om_adventure/pois/alienchamber4.dmm new file mode 100644 index 0000000000..a72674a530 --- /dev/null +++ b/maps/om_adventure/pois/alienchamber4.dmm @@ -0,0 +1,295 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/template_noop, +/area/template_noop) +"h" = ( +/obj/random/awayloot/looseloot, +/obj/structure/table/alien, +/turf/simulated/shuttle/floor/alienplating/vacuum, +/area/om_adventure/poi/alienchamber4) +"n" = ( +/obj/tether_away_spawner/spookyland, +/turf/simulated/shuttle/floor/alien/blue, +/area/om_adventure/poi/alienchamber4) +"o" = ( +/turf/simulated/shuttle/floor/alien/blue, +/area/om_adventure/poi/alienchamber4) +"q" = ( +/obj/structure/table/alien, +/turf/simulated/shuttle/floor/alienplating/vacuum, +/area/om_adventure/poi/alienchamber4) +"s" = ( +/obj/structure/table/alien, +/obj/random/awayloot/looseloot, +/turf/simulated/shuttle/floor/alienplating/vacuum, +/area/om_adventure/poi/alienchamber4) +"L" = ( +/turf/simulated/wall/eris/r_wall, +/area/om_adventure/poi/alienchamber4) +"N" = ( +/obj/structure/loot_pile/surface/alien/security, +/turf/simulated/shuttle/floor/alien/blue, +/area/om_adventure/poi/alienchamber4) +"O" = ( +/turf/simulated/shuttle/floor/alienplating/vacuum, +/area/om_adventure/poi/alienchamber4) +"R" = ( +/obj/tether_away_spawner/spookyland, +/turf/simulated/shuttle/floor/alienplating/vacuum, +/area/om_adventure/poi/alienchamber4) + +(1,1,1) = {" +a +a +L +a +a +a +L +a +a +a +a +a +a +a +a +"} +(2,1,1) = {" +a +a +L +L +L +L +L +a +a +a +a +a +a +a +a +"} +(3,1,1) = {" +L +L +L +q +h +q +L +L +L +a +a +a +a +a +a +"} +(4,1,1) = {" +a +L +q +O +O +O +O +L +a +a +a +a +a +a +a +"} +(5,1,1) = {" +a +L +h +O +n +O +O +L +a +a +a +a +a +a +a +"} +(6,1,1) = {" +a +L +O +O +O +O +O +L +a +a +a +a +a +a +a +"} +(7,1,1) = {" +a +L +O +O +O +O +O +L +a +a +a +a +L +a +a +"} +(8,1,1) = {" +a +L +O +O +O +O +O +L +L +L +L +L +L +a +a +"} +(9,1,1) = {" +a +L +O +O +R +O +O +O +O +O +O +O +L +L +L +"} +(10,1,1) = {" +a +L +O +O +o +O +O +O +O +O +O +O +s +L +a +"} +(11,1,1) = {" +a +L +q +o +N +o +R +O +O +O +n +O +q +L +a +"} +(12,1,1) = {" +a +L +q +O +o +O +O +O +O +O +O +O +q +L +a +"} +(13,1,1) = {" +L +L +L +s +q +O +O +O +O +O +q +q +L +L +L +"} +(14,1,1) = {" +a +a +L +L +L +L +L +L +L +L +L +L +L +a +a +"} +(15,1,1) = {" +a +a +L +a +a +a +a +a +a +a +a +a +L +a +a +"} diff --git a/maps/om_adventure/pois/cabin1.dmm b/maps/om_adventure/pois/cabin1.dmm new file mode 100644 index 0000000000..0adc084576 --- /dev/null +++ b/maps/om_adventure/pois/cabin1.dmm @@ -0,0 +1,324 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/template_noop, +/area/template_noop) +"b" = ( +/obj/structure/table/woodentable, +/obj/random/awayloot/looseloot, +/obj/random/tech_supply, +/turf/simulated/floor/carpet, +/area/om_adventure/poi/cabin1) +"c" = ( +/obj/structure/table/reinforced, +/turf/simulated/floor/bmarble, +/area/om_adventure/poi/cabin1) +"d" = ( +/obj/structure/table/reinforced, +/obj/random/awayloot/looseloot, +/turf/simulated/floor/bmarble, +/area/om_adventure/poi/cabin1) +"f" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/random/meat, +/obj/random/meat, +/obj/random/meat, +/obj/random/meat, +/obj/random/meat, +/obj/random/snack, +/obj/random/snack, +/turf/simulated/floor/bmarble, +/area/om_adventure/poi/cabin1) +"g" = ( +/obj/structure/bed/chair/sofa/brown, +/obj/random/snack, +/turf/simulated/floor/wood, +/area/om_adventure/poi/cabin1) +"i" = ( +/obj/tether_away_spawner/spookyland, +/turf/simulated/floor/bmarble, +/area/om_adventure/poi/cabin1) +"j" = ( +/turf/simulated/floor/carpet, +/area/om_adventure/poi/cabin1) +"k" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/flame/candle, +/turf/simulated/floor/bmarble, +/area/om_adventure/poi/cabin1) +"r" = ( +/obj/structure/bookcase, +/turf/simulated/floor/wood, +/area/om_adventure/poi/cabin1) +"s" = ( +/turf/simulated/floor/wood, +/area/om_adventure/poi/cabin1) +"t" = ( +/obj/tether_away_spawner/spookyland, +/turf/simulated/floor/wood, +/area/om_adventure/poi/cabin1) +"u" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/plating, +/area/om_adventure/poi/cabin1) +"v" = ( +/obj/item/weapon/bedsheet/browndouble, +/obj/structure/bed/double/padded, +/obj/structure/curtain/black, +/turf/simulated/floor/carpet, +/area/om_adventure/poi/cabin1) +"w" = ( +/obj/tether_away_spawner/spookyland, +/turf/simulated/floor/outdoors/newdirt, +/area/om_adventure/poi/cabin1) +"x" = ( +/obj/structure/table/reinforced, +/obj/random/snack, +/turf/simulated/floor/bmarble, +/area/om_adventure/poi/cabin1) +"z" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/bmarble, +/area/om_adventure/poi/cabin1) +"B" = ( +/turf/simulated/floor/outdoors/newdirt, +/area/om_adventure/poi/cabin1) +"C" = ( +/obj/structure/bed/chair/sofa/brown/corner, +/turf/simulated/floor/wood, +/area/om_adventure/poi/cabin1) +"D" = ( +/turf/simulated/floor/bmarble, +/area/om_adventure/poi/cabin1) +"F" = ( +/obj/structure/table/darkglass, +/obj/random/awayloot/looseloot, +/obj/item/weapon/flame/candle, +/turf/simulated/floor/wood, +/area/om_adventure/poi/cabin1) +"H" = ( +/obj/structure/table/woodentable, +/obj/random/tech_supply, +/turf/simulated/floor/wood, +/area/om_adventure/poi/cabin1) +"I" = ( +/obj/structure/closet, +/obj/random/awayloot/looseloot, +/obj/random/awayloot/looseloot, +/obj/random/tech_supply, +/turf/simulated/floor/carpet, +/area/om_adventure/poi/cabin1) +"L" = ( +/obj/structure/table/woodentable, +/obj/random/awayloot/looseloot, +/turf/simulated/floor/wood, +/area/om_adventure/poi/cabin1) +"Q" = ( +/turf/simulated/wall/log, +/area/om_adventure/poi/cabin1) +"R" = ( +/obj/structure/bed/chair/sofa/brown/left{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/om_adventure/poi/cabin1) +"S" = ( +/obj/structure/bed/chair/sofa/brown/right, +/turf/simulated/floor/wood, +/area/om_adventure/poi/cabin1) +"T" = ( +/obj/tether_away_spawner/spookyland, +/turf/simulated/floor/carpet, +/area/om_adventure/poi/cabin1) +"X" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/om_adventure/poi/cabin1) +"Z" = ( +/obj/structure/table/woodentable, +/obj/random/tech_supply/component, +/turf/simulated/floor/wood, +/area/om_adventure/poi/cabin1) + +(1,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +"} +(2,1,1) = {" +a +Q +Q +Q +Q +Q +Q +Q +X +Q +Q +a +"} +(3,1,1) = {" +a +Q +x +k +x +d +Q +b +j +v +Q +a +"} +(4,1,1) = {" +a +X +d +i +D +D +Q +I +j +j +X +a +"} +(5,1,1) = {" +a +X +c +D +D +D +z +j +T +j +X +a +"} +(6,1,1) = {" +a +Q +f +D +D +D +Q +j +j +j +Q +a +"} +(7,1,1) = {" +a +Q +Q +k +D +Q +Q +Q +Q +Q +Q +a +"} +(8,1,1) = {" +a +Q +L +s +s +s +r +Q +a +a +a +a +"} +(9,1,1) = {" +a +Q +S +s +s +s +H +Q +B +a +a +a +"} +(10,1,1) = {" +a +Q +g +s +F +s +s +u +B +B +w +a +"} +(11,1,1) = {" +a +Q +C +R +t +s +Z +Q +B +a +a +B +"} +(12,1,1) = {" +a +Q +Q +X +X +X +Q +Q +a +a +a +a +"} +(13,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +"} diff --git a/maps/om_adventure/pois/cabin2.dmm b/maps/om_adventure/pois/cabin2.dmm new file mode 100644 index 0000000000..31b9b10e2d --- /dev/null +++ b/maps/om_adventure/pois/cabin2.dmm @@ -0,0 +1,404 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/template_noop, +/area/template_noop) +"c" = ( +/obj/tether_away_spawner/spookyland, +/turf/simulated/floor/bmarble, +/area/om_adventure/poi/cabin2) +"e" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/plating/eris/under, +/area/om_adventure/poi/cabin2) +"g" = ( +/obj/structure/table/rack/shelf, +/obj/random/mre, +/obj/random/mre, +/obj/random/mre, +/obj/random/mre, +/turf/simulated/floor/bmarble, +/area/om_adventure/poi/cabin2) +"i" = ( +/obj/tether_away_spawner/spookyland, +/turf/simulated/floor/outdoors/sidewalk/side, +/area/om_adventure/poi/cabin2) +"k" = ( +/turf/simulated/wall/log, +/area/om_adventure/poi/cabin2) +"l" = ( +/obj/structure/table/steel, +/obj/random/multiple/underdark/treasure, +/turf/simulated/floor/bmarble, +/area/om_adventure/poi/cabin2) +"n" = ( +/obj/tether_away_spawner/spookyland, +/turf/simulated/floor/wood, +/area/om_adventure/poi/cabin2) +"p" = ( +/obj/structure/table/woodentable, +/obj/random/awayloot/looseloot, +/turf/simulated/floor/wood, +/area/om_adventure/poi/cabin2) +"q" = ( +/obj/structure/table/steel, +/obj/random/awayloot/looseloot, +/turf/simulated/floor/bmarble, +/area/om_adventure/poi/cabin2) +"r" = ( +/obj/tether_away_spawner/spookyland, +/turf/simulated/floor/carpet/bcarpet, +/area/om_adventure/poi/cabin2) +"s" = ( +/obj/structure/bed/chair/sofa/corp/right, +/turf/simulated/floor/wood, +/area/om_adventure/poi/cabin2) +"t" = ( +/obj/structure/bed/chair/sofa/brown/corner, +/turf/simulated/floor/carpet/bcarpet, +/area/om_adventure/poi/cabin2) +"u" = ( +/obj/structure/toilet/prison{ + dir = 8 + }, +/obj/tether_away_spawner/spookyland, +/turf/simulated/floor/tiled/techmaint, +/area/om_adventure/poi/cabin2) +"v" = ( +/obj/structure/bed/chair/sofa/brown/left{ + dir = 8 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/om_adventure/poi/cabin2) +"w" = ( +/obj/structure/table/rack, +/obj/random/maintenance, +/turf/simulated/floor/carpet/bcarpet, +/area/om_adventure/poi/cabin2) +"x" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/browndouble, +/obj/structure/curtain/black, +/turf/simulated/floor/carpet, +/area/om_adventure/poi/cabin2) +"y" = ( +/obj/structure/table/steel, +/obj/random/material, +/turf/simulated/floor/bmarble, +/area/om_adventure/poi/cabin2) +"z" = ( +/turf/simulated/floor/outdoors/sidewalk/side, +/area/om_adventure/poi/cabin2) +"A" = ( +/obj/structure/bed/chair/sofa/brown, +/turf/simulated/floor/carpet/bcarpet, +/area/om_adventure/poi/cabin2) +"B" = ( +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/random/awayloot/looseloot, +/turf/simulated/floor/carpet/bcarpet, +/area/om_adventure/poi/cabin2) +"D" = ( +/turf/simulated/floor/wood, +/area/om_adventure/poi/cabin2) +"E" = ( +/obj/tether_away_spawner/spookyland, +/turf/simulated/floor/carpet, +/area/om_adventure/poi/cabin2) +"F" = ( +/turf/simulated/floor/outdoors/newdirt, +/area/om_adventure/poi/cabin2) +"H" = ( +/obj/structure/table/woodentable, +/obj/random/snack, +/turf/simulated/floor/carpet/bcarpet, +/area/om_adventure/poi/cabin2) +"I" = ( +/obj/structure/table/woodentable, +/obj/random/awayloot/looseloot, +/obj/random/maintenance, +/turf/simulated/floor/wood, +/area/om_adventure/poi/cabin2) +"J" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood, +/area/om_adventure/poi/cabin2) +"K" = ( +/obj/structure/bed/chair/sofa/brown/right{ + dir = 4 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/om_adventure/poi/cabin2) +"L" = ( +/obj/structure/table/woodentable, +/obj/random/maintenance, +/turf/simulated/floor/wood, +/area/om_adventure/poi/cabin2) +"M" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/om_adventure/poi/cabin2) +"N" = ( +/obj/structure/sink{ + pixel_y = 18 + }, +/turf/simulated/floor/tiled/techmaint, +/area/om_adventure/poi/cabin2) +"O" = ( +/turf/simulated/floor/bmarble, +/area/om_adventure/poi/cabin2) +"P" = ( +/obj/structure/bed/chair/sofa/brown/corner{ + dir = 1 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/om_adventure/poi/cabin2) +"Q" = ( +/turf/simulated/floor/carpet/bcarpet, +/area/om_adventure/poi/cabin2) +"S" = ( +/turf/simulated/floor/tiled/techmaint, +/area/om_adventure/poi/cabin2) +"T" = ( +/turf/simulated/floor/carpet, +/area/om_adventure/poi/cabin2) +"V" = ( +/obj/structure/table/rack, +/obj/random/awayloot/looseloot, +/obj/random/tech_supply, +/obj/random/tech_supply, +/turf/simulated/floor/bmarble, +/area/om_adventure/poi/cabin2) +"X" = ( +/obj/structure/bed/chair/sofa/corp/left, +/turf/simulated/floor/wood, +/area/om_adventure/poi/cabin2) +"Y" = ( +/obj/structure/table/woodentable, +/obj/random/awayloot/looseloot, +/obj/random/maintenance, +/obj/random/maintenance, +/turf/simulated/floor/wood, +/area/om_adventure/poi/cabin2) + +(1,1,1) = {" +a +a +a +a +a +a +a +a +F +a +a +a +a +a +a +a +a +a +"} +(2,1,1) = {" +a +k +k +M +M +k +k +a +a +a +k +k +M +M +M +k +k +a +"} +(3,1,1) = {" +a +k +P +K +Q +B +k +a +i +a +k +I +D +T +T +x +k +a +"} +(4,1,1) = {" +a +k +A +H +r +Q +M +a +z +a +M +L +D +T +E +T +M +a +"} +(5,1,1) = {" +a +k +t +v +Q +w +k +k +e +k +k +D +D +T +T +T +M +a +"} +(6,1,1) = {" +a +k +k +k +e +k +k +V +O +V +k +D +D +J +p +L +k +a +"} +(7,1,1) = {" +a +k +Y +L +D +D +k +g +c +O +k +D +D +k +k +k +k +a +"} +(8,1,1) = {" +a +M +s +n +D +D +e +O +O +O +e +D +D +e +S +S +k +a +"} +(9,1,1) = {" +a +k +X +D +D +p +k +y +q +l +k +p +L +k +N +u +k +a +"} +(10,1,1) = {" +a +k +k +M +M +k +k +k +k +k +k +k +k +k +k +k +k +a +"} +(11,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} diff --git a/maps/om_adventure/pois/cabin3.dmm b/maps/om_adventure/pois/cabin3.dmm new file mode 100644 index 0000000000..02adedf2c1 --- /dev/null +++ b/maps/om_adventure/pois/cabin3.dmm @@ -0,0 +1,161 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/simulated/wall/wood, +/area/om_adventure/poi/cabin3) +"d" = ( +/obj/structure/bonfire, +/turf/simulated/floor/outdoors/newdirt, +/area/om_adventure/poi/cabin3) +"i" = ( +/turf/template_noop, +/area/template_noop) +"k" = ( +/obj/random/awayloot/looseloot, +/turf/simulated/floor/wood, +/area/om_adventure/poi/cabin3) +"n" = ( +/turf/simulated/floor/outdoors/newdirt, +/area/om_adventure/poi/cabin3) +"r" = ( +/obj/effect/decal/remains, +/turf/simulated/floor/outdoors/newdirt, +/area/om_adventure/poi/cabin3) +"z" = ( +/turf/template_noop, +/area/om_adventure/poi/cabin3) +"M" = ( +/turf/simulated/floor/wood, +/area/om_adventure/poi/cabin3) +"S" = ( +/obj/tether_away_spawner/spookyland, +/turf/simulated/floor/wood, +/area/om_adventure/poi/cabin3) +"T" = ( +/obj/tether_away_spawner/spookyland, +/turf/template_noop, +/area/om_adventure/poi/cabin3) +"V" = ( +/obj/tether_away_spawner/spookyland, +/turf/simulated/floor/outdoors/newdirt, +/area/om_adventure/poi/cabin3) + +(1,1,1) = {" +a +a +a +a +z +z +z +a +a +a +"} +(2,1,1) = {" +a +k +M +M +z +T +z +z +M +a +"} +(3,1,1) = {" +z +z +M +M +z +z +n +k +M +a +"} +(4,1,1) = {" +z +z +n +M +M +n +n +S +M +a +"} +(5,1,1) = {" +z +T +n +n +r +n +M +M +M +a +"} +(6,1,1) = {" +z +z +n +n +n +n +a +a +a +a +"} +(7,1,1) = {" +a +M +z +n +n +n +a +i +i +i +"} +(8,1,1) = {" +z +z +k +z +n +n +a +i +i +i +"} +(9,1,1) = {" +a +M +M +z +V +n +a +i +d +i +"} +(10,1,1) = {" +a +a +a +z +z +z +a +i +i +i +"} diff --git a/maps/om_adventure/pois/camp.dmm b/maps/om_adventure/pois/camp.dmm new file mode 100644 index 0000000000..13960f3854 --- /dev/null +++ b/maps/om_adventure/pois/camp.dmm @@ -0,0 +1,258 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/template_noop, +/area/template_noop) +"n" = ( +/obj/structure/table/rack/steel, +/obj/fiftyspawner/log, +/turf/simulated/floor/outdoors/newdirt, +/area/om_adventure/poi/camp) +"x" = ( +/obj/tether_away_spawner/spookyland, +/turf/simulated/floor/outdoors/newdirt, +/area/om_adventure/poi/camp) +"y" = ( +/obj/structure/flora/tree/bigtree, +/turf/template_noop, +/area/om_adventure/poi/camp) +"z" = ( +/obj/structure/table/rack/steel, +/obj/random/awayloot/looseloot, +/turf/simulated/floor/outdoors/newdirt, +/area/om_adventure/poi/camp) +"A" = ( +/obj/structure/bonfire, +/turf/simulated/floor/outdoors/newdirt, +/area/om_adventure/poi/camp) +"H" = ( +/turf/simulated/floor/outdoors/newdirt, +/area/om_adventure/poi/camp) +"M" = ( +/turf/simulated/wall/log, +/area/om_adventure/poi/camp) +"U" = ( +/obj/structure/table/rack/steel, +/obj/item/weapon/storage/box/matches, +/turf/simulated/floor/outdoors/newdirt, +/area/om_adventure/poi/camp) + +(1,1,1) = {" +a +a +a +a +a +a +a +a +a +a +M +M +M +M +M +a +a +a +"} +(2,1,1) = {" +a +a +a +a +a +a +y +a +a +a +M +n +z +U +M +a +H +a +"} +(3,1,1) = {" +a +a +a +a +a +a +a +a +H +a +M +H +x +H +M +a +a +a +"} +(4,1,1) = {" +a +H +a +a +a +a +a +x +H +H +a +a +H +a +a +H +a +a +"} +(5,1,1) = {" +a +a +a +a +a +a +H +H +H +H +H +a +a +a +a +a +a +a +"} +(6,1,1) = {" +a +a +H +H +a +H +H +H +A +H +H +H +a +H +H +a +a +a +"} +(7,1,1) = {" +a +a +a +a +a +a +H +H +H +H +H +a +a +a +a +a +a +a +"} +(8,1,1) = {" +a +a +a +a +a +a +a +H +H +x +a +a +a +a +a +a +a +a +"} +(9,1,1) = {" +a +a +a +a +a +y +a +a +H +a +a +a +a +y +a +a +a +a +"} +(10,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(11,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} diff --git a/maps/om_adventure/pois/darkstar.dmm b/maps/om_adventure/pois/darkstar.dmm new file mode 100644 index 0000000000..a41ef6cb59 --- /dev/null +++ b/maps/om_adventure/pois/darkstar.dmm @@ -0,0 +1,93 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/template_noop, +/area/template_noop) +"e" = ( +/turf/simulated/floor/weird_things/dark, +/area/om_adventure/poi/darkstar) +"z" = ( +/mob/living/simple_mob/vore/alienanimals/space_ghost, +/turf/simulated/floor/weird_things/dark, +/area/om_adventure/poi/darkstar) + +(1,1,1) = {" +a +a +a +e +a +a +a +"} +(2,1,1) = {" +a +e +a +a +a +e +a +"} +(3,1,1) = {" +a +a +a +e +a +a +a +"} +(4,1,1) = {" +a +a +e +e +e +a +a +"} +(5,1,1) = {" +e +e +e +z +e +e +e +"} +(6,1,1) = {" +a +a +e +e +e +a +a +"} +(7,1,1) = {" +a +a +a +e +a +a +a +"} +(8,1,1) = {" +a +e +a +a +a +e +a +"} +(9,1,1) = {" +a +a +a +e +a +a +a +"} diff --git a/maps/om_adventure/pois/darktear1.dmm b/maps/om_adventure/pois/darktear1.dmm new file mode 100644 index 0000000000..224bb457bf --- /dev/null +++ b/maps/om_adventure/pois/darktear1.dmm @@ -0,0 +1,93 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/simulated/floor/weird_things/dark, +/area/om_adventure/poi/darktear1) +"I" = ( +/turf/template_noop, +/area/template_noop) +"Z" = ( +/obj/tether_away_spawner/spookyland, +/turf/simulated/floor/weird_things/dark, +/area/om_adventure/poi/darktear1) + +(1,1,1) = {" +I +I +I +I +I +I +a +"} +(2,1,1) = {" +I +I +a +I +I +a +I +"} +(3,1,1) = {" +I +I +I +I +a +a +I +"} +(4,1,1) = {" +I +I +I +a +a +a +I +"} +(5,1,1) = {" +I +I +a +Z +a +I +I +"} +(6,1,1) = {" +I +I +a +a +a +I +I +"} +(7,1,1) = {" +I +a +a +a +I +I +I +"} +(8,1,1) = {" +I +a +I +I +I +a +I +"} +(9,1,1) = {" +a +I +I +I +I +I +I +"} diff --git a/maps/om_adventure/pois/darktear2.dmm b/maps/om_adventure/pois/darktear2.dmm new file mode 100644 index 0000000000..a4932cf5cf --- /dev/null +++ b/maps/om_adventure/pois/darktear2.dmm @@ -0,0 +1,93 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/simulated/floor/weird_things/dark, +/area/om_adventure/poi/darktear2) +"Q" = ( +/obj/tether_away_spawner/spookyland, +/turf/simulated/floor/weird_things/dark, +/area/om_adventure/poi/darktear2) +"S" = ( +/turf/template_noop, +/area/template_noop) + +(1,1,1) = {" +a +S +S +S +S +S +S +"} +(2,1,1) = {" +S +a +a +S +S +a +S +"} +(3,1,1) = {" +S +Q +a +S +S +S +S +"} +(4,1,1) = {" +S +a +a +a +a +S +S +"} +(5,1,1) = {" +S +S +a +a +a +a +S +"} +(6,1,1) = {" +S +S +a +a +a +a +S +"} +(7,1,1) = {" +S +S +a +a +Q +a +S +"} +(8,1,1) = {" +S +a +S +a +a +a +S +"} +(9,1,1) = {" +S +S +S +S +S +S +a +"} diff --git a/maps/om_adventure/pois/darktear3.dmm b/maps/om_adventure/pois/darktear3.dmm new file mode 100644 index 0000000000..89a5dec553 --- /dev/null +++ b/maps/om_adventure/pois/darktear3.dmm @@ -0,0 +1,89 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/template_noop, +/area/template_noop) +"v" = ( +/turf/simulated/floor/weird_things/dark, +/area/om_adventure/poi/darktear3) +"Y" = ( +/obj/tether_away_spawner/spookyland, +/turf/simulated/floor/weird_things/dark, +/area/om_adventure/poi/darktear3) + +(1,1,1) = {" +a +a +a +a +a +a +a +a +a +"} +(2,1,1) = {" +v +a +a +a +a +a +a +a +a +"} +(3,1,1) = {" +a +v +v +v +a +a +a +a +v +"} +(4,1,1) = {" +a +a +v +v +v +v +v +v +a +"} +(5,1,1) = {" +a +a +v +v +Y +v +v +v +a +"} +(6,1,1) = {" +a +a +a +a +v +v +v +a +a +"} +(7,1,1) = {" +a +a +a +a +a +a +a +a +a +"} diff --git a/maps/om_adventure/pois/darktear4.dmm b/maps/om_adventure/pois/darktear4.dmm new file mode 100644 index 0000000000..655e97b230 --- /dev/null +++ b/maps/om_adventure/pois/darktear4.dmm @@ -0,0 +1,89 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/template_noop, +/area/template_noop) +"g" = ( +/obj/tether_away_spawner/spookyland, +/turf/simulated/floor/weird_things/dark, +/area/om_adventure/poi/darktear4) +"j" = ( +/turf/simulated/floor/weird_things/dark, +/area/om_adventure/poi/darktear4) + +(1,1,1) = {" +a +a +a +a +a +a +a +a +a +"} +(2,1,1) = {" +a +j +a +a +a +a +a +a +j +"} +(3,1,1) = {" +a +a +g +j +j +j +a +j +a +"} +(4,1,1) = {" +a +j +j +j +j +j +j +j +a +"} +(5,1,1) = {" +j +a +a +a +j +j +g +a +a +"} +(6,1,1) = {" +a +a +a +a +a +j +a +a +a +"} +(7,1,1) = {" +a +a +a +a +a +a +j +a +a +"} diff --git a/maps/om_adventure/pois/fleshtear1.dmm b/maps/om_adventure/pois/fleshtear1.dmm new file mode 100644 index 0000000000..e2a3d25f18 --- /dev/null +++ b/maps/om_adventure/pois/fleshtear1.dmm @@ -0,0 +1,166 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/template_noop, +/area/template_noop) +"b" = ( +/mob/living/simple_mob/creature, +/turf/simulated/floor/flesh{ + base_icon = 'icons/turf/stomach_vr.dmi' + }, +/area/om_adventure/poi/fleshtear1) +"K" = ( +/turf/simulated/floor/flesh{ + base_icon = 'icons/turf/stomach_vr.dmi' + }, +/area/om_adventure/poi/fleshtear1) + +(1,1,1) = {" +a +a +a +K +K +a +a +a +a +K +a +a +a +"} +(2,1,1) = {" +a +a +K +K +a +a +a +K +K +K +a +K +a +"} +(3,1,1) = {" +a +a +a +a +a +K +K +K +K +K +a +K +K +"} +(4,1,1) = {" +K +K +K +K +K +K +b +K +K +a +a +a +a +"} +(5,1,1) = {" +K +K +K +K +K +K +K +K +K +a +a +a +a +"} +(6,1,1) = {" +a +K +K +K +K +K +K +K +a +a +a +K +a +"} +(7,1,1) = {" +a +a +K +b +K +K +K +K +K +a +K +K +a +"} +(8,1,1) = {" +K +a +K +K +K +K +K +K +K +a +K +a +a +"} +(9,1,1) = {" +K +a +a +K +K +K +K +a +a +a +a +a +a +"} +(10,1,1) = {" +a +K +a +a +a +a +a +a +a +a +a +a +a +"} diff --git a/maps/om_adventure/pois/fleshtear2.dmm b/maps/om_adventure/pois/fleshtear2.dmm new file mode 100644 index 0000000000..19d435ce33 --- /dev/null +++ b/maps/om_adventure/pois/fleshtear2.dmm @@ -0,0 +1,79 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/simulated/floor/flesh{ + base_icon = 'icons/turf/stomach_vr.dmi' + }, +/area/om_adventure/poi/fleshtear2) +"B" = ( +/turf/template_noop, +/area/template_noop) +"H" = ( +/mob/living/simple_mob/creature, +/turf/simulated/floor/flesh{ + base_icon = 'icons/turf/stomach_vr.dmi' + }, +/area/om_adventure/poi/fleshtear2) + +(1,1,1) = {" +B +B +B +B +B +a +a +"} +(2,1,1) = {" +B +a +a +a +a +a +a +"} +(3,1,1) = {" +B +B +a +a +a +a +B +"} +(4,1,1) = {" +B +B +a +H +a +a +B +"} +(5,1,1) = {" +B +a +a +a +a +a +B +"} +(6,1,1) = {" +a +a +a +a +a +B +B +"} +(7,1,1) = {" +a +a +B +B +B +B +B +"} diff --git a/maps/om_adventure/pois/fleshtear3.dmm b/maps/om_adventure/pois/fleshtear3.dmm new file mode 100644 index 0000000000..1c77a34996 --- /dev/null +++ b/maps/om_adventure/pois/fleshtear3.dmm @@ -0,0 +1,115 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/template_noop, +/area/template_noop) +"M" = ( +/mob/living/simple_mob/creature, +/turf/simulated/floor/flesh{ + base_icon = 'icons/turf/stomach_vr.dmi' + }, +/area/om_adventure/poi/fleshtear3) +"Q" = ( +/turf/simulated/floor/flesh{ + base_icon = 'icons/turf/stomach_vr.dmi' + }, +/area/om_adventure/poi/fleshtear3) + +(1,1,1) = {" +a +a +Q +Q +Q +a +a +a +a +"} +(2,1,1) = {" +a +Q +a +a +Q +Q +Q +Q +a +"} +(3,1,1) = {" +Q +Q +Q +a +a +a +a +Q +a +"} +(4,1,1) = {" +Q +a +Q +Q +Q +Q +a +Q +Q +"} +(5,1,1) = {" +Q +a +Q +M +Q +Q +a +Q +Q +"} +(6,1,1) = {" +Q +a +Q +Q +Q +a +a +a +Q +"} +(7,1,1) = {" +Q +Q +a +Q +Q +Q +a +Q +Q +"} +(8,1,1) = {" +a +Q +Q +a +Q +Q +Q +Q +Q +"} +(9,1,1) = {" +a +a +Q +Q +a +Q +Q +Q +a +"} diff --git a/maps/om_adventure/pois/fleshtear4.dmm b/maps/om_adventure/pois/fleshtear4.dmm new file mode 100644 index 0000000000..077d29a8b7 --- /dev/null +++ b/maps/om_adventure/pois/fleshtear4.dmm @@ -0,0 +1,86 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/template_noop, +/area/template_noop) +"m" = ( +/turf/simulated/floor/flesh{ + base_icon = 'icons/turf/stomach_vr.dmi' + }, +/area/om_adventure/poi/fleshtear4) +"n" = ( +/mob/living/simple_mob/creature, +/turf/simulated/floor/flesh{ + base_icon = 'icons/turf/stomach_vr.dmi' + }, +/area/om_adventure/poi/fleshtear4) + +(1,1,1) = {" +m +m +a +a +a +"} +(2,1,1) = {" +a +m +m +m +a +"} +(3,1,1) = {" +a +a +n +m +a +"} +(4,1,1) = {" +a +a +a +m +m +"} +(5,1,1) = {" +a +a +m +m +m +"} +(6,1,1) = {" +a +a +m +m +m +"} +(7,1,1) = {" +a +m +m +m +a +"} +(8,1,1) = {" +a +n +m +m +a +"} +(9,1,1) = {" +m +m +a +a +a +"} +(10,1,1) = {" +m +a +a +a +a +"} diff --git a/maps/om_adventure/pois/medicalcenter.dmm b/maps/om_adventure/pois/medicalcenter.dmm new file mode 100644 index 0000000000..aea560a0af --- /dev/null +++ b/maps/om_adventure/pois/medicalcenter.dmm @@ -0,0 +1,328 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/template_noop, +/area/template_noop) +"j" = ( +/obj/machinery/door/airlock/angled_bay/standard/glass, +/turf/simulated/floor/plating/eris/under, +/area/om_adventure/poi/medicalcenter) +"k" = ( +/obj/random/pottedplant, +/turf/simulated/floor/tiled/eris/white/orangecorner, +/area/om_adventure/poi/medicalcenter) +"m" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/medical, +/obj/structure/curtain/medical, +/obj/tether_away_spawner/spookyland, +/turf/simulated/floor/tiled/eris/white/orangecorner, +/area/om_adventure/poi/medicalcenter) +"q" = ( +/turf/simulated/floor/tiled/eris/white/orangecorner, +/area/om_adventure/poi/medicalcenter) +"r" = ( +/obj/structure/salvageable/machine, +/turf/simulated/floor/tiled/eris/white/orangecorner, +/area/om_adventure/poi/medicalcenter) +"t" = ( +/obj/effect/low_wall_spawner/eris/reinforced/rphoron, +/turf/simulated/floor/plating/eris/under, +/area/om_adventure/poi/medicalcenter) +"v" = ( +/obj/structure/table/glass, +/obj/structure/salvageable/personal, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/white/orangecorner, +/area/om_adventure/poi/medicalcenter) +"y" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/white/orangecorner, +/area/om_adventure/poi/medicalcenter) +"z" = ( +/obj/structure/bed/chair/sofa/blue/left{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/white/orangecorner, +/area/om_adventure/poi/medicalcenter) +"A" = ( +/turf/simulated/wall/eris/r_wall, +/area/om_adventure/poi/medicalcenter) +"C" = ( +/obj/structure/bed/chair/sofa/blue/right, +/turf/simulated/floor/tiled/eris/white/orangecorner, +/area/om_adventure/poi/medicalcenter) +"D" = ( +/obj/structure/table/glass, +/obj/random/medical, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/white/orangecorner, +/area/om_adventure/poi/medicalcenter) +"E" = ( +/obj/structure/salvageable/computer, +/turf/simulated/floor/tiled/eris/white/orangecorner, +/area/om_adventure/poi/medicalcenter) +"G" = ( +/obj/structure/table/glass, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/white/orangecorner, +/area/om_adventure/poi/medicalcenter) +"H" = ( +/obj/structure/table/glass, +/obj/random/awayloot/looseloot, +/turf/simulated/floor/tiled/eris/white/orangecorner, +/area/om_adventure/poi/medicalcenter) +"I" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/medical, +/obj/structure/curtain/medical, +/turf/simulated/floor/tiled/eris/white/orangecorner, +/area/om_adventure/poi/medicalcenter) +"P" = ( +/obj/tether_away_spawner/spookyland, +/turf/simulated/floor/tiled/eris/white/orangecorner, +/area/om_adventure/poi/medicalcenter) +"Q" = ( +/obj/machinery/door/airlock/angled_bay/standard/glass{ + dir = 4 + }, +/turf/simulated/floor/plating/eris/under, +/area/om_adventure/poi/medicalcenter) +"T" = ( +/obj/structure/table/glass, +/obj/random/medical, +/turf/simulated/floor/tiled/eris/white/orangecorner, +/area/om_adventure/poi/medicalcenter) +"W" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/white/orangecorner, +/area/om_adventure/poi/medicalcenter) +"X" = ( +/obj/structure/table/glass, +/turf/simulated/floor/tiled/eris/white/orangecorner, +/area/om_adventure/poi/medicalcenter) +"Z" = ( +/obj/structure/bed/chair/sofa/blue/corner, +/obj/tether_away_spawner/spookyland, +/turf/simulated/floor/tiled/eris/white/orangecorner, +/area/om_adventure/poi/medicalcenter) + +(1,1,1) = {" +a +a +a +A +a +A +a +a +A +a +A +a +"} +(2,1,1) = {" +a +a +A +A +A +A +t +t +A +A +A +A +"} +(3,1,1) = {" +a +a +a +A +C +q +q +q +q +H +A +a +"} +(4,1,1) = {" +a +A +a +A +Z +z +q +q +q +T +A +a +"} +(5,1,1) = {" +A +A +A +A +A +A +k +y +q +X +A +a +"} +(6,1,1) = {" +a +A +E +G +q +A +A +A +Q +A +A +A +"} +(7,1,1) = {" +a +t +q +H +q +A +q +W +q +k +A +a +"} +(8,1,1) = {" +a +A +q +P +q +j +q +q +P +q +j +a +"} +(9,1,1) = {" +a +t +q +T +q +A +q +y +q +k +A +a +"} +(10,1,1) = {" +a +A +r +v +q +A +A +A +Q +A +A +A +"} +(11,1,1) = {" +A +A +A +A +A +A +m +D +q +I +A +a +"} +(12,1,1) = {" +a +A +a +A +k +q +q +q +q +k +A +a +"} +(13,1,1) = {" +a +a +a +A +H +I +H +I +T +I +A +a +"} +(14,1,1) = {" +a +a +A +A +A +A +t +t +A +A +A +A +"} +(15,1,1) = {" +a +a +a +A +a +A +a +a +A +a +A +a +"} diff --git a/maps/om_adventure/pois/shippart1.dmm b/maps/om_adventure/pois/shippart1.dmm new file mode 100644 index 0000000000..7d2831eade --- /dev/null +++ b/maps/om_adventure/pois/shippart1.dmm @@ -0,0 +1,396 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/template_noop, +/area/template_noop) +"b" = ( +/turf/simulated/floor/tiled/eris/dark/techfloor, +/area/om_adventure/poi/shippart1) +"d" = ( +/obj/random/awayloot/looseloot, +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/om_adventure/poi/shippart1) +"g" = ( +/turf/simulated/wall/eris/r_wall, +/area/om_adventure/poi/shippart1) +"h" = ( +/obj/random/awayloot/looseloot, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating/eris/under, +/area/om_adventure/poi/shippart1) +"j" = ( +/obj/tether_away_spawner/spookyland, +/turf/template_noop, +/area/template_noop) +"p" = ( +/obj/random/awayloot/looseloot, +/turf/simulated/floor/plating/eris/under, +/area/om_adventure/poi/shippart1) +"q" = ( +/obj/tether_away_spawner/spookyland, +/turf/simulated/floor/tiled/eris/dark/techfloor, +/area/om_adventure/poi/shippart1) +"r" = ( +/obj/item/weapon/material/shard, +/turf/template_noop, +/area/template_noop) +"s" = ( +/obj/random/tech_supply/component, +/turf/simulated/floor/tiled/eris/dark/techfloor, +/area/om_adventure/poi/shippart1) +"t" = ( +/obj/structure/frame/computer, +/obj/random/tech_supply/component, +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/om_adventure/poi/shippart1) +"v" = ( +/obj/effect/floor_decal/rust, +/obj/random/tech_supply/component, +/turf/simulated/floor/plating/eris/under, +/area/om_adventure/poi/shippart1) +"w" = ( +/obj/effect/decal/remains/tajaran, +/turf/template_noop, +/area/template_noop) +"D" = ( +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/om_adventure/poi/shippart1) +"F" = ( +/turf/simulated/floor/weird_things/dark, +/area/om_adventure/poi/shippart1) +"I" = ( +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating/eris/under, +/area/om_adventure/poi/shippart1) +"J" = ( +/obj/structure/salvageable/bliss, +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/om_adventure/poi/shippart1) +"M" = ( +/obj/item/weapon/material/shard, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating/eris/under, +/area/om_adventure/poi/shippart1) +"O" = ( +/obj/effect/decal/remains/ribcage, +/turf/template_noop, +/area/template_noop) +"Q" = ( +/obj/item/weapon/material/shard, +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/om_adventure/poi/shippart1) +"R" = ( +/obj/random/tech_supply/component, +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/om_adventure/poi/shippart1) +"T" = ( +/obj/item/weapon/material/shard/shrapnel, +/turf/simulated/floor/weird_things/dark, +/area/om_adventure/poi/shippart1) +"X" = ( +/obj/item/weapon/material/shard/shrapnel, +/turf/template_noop, +/area/template_noop) +"Z" = ( +/obj/effect/decal/remains/deer, +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/om_adventure/poi/shippart1) + +(1,1,1) = {" +a +a +a +a +a +a +F +a +a +a +F +a +a +a +a +a +a +a +a +a +a +"} +(2,1,1) = {" +a +a +a +a +a +F +j +a +X +a +a +a +a +a +a +a +a +a +a +a +a +"} +(3,1,1) = {" +a +a +a +a +X +a +a +F +a +a +X +a +F +a +a +a +a +a +a +a +a +"} +(4,1,1) = {" +a +a +a +w +a +F +F +g +g +v +g +a +r +j +a +F +a +a +a +a +a +"} +(5,1,1) = {" +X +a +X +a +F +g +g +g +t +I +p +F +F +F +F +a +a +a +a +a +a +"} +(6,1,1) = {" +a +a +F +g +M +g +d +D +Z +D +I +I +F +F +F +F +F +a +a +F +F +"} +(7,1,1) = {" +a +F +T +M +t +b +q +s +b +b +b +I +I +F +F +F +F +F +a +a +a +"} +(8,1,1) = {" +a +r +F +g +I +g +R +Q +d +D +M +v +F +F +F +F +F +a +a +a +a +"} +(9,1,1) = {" +a +a +a +a +F +g +g +g +J +I +h +D +I +I +F +a +a +a +a +a +F +"} +(10,1,1) = {" +a +a +j +T +a +F +F +g +g +I +g +g +g +g +a +a +F +F +F +a +a +"} +(11,1,1) = {" +a +X +a +a +X +a +a +a +a +a +T +a +a +a +j +a +a +a +a +a +a +"} +(12,1,1) = {" +a +a +a +a +a +a +a +a +X +a +a +a +O +a +a +a +a +a +a +a +a +"} +(13,1,1) = {" +a +a +a +a +a +a +F +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} diff --git a/maps/om_adventure/pois/shuttlewreck1.dmm b/maps/om_adventure/pois/shuttlewreck1.dmm new file mode 100644 index 0000000000..c57959fc95 --- /dev/null +++ b/maps/om_adventure/pois/shuttlewreck1.dmm @@ -0,0 +1,152 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/template_noop, +/area/template_noop) +"e" = ( +/turf/simulated/floor/weird_things/dark, +/area/om_adventure/poi/shuttlewreck1) +"g" = ( +/obj/random/tech_supply/component, +/turf/simulated/floor/weird_things/dark, +/area/om_adventure/poi/shuttlewreck1) +"i" = ( +/obj/machinery/door/airlock/external, +/turf/simulated/shuttle/floor/white, +/area/om_adventure/poi/shuttlewreck1) +"m" = ( +/obj/structure/bed/chair/bay/shuttle{ + dir = 1 + }, +/turf/simulated/shuttle/floor/white, +/area/om_adventure/poi/shuttlewreck1) +"s" = ( +/obj/structure/shuttle/window, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/om_adventure/poi/shuttlewreck1) +"t" = ( +/obj/tether_away_spawner/spookyland, +/turf/simulated/floor/weird_things/dark, +/area/om_adventure/poi/shuttlewreck1) +"v" = ( +/obj/random/tech_supply/component, +/turf/template_noop, +/area/template_noop) +"D" = ( +/obj/structure/shuttle/engine/propulsion, +/turf/simulated/floor/plating, +/area/om_adventure/poi/shuttlewreck1) +"M" = ( +/turf/simulated/shuttle/wall, +/area/om_adventure/poi/shuttlewreck1) +"P" = ( +/obj/structure/bed/chair/bay/shuttle{ + dir = 1 + }, +/obj/random/awayloot/looseloot, +/turf/simulated/shuttle/floor/white, +/area/om_adventure/poi/shuttlewreck1) +"W" = ( +/obj/random/tech_supply, +/turf/template_noop, +/area/template_noop) + +(1,1,1) = {" +a +a +a +a +a +a +W +a +a +"} +(2,1,1) = {" +a +a +a +e +a +a +a +e +a +"} +(3,1,1) = {" +e +t +e +g +a +e +a +a +a +"} +(4,1,1) = {" +a +e +M +M +M +M +D +g +a +"} +(5,1,1) = {" +e +e +s +P +m +i +e +e +e +"} +(6,1,1) = {" +a +e +M +M +M +M +D +t +a +"} +(7,1,1) = {" +a +e +e +e +a +e +v +a +a +"} +(8,1,1) = {" +a +a +a +a +a +a +a +a +a +"} +(9,1,1) = {" +a +a +a +a +a +a +a +a +a +"} diff --git a/maps/om_adventure/pois/shuttlewreck2.dmm b/maps/om_adventure/pois/shuttlewreck2.dmm new file mode 100644 index 0000000000..c741ee7055 --- /dev/null +++ b/maps/om_adventure/pois/shuttlewreck2.dmm @@ -0,0 +1,330 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/template_noop, +/area/template_noop) +"c" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/light{ + dir = 8 + }, +/obj/random/tech_supply/component, +/obj/random/tech_supply, +/turf/simulated/shuttle/floor/white, +/area/om_adventure/poi/shuttlewreck2) +"e" = ( +/obj/machinery/atmospherics/portables_connector/fuel{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/phoron{ + start_pressure = 0 + }, +/turf/simulated/floor/plating, +/area/om_adventure/poi/shuttlewreck2) +"g" = ( +/obj/structure/cable/green{ + icon_state = "4-10" + }, +/turf/simulated/floor/plating, +/area/om_adventure/poi/shuttlewreck2) +"h" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 10 + }, +/turf/simulated/shuttle/wall, +/area/om_adventure/poi/shuttlewreck2) +"l" = ( +/obj/structure/window/reinforced, +/obj/structure/shuttle/engine/heater{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/om_adventure/poi/shuttlewreck2) +"m" = ( +/turf/simulated/floor/plating, +/area/om_adventure/poi/shuttlewreck2) +"n" = ( +/obj/structure/table/steel_reinforced, +/obj/random/awayloot/looseloot, +/turf/simulated/shuttle/floor/white, +/area/om_adventure/poi/shuttlewreck2) +"o" = ( +/obj/structure/frame/computer, +/turf/simulated/shuttle/floor/white, +/area/om_adventure/poi/shuttlewreck2) +"p" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/light{ + dir = 4 + }, +/obj/random/tech_supply, +/obj/random/awayloot/looseloot, +/turf/simulated/shuttle/floor/white, +/area/om_adventure/poi/shuttlewreck2) +"q" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/shuttle/floor/white, +/area/om_adventure/poi/shuttlewreck2) +"r" = ( +/obj/structure/shuttle/engine/propulsion, +/turf/simulated/floor/plating, +/area/om_adventure/poi/shuttlewreck2) +"s" = ( +/obj/machinery/door/airlock/external, +/turf/simulated/floor/plating, +/area/om_adventure/poi/shuttlewreck2) +"v" = ( +/obj/structure/cable/green, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/shuttle/floor/white, +/area/om_adventure/poi/shuttlewreck2) +"w" = ( +/obj/tether_away_spawner/spookyland, +/turf/template_noop, +/area/template_noop) +"x" = ( +/obj/machinery/power/port_gen/pacman, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/om_adventure/poi/shuttlewreck2) +"y" = ( +/turf/simulated/shuttle/wall/hard_corner, +/area/om_adventure/poi/shuttlewreck2) +"A" = ( +/turf/simulated/shuttle/wall, +/area/om_adventure/poi/shuttlewreck2) +"B" = ( +/obj/structure/table/steel_reinforced, +/obj/random/tech_supply/component, +/obj/random/awayloot/looseloot, +/turf/simulated/shuttle/floor/white, +/area/om_adventure/poi/shuttlewreck2) +"D" = ( +/obj/structure/cable/green{ + icon_state = "2-5" + }, +/turf/simulated/shuttle/floor/white, +/area/om_adventure/poi/shuttlewreck2) +"E" = ( +/obj/structure/table/rack/steel, +/obj/random/tech_supply/component, +/obj/random/tech_supply/component, +/obj/random/tech_supply/component, +/obj/random/tech_supply/component, +/obj/random/tech_supply/component, +/obj/random/tech_supply, +/obj/random/tech_supply, +/turf/simulated/floor/plating, +/area/om_adventure/poi/shuttlewreck2) +"J" = ( +/obj/structure/table/rack/steel, +/obj/item/frame/apc, +/turf/simulated/floor/plating, +/area/om_adventure/poi/shuttlewreck2) +"K" = ( +/obj/structure/table/rack/steel, +/obj/item/weapon/tank/phoron, +/obj/random/awayloot/looseloot, +/turf/simulated/floor/plating, +/area/om_adventure/poi/shuttlewreck2) +"N" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 6 + }, +/turf/simulated/shuttle/wall, +/area/om_adventure/poi/shuttlewreck2) +"P" = ( +/turf/simulated/shuttle/floor/white, +/area/om_adventure/poi/shuttlewreck2) +"R" = ( +/obj/machinery/atmospherics/portables_connector/fuel{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/phoron{ + start_pressure = 0 + }, +/turf/simulated/floor/plating, +/area/om_adventure/poi/shuttlewreck2) +"T" = ( +/obj/structure/shuttle/window, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/om_adventure/poi/shuttlewreck2) +"U" = ( +/turf/simulated/floor/weird_things/dark, +/area/om_adventure/poi/shuttlewreck2) +"V" = ( +/obj/structure/bed/chair/bay/shuttle{ + dir = 1 + }, +/turf/simulated/shuttle/floor/white, +/area/om_adventure/poi/shuttlewreck2) +"W" = ( +/obj/structure/shuttle/engine/heater{ + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/om_adventure/poi/shuttlewreck2) + +(1,1,1) = {" +a +a +a +a +a +a +U +a +a +a +"} +(2,1,1) = {" +a +w +U +A +A +A +N +A +A +a +"} +(3,1,1) = {" +a +a +A +A +K +E +e +W +r +a +"} +(4,1,1) = {" +a +A +A +P +m +m +m +W +r +a +"} +(5,1,1) = {" +U +A +c +n +P +P +q +y +A +a +"} +(6,1,1) = {" +a +T +o +P +P +P +A +A +a +a +"} +(7,1,1) = {" +a +T +o +V +P +P +s +a +a +a +"} +(8,1,1) = {" +a +T +o +P +P +P +A +A +U +a +"} +(9,1,1) = {" +a +A +p +B +P +D +v +y +A +a +"} +(10,1,1) = {" +U +A +A +P +g +m +m +l +r +a +"} +(11,1,1) = {" +a +U +A +A +x +J +R +l +r +a +"} +(12,1,1) = {" +a +a +a +A +A +A +h +A +A +a +"} +(13,1,1) = {" +a +a +a +a +U +a +a +a +w +a +"} diff --git a/maps/om_adventure/pois/shuttlewreck3.dmm b/maps/om_adventure/pois/shuttlewreck3.dmm new file mode 100644 index 0000000000..005ceb21c9 --- /dev/null +++ b/maps/om_adventure/pois/shuttlewreck3.dmm @@ -0,0 +1,210 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/template_noop, +/area/template_noop) +"c" = ( +/obj/random/awayloot/looseloot, +/turf/simulated/floor/weird_things/dark, +/area/om_adventure/poi/shuttlewreck3) +"f" = ( +/obj/random/tech_supply, +/turf/template_noop, +/area/template_noop) +"h" = ( +/turf/simulated/floor/weird_things/dark, +/area/om_adventure/poi/shuttlewreck3) +"k" = ( +/turf/simulated/shuttle/wall, +/area/om_adventure/poi/shuttlewreck3) +"m" = ( +/obj/item/weapon/material/shard/shrapnel, +/turf/template_noop, +/area/template_noop) +"p" = ( +/obj/item/weapon/material/shard/shrapnel, +/turf/simulated/floor/weird_things/dark, +/area/om_adventure/poi/shuttlewreck3) +"u" = ( +/obj/item/weapon/material/shard/shrapnel, +/obj/random/awayloot/looseloot, +/turf/simulated/shuttle/floor/white, +/area/om_adventure/poi/shuttlewreck3) +"x" = ( +/obj/structure/door_assembly/door_assembly_ext, +/turf/simulated/floor/plating, +/area/om_adventure/poi/shuttlewreck3) +"D" = ( +/obj/random/tech_supply, +/turf/simulated/floor/plating, +/area/om_adventure/poi/shuttlewreck3) +"F" = ( +/obj/structure/grille/broken, +/obj/item/weapon/material/shard, +/turf/simulated/floor/plating, +/area/om_adventure/poi/shuttlewreck3) +"H" = ( +/obj/random/tech_supply/component, +/turf/simulated/floor/weird_things/dark, +/area/om_adventure/poi/shuttlewreck3) +"I" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/om_adventure/poi/shuttlewreck3) +"K" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 1 + }, +/turf/simulated/floor/weird_things/dark, +/area/om_adventure/poi/shuttlewreck3) +"Q" = ( +/obj/item/weapon/material/shard/shrapnel, +/obj/effect/gibspawner/human, +/obj/random/contraband/nofail, +/turf/simulated/shuttle/floor/white, +/area/om_adventure/poi/shuttlewreck3) +"S" = ( +/obj/random/contraband/nofail, +/turf/simulated/floor/weird_things/dark, +/area/om_adventure/poi/shuttlewreck3) +"Z" = ( +/obj/tether_away_spawner/spookyland, +/turf/simulated/floor/weird_things/dark, +/area/om_adventure/poi/shuttlewreck3) + +(1,1,1) = {" +a +a +a +h +a +a +a +"} +(2,1,1) = {" +h +a +a +h +a +a +h +"} +(3,1,1) = {" +K +a +h +h +h +a +a +"} +(4,1,1) = {" +h +a +h +h +h +f +a +"} +(5,1,1) = {" +a +h +S +h +H +a +a +"} +(6,1,1) = {" +a +a +c +h +h +a +a +"} +(7,1,1) = {" +m +h +Z +h +h +h +a +"} +(8,1,1) = {" +a +H +D +h +I +a +a +"} +(9,1,1) = {" +a +h +k +x +k +h +a +"} +(10,1,1) = {" +a +h +k +u +k +h +a +"} +(11,1,1) = {" +a +h +k +Q +k +H +m +"} +(12,1,1) = {" +a +h +k +F +k +h +a +"} +(13,1,1) = {" +a +h +p +h +p +a +h +"} +(14,1,1) = {" +a +a +a +Z +a +a +a +"} +(15,1,1) = {" +a +h +a +a +a +a +a +"} diff --git a/maps/om_adventure/pois/shuttlewreck4.dmm b/maps/om_adventure/pois/shuttlewreck4.dmm new file mode 100644 index 0000000000..28fc4367d9 --- /dev/null +++ b/maps/om_adventure/pois/shuttlewreck4.dmm @@ -0,0 +1,392 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/simulated/floor/weird_things/dark, +/area/om_adventure/poi/shuttlewreck4) +"e" = ( +/obj/random/tech_supply/component, +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/om_adventure/poi/shuttlewreck4) +"g" = ( +/obj/item/frame/apc, +/turf/template_noop, +/area/template_noop) +"h" = ( +/obj/random/tech_supply/component, +/turf/template_noop, +/area/template_noop) +"j" = ( +/turf/template_noop, +/area/template_noop) +"o" = ( +/obj/tether_away_spawner/spookyland, +/turf/simulated/floor/weird_things/dark, +/area/om_adventure/poi/shuttlewreck4) +"p" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/om_adventure/poi/shuttlewreck4) +"q" = ( +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/om_adventure/poi/shuttlewreck4) +"t" = ( +/obj/structure/bed/chair/bay/shuttle{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/om_adventure/poi/shuttlewreck4) +"u" = ( +/obj/structure/shuttle/engine/propulsion, +/turf/simulated/floor/plating/eris/airless, +/area/om_adventure/poi/shuttlewreck4) +"v" = ( +/turf/simulated/wall/eris/r_wall, +/area/om_adventure/poi/shuttlewreck4) +"x" = ( +/turf/simulated/floor/plating/eris/airless, +/area/om_adventure/poi/shuttlewreck4) +"y" = ( +/obj/structure/bed/chair/bay/shuttle{ + dir = 4 + }, +/obj/random/tech_supply/component, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/om_adventure/poi/shuttlewreck4) +"C" = ( +/obj/structure/bed/chair/bay/shuttle{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/om_adventure/poi/shuttlewreck4) +"D" = ( +/obj/structure/bed/chair/bay/shuttle{ + dir = 1 + }, +/obj/random/tech_supply, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/om_adventure/poi/shuttlewreck4) +"H" = ( +/obj/random/tech_supply/component, +/turf/simulated/floor/weird_things/dark, +/area/om_adventure/poi/shuttlewreck4) +"I" = ( +/obj/structure/bed/chair/bay/shuttle{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/om_adventure/poi/shuttlewreck4) +"J" = ( +/obj/machinery/door/blast/multi_tile/three_tile_ver{ + density = 0; + icon_state = "open"; + opacity = 0 + }, +/turf/simulated/floor/plating/eris/airless, +/area/om_adventure/poi/shuttlewreck4) +"K" = ( +/obj/tether_away_spawner/spookyland, +/turf/template_noop, +/area/template_noop) +"M" = ( +/obj/structure/low_wall/eris/reinforced, +/obj/structure/window/eris, +/turf/simulated/floor/plating, +/area/om_adventure/poi/shuttlewreck4) +"O" = ( +/obj/random/tech_supply, +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/om_adventure/poi/shuttlewreck4) +"P" = ( +/obj/structure/frame/computer, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/om_adventure/poi/shuttlewreck4) +"S" = ( +/obj/structure/bed/chair/bay/shuttle{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/om_adventure/poi/shuttlewreck4) +"T" = ( +/obj/random/awayloot/looseloot, +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/om_adventure/poi/shuttlewreck4) +"V" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/random/awayloot/looseloot, +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/om_adventure/poi/shuttlewreck4) +"X" = ( +/obj/structure/bed/chair/bay/shuttle, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/om_adventure/poi/shuttlewreck4) +"Y" = ( +/obj/structure/bed/chair/bay/shuttle{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/om_adventure/poi/shuttlewreck4) + +(1,1,1) = {" +j +j +j +j +j +j +j +j +a +j +j +j +H +j +a +"} +(2,1,1) = {" +j +a +a +j +j +a +j +h +j +j +j +j +j +a +j +"} +(3,1,1) = {" +j +j +j +o +a +g +a +a +a +j +o +a +a +v +j +"} +(4,1,1) = {" +j +j +j +h +a +a +a +a +a +a +H +H +v +v +j +"} +(5,1,1) = {" +j +j +j +v +v +x +x +J +v +v +a +v +v +u +j +"} +(6,1,1) = {" +j +a +a +v +V +q +e +q +O +v +M +v +v +v +j +"} +(7,1,1) = {" +o +v +M +M +q +I +I +I +q +t +Y +y +v +j +j +"} +(8,1,1) = {" +j +M +P +C +q +D +v +X +q +q +T +q +M +j +j +"} +(9,1,1) = {" +a +v +M +M +e +Y +Y +Y +q +S +I +I +v +j +j +"} +(10,1,1) = {" +j +j +j +v +p +q +q +q +e +v +M +v +v +v +j +"} +(11,1,1) = {" +j +j +j +v +v +x +x +J +v +v +j +v +v +u +j +"} +(12,1,1) = {" +j +j +j +j +j +j +j +j +j +j +j +j +v +v +j +"} +(13,1,1) = {" +j +j +j +j +j +j +j +j +j +j +j +j +j +v +j +"} +(14,1,1) = {" +j +j +j +j +j +j +j +j +j +j +j +K +j +j +j +"} +(15,1,1) = {" +j +j +j +j +j +j +j +j +j +j +j +j +j +j +j +"} diff --git a/maps/om_adventure/pois/woodentemple.dmm b/maps/om_adventure/pois/woodentemple.dmm new file mode 100644 index 0000000000..4a6dd94d5f --- /dev/null +++ b/maps/om_adventure/pois/woodentemple.dmm @@ -0,0 +1,533 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/template_noop, +/area/template_noop) +"b" = ( +/obj/structure/bed/chair/sofa/pew/right{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/om_adventure/poi/woodentemple) +"c" = ( +/obj/tether_away_spawner/spookyland, +/turf/simulated/floor/wmarble, +/area/om_adventure/poi/woodentemple) +"d" = ( +/turf/simulated/floor/wood, +/area/om_adventure/poi/woodentemple) +"e" = ( +/obj/tether_away_spawner/spookyland, +/turf/simulated/floor/outdoors/grass, +/area/om_adventure/poi/woodentemple) +"f" = ( +/obj/item/weapon/material/shard/shrapnel, +/turf/simulated/floor, +/area/om_adventure/poi/woodentemple) +"g" = ( +/obj/tether_away_spawner/spookyland, +/turf/simulated/floor/wood, +/area/om_adventure/poi/woodentemple) +"j" = ( +/obj/item/weapon/material/shard/shrapnel, +/turf/simulated/floor/wood, +/area/om_adventure/poi/woodentemple) +"k" = ( +/obj/structure/bed/pod, +/turf/simulated/floor/wood, +/area/om_adventure/poi/woodentemple) +"m" = ( +/obj/structure/bed/chair/sofa/pew/right{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/om_adventure/poi/woodentemple) +"o" = ( +/obj/structure/table/rack/steel, +/obj/random/awayloot/looseloot, +/turf/simulated/floor/wmarble, +/area/om_adventure/poi/woodentemple) +"r" = ( +/turf/simulated/floor/outdoors/grass, +/area/om_adventure/poi/woodentemple) +"s" = ( +/obj/structure/table/woodentable, +/obj/item/trash/candle, +/turf/simulated/floor/wood, +/area/om_adventure/poi/woodentemple) +"v" = ( +/obj/structure/table/woodentable, +/obj/random/maintenance, +/turf/simulated/floor/wood, +/area/om_adventure/poi/woodentemple) +"w" = ( +/obj/structure/bed/chair/sofa/pew/left, +/turf/simulated/floor/wood, +/area/om_adventure/poi/woodentemple) +"x" = ( +/obj/structure/curtain/black{ + anchored = 1; + icon_state = "open"; + opacity = 0 + }, +/turf/simulated/floor/wood, +/area/om_adventure/poi/woodentemple) +"A" = ( +/obj/structure/curtain/black{ + anchored = 1 + }, +/turf/simulated/floor/wood, +/area/om_adventure/poi/woodentemple) +"C" = ( +/obj/item/weapon/material/shard, +/turf/simulated/floor/wood, +/area/om_adventure/poi/woodentemple) +"E" = ( +/obj/structure/table/woodentable, +/obj/random/awayloot/looseloot, +/turf/simulated/floor/wood, +/area/om_adventure/poi/woodentemple) +"F" = ( +/obj/structure/bed/chair/sofa/pew/right, +/turf/simulated/floor/wood, +/area/om_adventure/poi/woodentemple) +"G" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/wmarble, +/area/om_adventure/poi/woodentemple) +"H" = ( +/turf/simulated/floor/wmarble, +/area/om_adventure/poi/woodentemple) +"J" = ( +/obj/structure/table/woodentable, +/obj/random/awayloot/looseloot, +/obj/item/trash/candle, +/turf/simulated/floor/wood, +/area/om_adventure/poi/woodentemple) +"K" = ( +/obj/structure/table/rack/steel, +/obj/random/awayloot/looseloot, +/turf/simulated/floor/wood, +/area/om_adventure/poi/woodentemple) +"M" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood, +/area/om_adventure/poi/woodentemple) +"N" = ( +/obj/structure/bed/chair/sofa/pew/left{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/om_adventure/poi/woodentemple) +"Q" = ( +/obj/structure/flora/pottedplant/orientaltree, +/turf/simulated/floor/wood, +/area/om_adventure/poi/woodentemple) +"R" = ( +/turf/simulated/floor/carpet, +/area/om_adventure/poi/woodentemple) +"S" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor, +/area/om_adventure/poi/woodentemple) +"U" = ( +/obj/structure/bed/chair/sofa/pew/left{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/om_adventure/poi/woodentemple) +"Z" = ( +/turf/simulated/wall/hardwood, +/area/om_adventure/poi/woodentemple) + +(1,1,1) = {" +a +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +a +a +a +"} +(2,1,1) = {" +r +r +Z +r +r +r +r +r +r +r +r +r +r +r +r +r +Z +r +r +a +a +"} +(3,1,1) = {" +r +Z +Z +Z +Z +S +f +S +Z +Z +Z +S +S +S +Z +Z +Z +Z +r +r +a +"} +(4,1,1) = {" +r +r +Z +J +v +d +C +j +d +A +d +m +N +Q +J +v +Z +r +r +r +a +"} +(5,1,1) = {" +r +r +S +Q +d +j +g +d +d +x +d +d +d +g +d +d +S +r +r +r +r +"} +(6,1,1) = {" +r +r +S +w +d +d +d +C +d +A +d +d +d +d +K +K +Z +r +Z +r +r +"} +(7,1,1) = {" +r +r +S +F +d +d +Z +Z +G +Z +Z +d +R +d +Z +Z +Z +Z +Z +Z +r +"} +(8,1,1) = {" +r +r +Z +M +d +d +S +r +r +r +S +R +R +R +Z +o +H +H +Z +r +r +"} +(9,1,1) = {" +r +r +Z +E +g +d +S +r +e +r +S +R +R +R +G +H +c +H +G +r +r +"} +(10,1,1) = {" +r +r +Z +v +d +d +S +r +r +r +S +R +R +R +Z +o +H +H +Z +r +r +"} +(11,1,1) = {" +r +r +S +w +d +d +Z +Z +G +Z +Z +d +R +d +Z +Z +Z +Z +Z +Z +r +"} +(12,1,1) = {" +r +r +S +F +d +d +d +d +d +A +d +d +d +d +d +d +Z +r +Z +r +r +"} +(13,1,1) = {" +r +r +S +Q +d +d +d +g +d +x +d +g +d +d +d +s +S +r +r +r +r +"} +(14,1,1) = {" +r +r +Z +s +E +k +k +k +d +A +d +U +b +Q +v +E +Z +r +r +r +a +"} +(15,1,1) = {" +r +Z +Z +Z +Z +S +S +S +Z +Z +Z +S +S +S +Z +Z +Z +Z +r +r +a +"} +(16,1,1) = {" +r +r +Z +r +r +r +r +r +r +r +r +r +r +r +r +r +Z +r +r +a +a +"} +(17,1,1) = {" +a +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +r +a +a +a +"} diff --git a/maps/overmap/example_sector2.dmm b/maps/overmap/example_sector2.dmm index 16ee3cc6a9..e84bc1e9da 100644 --- a/maps/overmap/example_sector2.dmm +++ b/maps/overmap/example_sector2.dmm @@ -110,7 +110,7 @@ "cf" = (/obj/item/clothing/mask/facehugger{icon_state = "facehugger_dead"; stat = 2},/turf/simulated/floor,/area/mine/abandoned) "cg" = (/obj/effect/alien/weeds{icon_state = "weeds"},/turf/simulated/floor/airless{icon_state = "floorscorched1"},/area/mine/abandoned) "ch" = (/obj/effect/decal/remains/human,/turf/simulated/floor{icon_state = "green"; dir = 8},/area/mine/abandoned) -"ci" = (/obj/effect/alien/resin,/turf/simulated/floor/airless{icon_state = "floorgrime"},/area/mine/abandoned) +"ci" = (/obj/item/stack/material/resin,/turf/simulated/floor/airless{icon_state = "floorgrime"},/area/mine/abandoned) "cj" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/mine/abandoned) "ck" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/mine/abandoned) "cl" = (/obj/effect/alien/weeds{icon_state = "weeds2"},/obj/item/clothing/mask/facehugger{icon_state = "facehugger_dead"; stat = 2},/turf/simulated/floor/airless{icon_state = "damaged5"},/area/mine/abandoned) diff --git a/maps/southern_cross/loadout/loadout_accessories.dm b/maps/southern_cross/loadout/loadout_accessories.dm index 94a79b3cf2..3febe42b2e 100644 --- a/maps/southern_cross/loadout/loadout_accessories.dm +++ b/maps/southern_cross/loadout/loadout_accessories.dm @@ -1,32 +1,32 @@ /datum/gear/accessory/brown_vest display_name = "webbing, brown" path = /obj/item/clothing/accessory/storage/brown_vest - allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor","Search and Rescue","Explorer","Shaft Miner") + allowed_roles = list("Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor","Search and Rescue","Explorer","Shaft Miner") /datum/gear/accessory/black_vest display_name = "webbing, black" path = /obj/item/clothing/accessory/storage/black_vest - allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor","Search and Rescue","Explorer","Shaft Miner") + allowed_roles = list("Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor","Search and Rescue","Explorer","Shaft Miner") /datum/gear/accessory/white_vest display_name = "webbing, white" path = /obj/item/clothing/accessory/storage/white_vest - allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor","Search and Rescue","Explorer","Shaft Miner") + allowed_roles = list("Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor","Search and Rescue","Explorer","Shaft Miner") /datum/gear/accessory/brown_drop_pouches display_name = "drop pouches, brown" path = /obj/item/clothing/accessory/storage/brown_drop_pouches - allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor","Search and Rescue","Explorer","Shaft Miner") + allowed_roles = list("Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor","Search and Rescue","Explorer","Shaft Miner") /datum/gear/accessory/black_drop_pouches display_name = "drop pouches, black" path = /obj/item/clothing/accessory/storage/black_drop_pouches - allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor","Search and Rescue","Explorer","Shaft Miner") + allowed_roles = list("Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor","Search and Rescue","Explorer","Shaft Miner") /datum/gear/accessory/white_drop_pouches display_name = "drop pouches, white" path = /obj/item/clothing/accessory/storage/white_drop_pouches - allowed_roles = list("Station Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor","Search and Rescue","Explorer","Shaft Miner") + allowed_roles = list("Engineer","Atmospheric Technician","Chief Engineer","Security Officer","Detective","Head of Security","Warden","Paramedic","Chief Medical Officer","Medical Doctor","Search and Rescue","Explorer","Shaft Miner") /datum/gear/accessory/holster display_name = "holster selection (Security, CD, HoP)" diff --git a/maps/southern_cross/loadout/loadout_vr.dm b/maps/southern_cross/loadout/loadout_vr.dm index db62b7394b..45b886e8b4 100644 --- a/maps/southern_cross/loadout/loadout_vr.dm +++ b/maps/southern_cross/loadout/loadout_vr.dm @@ -9,6 +9,11 @@ allowed_roles = list("Pilot") /datum/gear/head/pilot/talon - display_name = "helmet, Talon pilot (Pilot)" + display_name = "helmet, talon pilot (Pilot)" path = /obj/item/clothing/head/pilot_vr/talon + allowed_roles = list("Pilot") + +/datum/gear/head/pilot/mbill + display_name = "helmet, major bill's (Pilot)" + path = /obj/item/clothing/head/pilot_vr/mbill allowed_roles = list("Pilot") \ No newline at end of file diff --git a/maps/southern_cross/southern_cross-1.dmm b/maps/southern_cross/southern_cross-1.dmm index bf678b0380..96d7089303 100644 --- a/maps/southern_cross/southern_cross-1.dmm +++ b/maps/southern_cross/southern_cross-1.dmm @@ -22195,7 +22195,6 @@ dir = 4 }, /obj/structure/extinguisher_cabinet{ - pixel_x = 0; pixel_y = 30 }, /turf/simulated/floor/tiled, @@ -22817,8 +22816,7 @@ /obj/machinery/door/firedoor/border_only, /obj/machinery/door/airlock/security{ name = "Security Checkpoint"; - req_access = list(1); - req_one_access = list(1) + req_access = list(1) }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -30036,7 +30034,6 @@ "beW" = ( /obj/machinery/computer/security/telescreen{ desc = "Big Brother is watching."; - layer = 3.4; name = "Brig Monitor"; network = list("Prison"); pixel_y = 28 @@ -39664,8 +39661,7 @@ "bvS" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/glass_medical{ - name = "Medical Hardsuits"; - req_one_access = list(5) + name = "Medical Hardsuits" }, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) @@ -47185,6 +47181,7 @@ icon_state = "frame"; pixel_y = -32 }, +/obj/item/tabloid, /turf/simulated/floor/wood, /area/rnd/research) "bIY" = ( @@ -47583,8 +47580,7 @@ "bJN" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/glass_engineering{ - name = "Engineering Hallway"; - req_one_access = list(10) + name = "Engineering Hallway" }, /turf/simulated/floor/tiled/steel_grid, /area/engineering/hallway/atmos_hallway) @@ -47598,8 +47594,7 @@ "bJP" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/glass_engineering{ - name = "Engineering Hallway"; - req_one_access = list(10) + name = "Engineering Hallway" }, /obj/structure/cable/green{ d1 = 1; @@ -49546,8 +49541,7 @@ "bNi" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/glass_engineering{ - name = "Engineering Hallway"; - req_one_access = list(10) + name = "Engineering Hallway" }, /turf/simulated/floor/tiled/steel_grid, /area/engineering/hallway/engineer_hallway) @@ -50504,8 +50498,7 @@ "bOW" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/glass_engineering{ - name = "Engineering Hallway"; - req_one_access = list(10) + name = "Engineering Hallway" }, /obj/structure/disposalpipe/segment{ dir = 4 @@ -52126,8 +52119,7 @@ /area/engineering/drone_fabrication) "bRT" = ( /obj/machinery/door/airlock/glass_engineering{ - name = "Engineering Hallway"; - req_one_access = list(10) + name = "Engineering Hallway" }, /obj/machinery/door/firedoor/glass, /obj/structure/disposalpipe/segment, @@ -52137,8 +52129,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/door/airlock/glass_engineering{ - name = "Engineering Hallway"; - req_one_access = list(10) + name = "Engineering Hallway" }, /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/steel_grid, @@ -54424,6 +54415,7 @@ "bWj" = ( /obj/structure/table/woodentable, /obj/item/weapon/reagent_containers/food/snacks/chips, +/obj/item/tabloid, /turf/simulated/floor/carpet, /area/engineering/break_room) "bWk" = ( @@ -89784,6 +89776,7 @@ layer = 3.1; name = "Cafe Shutters" }, +/obj/item/tabloid, /turf/simulated/floor/tiled/yellow, /area/library) "dkx" = ( diff --git a/maps/southern_cross/southern_cross_jobs.dm b/maps/southern_cross/southern_cross_jobs.dm index 0903a3ac3d..2f379dcb2e 100644 --- a/maps/southern_cross/southern_cross_jobs.dm +++ b/maps/southern_cross/southern_cross_jobs.dm @@ -85,6 +85,7 @@ var/const/access_explorer = 43 economic_modifier = 4 access = list(access_explorer, access_research) minimal_access = list(access_explorer, access_research) + banned_job_species = list(SPECIES_ZADDAT) outfit_type = /decl/hierarchy/outfit/job/explorer2 job_description = "An Explorer searches for interesting things on the surface of Sif, and returns them to the station." @@ -108,6 +109,7 @@ var/const/access_explorer = 43 economic_modifier = 4 access = list(access_medical, access_medical_equip, access_morgue, access_surgery, access_chemistry, access_virology, access_eva, access_maint_tunnels, access_external_airlocks, access_psychiatrist, access_explorer) minimal_access = list(access_medical, access_medical_equip, access_morgue, access_explorer) + min_age_by_species = list(SPECIES_PROMETHEAN = 2) outfit_type = /decl/hierarchy/outfit/job/medical/sar job_description = "A Search and Rescue operative recovers individuals who are injured or dead on the surface of Sif." \ No newline at end of file diff --git a/maps/stellardelight/overmap.dmm b/maps/stellardelight/overmap.dmm new file mode 100644 index 0000000000..2890f0159b --- /dev/null +++ b/maps/stellardelight/overmap.dmm @@ -0,0 +1,19898 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/unsimulated/map/edge, +/area/overmap) +"p" = ( +/turf/simulated/floor/carpet/retro, +/area/space) +"F" = ( +/turf/unsimulated/map, +/area/overmap) +"I" = ( +/turf/simulated/floor/carpet/deco, +/area/space) +"J" = ( +/obj/effect/overmap/bluespace_rift, +/turf/unsimulated/map, +/area/overmap) + +(1,1,1) = {" +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +I +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(2,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +"} +(3,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +"} +(4,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +"} +(5,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +"} +(6,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +"} +(7,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +"} +(8,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +J +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +"} +(9,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +"} +(10,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +"} +(11,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +"} +(12,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +"} +(13,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +"} +(14,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +"} +(15,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +"} +(16,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +"} +(17,1,1) = {" +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +I +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +"} +(18,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +"} +(19,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +"} +(20,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +"} +(21,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +"} +(22,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +"} +(23,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +"} +(24,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +"} +(25,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +"} +(26,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +"} +(27,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +"} +(28,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +"} +(29,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +"} +(30,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +"} +(31,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +"} +(32,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +"} +(33,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +"} +(34,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +"} +(35,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +"} +(36,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +"} +(37,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +"} +(38,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +J +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +"} +(39,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +"} +(40,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +"} +(41,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +"} +(42,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +"} +(43,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +"} +(44,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +"} +(45,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +"} +(46,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +"} +(47,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +"} +(48,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +"} +(49,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +"} +(50,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +"} +(51,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +"} +(52,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +"} +(53,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +"} +(54,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +"} +(55,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +"} +(56,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +"} +(57,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +"} +(58,1,1) = {" +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +I +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +"} +(59,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +"} +(60,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +"} +(61,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +"} +(62,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +"} +(63,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +"} +(64,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +"} +(65,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +"} +(66,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +"} +(67,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +"} +(68,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +"} +(69,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +"} +(70,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +"} +(71,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +"} +(72,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +"} +(73,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +"} +(74,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +"} +(75,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +"} +(76,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +"} +(77,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +"} +(78,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +"} +(79,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +J +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +"} +(80,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +"} +(81,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +"} +(82,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +"} +(83,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +"} +(84,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +"} +(85,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +"} +(86,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +"} +(87,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +"} +(88,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +"} +(89,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +"} +(90,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +"} +(91,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +"} +(92,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +"} +(93,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +"} +(94,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +"} +(95,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +"} +(96,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +"} +(97,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +"} +(98,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +"} +(99,1,1) = {" +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +I +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(100,1,1) = {" +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +I +I +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +I +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +I +p +p +p +p +p +p +p +p +p +p +p +p +p +p +p +I +"} +(101,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +p +p +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +p +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +p +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +p +"} +(102,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +"} +(103,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +"} +(104,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +"} +(105,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +"} +(106,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +"} +(107,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +"} +(108,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +"} +(109,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +"} +(110,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +"} +(111,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +"} +(112,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +"} +(113,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +"} +(114,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +"} +(115,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +"} +(116,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +"} +(117,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +"} +(118,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +"} +(119,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +"} +(120,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +"} +(121,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +J +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +J +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +J +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +J +F +F +F +F +F +F +a +p +"} +(122,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +"} +(123,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +"} +(124,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +"} +(125,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +"} +(126,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +"} +(127,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +"} +(128,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +"} +(129,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +"} +(130,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +"} +(131,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +"} +(132,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +"} +(133,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +"} +(134,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +"} +(135,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +"} +(136,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +"} +(137,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +"} +(138,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +"} +(139,1,1) = {" +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +a +F +F +F +F +F +F +F +F +F +F +F +F +F +a +p +"} +(140,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +p +p +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +p +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +p +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +p +"} diff --git a/maps/stellardelight/ship_centcom.dmm b/maps/stellardelight/ship_centcom.dmm new file mode 100644 index 0000000000..d7bca2204d --- /dev/null +++ b/maps/stellardelight/ship_centcom.dmm @@ -0,0 +1,35538 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/turf/unsimulated/wall/planetary/virgo3b, +/area/centcom) +"ab" = ( +/obj/structure/table/rack, +/obj/item/weapon/gun/energy/lasercannon, +/obj/item/weapon/gun/energy/lasercannon, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"ac" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1; + frequency = 1380; + id_tag = null + }, +/obj/effect/map_helper/airlock/atmos/pump_out_internal, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + frequency = 1380; + id_tag = "ccboat"; + pixel_y = 29 + }, +/turf/simulated/floor/plating, +/area/shuttle/ccboat) +"ad" = ( +/obj/structure/table/rack, +/obj/item/weapon/gun/energy/xray, +/obj/item/weapon/gun/energy/xray, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"ae" = ( +/obj/structure/sign/nanotrasen, +/turf/unsimulated/wall, +/area/centcom/specops) +"af" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/weapon/gun/energy/ionrifle/pistol, +/obj/item/weapon/gun/energy/ionrifle/pistol, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"ag" = ( +/obj/structure/table/rack, +/obj/item/weapon/gun/projectile/heavysniper, +/obj/item/weapon/storage/box/sniperammo, +/obj/item/weapon/storage/box/sniperammo, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"ah" = ( +/turf/simulated/wall/r_wall, +/area/centcom/main_hall) +"ai" = ( +/obj/structure/table/rack, +/obj/item/weapon/gun/projectile/automatic/z8, +/obj/item/weapon/gun/projectile/automatic/z8, +/obj/item/ammo_magazine/m762, +/obj/item/ammo_magazine/m762, +/obj/item/ammo_magazine/m762, +/obj/item/ammo_magazine/m762, +/obj/item/ammo_magazine/m762, +/obj/item/ammo_magazine/m762, +/obj/item/ammo_magazine/m762/ap, +/obj/item/ammo_magazine/m762/ap, +/obj/item/ammo_magazine/m762/ap, +/obj/item/ammo_magazine/m762/ap, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"aj" = ( +/turf/simulated/wall/r_wall, +/area/centcom/control) +"ak" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/folder/red, +/turf/simulated/floor/tiled, +/area/centcom/security) +"al" = ( +/turf/unsimulated/wall, +/area/tdome/tdomeadmin) +"am" = ( +/obj/structure/table/rack, +/obj/item/weapon/gun/launcher/rocket, +/obj/item/weapon/gun/launcher/rocket, +/obj/item/ammo_casing/rocket, +/obj/item/ammo_casing/rocket, +/obj/item/ammo_casing/rocket, +/obj/item/ammo_casing/rocket, +/obj/item/ammo_casing/rocket, +/obj/item/ammo_casing/rocket, +/obj/item/ammo_casing/rocket, +/obj/item/ammo_casing/rocket, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"an" = ( +/turf/simulated/floor/tiled, +/area/centcom/holding) +"ao" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/armor/swat, +/obj/item/clothing/suit/armor/swat, +/obj/item/clothing/suit/armor/swat, +/obj/item/clothing/suit/armor/swat, +/obj/item/clothing/suit/armor/swat, +/obj/item/clothing/mask/gas/commando{ + name = "Commando Mask" + }, +/obj/item/clothing/mask/gas/commando{ + name = "Commando Mask" + }, +/obj/item/clothing/mask/gas/commando{ + name = "Commando Mask" + }, +/obj/item/clothing/mask/gas/commando{ + name = "Commando Mask" + }, +/obj/item/clothing/mask/gas/commando{ + name = "Commando Mask" + }, +/obj/item/clothing/head/helmet/space/deathsquad{ + name = "swat helmet" + }, +/obj/item/clothing/head/helmet/space/deathsquad{ + name = "swat helmet" + }, +/obj/item/clothing/head/helmet/space/deathsquad{ + name = "swat helmet" + }, +/obj/item/clothing/head/helmet/space/deathsquad{ + name = "swat helmet" + }, +/obj/item/clothing/head/helmet/space/deathsquad{ + name = "swat helmet" + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"ap" = ( +/obj/structure/sign/science, +/turf/simulated/wall/r_wall, +/area/centcom/control) +"aq" = ( +/obj/structure/sign/department/armory, +/turf/simulated/wall/r_wall, +/area/centcom/control) +"ar" = ( +/obj/structure/sign/nanotrasen, +/turf/simulated/wall/r_wall, +/area/centcom/control) +"as" = ( +/turf/simulated/wall/r_wall, +/area/centcom/security) +"at" = ( +/obj/structure/sign/department/armory, +/turf/simulated/wall/r_wall, +/area/centcom/security) +"au" = ( +/obj/structure/closet/crate/medical, +/obj/item/weapon/storage/mre/menu11, +/obj/item/weapon/storage/mre/menu11, +/obj/item/weapon/storage/mre/menu11, +/obj/item/weapon/storage/mre/menu11, +/obj/item/weapon/storage/mre/menu11, +/obj/item/weapon/storage/mre/menu11, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"av" = ( +/obj/structure/table/rack, +/obj/item/weapon/gun/projectile/automatic/l6_saw, +/obj/item/weapon/gun/projectile/automatic/l6_saw, +/obj/item/ammo_magazine/m545saw, +/obj/item/ammo_magazine/m545saw, +/obj/item/ammo_magazine/m545saw, +/obj/item/ammo_magazine/m545saw, +/obj/item/ammo_magazine/m545saw, +/obj/item/ammo_magazine/m545saw, +/obj/item/ammo_magazine/m545saw/ap, +/obj/item/ammo_magazine/m545saw/ap, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"aw" = ( +/turf/simulated/wall/r_wall, +/area/centcom/medical) +"ax" = ( +/obj/structure/sign/securearea, +/turf/simulated/wall/r_wall, +/area/centcom/control) +"ay" = ( +/obj/structure/sign/nosmoking_2, +/turf/simulated/wall/r_wall, +/area/centcom/control) +"az" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/reagent_containers/glass/beaker/large, +/obj/item/weapon/reagent_containers/glass/beaker/large, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"aA" = ( +/obj/structure/sign/department/eva, +/turf/simulated/wall/r_wall, +/area/centcom/security) +"aB" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table/rack, +/obj/item/weapon/gun/energy/ionrifle, +/obj/item/weapon/gun/energy/ionrifle, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"aC" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/weapon/gun/energy/ionrifle/pistol, +/obj/item/weapon/gun/energy/ionrifle/pistol, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"aD" = ( +/obj/structure/sign/nanotrasen, +/turf/simulated/wall/r_wall, +/area/centcom/main_hall) +"aE" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table/rack, +/obj/item/weapon/gun/energy/netgun, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"aF" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/green/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"aG" = ( +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"aH" = ( +/turf/simulated/wall/r_wall, +/area/centcom) +"aI" = ( +/turf/simulated/wall/r_wall, +/area/centcom/command) +"aJ" = ( +/obj/structure/sign/department/commander, +/turf/simulated/wall/r_wall, +/area/centcom/security) +"aK" = ( +/turf/simulated/wall/r_wall, +/area/centcom/holding) +"aL" = ( +/obj/structure/sign/department/operational, +/turf/simulated/wall/r_wall, +/area/centcom/medical) +"aM" = ( +/turf/simulated/wall/r_wall, +/area/centcom/bathroom) +"aN" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/steel_grid, +/area/centcom/terminal) +"aO" = ( +/obj/structure/table/marble, +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/bar) +"aP" = ( +/obj/structure/sign/nanotrasen, +/turf/simulated/wall/r_wall, +/area/centcom/security) +"aQ" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/item/weapon/storage/briefcase{ + pixel_x = 3; + pixel_y = 5 + }, +/turf/simulated/floor/carpet, +/area/centcom/command) +"aR" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table/rack, +/obj/item/weapon/gun/energy/laser, +/obj/item/weapon/gun/energy/laser, +/obj/item/weapon/gun/energy/laser, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"aS" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/weapon/gun/energy/gun/nuclear, +/obj/item/weapon/gun/energy/gun/nuclear, +/obj/item/weapon/gun/energy/gun/nuclear, +/obj/item/weapon/gun/energy/gun/nuclear, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"aT" = ( +/obj/structure/flora/ausbushes/ywflowers, +/turf/simulated/floor/grass, +/area/centcom/main_hall) +"aU" = ( +/obj/machinery/vending/medical, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"aV" = ( +/obj/structure/table/rack, +/obj/item/weapon/extinguisher/mini, +/obj/item/weapon/extinguisher/mini, +/obj/item/weapon/extinguisher/mini, +/obj/item/weapon/extinguisher/mini, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"aW" = ( +/obj/structure/table/reinforced, +/obj/machinery/computer/skills, +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Residential Security" + }) +"aX" = ( +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"aY" = ( +/obj/structure/sign/department/prison, +/turf/simulated/wall/r_wall, +/area/centcom/security) +"aZ" = ( +/obj/structure/sign/greencross, +/turf/simulated/wall/r_wall, +/area/centcom/medical) +"ba" = ( +/obj/structure/sign/nanotrasen, +/turf/simulated/wall/r_wall, +/area/centcom/command) +"bb" = ( +/obj/structure/table/rack, +/obj/item/weapon/rig/ert/assetprotection, +/obj/item/weapon/rig/ert/assetprotection, +/obj/item/weapon/rig/ert/assetprotection, +/obj/item/weapon/rig/ert/assetprotection, +/obj/item/weapon/rig/ert/assetprotection, +/obj/item/clothing/glasses/thermal, +/obj/item/clothing/glasses/thermal, +/obj/item/clothing/glasses/thermal, +/obj/item/clothing/glasses/thermal, +/obj/item/clothing/glasses/thermal, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"bc" = ( +/obj/structure/table/rack, +/obj/item/weapon/storage/pill_bottle/iron, +/obj/item/weapon/storage/pill_bottle/iron, +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/fitnessflask/glucose, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"bd" = ( +/obj/structure/closet/crate/medical, +/obj/item/stack/nanopaste/advanced, +/obj/item/weapon/tank/anesthetic, +/obj/item/clothing/mask/breath/medical, +/obj/item/clothing/mask/surgical, +/obj/item/clothing/mask/surgical, +/obj/item/stack/nanopaste/advanced, +/obj/item/stack/nanopaste/advanced, +/obj/item/weapon/storage/firstaid/surgery, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"be" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/reagent_containers/hypospray, +/obj/item/weapon/reagent_containers/hypospray, +/obj/item/weapon/reagent_containers/hypospray, +/obj/item/weapon/reagent_containers/hypospray, +/obj/item/weapon/reagent_containers/hypospray, +/obj/item/weapon/reagent_containers/hypospray, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"bf" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/firstaid/clotting, +/obj/item/weapon/storage/firstaid/bonemed, +/obj/item/weapon/storage/pill_bottle/sleevingcure/full, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"bg" = ( +/obj/machinery/chemical_dispenser/ert, +/obj/item/weapon/reagent_containers/glass/beaker/large, +/obj/structure/table/reinforced, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"bh" = ( +/turf/simulated/wall/r_wall, +/area/centcom/living) +"bi" = ( +/obj/structure/table/rack, +/obj/item/device/defib_kit/compact/combat/loaded, +/obj/item/device/defib_kit/compact/combat/loaded, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"bj" = ( +/obj/effect/floor_decal/derelict/d3, +/turf/simulated/floor/tiled, +/area/centcom/evac) +"bk" = ( +/turf/simulated/wall/r_wall, +/area/centcom/security{ + name = "\improper CentCom Security Arrivals" + }) +"bl" = ( +/turf/simulated/wall/r_wall, +/area/centcom/restaurant) +"bm" = ( +/obj/machinery/status_display/supply_display, +/turf/simulated/wall/r_wall, +/area/centcom) +"bn" = ( +/turf/simulated/shuttle/floor, +/area/shuttle/escape) +"bo" = ( +/obj/structure/sign/department/bar, +/turf/simulated/wall/r_wall, +/area/centcom/restaurant) +"bp" = ( +/turf/simulated/wall/r_wall, +/area/centcom/bar) +"bq" = ( +/turf/simulated/wall/r_wall, +/area/centcom/security{ + name = "\improper CentCom Residential Security" + }) +"br" = ( +/obj/structure/sign/warning/docking_area, +/turf/simulated/wall/r_wall, +/area/centcom/terminal) +"bs" = ( +/obj/machinery/chem_master, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"bt" = ( +/obj/machinery/door/blast/regular{ + dir = 4 + }, +/turf/simulated/wall/r_wall, +/area/centcom/terminal) +"bu" = ( +/obj/structure/sign/warning{ + name = "\improper STAND AWAY FROM TRACK EDGE" + }, +/turf/simulated/wall/r_wall, +/area/centcom/terminal) +"bv" = ( +/obj/structure/table/reinforced, +/obj/machinery/chemical_dispenser/biochemistry/full, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"bw" = ( +/turf/simulated/wall/r_wall, +/area/centcom/terminal) +"bx" = ( +/obj/structure/sign/warning/nosmoking_2, +/turf/simulated/wall/r_wall, +/area/centcom/terminal) +"by" = ( +/turf/simulated/wall/r_wall, +/area/centcom/evac) +"bz" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE" + }, +/turf/simulated/wall/r_wall, +/area/centcom/terminal) +"bA" = ( +/obj/structure/bed/chair/shuttle, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/shuttle/ccboat) +"bB" = ( +/obj/machinery/airlock_sensor{ + dir = 8; + frequency = 1380; + id_tag = null; + pixel_x = 24 + }, +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1; + frequency = 1380; + id_tag = null + }, +/obj/effect/map_helper/airlock/atmos/pump_out_internal, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/ccboat) +"bC" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + frequency = 1380; + id_tag = null + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/effect/shuttle_landmark/shuttle_initializer/ccboat, +/obj/effect/overmap/visitable/ship/landable/ccboat, +/turf/simulated/floor/plating, +/area/shuttle/ccboat) +"bD" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + frequency = 1380; + id_tag = null + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/turf/simulated/floor/plating, +/area/shuttle/ccboat) +"bE" = ( +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tram" + }, +/obj/structure/closet/walllocker/medical/east, +/turf/simulated/floor/tiled, +/area/centcom/terminal/tramfluff) +"bF" = ( +/turf/simulated/floor/reinforced, +/area/shuttle/centcom/ccbay) +"bJ" = ( +/obj/structure/table/rack, +/obj/item/weapon/storage/box/pillbottles, +/obj/item/weapon/storage/box/gloves, +/obj/item/weapon/storage/box/beakers, +/obj/item/weapon/storage/box/autoinjectors, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"bK" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OMinus, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"bL" = ( +/obj/structure/table/rack, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_drop_pouches, +/obj/item/clothing/accessory/storage/black_drop_pouches, +/obj/item/clothing/accessory/storage/black_drop_pouches, +/obj/item/clothing/accessory/storage/black_drop_pouches, +/obj/item/clothing/accessory/storage/black_drop_pouches, +/obj/item/clothing/accessory/storage/black_drop_pouches, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"bM" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/firstaid/fire{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/firstaid/fire, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"bS" = ( +/obj/machinery/door/blast/regular{ + dir = 4; + name = "When Everything else fails." + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"bT" = ( +/obj/structure/table/rack, +/obj/item/weapon/rig/ert/medical, +/obj/item/weapon/rig/ert/medical, +/obj/item/weapon/rig/ert/medical, +/obj/item/clothing/accessory/storage/white_vest, +/obj/item/clothing/accessory/storage/white_vest, +/obj/item/clothing/accessory/storage/white_vest, +/obj/item/clothing/accessory/storage/white_vest, +/obj/item/clothing/accessory/storage/white_vest, +/obj/item/clothing/accessory/storage/white_vest, +/obj/item/clothing/accessory/storage/white_drop_pouches, +/obj/item/clothing/accessory/storage/white_drop_pouches, +/obj/item/clothing/accessory/storage/white_drop_pouches, +/obj/item/clothing/accessory/storage/white_drop_pouches, +/obj/item/clothing/accessory/storage/white_drop_pouches, +/obj/item/clothing/accessory/storage/white_drop_pouches, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"bV" = ( +/obj/effect/floor_decal/corner/white{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"bW" = ( +/obj/machinery/vending/security, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"bY" = ( +/turf/unsimulated/wall, +/area/centcom/specops) +"bZ" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced, +/obj/item/weapon/storage/box/shotgunammo, +/obj/item/weapon/storage/box/shotgunammo, +/obj/item/weapon/storage/box/shotgunshells, +/obj/item/weapon/storage/box/shotgunshells, +/obj/item/weapon/storage/box/shotgunshells, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"ca" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced, +/obj/item/weapon/gun/projectile/automatic/advanced_smg, +/obj/item/ammo_magazine/m9mmAdvanced, +/obj/item/ammo_magazine/m9mmAdvanced, +/obj/item/ammo_magazine/m9mmAdvanced, +/obj/item/ammo_magazine/m9mmAdvanced, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"cb" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced, +/obj/item/weapon/gun/energy/sniperrifle, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"cc" = ( +/obj/structure/medical_stand, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"cd" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/weapon/gun/energy/gun, +/obj/item/weapon/gun/energy/gun, +/obj/item/weapon/gun/energy/gun, +/obj/item/weapon/gun/energy/gun, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"cf" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/firstaid/regular, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"cn" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 5 + }, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"co" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/ammo_magazine/m545/ap, +/obj/item/ammo_magazine/m545/ap, +/obj/item/ammo_magazine/m545, +/obj/item/ammo_magazine/m545, +/obj/item/ammo_magazine/m545, +/obj/item/ammo_magazine/m545, +/obj/item/ammo_magazine/m545, +/obj/item/ammo_magazine/m545, +/obj/item/weapon/gun/projectile/automatic/sts35, +/obj/item/weapon/gun/projectile/automatic/sts35, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"cu" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/ammo_magazine/m545/ap, +/obj/item/ammo_magazine/m545/ap, +/obj/item/ammo_magazine/m545, +/obj/item/ammo_magazine/m545, +/obj/item/ammo_magazine/m545, +/obj/item/ammo_magazine/m545, +/obj/item/ammo_magazine/m545, +/obj/item/ammo_magazine/m545, +/obj/item/weapon/gun/projectile/automatic/sts35, +/obj/item/weapon/gun/projectile/automatic/sts35, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"cv" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/smes_coil, +/obj/item/weapon/smes_coil, +/obj/item/device/t_scanner/advanced, +/obj/item/device/t_scanner/advanced, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"cA" = ( +/obj/effect/floor_decal/rust/part_rusted3, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/centcom/evac) +"cD" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/weapon/gun/energy/taser, +/obj/item/weapon/gun/energy/taser, +/obj/item/weapon/gun/energy/taser, +/obj/item/weapon/gun/energy/taser, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"cE" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/box/survival/comp{ + starts_with = list(/obj/item/weapon/tool/prybar/red,/obj/item/clothing/glasses/goggles,/obj/item/weapon/reagent_containers/hypospray/autoinjector,/obj/item/stack/medical/bruise_pack,/obj/item/device/flashlight/glowstick,/obj/item/weapon/reagent_containers/food/snacks/candy/proteinbar,/obj/item/clothing/mask/breath,/obj/item/weapon/tank/emergency/oxygen/engi) + }, +/obj/item/weapon/storage/box/survival/comp{ + starts_with = list(/obj/item/weapon/tool/prybar/red,/obj/item/clothing/glasses/goggles,/obj/item/weapon/reagent_containers/hypospray/autoinjector,/obj/item/stack/medical/bruise_pack,/obj/item/device/flashlight/glowstick,/obj/item/weapon/reagent_containers/food/snacks/candy/proteinbar,/obj/item/clothing/mask/breath,/obj/item/weapon/tank/emergency/oxygen/engi) + }, +/obj/item/weapon/storage/box/survival/comp{ + starts_with = list(/obj/item/weapon/tool/prybar/red,/obj/item/clothing/glasses/goggles,/obj/item/weapon/reagent_containers/hypospray/autoinjector,/obj/item/stack/medical/bruise_pack,/obj/item/device/flashlight/glowstick,/obj/item/weapon/reagent_containers/food/snacks/candy/proteinbar,/obj/item/clothing/mask/breath,/obj/item/weapon/tank/emergency/oxygen/engi) + }, +/obj/item/weapon/storage/box/survival/comp{ + starts_with = list(/obj/item/weapon/tool/prybar/red,/obj/item/clothing/glasses/goggles,/obj/item/weapon/reagent_containers/hypospray/autoinjector,/obj/item/stack/medical/bruise_pack,/obj/item/device/flashlight/glowstick,/obj/item/weapon/reagent_containers/food/snacks/candy/proteinbar,/obj/item/clothing/mask/breath,/obj/item/weapon/tank/emergency/oxygen/engi) + }, +/obj/item/weapon/storage/box/survival/comp{ + starts_with = list(/obj/item/weapon/tool/prybar/red,/obj/item/clothing/glasses/goggles,/obj/item/weapon/reagent_containers/hypospray/autoinjector,/obj/item/stack/medical/bruise_pack,/obj/item/device/flashlight/glowstick,/obj/item/weapon/reagent_containers/food/snacks/candy/proteinbar,/obj/item/clothing/mask/breath,/obj/item/weapon/tank/emergency/oxygen/engi) + }, +/obj/item/weapon/storage/box/survival/comp{ + starts_with = list(/obj/item/weapon/tool/prybar/red,/obj/item/clothing/glasses/goggles,/obj/item/weapon/reagent_containers/hypospray/autoinjector,/obj/item/stack/medical/bruise_pack,/obj/item/device/flashlight/glowstick,/obj/item/weapon/reagent_containers/food/snacks/candy/proteinbar,/obj/item/clothing/mask/breath,/obj/item/weapon/tank/emergency/oxygen/engi) + }, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"cF" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/glasses/hud/health{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/clothing/glasses/hud/health{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"cH" = ( +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tram" + }, +/obj/structure/closet/walllocker/medical/west, +/turf/simulated/floor/tiled, +/area/centcom/terminal/tramfluff) +"cI" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "TelelockdownC"; + name = "Security Doors"; + opacity = 0 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/living) +"cJ" = ( +/obj/machinery/computer/security{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/effect/floor_decal/borderfloorblack{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"cK" = ( +/obj/structure/morgue{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/medical) +"cL" = ( +/obj/structure/table/reinforced, +/obj/item/device/healthanalyzer/advanced, +/obj/item/device/healthanalyzer/advanced, +/obj/item/device/healthanalyzer/advanced, +/obj/item/device/healthanalyzer/advanced, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"cN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark/cargo, +/area/shuttle/ccboat) +"cO" = ( +/obj/structure/table/rack, +/obj/item/weapon/shield/energy, +/obj/item/weapon/shield/energy, +/obj/item/weapon/shield/energy, +/obj/item/weapon/shield/energy, +/obj/item/weapon/shield/energy, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/weapon/melee/energy/sword/blue, +/obj/item/weapon/melee/energy/sword/blue, +/obj/item/weapon/melee/energy/sword/blue, +/obj/item/weapon/melee/energy/sword/blue, +/obj/item/weapon/melee/energy/sword/blue, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"cR" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/firstaid/toxin{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/firstaid/toxin, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"cT" = ( +/obj/effect/floor_decal/industrial/outline, +/turf/simulated/floor/tiled, +/area/centcom/living) +"cU" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"cZ" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/weapon/gun/energy/stunrevolver, +/obj/item/weapon/gun/energy/stunrevolver, +/obj/item/weapon/gun/energy/stunrevolver, +/obj/item/weapon/gun/energy/stunrevolver, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"da" = ( +/obj/structure/table/rack, +/obj/item/weapon/storage/box/flashbangs, +/obj/item/weapon/storage/box/flashbangs, +/obj/item/weapon/storage/box/emps{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/weapon/storage/box/smokes, +/obj/item/weapon/storage/box/smokes, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"db" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/box/handcuffs{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/storage/box/handcuffs, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"dc" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/material/knife/tacknife/combatknife, +/obj/item/weapon/material/knife/tacknife/combatknife, +/obj/item/weapon/material/knife/tacknife/combatknife, +/obj/item/weapon/material/knife/tacknife/combatknife, +/obj/item/weapon/material/knife/tacknife/combatknife, +/obj/item/weapon/material/knife/tacknife/combatknife, +/obj/item/weapon/melee/baton/loaded, +/obj/item/weapon/melee/baton/loaded, +/obj/item/weapon/melee/baton/loaded, +/obj/item/weapon/melee/baton/loaded, +/obj/item/weapon/melee/baton/loaded, +/obj/item/weapon/melee/baton/loaded, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"dd" = ( +/obj/structure/table/reinforced, +/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/item/weapon/cell/device/weapon, +/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/item/weapon/cell/device/weapon, +/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/item/weapon/cell/device/weapon, +/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/item/weapon/cell/device/weapon, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"dh" = ( +/turf/simulated/floor/tiled/white, +/area/centcom/bar) +"di" = ( +/obj/structure/table/rack, +/obj/item/rig_module/device/rcd, +/obj/item/rig_module/device/rcd, +/obj/item/rig_module/device/plasmacutter, +/obj/item/rig_module/device/plasmacutter, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"dj" = ( +/obj/structure/shuttle/engine/heater{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/centcom) +"dk" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/shuttle/engine/heater, +/obj/structure/kitchenspike{ + desc = "Lifts engines! You could probably also impale people and monkeys on it... but why would you do that, weirdo?"; + name = "engine lift" + }, +/turf/simulated/floor/tiled/steel, +/area/centcom) +"dl" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/belt/security/tactical, +/obj/item/weapon/storage/belt/security/tactical, +/obj/item/weapon/storage/belt/security/tactical, +/obj/item/weapon/storage/belt/security/tactical, +/obj/item/weapon/storage/belt/security/tactical, +/obj/item/weapon/storage/belt/security/tactical, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"dn" = ( +/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{ + pixel_x = 2; + pixel_y = 6 + }, +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/yellow/diagonal, +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/centcom/control) +"dr" = ( +/obj/structure/table/rack, +/obj/item/weapon/gun/energy/gun/burst, +/obj/item/weapon/gun/energy/gun/burst, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"ds" = ( +/obj/structure/table/rack, +/obj/item/bodybag/cryobag, +/obj/item/bodybag/cryobag, +/obj/item/bodybag/cryobag, +/obj/item/bodybag/cryobag, +/obj/item/bodybag/cryobag, +/obj/item/bodybag/cryobag, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"du" = ( +/obj/structure/table/rack, +/obj/item/weapon/plastique, +/obj/item/weapon/plastique, +/obj/item/weapon/plastique, +/obj/item/weapon/plastique, +/obj/item/weapon/plastique, +/obj/item/weapon/plastique, +/obj/item/weapon/plastique, +/obj/item/weapon/plastique, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"dv" = ( +/obj/structure/table/rack, +/obj/item/weapon/gun/energy/gun/martin, +/obj/item/weapon/gun/energy/gun/martin, +/obj/item/device/flash, +/obj/item/device/flash, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"dw" = ( +/obj/structure/table/rack, +/obj/item/weapon/gun/launcher/grenade, +/obj/item/weapon/gun/launcher/grenade, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"dx" = ( +/obj/structure/table/rack, +/obj/item/weapon/storage/box/frags, +/obj/item/weapon/storage/box/frags, +/obj/item/weapon/storage/box/teargas, +/obj/item/weapon/storage/box/teargas, +/obj/item/weapon/storage/box/empslite, +/obj/item/weapon/storage/box/empslite, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"dy" = ( +/obj/structure/table/rack, +/obj/item/weapon/gun/energy/pulse_rifle, +/obj/item/weapon/gun/energy/pulse_rifle, +/obj/item/weapon/gun/energy/pulse_rifle, +/obj/item/weapon/gun/energy/pulse_rifle, +/obj/item/weapon/gun/energy/pulse_rifle, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"dz" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/firstaid/combat{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/firstaid/combat, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"dA" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/box/bodybags{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/box/bodybags, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"dB" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/belt/medical/emt, +/obj/item/weapon/storage/belt/medical/emt, +/obj/item/weapon/storage/belt/medical/emt, +/obj/item/weapon/storage/belt/medical/emt, +/obj/item/weapon/storage/belt/medical/emt, +/obj/item/weapon/storage/belt/medical/emt, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"dC" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced, +/obj/item/weapon/gun/projectile/shotgun/pump/combat, +/obj/item/weapon/gun/projectile/shotgun/pump/combat, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"dD" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced, +/obj/item/weapon/gun/projectile/revolver/detective45, +/obj/item/weapon/gun/projectile/revolver/detective45, +/obj/item/ammo_magazine/s45, +/obj/item/ammo_magazine/s45, +/obj/item/ammo_magazine/s45, +/obj/item/ammo_magazine/s45, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"dG" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + dir = 8; + frequency = 1380; + id_tag = "cc_landing_pad"; + name = "docking port controller"; + pixel_x = 24; + req_one_access = list(13) + }, +/turf/simulated/floor/tiled, +/area/shuttle/centcom/ccbay) +"dJ" = ( +/obj/structure/bed/chair/shuttle{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/shuttle/ccboat) +"dM" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/control) +"dN" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/weapon/gun/projectile/p92x, +/obj/item/weapon/gun/projectile/p92x, +/obj/item/weapon/gun/projectile/p92x, +/obj/item/weapon/gun/projectile/p92x, +/obj/item/ammo_magazine/m9mm/large/preban, +/obj/item/ammo_magazine/m9mm/large/preban, +/obj/item/ammo_magazine/m9mm/large/preban, +/obj/item/ammo_magazine/m9mm/large/preban, +/obj/item/ammo_magazine/m9mm/large/preban, +/obj/item/ammo_magazine/m9mm/large/preban, +/obj/item/ammo_magazine/m9mm/large/preban, +/obj/item/ammo_magazine/m9mm/large/preban, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"dS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/dark/cargo, +/area/shuttle/ccboat) +"dU" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/firstaid/o2{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/firstaid/o2, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"dV" = ( +/obj/structure/table/rack, +/obj/item/rig_module/mounted, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_vest, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"dW" = ( +/obj/machinery/vending/snack{ + name = "hacked Getmore Chocolate Corp"; + prices = list() + }, +/turf/simulated/floor/wood, +/area/centcom/specops) +"dY" = ( +/obj/structure/bed/chair/bay/shuttle{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_x = -32; + pixel_y = 24 + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/shuttle/ccboat) +"dZ" = ( +/turf/simulated/floor/tiled, +/area/centcom/specops) +"ea" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/floor/wood, +/area/centcom/specops) +"eb" = ( +/obj/machinery/portable_atmospherics/powered/scrubber, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/control) +"ec" = ( +/obj/machinery/shieldwallgen, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/control) +"ef" = ( +/obj/structure/bed/chair, +/obj/item/weapon/handcuffs, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/control) +"eh" = ( +/obj/effect/floor_decal/corner/yellow/diagonal, +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/obj/structure/flora/pottedplant{ + icon_state = "plant-06" + }, +/turf/simulated/floor/tiled, +/area/centcom/control) +"ej" = ( +/obj/structure/table/reinforced, +/obj/item/device/megaphone, +/obj/item/weapon/storage/box/trackimp, +/obj/item/weapon/storage/box/cdeathalarm_kit, +/turf/simulated/floor/wood, +/area/centcom/specops) +"ek" = ( +/obj/structure/table/rack, +/obj/item/taperoll/police, +/obj/item/taperoll/police, +/obj/item/taperoll/police, +/obj/item/taperoll/police, +/obj/item/taperoll/police, +/obj/item/taperoll/police, +/obj/item/device/flash, +/obj/item/device/flash, +/obj/item/device/flash, +/obj/item/device/flash, +/obj/item/device/flash, +/obj/item/device/flash, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"el" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/armor/vest/ert/command, +/obj/item/clothing/head/helmet/ert/command, +/obj/item/weapon/storage/backpack/ert/commander, +/turf/simulated/floor/wood, +/area/centcom/specops) +"em" = ( +/turf/simulated/floor/tiled, +/area/centcom/control) +"en" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/secure/briefcase/nsfw_pack_hybrid, +/turf/simulated/floor/wood, +/area/centcom/specops) +"ep" = ( +/obj/structure/sign/redcross{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"er" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-22" + }, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"et" = ( +/obj/structure/bed/chair/shuttle, +/turf/simulated/shuttle/floor{ + icon_state = "floor_red" + }, +/area/shuttle/escape) +"ev" = ( +/obj/machinery/vending/nifsoft_shop{ + categories = 111; + emagged = 1; + name = "Hacked NIFSoft Shop" + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"ew" = ( +/obj/machinery/atm{ + pixel_y = 26 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"ex" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/firstaid/adv{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/firstaid/adv, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"ey" = ( +/obj/structure/shuttle/engine/heater, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/shuttle/plating/airless, +/area/shuttle/escape) +"ez" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/shuttle/ccboat) +"eB" = ( +/obj/structure/sign/securearea{ + name = "\improper ARMORY"; + pixel_y = 32 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"eD" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor, +/area/centcom/specops) +"eE" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/armor/vest/ert/medical, +/obj/item/clothing/suit/armor/vest/ert/medical, +/obj/item/clothing/suit/armor/vest/ert/medical, +/obj/item/clothing/suit/armor/vest/ert/medical, +/obj/item/clothing/head/helmet/ert/medical, +/obj/item/clothing/head/helmet/ert/medical, +/obj/item/clothing/head/helmet/ert/medical, +/obj/item/clothing/head/helmet/ert/medical, +/obj/item/weapon/storage/backpack/ert/medical, +/obj/item/weapon/storage/backpack/ert/medical, +/obj/item/weapon/storage/backpack/ert/medical, +/obj/item/weapon/storage/backpack/ert/medical, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"eI" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"eK" = ( +/obj/machinery/light, +/obj/structure/bed/chair/shuttle{ + dir = 8 + }, +/turf/simulated/shuttle/floor/white, +/area/shuttle/escape) +"eP" = ( +/obj/machinery/gibber, +/turf/simulated/floor/tiled{ + icon_state = "white" + }, +/area/tdome/tdomeobserve) +"eQ" = ( +/obj/machinery/vending/cigarette, +/turf/unsimulated/floor/steel, +/area/tdome/tdomeobserve) +"eR" = ( +/obj/structure/table/reinforced, +/obj/item/device/aicard, +/obj/item/weapon/pinpointer/advpinpointer, +/obj/item/weapon/stamp/centcomm, +/turf/simulated/floor/wood, +/area/centcom/specops) +"eS" = ( +/obj/machinery/door/airlock/centcom{ + name = "Commander"; + req_access = list(103) + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"eT" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/accessory/holster/hip, +/obj/item/ammo_magazine/m44, +/obj/item/ammo_magazine/m44, +/obj/item/weapon/gun/projectile/deagle, +/turf/simulated/floor/wood, +/area/centcom/specops) +"eU" = ( +/obj/structure/sign/securearea{ + name = "ENGINEERING ACCESS"; + pixel_y = -32 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"eV" = ( +/obj/structure/table/reinforced, +/obj/item/device/pda/ert, +/obj/item/device/perfect_tele, +/obj/item/weapon/hand_tele, +/turf/simulated/floor/wood, +/area/centcom/specops) +"eX" = ( +/turf/simulated/floor/maglev, +/area/centcom/terminal) +"eY" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorblack/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Residential Security" + }) +"eZ" = ( +/obj/item/weapon/stool/padded, +/obj/effect/floor_decal/corner/yellow/diagonal, +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/centcom/control) +"fc" = ( +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tram" + }, +/obj/structure/table/standard, +/turf/simulated/floor/tiled, +/area/centcom/terminal/tramfluff) +"fg" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/reinforced, +/area/centcom) +"fj" = ( +/obj/structure/table/reinforced, +/obj/item/device/pda/ert, +/obj/item/device/pda/ert, +/obj/item/device/pda/ert, +/obj/item/device/pda/ert, +/obj/item/device/pda/ert, +/obj/item/device/pda/ert, +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"fk" = ( +/obj/effect/floor_decal/rust/steel_decals_rusted2, +/obj/effect/floor_decal/industrial/warning/dust, +/turf/simulated/floor/tiled, +/area/centcom/evac) +"fl" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/box/flashshells, +/obj/item/weapon/storage/box/flashshells, +/obj/item/weapon/storage/box/stunshells, +/obj/item/weapon/storage/box/stunshells, +/obj/item/weapon/storage/box/beanbags, +/obj/item/weapon/storage/box/beanbags, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"fo" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/glasses/sunglasses/sechud/tactical, +/obj/item/clothing/glasses/sunglasses/sechud/tactical, +/obj/item/clothing/glasses/sunglasses/sechud/tactical, +/obj/item/clothing/glasses/sunglasses/sechud/tactical, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"fr" = ( +/obj/effect/floor_decal/rust/part_rusted3, +/turf/simulated/floor/tiled, +/area/centcom/evac) +"fs" = ( +/obj/structure/table/reinforced, +/obj/item/device/megaphone, +/obj/item/device/megaphone, +/obj/item/device/megaphone, +/obj/item/device/megaphone, +/obj/item/device/megaphone, +/obj/item/device/megaphone, +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"fz" = ( +/obj/machinery/door/airlock/centcom{ + name = "General Access"; + req_access = list(101) + }, +/turf/unsimulated/floor/steel, +/area/tdome/tdomeadmin) +"fA" = ( +/turf/unsimulated/floor/steel, +/area/tdome/tdomeadmin) +"fC" = ( +/obj/machinery/door/airlock/centcom{ + name = "Living Quarters"; + req_access = list(105) + }, +/turf/simulated/floor/carpet, +/area/centcom/control) +"fD" = ( +/obj/item/clothing/accessory/holster/waist, +/obj/item/clothing/accessory/holster/waist, +/obj/item/clothing/accessory/holster/waist, +/obj/item/clothing/accessory/holster/waist, +/obj/item/clothing/accessory/holster/waist, +/obj/item/clothing/accessory/holster/waist, +/obj/structure/table/reinforced, +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"fF" = ( +/obj/structure/bed/chair, +/obj/effect/landmark{ + name = "tdomeobserve" + }, +/turf/unsimulated/floor/steel, +/area/tdome/tdomeobserve) +"fG" = ( +/obj/effect/shuttle_landmark/transit{ + base_area = /area/centcom; + base_turf = /turf/simulated/floor/reinforced; + docking_controller = "centcom_port_dock"; + landmark_tag = "port_escape_cc"; + name = "Port Escape Centcom" + }, +/turf/simulated/floor/reinforced, +/area/centcom) +"fH" = ( +/obj/structure/table/rack, +/obj/item/clothing/glasses/night, +/obj/item/clothing/glasses/night, +/obj/item/clothing/glasses/night, +/obj/item/clothing/glasses/night, +/obj/item/clothing/glasses/night, +/obj/item/clothing/glasses/night, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"fI" = ( +/obj/item/clothing/accessory/holster/hip, +/obj/item/clothing/accessory/holster/hip, +/obj/item/clothing/accessory/holster/hip, +/obj/item/clothing/accessory/holster/hip, +/obj/item/clothing/accessory/holster/hip, +/obj/item/clothing/accessory/holster/hip, +/obj/structure/table/reinforced, +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"fJ" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/box/flashbangs, +/obj/item/weapon/handcuffs, +/obj/item/device/flash, +/obj/item/weapon/melee/baton/loaded, +/obj/item/weapon/storage/belt/security/tactical, +/obj/item/weapon/gun/energy/stunrevolver, +/obj/item/clothing/glasses/sunglasses/sechud/tactical, +/obj/item/weapon/material/knife/tacknife/combatknife, +/turf/simulated/floor/wood, +/area/centcom/specops) +"fL" = ( +/obj/structure/table/rack, +/obj/item/weapon/rig/ert, +/obj/item/clothing/accessory/storage/black_vest, +/turf/simulated/floor/wood, +/area/centcom/specops) +"fM" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/gun/energy/gun/nuclear, +/turf/simulated/floor/wood, +/area/centcom/specops) +"fP" = ( +/obj/machinery/porta_turret/crescent{ + density = 1 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"fR" = ( +/obj/structure/table/rack, +/obj/item/weapon/storage/secure/briefcase/nsfw_pack_hybrid_combat, +/obj/item/weapon/storage/secure/briefcase/nsfw_pack_hybrid_combat, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"fS" = ( +/obj/machinery/vending/engivend, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"fT" = ( +/obj/item/weapon/circuitboard/aiupload, +/obj/item/weapon/circuitboard/borgupload, +/obj/item/weapon/circuitboard/smes, +/obj/item/weapon/aiModule/nanotrasen, +/obj/item/weapon/aiModule/reset, +/obj/item/weapon/aiModule/freeformcore, +/obj/item/weapon/aiModule/protectStation, +/obj/item/weapon/aiModule/quarantine, +/obj/item/weapon/aiModule/paladin, +/obj/item/weapon/aiModule/robocop, +/obj/item/weapon/aiModule/safeguard, +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"fW" = ( +/turf/simulated/shuttle/floor{ + icon_state = "floor_red" + }, +/area/shuttle/escape) +"fX" = ( +/obj/item/clothing/glasses/welding/superior, +/obj/item/clothing/glasses/welding/superior, +/obj/item/clothing/glasses/welding/superior, +/obj/item/clothing/glasses/welding/superior, +/obj/item/clothing/glasses/welding/superior, +/obj/structure/table/steel_reinforced, +/obj/item/clothing/glasses/welding/superior, +/obj/item/weapon/grenade/chem_grenade/metalfoam, +/obj/item/weapon/grenade/chem_grenade/metalfoam, +/obj/item/weapon/grenade/chem_grenade/metalfoam, +/obj/item/weapon/grenade/chem_grenade/metalfoam, +/obj/item/weapon/grenade/chem_grenade/metalfoam, +/obj/item/weapon/grenade/chem_grenade/metalfoam, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"fY" = ( +/obj/structure/table/glass, +/obj/item/roller/adv, +/obj/item/roller/adv{ + pixel_y = 6 + }, +/obj/item/roller/adv{ + pixel_y = 12 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"fZ" = ( +/obj/structure/table/steel_reinforced, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"ga" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/box/syringes{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/box/syringes, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"gb" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_drop_pouches, +/obj/item/clothing/accessory/storage/black_drop_pouches, +/obj/item/clothing/accessory/storage/black_drop_pouches, +/obj/item/clothing/accessory/storage/black_drop_pouches, +/obj/item/clothing/accessory/storage/black_drop_pouches, +/obj/item/clothing/accessory/storage/black_drop_pouches, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"gc" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/armor/vest/ert/security, +/obj/item/clothing/suit/armor/vest/ert/security, +/obj/item/clothing/suit/armor/vest/ert/security, +/obj/item/clothing/suit/armor/vest/ert/security, +/obj/item/clothing/head/helmet/ert/security, +/obj/item/clothing/head/helmet/ert/security, +/obj/item/clothing/head/helmet/ert/security, +/obj/item/clothing/head/helmet/ert/security, +/obj/item/weapon/storage/backpack/ert/security, +/obj/item/weapon/storage/backpack/ert/security, +/obj/item/weapon/storage/backpack/ert/security, +/obj/item/weapon/storage/backpack/ert/security, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"gd" = ( +/obj/structure/table/rack, +/obj/item/weapon/rig/ert/security, +/obj/item/weapon/rig/ert/security, +/obj/item/weapon/rig/ert/security, +/obj/item/weapon/rig/ert/security, +/obj/item/weapon/rig/ert/security, +/obj/item/weapon/rig/ert/security, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"ge" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/stamp/centcomm, +/obj/item/weapon/pen, +/obj/item/weapon/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/clothing/glasses/graviton, +/obj/item/clothing/glasses/graviton, +/obj/item/clothing/glasses/graviton, +/obj/item/clothing/glasses/graviton, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"gf" = ( +/obj/item/clothing/accessory/holster/armpit, +/obj/item/clothing/accessory/holster/armpit, +/obj/item/clothing/accessory/holster/armpit, +/obj/item/clothing/accessory/holster/armpit, +/obj/item/clothing/accessory/holster/armpit, +/obj/item/clothing/accessory/holster/armpit, +/obj/structure/table/reinforced, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"gg" = ( +/obj/machinery/vending/cigarette{ + name = "hacked cigarette machine"; + prices = list(); + products = list(/obj/item/weapon/storage/fancy/cigarettes = 10, /obj/item/weapon/storage/box/matches = 10, /obj/item/weapon/flame/lighter/zippo = 4, /obj/item/clothing/mask/smokable/cigarette/cigar/havana = 2) + }, +/turf/simulated/floor/wood, +/area/centcom/specops) +"gj" = ( +/obj/machinery/vending/cola{ + name = "hacked Robust Softdrinks"; + prices = list() + }, +/turf/simulated/floor/wood, +/area/centcom/specops) +"gl" = ( +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/blue/border, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloorblack/corner2, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Residential Security" + }) +"gm" = ( +/obj/structure/shuttle/engine/propulsion, +/turf/simulated/shuttle/plating/carry, +/area/shuttle/escape) +"go" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 6 + }, +/turf/simulated/floor/tiled/eris/dark/cargo, +/area/shuttle/ccboat) +"gp" = ( +/obj/machinery/door/blast/regular{ + id = "thunderdome"; + name = "Thunderdome Blast Door" + }, +/turf/unsimulated/floor/techfloor_grid, +/area/tdome/tdome1) +"gs" = ( +/obj/structure/bed/chair/shuttle, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/shuttle/ccboat) +"gv" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/structure/bed/chair/shuttle{ + dir = 8 + }, +/turf/simulated/shuttle/floor, +/area/shuttle/escape) +"gw" = ( +/obj/machinery/vending/assist, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"gy" = ( +/obj/structure/table/steel_reinforced, +/obj/item/clothing/gloves/yellow, +/obj/item/clothing/gloves/yellow, +/obj/item/clothing/gloves/yellow, +/obj/item/clothing/gloves/yellow, +/obj/item/clothing/gloves/yellow, +/obj/item/clothing/gloves/yellow, +/obj/item/weapon/storage/belt/utility/full, +/obj/item/weapon/storage/belt/utility/full, +/obj/item/weapon/storage/belt/utility/full, +/obj/item/weapon/storage/belt/utility/full, +/obj/item/weapon/storage/belt/utility/full, +/obj/item/weapon/storage/belt/utility/full, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"gz" = ( +/obj/structure/table/steel_reinforced, +/obj/item/clothing/glasses/meson, +/obj/item/clothing/glasses/meson, +/obj/item/clothing/glasses/meson, +/obj/item/clothing/glasses/meson, +/obj/item/clothing/glasses/meson, +/obj/item/clothing/glasses/meson, +/obj/item/taperoll/engineering, +/obj/item/taperoll/engineering, +/obj/item/taperoll/engineering, +/obj/item/taperoll/engineering, +/obj/item/taperoll/engineering, +/obj/item/taperoll/engineering, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"gA" = ( +/obj/item/stack/material/glass{ + amount = 50 + }, +/obj/item/stack/material/glass{ + amount = 50 + }, +/obj/item/stack/material/glass{ + amount = 50 + }, +/obj/item/stack/material/glass{ + amount = 50 + }, +/obj/item/stack/material/steel{ + amount = 50; + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/stack/material/steel{ + amount = 50; + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/stack/material/steel{ + amount = 50; + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/stack/material/steel{ + amount = 50; + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/stack/material/plasteel{ + amount = 50 + }, +/obj/item/stack/material/plasteel{ + amount = 50 + }, +/obj/item/stack/material/plasteel{ + amount = 50 + }, +/obj/item/stack/material/plasteel{ + amount = 50 + }, +/obj/item/stack/material/glass/reinforced{ + amount = 50 + }, +/obj/item/stack/material/glass/reinforced{ + amount = 50 + }, +/obj/item/stack/material/glass/reinforced{ + amount = 50 + }, +/obj/item/weapon/storage/briefcase/inflatable{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/storage/briefcase/inflatable{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/storage/briefcase/inflatable{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/storage/briefcase/inflatable{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/structure/table/steel_reinforced, +/obj/item/stack/rods, +/obj/item/stack/rods, +/obj/item/stack/material/glass/phoronglass, +/obj/item/stack/material/glass/phoronglass, +/obj/item/stack/rods, +/obj/item/stack/rods, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"gB" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor, +/area/centcom/holding) +"gC" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/book/manual/security_space_law, +/obj/item/device/taperecorder, +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Residential Security" + }) +"gF" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "reinforced"; + name = "reinforced floor" + }, +/area/centcom) +"gN" = ( +/obj/effect/floor_decal/emblem/stellardelight{ + dir = 1 + }, +/turf/simulated/shuttle/floor/white, +/area/shuttle/escape) +"gP" = ( +/obj/structure/table/rack, +/obj/item/clothing/under/color/green, +/obj/item/clothing/shoes/brown, +/obj/item/clothing/suit/armor/tdome/green, +/obj/item/clothing/head/helmet/thunderdome, +/obj/item/weapon/melee/baton/loaded, +/obj/item/weapon/melee/energy/sword/green, +/turf/unsimulated/floor/techfloor_grid, +/area/tdome/tdome1) +"gR" = ( +/obj/machinery/autolathe{ + desc = "Your typical Autolathe. It appears to have much more options than your regular one, however..."; + hacked = 1; + name = "Unlocked Autolathe" + }, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"gS" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/item/weapon/storage/box/traumainjectors, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"gV" = ( +/obj/item/device/radio/intercom{ + broadcasting = 1; + dir = 1; + frequency = 1443; + listening = 0; + name = "Spec Ops Intercom"; + pixel_y = 28 + }, +/obj/item/modular_computer/console/preset/command{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/centcom/control) +"gX" = ( +/obj/machinery/computer/teleporter, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"gY" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 1 + }, +/obj/machinery/turretid/stun{ + check_access = 0; + check_anomalies = 0; + check_records = 0; + control_area = "\improper CentCom Security"; + pixel_y = 32; + req_access = list(101); + req_one_access = list(101) + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"gZ" = ( +/obj/machinery/teleport/station, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"ha" = ( +/obj/machinery/teleport/hub, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"hb" = ( +/obj/machinery/vending/engineering, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"he" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"hf" = ( +/obj/machinery/portable_atmospherics/canister/air, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"hl" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/item/weapon/cell/hyper, +/obj/item/weapon/cell/hyper, +/obj/item/weapon/cell/hyper, +/obj/item/weapon/cell/hyper, +/obj/item/weapon/cell/hyper, +/obj/item/weapon/cell/hyper, +/obj/item/weapon/cell/hyper, +/obj/item/weapon/cell/hyper, +/obj/item/weapon/cell/hyper, +/obj/item/weapon/cell/hyper, +/obj/item/weapon/cell/hyper, +/obj/item/weapon/cell/hyper, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"hn" = ( +/obj/item/modular_computer/console/preset/command{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/centcom/control) +"hp" = ( +/obj/machinery/door/blast/regular{ + id = "ArmouryC5"; + name = "Armoury" + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/control) +"hq" = ( +/obj/structure/table/rack, +/obj/item/weapon/gun/energy/gun/martin, +/obj/item/weapon/gun/energy/gun/martin, +/obj/item/device/flash, +/obj/item/device/flash, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/control) +"hr" = ( +/obj/effect/floor_decal/corner/red{ + dir = 10 + }, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"hs" = ( +/turf/simulated/floor/wood, +/area/centcom/specops) +"ht" = ( +/obj/machinery/porta_turret/crescent{ + density = 1 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark, +/area/centcom/control) +"hv" = ( +/obj/machinery/light/flamp/noshade, +/turf/simulated/floor/tiled, +/area/centcom/evac) +"hx" = ( +/obj/structure/table/rack, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"hz" = ( +/obj/machinery/door/airlock/centcom{ + name = "Teleporter"; + req_access = list(103) + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"hA" = ( +/obj/machinery/vending/tool, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"hC" = ( +/obj/machinery/pipedispenser/orderable, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"hD" = ( +/obj/machinery/portable_atmospherics/powered/pump/filled, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"hE" = ( +/obj/item/weapon/stool/padded, +/turf/simulated/floor/wood, +/area/centcom/specops) +"hF" = ( +/obj/structure/table/rack, +/obj/item/rig_module/chem_dispenser/combat, +/obj/item/rig_module/chem_dispenser/combat, +/obj/item/rig_module/chem_dispenser/injector, +/obj/item/rig_module/chem_dispenser/injector, +/obj/item/rig_module/device/healthscanner, +/obj/item/rig_module/device/healthscanner, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"hG" = ( +/obj/structure/table/rack, +/obj/item/rig_module/device/drill, +/obj/item/rig_module/device/drill, +/obj/item/rig_module/maneuvering_jets, +/obj/item/rig_module/maneuvering_jets, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"hH" = ( +/obj/item/device/perfect_tele_beacon/stationary{ + tele_name = "CentCom"; + tele_network = "centcom" + }, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"hI" = ( +/obj/machinery/door/blast/regular{ + id = "ArmouryC5"; + name = "Armoury" + }, +/obj/machinery/button/remote/blast_door{ + id = "ArmouryC5"; + name = "Armoury Access"; + pixel_y = -28; + req_access = list(101) + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/control) +"hL" = ( +/obj/machinery/door/airlock/centcom{ + name = "Special Operations"; + req_access = list(103) + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"hM" = ( +/obj/machinery/pipedispenser/disposal/orderable, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/control) +"hN" = ( +/turf/simulated/floor/tiled/dark, +/area/centcom/control) +"hP" = ( +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tram" + }, +/obj/structure/bed/chair/sofa/bench{ + dir = 4; + padding_color = "#99AAFF" + }, +/obj/random/forgotten_tram, +/turf/simulated/floor/tiled, +/area/centcom/terminal/tramfluff) +"hS" = ( +/obj/machinery/computer/med_data{ + dir = 1 + }, +/turf/simulated/shuttle/floor, +/area/shuttle/escape) +"hT" = ( +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tram" + }, +/obj/structure/bed/chair/sofa/bench{ + dir = 8; + padding_color = "#99AAFF" + }, +/obj/random/forgotten_tram, +/turf/simulated/floor/tiled, +/area/centcom/terminal/tramfluff) +"hV" = ( +/obj/machinery/shield_capacitor, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/control) +"hW" = ( +/obj/machinery/door/airlock/centcom{ + name = "Special Operations"; + req_access = list(103) + }, +/turf/simulated/floor/tiled, +/area/centcom/specops) +"hX" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/ammo_magazine/m9mml, +/obj/item/ammo_magazine/m9mml, +/obj/item/ammo_magazine/m9mml, +/obj/item/ammo_magazine/m9mml, +/obj/item/ammo_magazine/m9mml, +/obj/item/ammo_magazine/m9mml, +/obj/item/ammo_magazine/m9mml/ap, +/obj/item/ammo_magazine/m9mml/ap, +/obj/item/ammo_magazine/m9mml/ap, +/obj/item/ammo_magazine/m9mml/ap, +/obj/machinery/button/remote/blast_door{ + id = "ArmouryC4"; + name = "Armoury Access"; + pixel_y = 28; + req_access = list(3) + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"hY" = ( +/obj/effect/floor_decal/emblem/stellardelight{ + dir = 8 + }, +/turf/simulated/shuttle/floor/white, +/area/shuttle/escape) +"ih" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"ii" = ( +/obj/machinery/porta_turret/crescent{ + density = 1 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled, +/area/centcom/specops) +"ij" = ( +/obj/machinery/shieldgen, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/control) +"il" = ( +/obj/item/weapon/stool/padded, +/obj/effect/floor_decal/corner/yellow/diagonal, +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/obj/machinery/camera/network/crescent, +/turf/simulated/floor/tiled, +/area/centcom/control) +"im" = ( +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/obj/item/stack/material/glass{ + amount = 50; + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stack/material/steel{ + amount = 50 + }, +/obj/item/clothing/glasses/welding, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"io" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/tiled, +/area/centcom/control) +"ip" = ( +/obj/machinery/mecha_part_fabricator/pros, +/turf/simulated/floor/tiled, +/area/centcom/control) +"iq" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/armor/vest/ert/engineer, +/obj/item/clothing/suit/armor/vest/ert/engineer, +/obj/item/clothing/suit/armor/vest/ert/engineer, +/obj/item/clothing/suit/armor/vest/ert/engineer, +/obj/item/clothing/head/helmet/ert/engineer, +/obj/item/clothing/head/helmet/ert/engineer, +/obj/item/clothing/head/helmet/ert/engineer, +/obj/item/clothing/head/helmet/ert/engineer, +/obj/item/weapon/storage/backpack/ert/engineer, +/obj/item/weapon/storage/backpack/ert/engineer, +/obj/item/weapon/storage/backpack/ert/engineer, +/obj/item/weapon/storage/backpack/ert/engineer, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/control) +"ir" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/centcom/terminal) +"is" = ( +/obj/structure/table/rack, +/obj/item/weapon/rig/ert/engineer, +/obj/item/weapon/rig/ert/engineer, +/obj/item/weapon/rig/ert/engineer, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/control) +"it" = ( +/obj/structure/table/rack, +/obj/item/clothing/accessory/storage/brown_vest, +/obj/item/clothing/accessory/storage/brown_vest, +/obj/item/clothing/accessory/storage/brown_vest, +/obj/item/clothing/accessory/storage/brown_vest, +/obj/item/clothing/accessory/storage/brown_vest, +/obj/item/clothing/accessory/storage/brown_vest, +/obj/item/clothing/accessory/storage/brown_drop_pouches, +/obj/item/clothing/accessory/storage/brown_drop_pouches, +/obj/item/clothing/accessory/storage/brown_drop_pouches, +/obj/item/clothing/accessory/storage/brown_drop_pouches, +/obj/item/clothing/accessory/storage/brown_drop_pouches, +/obj/item/clothing/accessory/storage/brown_drop_pouches, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/control) +"iu" = ( +/obj/machinery/shield_gen, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"iw" = ( +/obj/machinery/power/thermoregulator, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"ix" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/control) +"iy" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/cell/hyper, +/obj/item/weapon/cell/hyper, +/obj/item/weapon/cell/hyper, +/obj/item/weapon/cell/hyper, +/obj/item/weapon/cell/hyper, +/obj/item/weapon/cell/hyper, +/obj/item/weapon/cell/hyper, +/obj/item/weapon/cell/hyper, +/obj/item/weapon/cell/hyper, +/obj/item/weapon/cell/hyper, +/obj/item/weapon/cell/hyper, +/obj/item/weapon/cell/hyper, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"iz" = ( +/obj/item/weapon/gun/energy/sizegun, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/control) +"iA" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"iC" = ( +/turf/unsimulated/floor/techfloor_grid, +/area/tdome) +"iG" = ( +/obj/machinery/computer/communications, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/centcom/command) +"iH" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"iJ" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"iK" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"iL" = ( +/obj/item/weapon/storage/firstaid/regular, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/control) +"iO" = ( +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tram" + }, +/obj/structure/table/standard, +/obj/random/forgotten_tram, +/turf/simulated/floor/tiled, +/area/centcom/terminal/tramfluff) +"iR" = ( +/obj/structure/bed{ + desc = "This is a bed..It says something close to the bottom 'I fuck the cat here too'." + }, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/control) +"iS" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/borderfloor/corner2, +/turf/simulated/floor/tiled, +/area/centcom/command) +"iT" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/centcom/command) +"iU" = ( +/obj/machinery/computer/security/telescreen/entertainment{ + icon_state = "frame"; + pixel_x = 32 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Residential Security" + }) +"iV" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"iW" = ( +/obj/machinery/r_n_d/destructive_analyzer, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"iX" = ( +/turf/simulated/floor/tiled/dark, +/area/centcom/living) +"iZ" = ( +/obj/machinery/r_n_d/protolathe, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"ja" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/tool/crowbar, +/obj/item/weapon/tool/crowbar, +/obj/item/weapon/tool/crowbar, +/obj/item/weapon/tool/crowbar, +/obj/item/weapon/tool/crowbar, +/obj/item/weapon/tool/crowbar, +/obj/item/device/radio/off, +/obj/item/device/radio/off, +/obj/item/device/radio/off, +/obj/item/device/radio/off, +/obj/item/device/radio/off, +/obj/item/device/radio/off, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"jb" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"jc" = ( +/obj/structure/closet/secure_closet/bar, +/turf/simulated/floor/tiled{ + icon_state = "white" + }, +/area/tdome/tdomeobserve) +"jd" = ( +/obj/structure/table/reinforced, +/obj/item/device/binoculars, +/obj/item/device/survivalcapsule, +/obj/item/device/survivalcapsule, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"je" = ( +/turf/simulated/floor/tiled{ + icon_state = "white" + }, +/area/tdome/tdomeobserve) +"jf" = ( +/obj/machinery/turretid/stun{ + check_access = 0; + check_anomalies = 0; + check_records = 0; + control_area = "\improper CentCom Control"; + pixel_x = -28; + pixel_y = -28; + req_access = list(101) + }, +/turf/simulated/floor/tiled, +/area/centcom/control) +"jg" = ( +/obj/machinery/door/airlock/command{ + name = "Thunderdome"; + req_one_access = list() + }, +/turf/unsimulated/floor/steel, +/area/tdome/tdomeadmin) +"jh" = ( +/obj/structure/closet/wardrobe/ert, +/obj/item/modular_computer/laptop/preset/custom_loadout/elite, +/turf/simulated/floor/wood, +/area/centcom/specops) +"ji" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/unsimulated/shuttle/plating, +/area/tdome/tdomeadmin) +"jj" = ( +/obj/structure/table/standard, +/turf/simulated/floor/carpet, +/area/centcom/control) +"jm" = ( +/obj/structure/bed, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/control) +"jo" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/box/handcuffs{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/weapon/storage/box/chemimp{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/weapon/storage/box/trackimp, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"jp" = ( +/obj/machinery/computer/rdconsole/core{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"jr" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"ju" = ( +/obj/machinery/r_n_d/circuit_imprinter, +/obj/item/weapon/reagent_containers/glass/beaker/sulphuric, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"jw" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/centcom/terminal) +"jx" = ( +/obj/item/weapon/reagent_containers/food/drinks/cans/cola, +/obj/item/weapon/reagent_containers/food/drinks/cans/cola, +/obj/item/weapon/reagent_containers/food/drinks/cans/cola, +/obj/structure/table/standard, +/turf/unsimulated/floor/steel, +/area/tdome/tdomeobserve) +"jD" = ( +/obj/structure/reagent_dispensers/beerkeg, +/turf/unsimulated/floor/steel, +/area/tdome/tdomeobserve) +"jE" = ( +/obj/structure/table/steel_reinforced, +/obj/item/stack/material/phoron, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"jF" = ( +/obj/machinery/vending/coffee, +/turf/unsimulated/floor/steel, +/area/tdome/tdomeobserve) +"jG" = ( +/obj/machinery/shield_gen/external, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"jH" = ( +/obj/machinery/power/port_gen/pacman, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"jI" = ( +/obj/machinery/computer/pod{ + id = "thunderdomeaxe"; + name = "Thunderdome Axe Supply" + }, +/turf/unsimulated/floor/steel, +/area/tdome/tdomeadmin) +"jJ" = ( +/obj/structure/table/reinforced, +/obj/item/device/camera, +/obj/item/weapon/storage/box/ids, +/obj/effect/floor_decal/borderfloorblack{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Residential Security" + }) +"jL" = ( +/obj/machinery/cell_charger, +/obj/structure/table/reinforced, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"jN" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/bed/chair/shuttle, +/turf/simulated/shuttle/floor{ + icon_state = "floor_red" + }, +/area/shuttle/escape) +"jO" = ( +/obj/effect/floor_decal/rust, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/centcom/evac) +"jQ" = ( +/obj/effect/fancy_shuttle/orangeline{ + dir = 1; + fancy_shuttle_tag = "tram" + }, +/obj/effect/fancy_shuttle_floor_preview/orangeline{ + dir = 1; + plane = -45 + }, +/turf/simulated/wall/fancy_shuttle{ + fancy_shuttle_tag = "tram" + }, +/area/centcom/terminal/tramfluff) +"jW" = ( +/obj/machinery/airlock_sensor{ + dir = 4; + pixel_x = -24 + }, +/obj/effect/map_helper/airlock/sensor/int_sensor, +/turf/simulated/floor/tiled/eris/dark/cargo, +/area/shuttle/ccboat) +"kd" = ( +/obj/machinery/computer/pod{ + id = "thunderdomehea"; + name = "Thunderdome Heavy Supply" + }, +/turf/unsimulated/floor/steel, +/area/tdome/tdomeadmin) +"ke" = ( +/obj/machinery/computer/pod{ + id = "thunderdome"; + name = "Thunderdome Blast Door Control" + }, +/turf/unsimulated/floor/steel, +/area/tdome/tdomeadmin) +"kf" = ( +/obj/machinery/camera/network/crescent{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"kg" = ( +/obj/machinery/door/airlock/centcom{ + name = "Private"; + req_access = list(105) + }, +/turf/simulated/floor/tiled, +/area/centcom/control) +"kh" = ( +/obj/item/weapon/melee/baton/cattleprod, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/control) +"ki" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"kj" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled{ + icon_state = "white" + }, +/area/centcom/control) +"kk" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"kl" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/turf/simulated/floor/tiled{ + icon_state = "white" + }, +/area/tdome/tdomeobserve) +"km" = ( +/obj/machinery/vending/snack, +/turf/unsimulated/floor/steel, +/area/tdome/tdomeobserve) +"kn" = ( +/obj/structure/closet/secure_closet/personal, +/turf/simulated/floor/carpet, +/area/centcom/control) +"ko" = ( +/obj/effect/floor_decal/corner/yellow/diagonal, +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/obj/machinery/vending/snack, +/turf/simulated/floor/tiled, +/area/centcom/control) +"kp" = ( +/obj/item/weapon/folder/white, +/obj/structure/table/standard, +/obj/item/weapon/disk/tech_disk, +/obj/item/weapon/disk/tech_disk, +/obj/item/weapon/disk/design_disk, +/obj/item/weapon/disk/design_disk, +/obj/item/weapon/reagent_containers/dropper{ + pixel_y = -4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 10 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"kq" = ( +/obj/machinery/shield_capacitor, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"kr" = ( +/obj/structure/table/standard, +/obj/item/weapon/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/item/weapon/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/machinery/cell_charger, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/purple/border, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"ks" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/machinery/appliance/cooker/oven, +/turf/simulated/floor/tiled/white, +/area/centcom/bar) +"kt" = ( +/obj/structure/table/rack, +/obj/item/rig_module/mounted/egun, +/obj/item/rig_module/mounted/egun, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"kz" = ( +/obj/effect/floor_decal/industrial/warning/dust/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/centcom/evac) +"kC" = ( +/obj/effect/floor_decal/borderfloorwhite/corner, +/obj/effect/floor_decal/corner/green/bordercorner, +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"kD" = ( +/obj/effect/floor_decal/emblem/stellardelight/center, +/turf/simulated/shuttle/floor/white, +/area/shuttle/escape) +"kH" = ( +/obj/structure/table/rack, +/obj/item/rig_module/mounted/taser, +/obj/item/rig_module/mounted/taser, +/obj/item/rig_module/mounted/taser, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"kI" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/item/rig_module/rescue_pharm, +/obj/item/rig_module/sprinter, +/obj/item/rig_module/sprinter, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"kJ" = ( +/obj/machinery/door/airlock/centcom{ + name = "General Access"; + req_access = list(101) + }, +/turf/simulated/floor/tiled, +/area/centcom/control) +"kK" = ( +/obj/structure/table/standard, +/obj/structure/reagent_dispensers/acid{ + pixel_y = -30 + }, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/purple/border, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"kM" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/purple/border, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/purple/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"kN" = ( +/obj/structure/closet/crate, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/item/weapon/storage/box, +/obj/item/weapon/storage/box, +/obj/item/weapon/storage/box, +/obj/item/weapon/storage/box, +/obj/item/weapon/storage/box, +/obj/item/weapon/storage/box, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"kO" = ( +/obj/machinery/autolathe{ + desc = "Your typical Autolathe. It appears to have much more options than your regular one, however..."; + hacked = 1; + name = "Unlocked Autolathe" + }, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"kP" = ( +/obj/structure/table/glass, +/obj/item/weapon/reagent_containers/glass/bottle/biomass{ + pixel_x = -4; + pixel_y = 8 + }, +/obj/item/weapon/reagent_containers/glass/bottle/biomass{ + pixel_x = -3; + pixel_y = -2 + }, +/obj/item/weapon/reagent_containers/glass/bottle/biomass{ + pixel_x = 3; + pixel_y = 5 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"kQ" = ( +/obj/structure/sign/painting/public{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"kR" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"kS" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/blue/bordercorner2, +/turf/simulated/floor/tiled, +/area/centcom/command) +"kT" = ( +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tram" + }, +/obj/structure/bed/chair/sofa/bench/right{ + dir = 4; + padding_color = "#99AAFF" + }, +/turf/simulated/floor/tiled, +/area/centcom/terminal/tramfluff) +"kX" = ( +/turf/simulated/wall/rshull, +/area/shuttle/ccboat) +"lb" = ( +/obj/item/weapon/storage/box/donkpockets{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/storage/box/donkpockets{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/storage/box/donkpockets{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/storage/box/donkpockets{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/structure/table/standard, +/turf/simulated/floor/tiled{ + icon_state = "white" + }, +/area/tdome/tdomeobserve) +"lc" = ( +/obj/structure/table/standard, +/obj/machinery/microwave, +/turf/simulated/floor/tiled{ + icon_state = "white" + }, +/area/tdome/tdomeobserve) +"ld" = ( +/obj/structure/dispenser/oxygen, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"le" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"lf" = ( +/obj/structure/table/rack, +/obj/item/weapon/tank/emergency/oxygen/double, +/obj/item/weapon/tank/emergency/oxygen/double, +/obj/item/weapon/tank/emergency/oxygen/double, +/obj/item/weapon/tank/emergency/oxygen/double, +/obj/item/weapon/tank/emergency/oxygen/double, +/obj/item/weapon/tank/emergency/oxygen/double, +/obj/item/weapon/tank/emergency/oxygen/double, +/obj/item/weapon/tank/emergency/oxygen/double, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"lg" = ( +/obj/machinery/door/airlock/glass_security{ + name = "Colonial Security Airlock"; + req_access = list(63) + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"lh" = ( +/obj/item/device/camera, +/turf/unsimulated/floor/steel, +/area/tdome/tdomeobserve) +"lj" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/bathroom) +"lm" = ( +/obj/machinery/door/airlock/glass_research{ + name = "Research and Development"; + req_access = list(7) + }, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"ln" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 6 + }, +/obj/structure/table/reinforced, +/obj/machinery/computer/skills, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"lo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/turf/simulated/wall/rshull, +/area/shuttle/ccboat) +"lu" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/shuttle/floor/white, +/area/shuttle/escape) +"lw" = ( +/obj/structure/table/standard, +/obj/machinery/recharger, +/obj/item/device/flash, +/turf/simulated/floor/tiled, +/area/centcom/control) +"lx" = ( +/obj/machinery/door/airlock/angled_bay/external/glass{ + door_color = "#822a1e"; + frequency = 1380; + id_tag = "supply_shuttle_hatch"; + locked = 1; + name = "Shuttle Hatch" + }, +/obj/machinery/conveyor{ + id = "cargoload" + }, +/turf/simulated/shuttle/floor, +/area/shuttle/supply) +"ly" = ( +/obj/machinery/camera/network/crescent, +/turf/simulated/floor/tiled, +/area/centcom/control) +"lz" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-08" + }, +/turf/simulated/floor/tiled, +/area/centcom/control) +"lA" = ( +/obj/structure/closet/firecloset, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"lC" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 27 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"lD" = ( +/obj/structure/bed/chair/office/dark, +/obj/machinery/button/remote/blast_door{ + desc = "A remote control switch for port-side blast doors."; + id = "CentComPort"; + name = "Security Doors"; + pixel_x = -12; + pixel_y = -25; + req_access = list(101) + }, +/turf/simulated/floor/tiled, +/area/centcom/control) +"lE" = ( +/obj/structure/sink{ + pixel_y = 16 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"lF" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"lL" = ( +/obj/machinery/door/blast/angled/open{ + id = "ccshuttleshutter" + }, +/obj/machinery/shipsensors{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/ccboat) +"lM" = ( +/turf/simulated/wall/r_wall, +/area/shuttle/centcom/ccbay) +"lR" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 6 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2, +/obj/effect/floor_decal/corner/green/bordercorner2, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"lS" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/green/border, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/green/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"lT" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/green/border, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"lU" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 6 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"lV" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-21" + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 9 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/bordercorner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/purple/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"lW" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/simulated/floor/tiled, +/area/centcom/control) +"lX" = ( +/obj/machinery/door/airlock{ + name = "Prison Showers" + }, +/turf/simulated/floor/tiled/freezer, +/area/centcom/security) +"lZ" = ( +/obj/structure/sign/painting/public{ + pixel_x = 30 + }, +/turf/simulated/floor/carpet, +/area/centcom/restaurant) +"mc" = ( +/obj/machinery/door/airlock/angled_bay/standard/glass{ + door_color = "#9fccc7"; + name = "Cockpit"; + req_access = list(67); + stripe_color = "#ffffff" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/shuttle/ccboat) +"md" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor, +/area/centcom/control) +"me" = ( +/obj/structure/table/rack, +/obj/item/clothing/under/color/red, +/obj/item/clothing/shoes/brown, +/obj/item/weapon/melee/energy/axe, +/turf/unsimulated/floor/techfloor_grid, +/area/tdome/tdome1) +"mf" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/sign/nanotrasen{ + plane = -34 + }, +/turf/simulated/floor, +/area/centcom/control) +"mg" = ( +/obj/structure/table/rack, +/obj/item/clothing/under/color/green, +/obj/item/clothing/shoes/brown, +/obj/item/weapon/melee/energy/axe, +/turf/unsimulated/floor/techfloor_grid, +/area/tdome/tdome1) +"mh" = ( +/obj/machinery/door/airlock/research{ + id_tag = "researchdoor"; + name = "Research Division Access"; + req_access = list(47) + }, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"mi" = ( +/obj/machinery/door/blast/regular{ + id = "CentComPort"; + name = "Security Doors" + }, +/turf/simulated/floor/tiled, +/area/centcom/control) +"mj" = ( +/obj/machinery/door/airlock/glass_research{ + name = "Robotics Lab"; + req_access = list(29,47) + }, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"mk" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/weapon/pen, +/turf/simulated/floor/tiled, +/area/centcom/control) +"ml" = ( +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/control) +"mp" = ( +/obj/machinery/atmospherics/portables_connector/fuel{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/phoron, +/obj/effect/floor_decal/industrial/outline/red, +/obj/machinery/door/window/southright{ + dir = 8; + req_one_access = list(11,67) + }, +/turf/simulated/floor/tiled/eris/dark/cargo, +/area/shuttle/ccboat) +"mq" = ( +/obj/machinery/power/emitter, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/control) +"mr" = ( +/obj/structure/closet/l3closet/scientist, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"ms" = ( +/obj/structure/closet/emcloset, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/camera/network/crescent{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"mt" = ( +/obj/structure/curtain/open/shower, +/obj/machinery/shower{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"mu" = ( +/obj/structure/closet/wardrobe/robotics_black, +/obj/item/device/radio/headset/headset_sci{ + pixel_x = -3 + }, +/turf/simulated/floor/tiled, +/area/centcom/control) +"mw" = ( +/obj/structure/table/marble, +/obj/item/weapon/reagent_containers/food/drinks/cup{ + pixel_x = 8; + pixel_y = 8 + }, +/obj/item/weapon/reagent_containers/food/drinks/cup{ + pixel_x = -4; + pixel_y = 8 + }, +/obj/item/weapon/reagent_containers/food/drinks/cup{ + pixel_x = 3 + }, +/obj/item/weapon/reagent_containers/food/drinks/cup{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/item/weapon/reagent_containers/food/drinks/cup{ + pixel_x = 8 + }, +/obj/item/weapon/reagent_containers/food/drinks/cup{ + pixel_x = -4 + }, +/obj/item/weapon/reagent_containers/food/drinks/cup{ + pixel_x = 8; + pixel_y = 12 + }, +/obj/item/weapon/reagent_containers/food/drinks/cup{ + pixel_x = -4; + pixel_y = 12 + }, +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/diagonal, +/turf/simulated/floor/tiled, +/area/centcom/control) +"mC" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor, +/area/shuttle/ccboat) +"mF" = ( +/obj/effect/floor_decal/emblem/orangeline{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/centcom/terminal) +"mG" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/centcom/terminal) +"mI" = ( +/obj/structure/table/marble, +/obj/machinery/chemical_dispenser/bar_coffee/full, +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/diagonal, +/turf/simulated/floor/tiled, +/area/centcom/control) +"mJ" = ( +/obj/machinery/vending/cola, +/obj/effect/floor_decal/corner/yellow/diagonal, +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/centcom/control) +"mK" = ( +/obj/machinery/vending/cigarette, +/obj/effect/floor_decal/corner/yellow/diagonal, +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/centcom/control) +"mL" = ( +/obj/machinery/mech_recharger, +/turf/simulated/floor, +/area/centcom/control) +"mM" = ( +/obj/machinery/autolathe{ + desc = "Your typical Autolathe. It appears to have much more options than your regular one, however..."; + hacked = 1; + name = "Centcom Autolathe" + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 9 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"mP" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/belt/utility, +/obj/item/clothing/gloves/sterile/latex, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"mQ" = ( +/obj/structure/table/standard, +/obj/random/forgotten_tram, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tram" + }, +/turf/simulated/floor/tiled, +/area/centcom/terminal/tramfluff) +"mR" = ( +/obj/structure/table/rack, +/obj/item/clothing/under/color/red, +/obj/item/clothing/shoes/brown, +/obj/item/clothing/suit/armor/tdome/red, +/obj/item/clothing/head/helmet/thunderdome, +/obj/item/weapon/melee/baton/loaded, +/obj/item/weapon/melee/energy/sword/red, +/turf/unsimulated/floor/techfloor_grid, +/area/tdome/tdome1) +"mX" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "TelelockdownC"; + name = "Security Doors"; + opacity = 0 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/living) +"na" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + dir = 8; + frequency = 1380; + id_tag = "centcom_port_dock"; + name = "docking port controller"; + pixel_x = 24; + req_one_access = list(13) + }, +/turf/simulated/floor/reinforced, +/area/centcom) +"nd" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"ne" = ( +/obj/machinery/camera/network/crescent, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"nf" = ( +/obj/structure/table/standard, +/obj/item/weapon/hand_labeler, +/obj/item/weapon/pen, +/obj/item/weapon/packageWrap, +/obj/item/weapon/packageWrap, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"ni" = ( +/obj/structure/bed/chair/comfy/teal{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/centcom/command) +"nk" = ( +/obj/structure/table/reinforced, +/turf/simulated/floor/tiled{ + icon_state = "white" + }, +/area/tdome/tdomeobserve) +"nl" = ( +/obj/effect/floor_decal/industrial/outline, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"nn" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/brigdoor{ + req_access = list(63); + req_one_access = list(1) + }, +/obj/item/weapon/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/weapon/pen, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"nw" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/centcom/living) +"nx" = ( +/obj/machinery/teleport/hub, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"nz" = ( +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tram" + }, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/machinery/light, +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled, +/area/centcom/terminal/tramfluff) +"nB" = ( +/obj/item/weapon/stock_parts/console_screen, +/obj/structure/table/standard, +/obj/item/weapon/stock_parts/console_screen, +/obj/item/weapon/stock_parts/console_screen, +/obj/item/weapon/stock_parts/matter_bin, +/obj/item/weapon/stock_parts/matter_bin, +/obj/machinery/recharger, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 5 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"nC" = ( +/obj/machinery/camera/network/crescent{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/centcom/control) +"nD" = ( +/obj/machinery/autolathe{ + desc = "Your typical Autolathe. It appears to have much more options than your regular one, however..."; + hacked = 1; + name = "Centcom Autolathe" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"nG" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/centcom/living) +"nI" = ( +/obj/machinery/light/spot, +/turf/simulated/floor/tiled, +/area/centcom/evac) +"nJ" = ( +/obj/item/modular_computer/console/preset/command{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/centcom/control) +"nK" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/tiled, +/area/shuttle/centcom/ccbay) +"nL" = ( +/obj/machinery/computer/rdconsole/robotics, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"nM" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/machinery/computer/cryopod/dorms{ + name = "Company Property Retention System"; + pixel_x = -28 + }, +/turf/simulated/floor/tiled, +/area/centcom/living) +"nN" = ( +/obj/structure/bed/chair/comfy/teal, +/turf/simulated/floor/carpet, +/area/centcom/command) +"nQ" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/turf/simulated/floor/tiled/white, +/area/centcom/bar) +"nW" = ( +/obj/structure/table/marble, +/obj/machinery/door/blast/shutters{ + dir = 2; + id = "kitchenC"; + layer = 3.3; + name = "Kitchen Shutters" + }, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"nX" = ( +/obj/machinery/door/airlock/glass, +/turf/simulated/floor/tiled, +/area/shuttle/centcom/ccbay) +"nZ" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/machinery/appliance/cooker/grill, +/turf/simulated/floor/tiled/white, +/area/centcom/bar) +"oa" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + id_tag = "centcom_dock"; + name = "docking port controller"; + pixel_y = 25; + req_one_access = list(13); + tag_door = "centcom_dock_airlock" + }, +/turf/simulated/floor/reinforced, +/area/centcom) +"ob" = ( +/obj/machinery/camera/network/crescent{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/orange/border, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/orange/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"oj" = ( +/obj/structure/bed/chair/sofa/bench/left{ + dir = 4; + padding_color = "#99AAFF" + }, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tram" + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/centcom/terminal/tramfluff) +"ol" = ( +/obj/effect/floor_decal/corner_steel_grid/diagonal, +/obj/effect/floor_decal/industrial/warning/dust/corner{ + dir = 4 + }, +/obj/machinery/light/flamp/noshade, +/turf/simulated/floor/tiled, +/area/centcom/evac) +"om" = ( +/obj/structure/table/glass, +/obj/machinery/chemical_dispenser/full, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"on" = ( +/obj/structure/table/glass, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/machinery/camera/network/crescent, +/obj/item/weapon/reagent_containers/glass/beaker/large, +/obj/item/weapon/reagent_containers/glass/beaker/large, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"oo" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/machinery/door/airlock/glass{ + name = "Kitchen"; + req_access = list(28) + }, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"op" = ( +/obj/machinery/transhuman/synthprinter, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"oq" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 10 + }, +/obj/machinery/computer/transhuman/resleeving, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"os" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/box/bodybags{ + pixel_x = -1; + pixel_y = -2 + }, +/turf/simulated/floor/tiled, +/area/centcom/control) +"ot" = ( +/obj/structure/table/standard, +/obj/machinery/computer/skills{ + pixel_y = 2 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/centcom/command) +"ov" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/structure/flora/pottedplant{ + icon_state = "plant-22" + }, +/turf/simulated/floor/tiled, +/area/centcom/command) +"ow" = ( +/obj/structure/table/standard, +/obj/machinery/computer/skills{ + pixel_y = 2 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/centcom/command) +"ox" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/turf/simulated/floor/tiled, +/area/centcom/command) +"oy" = ( +/obj/structure/reagent_dispensers/water_cooler/full, +/turf/simulated/floor/lino, +/area/centcom/command) +"oz" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/structure/flora/pottedplant{ + icon_state = "plant-22" + }, +/obj/machinery/newscaster{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled, +/area/centcom/command) +"oA" = ( +/obj/machinery/newscaster{ + pixel_y = 30 + }, +/turf/simulated/floor/lino, +/area/centcom/command) +"oC" = ( +/obj/machinery/gibber, +/turf/simulated/floor/tiled/white, +/area/centcom/bar) +"oE" = ( +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/effect/landmark{ + name = "tdome2" + }, +/turf/unsimulated/floor/techfloor_grid, +/area/tdome/tdome1) +"oF" = ( +/obj/machinery/status_display{ + pixel_y = 30 + }, +/turf/simulated/floor/lino, +/area/centcom/command) +"oG" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/turf/simulated/floor/lino, +/area/centcom/command) +"oI" = ( +/obj/machinery/camera/network/crescent, +/turf/simulated/floor/lino, +/area/centcom/command) +"oL" = ( +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/effect/landmark{ + name = "tdome1" + }, +/turf/unsimulated/floor/techfloor_grid, +/area/tdome/tdome1) +"oM" = ( +/obj/machinery/r_n_d/circuit_imprinter, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/item/weapon/book/manual/robotics_cyborgs{ + pixel_x = 2; + pixel_y = 5 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"oN" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/centcom/control) +"oQ" = ( +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tram" + }, +/obj/machinery/status_display{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled, +/area/centcom/terminal/tramfluff) +"oS" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/simulated/floor/tiled/freezer, +/area/centcom/security) +"oT" = ( +/obj/machinery/light, +/turf/simulated/shuttle/floor, +/area/shuttle/supply) +"oU" = ( +/obj/machinery/computer/secure_data{ + dir = 1 + }, +/turf/simulated/shuttle/floor, +/area/shuttle/escape) +"oX" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 9 + }, +/obj/machinery/turretid/stun{ + check_access = 0; + check_anomalies = 0; + check_records = 0; + control_area = "\improper CentCom Living Quarters"; + pixel_y = 32; + req_access = list(101); + req_one_access = list(101) + }, +/turf/simulated/floor/tiled, +/area/centcom/living) +"oY" = ( +/obj/effect/floor_decal/derelict/d2, +/turf/simulated/floor/tiled, +/area/centcom/evac) +"pb" = ( +/obj/item/modular_computer/console/preset/command{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + broadcasting = 1; + dir = 4; + frequency = 1443; + listening = 0; + name = "Spec Ops Intercom"; + pixel_x = 24 + }, +/turf/simulated/floor/tiled, +/area/centcom/control) +"pk" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "reinforced"; + name = "reinforced floor" + }, +/area/centcom) +"pl" = ( +/obj/effect/floor_decal/emblem/stellardelight{ + dir = 4 + }, +/turf/simulated/shuttle/floor/white, +/area/shuttle/escape) +"pq" = ( +/obj/machinery/computer/secure_data, +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 1 + }, +/obj/machinery/camera/network/crescent, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Residential Security" + }) +"pu" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/centcom/evac) +"px" = ( +/obj/machinery/camera/network/crescent, +/obj/structure/table/reinforced, +/turf/simulated/floor/tiled, +/area/centcom/control) +"py" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/simulated/floor/tiled, +/area/centcom/control) +"pz" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor/orange{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/centcom/terminal) +"pC" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/centcom/evac) +"pF" = ( +/obj/structure/closet{ + name = "materials" + }, +/obj/item/stack/material/steel{ + amount = 50 + }, +/obj/item/stack/material/steel{ + amount = 50 + }, +/obj/item/stack/material/steel{ + amount = 50 + }, +/obj/item/stack/material/steel{ + amount = 50 + }, +/obj/item/stack/material/steel{ + amount = 50 + }, +/obj/item/stack/material/glass{ + amount = 50; + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/stack/material/glass{ + amount = 50; + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/stack/material/glass{ + amount = 50; + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/stack/material/glass{ + amount = 50; + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/stack/material/plasteel{ + amount = 10 + }, +/obj/machinery/camera/network/crescent, +/turf/simulated/floor/tiled, +/area/centcom/control) +"pG" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/centcom/command) +"pI" = ( +/obj/structure/bed/chair/shuttle{ + dir = 1 + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_red" + }, +/area/shuttle/escape) +"pJ" = ( +/obj/machinery/camera/network/crescent, +/turf/simulated/floor/tiled/dark, +/area/centcom/control) +"pN" = ( +/obj/structure/closet/crate/freezer, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"pO" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/dark/cargo, +/area/shuttle/ccboat) +"pZ" = ( +/obj/structure/bed/chair/shuttle{ + dir = 1 + }, +/obj/effect/floor_decal/emblem/stellardelight{ + dir = 5 + }, +/turf/simulated/shuttle/floor/white, +/area/shuttle/escape) +"qc" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"qf" = ( +/obj/structure/table/standard, +/obj/item/device/mmi, +/turf/simulated/floor/tiled, +/area/centcom/control) +"qg" = ( +/obj/effect/landmark{ + name = "tdome2" + }, +/obj/machinery/camera/network/thunder{ + invisibility = 101 + }, +/turf/unsimulated/floor/techfloor_grid, +/area/tdome/tdome1) +"qh" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/centcom/command) +"qk" = ( +/obj/machinery/telecomms/allinone/antag{ + intercept = 1 + }, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"ql" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/centcom/evac) +"qo" = ( +/obj/machinery/flasher{ + id = "flash"; + name = "Thunderdome Flash" + }, +/turf/unsimulated/floor/techfloor_grid, +/area/tdome) +"qp" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/item/weapon/folder/blue_captain, +/turf/simulated/floor/carpet, +/area/centcom/command) +"qq" = ( +/obj/effect/landmark{ + name = "tdome1" + }, +/obj/machinery/camera/network/thunder{ + invisibility = 101 + }, +/turf/unsimulated/floor/techfloor_grid, +/area/tdome/tdome1) +"qs" = ( +/obj/effect/floor_decal/derelict/d13, +/turf/simulated/floor/tiled, +/area/centcom/evac) +"qz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/turf/simulated/wall/rshull, +/area/shuttle/ccboat) +"qB" = ( +/obj/structure/table/reinforced, +/turf/simulated/floor/tiled, +/area/centcom/control) +"qE" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"qK" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/reinforced, +/area/centcom) +"qQ" = ( +/obj/effect/floor_decal/derelict/d9, +/turf/simulated/floor/tiled, +/area/centcom/evac) +"qR" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/weapon/pen, +/obj/machinery/button/remote/blast_door{ + id = "TelelockdownC"; + name = "Teleporter Entrance Lockdown"; + pixel_x = 6; + pixel_y = -5; + req_access = list(63); + req_one_access = list(1) + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "TelelockdownC"; + name = "Security Door"; + opacity = 0 + }, +/obj/machinery/door/window/brigdoor/northleft{ + req_access = list(63); + req_one_access = list(1) + }, +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Residential Security" + }) +"qT" = ( +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tram" + }, +/obj/structure/bed/chair/sofa/bench{ + dir = 8; + padding_color = "#99AAFF" + }, +/turf/simulated/floor/tiled, +/area/centcom/terminal/tramfluff) +"qU" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"qZ" = ( +/obj/machinery/body_scanconsole{ + dir = 4 + }, +/turf/simulated/shuttle/floor/white, +/area/shuttle/escape) +"rc" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/borderfloor, +/turf/simulated/floor/tiled, +/area/centcom/command) +"rd" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/structure/closet/crate/bin, +/turf/simulated/floor/tiled, +/area/centcom/command) +"rf" = ( +/obj/structure/table/standard, +/obj/machinery/computer/skills{ + pixel_y = 2 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/centcom/command) +"rg" = ( +/obj/machinery/camera/network/crescent, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Residential Security" + }) +"ri" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/paper_bin{ + pixel_y = 5 + }, +/obj/item/weapon/pen/multi, +/turf/simulated/floor/tiled, +/area/centcom/control) +"rj" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/centcom/control) +"rl" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/structure/table/marble, +/obj/item/weapon/book/manual/chef_recipes, +/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{ + pixel_x = -3 + }, +/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{ + pixel_x = 3 + }, +/obj/item/weapon/material/kitchen/rollingpin, +/obj/item/weapon/material/knife/butch, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"rm" = ( +/turf/simulated/floor/lino, +/area/centcom/command) +"rr" = ( +/obj/machinery/door/airlock/freezer{ + name = "Kitchen cold room"; + req_access = list(28) + }, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"rz" = ( +/obj/structure/kitchenspike, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"rA" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/shuttle/centcom/ccbay) +"rI" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "reinforced"; + name = "reinforced floor" + }, +/area/centcom) +"rM" = ( +/obj/structure/bed/chair/shuttle, +/turf/simulated/shuttle/floor, +/area/shuttle/escape) +"rQ" = ( +/obj/structure/bed/chair/shuttle{ + dir = 4 + }, +/turf/simulated/shuttle/floor, +/area/shuttle/escape) +"rU" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + id_tag = "escape_shuttle"; + pixel_y = 25; + req_one_access = list(13); + tag_door = "escape_shuttle_hatch" + }, +/obj/structure/bed/chair/shuttle{ + dir = 4 + }, +/turf/simulated/shuttle/floor, +/area/shuttle/escape) +"rZ" = ( +/obj/structure/table/standard, +/obj/item/weapon/surgical/circular_saw, +/obj/item/weapon/surgical/scalpel{ + pixel_y = 12 + }, +/obj/item/weapon/surgical/hemostat, +/obj/item/weapon/surgical/retractor, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/tiled{ + icon_state = "white" + }, +/area/centcom/control) +"sb" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"sc" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"se" = ( +/obj/effect/floor_decal/rust/mono_rusted3, +/turf/simulated/floor/tiled, +/area/centcom/evac) +"sf" = ( +/obj/structure/flora/pottedplant, +/turf/simulated/floor/tiled, +/area/centcom/command) +"sg" = ( +/obj/structure/table/glass, +/obj/machinery/computer/skills{ + pixel_y = 2 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/centcom/command) +"sh" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-10" + }, +/turf/simulated/floor/tiled, +/area/centcom/command) +"si" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/tiled{ + icon_state = "white" + }, +/area/centcom/control) +"sj" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/centcom/control) +"sk" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/centcom/evac) +"su" = ( +/obj/effect/floor_decal/derelict/d12, +/turf/simulated/floor/tiled, +/area/centcom/evac) +"sw" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/centcom/control) +"sz" = ( +/obj/machinery/door/airlock/security{ + name = "Security" + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"sB" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/centcom/terminal) +"sC" = ( +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/blue/bordercorner, +/turf/simulated/floor/tiled, +/area/centcom/security) +"sD" = ( +/obj/machinery/door/airlock/security{ + name = "Security" + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/command) +"sE" = ( +/obj/machinery/camera/network/thunder{ + alpha = 0; + invisibility = 101 + }, +/turf/unsimulated/floor/techfloor_grid, +/area/tdome) +"sH" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/centcom/command) +"sI" = ( +/obj/machinery/computer/communications{ + dir = 1 + }, +/turf/simulated/shuttle/floor, +/area/shuttle/escape) +"sO" = ( +/obj/structure/reagent_dispensers/water_cooler/full, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"sP" = ( +/obj/machinery/mecha_part_fabricator, +/turf/simulated/floor/tiled, +/area/centcom/control) +"sR" = ( +/obj/machinery/scale, +/turf/simulated/floor/tiled/freezer, +/area/centcom/bathroom) +"sS" = ( +/obj/effect/shuttle_landmark/transit{ + base_area = /area/centcom; + base_turf = /turf/simulated/floor/reinforced; + docking_controller = "centcom_starboard_dock"; + landmark_tag = "starboard_escape_cc"; + name = "Starboard Escape Centcom" + }, +/turf/simulated/floor/reinforced, +/area/centcom) +"sW" = ( +/obj/structure/table/rack, +/obj/item/weapon/gun/projectile/automatic/pdw, +/obj/item/weapon/gun/projectile/automatic/pdw, +/obj/item/weapon/gun/projectile/automatic/pdw, +/obj/item/weapon/gun/projectile/automatic/pdw, +/obj/item/weapon/gun/projectile/automatic/pdw, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"sX" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/tiled, +/area/centcom/control) +"sY" = ( +/obj/machinery/button/remote/blast_door{ + id = "ArmouryC4"; + name = "Armoury Access"; + pixel_y = -28; + req_access = list(3) + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/control) +"th" = ( +/obj/structure/table/marble, +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/machinery/appliance/mixer/cereal, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"tk" = ( +/obj/machinery/computer/rdservercontrol{ + badmin = 1; + dir = 8; + name = "Master R&D Server Controller" + }, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"tp" = ( +/obj/structure/table/glass, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/centcom/command) +"tq" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/centcom/terminal) +"ts" = ( +/obj/structure/closet/athletic_mixed, +/turf/simulated/floor/tiled, +/area/centcom/bathroom) +"tw" = ( +/obj/structure/closet/crate/freezer, +/turf/simulated/floor/tiled/white, +/area/centcom/bar) +"tx" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/turf/simulated/floor/tiled/freezer, +/area/centcom/bathroom) +"tB" = ( +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/blue/border, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"tE" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/machinery/appliance/mixer/cereal, +/turf/simulated/floor/tiled/white, +/area/centcom/bar) +"tH" = ( +/obj/effect/floor_decal/derelict/d10, +/turf/simulated/floor/tiled, +/area/centcom/evac) +"tJ" = ( +/obj/effect/floor_decal/derelict/d5, +/turf/simulated/floor/tiled, +/area/centcom/evac) +"tK" = ( +/turf/unsimulated/floor/steel, +/area/centcom/control) +"tL" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/structure/table/marble, +/obj/machinery/reagentgrinder, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"tM" = ( +/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, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"tO" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-22" + }, +/turf/simulated/floor/tiled, +/area/centcom/command) +"tP" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/machinery/appliance/cooker/oven, +/obj/machinery/camera/network/crescent{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"tQ" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/machinery/appliance/cooker/grill, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"tU" = ( +/turf/simulated/floor/tiled, +/area/centcom/command) +"tW" = ( +/obj/machinery/fitness/punching_bag/clown, +/turf/simulated/floor/tiled/freezer, +/area/centcom/bathroom) +"tX" = ( +/obj/structure/table/standard, +/obj/machinery/light, +/obj/structure/closet/secure_closet/medical_wall{ + name = "anesthetic closet"; + pixel_x = -32; + req_access = list(29) + }, +/obj/item/weapon/tank/anesthetic, +/obj/item/weapon/tank/anesthetic, +/obj/item/weapon/tank/anesthetic, +/obj/item/clothing/mask/breath/medical, +/obj/item/clothing/mask/breath/medical, +/obj/item/clothing/mask/breath/medical, +/obj/item/weapon/storage/box/gloves, +/obj/item/device/defib_kit/jumper_kit, +/turf/simulated/floor/tiled{ + icon_state = "white" + }, +/area/centcom/control) +"tY" = ( +/turf/simulated/floor/tiled/freezer, +/area/centcom/bathroom) +"tZ" = ( +/obj/machinery/optable{ + name = "Robotics Operating Table" + }, +/turf/simulated/floor/tiled{ + icon_state = "white" + }, +/area/centcom/control) +"ua" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/computer/operating{ + dir = 1; + name = "Robotics Operating Computer" + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/tiled{ + icon_state = "white" + }, +/area/centcom/control) +"ub" = ( +/obj/machinery/transhuman/synthprinter, +/turf/simulated/floor/tiled, +/area/centcom/control) +"uf" = ( +/obj/machinery/computer/supplycomp{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/centcom/control) +"ug" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/centcom/control) +"uh" = ( +/mob/living/silicon/decoy{ + name = "A.L.I.C.E." + }, +/turf/simulated/floor/tiled, +/area/centcom/control) +"up" = ( +/obj/machinery/door/airlock/highsecurity{ + desc = "SHIT IS LIT"; + name = "TACTICAL TOILET"; + req_one_access = newlist() + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"uy" = ( +/obj/effect/floor_decal/emblem/orangeline, +/turf/simulated/floor/tiled, +/area/centcom/terminal) +"uz" = ( +/turf/unsimulated/floor/techfloor_grid, +/area/tdome/tdome1) +"uB" = ( +/obj/machinery/door/blast/regular, +/turf/unsimulated/floor/techfloor_grid, +/area/centcom/evac) +"uD" = ( +/obj/machinery/door/window{ + dir = 2; + name = "AI Core Door"; + req_access = list(109) + }, +/turf/simulated/floor/tiled, +/area/centcom/control) +"uE" = ( +/obj/effect/floor_decal/industrial/outline, +/obj/structure/bed/chair, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"uG" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/ammo_magazine/m545saw/ap, +/obj/item/ammo_magazine/m545saw/ap, +/obj/item/ammo_magazine/m545saw, +/obj/item/ammo_magazine/m545saw, +/obj/item/ammo_magazine/m545saw, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"uK" = ( +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tram" + }, +/obj/structure/closet/walllocker_double/hydrant/west, +/turf/simulated/floor/tiled, +/area/centcom/terminal/tramfluff) +"uL" = ( +/turf/unsimulated/wall, +/area/centcom/control) +"uP" = ( +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "residential"; + name = "Security Door"; + opacity = 0 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled, +/area/centcom/security{ + name = "\improper CentCom Residential Security" + }) +"uQ" = ( +/obj/structure/AIcore/deactivated, +/turf/simulated/shuttle/floor, +/area/shuttle/escape) +"uV" = ( +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tram" + }, +/obj/machinery/door/airlock/glass_external{ + frequency = 1380; + icon_state = "door_locked"; + id_tag = "escape_shuttle_hatch_offsite"; + locked = 1; + name = "Shuttle Hatch" + }, +/turf/simulated/floor/tiled, +/area/centcom/terminal/tramfluff) +"uX" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor, +/area/shuttle/ccboat) +"vb" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/weapon/gun/projectile/automatic/l6_saw, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"vc" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"vg" = ( +/obj/machinery/door/blast/regular{ + id = "HEAVY"; + name = "HEAVY ORDINANCE" + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"vh" = ( +/obj/structure/bed/chair/shuttle{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/shuttle/ccboat) +"vj" = ( +/obj/structure/table/rack, +/obj/item/clothing/gloves/arm_guard/riot, +/obj/item/clothing/shoes/leg_guard/riot, +/obj/item/clothing/suit/armor/riot/alt, +/obj/item/clothing/head/helmet/riot, +/obj/item/weapon/shield/riot, +/obj/item/weapon/melee/baton/loaded, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"vk" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/weapon/storage/box/shotgunammo/large, +/obj/item/weapon/storage/box/shotgunammo/large, +/obj/item/weapon/storage/box/shotgunammo/large, +/obj/item/weapon/storage/box/shotgunammo/large, +/obj/item/weapon/storage/box/shotgunammo/large, +/obj/item/weapon/storage/box/shotgunammo/large, +/obj/item/weapon/storage/box/shotgunammo/large, +/obj/item/weapon/storage/box/shotgunammo/large, +/obj/item/weapon/storage/box/shotgunammo/large, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"vl" = ( +/obj/machinery/door/airlock/angled_bay/standard/glass{ + door_color = "#9fccc7"; + name = "Airlock"; + req_access = null; + stripe_color = "#ffffff" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/shuttle/ccboat) +"vm" = ( +/obj/machinery/door/airlock/glass_mining{ + id_tag = "cargodoor"; + name = "Cargo Office"; + req_access = list(31); + req_one_access = list() + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled, +/area/centcom) +"vn" = ( +/obj/structure/table/rack, +/obj/item/clothing/gloves/arm_guard/laserproof, +/obj/item/clothing/shoes/leg_guard/laserproof, +/obj/item/clothing/suit/armor/laserproof, +/obj/item/clothing/head/helmet/laserproof, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/camera/network/crescent, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"vo" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/yellow/diagonal, +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/centcom/control) +"vp" = ( +/obj/machinery/computer/card, +/obj/effect/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Residential Security" + }) +"vq" = ( +/obj/structure/sign/painting/public{ + pixel_x = 30 + }, +/turf/simulated/floor/wood, +/area/centcom/restaurant) +"vs" = ( +/obj/machinery/vending/cigarette, +/turf/simulated/floor/carpet, +/area/centcom/restaurant) +"vu" = ( +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"vw" = ( +/obj/effect/floor_decal/industrial/outline, +/turf/simulated/floor/tiled, +/area/centcom/security{ + name = "\improper CentCom Residential Security" + }) +"vL" = ( +/obj/structure/curtain/open/shower, +/obj/machinery/shower{ + dir = 1 + }, +/turf/simulated/floor/tiled/freezer, +/area/centcom/security) +"vM" = ( +/obj/effect/floor_decal/industrial/warning/dust/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/centcom/evac) +"vO" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "reinforced"; + name = "reinforced floor" + }, +/area/centcom) +"vR" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-10" + }, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"vS" = ( +/obj/machinery/camera/network/crescent, +/turf/simulated/floor/wood, +/area/centcom/restaurant) +"vT" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/air, +/turf/simulated/floor/tiled/eris/dark/cargo, +/area/shuttle/ccboat) +"vU" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "cargounload" + }, +/turf/simulated/shuttle/floor, +/area/shuttle/supply) +"vV" = ( +/obj/effect/floor_decal/corner/yellow/diagonal, +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/centcom/control) +"vW" = ( +/obj/machinery/door/blast/regular{ + id = "thunderdomehea"; + name = "Heavy Supply" + }, +/turf/unsimulated/floor/techfloor_grid, +/area/tdome/tdome1) +"vZ" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 9 + }, +/obj/machinery/door/window/brigdoor/northleft{ + req_access = list(63); + req_one_access = list(1) + }, +/obj/item/weapon/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/weapon/pen, +/obj/machinery/button/remote/blast_door{ + id = "FrontlockC"; + name = "Colony Entrance Lockdown"; + pixel_x = 6; + pixel_y = -5; + req_access = list(63); + req_one_access = list(1) + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "FrontlockC2"; + name = "Security Door"; + opacity = 0 + }, +/obj/machinery/button/remote/blast_door{ + id = "FrontlockBD"; + name = "Colony Entrance Bottom"; + pixel_x = -3; + pixel_y = -5; + req_access = list(63); + req_one_access = list(1) + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Security Arrivals" + }) +"wa" = ( +/obj/machinery/atmospherics/unary/engine{ + dir = 1 + }, +/turf/simulated/floor/airless, +/area/shuttle/ccboat) +"wf" = ( +/obj/item/clothing/glasses/sunglasses/sechud/tactical, +/obj/item/clothing/gloves/tactical, +/obj/item/clothing/head/helmet/tactical, +/obj/item/clothing/mask/balaclava/tactical, +/obj/item/clothing/shoes/boots/tactical, +/obj/item/clothing/suit/armor/tactical, +/obj/item/clothing/under/tactical, +/obj/item/weapon/storage/belt/security/tactical, +/obj/structure/closet{ + desc = "It's a storage unit for standard-issue attire."; + name = "tactical equipment" + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/item/weapon/storage/backpack/dufflebag/syndie/ammo, +/obj/item/weapon/storage/backpack/satchel/sec, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"wg" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/weapon/storage/backpack/dufflebag/syndie/ammo, +/obj/item/weapon/storage/backpack/dufflebag/syndie/ammo, +/obj/item/weapon/storage/backpack/dufflebag/syndie/ammo, +/obj/item/weapon/storage/backpack/dufflebag/syndie/ammo, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"wh" = ( +/obj/structure/bed/chair/shuttle{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/shuttle/ccboat) +"wi" = ( +/obj/structure/table/rack, +/obj/item/clothing/under/color/red, +/obj/item/clothing/shoes/brown, +/obj/item/clothing/suit/armor/vest, +/obj/item/clothing/head/helmet/swat, +/obj/item/weapon/gun/energy/laser, +/turf/unsimulated/floor/techfloor_grid, +/area/tdome/tdome1) +"wj" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "reinforced"; + name = "reinforced floor" + }, +/area/centcom) +"wk" = ( +/obj/structure/table/rack, +/obj/item/clothing/under/color/green, +/obj/item/clothing/shoes/brown, +/obj/item/clothing/suit/armor/vest, +/obj/item/clothing/head/helmet/swat, +/obj/item/weapon/gun/energy/laser, +/turf/unsimulated/floor/techfloor_grid, +/area/tdome/tdome1) +"wn" = ( +/obj/effect/floor_decal/emblem/stellardelight{ + dir = 6 + }, +/turf/simulated/shuttle/floor/white, +/area/shuttle/escape) +"wo" = ( +/obj/machinery/door/airlock/centcom{ + name = "General Access"; + req_access = list(101) + }, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"ws" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"wt" = ( +/obj/machinery/newscaster{ + pixel_y = 30 + }, +/turf/simulated/floor/wood, +/area/centcom/restaurant) +"wu" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/centcom/control) +"wy" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"wz" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/firstaid/adv, +/obj/item/weapon/storage/firstaid/fire, +/obj/item/weapon/storage/firstaid/o2, +/obj/item/weapon/storage/firstaid/toxin, +/turf/simulated/shuttle/floor/white, +/area/shuttle/escape) +"wA" = ( +/obj/machinery/cryopod/robot/door/gateway, +/turf/simulated/floor/tiled/dark, +/area/centcom/living) +"wC" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/ammo_magazine/m95, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"wD" = ( +/obj/structure/sign/directions/elevator{ + pixel_x = -30 + }, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"wF" = ( +/obj/machinery/computer/robotics{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/centcom/control) +"wG" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/random/multiple/corp_crate, +/turf/simulated/floor/tiled, +/area/centcom) +"wO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/turf/simulated/wall/rshull, +/area/shuttle/ccboat) +"wP" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/snacks/cheeseburger{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/reagent_containers/food/snacks/cheeseburger, +/turf/simulated/floor/wood, +/area/centcom/restaurant) +"wT" = ( +/obj/structure/table/standard, +/obj/item/weapon/stock_parts/manipulator, +/obj/item/weapon/stock_parts/capacitor, +/obj/item/weapon/stock_parts/capacitor, +/obj/item/weapon/stock_parts/manipulator, +/obj/item/weapon/stock_parts/micro_laser, +/obj/item/weapon/stock_parts/micro_laser, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"wU" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"wX" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 5 + }, +/obj/machinery/door/window/brigdoor/northright{ + req_access = list(63); + req_one_access = list(1) + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "FrontlockC2"; + name = "Security Door"; + opacity = 0 + }, +/obj/machinery/computer/skills, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Security Arrivals" + }) +"wY" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/weapon/storage/box/sniperammo, +/obj/item/weapon/storage/box/sniperammo, +/obj/item/weapon/storage/box/sniperammo, +/obj/item/weapon/storage/box/sniperammo, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"xc" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/weapon/gun/projectile/heavysniper, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"xe" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/ammo_magazine/m9mmt, +/obj/item/ammo_magazine/m9mmt, +/obj/item/ammo_magazine/m9mmt, +/obj/item/ammo_magazine/m9mmt, +/obj/item/ammo_magazine/m9mmt, +/obj/item/ammo_magazine/m9mmt, +/obj/item/ammo_magazine/m9mmt, +/obj/item/ammo_magazine/m9mmt, +/obj/item/ammo_magazine/m9mmt, +/obj/item/ammo_magazine/m9mmt, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"xg" = ( +/obj/structure/closet/crate/bin, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/bathroom) +"xi" = ( +/obj/machinery/door/airlock{ + name = "Unit 1" + }, +/turf/simulated/floor/tiled/white, +/area/centcom/bathroom) +"xk" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/shuttle/centcom/ccbay) +"xt" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/ammo_magazine/m9mmt/rubber, +/obj/item/ammo_magazine/m9mmt/rubber, +/obj/item/ammo_magazine/m9mmt/rubber, +/obj/item/ammo_magazine/m9mmt/rubber, +/obj/item/ammo_magazine/m9mmt/rubber, +/obj/item/ammo_magazine/m9mmt/rubber, +/obj/item/ammo_magazine/m9mmt/rubber, +/obj/item/ammo_magazine/m9mmt/rubber, +/obj/item/ammo_magazine/m9mmt/rubber, +/obj/item/ammo_magazine/m9mmt/rubber, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"xu" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/ammo_magazine/m762, +/obj/item/ammo_magazine/m762, +/obj/item/ammo_magazine/m762, +/obj/item/ammo_magazine/m762, +/obj/item/ammo_magazine/m762, +/obj/item/ammo_magazine/m762, +/obj/item/ammo_magazine/m762/ap, +/obj/item/ammo_magazine/m762/ap, +/obj/item/ammo_magazine/m762/ap, +/obj/item/ammo_magazine/m762/ap, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"xw" = ( +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tram" + }, +/obj/structure/bed/chair/sofa/bench/left{ + dir = 4; + padding_color = "#99AAFF" + }, +/turf/simulated/floor/tiled, +/area/centcom/terminal/tramfluff) +"xz" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/weapon/gun/projectile/automatic/z8, +/obj/item/weapon/gun/projectile/automatic/z8, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"xB" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/turf/simulated/wall/rshull, +/area/shuttle/ccboat) +"xE" = ( +/obj/machinery/button/remote/blast_door{ + id = "HEAVY"; + name = "SHIT IS LIT"; + pixel_y = -28; + req_access = list(3) + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"xF" = ( +/obj/machinery/media/jukebox/hacked, +/turf/simulated/floor/wood, +/area/centcom/restaurant) +"xG" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"xH" = ( +/turf/simulated/floor/tiled/steel, +/area/centcom) +"xK" = ( +/turf/simulated/floor/carpet, +/area/centcom/restaurant) +"xP" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/machinery/button/remote/blast_door{ + id = "TelelockdownC"; + name = "Teleporter Full Lockdown"; + pixel_x = 6; + pixel_y = -5; + req_access = list(63); + req_one_access = list(1) + }, +/obj/item/weapon/pen, +/turf/simulated/floor/tiled, +/area/centcom/command) +"xQ" = ( +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tram" + }, +/obj/machinery/light, +/obj/structure/bed/chair/sofa/bench/right{ + dir = 4; + padding_color = "#99AAFF" + }, +/turf/simulated/floor/tiled, +/area/centcom/terminal/tramfluff) +"xR" = ( +/obj/structure/bed/chair/wood/wings{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/centcom/restaurant) +"xS" = ( +/obj/structure/table/standard, +/obj/item/device/mmi/digital/posibrain, +/obj/item/device/robotanalyzer, +/turf/simulated/floor/tiled, +/area/centcom/control) +"xU" = ( +/obj/machinery/door/airlock/security{ + name = "Security" + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Residential Security" + }) +"xY" = ( +/obj/machinery/computer/card{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 9 + }, +/obj/item/device/radio/intercom{ + dir = 1; + frequency = 1475; + name = "Station Intercom (Security)"; + pixel_y = 27 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Security Arrivals" + }) +"yb" = ( +/obj/structure/bed/chair/shuttle{ + dir = 4 + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_red" + }, +/area/shuttle/escape) +"ye" = ( +/obj/effect/floor_decal/sign/dock/one, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/centcom/evac) +"yg" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/centcom/control) +"yh" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor, +/area/centcom/security{ + name = "\improper CentCom Security Arrivals" + }) +"yj" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/table/rack, +/obj/item/weapon/gun/energy/gun/nuclear, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"yy" = ( +/obj/machinery/door/airlock/angled_bay/standard/glass{ + door_color = "#8c1d11"; + name = "Security Glass"; + req_access = list(1); + stripe_color = "#d27428" + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_red" + }, +/area/shuttle/escape) +"yB" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/snacks/fries, +/turf/simulated/floor/wood, +/area/centcom/restaurant) +"yC" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/weapon/gun/energy/gun, +/obj/item/weapon/gun/energy/gun, +/obj/item/weapon/gun/energy/gun, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"yD" = ( +/obj/machinery/button/remote/blast_door{ + id = "ArmouryC2"; + name = "Armoury Access"; + pixel_y = -28; + req_access = list(3) + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"yE" = ( +/obj/machinery/door/blast/regular{ + dir = 8; + id = "ArmouryC2"; + layer = 3.3; + name = "Armoury" + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"yF" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 9 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 9 + }, +/obj/machinery/vending/snack, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"yG" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "reinforced"; + name = "reinforced floor" + }, +/area/centcom) +"yI" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/obj/machinery/vending/coffee, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"yM" = ( +/obj/machinery/computer/ship/engines/adv, +/turf/simulated/floor/tiled/eris/dark/cargo, +/area/shuttle/ccboat) +"yN" = ( +/turf/simulated/floor/grass, +/area/centcom/main_hall) +"yO" = ( +/obj/structure/bed/chair/wood/wings{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/centcom/restaurant) +"yR" = ( +/obj/machinery/sleeper{ + dir = 4 + }, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"yT" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/obj/machinery/camera/network/crescent, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"yU" = ( +/obj/structure/table/marble, +/obj/item/weapon/reagent_containers/food/drinks/glass2/square{ + pixel_x = 8; + pixel_y = 8 + }, +/obj/item/weapon/reagent_containers/food/drinks/glass2/square{ + pixel_y = 8 + }, +/obj/item/weapon/reagent_containers/food/drinks/glass2/square{ + pixel_x = -8; + pixel_y = 8 + }, +/obj/item/weapon/reagent_containers/food/drinks/glass2/square{ + pixel_x = 8; + pixel_y = 4 + }, +/obj/item/weapon/reagent_containers/food/drinks/glass2/square{ + pixel_y = 4 + }, +/obj/item/weapon/reagent_containers/food/drinks/glass2/square{ + pixel_x = -8; + pixel_y = 4 + }, +/turf/simulated/floor/wood, +/area/centcom/restaurant) +"yV" = ( +/obj/machinery/status_display{ + pixel_y = 29 + }, +/turf/simulated/floor/wood, +/area/centcom/restaurant) +"yX" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/green, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"yY" = ( +/obj/machinery/disease2/diseaseanalyser, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"yZ" = ( +/obj/machinery/disease2/incubator, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"za" = ( +/obj/effect/floor_decal/industrial/warning/dust/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/centcom/evac) +"ze" = ( +/turf/simulated/floor/tiled, +/area/centcom) +"zg" = ( +/obj/machinery/computer/ship/helm/adv, +/turf/simulated/floor/tiled/eris/dark/cargo, +/area/shuttle/ccboat) +"zi" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/centcom/terminal) +"zl" = ( +/obj/effect/floor_decal/industrial/warning/dust/corner, +/obj/machinery/light/flamp/noshade, +/turf/simulated/floor/tiled, +/area/centcom/evac) +"zn" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/bodyscanner{ + dir = 4 + }, +/turf/simulated/shuttle/floor/white, +/area/shuttle/escape) +"zo" = ( +/obj/structure/sign/painting/public{ + pixel_x = -30 + }, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"zq" = ( +/obj/structure/table/rack{ + dir = 4 + }, +/obj/item/clothing/suit/space/void/security, +/obj/item/clothing/suit/space/void/security, +/obj/item/clothing/head/helmet/space/void/security, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"zr" = ( +/obj/structure/flora/ausbushes/ppflowers, +/turf/simulated/floor/grass, +/area/centcom/main_hall) +"zt" = ( +/obj/machinery/door/airlock/angled_bay/standard/glass{ + door_color = "#ffffff"; + name = "Medical Glass"; + req_access = list(5); + stripe_color = "#5a96bb" + }, +/turf/simulated/shuttle/floor/white, +/area/shuttle/escape) +"zw" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "reinforced"; + name = "reinforced floor" + }, +/area/centcom) +"zy" = ( +/obj/effect/floor_decal/derelict/d11, +/turf/simulated/floor/tiled, +/area/centcom/evac) +"zD" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/suit_cycler/security{ + req_access = null + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"zF" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "reinforced"; + name = "reinforced floor" + }, +/area/centcom) +"zG" = ( +/obj/structure/bed/chair/wood/wings, +/turf/simulated/floor/wood, +/area/centcom/restaurant) +"zH" = ( +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tram" + }, +/obj/structure/bed/chair/sofa/bench/left{ + dir = 4; + padding_color = "#99AAFF" + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/centcom/terminal/tramfluff) +"zJ" = ( +/obj/structure/table/standard, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/stock_parts/scanning_module{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/weapon/stock_parts/scanning_module, +/obj/machinery/light{ + dir = 4 + }, +/obj/item/clothing/glasses/omnihud/rnd, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"zM" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"zR" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/shuttle/floor/white, +/area/shuttle/escape) +"zZ" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/reinforced, +/area/centcom) +"Ab" = ( +/obj/structure/table/rack, +/obj/item/weapon/gun/projectile/shotgun/pump/USDF, +/obj/item/weapon/gun/projectile/shotgun/pump/USDF, +/obj/item/weapon/gun/projectile/shotgun/pump/USDF, +/obj/item/weapon/gun/projectile/shotgun/pump/USDF, +/obj/item/weapon/gun/projectile/shotgun/pump/USDF, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Ac" = ( +/obj/structure/table/rack, +/obj/item/weapon/gun/projectile/automatic/wt550/lethal, +/obj/item/weapon/gun/projectile/automatic/wt550/lethal, +/obj/item/weapon/gun/projectile/automatic/wt550/lethal, +/obj/item/weapon/gun/projectile/automatic/wt550/lethal, +/obj/item/weapon/gun/projectile/automatic/wt550/lethal, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/camera/network/crescent, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Af" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 9 + }, +/obj/machinery/turretid/stun{ + check_access = 0; + check_anomalies = 0; + check_records = 0; + control_area = "\improper Main Hallway"; + pixel_y = 32; + req_access = list(101); + req_one_access = list(101) + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/command) +"Ag" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/structure/closet/secure_closet/nanotrasen_commander, +/obj/item/clothing/suit/armor/swat, +/obj/item/clothing/head/helmet/space/deathsquad{ + name = "swat helmet" + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/command) +"Ah" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/structure/table/woodentable, +/obj/item/weapon/storage/box/handcuffs, +/turf/simulated/floor/tiled/dark, +/area/centcom/command) +"Ak" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood, +/area/centcom/restaurant) +"Am" = ( +/turf/simulated/floor/wood, +/area/centcom/restaurant) +"An" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor, +/area/centcom/restaurant) +"Ao" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 10 + }, +/obj/structure/closet/secure_closet/nanotrasen_security, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Residential Security" + }) +"Au" = ( +/turf/simulated/floor/lino, +/area/centcom/restaurant) +"Av" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/l3closet/security, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Aw" = ( +/obj/structure/bed/chair/wood/wings{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/centcom/restaurant) +"AE" = ( +/obj/structure/table/rack, +/obj/item/clothing/mask/gas{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/clothing/mask/gas{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/gas{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/extinguisher_cabinet{ + pixel_x = 5; + pixel_y = 28 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"AF" = ( +/obj/structure/table/standard, +/obj/item/weapon/reagent_containers/food/drinks/bottle/small/beer, +/obj/item/weapon/reagent_containers/food/drinks/bottle/small/beer, +/obj/item/weapon/reagent_containers/food/drinks/bottle/small/beer, +/obj/item/weapon/flame/lighter/zippo, +/obj/item/weapon/storage/fancy/cigarettes, +/turf/unsimulated/floor/steel, +/area/tdome/tdomeobserve) +"AG" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/captain, +/turf/simulated/floor/carpet, +/area/centcom/control) +"AH" = ( +/obj/item/weapon/reagent_containers/food/drinks/cans/cola, +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/yellow/diagonal, +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/centcom/control) +"AI" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"AJ" = ( +/obj/structure/table/standard, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/pen/blue, +/turf/simulated/floor/tiled, +/area/centcom/control) +"AK" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/green/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"AL" = ( +/obj/machinery/button/remote/blast_door{ + id = "ccshuttleshutter"; + name = "Shutter Control"; + pixel_x = 17; + pixel_y = 27 + }, +/obj/structure/bed/chair/bay/shuttle{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/shuttle/ccboat) +"AO" = ( +/obj/structure/kitchenspike, +/turf/simulated/floor/tiled/white, +/area/centcom/bar) +"AR" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/dark/cargo, +/area/shuttle/ccboat) +"AS" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/bed/chair/shuttle, +/turf/simulated/shuttle/floor, +/area/shuttle/escape) +"AU" = ( +/obj/machinery/computer/station_alert{ + dir = 1 + }, +/turf/simulated/shuttle/floor, +/area/shuttle/escape) +"Bb" = ( +/obj/machinery/camera/network/crescent, +/turf/simulated/floor/tiled/freezer, +/area/centcom/security) +"Bc" = ( +/obj/machinery/camera/network/crescent{ + dir = 4 + }, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"Bf" = ( +/turf/simulated/floor/reinforced, +/area/centcom) +"Bj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/turf/simulated/floor/tiled/eris/dark/cargo, +/area/shuttle/ccboat) +"Bu" = ( +/obj/machinery/door/airlock/freezer{ + name = "Kitchen cold room"; + req_access = list(28) + }, +/turf/simulated/floor/tiled/white, +/area/centcom/bar) +"Bx" = ( +/turf/simulated/floor/tiled, +/area/shuttle/centcom/ccbay) +"Bz" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + dir = 8; + frequency = 1380; + id_tag = "centcom_starboard_dock"; + name = "docking port controller"; + pixel_x = 24; + req_one_access = list(13); + tag_door = null + }, +/turf/simulated/floor/reinforced, +/area/centcom) +"BD" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/dispenser/oxygen, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"BJ" = ( +/obj/machinery/door/airlock/angled_bay/external/glass{ + door_color = "#822a1e"; + frequency = 1380; + id_tag = "supply_shuttle_hatch"; + locked = 1; + name = "Shuttle Hatch" + }, +/obj/machinery/conveyor{ + dir = 1; + id = "cargounload" + }, +/turf/simulated/shuttle/floor, +/area/shuttle/supply) +"BM" = ( +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tram" + }, +/obj/structure/bed/chair/shuttle{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/centcom/terminal/tramfluff) +"BR" = ( +/obj/structure/table/rack, +/obj/item/weapon/gun/projectile/shotgun/pump, +/obj/item/weapon/gun/projectile/shotgun/pump, +/obj/item/weapon/gun/projectile/shotgun/pump, +/obj/item/weapon/gun/projectile/shotgun/pump, +/obj/item/weapon/gun/projectile/shotgun/pump, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"BT" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/command) +"BW" = ( +/obj/machinery/computer/shuttle_control/explore/ccboat{ + dir = 4 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/eris/dark/cargo, +/area/shuttle/ccboat) +"BY" = ( +/obj/structure/bed/chair/bay/shuttle{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/shuttle/ccboat) +"Cg" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + frequency = 1380; + id_tag = null + }, +/obj/effect/map_helper/airlock/atmos/pump_out_external, +/turf/simulated/floor/plating, +/area/shuttle/ccboat) +"Cj" = ( +/turf/simulated/shuttle/floor, +/area/shuttle/supply) +"Cn" = ( +/turf/unsimulated/wall, +/area/centcom/main_hall) +"Cq" = ( +/obj/structure/panic_button{ + pixel_x = -32 + }, +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled/eris/dark/cargo, +/area/shuttle/ccboat) +"Cr" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/turf/simulated/wall/rshull, +/area/shuttle/ccboat) +"Cv" = ( +/turf/simulated/shuttle/wall, +/area/shuttle/supply) +"Cy" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/command) +"CA" = ( +/obj/effect/overmap/visitable/sector/virgo3b, +/turf/unsimulated/mineral/virgo3b, +/area/centcom) +"CB" = ( +/obj/structure/table/reinforced, +/turf/simulated/shuttle/floor{ + icon_state = "floor_red" + }, +/area/shuttle/escape) +"CD" = ( +/obj/machinery/flasher/portable, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/window/reinforced, +/turf/simulated/floor/tiled, +/area/centcom/security) +"CE" = ( +/obj/machinery/computer/card{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 9 + }, +/obj/item/device/radio/intercom{ + dir = 1; + frequency = 1475; + name = "Station Intercom (Security)"; + pixel_y = 27 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Residential Security" + }) +"CF" = ( +/obj/structure/window/reinforced, +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = 30 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"CG" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 6 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2, +/obj/effect/floor_decal/corner/purple/bordercorner2, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"CL" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/centcom/terminal) +"CR" = ( +/obj/machinery/porta_turret/crescent{ + density = 1 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled, +/area/centcom/security{ + name = "\improper CentCom Residential Security" + }) +"CS" = ( +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tram" + }, +/obj/structure/bed/chair/sofa/bench/right{ + dir = 8; + padding_color = "#99AAFF" + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/random/forgotten_tram, +/turf/simulated/floor/tiled, +/area/centcom/terminal/tramfluff) +"CV" = ( +/obj/machinery/door/airlock/glass_medical{ + name = "Virology Laboratory" + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"CW" = ( +/turf/simulated/floor/tiled/techfloor/grid, +/area/centcom/terminal) +"CX" = ( +/obj/effect/floor_decal/rust, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/centcom/evac) +"CZ" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Da" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/lino, +/area/centcom/restaurant) +"Dc" = ( +/turf/simulated/wall/fancy_shuttle{ + fancy_shuttle_tag = "tram" + }, +/area/centcom/terminal/tramfluff) +"Dd" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table/glass, +/obj/item/weapon/storage/box/monkeycubes, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 5 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Dg" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor, +/area/centcom/security{ + name = "\improper CentCom Residential Security" + }) +"Dh" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/brigdoor{ + dir = 8; + req_access = list(63); + req_one_access = newlist() + }, +/obj/machinery/button/remote/blast_door{ + id = "residential"; + name = "Security Doors"; + pixel_x = 6; + pixel_y = -5; + req_access = list(63); + req_one_access = list(1) + }, +/obj/item/weapon/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/weapon/pen, +/obj/effect/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Residential Security" + }) +"Di" = ( +/obj/machinery/telecomms/receiver/preset_cent, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"Dk" = ( +/obj/machinery/cryopod/robot/door/dorms, +/turf/simulated/floor/tiled, +/area/centcom/living) +"Dl" = ( +/obj/machinery/telecomms/bus/preset_cent, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"Do" = ( +/obj/machinery/telecomms/processor/preset_cent, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"Dp" = ( +/obj/machinery/telecomms/server/presets/centcomm, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"Dq" = ( +/obj/machinery/computer/card{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/centcom/control) +"Dr" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/item/weapon/pen, +/turf/simulated/floor/carpet, +/area/centcom/command) +"Ds" = ( +/obj/structure/table/rack{ + dir = 4 + }, +/obj/item/clothing/suit/space/void/security, +/obj/item/clothing/suit/space/void/security, +/obj/item/clothing/head/helmet/space/void/security, +/obj/item/clothing/head/helmet/space/void/security, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Dt" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "Secure Armoury Section"; + req_access = list(58); + req_one_access = list(19) + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Du" = ( +/obj/machinery/computer/security{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/command) +"Dv" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/structure/sink/kitchen{ + pixel_y = 28 + }, +/obj/machinery/button/remote/blast_door{ + id = "kitchenC"; + name = "Kitchen Shutters"; + pixel_x = -26; + pixel_y = 23 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"Dw" = ( +/obj/structure/bed/chair/comfy/black, +/turf/simulated/floor/tiled/dark, +/area/centcom/command) +"Dx" = ( +/obj/structure/closet/wardrobe/orange, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Dy" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "FrontlockC"; + name = "Security Doors"; + opacity = 0 + }, +/obj/structure/fans/tiny, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"Dz" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"DA" = ( +/obj/structure/closet/radiation, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"DB" = ( +/obj/structure/table/glass, +/obj/machinery/computer/med_data/laptop, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 9 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"DC" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/centcom/terminal) +"DD" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/machinery/computer/arcade{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"DE" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark/cargo, +/area/shuttle/ccboat) +"DF" = ( +/obj/item/weapon/stool/padded{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"DG" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/bordercorner2{ + dir = 8 + }, +/obj/machinery/computer/centrifuge, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"DH" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"DI" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"DJ" = ( +/obj/machinery/door/airlock/angled_bay/external/glass{ + dir = 4; + frequency = 1380; + id_tag = null; + locked = 1; + name = "Docking Port Airlock" + }, +/obj/effect/map_helper/airlock/door/int_door, +/turf/simulated/floor/tiled/steel_ridged, +/area/shuttle/ccboat) +"DK" = ( +/obj/machinery/camera/network/crescent{ + dir = 8 + }, +/obj/machinery/computer/secure_data{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/centcom/control) +"DL" = ( +/obj/item/weapon/storage/box/gloves{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/weapon/storage/box/masks, +/obj/structure/table/glass, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"DN" = ( +/obj/machinery/computer/ship/sensors/adv, +/turf/simulated/floor/tiled/eris/dark/cargo, +/area/shuttle/ccboat) +"DO" = ( +/obj/structure/table/rack, +/obj/item/weapon/gun/projectile/automatic/bullpup, +/obj/item/weapon/gun/projectile/automatic/bullpup, +/obj/item/weapon/gun/projectile/automatic/bullpup, +/obj/item/weapon/gun/projectile/automatic/bullpup, +/obj/item/weapon/gun/projectile/automatic/bullpup, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"DR" = ( +/obj/structure/reagent_dispensers/water_cooler/full, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 10 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/purple/bordercorner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/purple/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"DS" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/command) +"DT" = ( +/obj/structure/toilet{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/centcom/security) +"DU" = ( +/obj/structure/table/woodentable, +/obj/item/device/flashlight/lamp/green{ + pixel_x = 10; + pixel_y = 12 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/command) +"DV" = ( +/obj/structure/table/woodentable, +/obj/machinery/computer/skills{ + pixel_y = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/command) +"DX" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/structure/table/woodentable{ + desc = "It's a table..it has some scratch marks 'the commander likes to fuck me here'." + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/command) +"DY" = ( +/obj/machinery/airlock_sensor/airlock_exterior/shuttle{ + dir = 10 + }, +/obj/effect/map_helper/airlock/sensor/ext_sensor, +/turf/simulated/wall/rshull, +/area/shuttle/ccboat) +"DZ" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/head/greenbandana, +/obj/effect/floor_decal/borderfloorblack{ + dir = 5 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Eb" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 10 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 10 + }, +/obj/machinery/computer/arcade{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Ec" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/structure/table/glass, +/obj/item/weapon/storage/firstaid/fire, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Ef" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Residential Security" + }) +"Eg" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/green/border, +/obj/item/weapon/stool/padded{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Eh" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/machinery/vending/dinnerware, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"Ei" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/green, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/green/border, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Ek" = ( +/obj/structure/table/rack, +/obj/item/weapon/gun/energy/laser, +/obj/item/weapon/gun/energy/laser, +/obj/item/weapon/gun/energy/laser, +/obj/item/weapon/gun/energy/laser, +/obj/item/weapon/gun/energy/laser, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"El" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 10 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Em" = ( +/obj/machinery/telecomms/broadcaster/preset_cent, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"En" = ( +/obj/structure/bed/chair/office/dark, +/obj/machinery/button/remote/blast_door{ + desc = "A remote control switch for port-side blast doors."; + id = "CentComPort"; + name = "Security Doors"; + pixel_x = -12; + pixel_y = -25; + req_access = list(63); + req_one_access = list(1) + }, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/blue/bordercorner, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Eo" = ( +/obj/machinery/button/remote/blast_door{ + id = "crescent_checkpoint_access"; + name = "Crescent Checkpoint Access"; + pixel_x = -6; + pixel_y = -24; + req_access = list(101) + }, +/turf/simulated/floor/tiled, +/area/centcom/control) +"Eq" = ( +/obj/structure/table/rack, +/obj/item/weapon/storage/box/stunshells/large, +/obj/item/weapon/storage/box/stunshells/large, +/obj/item/weapon/storage/box/stunshells/large, +/obj/item/weapon/storage/box/stunshells/large, +/obj/item/weapon/storage/box/stunshells/large, +/obj/item/weapon/storage/box/stunshells/large, +/obj/item/weapon/storage/box/stunshells/large, +/obj/item/weapon/storage/box/stunshells/large, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Et" = ( +/obj/structure/closet/bombclosetsecurity, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/window/reinforced, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Ew" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Ex" = ( +/obj/structure/urinal{ + pixel_y = 31 + }, +/turf/simulated/floor/tiled/freezer, +/area/centcom/security) +"Ey" = ( +/turf/simulated/shuttle/wall, +/area/shuttle/escape) +"Ez" = ( +/obj/structure/bed/chair/shuttle{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/shuttle/ccboat) +"EA" = ( +/obj/machinery/turretid/stun{ + check_access = 0; + check_anomalies = 0; + check_records = 0; + control_area = "\improper CentCom Control"; + pixel_y = -28; + req_access = list(101) + }, +/obj/structure/table/reinforced, +/obj/item/device/pda/captain, +/turf/simulated/floor/tiled, +/area/centcom/control) +"EB" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/bed/chair/shuttle{ + dir = 8 + }, +/turf/simulated/shuttle/floor/white, +/area/shuttle/escape) +"EC" = ( +/obj/machinery/telecomms/hub/preset_cent, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"ED" = ( +/obj/structure/kitchenspike, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/control) +"EE" = ( +/obj/machinery/telecomms/relay/preset/station, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"EF" = ( +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tram" + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/centcom/terminal/tramfluff) +"EG" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/purple/border, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"EH" = ( +/obj/structure/toilet, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"EJ" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/sign/warning/lethal_turrets, +/turf/simulated/floor, +/area/centcom/control) +"EK" = ( +/obj/structure/table/reinforced, +/obj/machinery/computer/skills, +/turf/simulated/floor/tiled, +/area/centcom/control) +"EL" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"EM" = ( +/obj/structure/table/rack, +/obj/item/weapon/gun/projectile/automatic/battlerifle, +/obj/item/weapon/gun/projectile/automatic/battlerifle, +/obj/item/weapon/gun/projectile/automatic/battlerifle, +/obj/item/weapon/gun/projectile/automatic/battlerifle, +/obj/item/weapon/gun/projectile/automatic/battlerifle, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"EO" = ( +/obj/effect/floor_decal/corner_steel_grid/diagonal, +/turf/simulated/floor/tiled, +/area/centcom/evac) +"EQ" = ( +/obj/structure/table/standard, +/obj/item/device/taperecorder, +/obj/item/device/megaphone, +/obj/item/weapon/packageWrap, +/obj/item/weapon/storage/box, +/obj/item/weapon/hand_labeler, +/obj/item/device/universal_translator, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"ET" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/command) +"EU" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/structure/table/woodentable, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/folder/red_hos, +/obj/item/weapon/pen/multi, +/turf/simulated/floor/tiled/dark, +/area/centcom/command) +"EV" = ( +/obj/machinery/door/airlock/medical{ + name = "Virology Access"; + req_access = list(5) + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"EW" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/machinery/camera/network/crescent, +/turf/simulated/floor/tiled{ + icon_state = "white" + }, +/area/centcom/living) +"EX" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/shuttle/centcom/ccbay) +"EY" = ( +/obj/machinery/flasher/portable, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled, +/area/centcom/security) +"EZ" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/shuttle/centcom/ccbay) +"Fa" = ( +/obj/structure/window/reinforced, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Fe" = ( +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 26 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Ff" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular{ + id = "CentComPort"; + name = "Security Doors" + }, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"Fg" = ( +/obj/machinery/light/flamp/noshade, +/turf/simulated/floor/grass, +/area/centcom/main_hall) +"Fh" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/clothing/gloves/arm_guard/riot, +/obj/item/clothing/shoes/leg_guard/riot, +/obj/item/clothing/suit/armor/riot/alt, +/obj/item/clothing/head/helmet/riot, +/obj/item/weapon/shield/riot, +/obj/item/weapon/melee/baton/loaded, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Fi" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 10 + }, +/obj/structure/closet/crate/bin, +/turf/simulated/floor/tiled/dark, +/area/centcom/command) +"Fj" = ( +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/blue/border, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/command) +"Fk" = ( +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/blue/border, +/obj/effect/floor_decal/borderfloorblack/corner2, +/obj/effect/floor_decal/corner/blue/bordercorner2, +/turf/simulated/floor/tiled/dark, +/area/centcom/command) +"Fl" = ( +/obj/structure/railing, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor/orange{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/centcom/terminal) +"Fn" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/clothing/suit/storage/vest/heavy/officer, +/obj/item/clothing/suit/storage/vest/heavy/officer, +/obj/item/clothing/suit/storage/vest/heavy/officer, +/obj/item/clothing/suit/storage/vest/heavy/officer, +/obj/item/clothing/suit/storage/vest/heavy/officer, +/obj/item/clothing/suit/storage/vest/heavy/officer, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Fq" = ( +/obj/effect/floor_decal/industrial/warning/dust/corner, +/turf/simulated/floor/tiled, +/area/centcom/evac) +"Fu" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Fv" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/snacks/meatballsoup, +/turf/simulated/floor/wood, +/area/centcom/restaurant) +"Fx" = ( +/obj/structure/sign/painting/public{ + pixel_x = 30 + }, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"Fy" = ( +/obj/structure/closet/l3closet/virology, +/obj/item/clothing/mask/gas, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Fz" = ( +/obj/structure/table/reinforced, +/obj/item/device/camera, +/obj/item/weapon/storage/box/ids, +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Residential Security" + }) +"FC" = ( +/obj/structure/table/standard, +/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone, +/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = 7; + pixel_y = 1 + }, +/obj/item/weapon/tool/wrench, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"FD" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/machinery/vending/coffee, +/turf/simulated/floor/tiled, +/area/centcom/command) +"FE" = ( +/obj/machinery/atmospherics/unary/freezer, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/machinery/camera/network/crescent, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"FF" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/sign/department/commander, +/turf/simulated/floor, +/area/centcom/command) +"FI" = ( +/obj/machinery/door/airlock/glass_security{ + name = "Security"; + req_access = newlist() + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"FK" = ( +/obj/structure/sign/department/armory, +/turf/simulated/floor/tiled, +/area/centcom/security) +"FL" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/tiled, +/area/centcom/control) +"FM" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/oxygen/prechilled, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"FN" = ( +/obj/structure/table/rack, +/obj/item/clothing/gloves/arm_guard/bulletproof, +/obj/item/clothing/shoes/leg_guard/bulletproof, +/obj/item/clothing/suit/armor/bulletproof/alt, +/obj/item/clothing/head/helmet/bulletproof, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"FO" = ( +/obj/machinery/shower{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"FP" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Residential Security" + }) +"FS" = ( +/obj/structure/closet/l3closet/virology, +/obj/item/clothing/mask/gas, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"FT" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/ammo_magazine/m762, +/obj/item/ammo_magazine/m762, +/obj/item/ammo_magazine/m762, +/obj/item/ammo_magazine/m762, +/obj/item/ammo_magazine/m762, +/obj/item/ammo_magazine/m762, +/obj/item/ammo_magazine/m762, +/obj/item/ammo_magazine/m762, +/obj/item/ammo_magazine/m762/ap, +/obj/item/ammo_magazine/m762/ap, +/obj/item/ammo_magazine/m762/ap, +/obj/item/ammo_magazine/m762/ap, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"FU" = ( +/obj/machinery/door/blast/regular{ + dir = 8; + id = "ArmouryC4"; + layer = 3.3; + name = "Armoury" + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"FV" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/white, +/area/centcom/bathroom) +"FW" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/box/handcuffs, +/turf/simulated/floor/tiled, +/area/centcom/security) +"FX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"FY" = ( +/obj/structure/bed/chair/shuttle{ + dir = 1 + }, +/turf/simulated/shuttle/floor/white, +/area/shuttle/escape) +"FZ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Gb" = ( +/obj/effect/landmark{ + name = "tdome2" + }, +/turf/unsimulated/floor/techfloor_grid, +/area/tdome/tdome1) +"Gc" = ( +/obj/machinery/door/airlock/medical{ + name = "Morgue"; + req_access = list(6) + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/medical) +"Gd" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Gf" = ( +/obj/machinery/door/blast/regular{ + id = "ArmouryC"; + name = "Armoury" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Gg" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Gh" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/living) +"Gi" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 5 + }, +/obj/structure/closet/crate/bin, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Gj" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Gk" = ( +/obj/structure/closet/l3closet/virology, +/obj/item/clothing/mask/gas, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Gl" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/oxygen/prechilled, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 10 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Gm" = ( +/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 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Go" = ( +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Gp" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/centcom/command) +"Gq" = ( +/obj/structure/table/steel, +/obj/item/weapon/paper_bin{ + pixel_y = -6 + }, +/obj/item/device/camera{ + name = "Autopsy Camera"; + pixel_x = -2; + pixel_y = 7 + }, +/obj/item/weapon/pen/red, +/obj/item/weapon/pen/blue{ + pixel_x = 3; + pixel_y = -5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/medical) +"Gr" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/medical) +"Gs" = ( +/obj/structure/table/standard, +/obj/machinery/recharger, +/obj/item/weapon/cell/device/weapon{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/weapon/cell/device/weapon{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/cell/device/weapon, +/obj/item/weapon/cell/device/weapon{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/item/weapon/cell/device/weapon{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/weapon/cell/device/weapon{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/weapon/cell/device/weapon{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/weapon/cell/device/weapon{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/weapon/cell/device/weapon{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/weapon/cell/device/weapon{ + pixel_x = -2; + pixel_y = -2 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Gt" = ( +/obj/machinery/camera/network/crescent{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"Gu" = ( +/obj/machinery/button/remote/blast_door{ + id = "ArmouryC"; + name = "Armoury Access"; + pixel_y = -28; + req_access = list(3) + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Gv" = ( +/obj/machinery/door/blast/regular{ + id = "ArmouryC"; + name = "Armoury" + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Gw" = ( +/obj/machinery/button/remote/blast_door{ + id = "ArmouryC"; + name = "Armoury Access"; + pixel_y = -28; + req_access = list(3) + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Gy" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Gz" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 5 + }, +/obj/structure/filingcabinet, +/turf/simulated/floor/tiled/dark, +/area/centcom/command) +"GA" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full{ + maxhealth = 1e+007 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/firedoor/glass, +/turf/unsimulated/shuttle/plating, +/area/centcom) +"GD" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"GH" = ( +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "TelelockdownC"; + name = "Security Doors"; + opacity = 0 + }, +/turf/simulated/floor/tiled, +/area/centcom/living) +"GI" = ( +/obj/structure/table/steel_reinforced, +/obj/structure/flora/pottedplant/small{ + name = "Audry VI"; + pixel_x = 1; + pixel_y = 14 + }, +/turf/simulated/floor/tiled/eris/dark/cargo, +/area/shuttle/ccboat) +"GJ" = ( +/obj/machinery/door/blast/regular{ + id = "thunderdomeaxe"; + name = "Axe Supply" + }, +/turf/unsimulated/floor/techfloor_grid, +/area/tdome/tdome1) +"GK" = ( +/turf/simulated/floor/tiled/eris/dark/cargo, +/area/shuttle/ccboat) +"GL" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/reinforced, +/area/centcom) +"GM" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/reinforced, +/area/centcom) +"GN" = ( +/turf/simulated/wall/fancy_shuttle/window{ + fancy_shuttle_tag = "tram" + }, +/area/centcom/terminal/tramfluff) +"GO" = ( +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"GP" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/simulated/floor/tiled{ + icon_state = "white" + }, +/area/tdome/tdomeobserve) +"GQ" = ( +/obj/effect/floor_decal/emblem/stellardelight{ + dir = 10 + }, +/turf/simulated/shuttle/floor/white, +/area/shuttle/escape) +"GS" = ( +/obj/structure/table/rack{ + dir = 4 + }, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"GT" = ( +/obj/effect/floor_decal/rust, +/obj/effect/floor_decal/industrial/warning/dust, +/turf/simulated/floor/tiled, +/area/centcom/evac) +"GU" = ( +/obj/machinery/door/airlock{ + name = "Brig Restroom" + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"GV" = ( +/obj/structure/bed/chair/sofa/bench/right{ + padding_color = "#99AAFF" + }, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tram" + }, +/turf/simulated/floor/tiled, +/area/centcom/terminal/tramfluff) +"GW" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/reinforced, +/area/centcom) +"GX" = ( +/obj/structure/table/standard, +/obj/item/weapon/surgical/hemostat, +/obj/item/weapon/surgical/cautery, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Ha" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/centcom/evac) +"Hc" = ( +/obj/structure/table/standard, +/obj/item/stack/medical/advanced/bruise_pack, +/obj/item/weapon/surgical/retractor, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Hd" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/structure/table/woodentable, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/command) +"Hf" = ( +/obj/effect/floor_decal/derelict/d1, +/turf/simulated/floor/tiled, +/area/centcom/evac) +"Hg" = ( +/obj/structure/table/standard, +/obj/item/weapon/surgical/circular_saw{ + pixel_y = 8 + }, +/obj/item/weapon/surgical/scalpel, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/machinery/camera/network/crescent, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Hh" = ( +/obj/machinery/ntnet_relay, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"Hi" = ( +/obj/structure/table/woodentable, +/obj/machinery/cash_register/civilian, +/turf/simulated/floor/lino, +/area/centcom/restaurant) +"Hj" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"Hk" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"Hl" = ( +/obj/effect/floor_decal/industrial/warning/dust, +/turf/simulated/floor/tiled, +/area/centcom/evac) +"Hn" = ( +/obj/machinery/computer/pod{ + id = "thunderdomegen"; + name = "Thunderdome General Supply" + }, +/turf/unsimulated/floor/steel, +/area/tdome/tdomeadmin) +"Hp" = ( +/obj/structure/table/standard, +/obj/item/weapon/surgical/surgicaldrill, +/obj/item/weapon/autopsy_scanner, +/obj/item/weapon/reagent_containers/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner"; + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/surgical/FixOVein, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/item/stack/nanopaste/advanced, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Hq" = ( +/obj/structure/closet/secure_closet/medical2, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 5 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Hr" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/structure/filingcabinet/filingcabinet, +/turf/simulated/floor/tiled, +/area/centcom/command) +"Hs" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 10 + }, +/obj/machinery/computer/transhuman/designer, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Hv" = ( +/turf/simulated/floor/tiled/freezer, +/area/centcom/security) +"Hw" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 1 + }, +/obj/machinery/camera/network/crescent, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 10 + }, +/obj/machinery/clonepod/transhuman/full, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Hy" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-22" + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 5 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 5 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Hz" = ( +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/orange/border, +/obj/effect/floor_decal/borderfloorblack/corner2, +/obj/effect/floor_decal/corner/orange/bordercorner2, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"HA" = ( +/obj/machinery/photocopier, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/machinery/camera/network/crescent, +/turf/simulated/floor/tiled, +/area/centcom/security) +"HB" = ( +/obj/machinery/door/airlock/angled_bay/external/glass{ + dir = 4; + frequency = 1380; + id_tag = null; + locked = 1; + name = "Docking Port Airlock" + }, +/obj/effect/map_helper/airlock/door/ext_door, +/turf/simulated/floor/tiled/steel_ridged, +/area/shuttle/ccboat) +"HD" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10, +/obj/machinery/camera/network/crescent, +/turf/simulated/floor/tiled, +/area/centcom/security{ + name = "\improper CentCom Residential Security" + }) +"HE" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/machinery/status_display{ + pixel_y = 29 + }, +/turf/simulated/floor/tiled, +/area/centcom/command) +"HF" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "TelelockdownC"; + name = "Security Doors"; + opacity = 0 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/living) +"HH" = ( +/obj/machinery/computer/security/telescreen/entertainment{ + icon_state = "frame"; + pixel_y = 30 + }, +/turf/simulated/floor/lino, +/area/centcom/command) +"HI" = ( +/obj/structure/bed/padded, +/obj/machinery/camera/network/crescent, +/obj/machinery/flasher{ + id = "CellC1"; + pixel_x = -28 + }, +/turf/simulated/floor/tiled, +/area/centcom/holding) +"HJ" = ( +/obj/structure/bed/padded, +/obj/machinery/camera/network/crescent, +/obj/machinery/flasher{ + id = "CellC2"; + pixel_x = -24; + pixel_y = 25 + }, +/turf/simulated/floor/tiled, +/area/centcom/holding) +"HK" = ( +/obj/structure/table/standard, +/obj/structure/flora/pottedplant{ + icon_state = "plant-06"; + pixel_y = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"HL" = ( +/obj/structure/table/standard, +/obj/machinery/chemical_dispenser/bar_soft/full, +/obj/item/weapon/storage/box/glasses/square, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"HM" = ( +/obj/machinery/atm{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"HN" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/book/manual/security_space_law, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"HO" = ( +/obj/structure/table/standard, +/obj/machinery/recharger, +/obj/item/weapon/reagent_containers/spray/cleaner, +/obj/item/device/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 27 + }, +/obj/item/weapon/storage/box/donut, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"HQ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/centcom/command) +"HS" = ( +/obj/machinery/computer/secure_data{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/command) +"HT" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"HV" = ( +/obj/structure/table/standard, +/obj/item/weapon/surgical/bonesetter, +/obj/item/weapon/surgical/bonegel, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"HW" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"HY" = ( +/obj/machinery/chem_master, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"HZ" = ( +/obj/structure/bed/chair/office/dark, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Ia" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/centcom/command) +"Ib" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 9 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Id" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/centcom/command) +"Ie" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"If" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/centcom/command) +"Ig" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Ih" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/weapon/storage/box/shotgunshells/large, +/obj/item/weapon/storage/box/shotgunshells/large, +/obj/item/weapon/storage/box/shotgunshells/large, +/obj/item/weapon/storage/box/shotgunshells/large, +/obj/item/weapon/storage/box/shotgunshells/large, +/obj/item/weapon/storage/box/shotgunshells/large, +/obj/item/weapon/storage/box/shotgunshells/large, +/obj/item/weapon/storage/box/shotgunshells/large, +/obj/item/weapon/storage/box/shotgunshells/large, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Ij" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/centcom/command) +"Ik" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/structure/table/standard, +/obj/item/weapon/reagent_containers/blood/OPlus{ + pixel_x = 4; + pixel_y = 2 + }, +/obj/item/weapon/reagent_containers/blood/OMinus{ + pixel_x = -5; + pixel_y = -1 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Il" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/brigdoor{ + dir = 8; + req_access = list(63); + req_one_access = newlist() + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Im" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + dir = 1; + frequency = 1475; + name = "Station Intercom (Security)"; + pixel_y = 27 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Residential Security" + }) +"In" = ( +/obj/machinery/optable, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Io" = ( +/obj/machinery/computer/operating, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Ip" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Ir" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/structure/filingcabinet/chestdrawer{ + name = "Medical Forms" + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"It" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/structure/filingcabinet/filingcabinet, +/turf/simulated/floor/tiled, +/area/centcom/command) +"Iv" = ( +/obj/structure/table/standard, +/turf/simulated/floor/tiled, +/area/centcom/command) +"Iw" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor, +/area/centcom/command) +"Ix" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/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 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Iy" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/machinery/appliance/cooker/fryer, +/turf/simulated/floor/tiled/white, +/area/centcom/bar) +"IA" = ( +/obj/structure/table/standard, +/obj/machinery/computer/skills{ + pixel_y = 2 + }, +/turf/simulated/floor/tiled, +/area/centcom/command) +"IB" = ( +/obj/machinery/door/airlock/command{ + id_tag = "HoSdoor"; + name = "Head of Security"; + req_access = list(58) + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"IC" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/stamp/hos, +/turf/simulated/floor/tiled/dark, +/area/centcom/command) +"IE" = ( +/obj/structure/table/standard, +/obj/structure/flora/pottedplant{ + icon_state = "plant-06"; + pixel_y = 8 + }, +/turf/simulated/floor/tiled, +/area/centcom/command) +"IF" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/centcom/command) +"IG" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/item/weapon/folder/red_hos, +/turf/simulated/floor/carpet, +/area/centcom/command) +"IH" = ( +/turf/unsimulated/floor/steel, +/area/tdome/tdomeobserve) +"IJ" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 4 + }, +/turf/simulated/floor/carpet, +/area/centcom/command) +"IK" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/item/device/megaphone, +/turf/simulated/floor/carpet, +/area/centcom/command) +"IM" = ( +/obj/item/clothing/glasses/sunglasses/sechud/tactical, +/obj/item/clothing/gloves/tactical, +/obj/item/clothing/head/helmet/tactical, +/obj/item/clothing/mask/balaclava/tactical, +/obj/item/clothing/shoes/boots/tactical, +/obj/item/clothing/suit/armor/tactical, +/obj/item/clothing/under/tactical, +/obj/item/weapon/storage/belt/security/tactical, +/obj/structure/closet{ + desc = "It's a storage unit for standard-issue attire."; + name = "tactical equipment" + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/item/weapon/storage/backpack/dufflebag/syndie/med, +/obj/item/weapon/storage/backpack/satchel/sec, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"IN" = ( +/obj/machinery/door/window/brigdoor/southleft{ + id = "CellC1"; + name = "Cell 1"; + req_access = list(2) + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled, +/area/centcom/holding) +"IO" = ( +/obj/machinery/door/window/brigdoor/southleft{ + id = "CellC2"; + name = "Cell 2"; + req_access = list(2) + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled, +/area/centcom/holding) +"IP" = ( +/obj/machinery/door/window/brigdoor/southleft{ + id = "CellC3"; + name = "Cell 3"; + req_access = list(2) + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled, +/area/centcom/holding) +"IS" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"IT" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"IU" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"IV" = ( +/obj/machinery/bodyscanner{ + dir = 8 + }, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"IW" = ( +/obj/machinery/body_scanconsole, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"IY" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/machinery/vending/medical, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"IZ" = ( +/obj/machinery/computer/shuttle_control/emergency{ + dir = 1 + }, +/turf/simulated/shuttle/floor, +/area/shuttle/escape) +"Ja" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/weapon/gun/energy/gun/burst, +/obj/item/weapon/gun/energy/gun/burst, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Jb" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/borderfloor{ + dir = 1; + pixel_y = -16 + }, +/obj/machinery/photocopier/faxmachine, +/turf/simulated/floor/tiled, +/area/centcom/command) +"Jc" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/obj/structure/closet/secure_closet/nanotrasen_security, +/turf/simulated/floor/tiled, +/area/centcom/command) +"Jd" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/weapon/gun/energy/lasercannon, +/obj/item/weapon/gun/energy/lasercannon, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Je" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/green, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 5 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Jf" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1; + pixel_y = -16 + }, +/turf/simulated/floor/tiled, +/area/centcom/command) +"Jh" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"Ji" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/green/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Jk" = ( +/obj/machinery/porta_turret/crescent{ + density = 1 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/sign/warning/lethal_turrets{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Jl" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/blast/angled/open{ + id = "ccshuttleshutter" + }, +/turf/simulated/floor, +/area/shuttle/ccboat) +"Jm" = ( +/obj/structure/table/steel, +/obj/item/weapon/storage/box/bodybags, +/obj/item/weapon/storage/box/bodybags, +/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/centcom/medical) +"Jn" = ( +/obj/machinery/sleeper{ + dir = 4 + }, +/turf/simulated/shuttle/floor/white, +/area/shuttle/escape) +"Jo" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/borderfloor{ + dir = 1; + pixel_y = -16 + }, +/obj/item/weapon/paper_bin{ + pixel_x = -1; + pixel_y = 5 + }, +/obj/item/weapon/pen, +/turf/simulated/floor/tiled, +/area/centcom/command) +"Jp" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/centcom/command) +"Jq" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/computer/transhuman/resleeving, +/obj/item/weapon/book/manual/resleeving, +/obj/item/weapon/storage/box/backup_kit, +/turf/simulated/floor/tiled, +/area/centcom/control) +"Jr" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 2 + }, +/turf/simulated/floor/tiled, +/area/centcom/command) +"Js" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/item/weapon/folder/white_cmo, +/turf/simulated/floor/carpet, +/area/centcom/command) +"Jt" = ( +/obj/structure/sign/directions/security{ + dir = 4; + pixel_y = 32 + }, +/obj/structure/sign/directions/medical{ + dir = 4; + pixel_y = 38 + }, +/obj/structure/sign/directions/elevator{ + dir = 4; + pixel_y = 25 + }, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"Jv" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/item/weapon/reagent_containers/food/drinks/cup{ + pixel_x = -2; + pixel_y = 2 + }, +/turf/simulated/floor/carpet, +/area/centcom/command) +"Jw" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/item/weapon/folder/white_rd, +/turf/simulated/floor/carpet, +/area/centcom/command) +"Jx" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/item/weapon/reagent_containers/food/drinks/cup{ + pixel_x = 3 + }, +/turf/simulated/floor/carpet, +/area/centcom/command) +"JA" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"JB" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/item/weapon/folder/yellow_ce, +/turf/simulated/floor/carpet, +/area/centcom/command) +"JD" = ( +/obj/effect/floor_decal/emblem/orangeline{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/centcom/terminal) +"JF" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/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 + }, +/turf/simulated/floor/tiled, +/area/centcom/holding) +"JG" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/machinery/camera/network/crescent, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"JH" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/machinery/appliance/cooker/fryer, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"JI" = ( +/obj/machinery/door_timer/cell_3{ + id = "CellC1"; + name = "Cell 1"; + pixel_y = 28 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/centcom/holding) +"JJ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/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 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"JL" = ( +/obj/machinery/door_timer/cell_3{ + id = "CellC2"; + name = "Cell 2"; + pixel_y = 29 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/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 + }, +/turf/simulated/floor/tiled, +/area/centcom/holding) +"JM" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/machinery/camera/network/crescent{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"JN" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/folder/red_hos, +/turf/simulated/floor/tiled, +/area/centcom/security) +"JO" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/turf/simulated/floor/tiled/freezer, +/area/centcom/security) +"JP" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/blue/bordercorner2, +/turf/simulated/floor/tiled, +/area/centcom/security) +"JQ" = ( +/obj/machinery/account_database{ + dir = 8; + name = "CentComm Accounts database" + }, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"JR" = ( +/obj/structure/bed/chair/shuttle{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/shuttle/ccboat) +"JS" = ( +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"JT" = ( +/obj/structure/table/reinforced{ + desc = "It's a table, but you see something writen in permanent marker 'Dhael was here'" + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"JU" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/centcom) +"JV" = ( +/obj/structure/closet{ + name = "robotics parts" + }, +/obj/item/weapon/cell/high{ + charge = 100; + maxcharge = 15000; + pixel_x = 5; + pixel_y = -5 + }, +/obj/item/device/assembly/prox_sensor{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/item/device/assembly/prox_sensor{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/item/weapon/cell/high{ + charge = 100; + maxcharge = 15000; + pixel_x = 5; + pixel_y = -5 + }, +/obj/item/weapon/cell/high{ + charge = 100; + maxcharge = 15000; + pixel_x = 5; + pixel_y = -5 + }, +/obj/item/weapon/cell/high{ + charge = 100; + maxcharge = 15000; + pixel_x = 5; + pixel_y = -5 + }, +/obj/item/weapon/storage/firstaid/regular{ + empty = 1; + name = "First-Aid (empty)" + }, +/obj/item/weapon/storage/firstaid/regular{ + empty = 1; + name = "First-Aid (empty)" + }, +/obj/item/weapon/storage/firstaid/regular{ + empty = 1; + name = "First-Aid (empty)" + }, +/obj/item/device/healthanalyzer, +/obj/item/device/healthanalyzer, +/obj/item/device/healthanalyzer, +/obj/item/device/flash/synthetic, +/obj/item/device/flash/synthetic, +/obj/item/device/flash/synthetic, +/obj/item/device/flash/synthetic, +/obj/item/device/flash/synthetic, +/obj/item/device/flash/synthetic, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/turf/simulated/floor/tiled, +/area/centcom/control) +"JX" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/centcom) +"JY" = ( +/obj/machinery/computer/med_data, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 10 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"JZ" = ( +/obj/structure/medical_stand, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Kb" = ( +/obj/structure/bed/chair/shuttle{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/shuttle/ccboat) +"Kc" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Kd" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/centcom/terminal) +"Ke" = ( +/obj/machinery/computer/arcade/battle, +/obj/effect/floor_decal/borderfloorblack{ + dir = 6 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/orange/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Kf" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"Kg" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/box/donkpockets, +/obj/item/weapon/storage/box/donkpockets, +/obj/item/weapon/storage/box/donkpockets, +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Residential Security" + }) +"Kh" = ( +/obj/machinery/vending/wallmed1{ + pixel_y = -32 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Ki" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/structure/table/marble, +/obj/item/weapon/book/manual/chef_recipes, +/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{ + pixel_x = -3 + }, +/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{ + pixel_x = 3 + }, +/obj/item/weapon/material/kitchen/rollingpin, +/obj/item/weapon/material/knife/butch, +/turf/simulated/floor/tiled/white, +/area/centcom/bar) +"Kj" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 6 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Kk" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/structure/flora/pottedplant{ + pixel_y = 10 + }, +/turf/simulated/floor/tiled, +/area/centcom/command) +"Kl" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/centcom/command) +"Km" = ( +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tram" + }, +/obj/structure/closet/walllocker_double/hydrant/east, +/turf/simulated/floor/tiled, +/area/centcom/terminal/tramfluff) +"Kn" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/centcom/holding) +"Ko" = ( +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tram" + }, +/obj/machinery/light, +/obj/structure/bed/chair/sofa/bench/left{ + dir = 8; + padding_color = "#99AAFF" + }, +/obj/random/forgotten_tram, +/turf/simulated/floor/tiled, +/area/centcom/terminal/tramfluff) +"Kp" = ( +/obj/item/weapon/stool/padded, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/machinery/camera/network/crescent{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Kq" = ( +/obj/structure/table/reinforced, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Kr" = ( +/obj/structure/bed/chair/office/dark, +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 26 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Ks" = ( +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = 30 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/centcom/holding) +"Kt" = ( +/obj/item/weapon/storage/box/syringes{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/weapon/storage/box/beakers, +/obj/item/weapon/reagent_containers/dropper, +/obj/structure/table/glass, +/obj/structure/reagent_dispensers/virusfood{ + pixel_y = 28 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Kv" = ( +/obj/machinery/fitness/heavy/lifter, +/turf/simulated/floor/tiled/freezer, +/area/centcom/bathroom) +"Kx" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Ky" = ( +/obj/structure/bed/chair/sofa/bench/left{ + padding_color = "#99AAFF" + }, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tram" + }, +/turf/simulated/floor/tiled, +/area/centcom/terminal/tramfluff) +"Kz" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"KA" = ( +/obj/machinery/door/airlock{ + name = "Unit 2" + }, +/turf/simulated/floor/tiled/freezer, +/area/centcom/security) +"KC" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/storage/vest/tactical, +/obj/item/clothing/suit/storage/vest/tactical, +/obj/item/clothing/suit/storage/vest/tactical, +/obj/item/clothing/suit/storage/vest/tactical, +/obj/item/clothing/suit/storage/vest/tactical, +/obj/item/clothing/suit/storage/vest/tactical, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/clothing/suit/storage/vest/tactical, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"KD" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/firstaid/regular, +/obj/item/weapon/storage/firstaid/regular, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 10 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"KF" = ( +/obj/machinery/porta_turret/crescent{ + density = 1 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled, +/area/centcom/control) +"KG" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/firstaid/adv, +/obj/item/weapon/storage/firstaid/adv, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"KH" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 10 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 10 + }, +/obj/machinery/smartfridge/chemistry/virology, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"KJ" = ( +/obj/structure/table/glass, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/item/roller/adv, +/obj/item/roller/adv{ + pixel_y = 6 + }, +/obj/item/roller/adv{ + pixel_y = 12 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"KK" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 6 + }, +/obj/structure/closet/secure_closet/nanotrasen_security, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Residential Security" + }) +"KL" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/structure/closet/secure_closet/medical3, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"KN" = ( +/obj/machinery/r_n_d/server/centcom, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"KO" = ( +/obj/machinery/light, +/obj/structure/bed/chair/shuttle{ + dir = 4 + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_red" + }, +/area/shuttle/escape) +"KP" = ( +/obj/effect/floor_decal/corner_steel_grid{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"KR" = ( +/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/closet/secure_closet/paramedic, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"KS" = ( +/obj/effect/floor_decal/emblem/stellardelight, +/turf/simulated/shuttle/floor/white, +/area/shuttle/escape) +"KT" = ( +/obj/structure/table/standard, +/obj/machinery/computer/skills{ + pixel_y = 2 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/centcom/command) +"KU" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/machinery/photocopier, +/turf/simulated/floor/tiled, +/area/centcom/command) +"KV" = ( +/obj/structure/table/marble, +/obj/item/weapon/reagent_containers/food/drinks/cup{ + pixel_x = 8; + pixel_y = 8 + }, +/obj/item/weapon/reagent_containers/food/drinks/cup{ + pixel_x = -4; + pixel_y = 8 + }, +/obj/item/weapon/reagent_containers/food/drinks/cup{ + pixel_x = 3 + }, +/obj/item/weapon/reagent_containers/food/drinks/cup{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/item/weapon/reagent_containers/food/drinks/cup{ + pixel_x = 8 + }, +/obj/item/weapon/reagent_containers/food/drinks/cup{ + pixel_x = -4 + }, +/obj/item/weapon/reagent_containers/food/drinks/cup{ + pixel_x = 8; + pixel_y = 12 + }, +/obj/item/weapon/reagent_containers/food/drinks/cup{ + pixel_x = -4; + pixel_y = 12 + }, +/turf/simulated/floor/lino, +/area/centcom/command) +"KW" = ( +/obj/structure/table/marble, +/obj/machinery/chemical_dispenser/bar_coffee/full, +/turf/simulated/floor/lino, +/area/centcom/command) +"KX" = ( +/obj/structure/table/marble, +/obj/item/weapon/reagent_containers/food/drinks/glass2/square{ + pixel_x = 8; + pixel_y = 8 + }, +/obj/item/weapon/reagent_containers/food/drinks/glass2/square{ + pixel_y = 8 + }, +/obj/item/weapon/reagent_containers/food/drinks/glass2/square{ + pixel_x = -8; + pixel_y = 8 + }, +/obj/item/weapon/reagent_containers/food/drinks/glass2/square{ + pixel_x = 8; + pixel_y = 4 + }, +/obj/item/weapon/reagent_containers/food/drinks/glass2/square{ + pixel_y = 4 + }, +/obj/item/weapon/reagent_containers/food/drinks/glass2/square{ + pixel_x = -8; + pixel_y = 4 + }, +/turf/simulated/floor/lino, +/area/centcom/command) +"KZ" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/book/manual/security_space_law, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"La" = ( +/obj/structure/closet/crate/bin, +/turf/simulated/floor/lino, +/area/centcom/command) +"Lc" = ( +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "turrets"; + name = "Security Door"; + opacity = 0 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Lg" = ( +/obj/effect/floor_decal/derelict/d14, +/turf/simulated/floor/tiled, +/area/centcom/evac) +"Lh" = ( +/obj/structure/table/standard, +/obj/structure/flora/pottedplant{ + pixel_y = 10 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/centcom/holding) +"Li" = ( +/obj/machinery/vending/security, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled, +/area/centcom/holding) +"Lj" = ( +/obj/structure/table/standard, +/obj/item/device/healthanalyzer, +/obj/item/stack/medical/bruise_pack{ + pixel_x = -4; + pixel_y = 3 + }, +/obj/item/stack/medical/bruise_pack{ + pixel_x = 10 + }, +/obj/item/stack/medical/ointment{ + pixel_y = 10 + }, +/obj/random/medical/lite, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled, +/area/centcom/holding) +"Lk" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/structure/flora/pottedplant{ + pixel_y = 8 + }, +/turf/simulated/floor/tiled, +/area/centcom/terminal) +"Ll" = ( +/obj/item/weapon/stool/padded, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Lm" = ( +/obj/structure/grille, +/obj/effect/blocker, +/obj/structure/window/reinforced/full{ + maxhealth = 1e+007 + }, +/turf/unsimulated/shuttle/plating, +/area/tdome/tdomeobserve) +"Ln" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 1 + }, +/obj/structure/closet/crate/bin, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Lo" = ( +/obj/structure/table/standard, +/obj/item/weapon/reagent_containers/syringe/inaprovaline, +/obj/item/weapon/reagent_containers/syringe/inaprovaline{ + pixel_x = -2; + pixel_y = 5 + }, +/obj/item/weapon/reagent_containers/syringe/inaprovaline{ + pixel_y = 10 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled, +/area/centcom/holding) +"Lr" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 1"; + name = "Cell 1 Locker" + }, +/turf/simulated/floor/tiled, +/area/centcom/holding) +"Ls" = ( +/obj/structure/table/standard, +/obj/item/bodybag/cryobag{ + pixel_x = 6 + }, +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/random/firstaid, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled, +/area/centcom/holding) +"Lt" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/table/rack{ + dir = 4 + }, +/obj/item/device/suit_cooling_unit, +/obj/item/device/suit_cooling_unit, +/obj/item/device/suit_cooling_unit, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Lu" = ( +/obj/machinery/computer/diseasesplicer, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/obj/machinery/camera/network/crescent, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Lv" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-22" + }, +/turf/simulated/floor/wood, +/area/centcom/restaurant) +"Lw" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/book/manual/security_space_law, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Lx" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/mirror{ + pixel_x = -28 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/bathroom) +"Ly" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + req_access = list(5) + }, +/obj/machinery/door/firedoor/multi_tile, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Lz" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/multi_tile/metal{ + name = "NanoTrasen Offices"; + req_one_access = list(101) + }, +/turf/simulated/floor/tiled, +/area/centcom/command) +"LA" = ( +/obj/machinery/door/airlock/centcom{ + name = "NanoTrasen Offices" + }, +/turf/simulated/floor/tiled, +/area/centcom/command) +"LB" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/turf/simulated/floor/tiled, +/area/centcom/control) +"LC" = ( +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tram" + }, +/obj/structure/bed/chair/sofa/bench/left{ + dir = 8; + padding_color = "#99AAFF" + }, +/turf/simulated/floor/tiled, +/area/centcom/terminal/tramfluff) +"LD" = ( +/obj/machinery/door/airlock/multi_tile/metal{ + name = "NanoTrasen Offices"; + req_one_access = list(101) + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled, +/area/centcom/command) +"LE" = ( +/obj/structure/table/standard, +/obj/machinery/recharger, +/obj/item/weapon/book/codex, +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 26 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"LF" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/mirror{ + pixel_x = -28 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/bathroom) +"LG" = ( +/obj/effect/floor_decal/industrial/outline, +/turf/simulated/floor/tiled, +/area/centcom/security) +"LH" = ( +/obj/effect/floor_decal/sign/dock/two, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/centcom/evac) +"LI" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/bathroom) +"LK" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 9 + }, +/obj/machinery/vending/medical, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"LL" = ( +/obj/machinery/igniter, +/turf/unsimulated/floor/techfloor_grid, +/area/tdome) +"LM" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/machinery/camera/network/crescent, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"LN" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"LO" = ( +/obj/machinery/camera/network/crescent, +/turf/simulated/floor/tiled, +/area/centcom/command) +"LP" = ( +/obj/machinery/computer/guestpass{ + pixel_y = 27 + }, +/turf/simulated/floor/tiled, +/area/centcom/command) +"LQ" = ( +/obj/structure/closet/wardrobe/orange, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"LR" = ( +/obj/structure/table/reinforced, +/obj/machinery/computer/skills, +/obj/effect/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 10 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Residential Security" + }) +"LS" = ( +/obj/structure/table/glass, +/obj/structure/flora/pottedplant{ + pixel_y = 10 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8; + pixel_x = 16 + }, +/turf/simulated/floor/tiled, +/area/centcom/command) +"LT" = ( +/obj/structure/closet/crate/bin, +/obj/machinery/camera/network/crescent, +/turf/simulated/floor/tiled, +/area/centcom/command) +"LV" = ( +/obj/structure/closet/secure_closet/personal, +/turf/simulated/floor/tiled, +/area/centcom/bathroom) +"LW" = ( +/obj/machinery/door/airlock{ + name = "Unit 2" + }, +/turf/simulated/floor/tiled/white, +/area/centcom/bathroom) +"LX" = ( +/obj/effect/landmark{ + name = "tdome1" + }, +/turf/unsimulated/floor/techfloor_grid, +/area/tdome/tdome1) +"LY" = ( +/obj/machinery/computer/secure_data{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 5 + }, +/obj/machinery/camera/network/crescent, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Residential Security" + }) +"LZ" = ( +/obj/structure/bed/chair/shuttle{ + dir = 8 + }, +/turf/simulated/shuttle/floor, +/area/shuttle/escape) +"Ma" = ( +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tram" + }, +/obj/structure/bed/chair/sofa/bench{ + dir = 4; + padding_color = "#99AAFF" + }, +/turf/simulated/floor/tiled, +/area/centcom/terminal/tramfluff) +"Mb" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/structure/closet/crate/bin, +/turf/simulated/floor/tiled, +/area/centcom/command) +"Mc" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/computer/skills, +/obj/effect/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Md" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/machinery/computer/crew{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Me" = ( +/obj/structure/table/glass, +/obj/item/weapon/paper_bin{ + pixel_x = -1; + pixel_y = 3 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Mh" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/centcom/command) +"Mi" = ( +/obj/structure/table/glass, +/obj/effect/floor_decal/borderfloor{ + dir = 8; + pixel_x = 16 + }, +/obj/item/weapon/paper_bin{ + pixel_x = -1; + pixel_y = 5 + }, +/obj/item/weapon/pen, +/turf/simulated/floor/tiled, +/area/centcom/command) +"Ml" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/centcom/bathroom) +"Mn" = ( +/obj/machinery/vending/cola, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/blue/bordercorner2, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Mo" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-21" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Mq" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/obj/machinery/vending/nifsoft_shop, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Mr" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/snacks/grilledcheese, +/turf/simulated/floor/wood, +/area/centcom/restaurant) +"Ms" = ( +/obj/structure/bed/chair/comfy/teal{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/centcom/command) +"Mu" = ( +/obj/machinery/door/window/brigdoor{ + req_access = list(63); + req_one_access = list(1) + }, +/obj/machinery/button/remote/airlock{ + id = "front"; + name = "Front doors"; + pixel_x = 5; + pixel_y = 25; + req_access = list(63); + req_one_access = list(1) + }, +/obj/machinery/button/remote/airlock{ + id = "innerS"; + name = "Inner doors"; + pixel_x = -5; + pixel_y = 25; + req_access = list(63); + req_one_access = list(1) + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Mv" = ( +/obj/machinery/vending/cigarette, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Mx" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"My" = ( +/obj/structure/table/rack, +/obj/item/clothing/gloves/arm_guard/combat, +/obj/item/clothing/shoes/leg_guard/combat, +/obj/item/clothing/suit/armor/combat, +/obj/item/clothing/head/helmet/combat, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Mz" = ( +/obj/machinery/door/window/brigdoor{ + dir = 8; + req_access = list(63); + req_one_access = newlist() + }, +/obj/machinery/button/remote/airlock{ + id = "front"; + name = "Front doors"; + pixel_x = 5; + pixel_y = 25; + req_access = list(63); + req_one_access = list(1) + }, +/obj/machinery/button/remote/airlock{ + id = "innerS"; + name = "Inner doors"; + pixel_x = -5; + pixel_y = 25; + req_access = list(63); + req_one_access = list(1) + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"MA" = ( +/obj/structure/table/marble, +/obj/machinery/microwave{ + pixel_x = -3; + pixel_y = 6 + }, +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"MB" = ( +/obj/machinery/vending/snack, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled, +/area/centcom/security) +"MD" = ( +/obj/machinery/vending/coffee, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"MF" = ( +/obj/machinery/gibber, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"MG" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/obj/structure/flora/pottedplant{ + icon_state = "plant-22" + }, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"MH" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/mirror{ + pixel_x = -28 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/bathroom) +"MI" = ( +/obj/structure/table/glass, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/item/weapon/backup_implanter{ + pixel_y = -8 + }, +/obj/item/weapon/backup_implanter{ + pixel_y = 8 + }, +/obj/item/weapon/backup_implanter, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"MJ" = ( +/obj/structure/table/glass, +/obj/item/device/healthanalyzer/advanced, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"MK" = ( +/obj/structure/table/glass, +/obj/machinery/computer/med_data{ + icon_keyboard = "laptop_key"; + icon_screen = "medlaptop"; + icon_state = "laptop"; + light_color = "#00b000" + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"ML" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 6 + }, +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = 30 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Residential Security" + }) +"MM" = ( +/obj/structure/table/glass{ + desc = "It's a table, it has some scracthes..they say 'Mlem'." + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"MN" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"MQ" = ( +/obj/structure/table/glass, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"MR" = ( +/obj/structure/table/glass, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/centcom/command) +"MS" = ( +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "reinforced"; + name = "reinforced floor" + }, +/area/centcom) +"MT" = ( +/obj/structure/table/glass, +/obj/effect/floor_decal/borderfloor{ + dir = 1; + pixel_y = -16 + }, +/turf/simulated/floor/tiled, +/area/centcom/command) +"MU" = ( +/obj/structure/table/glass, +/obj/effect/floor_decal/borderfloor{ + dir = 1; + pixel_y = -16 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8; + pixel_x = 16 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10; + pixel_x = 16 + }, +/turf/simulated/floor/tiled, +/area/centcom/command) +"MV" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/centcom/bathroom) +"MX" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/shuttle/centcom/ccbay) +"MY" = ( +/obj/machinery/door/airlock{ + name = "Unisex Showers" + }, +/turf/simulated/floor/tiled/freezer, +/area/centcom/bathroom) +"MZ" = ( +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 26 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Nb" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/simulated/floor/tiled/freezer, +/area/centcom/bathroom) +"Ne" = ( +/obj/item/weapon/stool/padded, +/turf/simulated/floor/tiled/dark, +/area/centcom/medical) +"Nf" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/vending/security, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Nh" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/vending/security, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Ni" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/structure/closet/crate/bin, +/turf/simulated/floor/tiled/white, +/area/centcom/bathroom) +"Nj" = ( +/obj/machinery/door/airlock{ + name = "Unit 3" + }, +/turf/simulated/floor/tiled/white, +/area/centcom/bathroom) +"Nk" = ( +/obj/structure/table/glass, +/obj/item/device/defib_kit/compact/loaded, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Nl" = ( +/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/floor_decal/steeldecal/steel_decals10{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/centcom/living) +"Nm" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/box/cups, +/obj/item/weapon/storage/box/cups, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Nn" = ( +/obj/structure/bed/padded, +/obj/machinery/camera/network/crescent, +/obj/machinery/flasher{ + id = "CellC3"; + pixel_x = -24; + pixel_y = 25 + }, +/turf/simulated/floor/tiled, +/area/centcom/holding) +"No" = ( +/obj/machinery/computer/secure_data, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 9 + }, +/obj/machinery/camera/network/crescent, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Np" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/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/item/device/radio/intercom{ + dir = 1; + frequency = 1475; + name = "Station Intercom (Security)"; + pixel_y = 27 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Nq" = ( +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 26 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/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 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Nr" = ( +/obj/machinery/computer/card, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Nt" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/item/weapon/storage/box/teargas, +/obj/item/weapon/storage/box/teargas, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Nv" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled, +/area/shuttle/centcom/ccbay) +"Nw" = ( +/obj/item/weapon/stool/padded, +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = 30 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Ny" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/structure/closet/crate/bin, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Nz" = ( +/obj/structure/table/reinforced, +/turf/simulated/shuttle/floor/white, +/area/shuttle/escape) +"NC" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/centcom/control) +"ND" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-22" + }, +/turf/simulated/floor/tiled, +/area/centcom/bathroom) +"NE" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"NF" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"NG" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/item/weapon/storage/box/ids, +/turf/simulated/floor/tiled, +/area/centcom/command) +"NH" = ( +/obj/machinery/door/airlock/security{ + name = "Security" + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"NI" = ( +/obj/machinery/computer/secure_data{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"NJ" = ( +/obj/structure/table/glass, +/obj/machinery/chemical_dispenser/ert, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"NL" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"NN" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/centcom/living) +"NO" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"NP" = ( +/obj/structure/table/standard, +/obj/item/weapon/soap, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/bathroom) +"NQ" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/bathroom) +"NR" = ( +/obj/machinery/door/airlock{ + name = "Unit 4" + }, +/turf/simulated/floor/tiled/white, +/area/centcom/bathroom) +"NS" = ( +/obj/item/device/radio/intercom{ + dir = 1; + frequency = 1475; + name = "Station Intercom (Security)"; + pixel_y = 27 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Residential Security" + }) +"NT" = ( +/obj/machinery/atm{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled, +/area/centcom/command) +"NU" = ( +/obj/structure/table/glass, +/obj/item/roller, +/obj/item/roller{ + pixel_y = 8 + }, +/obj/item/roller{ + pixel_y = 16 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 10 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"NV" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"NW" = ( +/obj/structure/table/rack, +/obj/item/weapon/gun/energy/ionrifle, +/obj/item/weapon/gun/energy/ionrifle, +/obj/item/weapon/gun/energy/ionrifle, +/obj/item/weapon/gun/energy/ionrifle, +/obj/item/weapon/gun/energy/ionrifle, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/camera/network/crescent, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"NY" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-22" + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 6 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 6 + }, +/obj/machinery/newscaster{ + pixel_x = 29 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"NZ" = ( +/obj/machinery/vending/snack, +/turf/simulated/floor/tiled, +/area/centcom/command) +"Oa" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-24" + }, +/turf/simulated/floor/tiled, +/area/centcom/command) +"Ob" = ( +/obj/machinery/vending/cola, +/turf/simulated/floor/tiled, +/area/centcom/command) +"Od" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/weapon/cell/device/weapon{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/weapon/cell/device/weapon{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/weapon/cell/device/weapon{ + pixel_x = -2; + pixel_y = -2 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Of" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/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 + }, +/turf/simulated/floor/tiled, +/area/centcom/holding) +"Oh" = ( +/obj/machinery/vending/fitness, +/turf/simulated/floor/tiled, +/area/centcom/bathroom) +"Oi" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/machinery/button/remote/blast_door{ + id = "turrets"; + name = "Turret Doors"; + pixel_x = -23; + req_access = list(63); + req_one_access = list(1) + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Oj" = ( +/obj/structure/table/steel, +/obj/item/clothing/shoes/boots/jackboots{ + desc = "This pair of Jackboots look worn and freshly used. They have several claw markings inside and you can read the initials D and M at the bottom"; + name = "Dhaeleena's Jackboots" + }, +/turf/simulated/floor/tiled/freezer, +/area/centcom/bathroom) +"Ok" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/centcom/terminal) +"Om" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Residential Security" + }) +"On" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/floor/tiled/freezer, +/area/centcom/bathroom) +"Oo" = ( +/obj/machinery/computer/secure_data{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/blue/border, +/obj/effect/floor_decal/borderfloorblack/corner2, +/obj/effect/floor_decal/corner/blue/bordercorner2, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Op" = ( +/obj/structure/reagent_dispensers/water_cooler/full, +/turf/simulated/floor/tiled/freezer, +/area/centcom/bathroom) +"Oq" = ( +/obj/structure/table/reinforced, +/obj/item/device/camera, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Or" = ( +/obj/machinery/camera/network/crescent, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/bathroom) +"Os" = ( +/obj/machinery/computer/security{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Ot" = ( +/turf/simulated/shuttle/wall/hard_corner, +/area/shuttle/escape) +"Ou" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/book/manual/security_space_law, +/obj/item/weapon/gun/energy/taser, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Ov" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Residential Security" + }) +"Ow" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/box/ids, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Ox" = ( +/obj/machinery/door/airlock/command{ + id_tag = "HoSdoor"; + name = "Head of Security"; + req_access = list(58) + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/command) +"Oy" = ( +/obj/structure/table/reinforced, +/obj/machinery/computer/skills, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Oz" = ( +/obj/machinery/conveyor{ + id = "cargoload" + }, +/turf/simulated/shuttle/floor, +/area/shuttle/supply) +"OA" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/turf/simulated/floor/tiled, +/area/centcom/security) +"OC" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/centcom/evac) +"OD" = ( +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tram" + }, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/centcom/terminal/tramfluff) +"OE" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/weapon/pen, +/obj/machinery/door/window/brigdoor{ + dir = 2 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"OH" = ( +/obj/effect/floor_decal/derelict/d8, +/turf/simulated/floor/tiled, +/area/centcom/evac) +"OK" = ( +/obj/machinery/button/remote/blast_door{ + id = "ArmouryC2"; + name = "Armoury Access"; + pixel_x = -28; + pixel_y = 28; + req_access = list(3) + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"OL" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/external/glass{ + door_color = "#822a1e"; + frequency = 1380; + id_tag = "escape_shuttle_hatch"; + locked = 1; + name = "Docking Port Airlock" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/shuttle/escape) +"OM" = ( +/obj/effect/floor_decal/industrial/outline, +/obj/structure/closet/secure_closet/nanotrasen_security{ + desc = "This locker is filled silly stickers and some other serious NanoTrasen ones. It is lazily labeled 'The big cat'." + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"ON" = ( +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "TelelockdownC"; + name = "Security Doors"; + opacity = 0 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/living) +"OO" = ( +/obj/machinery/door/airlock/multi_tile/glass, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"OP" = ( +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"OR" = ( +/obj/machinery/door/airlock{ + name = "Unisex Restrooms" + }, +/turf/simulated/floor/tiled, +/area/centcom/bathroom) +"OS" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/machinery/camera/network/crescent{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"OT" = ( +/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 + }, +/turf/simulated/floor/tiled{ + icon_state = "white" + }, +/area/centcom/living) +"OU" = ( +/obj/structure/table/standard, +/obj/machinery/computer/med_data/laptop, +/turf/simulated/floor/tiled, +/area/centcom/control) +"OW" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/sign/department/medbay{ + plane = -34 + }, +/turf/simulated/floor, +/area/centcom/medical) +"OY" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/centcom) +"OZ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/multi_tile/glass, +/turf/simulated/floor/tiled{ + icon_state = "white" + }, +/area/centcom/medical) +"Pa" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled{ + icon_state = "white" + }, +/area/centcom/medical) +"Pc" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/multi_tile/glass, +/turf/simulated/floor/tiled, +/area/centcom/command) +"Pd" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Locker Room" + }, +/turf/simulated/floor/tiled, +/area/centcom/bathroom) +"Pf" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/snacks/meatsteak, +/turf/simulated/floor/wood, +/area/centcom/restaurant) +"Pg" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"Ph" = ( +/obj/machinery/atmospherics/unary/cryo_cell, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 5 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Pj" = ( +/obj/structure/bed/chair, +/obj/effect/floor_decal/industrial/outline, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"Pk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Pl" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/turf/simulated/floor/tiled{ + icon_state = "white" + }, +/area/centcom/living) +"Pn" = ( +/obj/effect/floor_decal/industrial/outline, +/obj/structure/bed/chair, +/obj/machinery/status_display{ + pixel_y = 29 + }, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"Po" = ( +/obj/machinery/computer/guestpass{ + pixel_y = 27 + }, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"Pp" = ( +/obj/machinery/turretid/stun{ + check_access = 0; + check_anomalies = 0; + check_records = 0; + control_area = "\improper CentCom Residential Security"; + pixel_y = 32; + req_access = list(101); + req_one_access = list(101) + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Residential Security" + }) +"Pq" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/orange, +/obj/effect/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/orange/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Pr" = ( +/obj/machinery/status_display{ + pixel_y = 29 + }, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"Ps" = ( +/obj/structure/table/reinforced, +/obj/machinery/light/floortube, +/turf/simulated/shuttle/floor/white, +/area/shuttle/escape) +"Pu" = ( +/obj/structure/table/glass, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 8 + }, +/obj/item/weapon/reagent_containers/blood/OPlus{ + pixel_x = 4; + pixel_y = 2 + }, +/obj/item/weapon/reagent_containers/blood/OPlus{ + pixel_x = 4; + pixel_y = 2 + }, +/obj/item/weapon/reagent_containers/blood/OPlus{ + pixel_x = 4; + pixel_y = 2 + }, +/obj/item/device/healthanalyzer/advanced, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Pv" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"Pw" = ( +/obj/structure/sign/directions/security{ + dir = 4; + pixel_y = 32 + }, +/obj/structure/sign/directions/elevator{ + dir = 4; + pixel_y = 25 + }, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"Px" = ( +/obj/structure/sign/directions/security{ + dir = 4; + pixel_y = 32 + }, +/obj/structure/sign/directions/elevator{ + dir = 4; + pixel_y = 25 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"Py" = ( +/obj/machinery/door_timer/cell_3{ + id = "CellC3"; + pixel_x = 31 + }, +/turf/simulated/floor/tiled, +/area/centcom/holding) +"Pz" = ( +/obj/effect/floor_decal/derelict/d15, +/turf/simulated/floor/tiled, +/area/centcom/evac) +"PA" = ( +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "CentComPort"; + name = "Security Doors"; + opacity = 0 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"PB" = ( +/obj/machinery/atmospherics/unary/cryo_cell, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"PC" = ( +/obj/structure/table/reinforced, +/obj/machinery/computer/skills, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 10 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/tiled, +/area/centcom/security) +"PD" = ( +/obj/structure/table/bench/wooden, +/turf/simulated/floor/grass, +/area/centcom/main_hall) +"PE" = ( +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "CentComPort"; + name = "Security Doors"; + opacity = 0 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"PF" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/shuttle/centcom/ccbay) +"PG" = ( +/obj/machinery/camera/network/crescent, +/turf/simulated/floor/tiled, +/area/centcom/living) +"PH" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"PI" = ( +/obj/machinery/computer/cryopod/dorms{ + name = "Company Property Retention System"; + pixel_y = 27 + }, +/turf/simulated/floor/tiled, +/area/centcom/living) +"PJ" = ( +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tram" + }, +/obj/structure/bed/chair/sofa/bench/right{ + dir = 8; + padding_color = "#99AAFF" + }, +/turf/simulated/floor/tiled, +/area/centcom/terminal/tramfluff) +"PK" = ( +/obj/structure/closet/l3closet/security, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/camera/network/crescent, +/turf/simulated/floor/tiled, +/area/centcom/security) +"PL" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full{ + maxhealth = 1e+007 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/firedoor/glass, +/turf/unsimulated/shuttle/plating, +/area/centcom/main_hall) +"PM" = ( +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "CentComPort"; + name = "Security Doors"; + opacity = 0 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"PO" = ( +/obj/effect/floor_decal/derelict/d6, +/turf/simulated/floor/tiled, +/area/centcom/evac) +"PP" = ( +/turf/simulated/floor/carpet, +/area/centcom/control) +"PQ" = ( +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "CentComPort"; + name = "Security Doors"; + opacity = 0 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"PR" = ( +/obj/structure/shuttle/window, +/obj/structure/grille, +/turf/simulated/floor, +/area/shuttle/escape) +"PS" = ( +/obj/effect/forcefield{ + desc = "You can't get in. Heh."; + layer = 1; + name = "Blocker" + }, +/turf/simulated/floor/tiled, +/area/centcom/living) +"PT" = ( +/obj/machinery/deployable/barrier, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"PW" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/blocker, +/turf/simulated/floor/tiled{ + icon_state = "white" + }, +/area/centcom/living) +"PX" = ( +/turf/simulated/floor/tiled{ + icon_state = "white" + }, +/area/centcom/living) +"PY" = ( +/obj/machinery/cryopod/robot/door/dorms{ + base_icon_state = "door_closed"; + desc = "A small elevator"; + dir = 2; + icon = 'icons/obj/doors/Door2x1glass.dmi'; + icon_state = "door_closed"; + name = "elevator"; + on_enter_occupant_message = "The elevator doors close slowly. You can now head off for the residential, commercial, and other floors."; + on_store_message = "has departed for one of the various colony floors"; + on_store_name = "Colony Oversight"; + on_store_visible_message_2 = "to the colony districts."; + time_till_despawn = 5 + }, +/turf/simulated/floor/tiled, +/area/centcom/living) +"PZ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "FrontlockBD"; + name = "Security Doors"; + opacity = 0 + }, +/obj/structure/fans/tiny, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"Qa" = ( +/obj/structure/table/steel, +/obj/item/weapon/autopsy_scanner, +/obj/item/weapon/surgical/scalpel, +/obj/item/weapon/surgical/cautery, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/medical) +"Qb" = ( +/obj/structure/reagent_dispensers/water_cooler/full, +/turf/simulated/floor/tiled, +/area/centcom/command) +"Qc" = ( +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "CentComPort"; + name = "Security Doors"; + opacity = 0 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"Qd" = ( +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "CentComPort"; + name = "Security Doors"; + opacity = 0 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"Qe" = ( +/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, +/turf/simulated/floor/tiled{ + icon_state = "white" + }, +/area/centcom/living) +"Qg" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/turf/simulated/floor/tiled{ + icon_state = "white" + }, +/area/centcom/living) +"Qh" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/structure/flora/pottedplant{ + icon_state = "plant-24" + }, +/turf/simulated/floor/tiled{ + icon_state = "white" + }, +/area/centcom/living) +"Qi" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/bed/chair/shuttle, +/turf/simulated/shuttle/floor, +/area/shuttle/escape) +"Qj" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/machinery/camera/network/crescent, +/turf/simulated/floor/tiled/dark, +/area/centcom/medical) +"Qk" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/bar) +"Ql" = ( +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tram" + }, +/obj/machinery/status_display{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled, +/area/centcom/terminal/tramfluff) +"Qm" = ( +/obj/machinery/porta_turret/crescent{ + density = 1 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Security Arrivals" + }) +"Qn" = ( +/obj/effect/floor_decal/industrial/outline, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Security Arrivals" + }) +"Qp" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/multi_tile/glass, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"Qq" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-06"; + pixel_y = 8 + }, +/obj/structure/table/glass, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"Qr" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/centcom) +"Qt" = ( +/obj/structure/shuttle/engine/heater{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/centcom) +"Qu" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/orange/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Qw" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"Qx" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/borderfloorblack{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Qy" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 8; + icon_state = "burst_l" + }, +/turf/simulated/floor/tiled, +/area/centcom) +"Qz" = ( +/obj/structure/shuttle/engine/propulsion{ + icon_state = "burst_l" + }, +/turf/simulated/floor/tiled, +/area/centcom) +"QB" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"QC" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled, +/area/centcom) +"QD" = ( +/obj/item/weapon/stool/padded, +/turf/simulated/floor/tiled, +/area/centcom/bathroom) +"QE" = ( +/obj/machinery/computer/supplycomp{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/centcom) +"QF" = ( +/obj/structure/table/standard, +/obj/item/weapon/soap, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/bathroom) +"QH" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/obj/structure/closet/secure_closet/hop, +/turf/simulated/floor/tiled, +/area/centcom/command) +"QI" = ( +/obj/structure/flora/pottedplant, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"QJ" = ( +/obj/machinery/vending/cigarette, +/turf/simulated/floor/wood, +/area/centcom/restaurant) +"QL" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full{ + maxhealth = 1e+007 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/firedoor/glass, +/turf/unsimulated/shuttle/plating, +/area/centcom) +"QN" = ( +/obj/effect/floor_decal/derelict/d16, +/turf/simulated/floor/tiled, +/area/centcom/evac) +"QR" = ( +/obj/structure/closet/crate/bin, +/turf/simulated/floor/wood, +/area/centcom/restaurant) +"QS" = ( +/obj/machinery/camera/network/crescent, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"QT" = ( +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"QU" = ( +/obj/machinery/vending/nifsoft_shop, +/turf/simulated/floor/wood, +/area/centcom/restaurant) +"QV" = ( +/obj/structure/sign/double/barsign{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/centcom/restaurant) +"QW" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/flame/lighter/zippo, +/obj/item/weapon/storage/fancy/cigarettes, +/turf/simulated/floor/carpet, +/area/centcom/restaurant) +"QX" = ( +/obj/structure/morgue{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/medical) +"QY" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/armor/riot, +/obj/item/weapon/melee/baton/loaded, +/obj/item/weapon/shield/riot, +/obj/item/clothing/head/helmet/riot, +/obj/effect/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Ra" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "residential"; + name = "Security Door"; + opacity = 0 + }, +/turf/simulated/floor/tiled, +/area/centcom/security{ + name = "\improper CentCom Residential Security" + }) +"Rb" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/armor/riot, +/obj/item/weapon/melee/baton/loaded, +/obj/item/weapon/shield/riot, +/obj/item/clothing/head/helmet/riot, +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Rd" = ( +/obj/machinery/door/airlock/glass_security{ + name = "Security"; + req_access = newlist() + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Re" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/steel_grid, +/area/centcom/terminal) +"Rf" = ( +/turf/simulated/floor/tiled/dark, +/area/centcom/command) +"Rh" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/armor/riot, +/obj/item/weapon/melee/baton/loaded, +/obj/item/weapon/shield/riot, +/obj/item/clothing/head/helmet/riot, +/obj/effect/floor_decal/borderfloorblack{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Ri" = ( +/obj/structure/table/rack, +/obj/item/weapon/storage/box/beanbags/large, +/obj/item/weapon/storage/box/beanbags/large, +/obj/item/weapon/storage/box/beanbags/large, +/obj/item/weapon/storage/box/beanbags/large, +/obj/item/weapon/storage/box/beanbags/large, +/obj/item/weapon/storage/box/beanbags/large, +/obj/item/weapon/storage/box/beanbags/large, +/obj/item/weapon/storage/box/beanbags/large, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Rj" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/turf/simulated/floor/tiled, +/area/centcom/living) +"Rk" = ( +/obj/machinery/computer/prisoner, +/obj/effect/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 9 + }, +/obj/machinery/camera/network/crescent, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Rl" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/medical) +"Rm" = ( +/obj/machinery/newscaster/security_unit{ + pixel_y = 30 + }, +/obj/structure/table/reinforced, +/obj/item/weapon/gun/projectile/shotgun/pump/combat{ + name = "Discipline" + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Rn" = ( +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 26 + }, +/obj/structure/table/reinforced, +/obj/item/weapon/stamp/ward, +/obj/item/weapon/stamp/denied, +/obj/item/device/binoculars, +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Ro" = ( +/obj/item/device/radio/intercom{ + dir = 1; + frequency = 1475; + name = "Station Intercom (Security)"; + pixel_y = 27 + }, +/obj/machinery/photocopier, +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = 30 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Rp" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-10" + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Rq" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/shuttle/engine/propulsion{ + dir = 8; + icon_state = "burst_l" + }, +/turf/simulated/floor/tiled/steel, +/area/centcom) +"Rr" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/steel, +/area/centcom) +"Rt" = ( +/turf/simulated/floor/tiled, +/area/centcom/security{ + name = "\improper CentCom Residential Security" + }) +"Rv" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor, +/area/centcom) +"Rw" = ( +/turf/simulated/floor, +/area/centcom/control) +"Rx" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/door/window/northright{ + dir = 2; + name = "Cargo Ordering"; + req_access = list(50) + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled, +/area/centcom) +"Ry" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"RB" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorblack/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/bordercorner{ + dir = 1 + }, +/obj/machinery/button/remote/blast_door{ + id = "FrontlockC2"; + name = "Checkpoint Shielding"; + pixel_x = -35; + pixel_y = -8; + req_access = list(63); + req_one_access = list(1) + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Security Arrivals" + }) +"RC" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorblack/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Security Arrivals" + }) +"RD" = ( +/obj/machinery/computer/security{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 5 + }, +/obj/machinery/camera/network/crescent, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Security Arrivals" + }) +"RF" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"RG" = ( +/obj/structure/bed/chair, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"RH" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/centcom/restaurant) +"RI" = ( +/obj/structure/curtain/open/shower, +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/machinery/shower{ + pixel_y = 13 + }, +/turf/simulated/floor/tiled/freezer, +/area/centcom/bathroom) +"RK" = ( +/obj/structure/bed/roller, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/centcom/holding) +"RM" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 10 + }, +/obj/machinery/door/blast/shutters{ + id = "RiotCon"; + name = "Riot Control"; + req_access = list(63); + req_one_access = list(1) + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"RN" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/sign/department/telecoms, +/turf/simulated/floor, +/area/centcom/control) +"RO" = ( +/obj/machinery/door/blast/regular{ + id = "thunderdomegen"; + name = "General Supply" + }, +/turf/unsimulated/floor/techfloor_grid, +/area/tdome/tdome1) +"RP" = ( +/obj/machinery/door/blast/shutters{ + id = "RiotCon"; + name = "Riot Control"; + req_access = list(63); + req_one_access = list(1) + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"RQ" = ( +/obj/structure/morgue{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/turf/simulated/floor/tiled/dark, +/area/centcom/medical) +"RR" = ( +/obj/effect/shuttle_landmark{ + base_area = /area/space; + base_turf = /turf/unsimulated/floor; + landmark_tag = "supply_cc"; + name = "Centcom Supply Depot" + }, +/turf/simulated/shuttle/wall, +/area/shuttle/supply) +"RS" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 5 + }, +/obj/machinery/door/blast/shutters{ + id = "RiotCon"; + name = "Riot Control"; + req_access = list(63); + req_one_access = list(1) + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"RT" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/machinery/computer/card, +/turf/simulated/floor/tiled, +/area/centcom/command) +"RU" = ( +/turf/simulated/shuttle/floor/white, +/area/shuttle/escape) +"RV" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/kitchenspike{ + desc = "Lifts engines! You could probably also impale people and monkeys on it... but why would you do that, weirdo?"; + name = "engine lift" + }, +/turf/simulated/floor/tiled/steel, +/area/centcom) +"RW" = ( +/obj/structure/table/standard, +/turf/simulated/floor/tiled, +/area/centcom) +"RX" = ( +/obj/structure/flora/pottedplant, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 5 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/purple/bordercorner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"RY" = ( +/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{ + pixel_x = -6 + }, +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/yellow/diagonal, +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/centcom/control) +"RZ" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/centcom) +"Sa" = ( +/obj/machinery/computer/supplycomp/control{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/centcom) +"Sb" = ( +/obj/machinery/computer/secure_data{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Security Arrivals" + }) +"Sc" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/window/reinforced, +/turf/simulated/floor/tiled/dark, +/area/centcom/living) +"Sd" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 5 + }, +/obj/structure/table/reinforced, +/obj/item/device/camera, +/obj/item/weapon/storage/box/ids, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Security Arrivals" + }) +"Se" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-22" + }, +/turf/simulated/floor/carpet, +/area/centcom/restaurant) +"Sf" = ( +/obj/effect/floor_decal/industrial/outline, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Sg" = ( +/obj/machinery/button/remote/blast_door{ + id = "RiotCon"; + name = "Riot Control"; + pixel_x = -23; + req_access = list(63); + req_one_access = list(1) + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Sh" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/centcom/control) +"Sj" = ( +/obj/item/weapon/stool/padded{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/centcom/specops) +"Sl" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 1; + frequency = 1475; + name = "Station Intercom (Security)"; + pixel_y = 27 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Sn" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/brigdoor{ + req_access = list(63); + req_one_access = list(1) + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"So" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Sp" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Sq" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/shuttle/engine/heater{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel, +/area/centcom) +"Sr" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/shuttle/engine/propulsion{ + icon_state = "burst_l" + }, +/turf/simulated/floor/tiled/steel, +/area/centcom) +"Ss" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 10 + }, +/obj/structure/table/reinforced, +/obj/item/weapon/book/manual/security_space_law, +/obj/item/weapon/book/manual/security_space_law, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Security Arrivals" + }) +"Su" = ( +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Security Arrivals" + }) +"Sw" = ( +/obj/structure/table/glass, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/item/device/healthanalyzer/advanced, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Sx" = ( +/obj/structure/closet/crate/bin, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"Sy" = ( +/obj/structure/curtain/open/shower, +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/machinery/shower{ + dir = 1 + }, +/turf/simulated/floor/tiled/freezer, +/area/centcom/bathroom) +"Sz" = ( +/obj/machinery/status_display{ + layer = 4; + pixel_y = 32 + }, +/obj/machinery/vending/security, +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"SA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/wall/rshull, +/area/shuttle/ccboat) +"SB" = ( +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Residential Security" + }) +"SC" = ( +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/blue/border, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Security Arrivals" + }) +"SD" = ( +/obj/machinery/turretid/stun{ + check_access = 0; + check_anomalies = 0; + check_records = 0; + control_area = "\improper CentCom Security Arrivals"; + pixel_x = 32; + req_access = list(101); + req_one_access = list(101) + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Security Arrivals" + }) +"SF" = ( +/obj/machinery/vending/snack, +/turf/simulated/floor/carpet, +/area/centcom/restaurant) +"SG" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor, +/area/centcom/security) +"SJ" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"SK" = ( +/obj/effect/blocker, +/turf/simulated/floor/tiled{ + icon_state = "white" + }, +/area/centcom/living) +"SL" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled, +/area/centcom/security) +"SM" = ( +/obj/effect/floor_decal/industrial/outline, +/obj/structure/closet/secure_closet/nanotrasen_security, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"SN" = ( +/obj/effect/floor_decal/industrial/outline, +/obj/structure/closet/secure_closet/nanotrasen_security, +/obj/item/weapon/storage/box/handcuffs, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"SO" = ( +/obj/machinery/camera/network/crescent{ + dir = 10 + }, +/turf/simulated/floor/tiled/freezer, +/area/centcom/security) +"SP" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/centcom/living) +"SQ" = ( +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/blue/border, +/obj/effect/floor_decal/borderfloorblack/corner2, +/obj/effect/floor_decal/corner/blue/bordercorner2, +/obj/machinery/camera/network/crescent{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"SR" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"SS" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"ST" = ( +/obj/machinery/computer/security{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Residential Security" + }) +"SU" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"SW" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/closet/secure_closet/nanotrasen_warden, +/obj/item/weapon/storage/box/handcuffs, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"SX" = ( +/obj/machinery/door/airlock/security{ + name = "Security" + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Security Arrivals" + }) +"SZ" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/snacks/hotdog, +/obj/item/weapon/reagent_containers/food/snacks/hotdog{ + pixel_x = -5; + pixel_y = -3 + }, +/turf/simulated/floor/wood, +/area/centcom/restaurant) +"Ta" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/snacks/bigbiteburger, +/turf/simulated/floor/wood, +/area/centcom/restaurant) +"Tb" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 10 + }, +/obj/structure/closet/crate/bin, +/turf/simulated/floor/tiled/white, +/area/centcom/bathroom) +"Td" = ( +/obj/structure/table/standard, +/obj/item/clothing/accessory/badge/holo, +/obj/item/clothing/accessory/badge/holo, +/obj/item/clothing/accessory/badge/holo/cord, +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 26 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Te" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/centcom/command) +"Tf" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/material/ashtray/glass, +/obj/machinery/camera/network/crescent{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/centcom/restaurant) +"Tg" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/centcom/restaurant) +"Th" = ( +/obj/structure/bed/chair/shuttle{ + dir = 1 + }, +/obj/effect/floor_decal/emblem/stellardelight{ + dir = 9 + }, +/turf/simulated/shuttle/floor/white, +/area/shuttle/escape) +"Ti" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/card/id/gold/captain/spare, +/turf/simulated/floor/tiled, +/area/centcom/control) +"Tj" = ( +/obj/machinery/door/airlock/medical{ + name = "Operating Theatre"; + req_access = list(45) + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Tk" = ( +/obj/machinery/door/airlock/glass_security{ + id_tag = "innerS"; + name = "Colonial Security Airlock"; + req_access = list(63) + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Tm" = ( +/obj/machinery/door/airlock/glass_security{ + name = "Warden's Office"; + req_access = list(3) + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Tn" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/weapon/gun/energy/sniperrifle, +/obj/item/weapon/gun/energy/sniperrifle, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"To" = ( +/obj/structure/bed/chair/shuttle, +/turf/simulated/shuttle/floor/white, +/area/shuttle/escape) +"Tp" = ( +/obj/machinery/sleep_console{ + dir = 4 + }, +/turf/simulated/shuttle/floor/white, +/area/shuttle/escape) +"Tq" = ( +/obj/structure/table/steel, +/obj/item/weapon/storage/firstaid/regular, +/turf/simulated/floor/tiled, +/area/centcom/bathroom) +"Tr" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/structure/table/glass, +/obj/item/weapon/reagent_containers/spray/cleaner, +/obj/item/weapon/reagent_containers/spray/cleaner{ + desc = "Someone has crossed out the 'Space' from Space Cleaner and written in Chemistry. Scrawled on the back is, 'Okay, whoever filled this with polytrinic acid, it was only funny the first time. It was hard enough replacing the CMO's first cat!'"; + name = "Chemistry Cleaner" + }, +/obj/item/weapon/reagent_containers/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner"; + pixel_x = 2; + pixel_y = 2 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Tu" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 9 + }, +/obj/structure/table/reinforced, +/obj/machinery/microwave{ + pixel_y = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Security Arrivals" + }) +"Tv" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 26 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Security Arrivals" + }) +"Tw" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/weapon/gun/energy/netgun, +/obj/item/weapon/gun/energy/netgun, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Tz" = ( +/obj/structure/bed/chair/comfy/teal{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/centcom/command) +"TA" = ( +/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/reagent_dispensers/water_cooler/full, +/turf/simulated/floor/tiled{ + icon_state = "white" + }, +/area/centcom/living) +"TD" = ( +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/blue/border, +/obj/effect/floor_decal/borderfloorblack/corner2, +/obj/effect/floor_decal/corner/blue/bordercorner2, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"TE" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 1 + }, +/obj/machinery/camera/network/crescent, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Security Arrivals" + }) +"TF" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/blast/angled/open{ + dir = 4; + id = "ccshuttleshutter" + }, +/turf/simulated/floor, +/area/shuttle/ccboat) +"TG" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10, +/turf/simulated/floor/tiled, +/area/centcom/security{ + name = "\improper CentCom Residential Security" + }) +"TJ" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/weapon/shield/riot, +/obj/item/weapon/shield/riot, +/obj/item/weapon/shield/riot, +/obj/item/weapon/shield/riot, +/obj/item/weapon/shield/riot, +/obj/item/weapon/shield/riot, +/obj/item/weapon/shield/riot, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"TK" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"TL" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/material/ashtray/glass, +/turf/simulated/floor/carpet, +/area/centcom/restaurant) +"TM" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 9 + }, +/obj/structure/closet/crate/bin, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"TN" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_red" + }, +/area/shuttle/escape) +"TO" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"TP" = ( +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 26 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"TQ" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/machinery/camera/network/crescent, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"TR" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 1 + }, +/obj/machinery/turretid/stun{ + check_access = 0; + check_anomalies = 0; + check_records = 0; + control_area = "\improper CentCom Security"; + pixel_y = 32; + req_access = list(101); + req_one_access = list(101) + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"TS" = ( +/obj/machinery/door/airlock/glass_security{ + name = "Security Processing"; + req_access = list(1) + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"TT" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/centcom/terminal) +"TU" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled, +/area/centcom/command) +"TV" = ( +/obj/machinery/telecomms/allinone/ert, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"TW" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 6 + }, +/obj/structure/sign/warning/lethal_turrets{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/centcom/living) +"TY" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 4 + }, +/obj/machinery/camera/network/crescent, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"TZ" = ( +/obj/machinery/vending/security, +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Ua" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/reinforced, +/area/centcom) +"Ub" = ( +/obj/structure/table/reinforced, +/obj/machinery/computer/skills, +/turf/simulated/floor/tiled, +/area/centcom/command) +"Uc" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/reinforced, +/area/centcom) +"Ud" = ( +/obj/machinery/computer/security, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/centcom/command) +"Ue" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Uf" = ( +/obj/effect/floor_decal/borderfloor{ + pixel_y = -16 + }, +/turf/simulated/floor/tiled, +/area/centcom/command) +"Ug" = ( +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tram" + }, +/obj/machinery/door/airlock/glass_external{ + frequency = 1380; + icon_state = "door_locked"; + id_tag = "escape_shuttle_hatch_station"; + locked = 1; + name = "Shuttle Hatch" + }, +/turf/simulated/floor/tiled, +/area/centcom/terminal/tramfluff) +"Uh" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 2 + }, +/turf/simulated/floor/tiled, +/area/centcom/evac) +"Ui" = ( +/obj/structure/table/rack, +/obj/item/weapon/storage/box/frags, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Uk" = ( +/turf/simulated/floor/tiled, +/area/centcom/security) +"Ul" = ( +/turf/simulated/floor/tiled/white, +/area/centcom/bathroom) +"Um" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/mirror{ + pixel_x = -28 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/bathroom) +"Un" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Uo" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/item/weapon/storage/box/donkpockets, +/obj/item/weapon/storage/box/donkpockets, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Security Arrivals" + }) +"Up" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 6 + }, +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = 30 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Security Arrivals" + }) +"Uq" = ( +/obj/structure/table/standard, +/obj/item/weapon/soap, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/bathroom) +"Ur" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Ut" = ( +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/blue/border, +/obj/effect/floor_decal/borderfloorblack/corner2, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Uu" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/sign/department/interrogation{ + plane = -34 + }, +/turf/simulated/floor, +/area/centcom/security) +"Uv" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/item/weapon/paper_bin{ + pixel_x = -1; + pixel_y = 5 + }, +/obj/item/weapon/pen, +/obj/machinery/camera/network/crescent, +/turf/simulated/floor/tiled, +/area/centcom/command) +"Uw" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 10 + }, +/obj/structure/table/reinforced, +/obj/item/weapon/melee/baton/loaded, +/obj/item/weapon/melee/baton/loaded, +/obj/item/weapon/gun/energy/taser, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Security Arrivals" + }) +"Ux" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/machinery/camera/network/crescent, +/turf/simulated/floor/tiled, +/area/centcom/command) +"Uy" = ( +/obj/structure/toilet{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/bathroom) +"Uz" = ( +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/blue/border, +/obj/structure/closet/secure_closet/nanotrasen_security, +/obj/item/weapon/storage/box/handcuffs, +/obj/item/weapon/gun/energy/gun, +/obj/item/weapon/shield/riot, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Security Arrivals" + }) +"UA" = ( +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/blue/border, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 9 + }, +/obj/structure/closet/secure_closet/nanotrasen_security, +/obj/item/weapon/storage/box/handcuffs, +/obj/item/weapon/gun/energy/gun, +/obj/item/weapon/shield/riot, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Security Arrivals" + }) +"UB" = ( +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/grass, +/area/centcom/main_hall) +"UD" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"UE" = ( +/obj/machinery/computer/teleporter{ + dir = 2 + }, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"UF" = ( +/obj/effect/floor_decal/rust, +/turf/simulated/floor/tiled, +/area/centcom/evac) +"UG" = ( +/obj/item/weapon/storage/box/evidence, +/obj/item/weapon/folder/red, +/obj/structure/table/reinforced, +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"UH" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/box/empslite{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/box/flashbangs{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/item/weapon/storage/box/empslite, +/obj/item/weapon/storage/box/flashbangs{ + pixel_x = -2; + pixel_y = -2 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"UJ" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/paper_bin, +/obj/item/weapon/pen, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"UK" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/snacks/roastbeef, +/turf/simulated/floor/wood, +/area/centcom/restaurant) +"UL" = ( +/obj/structure/table/rack, +/obj/item/weapon/gun/projectile/automatic/p90, +/obj/item/weapon/gun/projectile/automatic/p90, +/obj/item/weapon/gun/projectile/automatic/p90, +/obj/item/weapon/gun/projectile/automatic/p90, +/obj/item/weapon/gun/projectile/automatic/p90, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"UM" = ( +/obj/machinery/door/airlock/glass_mining{ + id_tag = "cargodoor"; + name = "Cargo Office"; + req_access = list(31); + req_one_access = list() + }, +/turf/simulated/floor/tiled, +/area/centcom) +"UN" = ( +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tram" + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled, +/area/centcom/terminal/tramfluff) +"UO" = ( +/obj/machinery/camera/network/crescent{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/centcom/restaurant) +"UQ" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/snacks/pastatomato, +/turf/simulated/floor/wood, +/area/centcom/restaurant) +"UR" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/snacks/meatballspagetti, +/turf/simulated/floor/wood, +/area/centcom/restaurant) +"US" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 1 + }, +/turf/simulated/shuttle/plating/carry, +/area/shuttle/escape) +"UT" = ( +/obj/effect/floor_decal/derelict/d4, +/turf/simulated/floor/tiled, +/area/centcom/evac) +"UW" = ( +/obj/item/weapon/stool/padded, +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/orange/border, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"UX" = ( +/obj/machinery/computer/guestpass{ + pixel_y = 26 + }, +/turf/simulated/floor/wood, +/area/centcom/restaurant) +"UY" = ( +/obj/structure/table/standard, +/obj/item/weapon/hand_labeler, +/obj/item/weapon/reagent_containers/glass/beaker/large, +/obj/item/weapon/reagent_containers/glass/beaker/sulphuric, +/turf/simulated/floor/tiled, +/area/centcom/control) +"UZ" = ( +/obj/structure/table/marble, +/obj/item/weapon/reagent_containers/food/drinks/cup{ + pixel_x = 8; + pixel_y = 8 + }, +/obj/item/weapon/reagent_containers/food/drinks/cup{ + pixel_x = -4; + pixel_y = 8 + }, +/obj/item/weapon/reagent_containers/food/drinks/cup{ + pixel_x = 3 + }, +/obj/item/weapon/reagent_containers/food/drinks/cup{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/item/weapon/reagent_containers/food/drinks/cup{ + pixel_x = 8 + }, +/obj/item/weapon/reagent_containers/food/drinks/cup{ + pixel_x = -4 + }, +/obj/item/weapon/reagent_containers/food/drinks/cup{ + pixel_x = 8; + pixel_y = 12 + }, +/obj/item/weapon/reagent_containers/food/drinks/cup{ + pixel_x = -4; + pixel_y = 12 + }, +/turf/simulated/floor/wood, +/area/centcom/restaurant) +"Va" = ( +/obj/structure/table/marble, +/obj/machinery/chemical_dispenser/bar_coffee/full, +/obj/machinery/camera/network/crescent, +/turf/simulated/floor/wood, +/area/centcom/restaurant) +"Vb" = ( +/obj/structure/bed/chair/office/dark, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Vc" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Vd" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Vf" = ( +/obj/structure/bed/chair/sofa/bench/right{ + dir = 4; + padding_color = "#99AAFF" + }, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tram" + }, +/obj/random/forgotten_tram, +/turf/simulated/floor/tiled, +/area/centcom/terminal/tramfluff) +"Vg" = ( +/obj/structure/table/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/weapon/tool/crowbar, +/obj/item/weapon/storage/belt/utility, +/obj/item/weapon/storage/toolbox/electrical{ + pixel_x = 1; + pixel_y = 6 + }, +/turf/simulated/floor/tiled, +/area/centcom/control) +"Vh" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 10 + }, +/obj/machinery/camera/network/crescent, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Vj" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Vk" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Vl" = ( +/obj/machinery/vending/hydronutrients, +/obj/effect/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/orange/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Vm" = ( +/obj/machinery/fitness/punching_bag/clown, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Vo" = ( +/obj/machinery/vending/hydroseeds, +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Vp" = ( +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled/dark, +/area/centcom/command) +"Vq" = ( +/turf/simulated/floor/outdoors/grass/sif/virgo3b, +/area/centcom) +"Vr" = ( +/obj/machinery/fitness/heavy/lifter, +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Vt" = ( +/obj/machinery/disease2/isolator, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 5 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Vu" = ( +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Security Arrivals" + }) +"Vv" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/material/minihoe, +/obj/item/device/analyzer/plant_analyzer, +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Vw" = ( +/obj/structure/bed/chair/shuttle{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/shuttle/ccboat) +"Vx" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/snacks/kitsuneudon, +/turf/simulated/floor/wood, +/area/centcom/restaurant) +"Vy" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/snacks/lasagna, +/turf/simulated/floor/wood, +/area/centcom/restaurant) +"Vz" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled, +/area/centcom/restaurant) +"VA" = ( +/obj/item/device/camera{ + desc = "A one use - polaroid camera. 30 photos left."; + name = "detectives camera"; + pictures_left = 30; + pixel_x = 2; + pixel_y = 3 + }, +/obj/structure/table/reinforced, +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"VB" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"VC" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"VE" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"VF" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"VH" = ( +/turf/simulated/floor/tiled, +/area/centcom/living) +"VI" = ( +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = 30 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"VJ" = ( +/obj/machinery/teleport/station, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"VK" = ( +/obj/machinery/computer/security/telescreen/entertainment{ + icon_state = "frame"; + pixel_x = 32 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"VL" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/item/weapon/folder/blue_hop, +/turf/simulated/floor/carpet, +/area/centcom/command) +"VM" = ( +/obj/machinery/optable, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/medical) +"VN" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor, +/area/centcom/main_hall) +"VO" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/item/weapon/paper_bin{ + pixel_x = -1; + pixel_y = 5 + }, +/obj/item/weapon/pen, +/turf/simulated/floor/tiled, +/area/centcom/command) +"VP" = ( +/obj/item/device/taperecorder, +/obj/structure/table/reinforced, +/obj/effect/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"VQ" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/borderfloor, +/obj/item/weapon/paper_bin{ + pixel_x = -1; + pixel_y = 5 + }, +/obj/item/weapon/pen, +/turf/simulated/floor/tiled, +/area/centcom/command) +"VR" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/centcom/command) +"VS" = ( +/obj/structure/table/standard, +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = 30 + }, +/obj/item/device/radio, +/obj/item/device/radio, +/obj/item/device/radio, +/obj/item/device/radio, +/obj/item/device/radio, +/obj/item/device/radio, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/obj/item/weapon/tool/crowbar, +/obj/item/weapon/tool/crowbar, +/obj/item/weapon/tool/crowbar, +/obj/item/weapon/tool/crowbar, +/obj/item/weapon/tool/crowbar, +/obj/item/weapon/tool/crowbar, +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 26 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 5 + }, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"VT" = ( +/obj/structure/filingcabinet/filingcabinet, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/centcom/command) +"VV" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/brigdoor{ + dir = 8; + req_access = list(63); + req_one_access = newlist() + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"VW" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"VX" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/ammo_magazine/m9mmp90, +/obj/item/ammo_magazine/m9mmp90, +/obj/item/ammo_magazine/m9mmp90, +/obj/item/ammo_magazine/m9mmp90, +/obj/item/ammo_magazine/m9mmp90, +/obj/item/ammo_magazine/m9mmp90, +/obj/item/ammo_magazine/m9mmp90, +/obj/item/ammo_magazine/m9mmp90, +/obj/item/ammo_magazine/m9mmp90, +/obj/item/ammo_magazine/m9mmp90, +/obj/machinery/camera/network/crescent, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"VY" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"VZ" = ( +/obj/effect/shuttle_landmark{ + base_area = /area/centcom; + base_turf = /turf/simulated/floor/reinforced; + docking_controller = "centcom_dock"; + landmark_tag = "escape_cc"; + name = "Escape Shuttle" + }, +/turf/simulated/shuttle/wall, +/area/shuttle/escape) +"Wa" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Wb" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 2 + }, +/turf/simulated/floor/tiled, +/area/centcom/restaurant) +"Wc" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass, +/turf/simulated/floor/tiled, +/area/centcom/restaurant) +"Wd" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 2 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"We" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Wf" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 10 + }, +/obj/machinery/transhuman/resleever, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Wg" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/simulated/shuttle/floor/white, +/area/shuttle/escape) +"Wh" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Wj" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/turf/simulated/floor/tiled{ + icon_state = "white" + }, +/area/centcom/living) +"Wk" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Wl" = ( +/obj/item/weapon/stool/padded, +/turf/simulated/floor/lino, +/area/centcom/restaurant) +"Wm" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-21" + }, +/obj/machinery/camera/network/crescent, +/turf/simulated/floor/tiled/freezer, +/area/centcom/bathroom) +"Wn" = ( +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/blue/border, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Wo" = ( +/obj/structure/bed/chair/office/light, +/turf/simulated/floor/tiled, +/area/centcom/command) +"Wp" = ( +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 26 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Residential Security" + }) +"Wq" = ( +/obj/structure/table/rack, +/obj/item/weapon/storage/box/flashshells/large, +/obj/item/weapon/storage/box/flashshells/large, +/obj/item/weapon/storage/box/flashshells/large, +/obj/item/weapon/storage/box/flashshells/large, +/obj/item/weapon/storage/box/flashshells/large, +/obj/item/weapon/storage/box/flashshells/large, +/obj/item/weapon/storage/box/flashshells/large, +/obj/item/weapon/storage/box/flashshells/large, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Wr" = ( +/obj/structure/curtain/open/shower, +/obj/machinery/shower{ + pixel_y = 13 + }, +/turf/simulated/floor/tiled/freezer, +/area/centcom/security) +"Ws" = ( +/obj/structure/closet{ + name = "Prisoner's Locker" + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Wt" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Wu" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloorblack/corner2, +/obj/effect/floor_decal/corner/blue/bordercorner2, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Ww" = ( +/obj/machinery/computer/card{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Wx" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Wz" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/orange/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"WA" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/orange/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"WB" = ( +/turf/simulated/floor/bluegrid, +/area/centcom/control) +"WC" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/command) +"WD" = ( +/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/table/glass, +/obj/item/weapon/storage/firstaid/o2, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"WE" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/bed/chair/shuttle{ + dir = 4 + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_yellow" + }, +/area/shuttle/escape) +"WF" = ( +/obj/machinery/door/airlock/angled_bay/standard/glass{ + dir = 4; + door_color = "#e6ab22"; + name = "Engineering Glass"; + req_access = null; + stripe_color = "#913013" + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_yellow" + }, +/area/shuttle/escape) +"WG" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/centcom) +"WH" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/bed/chair/shuttle{ + dir = 8 + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_yellow" + }, +/area/shuttle/escape) +"WI" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor, +/area/centcom/medical) +"WJ" = ( +/obj/machinery/computer/secure_data{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/blue/border, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"WK" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tram" + }, +/turf/simulated/floor/tiled, +/area/centcom/terminal/tramfluff) +"WM" = ( +/obj/machinery/camera/network/crescent, +/turf/simulated/floor/tiled, +/area/centcom/bathroom) +"WO" = ( +/obj/machinery/sleep_console{ + dir = 4 + }, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"WP" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"WQ" = ( +/obj/structure/filingcabinet/chestdrawer{ + desc = "A large drawer filled with autopsy reports."; + name = "Autopsy Reports" + }, +/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, +/turf/simulated/floor/tiled/dark, +/area/centcom/medical) +"WR" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor, +/area/centcom/bar) +"WS" = ( +/obj/structure/table/standard, +/obj/machinery/computer/skills{ + pixel_y = 2 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/centcom/command) +"WU" = ( +/obj/structure/closet{ + name = "Prisoner's Locker" + }, +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/orange/border, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"WV" = ( +/obj/machinery/door/airlock, +/turf/simulated/floor/tiled, +/area/centcom/security) +"WW" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 6 + }, +/obj/machinery/door/airlock/security{ + name = "Security" + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"WX" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/centcom/command) +"WY" = ( +/obj/structure/bed/chair, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"WZ" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/machinery/button/remote/blast_door{ + id = "TelelockdownC"; + name = "Teleporter Full Lockdown"; + pixel_x = 6; + pixel_y = -5; + req_access = list(63); + req_one_access = list(1) + }, +/obj/item/weapon/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/machinery/camera/network/crescent, +/turf/simulated/floor/tiled, +/area/centcom/command) +"Xb" = ( +/obj/structure/table/rack, +/obj/item/weapon/shield/energy, +/obj/item/weapon/shield/energy, +/obj/item/weapon/shield/energy, +/obj/item/weapon/shield/energy, +/obj/item/weapon/shield/energy, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/weapon/melee/energy/sword/blue, +/obj/item/weapon/melee/energy/sword/blue, +/obj/item/weapon/melee/energy/sword/blue, +/obj/item/weapon/melee/energy/sword/blue, +/obj/item/weapon/melee/energy/sword/blue, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Xc" = ( +/obj/machinery/door/airlock/glass{ + name = "Brig Dormitories" + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Xd" = ( +/obj/structure/bed/chair/shuttle{ + dir = 4 + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_yellow" + }, +/area/shuttle/escape) +"Xe" = ( +/obj/structure/closet{ + name = "welding equipment" + }, +/obj/item/clothing/head/welding{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/item/clothing/glasses/welding, +/turf/simulated/floor/tiled, +/area/centcom/control) +"Xf" = ( +/obj/effect/floor_decal/industrial/outline, +/obj/structure/closet/secure_closet/nanotrasen_security, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Xg" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/light, +/obj/machinery/transhuman/resleever, +/turf/simulated/floor/tiled, +/area/centcom/control) +"Xh" = ( +/obj/machinery/door/airlock{ + name = "Unit 1" + }, +/turf/simulated/floor/tiled/freezer, +/area/centcom/security) +"Xi" = ( +/obj/structure/bed/chair/shuttle{ + dir = 8 + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_yellow" + }, +/area/shuttle/escape) +"Xk" = ( +/obj/structure/bed/chair/shuttle{ + dir = 4 + }, +/turf/simulated/shuttle/floor/white, +/area/shuttle/escape) +"Xl" = ( +/obj/structure/bed/chair/shuttle{ + dir = 8 + }, +/turf/simulated/shuttle/floor/white, +/area/shuttle/escape) +"Xm" = ( +/obj/structure/closet/crate, +/turf/simulated/floor/tiled/dark, +/area/centcom) +"Xn" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-22" + }, +/turf/simulated/floor/tiled, +/area/centcom/living) +"Xp" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"Xq" = ( +/turf/simulated/floor/tiled/dark, +/area/centcom) +"Xr" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/gun/energy/taser, +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 26 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Xs" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/weapon/gun/energy/xray, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Xt" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"Xu" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"Xw" = ( +/obj/structure/bed/chair/office/dark, +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Xx" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/drinks/bottle/grenadine, +/turf/simulated/floor/lino, +/area/centcom/restaurant) +"Xy" = ( +/turf/simulated/floor/carpet, +/area/centcom/command) +"Xz" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/green, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 6 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"XA" = ( +/obj/structure/bed/chair/sofa/bench/right{ + dir = 1; + padding_color = "#99AAFF" + }, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tram" + }, +/turf/simulated/floor/tiled, +/area/centcom/terminal/tramfluff) +"XB" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/drinks/bottle/cola, +/turf/simulated/floor/lino, +/area/centcom/restaurant) +"XD" = ( +/obj/machinery/door/airlock/security{ + id_tag = "front"; + name = "Security" + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"XE" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/drinks/bottle/space_mountain_wind, +/turf/simulated/floor/lino, +/area/centcom/restaurant) +"XF" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/snacks/toastedsandwich{ + pixel_y = 10 + }, +/turf/simulated/floor/lino, +/area/centcom/restaurant) +"XH" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/structure/table/woodentable, +/obj/item/device/radio/off, +/obj/item/device/megaphone, +/obj/machinery/camera/network/crescent, +/turf/simulated/floor/tiled/dark, +/area/centcom/command) +"XI" = ( +/obj/machinery/atmospherics/binary/pump/fuel{ + dir = 8 + }, +/obj/structure/fuel_port{ + pixel_y = 29 + }, +/turf/simulated/floor/tiled/eris/dark/cargo, +/area/shuttle/ccboat) +"XJ" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-04" + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"XM" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/machinery/photocopier, +/turf/simulated/floor/tiled/dark, +/area/centcom/command) +"XN" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"XO" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/machinery/newscaster{ + pixel_x = 29 + }, +/turf/simulated/floor/tiled, +/area/centcom/command) +"XP" = ( +/turf/simulated/floor/tiled/dark, +/area/centcom/medical) +"XQ" = ( +/obj/structure/bed/chair/sofa/bench/left{ + dir = 1; + padding_color = "#99AAFF" + }, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tram" + }, +/turf/simulated/floor/tiled, +/area/centcom/terminal/tramfluff) +"XR" = ( +/obj/machinery/porta_turret/crescent{ + density = 1 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/camera/network/crescent, +/turf/simulated/floor/tiled, +/area/centcom/security) +"XS" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-22" + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"XT" = ( +/obj/structure/bed/chair/office/dark, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"XU" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/box/donkpockets, +/obj/item/weapon/storage/box/donkpockets, +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"XV" = ( +/obj/structure/table/reinforced, +/obj/item/device/taperecorder, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"XW" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/orange/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"XX" = ( +/obj/machinery/light, +/turf/simulated/shuttle/floor{ + icon_state = "floor_yellow" + }, +/area/shuttle/escape) +"XY" = ( +/obj/machinery/camera/network/crescent{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"XZ" = ( +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tram" + }, +/turf/simulated/floor/tiled, +/area/centcom/terminal/tramfluff) +"Ya" = ( +/obj/machinery/porta_turret/crescent{ + density = 1 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled, +/area/centcom/living) +"Yc" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-21" + }, +/turf/simulated/floor/tiled, +/area/centcom/terminal) +"Yd" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/orange, +/obj/machinery/camera/network/crescent, +/obj/effect/floor_decal/borderfloorblack{ + dir = 5 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Ye" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/external/glass{ + dir = 4; + door_color = "#822a1e"; + frequency = 1380; + id_tag = "escape_shuttle_hatch"; + locked = 1; + name = "Docking Port Airlock" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/shuttle/escape) +"Yf" = ( +/obj/machinery/door/airlock/angled_bay/external/glass{ + door_color = "#822a1e"; + frequency = 1380; + id_tag = "supply_shuttle_hatch"; + locked = 1; + name = "Shuttle Hatch" + }, +/turf/simulated/shuttle/floor, +/area/shuttle/supply) +"Yh" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 6 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/purple/bordercorner2, +/obj/effect/floor_decal/corner/purple/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"Yj" = ( +/obj/machinery/vending/coffee, +/turf/simulated/floor/wood, +/area/centcom/restaurant) +"Ym" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/dark/cargo, +/area/shuttle/ccboat) +"Yn" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/structure/reagent_dispensers/water_cooler/full, +/obj/machinery/camera/network/crescent, +/turf/simulated/floor/tiled, +/area/centcom/command) +"Yo" = ( +/obj/machinery/vending/sovietsoda, +/turf/simulated/floor/wood, +/area/centcom/restaurant) +"Yp" = ( +/obj/machinery/vending/snack, +/turf/simulated/floor/wood, +/area/centcom/restaurant) +"Yq" = ( +/obj/machinery/vending/cola, +/turf/simulated/floor/wood, +/area/centcom/restaurant) +"Ys" = ( +/obj/structure/table/rack, +/obj/item/weapon/storage/box/seccarts{ + pixel_x = 3; + pixel_y = 2 + }, +/obj/item/weapon/storage/box/handcuffs, +/obj/item/weapon/storage/box/flashbangs{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/device/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Yt" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 6 + }, +/obj/machinery/camera/network/crescent, +/turf/simulated/floor/tiled, +/area/centcom/living) +"Yu" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/orange, +/obj/effect/floor_decal/borderfloorblack{ + dir = 6 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Yv" = ( +/obj/machinery/atm{ + pixel_x = -26 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Yw" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Yx" = ( +/obj/structure/table/rack, +/obj/item/weapon/gun/projectile/shotgun/pump/combat, +/obj/item/weapon/gun/projectile/shotgun/pump/combat, +/obj/item/weapon/gun/projectile/shotgun/pump/combat, +/obj/item/weapon/gun/projectile/shotgun/pump/combat, +/obj/item/weapon/gun/projectile/shotgun/pump/combat, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Yy" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"Yz" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/orange, +/obj/effect/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/orange/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"YA" = ( +/obj/structure/table/reinforced, +/obj/machinery/microwave, +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"YB" = ( +/obj/machinery/newscaster{ + layer = 3.3; + pixel_x = 28 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"YC" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/bed/chair/shuttle{ + dir = 4 + }, +/turf/simulated/shuttle/floor/white, +/area/shuttle/escape) +"YD" = ( +/obj/structure/table/reinforced, +/obj/machinery/light, +/turf/simulated/shuttle/floor/white, +/area/shuttle/escape) +"YE" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"YF" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/shuttle/floor, +/area/shuttle/supply) +"YH" = ( +/obj/structure/bed/chair/office/dark, +/obj/effect/floor_decal/borderfloorblack/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Residential Security" + }) +"YI" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 6 + }, +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/drinks/flask/barflask{ + pixel_x = -4; + pixel_y = 8 + }, +/obj/item/device/taperecorder, +/turf/simulated/floor/tiled/dark, +/area/centcom/command) +"YJ" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"YK" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"YL" = ( +/turf/simulated/floor/tiled, +/area/centcom/terminal) +"YM" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 6 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 6 + }, +/obj/structure/table/glass, +/obj/item/weapon/storage/box/syringes, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"YN" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + id_tag = "supply_shuttle"; + pixel_y = 24; + req_one_access = list(13,31); + tag_door = "supply_shuttle_hatch" + }, +/turf/simulated/shuttle/floor, +/area/shuttle/supply) +"YP" = ( +/obj/item/modular_computer/console/preset/civilian{ + dir = 8 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/eris/dark/cargo, +/area/shuttle/ccboat) +"YQ" = ( +/turf/simulated/shuttle/floor{ + icon_state = "floor_yellow" + }, +/area/shuttle/escape) +"YR" = ( +/obj/machinery/smartfridge/drinks, +/turf/simulated/floor/lino, +/area/centcom/restaurant) +"YS" = ( +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tram" + }, +/obj/structure/bed/chair/sofa/bench/left{ + dir = 8; + padding_color = "#99AAFF" + }, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/centcom/terminal/tramfluff) +"YT" = ( +/obj/structure/shuttle/engine/heater{ + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/simulated/shuttle/plating/airless, +/area/shuttle/escape) +"YU" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"YV" = ( +/obj/structure/table/reinforced, +/obj/machinery/microwave, +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Residential Security" + }) +"YX" = ( +/obj/structure/table/rack, +/obj/item/clothing/gloves/arm_guard/laserproof, +/obj/item/clothing/shoes/leg_guard/laserproof, +/obj/item/clothing/suit/armor/laserproof, +/obj/item/clothing/head/helmet/laserproof, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"YY" = ( +/obj/machinery/vending/boozeomat, +/turf/simulated/floor/lino, +/area/centcom/restaurant) +"YZ" = ( +/obj/structure/table/reinforced, +/obj/machinery/chemical_dispenser/bar_soft/full, +/turf/simulated/floor/lino, +/area/centcom/restaurant) +"Za" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/centcom/evac) +"Zb" = ( +/obj/structure/table/reinforced, +/obj/machinery/chemical_dispenser/bar_alc/full, +/turf/simulated/floor/lino, +/area/centcom/restaurant) +"Zc" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/medical) +"Zd" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Ze" = ( +/obj/machinery/camera/network/crescent, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"Zg" = ( +/turf/simulated/floor/tiled, +/area/centcom/bathroom) +"Zh" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/reagent_containers/food/drinks/flask/barflask, +/obj/item/weapon/reagent_containers/glass/rag, +/obj/item/weapon/reagent_containers/food/drinks/flask/vacuumflask, +/turf/simulated/floor/lino, +/area/centcom/restaurant) +"Zj" = ( +/obj/machinery/newscaster{ + pixel_x = -27 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Zk" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/centcom/command) +"Zl" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Zm" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-04" + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Zo" = ( +/obj/machinery/porta_turret/crescent{ + density = 1 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Zp" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/pill_bottle/dice, +/obj/item/weapon/deck/cards, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Zq" = ( +/obj/machinery/computer/security/telescreen, +/turf/unsimulated/floor/steel, +/area/tdome/tdomeobserve) +"Zr" = ( +/obj/structure/shuttle/engine/heater{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor, +/area/shuttle/supply) +"Zs" = ( +/obj/machinery/door/airlock/glass_security{ + name = "Confiscated Items"; + req_access = list(3) + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Zt" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 4; + icon_state = "burst_r" + }, +/turf/simulated/shuttle/plating/carry, +/area/shuttle/supply) +"Zu" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/machinery/door/airlock/glass{ + name = "Kitchen"; + req_access = list(28) + }, +/turf/simulated/floor/tiled/white, +/area/centcom/bar) +"Zv" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/machinery/camera/network/crescent, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Zx" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/centcom/living) +"Zy" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/turf/simulated/floor/tiled, +/area/centcom/living) +"Zz" = ( +/obj/machinery/status_display{ + pixel_x = -31 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"ZA" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/turf/simulated/floor/carpet, +/area/centcom/command) +"ZB" = ( +/obj/machinery/door/airlock, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"ZC" = ( +/obj/machinery/door/airlock/angled_bay/standard/glass{ + door_color = "#323d80"; + name = "Command Glass"; + req_access = list(19); + req_one_access = list(19); + stripe_color = "#f7d35c" + }, +/turf/simulated/shuttle/floor, +/area/shuttle/escape) +"ZD" = ( +/obj/machinery/porta_turret/crescent{ + density = 1 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled, +/area/centcom/security) +"ZF" = ( +/obj/machinery/computer/secure_data{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"ZG" = ( +/obj/item/weapon/paper{ + info = "You're not supposed to be here."; + name = "unnerving letter" + }, +/turf/simulated/floor/tiled/dark, +/area/centcom) +"ZH" = ( +/obj/structure/table/marble, +/obj/machinery/microwave{ + pixel_x = -3; + pixel_y = 6 + }, +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/bar) +"ZI" = ( +/obj/effect/floor_decal/derelict/d7, +/turf/simulated/floor/tiled, +/area/centcom/evac) +"ZJ" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor, +/area/centcom/terminal) +"ZK" = ( +/turf/simulated/floor/tiled, +/area/centcom/evac) +"ZL" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/structure/sink/kitchen{ + pixel_y = 28 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/bar) +"ZM" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/simulated/floor/tiled/white, +/area/centcom/bar) +"ZN" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/tool/crowbar, +/obj/item/weapon/tool/screwdriver, +/obj/item/weapon/tool/wrench, +/obj/item/weapon/tool/crowbar, +/obj/item/weapon/tool/screwdriver, +/obj/item/weapon/tool/wrench, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"ZO" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/structure/table/marble, +/obj/machinery/reagentgrinder, +/turf/simulated/floor/tiled/white, +/area/centcom/bar) +"ZP" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Residential Security" + }) +"ZQ" = ( +/turf/unsimulated/mineral/virgo3b, +/area/centcom) +"ZR" = ( +/obj/machinery/deployable/barrier, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled, +/area/centcom/security) +"ZS" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/machinery/vending/dinnerware, +/turf/simulated/floor/tiled/white, +/area/centcom/bar) +"ZT" = ( +/obj/structure/table/rack, +/obj/item/weapon/storage/box/empshells/large, +/obj/item/weapon/storage/box/empshells/large, +/obj/item/weapon/storage/box/empshells/large, +/obj/item/weapon/storage/box/empshells/large, +/obj/item/weapon/storage/box/empshells/large, +/obj/item/weapon/storage/box/empshells/large, +/obj/item/weapon/storage/box/empshells/large, +/obj/item/weapon/storage/box/empshells/large, +/obj/item/weapon/storage/box/empshells/large, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/camera/network/crescent, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"ZU" = ( +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tram" + }, +/obj/structure/bed/chair/shuttle{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/centcom/terminal/tramfluff) +"ZV" = ( +/obj/structure/bed/chair/backed_grey{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/shuttle/centcom/ccbay) +"ZW" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled, +/area/centcom/command) +"ZZ" = ( +/obj/machinery/computer/arcade/orion_trail, +/obj/effect/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/orange/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) + +(1,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(2,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +ZQ +ZQ +ZQ +ZQ +CA +aa +"} +(3,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(4,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(5,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(6,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(7,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(8,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(9,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(10,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(11,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(12,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(13,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(14,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(15,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(16,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(17,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(18,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(19,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(20,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +aH +aH +GA +GA +GA +aH +aH +GA +GA +GA +aH +aH +GA +GA +GA +aH +aH +GA +GA +GA +aH +aH +GA +GA +GA +aH +aH +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(21,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +aH +Ua +GW +GW +GW +GW +GW +GW +GW +GW +GW +GW +GW +GW +GW +GW +GW +GW +GW +GW +GW +GW +GW +GW +GW +fg +aH +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(22,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +QL +Qr +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +zZ +aH +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(23,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +QL +Qr +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Ey +Ey +PR +PR +PR +PR +Ey +Bf +Bf +Bf +zZ +aH +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(24,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +aH +Qr +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +US +YT +yb +yb +yb +KO +Ot +Ey +Bf +Bf +zZ +aH +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(25,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +QL +Qr +Bf +Ey +Ey +Ey +Ye +Ey +Ey +Ey +Ey +Bf +Bf +Bf +Bf +US +YT +fW +fW +fW +fW +ey +gm +Bf +Bf +zZ +aH +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(26,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +aH +Qr +Bf +US +YT +YQ +YQ +WE +Xd +Xd +Ey +PR +PR +PR +PR +Ey +Ey +jN +fW +fW +pI +ey +gm +Bf +Bf +zZ +aH +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(27,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +QL +Qr +Bf +US +YT +YQ +YQ +YQ +YQ +XX +Ey +Xk +Xk +Xk +Xk +YC +Ey +et +fW +fW +pI +Ot +Ey +Ey +Bf +zZ +aH +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(28,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +QL +Qr +Bf +Ot +Ey +YQ +YQ +YQ +Xi +Xi +Ey +Wg +RU +RU +RU +RU +yy +fW +fW +TN +fW +CB +Ey +Ey +Bf +zZ +aH +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(29,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +aH +Qr +Bf +Ey +Ey +Ey +Ey +WF +Ey +Ey +Ot +RU +To +Nz +FY +RU +Ot +PR +Ot +Ey +Ey +Ey +Ey +Ey +Bf +zZ +aH +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(30,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +ah +ah +PL +PL +PL +ah +ah +PL +PL +PL +ah +ah +Qr +Bf +Bf +Bf +Ey +zR +RU +Xk +Xk +YC +RU +To +Ps +FY +RU +Xk +Xk +Ey +rU +rQ +Qi +hS +PR +Bf +zZ +aH +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(31,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +ah +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +qU +Qr +Bf +Bf +Bf +OL +RU +RU +RU +RU +RU +RU +To +Nz +Th +hY +GQ +RU +ZC +bn +bn +bn +sI +PR +Bf +zZ +aH +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(32,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +ah +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +ah +Qr +Bf +Bf +Bf +VZ +Wg +RU +Nz +Nz +Nz +RU +RU +RU +gN +kD +KS +YD +Ey +uQ +bn +rM +IZ +PR +Bf +zZ +aH +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(33,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +ah +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +qU +Qr +Bf +Bf +Bf +OL +RU +RU +RU +RU +RU +RU +To +Nz +pZ +pl +wn +RU +ZC +bn +bn +bn +AU +PR +Bf +zZ +aH +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(34,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +ah +kQ +vu +vu +vu +ah +ah +ah +ah +ah +ah +ah +oa +Bf +Bf +Bf +Ey +zR +RU +Xl +Xl +EB +RU +To +Ps +FY +RU +Xl +Xl +Ey +gv +LZ +AS +oU +PR +Bf +zZ +aH +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(35,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +ah +vu +vu +vu +vu +ah +dj +ze +dj +ze +ze +ze +Qr +Bf +Ey +Ey +Ey +Ey +WF +Ey +Ey +Ot +RU +To +Nz +FY +RU +Ot +PR +Ot +Ey +Ey +Ey +Ey +Ey +Bf +zZ +aH +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(36,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aH +aH +GA +GA +GA +aH +aH +GA +GA +GA +aH +aH +GA +GA +GA +aH +ah +vu +vu +vu +vu +ah +Qt +ze +ze +ze +dj +ze +Qr +Bf +Ot +Ey +YQ +YQ +YQ +Xd +Xd +Ey +Wg +RU +RU +RU +RU +zt +RU +RU +lu +RU +wz +Ey +Ey +Bf +zZ +aH +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(37,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aH +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +ah +vu +vu +vu +vu +ah +ze +xH +xH +xH +xH +ze +Qr +Bf +US +YT +YQ +YQ +YQ +YQ +XX +Ey +Xl +Xl +Xl +Xl +EB +Ey +qZ +RU +RU +Tp +Ot +Ey +Ey +Bf +zZ +aH +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(38,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aH +Bf +GL +WG +WG +WG +WG +JU +Bf +GL +WG +WG +WG +WG +JU +Bf +OO +vu +vu +vu +vu +ah +ze +Rq +RV +Sq +xH +ze +Qr +Bf +US +YT +YQ +YQ +WH +Xi +Xi +Ey +PR +PR +PR +PR +Ey +Ey +zn +RU +RU +Jn +ey +gm +Bf +Bf +zZ +aH +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(39,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aH +Bf +zZ +Bf +fG +Bf +Bf +Qr +Bf +zZ +Bf +Bf +Bf +Bf +Qr +Bf +OP +vu +vu +vu +vu +ah +ze +xH +xH +xH +xH +ze +Qr +Bf +Ey +Ey +Ey +Ye +Ey +Ey +Ey +Ey +Bf +Bf +Bf +Bf +US +YT +RU +RU +RU +RU +ey +gm +Bf +Bf +zZ +aH +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(40,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aH +Bf +zZ +Bf +Bf +Bf +Bf +Qr +Bf +zZ +Bf +Bf +Bf +Bf +Qr +Bf +ah +vu +vu +vu +vu +ah +ze +Rr +dk +Sr +xH +ze +Qr +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +US +YT +Xl +Xl +Xl +eK +Ot +Ey +Bf +Bf +zZ +aH +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(41,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aH +Bf +zZ +Bf +Bf +Bf +Bf +Qr +Bf +zZ +Bf +Bf +Bf +Bf +Qr +Bf +ah +vu +vu +vu +vu +ah +ze +xH +xH +xH +xH +ze +Qr +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Ey +Ey +PR +PR +PR +PR +Ey +Bf +Bf +Bf +zZ +aH +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(42,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aH +Bf +zZ +Bf +Bf +Bf +Bf +Qr +Bf +zZ +Bf +Bf +Bf +Bf +Qr +Bf +ah +vu +vu +vu +vu +ah +Qy +ze +Qz +ze +ze +ze +Qr +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +zZ +aH +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(43,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aH +Bf +zZ +Bf +Bf +Bf +Bf +Qr +Bf +zZ +Bf +Bf +Bf +Bf +Qr +Bf +ah +vu +vu +vu +vu +ah +Qz +ze +ze +ze +Qy +ze +Uc +WG +WG +WG +WG +WG +WG +WG +WG +WG +WG +WG +WG +WG +WG +WG +WG +WG +WG +WG +WG +WG +WG +WG +qK +aH +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(44,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aH +Bf +zZ +Bf +Bf +Bf +Bf +Qr +Bf +zZ +Bf +sS +Bf +Bf +Qr +Bf +OO +vu +vu +vu +vu +ah +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(45,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aH +Bf +GM +GW +GW +GW +GW +JX +Bf +GM +GW +GW +GW +GW +JX +Bf +OP +vu +vu +vu +vu +vu +ze +vm +ze +ze +wG +wG +OY +wG +aH +xH +xH +xH +aH +Xm +Xm +Xq +Xm +Xm +Xm +Xq +Xm +Xm +aH +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(46,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aH +Bf +Bf +Bf +na +Bf +Bf +Bf +Bf +Bf +Bf +Bz +Bf +Bf +Bf +Bf +ah +vu +vu +vu +vu +vu +OY +bm +ze +ze +xH +xH +xH +xH +aH +xH +xH +xH +aH +Xq +Xq +Xq +Xq +ZG +Xq +Xq +Xq +Xq +aH +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(47,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +ah +vu +vu +vu +vu +vu +OY +Rv +RW +ze +ze +ze +ze +ze +UM +xH +xH +xH +aH +Xm +Xm +Xq +Xm +Xm +Xm +Xq +Xm +Xm +aH +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(48,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ah +kQ +vu +vu +vu +vu +OY +Rv +RW +ze +OY +wG +OY +OY +aH +xH +xH +xH +bm +Xq +Xq +Xq +Xq +Xq +Xq +Xq +Xq +Xq +bm +aH +aH +aH +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(49,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ah +vu +vu +vu +vu +vu +QC +Rx +RZ +ze +ze +ze +ze +ze +aH +MS +MS +MS +MS +MS +MS +MS +MS +MS +MS +MS +MS +MS +MS +MS +MS +aH +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(50,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ah +vu +vu +vu +vu +vu +QE +aH +Sa +ze +wG +OY +wG +OY +aH +MS +gF +pk +pk +pk +pk +pk +pk +pk +pk +pk +pk +pk +pk +vO +MS +aH +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(51,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aM +aM +aM +aM +aM +aM +aM +aM +aM +kQ +vu +vu +vu +aM +aM +aM +aM +aM +aM +aM +aM +aM +aH +MS +wj +MS +MS +MS +Cv +Cv +Cv +RR +Cv +Cv +Cv +MS +MS +zw +MS +aH +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(52,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +al +al +al +al +al +al +al +al +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aM +Lx +LF +LF +MH +Ni +lj +NP +aM +vu +vu +vu +vu +aM +QF +lj +xg +LF +LF +LF +Um +aM +aH +MS +wj +MS +MS +MS +Cv +YF +Cj +Cj +Cj +Cj +Cv +MS +MS +zw +MS +aH +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(53,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +al +al +al +al +al +al +al +al +mR +mR +mR +mR +mR +uz +al +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aM +Or +Ul +Ul +Ul +Ul +Ul +NQ +aM +vu +vu +vu +vu +aM +Or +Ul +Ul +Ul +Ul +Ul +NQ +aM +aH +MS +wj +MS +MS +MS +BJ +vU +vU +vU +vU +Cj +Cv +MS +MS +zw +MS +aH +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(54,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +al +jc +jc +kl +kl +al +al +al +RO +RO +RO +RO +RO +RO +al +al +al +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aM +Ul +Ul +Ul +Ul +Ul +Ul +Ul +OR +vu +vu +vu +vu +OR +Ul +Ul +Ul +Ul +Ul +Ul +Ul +aM +aH +MS +wj +MS +MS +MS +Yf +Cj +Cj +Cj +Cj +oT +Cv +MS +MS +zw +MS +aH +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(55,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +al +je +je +je +lb +al +me +GJ +Gb +Gb +Gb +Gb +Gb +Gb +vW +wi +al +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aM +Ul +LI +Ul +LI +Ul +LI +Ul +aM +Ze +vu +vu +vu +aM +Ul +LI +Ul +LI +Ul +LI +Ul +aM +aH +MS +wj +MS +MS +MS +Cv +Cj +Cj +Cj +Cj +Cj +Cv +MS +MS +zw +MS +aH +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(56,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +al +je +je +je +lc +al +me +GJ +Gb +oE +Gb +Gb +oE +Gb +vW +wi +al +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aM +xi +aM +LW +aM +Nj +aM +NR +aM +Pg +vu +vu +nl +aM +xi +aM +LW +aM +Nj +aM +NR +aM +aH +MS +wj +MS +MS +MS +Cv +YN +Cj +Cj +Cj +Cj +Cv +MS +MS +zw +MS +aH +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(57,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +al +je +je +je +lc +al +me +GJ +Gb +Gb +qg +Gb +Gb +Gb +vW +wi +al +ZQ +aw +aw +aw +aw +aw +aw +aw +ZQ +ZQ +ZQ +aw +aw +aw +aw +aw +aw +aw +FV +aM +Uy +aM +Uy +aM +Uy +aM +Pj +vu +vu +nl +aM +Uy +aM +Uy +aM +Uy +aM +FV +aM +aH +MS +wj +MS +MS +MS +Yf +Cj +Cj +Cj +Cj +oT +Cv +MS +MS +zw +MS +aH +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(58,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +al +je +je +je +je +al +me +GJ +Gb +oE +Gb +Gb +oE +Gb +vW +wi +al +ZQ +aw +yF +AI +AI +DD +Eb +aw +ZQ +ZQ +ZQ +aw +GX +HV +Ik +IS +JY +aw +aM +aM +aM +aM +aM +aM +aM +aM +uE +vu +vu +nl +aM +aM +aM +aM +aM +aM +aM +aM +aM +aH +MS +wj +MS +MS +MS +lx +Oz +Oz +Oz +Oz +Cj +Cv +MS +MS +zw +MS +aH +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(59,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +al +eP +eP +GP +je +al +me +GJ +Gb +Gb +Gb +Gb +Gb +Gb +vW +wi +al +ZQ +aw +yI +QT +QT +DF +Eg +aw +ZQ +ZQ +ZQ +aw +Hc +QT +qc +EL +JZ +aw +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ah +Pn +vu +vu +nl +bk +bk +bk +bk +bk +bk +bk +bk +bk +aH +MS +wj +MS +MS +MS +Cv +YF +Cj +Cj +Cj +Cj +Cv +MS +MS +zw +MS +aH +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(60,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +al +al +al +al +nk +al +al +al +gp +gp +gp +gp +gp +gp +al +al +al +ZQ +aw +yT +QT +QT +QT +lT +aw +ZQ +ZQ +ZQ +aw +Hg +QT +In +KP +Kc +aw +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ah +uE +vu +vu +nl +Qm +yh +xY +Sb +Ss +bk +Tu +Uo +Uw +aH +MS +wj +MS +MS +MS +Cv +Cv +Zr +Zr +Zr +Cv +Cv +MS +MS +zw +MS +aH +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(61,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +al +eQ +IH +IH +IH +Lm +LL +iC +iC +iC +iC +iC +iC +LL +al +ZQ +ZQ +aw +yX +QT +QT +QT +Ei +aw +ZQ +ZQ +ZQ +aw +Hp +QT +Io +KP +Kh +aw +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ah +MG +vu +vu +nl +Qn +vZ +RB +Vu +Su +bk +Tv +Vu +Uz +aH +MS +wj +MS +MS +MS +MS +Cv +Zt +Zt +Zt +Cv +MS +MS +MS +zw +MS +aH +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(62,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +al +AF +fF +IH +fF +Lm +iC +iC +iC +iC +iC +iC +iC +iC +al +ZQ +ZQ +aw +yX +QT +QT +QT +Ei +aw +ZQ +ZQ +ZQ +aw +Hq +HW +Ip +IT +Kj +aw +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ah +HM +vu +vu +vu +Qn +wX +RC +Vu +SC +bk +TE +Vu +UA +aH +MS +rI +yG +yG +yG +yG +yG +yG +yG +yG +yG +yG +yG +yG +zF +MS +aH +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(63,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +al +jx +fF +Zq +fF +Lm +iC +iC +iC +iC +iC +iC +iC +iC +al +ZQ +ZQ +aw +Je +Ji +QT +aF +Xz +aw +ZQ +ZQ +ZQ +aw +aw +aw +aw +Tj +aL +aw +aw +aw +aw +aw +aw +aw +aw +aw +vu +vu +vu +vu +Qm +yh +RD +Sd +SD +SX +Vu +Up +Vu +aH +MS +MS +MS +MS +MS +MS +MS +MS +MS +MS +MS +MS +MS +MS +MS +MS +aH +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(64,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +al +AF +fF +lh +fF +Lm +iC +iC +iC +iC +iC +iC +iC +iC +al +ZQ +ZQ +aw +aw +WI +CV +WI +WI +aw +ZQ +ZQ +ZQ +aw +om +HY +NJ +QT +Pu +KD +aw +LK +Md +MI +IS +IS +NU +aw +Dy +Dy +Dy +PZ +bk +bk +bk +bk +bk +bk +bk +bk +SX +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(65,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +lM +lM +lM +lM +lM +lM +lM +lM +lM +lM +lM +lM +lM +lM +lM +lM +lM +lM +lM +lM +lM +ZQ +ZQ +ZQ +al +jD +fF +Zq +fF +Lm +iC +iC +iC +iC +iC +iC +iC +iC +al +ZQ +ZQ +aw +DB +AK +QT +DG +KH +aw +aw +aw +aw +aw +on +HZ +Nk +QT +QT +KG +aw +sc +HZ +MJ +QT +QT +NV +aw +Jt +vu +vu +vu +VN +RG +vu +vu +Hk +Hk +OS +Hk +vu +vu +Hk +Hk +Hk +Hk +kf +Sx +ah +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(66,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +lM +Bx +Bx +ZV +ZV +ZV +ZV +Bx +ZV +ZV +ZV +ZV +Bx +ZV +ZV +ZV +ZV +Bx +Bx +Bx +lM +ah +ah +ah +al +IH +fF +IH +fF +Lm +iC +iC +iC +iC +iC +iC +iC +iC +al +ZQ +ZQ +aw +DL +QT +QT +QT +lS +aw +Fu +FO +Gj +aw +kP +QT +QT +qc +QT +KJ +aw +LM +QT +MK +QT +QT +NV +aw +vu +vu +vu +vu +VN +RG +QB +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +Xt +vu +ah +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(67,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +lM +Bx +Bx +Bx +Bx +Bx +Bx +Bx +Bx +Bx +Bx +Bx +Bx +Bx +Bx +Bx +Bx +Bx +Bx +Bx +lM +fP +vu +vu +al +IH +IH +IH +IH +Lm +iC +iC +iC +iC +iC +iC +iC +iC +al +ZQ +ZQ +aw +yY +QT +QT +QT +QT +EV +QT +QT +QT +EV +QT +QT +QT +WO +QT +KL +WI +sc +HZ +MM +QT +QT +NV +WI +vu +vu +vu +vu +VN +RG +ws +yN +yN +yN +yN +yN +PD +PD +yN +yN +yN +yN +Kf +vu +ah +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(68,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +lM +Bx +Bx +ZV +ZV +ZV +ZV +Bx +ZV +ZV +ZV +ZV +Bx +ZV +ZV +ZV +ZV +Bx +Bx +Bx +lM +vu +vu +vu +jg +IH +IH +IH +IH +Lm +iC +iC +iC +qo +sE +iC +iC +iC +al +ZQ +ZQ +aw +Lu +kC +SJ +SJ +lR +aw +Fy +FS +Gk +aw +Hs +KP +QT +yR +QT +KR +WI +LN +Me +MQ +QT +QT +Gm +OW +vu +vu +vu +vu +VN +Ze +ws +yN +Fg +zr +zr +zr +zr +zr +zr +zr +Fg +yN +Kf +vu +ah +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(69,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +lM +Bx +Bx +Bx +Bx +Bx +Bx +Bx +Bx +Bx +Bx +Bx +Bx +Bx +Bx +Bx +Bx +Bx +Bx +Bx +lM +vu +vu +vu +ji +IH +IH +IH +IH +Lm +iC +iC +iC +iC +iC +iC +iC +iC +al +ZQ +ZQ +aw +yZ +lS +Ib +DH +El +aw +aw +aw +aw +aw +op +Wt +QT +IU +QT +QT +Ly +QT +QT +QT +QT +QT +QT +OZ +vu +vu +vu +vu +Qp +vu +ws +yN +UB +yN +yN +yN +yN +yN +yN +yN +UB +yN +Kf +vu +ah +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(70,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +lM +Bx +nK +PF +PF +PF +PF +PF +PF +PF +PF +PF +PF +PF +PF +PF +PF +PF +EZ +Bx +lM +vu +vu +vu +ji +IH +fF +IH +fF +Lm +iC +iC +iC +iC +iC +iC +iC +iC +al +ZQ +ZQ +aw +Kt +QT +QT +QT +lT +aw +FC +FX +Gl +aw +oq +KP +QT +IV +QT +QT +QT +QT +QT +QT +QT +QT +QT +Pa +vu +vu +vu +vu +Xp +vu +ws +PD +UB +yN +yN +zr +yN +yN +aT +yN +UB +PD +Kf +Qw +ah +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(71,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +lM +Bx +Nv +bF +bF +bF +bF +bF +bF +Cg +wO +DY +HB +kX +TF +kX +bF +bF +MX +Bx +lM +Ze +vu +vu +ji +jD +fF +Zq +fF +Lm +iC +iC +iC +iC +iC +iC +iC +iC +al +ZQ +ZQ +aw +Vt +lR +Dd +DI +lU +aw +PB +YJ +FM +aw +Wf +KP +QT +IW +QT +WD +aw +sb +QT +QT +QT +QT +tM +aZ +vu +vu +vu +vu +VN +vR +ws +yN +UB +yN +yN +yN +yN +yN +yN +yN +UB +yN +Kf +Qw +ah +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(72,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +lM +Bx +Nv +bF +bF +lL +kX +kX +TF +TF +Cr +ac +bC +wO +vT +kX +kX +kX +MX +Bx +lM +vu +vu +vu +al +IH +fF +lh +fF +Lm +iC +iC +iC +iC +iC +iC +iC +iC +al +ZQ +ZQ +aw +aw +aw +aw +aw +aw +aw +FE +FZ +Gm +aw +Hw +KP +QT +kR +QT +Ec +aw +sc +QT +QT +QT +QT +Kc +aw +Po +vu +vu +vu +VN +QI +ws +yN +UB +yN +yN +yN +UB +yN +yN +aT +UB +yN +Kf +Qw +ah +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +br +bw +bw +bw +bw +bw +bw +bw +bw +bz +bw +bw +bw +bw +bw +bw +bw +bw +bw +bw +bw +bz +bw +bw +bw +bw +bw +bw +bu +ZQ +ZQ +ZQ +ZQ +aa +"} +(73,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +lM +Bx +Nv +kX +kX +TF +kX +bA +GK +Vw +Cr +bB +bD +xB +Bj +AR +Vw +kX +MX +Bx +lM +vu +vu +vu +al +jD +fF +Zq +fF +Lm +iC +iC +iC +iC +iC +iC +iC +iC +al +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aw +Ph +Pk +QT +QT +QT +qE +Ir +IY +Tr +YM +aw +Hy +Sw +sO +Nm +Ny +NY +aw +vu +vu +vu +vu +Qp +vu +ws +PD +UB +yN +zr +yN +yN +yN +yN +yN +UB +PD +Kf +Qw +ah +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bt +Ok +Ok +Ok +mG +Ok +Ok +Ok +Ok +mG +Ok +Ok +Ok +Ok +mG +Ok +Ok +Ok +Ok +mG +Ok +Ok +Ok +Ok +mG +Ok +Ok +Ok +bt +ZQ +ZQ +ZQ +ZQ +aa +"} +(74,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +lM +Bx +Nv +Jl +Cq +BW +kX +gs +GK +Vw +SA +kX +DJ +kX +GK +Vw +kX +kX +MX +Bx +lM +vu +vu +vu +al +IH +IH +IH +fF +Lm +iC +iC +iC +iC +iC +iC +iC +iC +al +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aw +aw +Gc +aw +aI +aI +aI +aI +aI +aI +aI +aI +aI +aI +aI +aI +aI +aI +aI +Pr +vu +vu +vu +Xp +vu +ws +yN +UB +yN +yN +yN +yN +yN +yN +yN +UB +yN +Kf +vu +ah +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bt +CW +CW +Dc +Dc +GN +GN +Dc +Dc +Ug +Ug +Dc +Dc +GN +GN +GN +Dc +Dc +Ug +Ug +Dc +Dc +GN +GN +Dc +jQ +CW +CW +bt +ZQ +ZQ +ZQ +ZQ +aa +"} +(75,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +lM +Bx +Nv +Jl +yM +dY +mC +bA +GK +GK +Ym +jW +GK +kX +go +dJ +qz +wa +MX +Bx +lM +vu +vu +vu +al +jF +km +IH +IH +Lm +LL +iC +iC +iC +iC +iC +iC +LL +al +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aw +Jm +Zc +WQ +aI +ot +Ia +It +HQ +Kk +KT +aI +Qb +Mh +Mh +Mh +Mh +NZ +Iw +vu +vu +vu +vu +VN +Ze +ws +yN +Fg +zr +zr +zr +zr +zr +zr +zr +Fg +yN +Kf +vu +ah +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bt +CW +CW +Dc +UN +xw +hP +xQ +Dc +EF +XZ +Dc +oj +Ma +Ma +Vf +OD +Dc +EF +OD +Dc +zH +hP +kT +nz +Dc +CW +CW +bt +ZQ +ZQ +ZQ +ZQ +aa +"} +(76,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +lM +Bx +Nv +Jl +zg +AL +mc +GK +GK +vh +wh +vh +GK +vl +dS +Vw +kX +kX +MX +Bx +lM +vu +vu +vu +al +al +al +fz +al +al +al +gp +gp +gp +gp +gp +gp +al +al +al +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aw +Rl +XP +Qa +aI +Te +Id +tU +tU +Wo +rc +aI +sf +tU +tU +tU +tU +tO +Iw +vu +vu +vu +vu +VN +RG +ws +yN +yN +yN +yN +yN +PD +PD +yN +yN +yN +yN +Kf +vu +ah +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bt +eX +eX +Dc +XZ +XZ +XZ +XZ +cH +XZ +XZ +oQ +XZ +XZ +XZ +XZ +XZ +oQ +XZ +XZ +uK +XZ +XZ +XZ +XZ +Dc +eX +eX +bt +ZQ +ZQ +ZQ +ZQ +aa +"} +(77,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +lM +Bx +Nv +Jl +DN +BY +uX +bA +GK +JR +Kb +JR +GK +kX +pO +dJ +qz +wa +MX +Bx +lM +vu +vu +vu +al +jI +fA +fA +al +mg +GJ +LX +LX +LX +LX +LX +LX +vW +wk +al +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aw +Qj +Ne +VM +aI +Yn +tU +tU +tU +tU +rd +aI +LO +tU +tU +tU +tU +tU +Iw +vu +vu +vu +vu +VN +RG +RF +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Xu +vu +ah +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bt +CW +CW +Dc +XZ +XZ +XZ +XZ +XZ +XZ +XZ +GV +mQ +XQ +XZ +GV +WK +XQ +XZ +XZ +XZ +XZ +XZ +XZ +XZ +Dc +CW +CW +bt +ZQ +ZQ +ZQ +ZQ +aa +"} +(78,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +lM +Bx +Nv +Jl +GI +YP +kX +gs +GK +GK +cN +GK +GK +kX +dS +Vw +kX +kX +MX +Bx +lM +vu +vu +vu +al +Hn +fA +fA +al +mg +GJ +LX +oL +LX +LX +oL +LX +vW +wk +al +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aw +Rl +XP +Gq +aI +HE +tU +tU +tU +tU +tU +Lz +tU +tU +tU +tU +tU +tU +Pc +vu +vu +vu +vu +VN +RG +vu +vu +zM +zM +zM +zM +vu +vu +zM +zM +zM +zM +vu +Sx +ah +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bt +CW +CW +GN +BM +BM +XZ +BM +BM +XZ +XZ +Ky +WK +XA +XZ +Ky +mQ +XA +XZ +XZ +BM +BM +XZ +BM +BM +Dc +CW +CW +bt +ZQ +ZQ +ZQ +ZQ +aa +"} +(79,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +lM +Bx +Nv +kX +kX +TF +kX +bA +GK +vh +Ez +GK +GK +kX +XI +DE +Vw +kX +MX +Bx +nX +vu +vu +vu +al +kd +fA +fA +al +mg +GJ +LX +LX +qq +LX +LX +LX +vW +wk +al +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aw +Rl +XP +Gr +aI +WS +If +tU +tU +tU +tU +TU +tU +tU +tU +tU +tU +tU +TU +vu +vu +vu +vu +bl +bl +bl +bl +An +An +An +bl +Vz +Wb +bl +An +An +WR +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +ZQ +bt +CW +CW +GN +iO +fc +XZ +iO +fc +XZ +XZ +XZ +XZ +XZ +XZ +XZ +XZ +XZ +XZ +XZ +fc +fc +XZ +fc +iO +Dc +CW +CW +bt +ZQ +ZQ +ZQ +ZQ +aa +"} +(80,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +lM +Bx +Nv +bF +bF +bF +kX +kX +TF +TF +SA +ez +ez +kX +mp +kX +kX +kX +MX +Bx +lM +vu +vu +vu +al +fA +fA +fA +al +mg +GJ +LX +oL +LX +LX +oL +LX +vW +wk +al +ZQ +ah +ah +ah +ah +ah +ZQ +aw +QX +RQ +cK +aI +VO +tU +pG +qh +tU +iS +aI +sg +tp +MR +tU +tU +tU +Iw +vu +vu +vu +vu +Qw +bl +Lv +Am +Am +Am +Am +Am +Am +Am +Am +UO +Am +Wl +Xx +Au +YR +bp +ZH +Ki +aO +bp +tw +nQ +bp +ZQ +bt +CW +CW +GN +ZU +ZU +XZ +ZU +ZU +XZ +XZ +GV +WK +XQ +XZ +GV +WK +XQ +XZ +XZ +ZU +ZU +XZ +ZU +ZU +Dc +CW +CW +bt +ZQ +ZQ +ZQ +ZQ +aa +"} +(81,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +lM +Bx +Nv +bF +bF +bF +bF +bF +bF +Cg +lo +kX +kX +kX +TF +kX +bF +bF +MX +Bx +nX +vu +vu +vu +al +ke +fA +fA +al +mg +GJ +LX +LX +LX +LX +LX +LX +vW +wk +al +ZQ +ah +UE +vu +vu +ah +ZQ +aw +aw +aw +aw +aI +oz +Uf +Iv +Jb +tU +VR +aI +NT +Id +MT +tU +tU +tU +ba +vu +vu +vu +vu +Qq +bl +vS +Am +xR +xR +Am +Am +Am +xR +xR +Am +Am +Wl +XB +Au +YY +bp +ZL +Qk +Qk +Bu +dh +dh +bp +ZQ +bt +CW +CW +Dc +XZ +XZ +XZ +XZ +XZ +XZ +XZ +Ky +mQ +XA +XZ +Ky +WK +XA +XZ +XZ +XZ +XZ +XZ +XZ +XZ +Dc +CW +CW +bt +ZQ +ZQ +ZQ +ZQ +aa +"} +(82,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +lM +Bx +rA +xk +xk +xk +xk +xk +xk +xk +xk +xk +xk +xk +xk +xk +xk +xk +EX +Bx +lM +Ze +vu +vu +al +fA +fA +fA +al +al +al +RO +RO +RO +RO +RO +RO +al +al +al +ZQ +ah +VJ +vu +vu +ah +ZQ +ah +fP +vu +fP +aI +FD +Uf +IA +Jf +tU +tU +LA +tU +Wo +MT +tU +tU +tU +Iw +Ze +vu +vu +vu +Qw +bl +wt +zG +yB +SZ +Aw +Am +zG +UQ +Vx +Aw +Am +Wl +Hi +Au +YZ +bp +ZM +Qk +tE +bp +AO +oC +bp +ZQ +bt +eX +eX +Dc +XZ +XZ +XZ +XZ +Km +XZ +XZ +Ql +XZ +XZ +XZ +XZ +XZ +Ql +XZ +XZ +bE +XZ +XZ +XZ +XZ +Dc +eX +eX +bt +ZQ +ZQ +ZQ +ZQ +aa +"} +(83,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +lM +Bx +Bx +Bx +Bx +Bx +Bx +Bx +Bx +Bx +dG +Bx +Bx +Bx +Bx +Bx +Bx +Bx +Bx +Bx +lM +vu +vu +vu +al +fA +fA +fA +fA +fA +al +gP +gP +gP +gP +gP +uz +al +ZQ +ZQ +ZQ +ah +nx +vu +vu +ah +ZQ +ah +vu +vu +vu +aI +ov +Uf +IE +Jo +tU +iS +aI +LP +Gp +MT +tU +tU +tU +ba +vu +vu +vu +vu +bl +bl +yV +zG +wP +Ta +Aw +Am +zG +UR +Vy +Aw +Am +Wl +XE +Au +Zb +bp +ZO +Qk +ks +bp +bp +bp +bp +ZQ +bt +CW +CW +Dc +UN +PJ +qT +Ko +Dc +EF +XZ +Dc +EF +PJ +qT +hT +YS +Dc +EF +OD +Dc +CS +qT +LC +nz +Dc +CW +CW +bt +ZQ +ZQ +ZQ +ZQ +aa +"} +(84,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +lM +lM +lM +lM +lM +lM +lM +lM +lM +lM +lM +lM +lM +lM +nX +lM +nX +lM +lM +lM +lM +vu +vu +vu +Cn +Cn +Cn +Cn +Cn +Cn +Cn +Cn +Cn +Cn +Cn +Cn +Cn +Cn +ah +ah +ah +ah +VN +ah +wo +ah +ah +aD +vu +vu +vu +aI +ox +tU +IF +Jp +tU +VR +aI +LS +Mi +MU +tU +tU +tU +Iw +vu +vu +vu +vu +bl +QJ +Am +Am +yO +yO +Am +Am +Am +yO +yO +Am +Am +Wl +XF +Au +Zh +bp +ZS +Qk +nZ +bp +ZQ +ZQ +ZQ +ZQ +bt +CW +CW +Dc +Dc +GN +GN +Dc +Dc +uV +uV +Dc +Dc +GN +GN +GN +Dc +Dc +uV +uV +Dc +Dc +GN +GN +Dc +Dc +CW +CW +bt +ZQ +ZQ +ZQ +ZQ +aa +"} +(85,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bY +bY +bY +bY +bY +bY +bY +bY +lM +Bx +Bx +Bx +Bx +Bx +Bx +lM +fP +vu +vu +vu +vu +kf +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +kf +vu +vu +vu +vu +vu +Ff +vu +vu +vu +aI +WS +If +tU +tU +tU +tU +LD +tU +tU +tU +tU +tU +tU +Pc +vu +vu +vu +vu +An +QR +Am +Am +Am +Am +Am +Am +Am +Am +Am +Am +Am +Wl +Da +Au +Au +Zu +Qk +Qk +Iy +bp +ZQ +ZQ +ZQ +ZQ +bt +Kd +Kd +Kd +sB +DC +DC +Fl +tq +tq +tq +aN +jw +jw +jw +jw +jw +CL +tq +tq +tq +pz +DC +DC +sB +Kd +Kd +Kd +bt +ZQ +ZQ +ZQ +ZQ +aa +"} +(86,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bY +ab +bS +aX +aX +bS +dr +bY +lM +Bx +Bx +Bx +Bx +Bx +Bx +lM +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +Ff +vu +vu +Gt +aI +Uv +tU +tU +tU +tU +tU +TU +tU +tU +tU +tU +tU +tU +TU +vu +vu +vu +vu +An +QU +Am +Am +xR +xR +Am +Am +Am +Am +Am +Am +Am +Am +Am +Am +bl +bp +bp +bp +bp +bp +ZQ +ZQ +ZQ +ZQ +bu +bw +bw +bw +bw +bu +zi +zi +zi +YL +YL +YL +YL +YL +JD +YL +YL +YL +YL +YL +zi +zi +zi +Re +bu +bw +bw +bw +bu +ZQ +ZQ +ZQ +ZQ +aa +"} +(87,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bY +ad +bS +aX +aX +bS +du +bY +lM +Bx +Bx +Bx +Bx +Bx +Bx +lM +fP +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +Ff +vu +vu +vu +aI +Hr +tU +tU +tU +tU +KU +aI +LT +tU +tU +tU +tU +tU +Iw +vu +vu +vu +vu +bl +QV +Am +zG +Mr +UK +Aw +Am +Am +Am +Am +Am +Am +Am +Am +Yj +bl +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bw +YL +YL +YL +YL +YL +YL +YL +YL +uy +YL +YL +YL +YL +YL +YL +YL +YL +YL +bw +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(88,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bY +bY +bY +aX +aX +bY +bY +bY +lM +Bx +Bx +Bx +Bx +Bx +Bx +lM +bY +hW +hW +bY +uL +uL +uL +uL +aj +aj +md +md +aj +kJ +kJ +aj +md +md +aj +md +md +aj +aj +aj +aj +aj +aj +ar +Xp +Xp +Xp +aI +Te +Gp +tU +tU +Gp +VQ +aI +sh +tU +tU +tU +tU +Oa +Iw +vu +vu +vu +vu +bl +xF +Am +zG +Fv +Pf +Aw +Am +Am +Am +Am +Am +Am +Am +Am +Yo +bl +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bx +YL +YL +YL +YL +YL +YL +YL +YL +mF +YL +YL +YL +YL +YL +YL +YL +YL +YL +bw +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(89,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bY +ag +bS +aX +aX +bS +dw +bY +lM +Bx +Bx +Bx +Bx +Bx +Bx +lM +bY +dZ +dZ +uL +AG +PP +kn +uL +KF +em +em +nC +em +em +em +em +em +nC +em +em +em +em +KF +aj +Di +Bc +Em +aj +vu +vu +vu +aI +ow +Ij +tU +tU +Kl +rf +aI +Qb +WX +XO +WX +WX +Ob +Iw +vu +vu +vu +vu +An +vS +Am +Am +yO +yO +Am +Am +Am +Am +Am +Am +Am +Am +Am +Yp +bl +bh +bh +bh +bh +bh +bh +bh +bh +bh +bq +ZQ +ZQ +ZQ +ZQ +bw +YL +YL +YL +YL +YL +YL +bw +bw +YL +ir +bw +bw +YL +YL +YL +YL +YL +YL +bw +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(90,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bY +ai +bS +aX +aX +bS +dx +bY +lM +Bx +Bx +Bx +Bx +Bx +Bx +lM +bY +dZ +dZ +uL +jj +PP +PP +fC +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +RN +Dl +tK +Do +aj +vu +vu +vu +aI +aI +aI +tU +Jr +aI +aI +aM +aM +aM +aM +aM +aM +aM +aM +HM +vu +vu +vu +An +Lv +Am +Am +Am +Am +Am +Am +vq +Am +Am +Am +Am +Am +Am +Yq +bl +SK +bh +SK +bh +SK +bh +SK +bh +SK +bq +bq +bq +bq +bq +bq +Yc +Lk +TT +TT +TT +Yc +ZJ +er +eI +eI +er +ZJ +Yc +TT +TT +TT +Lk +Yc +bw +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(91,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bY +bY +bY +aX +aX +bY +bY +bY +lM +Bx +Bx +Bx +Bx +Bx +Bx +lM +bY +dZ +dZ +uL +uL +uL +uL +uL +em +em +em +aj +md +md +aj +aj +aj +md +md +aj +em +em +em +kJ +tK +tK +tK +aj +vu +vu +vu +aI +oy +rm +rm +rm +rm +oG +aM +LV +LV +LV +LV +LV +Oh +aM +Pv +vu +vu +vu +bl +bl +bl +bl +An +An +An +bl +bl +bo +Vz +Wb +An +An +bl +bl +bl +Dk +bh +Dk +bh +Dk +bh +Dk +bh +Dk +bq +CR +Rt +Rt +CR +bq +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +bw +vu +vu +vu +vu +bw +bw +bw +bw +bw +bw +bw +bw +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(92,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bY +av +bS +aX +aX +bS +fR +bY +lM +Bx +Bx +Bx +Bx +Bx +Bx +lM +bY +dZ +dZ +uL +AG +PP +PP +fC +em +em +em +md +py +ri +aj +em +lz +uf +wF +md +em +em +em +RN +Do +tK +EC +aj +vu +vu +vu +aI +rm +Xy +Tz +Tz +Xy +rm +aM +WM +Zg +Zg +Zg +Zg +Zg +aM +vu +vu +vu +vu +Xp +wD +vu +vu +vu +vu +vu +kf +vu +vu +vu +vu +vu +vu +vu +vu +vu +Zx +Zx +Zx +nM +Zx +Zx +Zx +Zx +SP +uP +Rt +vw +vw +Rt +Ra +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +ah +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(93,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bY +am +bS +aX +aX +bS +dy +bY +lM +lM +lM +lM +lM +lM +lM +lM +bY +dZ +dZ +uL +jj +PP +kn +uL +em +em +em +mf +oN +em +kJ +em +em +wu +wu +mf +em +em +em +aj +Dp +tK +EE +aj +kQ +vu +vu +aI +rm +nN +ZA +Js +ni +rm +aM +QD +QD +QD +Zg +Zg +Zg +Pd +vu +vu +vu +vu +Xp +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +VH +VH +VH +VH +VH +VH +VH +VH +VH +uP +Rt +vw +vw +Rt +Ra +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +ah +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(94,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bY +bY +bY +aX +aX +bY +bY +bY +bY +bY +bY +bY +bY +bY +bY +bY +ae +dZ +dZ +uL +uL +uL +uL +uL +em +em +em +aj +pb +nJ +aj +ri +em +em +em +aj +em +em +em +RN +qk +tK +TV +aj +em +em +em +aI +oF +nN +IG +Jv +ni +rm +aM +ts +ts +Zg +Zg +ND +Tq +aM +vu +vu +vu +vu +Xp +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +Zy +Zy +Zy +Zy +Zy +Zy +Zy +Zy +nw +uP +Rt +vw +vw +Rt +Ra +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +ah +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(95,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bY +bb +bS +aX +aX +aX +aX +bS +aX +aX +aX +aX +aX +aX +aX +aX +hL +dZ +dZ +uL +AG +PP +PP +fC +em +em +em +aj +aj +aj +aj +px +em +em +Eo +aj +ly +em +em +kJ +tK +tK +Hh +aj +em +em +em +aI +rm +nN +IJ +ZA +ni +rm +aM +aM +aM +MV +MV +aM +aM +aM +vu +vu +vu +vu +aM +aM +aM +aM +aM +aM +OR +aM +aM +bl +Vz +Wb +An +An +bl +bl +bl +Dk +bh +Dk +bh +Dk +bh +Dk +bh +Dk +bq +HD +TG +TG +TG +bq +ah +ah +ah +ah +ah +ah +ah +by +ZK +Uh +by +ah +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(96,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bY +ao +bS +aX +aX +aX +aX +bS +aX +aX +aX +aX +aX +aX +aX +aX +hL +dZ +dZ +uL +jj +PP +kn +uL +em +em +em +md +py +ri +aj +qB +em +em +em +aj +em +em +em +RN +tK +tK +tK +aj +em +em +em +aI +oA +nN +Dr +Jw +ni +rm +aM +sR +tY +tY +tY +tY +Op +aM +Ze +vu +vu +vu +aM +Lx +LF +LF +MH +Tb +Ul +Uq +aM +Lv +Am +Am +Am +Am +Am +Lv +bl +SK +bh +SK +bh +SK +bh +SK +bh +SK +bq +CR +vw +vw +CR +bq +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +by +ZK +ZK +by +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(97,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bY +bY +bY +bY +bY +bY +bY +ae +aX +aX +aX +bY +bY +bY +bY +bY +bY +ii +ii +uL +uL +uL +uL +uL +ly +em +em +mf +oN +em +kJ +em +em +em +em +kJ +em +em +em +aj +JQ +tk +KN +aj +em +em +em +aI +oI +Xy +Ms +Ms +Xy +KV +aM +Kv +tY +tY +tY +tW +tY +aM +vu +vu +vu +vu +aM +Or +Ul +Ul +Ul +Ul +Ul +NQ +aM +UX +Am +Am +zG +Ak +Ak +Aw +bl +bh +bh +bh +bh +bh +bh +bh +bh +bh +bq +Dg +Dh +LR +Dg +bq +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +by +ZK +ZK +by +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(98,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bY +bd +aX +aU +bL +cc +fY +bY +ep +aX +eU +bY +fS +gw +hb +hA +uL +uL +uL +uL +AG +PP +PP +fC +em +em +em +md +pb +nJ +aj +ug +io +em +EA +aj +em +em +em +aj +aj +aj +aj +ar +em +em +em +aI +HH +Xy +Xy +Xy +Xy +KW +aM +Wm +tY +tY +tY +tY +Oj +aM +Pw +vu +vu +vu +OR +Ul +Ul +Ul +Ul +Ul +Ul +Ul +OR +Am +Am +Am +zG +Ak +Ak +Aw +bl +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bq +vp +eY +YH +ST +bq +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +by +ZK +ZK +by +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(99,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bY +au +aX +aX +aX +aX +aX +bV +aX +aX +aX +cn +aG +aG +aG +aG +hq +ml +iq +uL +jj +PP +kn +uL +em +em +em +aj +aj +aj +aj +uh +uD +em +LB +aj +em +em +em +ax +em +KF +EJ +KF +em +em +em +aI +oI +Xy +Tz +Tz +Xy +KX +aM +Kv +tY +tY +tY +tW +tY +aM +vu +vu +vu +vu +aM +Ul +LI +Ul +LI +Ul +LI +Ul +aM +UZ +Am +Am +Am +Am +Am +Am +bl +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bq +pq +SB +SB +gC +bq +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +by +ZK +nI +by +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(100,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bY +be +aX +aV +aX +cf +dz +bV +aX +aX +aX +cn +fT +gy +aG +aG +ml +ml +is +uL +uL +uL +uL +uL +em +em +em +aj +gV +hn +aj +rj +sX +em +Ti +aj +em +em +em +kJ +em +em +mi +em +em +em +em +aI +oA +nN +ZA +aQ +ni +rm +aM +sR +tY +tY +tY +tY +On +aM +kQ +vu +vu +vu +aM +xi +aM +LW +aM +Nj +aM +NR +aM +Va +Am +Am +Am +Am +Am +Am +bl +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bq +NS +Ov +iU +jJ +bq +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +by +ZK +ZK +by +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(101,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bY +bf +aX +bc +aX +cF +dA +bV +aX +aX +aX +cn +fX +gz +aG +aG +ml +ml +it +uL +AG +PP +PP +fC +em +em +em +mf +NC +em +kJ +em +em +em +em +mf +em +em +em +ay +ly +KF +md +KF +vu +vu +vu +aI +rm +nN +qp +Dr +ni +rm +aM +aM +aM +MY +MY +aM +aM +aM +vu +vu +vu +vu +aM +Uy +aM +Uy +aM +Uy +aM +FV +aM +yU +Am +Am +zG +Ak +Ak +Aw +bl +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bq +xU +bq +bq +bq +bq +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +by +ZK +ZK +by +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(102,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bY +az +aX +bi +aX +cL +dB +bV +aX +aX +aX +cn +fZ +gA +aG +hC +hM +dM +ix +uL +jj +PP +kn +uL +em +em +em +md +py +ri +aj +em +em +em +KF +md +em +em +em +aj +kJ +md +aj +ar +vu +vu +vu +aI +oF +nN +VL +Jx +ni +rm +aM +RI +Ml +tY +tY +tx +Sy +aM +kQ +vu +vu +vu +aM +aM +aM +aM +aM +aM +aM +aM +aM +yV +Am +Am +zG +Ak +Ak +Aw +bl +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bq +Pp +ZP +Om +Ao +bq +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +by +ZK +ZK +by +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(103,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bY +bg +aX +ds +aX +ex +bM +bV +aX +aX +aX +cn +cv +jE +aG +kq +hV +ij +ij +uL +uL +uL +uL +uL +em +em +em +aj +md +md +aj +md +aj +md +md +aj +em +em +em +aj +em +jf +EK +md +vu +vu +vu +aI +rm +nN +IK +JB +ni +rm +aM +RI +Ml +tY +tY +tx +Sy +aM +vu +vu +vu +vu +An +QW +RH +Se +SF +Tf +TL +TL +vs +Am +Am +Am +Am +Am +Am +Am +bl +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bq +Wp +SB +SB +Kg +bq +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +by +ZK +ZK +by +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(104,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bY +bs +aX +bJ +aX +cR +dU +bV +aX +aX +aX +cn +aG +aG +aG +aG +mq +eb +eb +uL +AG +PP +PP +fC +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +kJ +em +lD +mk +md +vu +vu +vu +aI +rm +Xy +Ms +Ms +Xy +rm +aM +RI +Ml +tY +tY +tx +Sy +aM +kQ +vu +vu +vu +An +QW +RH +xK +xK +Tg +Tg +Tg +xK +Am +Am +Am +Am +Am +Am +QR +bl +ZQ +ZQ +ZQ +ZQ +bq +bq +bq +bq +bq +bq +Im +SB +SB +YV +by +by +by +uB +uB +uB +uB +uB +by +ZK +OC +by +uB +uB +uB +uB +uB +by +by +by +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(105,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bY +bv +aX +aX +aX +aX +aX +bV +aX +aX +aX +cn +iu +jG +he +hD +mq +ec +ec +uL +jj +PP +kn +uL +em +em +em +em +em +em +em +em +em +em +em +em +em +em +KF +aj +Dq +DK +aj +aj +vu +vu +vu +aI +oG +rm +rm +rm +rm +La +aM +RI +Ml +Nb +Nb +tx +Sy +aM +vu +vu +vu +vu +An +QW +RH +xK +xK +lZ +xK +xK +xK +Am +Am +Am +Am +Am +Am +Yj +bl +ZQ +ZQ +ZQ +ZQ +bq +rg +SB +SB +SB +xU +SB +ML +Ef +KK +by +hv +Fq +sk +sk +sk +jO +sk +ol +ZK +ZK +zl +sk +sk +sk +sk +sk +kz +hv +by +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(106,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bY +bK +aX +dv +bT +eE +ga +bY +ep +aX +eU +bY +iw +jH +hf +hf +uL +uL +uL +uL +uL +kg +uL +uL +em +em +em +aq +hp +hp +hI +at +as +as +as +as +as +as +as +as +as +as +as +as +Xp +Xp +Xp +aI +aI +aI +aI +aI +aI +aI +aM +aM +aM +aM +aM +aM +aM +aM +Xp +Xp +Xp +Xp +bl +An +An +An +bl +bl +bl +An +An +An +bl +Wc +bl +An +An +An +bl +ah +ah +ah +ah +bq +xU +bq +bq +bq +bq +bq +bq +xU +bq +by +ZK +Hl +ZK +ZK +ZK +ZK +ZK +Za +ZK +ZK +fk +cA +ZK +ZK +ZK +ZK +Za +ZK +by +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(107,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bY +bY +bY +bY +bY +bY +bY +bY +ev +aX +aX +bY +bY +bY +bY +bY +uL +ef +ml +iL +ml +ml +ED +uL +em +em +em +aj +hN +hN +hN +as +uG +wg +wY +wg +xu +as +zq +zq +Ds +Ds +Ds +as +vu +vu +vu +Xp +vu +kf +vu +zo +vu +vu +vu +zo +vu +vu +kf +vu +vu +Xp +vu +vu +vu +vu +Xp +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +kf +vu +vu +vu +vu +vu +vu +nl +nl +nl +Dg +CE +Fz +SB +bq +by +ZK +Hl +ZK +ZK +ZK +ZK +ZK +Za +qQ +Hf +Hl +fr +ZK +UF +UF +ZK +Za +ZK +by +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(108,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bY +aB +aG +bW +aG +gc +bY +ew +aX +aX +bY +iy +jL +hl +di +uL +ef +iz +iR +jm +kh +ED +uL +ly +em +em +aj +hN +hN +hN +as +vb +GO +xc +GO +xz +as +GO +GO +GO +GO +GO +as +vu +vu +vu +Xp +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +Xp +vu +vu +vu +vu +Xp +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +nl +qR +FP +SB +gl +bq +by +ZK +Hl +ZK +ZK +UF +ZK +ZK +Za +tH +oY +Hl +ZK +se +ZK +ZK +ZK +Za +ZK +by +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(109,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bY +aC +aG +aG +aG +gd +bY +eB +aX +aX +bY +aG +aG +aG +hF +uL +uL +uL +uL +uL +uL +uL +uL +em +em +em +aj +pJ +hN +sY +as +vg +vg +vg +vg +vg +as +zD +BD +GO +Lt +GS +as +fP +vu +vu +Xp +vu +vu +vu +Fx +vu +vu +vu +vu +vu +vu +vu +vu +vu +Xp +vu +vu +vu +vu +Xp +vu +vu +Fx +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +Ya +Dg +LY +aW +SB +bq +by +ZK +Hl +ZK +ZK +UF +ZK +ZK +Za +zy +bj +Hl +ZK +ZK +ZK +ZK +EO +Za +ZK +by +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(110,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bY +aE +aG +aG +aG +aG +hr +aX +aX +aX +ih +aG +cE +aG +kt +uL +eh +vV +vV +vV +vV +vV +md +em +em +em +aj +hN +hN +hN +FU +GO +GO +GO +GO +xE +as +as +aA +lg +aA +as +as +as +as +as +as +as +as +as +as +as +as +aP +sz +sz +aP +SG +SG +SG +as +Px +Xp +Xp +Xp +as +as +as +as +as +as +SG +SG +as +aP +Uk +Wd +aP +as +as +as +as +as +as +bh +bh +GH +GH +GH +bh +bh +aI +aI +aI +sD +aI +by +ZK +GT +UF +ZK +ZK +ZK +ZK +Za +su +UT +Hl +ZK +UF +ZK +ZK +ZK +Ha +ZK +by +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(111,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bY +aR +aG +dC +fl +aG +hr +aX +aX +aX +ih +aG +aG +aG +ZN +uL +eZ +eZ +vV +eZ +eZ +vV +md +em +em +em +aj +ht +hN +hN +FU +GO +GO +xe +GO +GO +as +Ab +BR +GO +DO +EM +Fh +vj +vj +vj +as +HI +an +IN +an +Kn +Lh +as +Wa +sC +as +No +NE +Oq +SG +vu +vu +vu +vu +as +QY +RM +Sg +SM +as +TM +Ur +as +Vh +Uk +Uk +Wk +as +XJ +Yv +Zj +Zz +as +Ya +Nl +Nl +Nl +Nl +Nl +Ya +bh +oX +sH +tU +aI +by +ZK +Hl +ZK +ZK +ZK +ZK +ZK +Za +qs +tJ +Hl +ZK +ZK +ZK +ZK +ZK +Za +ZK +by +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(112,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bY +aS +aG +bZ +db +aG +hr +aX +aX +aX +fj +gb +aG +aG +hG +uL +dn +vo +vV +vo +vo +vV +md +em +em +em +aj +aj +ar +aj +as +hX +GO +FT +GO +GO +as +Yx +GO +GO +GO +GO +GO +GO +GO +GO +as +Lr +an +gB +JF +an +Li +as +Zd +YK +as +Np +Kz +Os +SG +vu +vu +vu +vu +as +Rb +RP +GO +SN +as +TO +tB +aY +Vj +Uk +Uk +Wn +as +XR +Uk +Uk +Uk +as +Yt +VH +VH +VH +VH +VH +nG +Iw +RT +tU +kS +aI +by +ZK +Hl +ZK +ZK +ZK +ZK +ZK +Za +Lg +PO +Hl +UF +ZK +ZK +ZK +ZK +Za +ZK +by +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(113,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bY +cd +aG +dD +dc +aG +hr +aX +aX +aX +fs +ja +aG +aG +kH +uL +AH +vo +vV +AH +RY +vV +em +em +em +em +aj +MA +rl +th +as +VX +GO +GO +GO +GO +GO +GO +GO +GO +GO +GO +GO +GO +GO +GO +as +aK +aK +aK +JI +an +Lj +as +Zd +Uk +sz +Uk +Uk +Ou +SG +Ze +vu +vu +vu +as +Rb +RP +GO +GO +NH +GO +GO +NH +Uk +Uk +Uk +Uk +WV +Uk +Uk +Uk +Uk +as +NN +VH +cT +VH +cT +VH +nG +Iw +WZ +Zk +ZW +aI +by +ZK +Hl +ZK +ZK +ZK +ZK +ZK +Za +Pz +ZI +Hl +ZK +ZK +EO +ZK +UF +CX +ZK +by +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(114,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bY +co +aG +ca +dd +aG +hr +aX +aX +aX +fD +ge +aG +aG +kI +uL +il +eZ +vV +eZ +eZ +vV +em +em +em +em +aj +Dv +JA +Eh +as +wC +GO +GO +GO +GO +GO +GO +GO +GO +GO +GO +GO +GO +GO +GO +as +Lr +an +gB +Of +an +Lo +as +Zv +JP +as +Nq +Uk +Ow +SG +vu +vu +vu +vu +as +Rb +RP +GO +SQ +as +TP +TD +aY +Vk +VB +VB +Wu +as +XS +Uk +Uk +Uk +as +TW +VH +cT +VH +cT +VH +nG +Iw +Ud +Ub +ZW +aI +by +ZK +Hl +ZK +UF +ZK +EO +ZK +Za +QN +OH +Hl +ZK +ZK +ZK +ZK +ZK +Za +ZK +by +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(115,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bY +cu +aG +cb +dl +aG +hr +aX +aX +aX +fI +gf +aG +aG +kN +uL +mw +vV +vV +vV +vV +vV +em +em +em +em +nW +JA +JA +tL +as +vk +GO +xt +GO +GO +as +Ac +GO +GO +GO +GO +GO +GO +GO +GO +as +HJ +an +IO +an +an +Ls +as +Zd +SL +as +Nr +NF +Oy +SG +vu +vu +vu +vu +as +Rh +RS +GO +SR +as +TQ +Go +as +Mc +VC +VV +Wx +as +as +as +as +WV +as +NN +VH +cT +VH +cT +VH +nG +Iw +xP +Zk +ZW +aI +by +ZK +Hl +ZK +ZK +ZK +ZK +ZK +CX +ZK +ZK +Hl +ZK +UF +ZK +ZK +ZK +Za +ZK +by +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(116,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bY +cD +aG +dN +fo +aG +hr +aX +aX +aX +ih +aG +aG +aG +kO +uL +mI +vV +vV +vV +vV +vV +md +em +em +em +nW +JA +JA +tP +as +GO +GO +Ih +GO +yj +as +UL +sW +GO +Gs +Nt +UH +jo +Gd +Gu +as +aK +aK +aK +JL +an +RK +aY +Ix +SL +as +SG +nn +SG +aP +PA +PM +PM +Qc +aP +as +as +Mz +vc +as +Ry +tB +as +MZ +VF +VF +WJ +as +Xr +SG +Rp +Uk +as +Yt +VH +VH +VH +VH +VH +nG +Iw +iG +tU +ZW +aI +by +ZK +Hl +ZK +ZK +ZK +UF +ZK +Za +ZK +ZK +Hl +ZK +ZK +ZK +ZK +EO +Za +ZK +by +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(117,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bY +cO +aG +aG +aG +aG +hr +aX +aX +aX +ih +aG +gR +aG +ld +uL +mJ +vV +vV +vV +vV +vV +md +em +em +em +nW +JA +JA +tQ +as +Ri +GO +Tw +GO +yj +as +as +as +Dt +at +as +as +as +Gf +Gv +as +Lr +an +gB +Of +an +an +FI +Uk +YK +as +Zo +LG +LG +LG +Yy +vu +vu +Jh +Lc +Uk +as +Sl +ln +as +Ry +GO +NH +GO +VI +We +GO +NH +GO +SG +Zl +Uk +as +Ya +Nl +Nl +Nl +Nl +Nl +Ya +Iw +NG +tU +QH +aI +by +ZK +za +ql +ZK +ZK +UF +pu +vM +ZK +ZK +za +ql +ZK +ZK +ZK +pu +vM +ZK +by +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(118,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bY +cZ +aG +aG +aG +aG +bY +eB +aX +aX +bY +aG +aG +aG +le +uL +mK +vV +vV +eZ +vV +ko +md +lz +em +em +oo +JA +JA +JH +as +ZT +GO +GO +GO +wf +as +Af +BT +Rf +DS +ET +Fi +Iw +Gg +Gw +as +Nn +an +IP +Py +Ks +an +FI +Uk +Uk +WW +Uk +Uk +Uk +Uk +Yy +nl +nl +Jh +Lc +ZD +aY +Sn +SG +as +TR +Ut +as +as +as +as +as +as +XT +SG +SG +SG +as +HF +mX +ON +ON +ON +mX +cI +Iw +Ux +tU +Jc +aI +by +hv +ZK +za +pC +ye +pC +vM +hv +ZK +ZK +hv +za +pC +LH +pC +vM +ZK +hv +by +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(119,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bY +da +aG +ek +fH +dV +bY +aX +aX +aX +bY +jd +gS +hx +lf +uL +aj +aj +aj +aj +aj +aj +aj +aj +mh +ap +aj +aj +rr +aj +as +Wq +GO +GO +GO +wf +as +Ag +Rf +Rf +Rf +Rf +Vp +Iw +JJ +JP +as +as +as +as +as +as +as +as +JJ +JP +as +Jk +Uk +Uk +Uk +Yy +nl +nl +Jh +Lc +Uk +XD +GO +GO +Tk +GO +GO +Rd +GO +GO +GO +LQ +as +QS +SG +Yw +GO +as +Gh +iX +iX +iX +iX +iX +Sc +Iw +Mb +tU +Jc +aI +by +by +by +by +by +by +by +by +by +by +by +by +by +by +by +by +by +by +by +by +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(120,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bY +bY +bY +bY +bY +bY +bY +hs +hs +hs +bY +bY +bY +bY +bY +uL +mM +iA +iA +iA +iA +kp +aj +lA +JS +mr +aj +Mx +JS +GD +as +Eq +GO +Ui +GO +wf +as +Hd +Rf +Du +DU +Rf +Fj +FF +Ix +YK +at +Ln +So +So +JM +So +So +So +HT +YK +as +gY +KZ +PC +LG +Yy +nl +nl +Jh +Lc +Uk +XD +GO +GO +Tk +GO +GO +Rd +GO +GO +GO +LQ +as +GO +SG +Zm +GO +as +Gh +iX +wA +iX +wA +iX +Sc +aI +VT +tU +iT +aI +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(121,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bY +dW +hs +hs +hs +hs +hs +gg +bY +ZQ +ZQ +uL +mP +iH +iV +iV +ki +kr +aj +lC +JS +ms +aj +JS +JS +XY +as +GO +GO +KC +GO +wf +as +XH +Rf +Dw +IC +WC +Rf +Ox +Uk +Uk +Uk +Uk +Uk +Uk +Uk +Uk +Uk +Uk +Uk +Uk +sz +Uk +En +OE +LG +Yy +nl +nl +Jh +Lc +ZD +aY +Il +SG +as +PH +TD +as +SG +Rd +Rd +SG +as +as +as +as +ZB +as +as +as +as +as +as +bh +bh +aI +aI +aI +aI +aI +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(122,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bY +jh +hs +Sj +hs +hE +hs +jh +bY +ZQ +ZQ +uL +nd +iJ +iW +jp +cU +kK +aj +lE +JS +mt +aj +pN +rz +MF +as +Xb +GO +TJ +GO +wf +as +Ah +Rf +HS +DV +Rf +Fk +FF +JJ +JP +aJ +HK +Vc +Vc +Vc +Wa +Uk +sC +Vc +Mn +as +Ww +NI +SG +LG +Yy +vu +vu +Jh +Lc +Uk +as +Kr +ZF +as +TQ +Go +SG +Vl +GO +GO +Wz +Un +XU +YA +Qu +GO +ZZ +as +DT +as +DT +as +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(123,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bY +jh +hs +Sj +hs +hE +hs +jh +bY +ZQ +ZQ +uL +ne +iJ +JS +jr +cU +EG +aj +aj +mh +aj +aj +aj +aj +aj +as +NW +GO +GO +GO +IM +as +XM +Rf +Rf +Rf +Rf +Vp +Iw +Zd +SL +as +as +as +as +as +Zd +Uk +SL +as +as +as +as +as +as +aP +PE +PQ +PQ +Qd +aP +as +as +Mu +SS +as +Fe +Go +SG +Vm +GO +Sf +GO +GO +GO +GO +GO +GO +UW +as +Xh +as +KA +as +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(124,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bY +jh +hs +Sj +hs +hE +hs +jh +bY +ZQ +ZQ +uL +im +iJ +iZ +ju +cU +kM +md +lV +JS +DR +aj +ZQ +ZQ +ZQ +as +Ek +GO +GO +GO +IM +as +Gz +Cy +Rf +DX +EU +YI +Iw +Zd +SL +as +HL +So +So +So +HT +Uk +Gy +So +Mo +Nf +Kp +NL +Xf +as +VH +VH +VH +VH +as +Rk +Oi +GO +SU +SG +Ry +Go +SG +Vo +GO +Sf +GO +GO +XN +XN +XN +GO +ob +as +Hv +Hv +Hv +as +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(125,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bY +ea +hs +hs +hs +hs +hs +gj +bY +ZQ +ZQ +uL +nf +wy +jb +jb +kk +JS +lm +JS +JS +XY +aj +ZQ +as +as +as +Ja +GO +Od +GO +yC +as +as +as +IB +as +as +as +as +Zd +SL +as +LE +Uk +Uk +Uk +Kx +Kx +Uk +Uk +Mq +MN +Ll +OA +Xf +as +PG +VH +VH +VH +as +Rm +GO +GO +SW +SG +TO +Go +SG +Vr +GO +Sf +GO +WY +XV +Kq +HN +WP +GO +GU +Hv +Hv +SO +as +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(126,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bY +bY +bY +hs +hs +hs +bY +bY +bY +bY +bY +uL +nB +wT +zJ +YE +YE +CG +md +RX +JS +Yh +aj +ZQ +as +EH +up +GO +GO +Od +GO +yC +as +EY +CD +Uk +PT +ZR +ZR +SG +Zd +SL +as +HO +Uk +Uk +Uk +ak +Lw +CZ +Uk +SL +MN +Ll +OA +Xf +as +PI +VH +VH +VH +as +Sz +GO +GO +GO +Tm +GO +Go +SG +Vv +GO +Sf +GO +WY +Kq +Kq +Zp +WP +Hz +as +Ex +Hv +Hv +as +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(127,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bY +aX +aX +aX +aX +aX +aX +aX +aX +uL +aj +md +md +md +md +aj +aj +md +mj +md +aj +aj +as +as +as +Jd +GO +Od +GO +yD +as +EY +CD +Uk +PT +ZR +ZR +SG +Ix +SL +as +HA +Uk +Uk +Uk +Uk +ak +CZ +Uk +SL +MN +Ll +OA +Xf +as +VH +VH +VH +VH +as +Rn +GO +GO +Oo +SG +GO +Go +SG +VE +GO +Sf +GO +GO +Yw +Yw +Yw +GO +UW +as +Ex +Hv +oS +as +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(128,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bY +aX +aX +aX +aX +aX +aX +aX +aX +uL +nD +wU +em +AJ +OU +UY +lw +lW +em +mu +os +qf +rZ +tX +as +Tn +GO +GO +GO +GO +yE +OK +Uk +Uk +Uk +Uk +Uk +FI +Uk +Gy +So +HT +Uk +Vb +JN +Uk +Lw +CZ +Uk +Gy +HT +Uk +OA +Xf +as +Xn +Rj +Rj +Xn +as +Ro +GO +Xw +cJ +SG +GO +SR +SG +DZ +VK +lF +WA +GO +XW +YB +WA +GO +Ke +as +as +lX +as +as +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(129,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bY +aX +aX +aX +aX +aX +aX +aX +aX +uL +nL +iK +em +em +em +em +em +em +em +em +em +em +kj +tZ +as +Xs +GO +GO +GO +GO +yE +Uk +Uk +Uk +Uk +Uk +Uk +FI +Uk +sC +Vc +Wa +Uk +Vb +JT +Uk +ak +CZ +Uk +sC +Wa +Uk +OA +Xf +as +bh +PS +PY +bh +as +as +Zs +as +as +as +TS +Uu +as +as +as +as +SG +Xc +SG +as +SG +Xc +SG +as +Wr +JO +vL +as +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(130,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bY +bY +eD +eS +eD +bY +bY +bY +hz +eS +uL +oM +xG +em +em +em +em +em +em +em +em +em +em +si +ua +as +af +GO +My +GO +GO +at +Av +Uk +Uk +Uk +Uk +Uk +FK +JJ +SL +as +Zv +Uk +Uk +Uk +Uk +ak +CZ +Uk +SL +MN +Ll +OA +OM +as +OT +PW +PW +Qe +as +UD +GO +Sp +Dz +as +GO +Sp +UG +VA +VP +as +Yz +GO +Pq +as +Yz +GO +Pq +as +Hv +JO +Hv +as +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(131,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bY +ej +hs +hs +hs +fJ +bY +gX +aG +aG +uL +pF +xS +em +em +em +em +em +em +WB +Rw +WB +em +sj +Jq +as +vn +GO +My +GO +FN +as +PK +Uk +Uk +Uk +Uk +Uk +SG +Zd +SL +as +EQ +Uk +Uk +Uk +ak +FW +CZ +Uk +Mv +MN +Ll +OA +Xf +as +Pl +PX +PX +Qg +as +JG +GO +GO +Wh +as +TY +GO +GO +XN +VW +as +Ws +GO +WU +as +Ws +GO +WU +as +Wr +JO +vL +as +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(132,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bY +el +hs +hs +hs +fL +bY +gZ +aG +aG +uL +ip +yg +em +em +em +em +em +em +WB +mL +WB +em +sw +ub +as +YX +GO +My +GO +FN +as +AE +Fa +Dx +Uk +Et +Uk +SG +Zd +SL +as +Td +Uk +Uk +Uk +Kz +Kz +Uk +Uk +MB +MN +Ll +OA +Xf +as +EW +PX +PX +Qg +as +Ue +GO +GO +Wh +as +TZ +GO +UJ +Kq +VY +as +Ws +GO +WU +as +Ws +GO +WU +as +Bb +JO +Hv +as +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(133,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bY +en +eR +eT +eV +fM +bY +ha +aG +hH +uL +sP +yg +em +FL +Vg +Xe +JV +em +WB +Rw +WB +em +Sh +Xg +as +YX +GO +My +GO +FN +as +Ys +CF +DA +Uk +Et +Fn +SG +Gi +Ig +as +VS +Vc +Vc +Vc +Vc +Vc +Vc +Vc +MD +Nh +Nw +NO +Xf +as +TA +Wj +Wj +Qh +as +Ie +YU +YU +Vd +as +Ie +YU +YU +Ew +Qx +as +Yd +lF +Yu +as +Yd +lF +Yu +as +Wr +JO +vL +as +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(134,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bY +bY +bY +bY +bY +bY +bY +bY +bY +bY +uL +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +as +as +as +as +as +as +as +as +as +as +as +as +as +as +as +as +as +as +as +as +as +as +as +as +as +as +as +as +as +as +as +bh +bh +bh +bh +as +as +as +as +as +as +as +as +as +as +as +as +as +as +as +as +as +as +as +as +as +as +as +as +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(135,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(136,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(137,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(138,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(139,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(140,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} diff --git a/maps/stellardelight/ship_misc.dmm b/maps/stellardelight/ship_misc.dmm new file mode 100644 index 0000000000..fcdabbf9a1 --- /dev/null +++ b/maps/stellardelight/ship_misc.dmm @@ -0,0 +1,23038 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/turf/unsimulated/mineral/virgo3b, +/area/space) +"ab" = ( +/obj/structure/window/reinforced/holowindow{ + dir = 8 + }, +/obj/structure/flora/pottedplant{ + icon_state = "plant-10" + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_courtroom) +"ac" = ( +/obj/structure/window/reinforced/holowindow{ + dir = 8 + }, +/obj/structure/holostool, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_emptycourt) +"ad" = ( +/obj/machinery/door/window/holowindoor{ + dir = 8 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_courtroom) +"ae" = ( +/turf/simulated/shuttle/wall/alien/hard_corner, +/area/unknown/dorm1) +"af" = ( +/turf/simulated/shuttle/wall/alien, +/area/unknown/dorm1) +"ag" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 8 + }, +/obj/structure/flora/ausbushes/ywflowers, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_picnicarea) +"ah" = ( +/obj/machinery/door/window/holowindoor{ + dir = 1; + name = "Jury Box" + }, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 9 + }, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet{ + dir = 5 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"ai" = ( +/turf/simulated/shuttle/wall/alien/hard_corner, +/area/unknown/dorm2) +"aj" = ( +/turf/simulated/shuttle/wall/alien, +/area/unknown/dorm2) +"ak" = ( +/obj/structure/table/woodentable/holotable, +/obj/structure/window/reinforced/holowindow{ + dir = 4 + }, +/obj/structure/window/reinforced/holowindow{ + dir = 1 + }, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_courtroom) +"al" = ( +/obj/structure/window/reinforced/holowindow{ + dir = 8 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_courtroom) +"am" = ( +/obj/machinery/door/window/holowindoor{ + dir = 8; + name = "Red Team" + }, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_emptycourt) +"an" = ( +/obj/structure/holostool, +/turf/simulated/floor/holofloor/desert, +/area/holodeck/source_picnicarea) +"ao" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_picnicarea) +"ap" = ( +/turf/space, +/area/space) +"aq" = ( +/turf/simulated/shuttle/wall/alien/hard_corner, +/area/unknown/dorm3) +"ar" = ( +/turf/unsimulated/wall, +/area/space) +"as" = ( +/obj/structure/window/reinforced, +/turf/unsimulated/wall, +/area/space) +"at" = ( +/obj/structure/flora/ausbushes/brflowers, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_picnicarea) +"au" = ( +/obj/structure/bed/chair/holochair{ + dir = 4 + }, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet/corners{ + dir = 5 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"av" = ( +/obj/structure/bed/chair/holochair{ + dir = 4 + }, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet{ + dir = 5 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"aw" = ( +/obj/structure/table/woodentable/holotable, +/obj/structure/window/reinforced/holowindow{ + dir = 4 + }, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_courtroom) +"ax" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_picnicarea) +"ay" = ( +/obj/structure/bed/chair/holochair{ + dir = 4 + }, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"az" = ( +/obj/structure/bed/chair/holochair{ + dir = 4 + }, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"aA" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10 + }, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_picnicarea) +"aB" = ( +/obj/structure/flora/ausbushes/brflowers, +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 8 + }, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_picnicarea) +"aC" = ( +/obj/machinery/door/window/holowindoor{ + base_state = "right"; + dir = 8; + icon_state = "right" + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_courtroom) +"aD" = ( +/obj/machinery/door/window/holowindoor{ + base_state = "right"; + dir = 8; + icon_state = "right"; + name = "Green Team" + }, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_emptycourt) +"aE" = ( +/obj/structure/bed/chair/holochair{ + dir = 4 + }, +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 10 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"aF" = ( +/obj/structure/bed/chair/holochair{ + dir = 4 + }, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 6 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"aG" = ( +/obj/structure/window/reinforced/holowindow{ + dir = 8 + }, +/obj/structure/holostool{ + dir = 8 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"aH" = ( +/obj/structure/window/reinforced/holowindow{ + dir = 8 + }, +/obj/structure/holostool{ + dir = 8 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_thunderdomecourt) +"aI" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/unsimulated/wall, +/area/space) +"aJ" = ( +/turf/simulated/floor/holofloor/desert, +/area/holodeck/source_desert) +"aK" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/holofloor/desert, +/area/holodeck/source_desert) +"aL" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/unsimulated/wall, +/area/space) +"aM" = ( +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_picnicarea) +"aN" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_picnicarea) +"aO" = ( +/obj/structure/table/rack/holorack, +/obj/item/clothing/under/dress/dress_saloon, +/obj/item/clothing/head/pin/flower, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_theatre) +"aP" = ( +/obj/effect/landmark/costume, +/obj/structure/table/rack/holorack, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_theatre) +"aQ" = ( +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_courtroom) +"aR" = ( +/obj/machinery/door/window/holowindoor{ + dir = 8; + name = "Red Team" + }, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_basketball) +"aS" = ( +/obj/structure/table/woodentable/holotable, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_courtroom) +"aT" = ( +/turf/simulated/floor/holofloor/reinforced, +/area/holodeck/source_wildlife) +"aU" = ( +/turf/simulated/floor/holofloor/reinforced, +/area/holodeck/source_plating) +"aV" = ( +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_emptycourt) +"aW" = ( +/obj/structure/holostool, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_emptycourt) +"aX" = ( +/obj/machinery/door/window/holowindoor{ + dir = 8; + name = "Red Team" + }, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_thunderdomecourt) +"aY" = ( +/obj/effect/floor_decal/corner/red/full{ + dir = 8 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_emptycourt) +"aZ" = ( +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_emptycourt) +"ba" = ( +/obj/effect/floor_decal/corner/red/full{ + dir = 1 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_emptycourt) +"bb" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/unsimulated/wall, +/area/space) +"bc" = ( +/turf/simulated/shuttle/wall/alien, +/area/unknown/dorm3) +"bd" = ( +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/holofloor/desert, +/area/holodeck/source_desert) +"be" = ( +/obj/structure/flora/ausbushes/ywflowers, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_picnicarea) +"bf" = ( +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_picnicarea) +"bg" = ( +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_theatre) +"bh" = ( +/obj/machinery/door/window/holowindoor{ + base_state = "right"; + dir = 8; + icon_state = "right"; + name = "Green Team" + }, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_basketball) +"bi" = ( +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_courtroom) +"bj" = ( +/obj/effect/landmark{ + name = "Holocarp Spawn" + }, +/turf/simulated/floor/holofloor/reinforced, +/area/holodeck/source_wildlife) +"bk" = ( +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_emptycourt) +"bl" = ( +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_emptycourt) +"bm" = ( +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_emptycourt) +"bn" = ( +/obj/machinery/recharge_station, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm1) +"bo" = ( +/obj/structure/flora/ausbushes/brflowers, +/obj/effect/floor_decal/spline/fancy/wood/corner, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_picnicarea) +"bp" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_picnicarea) +"bq" = ( +/obj/structure/flora/ausbushes/brflowers, +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_picnicarea) +"br" = ( +/obj/machinery/door/window/holowindoor{ + base_state = "right"; + dir = 8; + icon_state = "right"; + name = "Green Team" + }, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_thunderdomecourt) +"bs" = ( +/turf/simulated/fitness, +/area/holodeck/source_boxingcourt) +"bt" = ( +/obj/structure/bed/chair/holochair, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_courtroom) +"bu" = ( +/obj/structure/fitness/boxing_ropes{ + dir = 1 + }, +/obj/structure/fitness/boxing_turnbuckle{ + dir = 8; + layer = 3.4 + }, +/turf/simulated/fitness, +/area/holodeck/source_boxingcourt) +"bv" = ( +/obj/structure/window/reinforced/holowindow{ + dir = 1 + }, +/obj/structure/table/woodentable/holotable, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_courtroom) +"bw" = ( +/obj/structure/fitness/boxing_ropes{ + dir = 1 + }, +/turf/simulated/fitness, +/area/holodeck/source_boxingcourt) +"bx" = ( +/obj/structure/fitness/boxing_ropes{ + dir = 1 + }, +/obj/structure/fitness/boxing_turnbuckle{ + dir = 4; + layer = 3.4 + }, +/turf/simulated/fitness, +/area/holodeck/source_boxingcourt) +"by" = ( +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm1) +"bz" = ( +/obj/structure/toilet, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm1) +"bA" = ( +/obj/structure/fitness/boxing_ropes{ + dir = 8 + }, +/turf/simulated/fitness, +/area/holodeck/source_boxingcourt) +"bB" = ( +/turf/simulated/floor/holofloor/desert, +/area/holodeck/source_picnicarea) +"bC" = ( +/obj/structure/fitness/boxing_ropes{ + dir = 4 + }, +/turf/simulated/fitness, +/area/holodeck/source_boxingcourt) +"bD" = ( +/obj/structure/fitness/boxing_turnbuckle{ + dir = 8 + }, +/obj/structure/fitness/boxing_ropes_bottom, +/turf/simulated/fitness, +/area/holodeck/source_boxingcourt) +"bE" = ( +/obj/structure/fitness/boxing_ropes_bottom, +/turf/simulated/fitness, +/area/holodeck/source_boxingcourt) +"bF" = ( +/obj/structure/fitness/boxing_turnbuckle{ + dir = 4 + }, +/obj/structure/fitness/boxing_ropes_bottom, +/turf/simulated/fitness, +/area/holodeck/source_boxingcourt) +"bG" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_theatre) +"bH" = ( +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 5 + }, +/obj/effect/floor_decal/carpet{ + dir = 9 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_theatre) +"bI" = ( +/obj/structure/window/reinforced/holowindow, +/obj/machinery/door/window/holowindoor{ + dir = 1; + name = "Court Reporter's Box" + }, +/obj/structure/bed/chair/holochair, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_courtroom) +"bJ" = ( +/obj/structure/table/woodentable/holotable, +/obj/structure/window/reinforced/holowindow, +/obj/structure/window/reinforced/holowindow{ + dir = 8 + }, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_courtroom) +"bK" = ( +/obj/structure/table/woodentable/holotable, +/obj/structure/window/reinforced/holowindow, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_courtroom) +"bL" = ( +/obj/structure/table/woodentable/holotable, +/obj/structure/window/reinforced/holowindow, +/obj/structure/window/reinforced/holowindow{ + dir = 4 + }, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_courtroom) +"bM" = ( +/obj/structure/window/reinforced/holowindow, +/obj/machinery/door/window/holowindoor{ + base_state = "right"; + dir = 1; + icon_state = "right"; + name = "Witness Box" + }, +/obj/structure/bed/chair/holochair, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_courtroom) +"bN" = ( +/obj/machinery/shower{ + pixel_y = 13 + }, +/obj/structure/curtain/open/shower, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 5 + }, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm1) +"bO" = ( +/obj/machinery/recharge_station, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm2) +"bP" = ( +/obj/structure/holostool{ + dir = 1 + }, +/turf/simulated/floor/holofloor/desert, +/area/holodeck/source_picnicarea) +"bQ" = ( +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm2) +"bR" = ( +/obj/structure/toilet, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm2) +"bS" = ( +/obj/structure/table/woodentable/holotable, +/turf/simulated/floor/holofloor/desert, +/area/holodeck/source_picnicarea) +"bT" = ( +/obj/machinery/shower{ + pixel_y = 13 + }, +/obj/structure/curtain/open/shower, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 5 + }, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm2) +"bU" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_picnicarea) +"bV" = ( +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_theatre) +"bW" = ( +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 9 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_theatre) +"bX" = ( +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_theatre) +"bY" = ( +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 5 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_theatre) +"bZ" = ( +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_theatre) +"ca" = ( +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 9 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"cb" = ( +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"cc" = ( +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 5 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"cd" = ( +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/structure/holostool{ + dir = 1 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_theatre) +"ce" = ( +/obj/machinery/recharge_station, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm3) +"cf" = ( +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm3) +"cg" = ( +/obj/structure/toilet, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm3) +"ch" = ( +/obj/machinery/shower{ + pixel_y = 13 + }, +/obj/structure/curtain/open/shower, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 5 + }, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm3) +"ci" = ( +/obj/structure/holostool{ + dir = 4 + }, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_boxingcourt) +"cj" = ( +/obj/machinery/door/airlock/alien/public, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm1) +"ck" = ( +/obj/machinery/door/airlock/alien/public, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm2) +"cl" = ( +/obj/machinery/door/airlock/alien/public, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm3) +"cm" = ( +/obj/item/toy/chess/pawn_white, +/turf/simulated/floor/holofloor/wmarble, +/area/holodeck/source_chess) +"cn" = ( +/obj/machinery/sleeper/survival_pod, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm1) +"co" = ( +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm1) +"cp" = ( +/obj/structure/fans, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm1) +"cq" = ( +/obj/machinery/smartfridge/survival_pod, +/obj/item/weapon/storage/mre/menu11, +/obj/item/weapon/storage/mre/menu11, +/obj/item/weapon/storage/mre/menu13, +/obj/item/weapon/storage/mre/menu13, +/obj/item/weapon/storage/mre/menu10, +/obj/item/weapon/storage/mre/menu10, +/obj/item/weapon/storage/mre/menu9, +/obj/item/weapon/storage/mre/menu9, +/obj/item/weapon/storage/mre/random, +/obj/item/weapon/storage/mre/random, +/obj/item/weapon/storage/mre/random, +/obj/item/weapon/storage/mre/random, +/obj/item/weapon/storage/mre/random, +/obj/item/weapon/storage/mre/random, +/obj/item/weapon/storage/mre/random, +/obj/item/weapon/storage/mre/random, +/obj/item/weapon/towel/random, +/obj/item/weapon/towel/random, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm1) +"cr" = ( +/obj/machinery/sleeper/survival_pod, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm2) +"cs" = ( +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm2) +"ct" = ( +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/structure/holostool{ + dir = 1 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_theatre) +"cu" = ( +/obj/structure/holostool{ + dir = 1 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_theatre) +"cv" = ( +/obj/structure/holostool{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_theatre) +"cw" = ( +/obj/structure/table/woodentable/holotable, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"cx" = ( +/obj/structure/table/woodentable/holotable, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"cy" = ( +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"cz" = ( +/obj/structure/table/woodentable/holotable, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"cA" = ( +/obj/effect/floor_decal/corner/green{ + dir = 9 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_emptycourt) +"cB" = ( +/obj/effect/floor_decal/corner/green{ + dir = 6 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_emptycourt) +"cC" = ( +/obj/structure/fans, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm2) +"cD" = ( +/obj/machinery/smartfridge/survival_pod, +/obj/item/weapon/storage/mre/menu11, +/obj/item/weapon/storage/mre/menu11, +/obj/item/weapon/storage/mre/menu13, +/obj/item/weapon/storage/mre/menu13, +/obj/item/weapon/storage/mre/menu10, +/obj/item/weapon/storage/mre/menu10, +/obj/item/weapon/storage/mre/menu9, +/obj/item/weapon/storage/mre/menu9, +/obj/item/weapon/storage/mre/random, +/obj/item/weapon/storage/mre/random, +/obj/item/weapon/storage/mre/random, +/obj/item/weapon/storage/mre/random, +/obj/item/weapon/storage/mre/random, +/obj/item/weapon/storage/mre/random, +/obj/item/weapon/storage/mre/random, +/obj/item/weapon/storage/mre/random, +/obj/item/weapon/towel/random, +/obj/item/weapon/towel/random, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm2) +"cE" = ( +/obj/machinery/sleeper/survival_pod, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm3) +"cF" = ( +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm3) +"cG" = ( +/obj/structure/fans, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm3) +"cH" = ( +/obj/machinery/smartfridge/survival_pod, +/obj/item/weapon/storage/mre/menu11, +/obj/item/weapon/storage/mre/menu11, +/obj/item/weapon/storage/mre/menu13, +/obj/item/weapon/storage/mre/menu13, +/obj/item/weapon/storage/mre/menu10, +/obj/item/weapon/storage/mre/menu10, +/obj/item/weapon/storage/mre/menu9, +/obj/item/weapon/storage/mre/menu9, +/obj/item/weapon/storage/mre/random, +/obj/item/weapon/storage/mre/random, +/obj/item/weapon/storage/mre/random, +/obj/item/weapon/storage/mre/random, +/obj/item/weapon/storage/mre/random, +/obj/item/weapon/storage/mre/random, +/obj/item/weapon/storage/mre/random, +/obj/item/weapon/storage/mre/random, +/obj/item/weapon/towel/random, +/obj/item/weapon/towel/random, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm3) +"cI" = ( +/obj/structure/table/survival_pod, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm1) +"cJ" = ( +/obj/structure/table/survival_pod, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm2) +"cK" = ( +/obj/structure/table/survival_pod, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm3) +"cL" = ( +/obj/structure/holostool{ + dir = 8 + }, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_boxingcourt) +"cM" = ( +/obj/structure/holostool{ + dir = 1 + }, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_boxingcourt) +"cN" = ( +/obj/structure/closet/alien, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm1) +"cO" = ( +/obj/item/device/perfect_tele_beacon/stationary{ + tele_name = "Unknown"; + tele_network = "unkone" + }, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm1) +"cP" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_picnicarea) +"cQ" = ( +/obj/structure/flora/ausbushes/brflowers, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_picnicarea) +"cR" = ( +/obj/effect/shuttle_landmark/transit{ + base_area = /area/space; + base_turf = /turf/space/transit/north; + landmark_tag = "skipjack_transit"; + name = "Skipjack Transit" + }, +/turf/space/transit/north, +/area/space) +"cS" = ( +/obj/structure/bed/chair/holochair{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"cT" = ( +/obj/structure/bed/chair/holochair{ + dir = 1 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"cU" = ( +/obj/structure/bed/chair/holochair{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"cV" = ( +/obj/item/weapon/bedsheet/rddouble, +/obj/structure/bed/double/padded, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm1) +"cW" = ( +/obj/structure/closet/alien, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm2) +"cX" = ( +/obj/item/device/perfect_tele_beacon/stationary{ + tele_name = "Unknown"; + tele_network = "unktwo" + }, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm2) +"cY" = ( +/obj/item/weapon/bedsheet/rddouble, +/obj/structure/bed/double/padded, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm2) +"cZ" = ( +/obj/structure/closet/alien, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm3) +"da" = ( +/obj/structure/flora/ausbushes/brflowers, +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 1 + }, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_picnicarea) +"db" = ( +/obj/item/device/perfect_tele_beacon/stationary{ + tele_name = "Unknown"; + tele_network = "unkthree" + }, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm3) +"dc" = ( +/obj/item/weapon/bedsheet/rddouble, +/obj/structure/bed/double/padded, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm3) +"dd" = ( +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"de" = ( +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"df" = ( +/obj/structure/prop/alien/computer{ + dir = 8 + }, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm1) +"dg" = ( +/obj/structure/prop/alien/dispenser, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm1) +"dh" = ( +/obj/structure/prop/alien/computer{ + dir = 8 + }, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm2) +"di" = ( +/obj/structure/prop/alien/dispenser, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm2) +"dj" = ( +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 10 + }, +/obj/structure/holostool{ + dir = 1 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_theatre) +"dk" = ( +/obj/effect/floor_decal/carpet, +/obj/structure/holostool{ + dir = 1 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_theatre) +"dl" = ( +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 6 + }, +/obj/structure/holostool{ + dir = 1 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_theatre) +"dm" = ( +/obj/effect/floor_decal/carpet{ + dir = 5 + }, +/obj/effect/floor_decal/carpet{ + dir = 6 + }, +/obj/effect/floor_decal/carpet{ + dir = 10 + }, +/obj/effect/floor_decal/carpet{ + dir = 9 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_theatre) +"dn" = ( +/obj/structure/prop/alien/computer{ + dir = 8 + }, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm3) +"do" = ( +/obj/structure/prop/alien/dispenser, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm3) +"dp" = ( +/obj/structure/closet/secure_closet/personal, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm1) +"dq" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-06" + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_theatre) +"dr" = ( +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 6 + }, +/obj/effect/floor_decal/carpet{ + dir = 10 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_theatre) +"ds" = ( +/obj/structure/bed/chair/holochair{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 10 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"dt" = ( +/obj/structure/bed/chair/holochair{ + dir = 1 + }, +/obj/effect/floor_decal/carpet, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"du" = ( +/obj/structure/bed/chair/holochair{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 6 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_courtroom) +"dv" = ( +/obj/effect/floor_decal/corner/green/full, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_emptycourt) +"dw" = ( +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_emptycourt) +"dx" = ( +/obj/effect/floor_decal/corner/green/full{ + dir = 4 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_emptycourt) +"dy" = ( +/obj/structure/bed/chair/comfy/black, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm1) +"dz" = ( +/obj/structure/closet/secure_closet/personal, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm2) +"dA" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/unsimulated/wall, +/area/space) +"dB" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/unsimulated/wall, +/area/space) +"dC" = ( +/obj/structure/bed/chair/comfy/black, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm2) +"dD" = ( +/obj/structure/closet/secure_closet/personal, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm3) +"dE" = ( +/obj/structure/bed/chair/comfy/black, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm3) +"dF" = ( +/turf/simulated/floor/holofloor/space, +/area/holodeck/source_space) +"dG" = ( +/turf/simulated/floor/holofloor/snow, +/area/holodeck/source_snowfield) +"dH" = ( +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_meetinghall) +"dI" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-06" + }, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_meetinghall) +"dJ" = ( +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_basketball) +"dK" = ( +/obj/structure/holostool{ + dir = 8 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"dL" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm1) +"dM" = ( +/obj/effect/floor_decal/corner/red/full{ + dir = 8 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"dN" = ( +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"dO" = ( +/obj/structure/holohoop, +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"dP" = ( +/obj/effect/floor_decal/corner/red/full{ + dir = 1 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"dQ" = ( +/turf/simulated/floor/holofloor/beach/sand, +/area/holodeck/source_beach) +"dR" = ( +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_thunderdomecourt) +"dS" = ( +/obj/structure/holostool{ + dir = 8 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_thunderdomecourt) +"dT" = ( +/obj/structure/table/alien, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm1) +"dU" = ( +/obj/structure/table/holotable, +/obj/machinery/readybutton, +/obj/effect/floor_decal/corner/red/full{ + dir = 8 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_thunderdomecourt) +"dV" = ( +/obj/structure/table/holotable, +/obj/item/clothing/head/helmet/thunderdome, +/obj/item/clothing/suit/armor/tdome/red, +/obj/item/clothing/under/color/red, +/obj/item/weapon/holo/esword/red, +/obj/effect/floor_decal/corner/red{ + dir = 5 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_thunderdomecourt) +"dW" = ( +/obj/structure/table/holotable, +/obj/effect/floor_decal/corner/red/full{ + dir = 1 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_thunderdomecourt) +"dX" = ( +/obj/structure/table/holotable, +/obj/item/clothing/gloves/boxing/hologlove, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_boxingcourt) +"dY" = ( +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_boxingcourt) +"dZ" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm2) +"ea" = ( +/obj/structure/table/alien, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm2) +"eb" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm3) +"ec" = ( +/obj/effect/landmark{ + name = "Holocarp Spawn Random" + }, +/turf/simulated/floor/holofloor/space, +/area/holodeck/source_space) +"ed" = ( +/obj/structure/flora/grass/both, +/turf/simulated/floor/holofloor/snow, +/area/holodeck/source_snowfield) +"ee" = ( +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 9 + }, +/obj/effect/floor_decal/carpet{ + dir = 10 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_meetinghall) +"ef" = ( +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_meetinghall) +"eg" = ( +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 5 + }, +/obj/effect/floor_decal/carpet{ + dir = 6 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_meetinghall) +"eh" = ( +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"ei" = ( +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"ej" = ( +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"ek" = ( +/obj/effect/overlay/palmtree_r, +/turf/simulated/floor/holofloor/beach/sand, +/area/holodeck/source_beach) +"el" = ( +/obj/effect/floor_decal/corner/red{ + dir = 9 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_thunderdomecourt) +"em" = ( +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_thunderdomecourt) +"en" = ( +/obj/effect/floor_decal/corner/red{ + dir = 6 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_thunderdomecourt) +"eo" = ( +/obj/structure/holostool, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_boxingcourt) +"ep" = ( +/obj/structure/flora/tree/pine, +/turf/simulated/floor/holofloor/snow, +/area/holodeck/source_snowfield) +"eq" = ( +/obj/structure/table/woodentable/holotable, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_meetinghall) +"er" = ( +/obj/structure/table/alien, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm3) +"es" = ( +/obj/item/clothing/glasses/sunglasses, +/turf/simulated/floor/holofloor/beach/sand, +/area/holodeck/source_beach) +"et" = ( +/obj/effect/overlay/palmtree_l, +/obj/effect/overlay/coconut, +/turf/simulated/floor/holofloor/beach/sand, +/area/holodeck/source_beach) +"eu" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/teleport/hub, +/turf/simulated/shuttle/floor/voidcraft, +/area/unknown/dorm1) +"ev" = ( +/obj/machinery/teleport/station, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm1) +"ew" = ( +/obj/machinery/computer/teleporter{ + dir = 1 + }, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm1) +"ex" = ( +/obj/structure/prop/alien/power, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm1) +"ey" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/teleport/hub, +/turf/simulated/shuttle/floor/voidcraft, +/area/unknown/dorm2) +"ez" = ( +/obj/machinery/teleport/station, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm2) +"eA" = ( +/obj/machinery/computer/teleporter{ + dir = 1 + }, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm2) +"eB" = ( +/obj/structure/prop/alien/power, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm2) +"eC" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/teleport/hub, +/turf/simulated/shuttle/floor/voidcraft, +/area/unknown/dorm3) +"eD" = ( +/obj/effect/floor_decal/sign/small_4, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_chess) +"eE" = ( +/obj/machinery/teleport/station, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm3) +"eF" = ( +/obj/machinery/computer/teleporter{ + dir = 1 + }, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm3) +"eG" = ( +/turf/space, +/turf/space/transit/north, +/area/space) +"eH" = ( +/obj/effect/shuttle_landmark/transit{ + base_area = /area/space; + base_turf = /turf/space/transit/north; + landmark_tag = "ninja_transit"; + name = "Ninja Transit" + }, +/turf/space/transit/north, +/area/space) +"eI" = ( +/turf/space/transit/south, +/area/space) +"eJ" = ( +/obj/structure/flora/tree/dead, +/turf/simulated/floor/holofloor/snow, +/area/holodeck/source_snowfield) +"eK" = ( +/turf/simulated/floor/holofloor/lino, +/area/holodeck/source_meetinghall) +"eL" = ( +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_meetinghall) +"eM" = ( +/obj/item/weapon/beach_ball, +/turf/simulated/floor/holofloor/beach/sand, +/area/holodeck/source_beach) +"eN" = ( +/obj/structure/prop/alien/power, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm3) +"eO" = ( +/obj/effect/step_trigger/thrower{ + affect_ghosts = 1; + name = "thrower_leftnostop" + }, +/turf/space/transit/south, +/area/space) +"eP" = ( +/turf/simulated/shuttle/wall/alien/blue/hard_corner, +/area/unknown/dorm4) +"eQ" = ( +/obj/effect/shuttle_landmark/transit{ + base_area = /area/space; + base_turf = /turf/space/transit/east; + landmark_tag = "specops_transit"; + name = "Specops Transit" + }, +/turf/space/transit/west, +/area/space) +"eR" = ( +/turf/simulated/shuttle/wall/alien/blue, +/area/unknown/dorm4) +"eS" = ( +/turf/simulated/shuttle/wall/alien/blue/hard_corner, +/area/unknown/dorm5) +"eT" = ( +/obj/structure/flora/grass/green, +/turf/simulated/floor/holofloor/snow, +/area/holodeck/source_snowfield) +"eU" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 1 + }, +/turf/simulated/floor/holofloor/grass, +/area/holodeck/source_picnicarea) +"eV" = ( +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 9 + }, +/obj/structure/holostool{ + dir = 1 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_meetinghall) +"eW" = ( +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/structure/holostool{ + dir = 1 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_meetinghall) +"eX" = ( +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 5 + }, +/obj/structure/holostool{ + dir = 1 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_meetinghall) +"eY" = ( +/obj/effect/floor_decal/corner/red/full, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"eZ" = ( +/obj/effect/floor_decal/corner/red{ + dir = 10 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"fa" = ( +/obj/item/weapon/beach_ball/holoball, +/obj/effect/floor_decal/corner/red{ + dir = 10 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"fb" = ( +/obj/effect/floor_decal/corner/red/full{ + dir = 4 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"fc" = ( +/obj/item/weapon/inflatable_duck, +/turf/simulated/floor/holofloor/beach/sand, +/area/holodeck/source_beach) +"fd" = ( +/obj/structure/window/reinforced/holowindow/disappearing, +/obj/effect/floor_decal/corner/red/full, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_thunderdomecourt) +"fe" = ( +/obj/structure/window/reinforced/holowindow/disappearing, +/obj/effect/floor_decal/corner/red{ + dir = 10 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_thunderdomecourt) +"ff" = ( +/obj/structure/window/reinforced/holowindow/disappearing, +/obj/effect/floor_decal/corner/red/full{ + dir = 4 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_thunderdomecourt) +"fg" = ( +/turf/simulated/shuttle/wall/alien/blue, +/area/unknown/dorm5) +"fh" = ( +/obj/effect/step_trigger/thrower{ + affect_ghosts = 1; + name = "thrower_leftnostop" + }, +/turf/space/transit/west, +/area/space) +"fi" = ( +/turf/simulated/shuttle/wall/alien/blue/hard_corner, +/area/unknown/dorm6) +"fj" = ( +/turf/simulated/shuttle/wall/alien/blue, +/area/unknown/dorm6) +"fk" = ( +/obj/machinery/recharge_station, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm4) +"fl" = ( +/obj/structure/table/holotable, +/obj/item/clothing/gloves/boxing/hologlove{ + icon_state = "boxinggreen"; + item_state = "boxinggreen" + }, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_gym) +"fm" = ( +/obj/item/weapon/bedsheet/medical, +/obj/structure/bed/padded, +/obj/structure/curtain/open/privacy, +/turf/simulated/floor/holofloor/tiled{ + icon_state = "white" + }, +/area/holodeck/source_patient_ward) +"fn" = ( +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/structure/holostool{ + dir = 1 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_meetinghall) +"fo" = ( +/obj/structure/holostool{ + dir = 1 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_meetinghall) +"fp" = ( +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/structure/holostool{ + dir = 1 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_meetinghall) +"fq" = ( +/obj/effect/floor_decal/corner/green/full{ + dir = 8 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"fr" = ( +/obj/effect/floor_decal/corner/green{ + dir = 5 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"fs" = ( +/obj/effect/floor_decal/corner/green/full{ + dir = 1 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"ft" = ( +/obj/structure/window/reinforced/holowindow/disappearing{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/full{ + dir = 8 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_thunderdomecourt) +"fu" = ( +/obj/structure/window/reinforced/holowindow/disappearing{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green{ + dir = 5 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_thunderdomecourt) +"fv" = ( +/obj/structure/window/reinforced/holowindow/disappearing{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/full{ + dir = 1 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_thunderdomecourt) +"fw" = ( +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm4) +"fx" = ( +/obj/structure/toilet, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm4) +"fy" = ( +/obj/machinery/shower{ + pixel_y = 13 + }, +/obj/structure/curtain/open/shower, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 5 + }, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm4) +"fz" = ( +/obj/effect/floor_decal/corner/green{ + dir = 9 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"fA" = ( +/obj/effect/floor_decal/corner/green{ + dir = 6 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"fB" = ( +/obj/effect/floor_decal/corner/green{ + dir = 9 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_thunderdomecourt) +"fC" = ( +/obj/effect/floor_decal/corner/green{ + dir = 6 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_thunderdomecourt) +"fD" = ( +/obj/machinery/recharge_station, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm5) +"fE" = ( +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm5) +"fF" = ( +/obj/structure/toilet, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm5) +"fG" = ( +/obj/structure/flora/grass/brown, +/turf/simulated/floor/holofloor/snow, +/area/holodeck/source_snowfield) +"fH" = ( +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/structure/holostool{ + dir = 1 + }, +/turf/simulated/floor/holofloor/carpet{ + dir = 8 + }, +/area/holodeck/source_meetinghall) +"fI" = ( +/obj/machinery/shower{ + pixel_y = 13 + }, +/obj/structure/curtain/open/shower, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 5 + }, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm5) +"fJ" = ( +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"fK" = ( +/turf/unsimulated/beach/sand{ + icon_state = "beach" + }, +/area/holodeck/source_beach) +"fL" = ( +/obj/machinery/recharge_station, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm6) +"fM" = ( +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm6) +"fN" = ( +/obj/structure/table/woodentable/holotable, +/obj/item/weapon/dice/d8, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_game_room) +"fO" = ( +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 10 + }, +/obj/structure/holostool{ + dir = 1 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_meetinghall) +"fP" = ( +/obj/effect/floor_decal/carpet, +/obj/structure/holostool{ + dir = 1 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_meetinghall) +"fQ" = ( +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet{ + dir = 6 + }, +/obj/structure/holostool{ + dir = 1 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_meetinghall) +"fR" = ( +/turf/simulated/floor/holofloor/beach/water, +/area/holodeck/source_beach) +"fS" = ( +/obj/effect/floor_decal/corner/green/full, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"fT" = ( +/obj/structure/holohoop{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"fU" = ( +/obj/effect/floor_decal/corner/green/full{ + dir = 4 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_basketball) +"fV" = ( +/obj/structure/table/holotable, +/obj/effect/floor_decal/corner/green/full, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_thunderdomecourt) +"fW" = ( +/obj/structure/table/holotable, +/obj/item/clothing/head/helmet/thunderdome, +/obj/item/clothing/suit/armor/tdome/green, +/obj/item/clothing/under/color/green, +/obj/item/weapon/holo/esword/green, +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_thunderdomecourt) +"fX" = ( +/obj/structure/table/holotable, +/obj/machinery/readybutton, +/obj/effect/floor_decal/corner/green/full{ + dir = 4 + }, +/turf/simulated/floor/holofloor/tiled, +/area/holodeck/source_thunderdomecourt) +"fY" = ( +/obj/structure/table/holotable, +/obj/item/clothing/gloves/boxing/hologlove{ + icon_state = "boxinggreen"; + item_state = "boxinggreen" + }, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_boxingcourt) +"fZ" = ( +/turf/simulated/floor/holofloor/reinforced, +/area/space) +"ga" = ( +/turf/unsimulated/beach/sand{ + density = 1; + opacity = 1 + }, +/area/beach) +"gb" = ( +/obj/effect/shuttle_landmark/transit{ + base_area = /area/space; + base_turf = /turf/space/transit/east; + landmark_tag = "belter_transit"; + name = "Belter Transit" + }, +/turf/space/transit/south, +/area/space) +"gc" = ( +/turf/unsimulated/beach/sand, +/area/beach) +"gd" = ( +/obj/structure/signpost, +/turf/unsimulated/beach/sand, +/area/beach) +"ge" = ( +/obj/structure/closet, +/turf/unsimulated/beach/sand, +/area/beach) +"gf" = ( +/obj/effect/overlay/palmtree_l, +/turf/unsimulated/beach/sand, +/area/beach) +"gg" = ( +/obj/effect/overlay/palmtree_r, +/obj/effect/overlay/coconut, +/turf/unsimulated/beach/sand, +/area/beach) +"gh" = ( +/obj/effect/overlay/coconut, +/turf/unsimulated/beach/sand, +/area/beach) +"gi" = ( +/obj/effect/overlay/palmtree_r, +/turf/unsimulated/beach/sand, +/area/beach) +"gj" = ( +/obj/effect/landmark{ + name = "endgame_exit" + }, +/turf/unsimulated/beach/sand, +/area/beach) +"gk" = ( +/obj/structure/table/standard, +/turf/unsimulated/beach/sand, +/area/beach) +"gl" = ( +/obj/structure/table/standard, +/obj/item/clothing/under/color/rainbow, +/obj/item/clothing/glasses/sunglasses, +/obj/item/clothing/head/collectable/petehat{ + pixel_y = 5 + }, +/turf/unsimulated/beach/sand, +/area/beach) +"gm" = ( +/obj/structure/table/standard, +/obj/item/weapon/reagent_containers/food/snacks/chips, +/turf/unsimulated/beach/sand, +/area/beach) +"gn" = ( +/obj/structure/table/standard, +/obj/item/weapon/reagent_containers/food/drinks/cans/cola, +/obj/item/weapon/reagent_containers/food/drinks/cans/cola, +/obj/item/weapon/reagent_containers/food/drinks/cans/cola, +/obj/item/weapon/reagent_containers/food/drinks/cans/cola, +/obj/item/weapon/reagent_containers/food/drinks/cans/cola, +/obj/item/weapon/reagent_containers/food/drinks/cans/cola, +/turf/unsimulated/beach/sand, +/area/beach) +"go" = ( +/obj/item/weapon/beach_ball, +/turf/unsimulated/beach/sand, +/area/beach) +"gp" = ( +/obj/structure/bed/chair, +/obj/effect/landmark{ + name = "endgame_exit" + }, +/obj/item/toy/plushie/mouse{ + desc = "A plushie of a small fuzzy rodent."; + name = "Woodrat" + }, +/turf/unsimulated/beach/sand, +/area/beach) +"gq" = ( +/obj/structure/bed/chair, +/obj/effect/landmark{ + name = "endgame_exit" + }, +/turf/unsimulated/beach/sand, +/area/beach) +"gr" = ( +/obj/machinery/vending/coffee, +/turf/unsimulated/beach/sand, +/area/beach) +"gs" = ( +/obj/item/clothing/head/collectable/paper, +/turf/unsimulated/beach/sand, +/area/beach) +"gt" = ( +/turf/unsimulated/floor{ + icon_state = "sandwater" + }, +/area/beach) +"gu" = ( +/turf/unsimulated/beach/coastline{ + density = 1; + opacity = 1 + }, +/area/beach) +"gv" = ( +/obj/structure/toilet, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm6) +"gw" = ( +/obj/machinery/shower{ + pixel_y = 13 + }, +/obj/structure/curtain/open/shower, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 5 + }, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm6) +"gx" = ( +/obj/machinery/door/airlock/alien/blue/public, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm4) +"gy" = ( +/turf/unsimulated/beach/coastline, +/area/beach) +"gz" = ( +/obj/machinery/door/airlock/alien/blue/public, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm5) +"gA" = ( +/obj/machinery/door/airlock/alien/blue/public, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm6) +"gB" = ( +/obj/machinery/sleeper/survival_pod, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm4) +"gC" = ( +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm4) +"gD" = ( +/obj/structure/fans, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm4) +"gE" = ( +/obj/machinery/smartfridge/survival_pod, +/obj/item/weapon/storage/mre/menu11, +/obj/item/weapon/storage/mre/menu11, +/obj/item/weapon/storage/mre/menu13, +/obj/item/weapon/storage/mre/menu13, +/obj/item/weapon/storage/mre/menu10, +/obj/item/weapon/storage/mre/menu10, +/obj/item/weapon/storage/mre/menu9, +/obj/item/weapon/storage/mre/menu9, +/obj/item/weapon/storage/mre/random, +/obj/item/weapon/storage/mre/random, +/obj/item/weapon/storage/mre/random, +/obj/item/weapon/storage/mre/random, +/obj/item/weapon/storage/mre/random, +/obj/item/weapon/storage/mre/random, +/obj/item/weapon/storage/mre/random, +/obj/item/weapon/storage/mre/random, +/obj/item/weapon/towel/random, +/obj/item/weapon/towel/random, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm4) +"gF" = ( +/obj/machinery/sleeper/survival_pod, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm5) +"gG" = ( +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm5) +"gH" = ( +/obj/structure/fans, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm5) +"gI" = ( +/obj/machinery/smartfridge/survival_pod, +/obj/item/weapon/storage/mre/menu11, +/obj/item/weapon/storage/mre/menu11, +/obj/item/weapon/storage/mre/menu13, +/obj/item/weapon/storage/mre/menu13, +/obj/item/weapon/storage/mre/menu10, +/obj/item/weapon/storage/mre/menu10, +/obj/item/weapon/storage/mre/menu9, +/obj/item/weapon/storage/mre/menu9, +/obj/item/weapon/storage/mre/random, +/obj/item/weapon/storage/mre/random, +/obj/item/weapon/storage/mre/random, +/obj/item/weapon/storage/mre/random, +/obj/item/weapon/storage/mre/random, +/obj/item/weapon/storage/mre/random, +/obj/item/weapon/storage/mre/random, +/obj/item/weapon/storage/mre/random, +/obj/item/weapon/towel/random, +/obj/item/weapon/towel/random, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm5) +"gJ" = ( +/obj/machinery/sleeper/survival_pod, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm6) +"gK" = ( +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm6) +"gL" = ( +/obj/structure/fans, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm6) +"gM" = ( +/obj/machinery/smartfridge/survival_pod, +/obj/item/weapon/storage/mre/menu11, +/obj/item/weapon/storage/mre/menu11, +/obj/item/weapon/storage/mre/menu13, +/obj/item/weapon/storage/mre/menu13, +/obj/item/weapon/storage/mre/menu10, +/obj/item/weapon/storage/mre/menu10, +/obj/item/weapon/storage/mre/menu9, +/obj/item/weapon/storage/mre/menu9, +/obj/item/weapon/storage/mre/random, +/obj/item/weapon/storage/mre/random, +/obj/item/weapon/storage/mre/random, +/obj/item/weapon/storage/mre/random, +/obj/item/weapon/storage/mre/random, +/obj/item/weapon/storage/mre/random, +/obj/item/weapon/storage/mre/random, +/obj/item/weapon/storage/mre/random, +/obj/item/weapon/towel/random, +/obj/item/weapon/towel/random, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm6) +"gN" = ( +/turf/unsimulated/beach/water{ + density = 1; + opacity = 1 + }, +/area/beach) +"gO" = ( +/turf/unsimulated/beach/water, +/area/beach) +"gP" = ( +/obj/structure/table/survival_pod, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm4) +"gQ" = ( +/obj/structure/table/survival_pod, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm5) +"gR" = ( +/obj/structure/table/survival_pod, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm6) +"gS" = ( +/obj/structure/closet/alien, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm4) +"gT" = ( +/obj/item/device/perfect_tele_beacon/stationary{ + tele_name = "Unknown"; + tele_network = "unkfour" + }, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm4) +"gU" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/hopdouble, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm4) +"gV" = ( +/obj/structure/closet/alien, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm5) +"gW" = ( +/obj/item/device/perfect_tele_beacon/stationary{ + tele_name = "Unknown"; + tele_network = "unkfive" + }, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm5) +"gX" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/hopdouble, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm5) +"gY" = ( +/obj/structure/closet/alien, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm6) +"gZ" = ( +/obj/item/device/perfect_tele_beacon/stationary{ + tele_name = "Unknown"; + tele_network = "unksix" + }, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm6) +"ha" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/hopdouble, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm6) +"hb" = ( +/obj/structure/prop/alien/computer/hybrid{ + dir = 8 + }, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm4) +"hc" = ( +/obj/structure/prop/alien/dispenser, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm4) +"hd" = ( +/obj/structure/prop/alien/computer/hybrid{ + dir = 8 + }, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm5) +"he" = ( +/obj/structure/prop/alien/dispenser, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm5) +"hf" = ( +/obj/structure/prop/alien/computer/hybrid{ + dir = 8 + }, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm6) +"hg" = ( +/obj/structure/prop/alien/dispenser, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm6) +"hh" = ( +/obj/structure/closet/secure_closet/personal, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm4) +"hi" = ( +/obj/structure/bed/chair/comfy/black, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm4) +"hj" = ( +/obj/structure/closet/secure_closet/personal, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm5) +"hk" = ( +/obj/structure/bed/chair/comfy/black, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm5) +"hl" = ( +/obj/structure/closet/secure_closet/personal, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm6) +"hm" = ( +/obj/structure/bed/chair/comfy/black, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm6) +"hn" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm4) +"ho" = ( +/obj/structure/table/alien/blue, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm4) +"hp" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm5) +"hq" = ( +/obj/structure/table/alien/blue, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm5) +"hr" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm6) +"hs" = ( +/obj/structure/table/alien/blue, +/turf/simulated/shuttle/floor/alien, +/area/unknown/dorm6) +"ht" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/teleport/hub, +/turf/simulated/shuttle/floor/voidcraft, +/area/unknown/dorm4) +"hu" = ( +/obj/machinery/teleport/station, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm4) +"hv" = ( +/obj/machinery/computer/teleporter{ + dir = 1 + }, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm4) +"hw" = ( +/obj/structure/prop/alien/power, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm4) +"hx" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/teleport/hub, +/turf/simulated/shuttle/floor/voidcraft, +/area/unknown/dorm5) +"hy" = ( +/obj/machinery/teleport/station, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm5) +"hz" = ( +/obj/machinery/computer/teleporter{ + dir = 1 + }, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm5) +"hA" = ( +/obj/structure/prop/alien/power, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm5) +"hB" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/teleport/hub, +/turf/simulated/shuttle/floor/voidcraft, +/area/unknown/dorm6) +"hC" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/turf/simulated/floor/holofloor/tiled{ + icon_state = "white" + }, +/area/holodeck/source_patient_ward) +"hD" = ( +/obj/machinery/teleport/station, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm6) +"hE" = ( +/obj/machinery/computer/teleporter{ + dir = 1 + }, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm6) +"hF" = ( +/obj/structure/prop/alien/power, +/turf/simulated/shuttle/floor/alienplating, +/area/unknown/dorm6) +"hG" = ( +/obj/effect/step_trigger/thrower{ + affect_ghosts = 1; + name = "thrower_throwdown"; + nostop = 1; + stopper = 0; + tiles = 0 + }, +/turf/space, +/turf/space/transit/north, +/area/space) +"hH" = ( +/obj/effect/step_trigger/teleporter/random{ + affect_ghosts = 1; + name = "escapeshuttle_leave"; + teleport_x = 25; + teleport_x_offset = 245; + teleport_y = 25; + teleport_y_offset = 245; + teleport_z = 4; + teleport_z_offset = 4 + }, +/turf/space, +/turf/space/transit/north, +/area/space) +"hX" = ( +/obj/structure/table/woodentable/holotable, +/obj/effect/landmark/costume/pirate, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_game_room) +"iv" = ( +/obj/effect/shuttle_landmark/transit{ + base_area = /area/space; + base_turf = /turf/space/transit/east; + landmark_tag = "port_escape_transit"; + name = "Port Escape Transit" + }, +/turf/space/transit/west, +/area/space) +"iO" = ( +/obj/effect/step_trigger/teleporter/random{ + affect_ghosts = 1; + name = "escapeshuttle_leave"; + teleport_x = 25; + teleport_x_offset = 245; + teleport_y = 25; + teleport_y_offset = 245; + teleport_z = 4; + teleport_z_offset = 4 + }, +/turf/space/transit/west, +/area/space) +"jS" = ( +/obj/structure/table/holotable, +/obj/item/clothing/gloves/boxing/hologlove, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_gym) +"kw" = ( +/obj/effect/floor_decal/sign/small_5, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_chess) +"kN" = ( +/obj/structure/table/woodentable/holotable, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_game_room) +"lf" = ( +/obj/effect/landmark/ai_multicam_room, +/turf/unsimulated/ai_visible, +/area/ai_multicam_room) +"lP" = ( +/obj/effect/shuttle_landmark/transit{ + base_area = /area/space; + base_turf = /turf/space/transit/east; + landmark_tag = "starboard_escape_transit"; + name = "Starboard Escape Transit" + }, +/turf/space/transit/east, +/area/space) +"ml" = ( +/obj/structure/table/holotable, +/obj/item/device/flashlight/lamp/green, +/obj/effect/floor_decal/corner/paleblue{ + dir = 5 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 10 + }, +/turf/simulated/floor/holofloor/tiled{ + icon_state = "white" + }, +/area/holodeck/source_patient_ward) +"mY" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/turf/simulated/floor/holofloor/tiled{ + icon_state = "monotile" + }, +/area/holodeck/source_gym) +"nj" = ( +/obj/item/toy/chess/rook_white, +/turf/simulated/floor/holofloor/wmarble, +/area/holodeck/source_chess) +"nV" = ( +/obj/item/toy/chess/rook_black, +/turf/simulated/floor/holofloor/wmarble, +/area/holodeck/source_chess) +"nW" = ( +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_chess) +"oq" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/turf/simulated/floor/holofloor/tiled{ + icon_state = "monotile" + }, +/area/holodeck/source_gym) +"ov" = ( +/obj/structure/table/woodentable/holotable, +/obj/item/weapon/dice/d12, +/obj/item/weapon/dice/d10, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_game_room) +"oJ" = ( +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 9 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_game_room) +"oR" = ( +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet{ + dir = 6 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_game_room) +"oT" = ( +/obj/item/toy/chess/pawn_black, +/turf/simulated/floor/holofloor/wmarble, +/area/holodeck/source_chess) +"pf" = ( +/obj/effect/floor_decal/sign/small_8, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_chess) +"pT" = ( +/turf/simulated/floor/holofloor/bmarble, +/area/holodeck/source_chess) +"pU" = ( +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 10 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_game_room) +"qv" = ( +/obj/effect/floor_decal/sign/small_h, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_chess) +"qV" = ( +/obj/effect/floor_decal/sign/small_6, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_chess) +"ru" = ( +/obj/item/toy/chess/pawn_black, +/turf/simulated/floor/holofloor/bmarble, +/area/holodeck/source_chess) +"rD" = ( +/obj/item/weapon/bedsheet/medical, +/obj/structure/bed/padded, +/obj/structure/curtain/open/privacy, +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/turf/simulated/floor/holofloor/tiled{ + icon_state = "white" + }, +/area/holodeck/source_patient_ward) +"rU" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/holofloor/tiled{ + icon_state = "monotile" + }, +/area/holodeck/source_gym) +"sb" = ( +/obj/item/toy/chess/knight_white, +/turf/simulated/floor/holofloor/wmarble, +/area/holodeck/source_chess) +"sj" = ( +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_game_room) +"tD" = ( +/turf/unsimulated/wall, +/area/ai_multicam_room) +"tR" = ( +/obj/item/weapon/bedsheet/medical, +/obj/structure/bed/padded, +/obj/structure/curtain/open/privacy, +/obj/effect/floor_decal/corner/paleblue/full{ + dir = 8 + }, +/turf/simulated/floor/holofloor/tiled{ + icon_state = "white" + }, +/area/holodeck/source_patient_ward) +"uh" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/turf/simulated/floor/holofloor/tiled{ + icon_state = "monotile" + }, +/area/holodeck/source_gym) +"ul" = ( +/turf/unsimulated/wall, +/area/beach) +"un" = ( +/obj/effect/shuttle_landmark{ + base_area = /area/space; + base_turf = /turf/space; + landmark_tag = "escape_transit"; + name = "Escape Transit" + }, +/turf/space/transit/north, +/area/space) +"uM" = ( +/obj/item/toy/chess/knight_black, +/turf/simulated/floor/holofloor/wmarble, +/area/holodeck/source_chess) +"vx" = ( +/obj/structure/table/woodentable/holotable, +/obj/effect/landmark/costume/madscientist, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_game_room) +"vW" = ( +/obj/effect/floor_decal/sign/small_a, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_chess) +"wa" = ( +/obj/effect/floor_decal/sign/small_3, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_chess) +"wf" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/holofloor/tiled{ + icon_state = "monotile" + }, +/area/holodeck/source_gym) +"wh" = ( +/obj/item/toy/chess/knight_black, +/turf/simulated/floor/holofloor/bmarble, +/area/holodeck/source_chess) +"wR" = ( +/obj/machinery/fitness/punching_bag/clown, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_gym) +"xp" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/unsimulated/wall, +/area/space) +"xt" = ( +/obj/machinery/fitness/heavy/lifter, +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_gym) +"xz" = ( +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet{ + dir = 5 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_game_room) +"za" = ( +/obj/structure/table/woodentable/holotable, +/obj/effect/landmark/costume/elpresidente, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_game_room) +"zA" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 5 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 10 + }, +/turf/simulated/floor/holofloor/tiled{ + icon_state = "white" + }, +/area/holodeck/source_patient_ward) +"zC" = ( +/obj/structure/bed/chair/holochair, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_game_room) +"Bm" = ( +/obj/item/toy/chess/bishop_black, +/turf/simulated/floor/holofloor/bmarble, +/area/holodeck/source_chess) +"BC" = ( +/obj/structure/bed/chair/holochair{ + dir = 8 + }, +/turf/simulated/floor/holofloor/tiled{ + icon_state = "white" + }, +/area/holodeck/source_patient_ward) +"BG" = ( +/obj/item/toy/chess/king_black, +/turf/simulated/floor/holofloor/wmarble, +/area/holodeck/source_chess) +"BP" = ( +/turf/simulated/floor/holofloor/tiled{ + icon_state = "white" + }, +/area/holodeck/source_patient_ward) +"BR" = ( +/obj/structure/table/woodentable/holotable, +/obj/item/weapon/dice/d100, +/obj/item/weapon/dice/d20, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_game_room) +"BU" = ( +/obj/structure/bed/chair/holochair{ + dir = 4 + }, +/turf/simulated/floor/holofloor/tiled{ + icon_state = "white" + }, +/area/holodeck/source_patient_ward) +"BV" = ( +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_gym) +"CF" = ( +/obj/structure/table/woodentable/holotable, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_game_room) +"CJ" = ( +/obj/item/toy/chess/pawn_white, +/turf/simulated/floor/holofloor/bmarble, +/area/holodeck/source_chess) +"CK" = ( +/turf/simulated/floor/holofloor/wmarble, +/area/holodeck/source_chess) +"Dh" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/holofloor/tiled{ + icon_state = "monotile" + }, +/area/holodeck/source_gym) +"Di" = ( +/obj/effect/floor_decal/sign/small_2, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_chess) +"DB" = ( +/obj/structure/table/woodentable/holotable, +/obj/effect/landmark/costume/cutewitch, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_game_room) +"DL" = ( +/obj/effect/floor_decal/sign/small_b, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_chess) +"El" = ( +/turf/space/transit/west, +/area/space) +"Eo" = ( +/obj/effect/floor_decal/sign/small_g, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_chess) +"Eq" = ( +/obj/item/weapon/bedsheet/medical, +/obj/structure/bed/padded, +/obj/structure/curtain/open/privacy, +/obj/effect/floor_decal/corner/paleblue{ + dir = 5 + }, +/turf/simulated/floor/holofloor/tiled{ + icon_state = "white" + }, +/area/holodeck/source_patient_ward) +"ED" = ( +/obj/structure/fitness/weightlifter, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_gym) +"EX" = ( +/obj/item/toy/chess/bishop_black, +/turf/simulated/floor/holofloor/wmarble, +/area/holodeck/source_chess) +"FX" = ( +/obj/structure/table/woodentable/holotable, +/obj/effect/landmark/costume/gladiator, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_game_room) +"Gg" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/turf/simulated/floor/holofloor/tiled{ + icon_state = "white" + }, +/area/holodeck/source_patient_ward) +"GE" = ( +/obj/structure/table/woodentable/holotable, +/obj/effect/landmark/costume/fakewizard, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_game_room) +"GW" = ( +/obj/item/toy/chess/king_white, +/turf/simulated/floor/holofloor/bmarble, +/area/holodeck/source_chess) +"Hk" = ( +/obj/effect/floor_decal/sign/small_7, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_chess) +"Hr" = ( +/obj/item/toy/chess/rook_black, +/turf/simulated/floor/holofloor/bmarble, +/area/holodeck/source_chess) +"HL" = ( +/obj/effect/floor_decal/sign/small_1, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_chess) +"Jc" = ( +/obj/item/toy/chess/bishop_white, +/turf/simulated/floor/holofloor/bmarble, +/area/holodeck/source_chess) +"JI" = ( +/obj/item/toy/chess/rook_white, +/turf/simulated/floor/holofloor/bmarble, +/area/holodeck/source_chess) +"JQ" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10 + }, +/turf/simulated/floor/holofloor/tiled{ + icon_state = "monotile" + }, +/area/holodeck/source_gym) +"Kn" = ( +/obj/effect/floor_decal/sign/small_d, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_chess) +"KQ" = ( +/obj/effect/floor_decal/sign/small_f, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_chess) +"KR" = ( +/obj/effect/floor_decal/corner/paleblue/full{ + dir = 4 + }, +/turf/simulated/floor/holofloor/tiled{ + icon_state = "white" + }, +/area/holodeck/source_patient_ward) +"Lt" = ( +/obj/item/weapon/bedsheet/medical, +/obj/structure/bed/padded, +/obj/structure/curtain/open/privacy, +/obj/effect/floor_decal/corner/paleblue/full{ + dir = 1 + }, +/turf/simulated/floor/holofloor/tiled{ + icon_state = "white" + }, +/area/holodeck/source_patient_ward) +"Me" = ( +/turf/simulated/floor/smole/desert, +/area/holodeck/source_smoleworld) +"Mi" = ( +/obj/item/toy/chess/bishop_white, +/turf/simulated/floor/holofloor/wmarble, +/area/holodeck/source_chess) +"ML" = ( +/obj/effect/step_trigger/thrower{ + affect_ghosts = 1; + name = "thrower_throwdown"; + nostop = 1; + stopper = 0; + tiles = 0 + }, +/turf/space/transit/west, +/area/space) +"MT" = ( +/obj/structure/fitness/punchingbag, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_gym) +"Nj" = ( +/obj/structure/table/woodentable/holotable, +/obj/item/weapon/dice, +/obj/item/weapon/dice/d4, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_game_room) +"NT" = ( +/obj/structure/table/holotable, +/obj/effect/floor_decal/corner/paleblue{ + dir = 5 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 10 + }, +/turf/simulated/floor/holofloor/tiled{ + icon_state = "white" + }, +/area/holodeck/source_patient_ward) +"Or" = ( +/obj/item/toy/chess/knight_white, +/turf/simulated/floor/holofloor/bmarble, +/area/holodeck/source_chess) +"OU" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/holofloor/tiled{ + icon_state = "monotile" + }, +/area/holodeck/source_gym) +"PL" = ( +/turf/space, +/turf/simulated/floor/holofloor/reinforced, +/area/space) +"PM" = ( +/turf/simulated/floor/smole/megablocks, +/area/holodeck/source_smoleworld) +"Qh" = ( +/obj/structure/bed/chair/holochair{ + dir = 1 + }, +/obj/effect/floor_decal/carpet, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_game_room) +"Qs" = ( +/obj/item/toy/chess/queen_black, +/turf/simulated/floor/holofloor/bmarble, +/area/holodeck/source_chess) +"RV" = ( +/turf/unsimulated/ai_visible, +/area/ai_multicam_room) +"Sj" = ( +/obj/structure/bed/chair/holochair{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_game_room) +"SJ" = ( +/obj/item/weapon/bedsheet/medical, +/obj/structure/bed/padded, +/obj/structure/curtain/open/privacy, +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/turf/simulated/floor/holofloor/tiled{ + icon_state = "white" + }, +/area/holodeck/source_patient_ward) +"TH" = ( +/obj/structure/table/holotable, +/obj/effect/floor_decal/corner/paleblue{ + dir = 10 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 5 + }, +/turf/simulated/floor/holofloor/tiled{ + icon_state = "white" + }, +/area/holodeck/source_patient_ward) +"TM" = ( +/obj/structure/table/woodentable/holotable, +/obj/effect/landmark/costume/chicken, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_game_room) +"Ug" = ( +/obj/effect/floor_decal/carpet{ + dir = 5 + }, +/obj/effect/floor_decal/carpet{ + dir = 6 + }, +/obj/effect/floor_decal/carpet{ + dir = 10 + }, +/obj/effect/floor_decal/carpet{ + dir = 9 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_basketball) +"Uq" = ( +/obj/effect/floor_decal/corner/paleblue/full, +/turf/simulated/floor/holofloor/tiled{ + icon_state = "white" + }, +/area/holodeck/source_patient_ward) +"UG" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/space/transit/east, +/area/space) +"Wf" = ( +/obj/item/toy/chess/queen_white, +/turf/simulated/floor/holofloor/wmarble, +/area/holodeck/source_chess) +"Wz" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 10 + }, +/turf/simulated/floor/holofloor/tiled{ + icon_state = "white" + }, +/area/holodeck/source_patient_ward) +"Xh" = ( +/obj/effect/floor_decal/carpet{ + dir = 5 + }, +/obj/effect/floor_decal/carpet{ + dir = 6 + }, +/obj/effect/floor_decal/carpet{ + dir = 9 + }, +/obj/effect/floor_decal/carpet{ + dir = 10 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_meetinghall) +"Xq" = ( +/obj/machinery/scale, +/turf/simulated/floor/holofloor/tiled/dark, +/area/holodeck/source_gym) +"XD" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 5 + }, +/turf/simulated/floor/holofloor/tiled{ + icon_state = "white" + }, +/area/holodeck/source_patient_ward) +"XG" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/space/transit/west, +/area/space) +"Yn" = ( +/turf/simulated/floor/holofloor/tiled{ + icon_state = "monotile" + }, +/area/holodeck/source_gym) +"Yx" = ( +/obj/effect/step_trigger/thrower{ + affect_ghosts = 1; + name = "thrower_throwdown"; + nostop = 1; + stopper = 0; + tiles = 0 + }, +/turf/space/transit/north, +/area/space) +"Yz" = ( +/obj/structure/bed/chair/holochair{ + dir = 4 + }, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/turf/simulated/floor/holofloor/carpet, +/area/holodeck/source_game_room) +"YX" = ( +/obj/effect/floor_decal/sign/small_e, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_chess) +"YZ" = ( +/obj/effect/step_trigger/thrower{ + affect_ghosts = 1; + name = "thrower_leftnostop" + }, +/turf/space/transit/east, +/area/space) +"Zb" = ( +/turf/space/transit/east, +/area/space) +"ZC" = ( +/obj/effect/step_trigger/teleporter/random{ + affect_ghosts = 1; + name = "escapeshuttle_leave"; + teleport_x = 25; + teleport_x_offset = 245; + teleport_y = 25; + teleport_y_offset = 245; + teleport_z = 4; + teleport_z_offset = 4 + }, +/turf/space/transit/north, +/area/space) +"ZF" = ( +/turf/space/transit/north, +/area/space) +"ZQ" = ( +/obj/effect/floor_decal/sign/small_c, +/turf/simulated/floor/holofloor/wood, +/area/holodeck/source_chess) + +(1,1,1) = {" +tD +tD +tD +tD +tD +tD +tD +tD +tD +tD +tD +tD +tD +tD +tD +tD +tD +tD +tD +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +"} +(2,1,1) = {" +tD +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +tD +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +ap +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ap +"} +(3,1,1) = {" +tD +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +tD +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +ap +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ap +"} +(4,1,1) = {" +tD +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +tD +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +ap +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ap +"} +(5,1,1) = {" +tD +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +tD +aa +aa +aa +aa +aa +ae +af +ae +af +af +af +af +af +af +ae +af +af +ae +aa +aa +aa +aa +aa +eP +eR +eP +eR +eR +eR +eR +eR +eR +eP +eR +eR +eP +aa +aa +aa +aa +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +ap +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ap +"} +(6,1,1) = {" +tD +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +tD +aa +aa +aa +aa +aa +af +bn +ae +cn +cI +cN +df +dp +dp +ae +co +eu +af +aa +aa +aa +aa +aa +eR +fk +eP +gB +gP +gS +hb +hh +hh +eP +gC +ht +eR +aa +aa +aa +aa +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +ap +ZF +ZF +ZF +ZF +ZF +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZF +ZF +ZF +ZF +ZF +ap +"} +(7,1,1) = {" +tD +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +tD +aa +aa +aa +aa +aa +af +by +cj +co +by +cO +by +by +co +cj +co +ev +af +aa +aa +aa +aa +aa +eR +fw +gx +gC +fw +gT +fw +fw +gC +gx +gC +hu +eR +aa +aa +aa +aa +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +ap +ZF +ZF +ZF +ZF +ZF +ZC +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZC +ZF +ZF +ZF +ZF +ZF +ap +"} +(8,1,1) = {" +tD +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +tD +aa +aa +aa +aa +aa +af +bz +ae +cp +by +by +by +by +dL +ae +co +ew +af +aa +aa +aa +aa +aa +eR +fx +eP +gD +fw +fw +fw +fw +hn +eP +gC +hv +eR +aa +aa +aa +aa +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +ap +ZF +ZF +ZF +ZF +ZF +ZC +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZC +ZF +ZF +ZF +ZF +ZF +ap +"} +(9,1,1) = {" +tD +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +tD +aa +aa +aa +aa +aa +af +bN +af +cq +co +cV +dg +dy +dT +af +co +ex +af +aa +aa +aa +aa +aa +eR +fy +eR +gE +gC +gU +hc +hi +ho +eR +gC +hw +eR +aa +aa +aa +aa +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +ap +ZF +ZF +ZF +ZF +ZF +ZC +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZC +ZF +ZF +ZF +ZF +ZF +ap +"} +(10,1,1) = {" +tD +RV +RV +RV +RV +RV +RV +RV +RV +lf +RV +RV +RV +RV +RV +RV +RV +RV +tD +aa +aa +aa +aa +aa +ae +af +ae +af +af +af +af +af +af +ae +af +af +ae +aa +aa +aa +aa +aa +eP +eR +eP +eR +eR +eR +eR +eR +eR +eP +eR +eR +eP +aa +aa +aa +aa +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +YZ +YZ +YZ +YZ +YZ +YZ +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +ap +ZF +ZF +ZF +ZF +ZF +ZC +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZC +ZF +ZF +ZF +ZF +ZF +ap +"} +(11,1,1) = {" +tD +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +tD +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +YZ +Zb +Zb +Zb +Zb +YZ +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +ap +ZF +ZF +ZF +ZF +ZF +ZC +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZC +ZF +ZF +ZF +ZF +ZF +ap +"} +(12,1,1) = {" +tD +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +tD +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +YZ +Zb +UG +Zb +Zb +YZ +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +ap +ZF +ZF +ZF +ZF +ZF +ZC +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZC +ZF +ZF +ZF +ZF +ZF +ap +"} +(13,1,1) = {" +tD +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +tD +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +YZ +Zb +Zb +Zb +Zb +YZ +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +ap +ZF +ZF +ZF +ZF +ZF +ZC +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZC +ZF +ZF +ZF +ZF +ZF +ap +"} +(14,1,1) = {" +tD +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +tD +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +YZ +Zb +Zb +Zb +Zb +YZ +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +ap +ZF +ZF +ZF +ZF +ZF +ZC +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZC +ZF +ZF +ZF +ZF +ZF +ap +"} +(15,1,1) = {" +tD +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +tD +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +YZ +Zb +Zb +Zb +Zb +YZ +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +ap +ZF +ZF +ZF +ZF +ZF +ZC +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZC +ZF +ZF +ZF +ZF +ZF +ap +"} +(16,1,1) = {" +tD +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +tD +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +YZ +Zb +lP +Zb +Zb +YZ +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +ap +ZF +ZF +ZF +ZF +ZF +ZC +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZC +ZF +ZF +ZF +ZF +ZF +ap +"} +(17,1,1) = {" +tD +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +tD +aa +aa +aa +aa +aa +ai +aj +ai +aj +aj +aj +aj +aj +aj +ai +aj +aj +ai +aa +aa +aa +aa +aa +eS +fg +eS +fg +fg +fg +fg +fg +fg +eS +fg +fg +eS +aa +aa +aa +aa +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +YZ +YZ +YZ +YZ +YZ +YZ +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +ap +ZF +ZF +ZF +ZF +ZF +ZC +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZC +ZF +ZF +ZF +ZF +ZF +ap +"} +(18,1,1) = {" +tD +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +RV +tD +aa +aa +aa +aa +aa +aj +bO +ai +cr +cJ +cW +dh +dz +dz +ai +cs +ey +aj +aa +aa +aa +aa +aa +fg +fD +eS +gF +gQ +gV +hd +hj +hj +eS +gG +hx +fg +aa +aa +aa +aa +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +ap +ZF +ZF +ZF +ZF +ZF +ZC +ZF +ZF +ZF +un +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZC +ZF +ZF +ZF +ZF +ZF +ap +"} +(19,1,1) = {" +tD +tD +tD +tD +tD +tD +tD +tD +tD +tD +tD +tD +tD +tD +tD +tD +tD +tD +tD +aa +aa +aa +aa +aa +aj +bQ +ck +cs +bQ +cX +bQ +bQ +cs +ck +cs +ez +aj +aa +aa +aa +aa +aa +fg +fE +gz +gG +fE +gW +fE +fE +gG +gz +gG +hy +fg +aa +aa +aa +aa +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +ap +ZF +ZF +ZF +ZF +ZF +ZC +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZC +ZF +ZF +ZF +ZF +ZF +ap +"} +(20,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aj +bR +ai +cC +bQ +bQ +bQ +bQ +dZ +ai +cs +eA +aj +aa +aa +aa +aa +aa +fg +fF +eS +gH +fE +fE +fE +fE +hp +eS +gG +hz +fg +aa +aa +aa +aa +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +ap +ZF +ZF +ZF +ZF +ZF +ZC +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZC +ZF +ZF +ZF +ZF +ZF +ap +"} +(21,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aj +bT +aj +cD +cs +cY +di +dC +ea +aj +cs +eB +aj +aa +aa +aa +aa +aa +fg +fI +fg +gI +gG +gX +he +hk +hq +fg +gG +hA +fg +aa +aa +aa +aa +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +ap +ZF +ZF +ZF +ZF +ZF +ZC +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZC +ZF +ZF +ZF +ZF +ZF +ap +"} +(22,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ai +aj +ai +aj +aj +aj +aj +aj +aj +ai +aj +aj +ai +aa +aa +aa +aa +aa +eS +fg +eS +fg +fg +fg +fg +fg +fg +eS +fg +fg +eS +aa +aa +aa +aa +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +ap +ZF +ZF +ZF +ZF +ZF +ZC +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZC +ZF +ZF +ZF +ZF +ZF +ap +"} +(23,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +ap +ZF +ZF +ZF +ZF +ZF +ZC +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZC +ZF +ZF +ZF +ZF +ZF +ap +"} +(24,1,1) = {" +ul +ul +ul +ul +ul +ul +ul +ul +ul +ul +ul +ul +ul +ul +ul +ul +ul +ul +ul +ul +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +ap +ZF +ZF +ZF +ZF +ZF +ZC +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZC +ZF +ZF +ZF +ZF +ZF +ap +"} +(25,1,1) = {" +ul +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +gu +gN +gN +ul +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +ap +ZF +ZF +ZF +ZF +ZF +ZC +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZC +ZF +ZF +ZF +ZF +ZF +ap +"} +(26,1,1) = {" +ul +ga +gc +gf +gc +gc +gc +gc +gc +gc +gc +gc +gc +gc +gc +gt +gy +gO +gN +ul +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +Zb +ap +ZF +ZF +ZF +ZF +ZF +ZC +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZC +ZF +ZF +ZF +ZF +ZF +ap +"} +(27,1,1) = {" +ul +ga +gc +gc +gc +gc +gc +gc +gc +gc +gc +gc +gc +gc +gc +gt +gy +gO +gN +ul +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ZF +ZF +ZF +ZF +ZF +ZC +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZC +ZF +ZF +ZF +ZF +ZF +ap +"} +(28,1,1) = {" +ul +ga +gd +gc +gc +gc +gc +gc +gc +gc +gc +gh +gi +gc +gc +gt +gy +gO +gN +ul +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +ap +ZF +ZF +ZF +ZF +ZF +ZC +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZC +ZF +ZF +ZF +ZF +ZF +ap +"} +(29,1,1) = {" +ul +ga +gc +gc +gc +gc +gc +gc +gc +gc +gc +gc +gh +gc +gs +gt +gy +gO +gN +ul +aa +aa +aa +aa +aq +bc +aq +bc +bc +bc +bc +bc +bc +aq +bc +bc +aq +aa +aa +aa +aa +aa +fi +fj +fi +fj +fj +fj +fj +fj +fj +fi +fj +fj +fi +aa +aa +aa +aa +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +ap +ZF +ZF +ZF +ZF +ZF +ZC +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZC +ZF +ZF +ZF +ZF +ZF +ap +"} +(30,1,1) = {" +ul +ga +gc +gc +gc +gc +gi +gc +gj +gj +gc +gc +gc +gc +gc +gt +gy +gO +gN +ul +aa +aa +aa +aa +bc +ce +aq +cE +cK +cZ +dn +dD +dD +aq +cF +eC +bc +aa +aa +aa +aa +aa +fj +fL +fi +gJ +gR +gY +hf +hl +hl +fi +gK +hB +fj +aa +aa +aa +aa +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +ap +ZF +ZF +ZF +ZF +ZF +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZF +ZF +ZF +ZF +ZF +ap +"} +(31,1,1) = {" +ul +ga +gc +gc +gc +gc +gh +gj +gk +gm +gj +gc +gc +gc +gc +gt +gy +gO +gN +ul +aa +aa +aa +aa +bc +cf +cl +cF +cf +db +cf +cf +cF +cl +cF +eE +bc +aa +aa +aa +aa +aa +fj +fM +gA +gK +fM +gZ +fM +fM +gK +gA +gK +hD +fj +aa +aa +aa +aa +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +ap +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ap +"} +(32,1,1) = {" +ul +ga +ge +gc +gc +gc +gc +gj +gl +gn +gj +gc +gc +gc +gc +gt +gy +gO +gN +ul +aa +aa +aa +aa +bc +cg +aq +cG +cf +cf +cf +cf +eb +aq +cF +eF +bc +aa +aa +aa +aa +aa +fj +gv +fi +gL +fM +fM +fM +fM +hr +fi +gK +hE +fj +aa +aa +aa +aa +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +ap +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ap +"} +(33,1,1) = {" +ul +ga +ge +gc +gc +gc +gc +gc +gj +gj +gc +gc +gc +gp +gc +gt +gy +gO +gN +ul +aa +aa +aa +aa +bc +ch +bc +cH +cF +dc +do +dE +er +bc +cF +eN +bc +aa +aa +aa +aa +aa +fj +gw +fj +gM +gK +ha +hg +hm +hs +fj +gK +hF +fj +aa +aa +aa +aa +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +ap +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ap +"} +(34,1,1) = {" +ul +ga +ge +gc +gc +gc +gc +gc +gc +gc +gc +gc +gc +gc +gc +gt +gy +gO +gN +ul +aa +aa +aa +aa +aq +bc +aq +bc +bc +bc +bc +bc +bc +aq +bc +bc +aq +aa +aa +aa +aa +aa +fi +fj +fi +fj +fj +fj +fj +fj +fj +fi +fj +fj +fi +aa +aa +aa +aa +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +ap +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ap +"} +(35,1,1) = {" +ul +ga +gc +gc +gc +gc +gc +gc +gc +gc +gc +gc +gc +gq +gc +gt +gy +gO +gN +ul +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +"} +(36,1,1) = {" +ul +ga +gc +gc +gc +gc +gc +gc +gc +gi +gc +gc +gc +gc +gc +gt +gy +gO +gN +ul +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +El +El +El +El +El +El +El +El +El +fh +fh +fh +fh +fh +fh +El +El +El +El +El +El +El +El +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +"} +(37,1,1) = {" +ul +ga +ge +gc +gc +gc +gc +gc +gc +gc +gc +gc +gc +gq +gc +gt +gy +gO +gN +ul +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +El +El +El +El +El +El +El +El +El +fh +El +iv +El +El +fh +El +El +El +El +El +El +El +El +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +"} +(38,1,1) = {" +ul +ga +ge +gc +gc +gc +gc +gc +gc +go +gc +gc +gc +gc +gc +gt +gy +gO +gN +ul +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +El +El +El +El +El +El +El +El +El +fh +El +XG +El +El +fh +El +El +El +El +El +El +El +El +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +"} +(39,1,1) = {" +ul +ga +ge +gc +gh +gf +gc +gc +gc +gc +gc +gc +gc +gr +gc +gt +gy +gO +gN +ul +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +El +El +El +El +El +El +El +El +El +fh +El +El +El +El +fh +El +El +El +El +El +El +El +El +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +"} +(40,1,1) = {" +ul +ga +gc +gc +gc +gc +gc +gc +gc +gc +gc +gc +gc +gc +gc +gt +gy +gO +gN +ul +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +El +El +El +El +El +El +El +El +El +fh +El +El +El +El +fh +El +El +El +El +El +El +El +El +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +"} +(41,1,1) = {" +ul +ga +gc +gc +gc +gc +gc +gc +gc +gc +gc +gc +gc +gc +gc +gt +gy +gO +gN +ul +aa +aa +aa +aa +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +El +El +El +El +El +El +El +El +El +fh +El +El +El +El +fh +El +El +El +El +El +El +El +El +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +"} +(42,1,1) = {" +ul +ga +gc +gc +gc +gc +gc +gc +gc +gc +gc +gf +gh +gc +gc +gt +gy +gO +gN +ul +aa +aa +aa +aa +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +El +El +El +El +El +El +El +El +El +fh +El +El +El +El +fh +El +El +El +El +El +El +El +El +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +"} +(43,1,1) = {" +ul +ga +gc +gc +gc +gc +gc +gc +gc +gc +gc +gc +gc +gc +gc +gt +gy +gO +gN +ul +aa +aa +aa +aa +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +El +El +El +El +El +El +El +El +El +fh +fh +fh +fh +fh +fh +El +El +El +El +El +El +El +El +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +"} +(44,1,1) = {" +ul +ga +gc +gg +gc +gc +gc +gc +gc +gc +gc +gc +gc +gc +gc +gt +gy +gO +gN +ul +aa +aa +aa +aa +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +"} +(45,1,1) = {" +ul +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +gu +gN +gN +ul +aa +aa +aa +aa +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +"} +(46,1,1) = {" +ul +ul +ul +ul +ul +ul +ul +ul +ul +ul +ul +ul +ul +ul +ul +ul +ul +ul +ul +ul +aa +aa +aa +aa +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +"} +(47,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +"} +(48,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +"} +(49,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +"} +(50,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +"} +(51,1,1) = {" +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +"} +(52,1,1) = {" +ar +aI +aI +aI +aI +aI +aI +aI +aI +aI +aI +ar +aI +aI +aI +aI +aI +aI +aI +aI +aI +aI +ar +aI +aI +aI +aI +aI +aI +aI +aI +aI +aI +ar +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +"} +(53,1,1) = {" +as +nW +pf +Hk +qV +kw +eD +wa +Di +HL +nW +dB +Me +Me +Me +Me +Me +Me +Me +Me +Me +Me +dB +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +xp +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +"} +(54,1,1) = {" +as +nW +nV +ru +CK +pT +CK +pT +cm +JI +vW +dB +Me +Me +Me +Me +Me +Me +Me +Me +Me +Me +dB +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +xp +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +"} +(55,1,1) = {" +as +nW +wh +oT +pT +CK +pT +CK +CJ +sb +DL +dB +Me +Me +PM +PM +PM +PM +PM +PM +Me +Me +dB +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +xp +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +"} +(56,1,1) = {" +as +nW +EX +ru +CK +pT +CK +pT +cm +Jc +ZQ +dB +Me +Me +PM +PM +PM +PM +PM +PM +Me +Me +dB +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +xp +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +"} +(57,1,1) = {" +as +nW +Qs +oT +pT +CK +pT +CK +CJ +Wf +Kn +dB +Me +Me +PM +PM +PM +PM +PM +PM +Me +Me +dB +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +xp +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +"} +(58,1,1) = {" +as +nW +BG +ru +CK +pT +CK +pT +cm +GW +YX +dB +Me +Me +PM +PM +PM +PM +PM +PM +Me +Me +dB +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +xp +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +"} +(59,1,1) = {" +as +nW +Bm +oT +pT +CK +pT +CK +CJ +Mi +KQ +dB +Me +Me +PM +PM +PM +PM +PM +PM +Me +Me +dB +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +xp +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +"} +(60,1,1) = {" +as +nW +uM +ru +CK +pT +CK +pT +cm +Or +Eo +dB +Me +Me +PM +PM +PM +PM +PM +PM +Me +Me +dB +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +xp +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +"} +(61,1,1) = {" +as +nW +Hr +oT +pT +CK +pT +CK +CJ +nj +qv +dB +Me +Me +Me +Me +Me +Me +Me +Me +Me +Me +dB +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +xp +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +"} +(62,1,1) = {" +as +nW +nW +nW +nW +nW +nW +nW +nW +nW +nW +dB +Me +Me +Me +Me +Me +Me +Me +Me +Me +Me +dB +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +xp +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +"} +(63,1,1) = {" +ar +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +ar +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +ar +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +ar +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +"} +(64,1,1) = {" +as +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aK +dA +dF +dF +dF +dF +dF +dF +dF +dF +dF +dF +dB +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +xp +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +"} +(65,1,1) = {" +as +aJ +aJ +bd +aJ +aJ +aJ +aJ +aJ +aJ +aJ +dA +dF +dF +dF +ec +dF +dF +dF +dF +ec +dF +dB +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +xp +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +"} +(66,1,1) = {" +as +aJ +aJ +aJ +aJ +aK +aJ +aJ +bd +aJ +aJ +dA +dF +dF +dF +dF +dF +dF +dF +dF +dF +dF +dB +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +xp +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +"} +(67,1,1) = {" +as +aK +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +dA +dF +ec +dF +dF +dF +dF +ec +dF +dF +dF +dB +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +xp +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +"} +(68,1,1) = {" +as +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +bd +dA +dF +dF +dF +dF +dF +dF +dF +dF +dF +dF +dB +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +xp +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +"} +(69,1,1) = {" +as +aJ +aJ +aJ +aK +aJ +aJ +bd +aJ +aJ +aJ +dA +dF +dF +dF +dF +dF +dF +dF +dF +dF +dF +dB +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +xp +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +"} +(70,1,1) = {" +as +aJ +aJ +aJ +aJ +aK +aJ +aJ +aJ +aJ +aJ +dA +dF +dF +dF +ec +dF +dF +dF +dF +ec +dF +dB +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +xp +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +"} +(71,1,1) = {" +as +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +dA +dF +dF +dF +dF +dF +dF +dF +dF +dF +dF +dB +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +xp +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +"} +(72,1,1) = {" +as +aJ +bd +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +dA +dF +ec +dF +dF +dF +dF +ec +dF +dF +dF +dB +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +xp +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +"} +(73,1,1) = {" +as +aJ +aJ +aJ +aJ +aJ +aJ +aK +aJ +aJ +bd +dA +dF +dF +dF +dF +dF +dF +dF +dF +dF +dF +dB +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +xp +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +"} +(74,1,1) = {" +ar +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +ar +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +ar +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +ar +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +"} +(75,1,1) = {" +as +aM +be +bf +be +be +be +be +bf +be +aM +dA +dG +dG +dG +dG +dG +dG +dG +fG +dG +dG +dB +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +xp +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +"} +(76,1,1) = {" +as +aN +bf +be +bf +bf +bf +bf +be +bf +aN +dA +dG +ed +dG +dG +dG +dG +dG +dG +eT +dG +dB +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +xp +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +eI +eI +eI +eI +eI +eI +eI +eO +eO +eO +eO +eO +eO +eO +eO +eO +eO +eO +eI +eI +eI +eI +eI +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +"} +(77,1,1) = {" +as +aM +be +bo +bU +bU +bU +bU +da +be +aM +dA +dG +dG +dG +eJ +dG +dG +dG +dG +dG +dG +dB +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +xp +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +eI +eI +eI +eI +eI +eI +eI +eO +eI +eI +eI +eI +eI +eI +eI +eI +eI +eO +eO +eI +eI +eI +eI +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +"} +(78,1,1) = {" +as +aN +bf +bp +bB +bB +bB +bB +cP +bf +aN +dA +dG +dG +dG +dG +eT +dG +dG +dG +eJ +dG +dB +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +xp +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +eI +eI +eI +eI +eI +eI +eI +eO +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eO +eI +eI +eI +eI +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +"} +(79,1,1) = {" +as +aM +be +bq +an +bS +bS +bP +cQ +be +aM +dA +dG +dG +dG +ep +dG +dG +ed +dG +dG +fG +dB +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +xp +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +eI +eI +eI +eI +eI +eI +eI +eO +eI +eI +eI +eI +eI +eI +eI +eI +eI +gb +eO +eI +eI +eI +eI +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +"} +(80,1,1) = {" +as +aM +bf +bp +an +bS +bS +bP +cP +bf +aM +dA +dG +dG +dG +dG +dG +dG +dG +fG +dG +dG +dB +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +xp +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +hH +hH +hH +ap +eI +eI +eI +eI +eI +eI +eI +eO +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eO +eI +eI +eI +eI +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +"} +(81,1,1) = {" +as +aN +be +bq +bB +bB +bB +bB +at +eU +aN +dA +dG +ed +dG +dG +dG +dG +eJ +dG +eT +dG +dB +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +xp +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ZC +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +eG +eG +hH +ap +eI +eI +eI +eI +eI +eI +eI +eO +eI +eI +eI +eI +eI +eI +eI +eI +eI +eO +eO +eI +eI +eI +eI +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +"} +(82,1,1) = {" +as +aM +bf +ag +ax +ao +aA +bB +bB +cQ +aM +dA +dG +dG +dG +dG +dG +dG +dG +dG +dG +dG +dB +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +xp +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ZC +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +eG +eG +hH +ap +eI +eI +eI +eI +eI +eI +eI +eO +eO +eO +eO +eO +eO +eO +eO +eO +eO +eO +eI +eI +eI +eI +eI +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +"} +(83,1,1) = {" +as +aN +be +bf +be +bf +aB +aA +bB +cQ +aN +dA +dG +dG +ep +dG +eT +dG +dG +dG +eJ +dG +dB +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +xp +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ZC +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +eG +eG +hH +ap +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +"} +(84,1,1) = {" +as +aM +bf +be +bf +be +be +bq +bB +cP +aM +dA +dG +dG +dG +dG +dG +dG +ed +dG +dG +fG +dB +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +xp +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ZC +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +eG +eG +hH +ap +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +"} +(85,1,1) = {" +ar +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +ar +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +ar +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +ar +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ZC +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +eG +eG +hH +ap +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +"} +(86,1,1) = {" +as +aO +bg +bg +bG +bV +bV +bV +bV +bV +dq +dA +dI +dH +dH +eL +eL +eL +eL +eL +eL +eL +dB +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +xp +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ZC +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +eG +eG +hH +ap +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +"} +(87,1,1) = {" +as +aP +bg +bg +bG +bV +bV +bV +bV +bV +bV +dA +dH +dH +dH +eK +eK +eK +eK +eK +eK +eK +dB +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +xp +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ZC +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +Yx +Yx +Yx +Yx +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +eG +eG +hH +ap +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +"} +(88,1,1) = {" +as +aP +bg +bg +bG +bW +ct +ct +ct +dj +bV +dA +dH +dH +dH +eK +eV +fn +fn +fn +fO +eK +dB +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +xp +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ZC +ZF +ZF +ZF +ZF +ZF +ZF +ZF +Yx +Yx +Yx +Yx +Yx +hG +hG +hG +hG +hG +hG +eG +eG +hG +hG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +hH +ap +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +"} +(89,1,1) = {" +as +aP +bg +bg +bG +bX +cu +cu +cu +dk +bV +dA +dH +ee +eq +eK +eW +fo +fo +fo +fP +eK +dB +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +xp +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ZC +ZF +ZF +ZF +ZF +ZF +ZF +ZF +Yx +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +Yx +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZC +ap +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +"} +(90,1,1) = {" +as +aP +bg +bg +bG +bX +cu +cu +cu +dk +bV +dA +dH +ef +eq +eK +eW +fo +fo +fo +fP +eK +dB +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +xp +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ZC +ZF +ZF +ZF +ZF +ZF +ZF +ZF +Yx +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +Yx +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZC +ap +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +"} +(91,1,1) = {" +as +aP +bg +bg +bG +bX +cu +cu +cu +dk +bV +dA +dH +ef +eq +eK +eW +fo +fo +fo +fP +eK +dB +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +xp +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ZC +ZF +ZF +ZF +ZF +ZF +ZF +ZF +Yx +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +Yx +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZC +ap +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +"} +(92,1,1) = {" +as +aP +bg +bg +bG +bX +cu +cu +cu +dk +bV +dA +dH +ef +eq +eK +eW +fo +fo +fo +fP +eK +dB +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +xp +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ZC +ZF +ZF +ZF +ZF +ZF +ZF +ZF +Yx +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +Yx +Yx +Yx +Yx +Yx +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZC +ap +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +eI +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +"} +(93,1,1) = {" +as +aP +bg +bg +bG +bY +cv +cd +cd +dl +bV +dA +dH +eg +eq +eK +eW +fo +fo +fo +fP +eK +dB +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +xp +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ZC +ZF +ZF +ZF +ZF +ZF +ZF +ZF +Yx +Yx +Yx +Yx +Yx +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +Yx +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZC +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +"} +(94,1,1) = {" +as +aP +bg +bg +bG +bV +bV +bV +bV +bV +bV +dA +dH +dH +dH +eK +eX +fp +fp +fH +fQ +eK +dB +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +xp +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ZC +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +Yx +Yx +Yx +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +Yx +Yx +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZC +ap +iO +iO +iO +iO +iO +iO +iO +iO +iO +iO +iO +iO +iO +iO +iO +iO +iO +iO +iO +iO +iO +iO +iO +iO +iO +iO +iO +iO +iO +iO +iO +iO +iO +iO +iO +iO +"} +(95,1,1) = {" +as +aP +bg +bg +bH +bZ +bZ +dr +dm +bH +dr +dA +dH +dH +dH +eK +eK +eK +eK +Xh +Xh +eK +dB +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +xp +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ZC +ZF +ZF +ZF +ZF +ZF +ZF +ZF +Yx +Yx +Yx +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +Yx +Yx +ZF +ZF +ZF +ZF +ZF +ZF +ZC +ap +iO +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +iO +"} +(96,1,1) = {" +ar +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +ar +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +ar +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +ar +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ZC +ZF +ZF +ZF +ZF +ZF +ZF +ZF +Yx +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +Yx +ZF +ZF +ZF +ZF +ZF +ZF +ZC +ap +iO +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +iO +"} +(97,1,1) = {" +as +aS +bi +ah +au +ay +ay +ay +ay +aE +aS +dB +dM +eh +eh +eh +eY +fq +fz +fz +fz +fS +dB +fZ +fZ +fZ +fZ +PL +fZ +fZ +fZ +PL +fZ +xp +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ZC +ZF +ZF +ZF +ZF +ZF +ZF +ZF +Yx +Yx +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +Yx +ZF +ZF +ZF +ZF +ZF +ZF +ZC +ap +iO +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +iO +"} +(98,1,1) = {" +as +aS +bi +bv +av +az +az +az +az +aF +aS +dB +dN +ei +ei +Ug +eZ +fr +ei +ei +ei +fJ +dB +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +xp +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ZC +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +Yx +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +Yx +ZF +ZF +ZF +ZF +ZF +ZF +ZC +ap +iO +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +iO +"} +(99,1,1) = {" +as +aS +bi +ak +aw +aw +aw +aw +aw +aw +aw +dB +dM +eh +dN +ei +eZ +fr +ei +fJ +fz +fS +dB +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +xp +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ZC +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +Yx +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +Yx +ZF +ZF +ZF +ZF +ZF +ZF +ZC +ap +iO +El +El +El +El +El +El +El +El +El +El +El +El +El +El +ML +ML +ML +ML +ML +ML +El +El +El +El +El +El +El +El +El +El +El +El +El +El +iO +"} +(100,1,1) = {" +as +aS +bi +bi +bI +ca +cw +cS +dd +cS +ds +dB +dO +ei +dN +ei +fa +fr +ei +fJ +ei +fT +dB +fZ +fZ +fZ +fZ +PL +fZ +fZ +fZ +PL +fZ +xp +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ZC +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +Yx +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +Yx +ZF +ZF +ZF +ZF +ZF +ZF +ZC +ap +iO +El +El +El +El +El +El +El +El +El +El +El +El +El +ML +ML +El +El +El +El +ML +ML +El +El +El +El +El +El +El +El +El +El +El +El +El +iO +"} +(101,1,1) = {" +as +aS +bi +aS +bJ +cb +cx +cT +cy +cT +dt +dB +dP +ej +dN +ei +eZ +fr +ei +fJ +fA +fU +dB +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +xp +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ZC +ZF +ZF +ZF +ZF +ZF +ZF +ZF +Yx +Yx +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +Yx +ZF +ZF +ZF +ZF +ZF +ZF +ZC +ap +iO +El +El +El +El +El +El +El +El +El +El +El +El +El +ML +El +El +El +El +El +El +ML +El +El +El +El +El +El +El +El +El +El +El +El +El +iO +"} +(102,1,1) = {" +as +aS +bi +bt +bK +cb +cy +cy +cy +cT +dt +dB +dN +ei +ei +ei +eZ +fr +ei +ei +ei +fJ +dB +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +xp +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ZC +ZF +ZF +ZF +ZF +ZF +ZF +ZF +Yx +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +Yx +ZF +ZF +ZF +ZF +ZF +ZF +ZC +ap +iO +El +El +El +El +El +El +El +El +El +El +El +El +El +ML +El +El +El +El +El +El +ML +El +El +El +El +El +El +El +El +El +El +El +El +El +iO +"} +(103,1,1) = {" +as +aS +bi +aS +bL +cb +cx +cT +cy +cT +dt +dB +dP +ej +ej +ej +fb +fs +fA +fA +fA +fU +dB +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +xp +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ZC +ZF +ZF +ZF +ZF +ZF +ZF +ZF +Yx +Yx +Yx +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +Yx +Yx +ZF +ZF +ZF +ZF +ZF +ZF +ZC +ap +iO +El +El +El +El +El +El +El +El +El +El +El +El +El +ML +El +El +El +El +El +El +ML +El +El +El +El +El +El +El +El +El +El +El +El +El +iO +"} +(104,1,1) = {" +as +aS +bi +bi +bM +cc +cz +cU +de +cU +du +dB +aG +aG +aR +aG +aG +aG +aG +bh +aG +aG +dB +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +xp +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ZC +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +Yx +Yx +Yx +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +Yx +Yx +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZC +ap +iO +El +El +El +El +El +El +El +El +El +El +El +El +El +ML +El +El +El +El +El +El +ML +El +El +El +El +El +El +El +El +El +El +El +El +El +iO +"} +(105,1,1) = {" +as +ab +ad +al +al +al +al +al +aC +al +ab +dB +dK +dK +dJ +dK +dK +dK +dK +dJ +dK +dK +dB +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +xp +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ZC +ZF +ZF +ZF +ZF +ZF +ZF +ZF +Yx +Yx +Yx +Yx +Yx +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +Yx +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZC +ap +iO +El +El +El +El +El +El +El +El +ML +ML +ML +ML +ML +ML +El +El +El +El +El +El +ML +ML +ML +ML +ML +ML +El +El +El +El +El +El +El +El +iO +"} +(106,1,1) = {" +as +aQ +aQ +aQ +aQ +aQ +aQ +aQ +aQ +aQ +aQ +dB +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dJ +dB +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +xp +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ZC +ZF +ZF +ZF +ZF +ZF +ZF +ZF +Yx +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +Yx +Yx +Yx +Yx +Yx +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZC +ap +iO +El +El +El +El +El +El +El +ML +ML +El +El +El +El +ML +El +El +El +El +El +El +ML +El +El +El +El +ML +ML +El +El +El +El +El +El +El +iO +"} +(107,1,1) = {" +ar +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +ar +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +ar +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +ar +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ZC +ZF +ZF +ZF +ZF +ZF +ZF +ZF +Yx +ZF +cR +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +Yx +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZC +ap +iO +El +El +El +El +El +El +El +ML +El +El +El +El +El +ML +El +El +El +El +El +El +ML +El +El +El +El +El +ML +El +El +El +El +El +El +El +iO +"} +(108,1,1) = {" +as +aT +aT +aT +aT +aT +aT +aT +aT +aT +aT +dB +dQ +dQ +dQ +dQ +dQ +dQ +dQ +fK +fR +fR +dB +tR +hC +SJ +hC +SJ +hC +hC +hC +hC +Uq +xp +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ZC +ZF +ZF +ZF +ZF +ZF +ZF +ZF +Yx +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +Yx +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZC +ap +iO +El +El +El +El +El +El +El +ML +El +El +El +El +El +ML +El +El +El +El +El +El +ML +El +El +El +El +El +ML +El +El +El +El +El +El +El +iO +"} +(109,1,1) = {" +as +aT +bj +aT +aT +aT +aT +aT +aT +bj +aT +dB +dQ +dQ +dQ +dQ +dQ +dQ +dQ +fK +fR +fR +dB +XD +BP +BP +BP +BP +BP +BP +BP +BP +Wz +xp +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ZC +ZF +ZF +ZF +ZF +ZF +ZF +ZF +Yx +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +Yx +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZC +ap +iO +El +El +El +El +El +El +El +ML +El +El +El +El +El +ML +El +El +El +El +El +El +ML +El +El +El +El +El +ML +El +El +El +El +El +El +El +iO +"} +(110,1,1) = {" +as +aT +aT +aT +aT +aT +aT +aT +aT +aT +aT +dB +dQ +ek +dQ +dQ +dQ +dQ +dQ +fK +fR +fR +dB +Eq +BP +fm +BP +fm +BP +BP +NT +BP +Wz +xp +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ZC +ZF +ZF +ZF +ZF +ZF +ZF +ZF +Yx +Yx +Yx +Yx +Yx +Yx +Yx +Yx +Yx +Yx +Yx +ZF +ZF +Yx +Yx +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZC +ap +iO +El +El +El +El +El +El +El +ML +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +ML +El +El +El +El +El +El +El +iO +"} +(111,1,1) = {" +as +aT +aT +aT +bj +aT +aT +bj +aT +aT +aT +dB +dQ +dQ +dQ +dQ +dQ +dQ +dQ +fK +fR +fR +dB +XD +BP +BP +BP +BP +BP +BP +NT +BU +Wz +xp +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ZC +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +Yx +Yx +Yx +Yx +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZC +ap +iO +El +El +El +El +El +El +El +ML +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +ML +El +El +El +El +El +El +El +iO +"} +(112,1,1) = {" +as +aT +aT +aT +aT +aT +aT +aT +aT +aT +aT +dB +dQ +dQ +dQ +eM +dQ +dQ +dQ +fK +fR +fR +dB +zA +BP +BP +BP +TH +BP +BP +ml +NT +TH +xp +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ZC +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZC +ap +iO +El +El +El +El +El +El +El +ML +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +ML +El +El +El +El +El +El +El +iO +"} +(113,1,1) = {" +as +aT +aT +aT +aT +aT +aT +aT +aT +aT +aT +dB +dQ +dQ +dQ +dQ +dQ +dQ +dQ +fK +fR +fR +dB +NT +BP +BP +BP +TH +BP +BP +BP +BC +Wz +xp +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ZC +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZC +ap +iO +El +El +El +El +El +El +El +ML +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +ML +El +El +El +El +El +El +El +iO +"} +(114,1,1) = {" +as +aT +aT +aT +bj +aT +aT +bj +aT +aT +aT +dB +dQ +dQ +es +dQ +dQ +dQ +dQ +fK +fR +fR +dB +XD +BP +BP +BP +BP +BP +BP +BP +BP +Wz +xp +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ZC +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZC +ap +iO +El +El +El +El +El +El +El +ML +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +ML +El +El +El +El +El +El +El +iO +"} +(115,1,1) = {" +as +aT +aT +aT +aT +aT +aT +aT +aT +aT +aT +dB +dQ +dQ +et +dQ +fc +dQ +dQ +fK +fR +fR +dB +Eq +BP +fm +BP +fm +BP +BP +BP +BP +Wz +xp +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ZC +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZC +ap +iO +El +El +El +El +El +El +El +ML +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +ML +El +El +El +El +El +El +El +iO +"} +(116,1,1) = {" +as +aT +bj +aT +aT +aT +aT +aT +aT +bj +aT +dB +dQ +dQ +dQ +dQ +dQ +dQ +dQ +fK +fR +fR +dB +XD +BP +BP +BP +BP +BP +BP +BP +BP +Wz +xp +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ZC +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZC +ap +iO +El +El +El +El +El +El +El +ML +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +ML +El +El +El +El +El +El +El +iO +"} +(117,1,1) = {" +as +aT +aT +aT +aT +aT +aT +aT +aT +aT +aT +dB +dQ +dQ +dQ +dQ +dQ +dQ +dQ +fK +fR +fR +dB +Lt +Gg +rD +Gg +rD +Gg +Gg +Gg +Gg +KR +xp +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ZC +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZC +ap +iO +El +El +El +El +El +El +El +ML +ML +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +ML +ML +El +El +El +El +El +El +El +iO +"} +(118,1,1) = {" +ar +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +ar +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +ar +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +ar +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ap +iO +El +El +El +El +El +El +El +El +ML +ML +El +El +El +El +El +El +El +El +El +El +El +El +El +El +ML +ML +El +El +El +El +El +El +El +El +iO +"} +(119,1,1) = {" +as +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +dB +dU +el +el +el +fd +ft +fB +fB +fB +fV +dB +fN +Nj +kN +sj +kN +kN +sj +GE +za +DB +xp +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +iO +El +El +El +El +El +El +El +El +El +ML +El +El +El +El +El +El +El +El +El +El +El +El +El +El +ML +El +El +El +El +El +El +El +El +El +iO +"} +(120,1,1) = {" +as +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +dB +dV +em +em +em +fe +fu +em +em +em +fW +dB +ov +sj +sj +sj +sj +sj +sj +sj +sj +TM +xp +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ap +iO +El +El +El +El +El +El +El +El +ML +ML +El +El +El +El +El +El +El +El +El +El +El +El +El +El +ML +ML +El +El +El +El +El +El +El +El +iO +"} +(121,1,1) = {" +as +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +dB +dV +em +em +em +fe +fu +em +em +em +fW +dB +BR +sj +sj +sj +sj +sj +sj +sj +sj +vx +xp +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ZC +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZC +ap +iO +El +El +El +El +El +El +El +ML +ML +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +ML +ML +El +El +El +El +El +El +El +iO +"} +(122,1,1) = {" +as +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +dB +dV +em +em +em +fe +fu +em +em +em +fW +dB +sj +sj +oJ +Yz +Yz +Yz +Yz +pU +sj +FX +xp +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ZC +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZC +ap +iO +El +El +El +El +El +El +ML +ML +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +ML +ML +El +El +El +El +El +El +iO +"} +(123,1,1) = {" +as +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +dB +dV +em +em +em +fe +fu +em +em +em +fW +dB +sj +sj +zC +CF +CF +CF +CF +Qh +sj +hX +xp +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ZC +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZC +ap +iO +El +El +El +El +El +El +ML +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +ML +El +El +El +El +El +El +iO +"} +(124,1,1) = {" +as +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +dB +dV +em +em +em +fe +fu +em +em +em +fW +dB +sj +sj +zC +CF +CF +CF +CF +Qh +sj +sj +xp +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ZC +ZF +ZF +ZF +ZF +ZF +ZF +ZF +Yx +Yx +Yx +Yx +Yx +Yx +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZC +ap +iO +El +El +El +El +El +El +ML +El +eQ +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +ML +El +El +El +El +El +El +iO +"} +(125,1,1) = {" +as +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +dB +dW +en +en +en +ff +fv +fC +fC +fC +fX +dB +sj +sj +xz +Sj +Sj +Sj +Sj +oR +sj +sj +xp +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ZC +ZF +ZF +ZF +ZF +ZF +ZF +Yx +Yx +ZF +ZF +ZF +ZF +Yx +Yx +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZC +ap +iO +El +El +El +El +El +El +ML +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +ML +El +El +El +El +El +El +iO +"} +(126,1,1) = {" +as +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +dB +aH +aH +aX +aH +aH +aH +aH +br +aH +aH +dB +sj +sj +sj +sj +sj +sj +sj +sj +sj +sj +xp +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ZC +ZF +ZF +ZF +ZF +ZF +ZF +Yx +ZF +ZF +eH +ZF +ZF +ZF +Yx +Yx +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZC +ap +iO +El +El +El +El +El +El +ML +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +ML +El +El +El +El +El +El +iO +"} +(127,1,1) = {" +as +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +dB +dS +dS +dR +dS +dS +dS +dS +dR +dS +dS +dB +sj +sj +sj +sj +sj +sj +sj +sj +sj +sj +xp +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ZC +ZF +ZF +Yx +Yx +Yx +Yx +Yx +ZF +ZF +ZF +ZF +ZF +ZF +ZF +Yx +Yx +ZF +ZF +ZF +ZF +ZF +ZF +ZC +ap +iO +El +El +El +El +El +El +ML +ML +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +ML +ML +El +El +El +El +El +El +iO +"} +(128,1,1) = {" +as +aU +aU +aU +aU +aU +aU +aU +aU +aU +aU +dB +dR +dR +dR +dR +dR +dR +dR +dR +dR +dR +dB +sj +sj +sj +sj +sj +sj +sj +sj +sj +sj +xp +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ZC +ZF +ZF +Yx +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +Yx +ZF +ZF +ZF +ZF +ZF +ZF +ZC +ap +iO +El +El +El +El +El +El +El +ML +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +ML +El +El +El +El +El +El +El +iO +"} +(129,1,1) = {" +ar +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +ar +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +ar +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +ar +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ZC +ZF +ZF +Yx +Yx +Yx +Yx +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +Yx +ZF +ZF +ZF +ZF +ZF +ZF +ZC +ap +iO +El +El +El +El +El +El +El +ML +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +ML +El +El +El +El +El +El +El +iO +"} +(130,1,1) = {" +as +aY +bk +bk +bk +bk +cA +cA +cA +cA +dv +dB +dX +dY +dY +dY +dY +dY +dY +dY +dY +dY +dB +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +xp +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ZC +ZF +ZF +ZF +ZF +ZF +Yx +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +Yx +ZF +ZF +ZF +ZF +ZF +ZF +ZC +ap +iO +El +El +El +El +El +El +ML +ML +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +ML +ML +El +El +El +El +El +El +iO +"} +(131,1,1) = {" +as +aZ +bl +bl +bl +bl +bl +bl +bl +bl +dw +dB +dX +dY +dY +ci +ci +ci +ci +dY +dY +dY +dB +BV +xt +BV +ED +BV +oq +Dh +Dh +JQ +BV +xp +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ZC +ZF +ZF +Yx +Yx +Yx +Yx +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +Yx +ZF +ZF +ZF +ZF +ZF +ZF +ZC +ap +iO +El +El +El +El +El +El +ML +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +ML +El +El +El +El +El +El +iO +"} +(132,1,1) = {" +as +aZ +bl +bl +bl +bl +bl +bl +bl +bl +dw +dB +dY +dY +dY +dY +dY +dY +dY +dY +dY +dY +dB +BV +BV +BV +BV +BV +rU +Yn +Yn +wf +BV +xp +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ZC +ZF +ZF +Yx +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +Yx +ZF +ZF +ZF +ZF +ZF +ZF +ZC +ap +iO +El +El +El +El +El +El +ML +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +ML +El +El +El +El +El +El +iO +"} +(133,1,1) = {" +as +aZ +bl +bl +bl +bl +bl +bl +bl +bl +dw +dB +dY +dY +dY +bu +bA +bA +bD +dY +cM +dY +dB +BV +xt +BV +ED +BV +rU +Yn +Yn +wf +BV +xp +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ZC +ZF +ZF +Yx +Yx +Yx +Yx +Yx +ZF +ZF +ZF +ZF +ZF +ZF +ZF +Yx +Yx +ZF +ZF +ZF +ZF +ZF +ZF +ZC +ap +iO +El +El +El +El +El +El +ML +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +ML +El +El +El +El +El +El +iO +"} +(134,1,1) = {" +as +aZ +bl +bl +bl +bl +bl +bl +bl +bl +dw +dB +dY +eo +dY +bw +bs +bs +bE +dY +cM +dY +dB +BV +BV +BV +BV +BV +mY +OU +OU +uh +BV +xp +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ZC +ZF +ZF +ZF +ZF +ZF +ZF +Yx +ZF +ZF +ZF +ZF +ZF +ZF +Yx +Yx +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZC +ap +iO +El +El +El +El +El +El +ML +El +El +El +El +El +El +El +ML +ML +ML +ML +ML +ML +El +El +El +El +El +El +El +ML +El +El +El +El +El +El +iO +"} +(135,1,1) = {" +as +aZ +bl +bl +bl +bl +bl +bl +bl +bl +dw +dB +dY +eo +dY +bw +bs +bs +bE +dY +cM +dY +dB +BV +BV +BV +BV +BV +BV +BV +BV +BV +BV +xp +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ZC +ZF +ZF +ZF +ZF +ZF +ZF +Yx +Yx +ZF +ZF +ZF +ZF +Yx +Yx +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZC +ap +iO +El +El +El +El +El +El +ML +El +El +El +El +El +El +ML +ML +El +El +El +El +ML +ML +El +El +El +El +El +El +ML +El +El +El +El +El +El +iO +"} +(136,1,1) = {" +as +ba +bm +bm +bm +bm +cB +cB +cB +cB +dx +dB +dY +eo +dY +bx +bC +bC +bF +dY +dY +dY +dB +BV +MT +BV +wR +BV +BV +BV +BV +BV +BV +xp +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ZC +ZF +ZF +ZF +ZF +ZF +ZF +ZF +Yx +Yx +Yx +Yx +Yx +Yx +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZC +ap +iO +El +El +El +El +El +El +ML +ML +ML +ML +ML +ML +ML +ML +El +El +El +El +El +El +ML +ML +ML +ML +ML +ML +ML +ML +El +El +El +El +El +El +iO +"} +(137,1,1) = {" +as +ac +ac +am +ac +ac +ac +ac +aD +ac +ac +dB +dY +dY +dY +dY +dY +dY +dY +dY +dY +dY +dB +BV +BV +BV +BV +BV +BV +BV +BV +BV +Xq +xp +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ZC +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZC +ap +iO +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +iO +"} +(138,1,1) = {" +as +aW +aW +aV +aW +aW +aW +aW +aV +aW +aW +dB +dY +dY +dY +cL +cL +cL +cL +dY +dY +fY +dB +BV +wR +BV +MT +BV +BV +BV +BV +BV +jS +xp +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ZC +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZC +ap +iO +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +iO +"} +(139,1,1) = {" +as +aV +aV +aV +aV +aV +aV +aV +aV +aV +aV +dB +dY +dY +dY +dY +dY +dY +dY +dY +dY +fY +dB +BV +BV +BV +BV +BV +BV +BV +BV +BV +fl +xp +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ZC +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZF +ZC +ap +iO +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +El +iO +"} +(140,1,1) = {" +ar +bb +bb +bb +bb +bb +bb +bb +bb +bb +bb +ar +bb +bb +bb +bb +bb +bb +bb +bb +bb +bb +ar +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +ar +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ZC +ap +iO +iO +iO +iO +iO +iO +iO +iO +iO +iO +iO +iO +iO +iO +iO +iO +iO +iO +iO +iO +iO +iO +iO +iO +iO +iO +iO +iO +iO +iO +iO +iO +iO +iO +iO +iO +"} diff --git a/maps/stellardelight/stelardelightskybox.dmi b/maps/stellardelight/stelardelightskybox.dmi new file mode 100644 index 0000000000..f699662e49 Binary files /dev/null and b/maps/stellardelight/stelardelightskybox.dmi differ diff --git a/maps/stellardelight/stellar_delight.dm b/maps/stellardelight/stellar_delight.dm new file mode 100644 index 0000000000..01d997494a --- /dev/null +++ b/maps/stellardelight/stellar_delight.dm @@ -0,0 +1,25 @@ +#if !defined(USING_MAP_DATUM) + + #include "stellar_delight_areas.dm" + #include "stellar_delight_defines.dm" + #include "stellar_delight_jobs.dm" + #include "stellar_delight_shuttle_defs.dm" + #include "stellar_delight_telecomms.dm" + #include "stellar_delight_things.dm" + #include "stellar_delight_turfs.dm" + #include "..\offmap_vr\common_offmaps.dm" + #include "..\tether\tether_jobs.dm" + + #if !AWAY_MISSION_TEST //Don't include these for just testing away missions + #include "stellar_delight1.dmm" + #include "stellar_delight2.dmm" + #include "stellar_delight3.dmm" + #endif + + #define USING_MAP_DATUM /datum/map/stellar_delight + +#elif !defined(MAP_OVERRIDE) + + #warn A map has already been included, ignoring Tether + +#endif \ No newline at end of file diff --git a/maps/stellardelight/stellar_delight1.dmm b/maps/stellardelight/stellar_delight1.dmm new file mode 100644 index 0000000000..5be491d41c --- /dev/null +++ b/maps/stellardelight/stellar_delight1.dmm @@ -0,0 +1,44413 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ab" = ( +/obj/structure/cable/pink{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/dark, +/area/security/security_processing) +"ac" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/power/apc/angled{ + cell_type = /obj/item/weapon/cell/super; + dir = 1; + name = "night shift APC"; + nightshift_setting = 2 + }, +/obj/structure/cable/pink{ + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/dark, +/area/security/tactical) +"ad" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"ae" = ( +/obj/structure/closet/secure_closet/security, +/obj/item/device/holowarrant, +/obj/item/clothing/accessory/badge/holo/cord, +/obj/item/clothing/accessory/badge/holo/cord, +/obj/machinery/alarm/angled{ + dir = 4 + }, +/obj/effect/floor_decal/milspec/color/red, +/turf/simulated/floor/tiled/dark, +/area/security/security_lockerroom) +"ag" = ( +/obj/structure/cable/pink{ + icon_state = "1-4" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck1/exterior) +"ah" = ( +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/lobby) +"ai" = ( +/obj/structure/cable/pink{ + icon_state = "1-2" + }, +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/random/maintenance/clean, +/obj/random/maintenance/security, +/obj/random/maintenance/research, +/obj/random/contraband, +/obj/structure/cable/pink, +/obj/machinery/power/apc/angled{ + dir = 8; + name = "night shift APC"; + nightshift_setting = 2 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/starboardfore) +"aj" = ( +/obj/structure/table/woodentable, +/obj/machinery/alarm/angled{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/stellardelight/deck1/dorms/dorm8) +"ak" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/orange, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/milspec/color/orange/half{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/prison/cell_block) +"am" = ( +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 2 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/port) +"an" = ( +/turf/simulated/wall/bay/white, +/area/stellardelight/deck1/aft) +"ao" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/fore) +"ap" = ( +/obj/structure/cable/pink{ + icon_state = "2-4" + }, +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck1/exterior) +"aq" = ( +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/turf/simulated/wall/bay/r_wall/red, +/area/security/armoury) +"ar" = ( +/obj/structure/filingcabinet/chestdrawer{ + desc = "A large drawer filled with autopsy reports."; + name = "Autopsy Reports" + }, +/obj/machinery/firealarm/angled, +/turf/simulated/floor/tiled/techfloor, +/area/medical/morgue) +"as" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/obj/structure/low_wall/bay/reinforced/steel, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/portfore) +"at" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/port) +"au" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/turf/simulated/floor/tiled/dark, +/area/security/tactical) +"aw" = ( +/obj/structure/stairs/spawner/north, +/obj/structure/railing/grey{ + dir = 8 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/starboardaft) +"ax" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 5 + }, +/obj/machinery/shower{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/stellardelight/deck1/shower) +"ay" = ( +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/pathfinder) +"aA" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/exploration) +"aB" = ( +/obj/structure/table/standard, +/obj/machinery/cell_charger, +/obj/machinery/power/apc/angled{ + dir = 8 + }, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/assembly/robotics) +"aC" = ( +/obj/structure/cable/green{ + color = "#42038a"; + 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/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/explobriefing) +"aD" = ( +/turf/simulated/wall/bay/purple, +/area/assembly/robotics) +"aE" = ( +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck1/starboard) +"aF" = ( +/obj/structure/closet/bombcloset/double, +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 29 + }, +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 38 + }, +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 20 + }, +/obj/effect/floor_decal/milspec/color/black, +/turf/simulated/floor/tiled/dark, +/area/security/armoury) +"aG" = ( +/obj/structure/bookcase{ + name = "bookcase (Religious)" + }, +/obj/item/weapon/book/bundle/custom_library/religious/zoroastrianism, +/obj/item/weapon/book/custom_library/religious/feastofkubera, +/obj/item/weapon/book/custom_library/religious/storyoflordganesha, +/obj/item/weapon/book/custom_library/religious/sungoddessofkorea, +/obj/item/weapon/book/custom_library/religious/wayofbleedingswan, +/turf/simulated/floor/wood, +/area/library) +"aH" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/angled{ + dir = 4; + id = "GatewayShutterE" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/gateway) +"aI" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/shuttlebay) +"aJ" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/effect/landmark/start/fieldmedic, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/explobriefing) +"aK" = ( +/obj/structure/cable/pink{ + icon_state = "1-2" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck1/exterior) +"aL" = ( +/obj/machinery/camera/network/research/xenobio{ + dir = 5; + network = list("Xenobiology") + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"aM" = ( +/turf/simulated/wall/bay/purple, +/area/rnd/workshop) +"aN" = ( +/obj/structure/sign/directions/evac{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/port) +"aO" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/alarm/angled{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/portaft) +"aP" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/portcent) +"aQ" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/carpet/bcarpet, +/area/stellardelight/deck1/starboard) +"aR" = ( +/obj/structure/table/glass, +/obj/item/weapon/paper_bin, +/obj/item/weapon/pen, +/obj/item/weapon/clipboard, +/obj/item/weapon/folder/white, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/exam_room) +"aS" = ( +/turf/simulated/wall/bay/r_wall/steel, +/area/security/security_equiptment_storage) +"aU" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"aV" = ( +/obj/machinery/alarm/angled{ + dir = 4 + }, +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/portcent) +"aW" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/obj/structure/low_wall/bay/reinforced/steel, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/starboardfore) +"aX" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/milspec/color/emerald/corner, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/starboard) +"aY" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/angled/open{ + dir = 2; + id = "securitylockdown" + }, +/obj/machinery/door/window/brigdoor/eastright{ + dir = 2 + }, +/obj/effect/floor_decal/milspec/color/red, +/turf/simulated/floor/tiled/dark, +/area/security/lobby) +"aZ" = ( +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + dir = 8; + id_tag = "xenobio_airlock_control"; + name = "Xenobiology Access Console"; + pixel_x = 24; + tag_exterior_door = "xenobio_airlock_exterior"; + tag_interior_door = "xenobio_airlock_interior" + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/xenobiology) +"ba" = ( +/obj/item/modular_computer/console/preset/civilian, +/turf/simulated/floor/tiled/eris/steel/gray_platform, +/area/stellardelight/deck1/exploshuttle) +"bb" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/botany/editor, +/turf/simulated/floor/tiled/eris, +/area/rnd/xenobiology/xenoflora) +"bc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/xenobiology) +"bd" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/starboard) +"be" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/access_button{ + command = "cycle_interior"; + dir = 8; + frequency = 1379; + master_tag = "xenobio_airlock_control"; + name = "Xenobiology Access Button"; + pixel_y = -32; + req_access = null; + req_one_access = list(47,55) + }, +/obj/machinery/door/airlock/angled_bay/standard/color{ + autoclose = 0; + dir = 4; + door_color = "#ffffff"; + fill_color = "#ead9ff"; + frequency = 1379; + id_tag = "xenobio_airlock_interior"; + locked = 1; + name = "Xenobiology Lab"; + req_access = list(47,55); + stripe_color = "#5a19a8" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/rnd/xenobiology) +"bf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/light/floortube{ + dir = 4; + pixel_x = 6 + }, +/turf/simulated/floor/tiled/eris/white/cargo, +/area/medical/virology) +"bg" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/firealarm/angled{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/port) +"bh" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/alarm/angled, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/aft) +"bi" = ( +/turf/simulated/wall/bay/r_wall/brown, +/area/stellardelight/deck1/dorms/dorm1) +"bj" = ( +/turf/simulated/wall/bay/r_wall/steel, +/area/rnd/xenobiology/xenoflora) +"bk" = ( +/turf/simulated/wall/bay/r_wall/steel, +/area/prison/cell_block/C) +"bl" = ( +/turf/simulated/wall/bay/steel, +/area/maintenance/stellardelight/substation/civilian) +"bm" = ( +/obj/structure/bed/chair/office/dark, +/obj/effect/landmark/start/warden, +/turf/simulated/floor/tiled/dark, +/area/security/warden) +"bn" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/starboard) +"bo" = ( +/obj/structure/shuttle/engine/propulsion, +/turf/simulated/floor/reinforced, +/area/stellardelight/deck1/exploshuttle) +"bq" = ( +/obj/structure/table/bench/steel, +/obj/effect/landmark/start/security, +/turf/simulated/floor/tiled/dark, +/area/security/security_lockerroom) +"br" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/angled_bay/standard/color{ + door_color = "#9c9c9c"; + fill_color = "#5c5c5c"; + id_tag = "dorm1"; + name = "Room 1"; + stripe_color = "#89bd66" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck1/dorms/dorm1) +"bs" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck1/port) +"bt" = ( +/obj/structure/table/woodentable, +/obj/machinery/light/small, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/stellardelight/deck1/dorms/dorm3) +"bu" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/sign/painting/public{ + pixel_x = -30 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/aft) +"bv" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/monotile, +/area/janitor) +"bw" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/catwalk_plated/dark, +/obj/effect/landmark/vines, +/turf/simulated/floor, +/area/stellardelight/deck1/port) +"bx" = ( +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/starboardfore) +"by" = ( +/obj/machinery/power/pointdefense{ + id_tag = "sd_pd" + }, +/obj/effect/floor_decal/industrial/warning/full, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "0-4" + }, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "0-8" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck1/exterior) +"bz" = ( +/obj/machinery/power/apc/angled{ + dir = 8; + name = "night shift APC"; + nightshift_setting = 2 + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/starboardcent) +"bA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/wood, +/area/library) +"bB" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/starboardaft) +"bD" = ( +/obj/structure/lattice, +/turf/space, +/area/space) +"bE" = ( +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/security/detectives_office) +"bF" = ( +/obj/structure/bed/chair/sofa/pew/right{ + dir = 1 + }, +/obj/structure/sign/painting/chapel_secure{ + pixel_y = -32 + }, +/obj/effect/landmark/start/visitor, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"bG" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/stellardelight/deck1/lowermed) +"bH" = ( +/obj/machinery/light/small, +/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, +/area/maintenance/stellardelight/deck1/portcent) +"bI" = ( +/obj/effect/floor_decal/borderfloorblack/full, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/flasher/portable, +/obj/machinery/camera/network/security{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/armoury) +"bJ" = ( +/obj/structure/table/steel, +/obj/item/weapon/storage/box/lights/mixed, +/turf/simulated/floor/tiled/monotile, +/area/janitor) +"bK" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/disposal/wall{ + dir = 4; + pixel_x = -24; + plane = -34 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology) +"bL" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"bM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/starboardfore) +"bN" = ( +/obj/structure/cable/green{ + color = "#42038a"; + 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 = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris, +/area/stellardelight/deck1/researchhall) +"bP" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/eris, +/area/stellardelight/deck1/researchequip) +"bQ" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/portaft) +"bR" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/camera/network/halls, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/aft) +"bS" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-4" + }, +/turf/simulated/floor/reinforced, +/area/stellardelight/deck1/shuttlebay) +"bT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor, +/area/medical/morgue) +"bU" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/structure/curtain/black{ + anchored = 1 + }, +/obj/structure/low_wall/bay/reinforced/steel, +/turf/simulated/floor, +/area/stellardelight/deck1/dorms/dorm7) +"bV" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/portaft) +"bW" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/bluegrid, +/area/assembly/robotics) +"bX" = ( +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/milspec/color/red/corner, +/turf/simulated/floor/tiled/dark, +/area/security/security_cell_hallway) +"bY" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/eris/steel/gray_platform, +/area/stellardelight/deck1/exploshuttle) +"bZ" = ( +/turf/simulated/floor, +/area/maintenance/stellardelight/substation/civilian) +"cb" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "4-8" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck1/exterior) +"cd" = ( +/obj/machinery/camera/network/halls{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/port) +"ce" = ( +/obj/machinery/computer/ship/navigation/telescreen{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/exploration) +"cf" = ( +/obj/structure/table/steel, +/obj/item/weapon/surgical/scalpel, +/obj/item/weapon/autopsy_scanner, +/obj/item/weapon/surgical/cautery, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/camera/network/medbay{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/medical/morgue) +"cg" = ( +/obj/machinery/photocopier, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/alarm/angled{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/warden) +"ch" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/lino, +/area/chapel/office) +"ci" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/stellardelight/deck1/resleeving) +"cj" = ( +/obj/machinery/button/remote/blast_door{ + dir = 1; + id = "xenobiopen3"; + name = "Pen 3 Containment"; + pixel_x = -30; + pixel_y = 8; + req_access = list(55) + }, +/obj/machinery/button/remote/blast_door{ + id = "xenobiopen5"; + name = "Pen 5 Containment"; + pixel_x = -31; + pixel_y = -8; + req_access = list(55) + }, +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "xenobiodiv3"; + name = "Divider 3 Blast Doors"; + pixel_x = -39; + req_access = list(55) + }, +/obj/machinery/light/floortube{ + dir = 8; + pixel_x = -6 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology) +"ck" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/sign/directions/evac{ + dir = 8; + pixel_y = 32 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/aft) +"cl" = ( +/obj/structure/table/woodentable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/item/weapon/material/ashtray/glass, +/turf/simulated/floor/carpet/bcarpet, +/area/stellardelight/deck1/starboard) +"cm" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/forensics/sample_kit, +/obj/effect/floor_decal/milspec/color/red/half{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/security/detectives_office) +"cn" = ( +/obj/machinery/light/floortube{ + dir = 8; + pixel_x = -6 + }, +/obj/machinery/light/floortube{ + dir = 4; + pixel_x = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/shuttlebay) +"co" = ( +/obj/machinery/vending/fitness, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck1/starboard) +"cp" = ( +/obj/machinery/shower{ + dir = 1 + }, +/obj/structure/curtain/open/shower/medical, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/stellardelight/deck1/resleeving) +"cq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "researchwindowlockdown"; + name = "Window Lockdown"; + pixel_x = -24 + }, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/eris, +/area/stellardelight/deck1/researchhall) +"cr" = ( +/obj/structure/cable/pink{ + icon_state = "1-4" + }, +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/random/maintenance/clean, +/obj/random/maintenance/security, +/obj/random/maintenance/research, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/starboardfore) +"cs" = ( +/obj/structure/table/rack, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/suit/space/void/medical/emt, +/obj/item/clothing/suit/space/void/medical/emt, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/head/helmet/space/void/medical/emt, +/obj/item/clothing/head/helmet/space/void/medical/emt, +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/machinery/power/apc/angled{ + dir = 1; + name = "night shift APC"; + nightshift_setting = 2 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/stellardelight/deck1/paramedic) +"ct" = ( +/obj/structure/closet/secure_closet/pilot, +/obj/machinery/firealarm/angled, +/turf/simulated/floor/tiled/eris/steel/panels, +/area/stellardelight/deck1/pilot) +"cu" = ( +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck1/shower) +"cv" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-2" + }, +/obj/effect/landmark/start/scientist, +/turf/simulated/floor/tiled/dark, +/area/rnd/research) +"cw" = ( +/obj/structure/reagent_dispensers/acid{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/research) +"cy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/firealarm/angled, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/security/security_cell_hallway) +"cA" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/firealarm/angled, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/aft) +"cB" = ( +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/portfore) +"cC" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/substation/atmospherics) +"cD" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/assembly/robotics) +"cE" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/security/security_processing) +"cF" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/portcent) +"cG" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/port) +"cI" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 6 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/aft) +"cJ" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/angled_bay/standard/color{ + door_color = "#9c9c9c"; + fill_color = "#5c5c5c"; + id_tag = "dorm2"; + name = "Room 2"; + stripe_color = "#89bd66" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck1/dorms/dorm2) +"cK" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/port) +"cM" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/gunbox{ + pixel_y = 6 + }, +/obj/item/gunbox{ + pixel_y = -3 + }, +/obj/effect/floor_decal/milspec/color/black, +/turf/simulated/floor/tiled/dark, +/area/security/armoury) +"cN" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/chapel_morgue) +"cO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/port) +"cP" = ( +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/milspec/color/red/half{ + dir = 1 + }, +/mob/living/simple_mob/vore/fennec/bridgette, +/obj/machinery/newscaster/security_unit{ + pixel_y = 28 + }, +/turf/simulated/floor/tiled/dark, +/area/security/security_cell_hallway) +"cQ" = ( +/obj/machinery/mineral/unloading_machine, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/oreprocessing) +"cS" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/steel_grid, +/area/assembly/robotics) +"cT" = ( +/obj/machinery/smartfridge/drying_rack, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/eris, +/area/rnd/xenobiology/xenoflora) +"cU" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/landmark/vines, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/starboard) +"cV" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + color = "#42038a"; + 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/milspec, +/area/stellardelight/deck1/exploration) +"cW" = ( +/obj/effect/floor_decal/chapel{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"cX" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck1/researchserver) +"cY" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/angled_bay/standard/glass{ + door_color = "#8c1d11"; + name = "Forensics Lab"; + req_access = list(4); + stripe_color = "#d27428" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/security/detectives_office) +"cZ" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/machinery/vending/cigarette, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/starboard) +"da" = ( +/obj/structure/bed/chair/comfy/black, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/stellardelight/deck1/dorms/dorm4) +"db" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/eris/white/gray_platform, +/area/gateway) +"dc" = ( +/obj/structure/table/woodentable, +/obj/machinery/alarm/angled{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/stellardelight/deck1/dorms/dorm4) +"dd" = ( +/obj/item/device/radio/intercom/department/medbay{ + dir = 8; + pixel_x = -24 + }, +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/exam_room) +"de" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-8" + }, +/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/eris, +/area/stellardelight/deck1/researchequip) +"df" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/landmark{ + name = "lightsout" + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/fore) +"dg" = ( +/obj/machinery/button/remote/blast_door{ + dir = 1; + id = "xenobiopen2"; + name = "Pen 2 Containment"; + pixel_x = 30; + pixel_y = 8; + req_access = list(55) + }, +/obj/machinery/button/remote/blast_door{ + id = "xenobiopen4"; + name = "Pen 4 Containment"; + pixel_x = 29; + pixel_y = -8; + req_access = list(55) + }, +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "xenobiodiv2"; + name = "Divider 2 Blast Doors"; + pixel_x = 38; + pixel_y = -1; + req_access = list(55) + }, +/obj/machinery/light/floortube{ + dir = 4; + pixel_x = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology) +"dh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/prison/cell_block/C) +"di" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/security/tactical) +"dj" = ( +/obj/structure/table/woodentable, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/stellardelight/deck1/starboard) +"dk" = ( +/obj/effect/floor_decal/industrial/warning/full, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "0-8" + }, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "0-4" + }, +/obj/machinery/power/pointdefense{ + id_tag = "sd_pd" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck1/exterior) +"dl" = ( +/turf/simulated/wall/bay/brown, +/area/stellardelight/deck1/mining) +"dm" = ( +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = 32 + }, +/obj/effect/floor_decal/milspec/color/red/half, +/turf/simulated/floor/tiled/dark, +/area/security/security_lockerroom) +"dn" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/aft) +"do" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "miningops" + }, +/obj/machinery/mineral/input, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/oreprocessing) +"dp" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/research) +"dq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/button/remote/airlock{ + desc = "A remote control switch for the medbay foyer."; + dir = 4; + id = "recoveryexit"; + name = "Door Control"; + pixel_x = -27; + pixel_y = 25 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/patient_wing) +"dr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/stellardelight/deck1/paramedic) +"dt" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/machinery/firealarm/angled{ + dir = 4 + }, +/obj/effect/floor_decal/milspec/color/red/half, +/turf/simulated/floor/tiled/dark, +/area/security/tactical) +"du" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck1/researchserver) +"dv" = ( +/obj/structure/closet/walllocker_double/east, +/turf/simulated/floor/carpet/purcarpet, +/area/stellardelight/deck1/dorms/dorm2) +"dw" = ( +/obj/structure/railing/grey{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/structure/cable/white{ + icon_state = "16-0" + }, +/obj/structure/stairs/spawner/north, +/turf/simulated/floor, +/area/stellardelight/deck1/lowermed) +"dx" = ( +/obj/structure/bookcase{ + name = "bookcase (Adult)" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/sign/painting/library_secure{ + pixel_x = 30 + }, +/turf/simulated/floor/wood, +/area/library) +"dy" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/substation/medical) +"dA" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/reinforced, +/area/stellardelight/deck1/shuttlebay) +"dB" = ( +/obj/structure/sign/painting/library_secure{ + pixel_x = 30 + }, +/obj/effect/floor_decal/milspec/color/red/half{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/security/security_cell_hallway) +"dD" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/weapon/storage/box/shotgunshells{ + pixel_x = -2; + pixel_y = 7 + }, +/obj/item/weapon/storage/box/shotgunshells{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/weapon/storage/box/shotgunshells{ + pixel_x = 6; + pixel_y = -1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/purple, +/obj/effect/floor_decal/milspec/color/black, +/turf/simulated/floor/tiled/dark, +/area/security/armoury) +"dF" = ( +/obj/machinery/computer/security/xenobio, +/obj/machinery/alarm/angled, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/xenobiology) +"dG" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/starboard) +"dH" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/stellardelight/deck1/resleeving) +"dI" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/stellardelight/deck1/shuttlebay) +"dJ" = ( +/obj/structure/cable/pink{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/milspec/color/black, +/turf/simulated/floor/tiled/dark, +/area/security/armoury) +"dK" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/double/glass{ + dir = 8; + name = "Library"; + stripe_color = "#3b3b3b" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/library) +"dL" = ( +/obj/effect/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/miningequipment) +"dN" = ( +/obj/structure/closet/secure_closet/hydroponics/sci{ + req_access = list(77) + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/camera/network/research{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris, +/area/stellardelight/deck1/researchhall) +"dO" = ( +/obj/machinery/mineral/input, +/obj/effect/floor_decal/industrial/loading{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/oreprocessing) +"dP" = ( +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/aft) +"dQ" = ( +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/oreprocessing) +"dR" = ( +/obj/machinery/power/apc/angled{ + dir = 8 + }, +/obj/structure/cable/pink{ + icon_state = "0-4" + }, +/obj/machinery/camera/network/security, +/obj/machinery/computer/arcade, +/obj/effect/floor_decal/milspec/color/orange/half{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/prison/cell_block) +"dS" = ( +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/random/maintenance/clean, +/obj/random/maintenance/security, +/obj/random/pouch, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/portfore) +"dT" = ( +/obj/structure/cable/pink{ + icon_state = "2-8" + }, +/obj/structure/table/bench/standard, +/obj/effect/floor_decal/milspec/color/orange/half{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/prison/cell_block) +"dU" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor/glass/talon, +/obj/machinery/door/blast/regular/open{ + id = "talon_boat_cockpit" + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/stellardelight/deck1/miningshuttle) +"dV" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/clothing/mask/gas{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/dark, +/area/security/security_equiptment_storage) +"dW" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/table/reinforced, +/obj/machinery/door/blast/angled_shutter/open{ + dir = 4; + id = "dontlooktmyrobotpenis"; + name = "Privacy Shutters" + }, +/obj/machinery/door/window/brigdoor/westright{ + dir = 4; + name = "Robotics Desk"; + req_access = list(7); + req_one_access = list(47) + }, +/turf/simulated/floor/tiled/monotile, +/area/assembly/robotics) +"dY" = ( +/obj/machinery/mineral/processing_unit, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/oreprocessing) +"dZ" = ( +/obj/structure/table/standard, +/obj/item/weapon/disk/tech_disk, +/obj/item/weapon/disk/tech_disk, +/obj/item/weapon/disk/design_disk, +/obj/item/weapon/disk/design_disk, +/obj/item/weapon/reagent_containers/dropper{ + pixel_y = -4 + }, +/obj/item/clothing/glasses/omnihud/rnd, +/obj/item/clothing/gloves/sterile/latex, +/obj/machinery/alarm/angled{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/research) +"ea" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "2-4" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck1/exterior) +"eb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/library) +"ec" = ( +/obj/structure/sign/deck1{ + pixel_x = -32 + }, +/obj/machinery/camera/network/medbay{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/stellardelight/deck1/lowermed) +"ed" = ( +/obj/structure/cable/pink{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/milspec/color/red/half{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/security/security_lockerroom) +"ee" = ( +/obj/structure/dispenser{ + phorontanks = 0 + }, +/turf/simulated/floor/tiled/dark, +/area/security/tactical) +"ef" = ( +/obj/structure/table/rack, +/obj/item/device/suit_cooling_unit{ + pixel_y = -5 + }, +/obj/item/device/suit_cooling_unit{ + pixel_y = -5 + }, +/obj/machinery/alarm/angled, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/stellardelight/deck1/paramedic) +"eh" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/window/brigdoor/southleft{ + id = "Cell B"; + name = "Cell B"; + req_access = list(2) + }, +/obj/structure/cable/pink{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_ridged, +/area/prison/cell_block/B) +"ei" = ( +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/starboard) +"ej" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/fore) +"ek" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/wall/bay/r_wall/steel, +/area/maintenance/stellardelight/deck1/portaft) +"el" = ( +/obj/item/weapon/storage/box/monkeycubes, +/obj/item/weapon/storage/box/monkeycubes, +/obj/item/weapon/storage/box/monkeycubes, +/obj/item/weapon/storage/box/monkeycubes, +/obj/item/weapon/storage/box/monkeycubes, +/obj/structure/closet/walllocker_double/east, +/obj/structure/table/reinforced, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/item/weapon/storage/box/beakers, +/obj/item/weapon/reagent_containers/spray/cleaner, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/xenobiology) +"em" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/effect/landmark/start/explorer, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/explobriefing) +"en" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "4-8" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck1/exterior) +"eo" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/low_wall/bay/reinforced/purple, +/obj/structure/sign/xenobio{ + plane = -34 + }, +/turf/simulated/floor, +/area/rnd/xenobiology) +"ep" = ( +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/stellardelight/deck1/lowermed) +"eq" = ( +/turf/simulated/floor/carpet, +/area/chapel/main) +"er" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/stellardelight/deck1/paramedic) +"es" = ( +/obj/structure/table/steel, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/alarm/angled{ + dir = 8 + }, +/obj/machinery/camera/network/research{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck1/researchserver) +"et" = ( +/obj/effect/landmark{ + name = "droppod_landing" + }, +/turf/space, +/area/space) +"eu" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24; + pixel_y = 32 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/exploequipment) +"ev" = ( +/obj/machinery/computer/transhuman/resleeving{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/stellardelight/deck1/resleeving) +"ew" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/port) +"ex" = ( +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/alarm/angled{ + dir = 4 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/substation/exploration) +"ey" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-2" + }, +/turf/simulated/wall/bay/purple, +/area/stellardelight/deck1/pathfinder) +"ez" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/gloves/sterile/latex, +/obj/item/weapon/reagent_containers/syringe, +/turf/simulated/floor/tiled/white, +/area/security/detectives_office) +"eA" = ( +/obj/effect/floor_decal/milspec/color/black, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/security/armoury) +"eB" = ( +/obj/machinery/power/apc/angled{ + dir = 8 + }, +/obj/structure/cable/pink{ + icon_state = "0-4" + }, +/obj/structure/table/bench/standard, +/obj/effect/floor_decal/milspec/color/orange/half{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/prison/cell_block/B) +"eC" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/portcent) +"eD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/floor_decal/milspec/color/red/half{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/tactical) +"eE" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/portcent) +"eF" = ( +/turf/simulated/floor, +/area/security/tactical) +"eG" = ( +/obj/structure/cable/pink{ + icon_state = "1-2" + }, +/obj/structure/cable/pink{ + icon_state = "2-4" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/security/security_cell_hallway) +"eH" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/security/security_processing) +"eI" = ( +/obj/machinery/libraryscanner, +/obj/machinery/camera/network/civilian{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/library) +"eJ" = ( +/obj/machinery/mineral/equipment_vendor/survey, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/explobriefing) +"eL" = ( +/obj/structure/mirror{ + pixel_y = 38 + }, +/obj/structure/sink{ + pixel_y = 20 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/toilet) +"eM" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/starboardcent) +"eN" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/starboard) +"eO" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/medical, +/obj/structure/curtain/open/privacy, +/obj/structure/sign/painting/library_secure{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled/white, +/area/medical/patient_wing) +"eP" = ( +/obj/machinery/computer/timeclock/premade/east, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/starboard) +"eQ" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/cable/pink{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/dark, +/area/security/security_cell_hallway) +"eR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology) +"eS" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/machinery/door/blast/angled/open{ + dir = 4; + id = "chapelofficelockdown" + }, +/obj/structure/low_wall/bay/reinforced/black, +/turf/simulated/floor, +/area/chapel/office) +"eT" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/dark, +/area/security/tactical) +"eU" = ( +/obj/effect/floor_decal/industrial/outline, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/stellardelight/deck1/miningshuttle) +"eV" = ( +/turf/simulated/floor, +/area/stellardelight/deck1/aft) +"eW" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/flora/pottedplant/stoutbush, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/starboard) +"eX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 1 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/dark, +/area/security/tactical) +"eY" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/structure/extinguisher_cabinet{ + dir = 8; + pixel_x = 30 + }, +/obj/machinery/alarm/angled, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/xenobiology) +"fa" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/door/airlock/angled_bay/standard/color{ + dir = 4; + door_color = "#8c1d11"; + fill_color = "#854a44"; + name = "Warden's Office"; + req_access = list(3); + stripe_color = "#d27428" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/security/warden) +"fb" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/toilet) +"fc" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/angled_bay/hatch{ + name = "maintenance access"; + stripe_color = "#454545" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/chapel/main) +"fd" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/security/detectives_office) +"ff" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "miningops" + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/oreprocessing) +"fg" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/structure/low_wall/bay/reinforced/steel, +/turf/simulated/floor, +/area/rnd/xenobiology) +"fh" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/power/apc/angled{ + dir = 8; + name = "night shift APC"; + nightshift_setting = 2 + }, +/turf/simulated/floor/tiled/eris/white/gray_platform, +/area/gateway) +"fi" = ( +/turf/simulated/floor/tiled/eris/steel/gray_platform, +/area/stellardelight/deck1/exploshuttle) +"fj" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/substation/civilian) +"fk" = ( +/turf/simulated/floor/tiled/dark, +/area/chapel/chapel_morgue) +"fl" = ( +/obj/effect/floor_decal/milspec/color/orange/half{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/prison/cell_block/B) +"fm" = ( +/obj/machinery/smartfridge/secure/virology, +/obj/machinery/light/floortube{ + dir = 4; + pixel_x = 6 + }, +/obj/machinery/firealarm/angled, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/virology) +"fn" = ( +/obj/structure/table/rack{ + dir = 8; + layer = 2.6 + }, +/obj/machinery/firealarm/angled{ + dir = 8 + }, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/suit/space/void/security, +/obj/item/clothing/suit/space/void/security, +/obj/item/clothing/head/helmet/space/void/security, +/obj/item/clothing/head/helmet/space/void/security, +/obj/effect/floor_decal/milspec/color/red, +/turf/simulated/floor/tiled/dark, +/area/security/tactical) +"fo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/assembly/robotics) +"fp" = ( +/obj/machinery/r_n_d/circuit_imprinter{ + dir = 1 + }, +/obj/item/weapon/reagent_containers/glass/beaker/sulphuric, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/research) +"fq" = ( +/obj/structure/table/steel_reinforced, +/obj/effect/floor_decal/milspec/color/black, +/turf/simulated/floor/tiled/dark, +/area/security/armoury) +"fr" = ( +/turf/simulated/wall/bay/r_wall/brown, +/area/stellardelight/deck1/dorms/dorm3) +"fs" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/alarm/angled, +/turf/simulated/floor/tiled/steel_grid, +/area/maintenance/stellardelight/deck1/starboardaft) +"ft" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 1 + }, +/obj/effect/floor_decal/milspec/color/red/half{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/security/tactical) +"fu" = ( +/obj/structure/bed/chair/sofa/corp/right, +/turf/simulated/floor/carpet/purcarpet, +/area/stellardelight/deck1/dorms/dorm3) +"fv" = ( +/obj/random/slimecore, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"fw" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/machinery/door/blast/angled/open{ + dir = 2; + id = "brigwindowlockdown" + }, +/obj/structure/low_wall/bay/reinforced/steel, +/turf/simulated/floor, +/area/prison/cell_block) +"fx" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris, +/area/stellardelight/deck1/researchequip) +"fy" = ( +/obj/item/weapon/clipboard, +/obj/item/weapon/folder/red, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/stamp/ward, +/obj/item/weapon/stamp/denied{ + pixel_x = 5 + }, +/obj/item/weapon/pen, +/obj/structure/table/steel_reinforced, +/obj/item/device/radio/intercom{ + pixel_y = -24 + }, +/turf/simulated/floor/tiled/dark, +/area/security/warden) +"fz" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/stellardelight/deck1/starboard) +"fB" = ( +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/random/maintenance/security, +/obj/random/maintenance/research, +/obj/random/contraband, +/obj/random/snack, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/starboardfore) +"fD" = ( +/obj/structure/closet/secure_closet/pathfinder, +/obj/item/device/bluespaceradio/sd_prelinked, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/pathfinder) +"fE" = ( +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/exploration) +"fF" = ( +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/camera/network/security{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/security/security_cell_hallway) +"fG" = ( +/obj/structure/table/steel_reinforced, +/obj/item/device/gps/security{ + pixel_y = 3 + }, +/obj/item/device/gps/security{ + pixel_x = -3 + }, +/obj/effect/floor_decal/milspec/color/red, +/turf/simulated/floor/tiled/dark, +/area/security/tactical) +"fH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/stellardelight/deck1/resleeving) +"fI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/security/warden) +"fJ" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/angled_bay/standard/color{ + door_color = "#ffffff"; + fill_color = "#ead9ff"; + name = "Mech Bay"; + req_access = list(29,47); + stripe_color = "#5a19a8" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/assembly/robotics) +"fK" = ( +/obj/machinery/mineral/equipment_vendor, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/oreprocessing) +"fL" = ( +/obj/machinery/firealarm/angled, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/stellardelight/deck1/resleeving) +"fM" = ( +/obj/structure/closet/l3closet/scientist, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/power/apc/angled{ + dir = 1 + }, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "0-2" + }, +/obj/item/clothing/suit/bio_suit/scientist, +/obj/item/clothing/head/bio_hood/scientist, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/xenobiology) +"fN" = ( +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 2 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/newscaster{ + pixel_y = 28 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/starboard) +"fO" = ( +/turf/simulated/wall/bay/r_wall{ + desc = "It has a steel stripe! A huge chunk of metal used to seperate rooms."; + stripe_color = "#3d5e80" + }, +/area/stellardelight/deck1/aft) +"fP" = ( +/obj/machinery/power/pointdefense{ + id_tag = "sd_pd" + }, +/obj/effect/floor_decal/industrial/warning/full, +/obj/structure/cable/pink{ + icon_state = "0-2" + }, +/obj/structure/cable/pink{ + icon_state = "0-4" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck1/exterior) +"fQ" = ( +/obj/structure/cable/green{ + color = "#42038a" + }, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "0-2" + }, +/obj/machinery/power/smes/buildable{ + RCon_tag = "Substation - Exploration"; + output_attempt = 0 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/substation/exploration) +"fR" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/assembly/robotics) +"fS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 5 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/aft) +"fT" = ( +/obj/structure/cable/pink{ + icon_state = "2-8" + }, +/obj/structure/cable/pink{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/security/security_cell_hallway) +"fU" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/door/firedoor/glass, +/obj/structure/window/reinforced, +/obj/machinery/door/blast/angled/open{ + dir = 2; + id = "securitylockdown" + }, +/obj/effect/floor_decal/milspec/color/red, +/obj/item/device/flashlight/lamp, +/turf/simulated/floor/tiled/dark, +/area/security/lobby) +"fV" = ( +/obj/machinery/light/small, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"fW" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"fX" = ( +/obj/structure/table/woodentable, +/obj/machinery/alarm/angled, +/obj/machinery/librarypubliccomp, +/turf/simulated/floor/wood, +/area/library) +"fZ" = ( +/obj/machinery/camera/network/civilian{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/chapel_morgue) +"ga" = ( +/obj/machinery/power/pointdefense{ + id_tag = "sd_pd" + }, +/obj/effect/floor_decal/industrial/warning/full, +/obj/structure/cable/orange, +/turf/simulated/floor/airless, +/area/stellardelight/deck1/exterior) +"gb" = ( +/obj/structure/cable/pink{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/security/security_equiptment_storage) +"gc" = ( +/obj/machinery/power/pointdefense{ + id_tag = "sd_pd" + }, +/obj/effect/floor_decal/industrial/warning/full, +/obj/structure/cable/pink{ + icon_state = "0-4" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck1/exterior) +"gd" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/double/glass{ + name = "glass airlock" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck1/starboard) +"ge" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/structure/low_wall/bay/reinforced/steel, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/starboardfore) +"gf" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/standard/color{ + door_color = "#9c9c9c"; + fill_color = "#5c5c5c"; + id_tag = "dorm5"; + name = "Room 5"; + stripe_color = "#89bd66" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck1/dorms/dorm5) +"gg" = ( +/obj/effect/landmark/start/xenobio, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology) +"gh" = ( +/obj/structure/bed/chair/backed_red{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/exploration) +"gi" = ( +/obj/machinery/camera/network/civilian{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"gj" = ( +/obj/structure/stairs/spawner/south, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor, +/area/stellardelight/deck1/fore) +"gk" = ( +/obj/machinery/light/floortube{ + dir = 8; + pixel_x = -6 + }, +/turf/simulated/floor/tiled/eris, +/area/rnd/xenobiology/xenoflora) +"gl" = ( +/obj/machinery/camera/network/research/xenobio{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/xenobiology) +"gm" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/sign/painting/chapel_secure{ + pixel_y = 32 + }, +/obj/effect/landmark/start/chaplain, +/turf/simulated/floor/carpet, +/area/chapel/main) +"gn" = ( +/obj/structure/bed/chair/backed_red, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/aft) +"go" = ( +/obj/structure/cable/pink{ + 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/dark, +/area/security/security_cell_hallway) +"gp" = ( +/obj/structure/closet/crate, +/obj/machinery/camera/network/mining{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/oreprocessing) +"gq" = ( +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 2 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/aft) +"gr" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/port) +"gs" = ( +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/device/multitool, +/obj/item/clothing/head/welding, +/obj/item/weapon/storage/belt/utility, +/obj/item/device/radio/off, +/obj/item/device/radio/off, +/obj/item/device/radio/off, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = -7 + }, +/obj/item/weapon/storage/toolbox/electrical{ + pixel_x = 1; + pixel_y = -1 + }, +/obj/structure/closet/walllocker_double/north, +/obj/item/device/assembly/signaler, +/obj/item/device/assembly/signaler, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/white/gray_platform, +/area/gateway) +"gt" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-8" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/exploration) +"gu" = ( +/obj/structure/table/steel, +/obj/machinery/recharger, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/workshop) +"gw" = ( +/obj/structure/closet/crate, +/obj/random/maintenance, +/obj/random/maintenance/cargo, +/obj/random/maintenance/clean, +/obj/random/mre, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/exploration) +"gx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/eris/white/gray_platform, +/area/gateway) +"gy" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/security/lobby) +"gz" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/starboardcent) +"gC" = ( +/obj/structure/table/steel, +/obj/item/device/sleevemate, +/obj/item/device/camera{ + name = "Autopsy Camera"; + pixel_x = -2; + pixel_y = 7 + }, +/obj/machinery/alarm/angled, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/techfloor, +/area/medical/morgue) +"gD" = ( +/obj/structure/flora/pottedplant/decorative, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/stellardelight/deck1/resleeving) +"gE" = ( +/obj/structure/closet/wardrobe/chaplain_black, +/obj/item/weapon/storage/fancy/crayons, +/obj/item/weapon/flame/candle/candelabra, +/obj/item/weapon/flame/candle/candelabra, +/obj/item/weapon/flame/candle/candelabra, +/obj/item/weapon/flame/candle/candelabra, +/obj/item/weapon/reagent_containers/food/drinks/bottle/holywater, +/obj/item/weapon/nullrod, +/obj/item/weapon/deck/tarot, +/obj/item/device/retail_scanner/civilian, +/turf/simulated/floor/lino, +/area/chapel/office) +"gF" = ( +/obj/machinery/alarm/angled{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/exam_room) +"gG" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/angled_bay/hatch{ + dir = 4; + name = "maintenance access"; + stripe_color = "#454545" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/maintenance/stellardelight/deck1/portcent) +"gH" = ( +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck1/exterior) +"gI" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/stellardelight/deck1/shower) +"gK" = ( +/obj/structure/table/woodentable, +/obj/machinery/alarm/angled{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/stellardelight/deck1/dorms/dorm1) +"gL" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/angled{ + id = "GatewayShutter" + }, +/turf/simulated/floor/tiled/eris/white/gray_platform, +/area/gateway) +"gM" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/angled_bay/standard/color{ + door_color = "#ffffff"; + fill_color = "#ead9ff"; + name = "Research and Development"; + req_access = list(7); + stripe_color = "#5a19a8" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/rnd/research) +"gO" = ( +/obj/structure/bed/chair/bay/shuttle{ + dir = 4 + }, +/obj/machinery/power/apc/angled{ + cell_type = /obj/item/weapon/cell/super; + dir = 8; + req_access = list(31,5) + }, +/obj/structure/cable/yellow, +/obj/machinery/light/floortube{ + dir = 8; + pixel_x = -6 + }, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/stellardelight/deck1/miningshuttle) +"gP" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-8" + }, +/turf/simulated/wall/bay/r_wall/steel, +/area/maintenance/stellardelight/deck1/starboardcent) +"gQ" = ( +/turf/simulated/wall/bay/brown, +/area/stellardelight/deck1/oreprocessing) +"gS" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/explobriefing) +"gT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/virology) +"gU" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/assembly/robotics) +"gV" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/substation/exploration) +"gW" = ( +/obj/structure/cable/pink{ + icon_state = "1-2" + }, +/obj/structure/cable/pink{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/security_cell_hallway) +"gX" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "4-8" + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/xenobiology) +"gY" = ( +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/portcent) +"gZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/white/cargo, +/area/medical/virology) +"ha" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/standard/color{ + dir = 4; + door_color = "#323d80"; + fill_color = "#313866"; + id_tag = "rddoor"; + name = "Server Room"; + req_access = list(30); + stripe_color = "#5a19a8" + }, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck1/researchserver) +"hb" = ( +/obj/structure/cable/pink{ + icon_state = "0-2" + }, +/obj/structure/cable/pink, +/obj/machinery/power/smes/buildable{ + RCon_tag = "Substation - Security"; + output_attempt = 0 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/substation/security) +"hc" = ( +/obj/structure/closet/firecloset, +/turf/simulated/floor, +/area/maintenance/security_port) +"hd" = ( +/obj/structure/closet/secure_closet/scientist, +/turf/simulated/floor/tiled/dark, +/area/stellardelight/deck1/researchequip) +"he" = ( +/obj/structure/cable/pink{ + icon_state = "1-8" + }, +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/lobby) +"hg" = ( +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/aft) +"hi" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/computer/shuttle_control/explore/stellardelight/mining{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/oreprocessing) +"hj" = ( +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"hk" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/port) +"hl" = ( +/obj/structure/cable/pink{ + icon_state = "2-8" + }, +/obj/structure/table/bench/standard, +/obj/effect/floor_decal/milspec/color/orange/half{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/prison/cell_block/B) +"hm" = ( +/obj/machinery/autolathe{ + hacked = 1 + }, +/obj/machinery/firealarm/angled, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/research) +"ho" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/exploration) +"hp" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/double/glass{ + name = "glass airlock" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck1/port) +"hq" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -25; + pixel_y = -24 + }, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/xenobiology) +"hr" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/machinery/firealarm/angled{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris, +/area/rnd/xenobiology/xenoflora_storage) +"hs" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/stellardelight/deck1/resleeving) +"ht" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/aft) +"hu" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/weapon/gun/energy/gun{ + pixel_y = 7 + }, +/obj/item/weapon/gun/energy/gun{ + pixel_y = -5 + }, +/obj/effect/floor_decal/milspec/color/black, +/turf/simulated/floor/tiled/dark, +/area/security/armoury) +"hv" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/stellardelight/deck1/resleeving) +"hw" = ( +/obj/machinery/power/pointdefense{ + id_tag = "sd_pd" + }, +/obj/effect/floor_decal/industrial/warning/full, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "0-4" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck1/exterior) +"hx" = ( +/obj/machinery/access_button{ + command = "cycle_exterior"; + dir = 8; + frequency = 1379; + master_tag = "xenobio_airlock_control"; + name = "Xenobiology Access Button"; + pixel_y = 32; + req_access = null; + req_one_access = list(47,55) + }, +/obj/machinery/door/airlock/angled_bay/standard/color{ + autoclose = 0; + dir = 4; + door_color = "#ffffff"; + fill_color = "#ead9ff"; + frequency = 1379; + id_tag = "xenobio_airlock_exterior"; + locked = 1; + name = "Xenobiology Lab"; + req_access = list(47,55); + stripe_color = "#5a19a8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/xenobiology) +"hy" = ( +/obj/structure/bed/chair/bay/shuttle{ + dir = 4 + }, +/obj/machinery/light/floortube{ + dir = 8; + pixel_x = -6 + }, +/turf/simulated/floor/tiled/eris/steel/gray_platform, +/area/stellardelight/deck1/exploshuttle) +"hz" = ( +/obj/structure/dispenser{ + phorontanks = 0 + }, +/obj/machinery/camera/network/command{ + dir = 10 + }, +/turf/simulated/floor/tiled/eris/white/gray_platform, +/area/gateway) +"hA" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/oreprocessing) +"hB" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/window/southleft{ + name = "Server Room"; + req_access = list(30) + }, +/obj/machinery/door/window/northleft{ + name = "Server Room"; + req_access = list(30) + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden, +/turf/simulated/floor/tiled/techfloor/grid, +/area/stellardelight/deck1/researchserver) +"hC" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/weapon/cell/device/weapon{ + pixel_y = -2 + }, +/obj/item/weapon/cell/device/weapon{ + pixel_y = -8 + }, +/obj/item/weapon/cell/device/weapon{ + pixel_y = 4 + }, +/obj/item/weapon/cell/device/weapon{ + pixel_y = 11 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 8 + }, +/obj/effect/floor_decal/milspec/color/black, +/turf/simulated/floor/tiled/dark, +/area/security/armoury) +"hD" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck1/exterior) +"hE" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "2-8" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck1/exterior) +"hF" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/angled_bay/standard/glass{ + dir = 4; + door_color = "#8c1d11"; + name = "Equipment Storage"; + req_access = list(1); + stripe_color = "#d27428" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/security/security_lockerroom) +"hG" = ( +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 8 + }, +/obj/structure/sign/directions/security{ + dir = 1; + pixel_x = 32; + pixel_y = 10 + }, +/obj/structure/sign/directions/chapel{ + dir = 8; + pixel_x = 32; + pixel_y = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/fore) +"hH" = ( +/obj/machinery/door/blast/angled{ + id = "GatewayShutter" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/eris/white/gray_platform, +/area/gateway) +"hI" = ( +/obj/structure/table/rack, +/obj/random/maintenance/security, +/obj/random/maintenance/clean, +/obj/random/maintenance, +/obj/random/contraband, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/starboardcent) +"hJ" = ( +/turf/simulated/wall/bay/white, +/area/medical/virology) +"hK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/stellardelight/deck1/dorms/dorm3) +"hL" = ( +/obj/effect/floor_decal/steeldecal/steel_decals3, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 6 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/port) +"hM" = ( +/obj/structure/cable/green{ + color = "#42038a"; + 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 = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/research) +"hN" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/item/device/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/starboard) +"hO" = ( +/obj/item/weapon/weldingtool, +/obj/item/clothing/glasses/welding, +/obj/item/weapon/storage/box/lights/mixed, +/obj/structure/closet/walllocker_double/north, +/obj/item/device/multitool, +/obj/structure/sink/kitchen{ + dir = 4; + pixel_x = 11 + }, +/obj/machinery/firealarm/angled{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/xenobiology) +"hP" = ( +/obj/structure/morgue{ + dir = 2 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/techfloor, +/area/medical/morgue) +"hQ" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/security/security_processing) +"hR" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/machinery/power/apc/angled{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/port) +"hS" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/sign/department/biblio{ + pixel_x = 32; + plane = -34 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/fore) +"hT" = ( +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/lobby) +"hU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/fore) +"hV" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/assembly/robotics) +"hW" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/status_display{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/starboard) +"hX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/white/gray_platform, +/area/gateway) +"hY" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/angled{ + dir = 4; + id = "GatewayShutterW" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/gateway) +"hZ" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/closet/bombcloset, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology) +"ib" = ( +/obj/machinery/power/pointdefense{ + id_tag = "sd_pd" + }, +/obj/effect/floor_decal/industrial/warning/full, +/obj/structure/cable/orange{ + icon_state = "0-2" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck1/exterior) +"ic" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/orange, +/obj/effect/floor_decal/milspec/color/orange/half{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/prison/cell_block/B) +"id" = ( +/obj/machinery/camera/network/halls{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/starboard) +"ie" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 10 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/starboard) +"if" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/exploration) +"ig" = ( +/obj/effect/floor_decal/industrial/loading, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/assembly/robotics) +"ih" = ( +/obj/structure/table/reinforced, +/turf/simulated/floor/tiled/eris/steel/gray_platform, +/area/stellardelight/deck1/exploshuttle) +"ii" = ( +/obj/random/maintenance/security, +/obj/random/medical, +/obj/structure/table/rack, +/obj/random/maintenance/security, +/obj/random/maintenance, +/obj/random/snack, +/turf/simulated/floor, +/area/maintenance/security_port) +"ik" = ( +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/machinery/power/apc/angled{ + dir = 8; + name = "night shift APC"; + nightshift_setting = 2 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/stellardelight/deck1/lowermed) +"il" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/obj/random/maintenance/clean, +/obj/random/contraband, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/starboardaft) +"im" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck1/starboard) +"in" = ( +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/machinery/power/apc/angled{ + dir = 1; + name = "night shift APC"; + nightshift_setting = 2 + }, +/obj/structure/undies_wardrobe, +/turf/simulated/floor/tiled/white, +/area/stellardelight/deck1/shower) +"io" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 20 + }, +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 29 + }, +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 38 + }, +/turf/simulated/floor/tiled/dark, +/area/security/security_cell_hallway) +"ip" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/stellardelight/deck1/resleeving) +"iq" = ( +/turf/simulated/floor/wood, +/area/library) +"ir" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/stellardelight/deck1/resleeving) +"is" = ( +/obj/structure/cable/pink{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/pink{ + icon_state = "2-8" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/portfore) +"it" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock{ + name = "Unisex Showers" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck1/shower) +"iv" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled/eris, +/area/rnd/xenobiology/xenoflora_storage) +"iw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris, +/area/stellardelight/deck1/researchequip) +"ix" = ( +/obj/structure/cable/green{ + 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/dark, +/area/chapel/main) +"iy" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/starboardcent) +"iz" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/library) +"iA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/starboardcent) +"iB" = ( +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/stellardelight/deck1/lowermed) +"iC" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "4-8" + }, +/turf/simulated/wall/bay/r_wall/purple, +/area/rnd/xenobiology) +"iD" = ( +/obj/structure/cable/pink{ + icon_state = "2-4" + }, +/obj/structure/table/bench/standard, +/obj/effect/floor_decal/milspec/color/orange/half{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/prison/cell_block/C) +"iE" = ( +/obj/structure/sign/painting/library_private{ + pixel_x = -32 + }, +/obj/structure/sign/painting/library_private{ + pixel_y = -32 + }, +/obj/item/weapon/storage/briefcase, +/obj/item/weapon/storage/briefcase, +/obj/structure/table/rack, +/turf/simulated/floor/wood, +/area/library) +"iF" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/door/airlock/angled_bay/standard/color{ + dir = 4; + door_color = "#9c9c9c"; + fill_color = "#5c5c5c"; + name = "Custodial Closet"; + req_access = list(26); + stripe_color = "#89bd66" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/janitor) +"iG" = ( +/obj/structure/closet/wardrobe/virology_white, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/alarm/angled, +/obj/machinery/camera/network/medbay{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/white/cargo, +/area/medical/virology) +"iH" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "2-4" + }, +/obj/effect/shuttle_landmark/shuttle_initializer/exploration, +/turf/simulated/floor/tiled/eris/steel/gray_platform, +/area/stellardelight/deck1/exploshuttle) +"iI" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/port) +"iJ" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/camera/network/halls{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/aft) +"iK" = ( +/obj/structure/table/woodentable, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/item/weapon/paper_bin{ + pixel_y = 7 + }, +/obj/item/weapon/pen{ + pixel_y = 6 + }, +/obj/random/coin/sometimes, +/turf/simulated/floor/wood, +/area/library) +"iL" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 5 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/aft) +"iM" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/door/airlock/angled_bay/hatch{ + dir = 4; + door_color = "#ffffff"; + name = "maintenance access"; + req_one_access = null; + stripe_color = "#5a19a8" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/maintenance/stellardelight/deck1/starboardaft) +"iN" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/structure/low_wall/bay/reinforced/steel, +/turf/simulated/floor, +/area/chapel/main) +"iO" = ( +/obj/structure/table/steel, +/obj/item/weapon/folder/red{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/item/weapon/folder/red, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/alarm/angled, +/turf/simulated/floor/tiled/dark, +/area/security/security_processing) +"iQ" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/exploration) +"iS" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/station_map{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/aft) +"iT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/carpet, +/area/stellardelight/deck1/dorms/dorm4) +"iU" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/exploration) +"iV" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/machinery/door/blast/angled/open{ + dir = 2; + id = "researchwindowlockdown" + }, +/obj/structure/low_wall/bay/reinforced/steel, +/turf/simulated/floor, +/area/rnd/xenobiology/xenoflora) +"iW" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/flora/pottedplant/stoutbush, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/starboard) +"iX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/fore) +"iY" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + dir = 4; + frequency = 1380; + id_tag = "explodocker_bay"; + pixel_x = -24 + }, +/turf/simulated/floor/reinforced, +/area/stellardelight/deck1/shuttlebay) +"iZ" = ( +/obj/effect/floor_decal/milspec/color/red, +/obj/machinery/alarm/angled, +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled/dark, +/area/security/lobby) +"ja" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/flora/pottedplant/minitree, +/obj/machinery/alarm/angled, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/port) +"jb" = ( +/obj/machinery/door/blast/multi_tile/three_tile_ver{ + id = "xenospace2" + }, +/turf/simulated/floor/reinforced, +/area/rnd/workshop) +"jc" = ( +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -25 + }, +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/obj/effect/floor_decal/milspec/color/red/half, +/turf/simulated/floor/tiled/dark, +/area/security/security_lockerroom) +"jd" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck1/shower) +"jf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/camera/network/halls, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/fore) +"jg" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/camera/network/halls{ + dir = 8 + }, +/obj/effect/floor_decal/milspec/color/emerald/half{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/aft) +"jh" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/substation/civilian) +"ji" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/explobriefing) +"jj" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 4; + icon_state = "map_vent_out"; + use_power = 1 + }, +/turf/simulated/floor/bluegrid{ + name = "Server Base"; + nitrogen = 500; + oxygen = 0; + temperature = 80 + }, +/area/stellardelight/deck1/researchserver) +"jk" = ( +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/disposal/wall{ + dir = 8; + pixel_x = 24; + plane = -34 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology) +"jl" = ( +/obj/structure/table/steel, +/obj/item/device/retail_scanner/security, +/obj/item/device/taperecorder, +/obj/item/weapon/storage/box/evidence, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/firealarm/angled{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/security/security_processing) +"jm" = ( +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/alarm/angled{ + dir = 8 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/substation/atmospherics) +"jn" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/starboard) +"jo" = ( +/obj/machinery/button/crematorium{ + id = "crematorium"; + pixel_x = 25; + req_access = list(); + req_one_access = null + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/chapel_morgue) +"jp" = ( +/obj/structure/cable/orange{ + icon_state = "2-8" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/exploration) +"jq" = ( +/obj/structure/table/woodentable, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/item/weapon/storage/pill_bottle/dice_nerd, +/turf/simulated/floor/wood, +/area/library) +"jr" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/machinery/door/blast/angled/open{ + dir = 2; + id = "brigwindowlockdown" + }, +/obj/structure/low_wall/bay/reinforced/steel, +/turf/simulated/floor, +/area/prison/cell_block/B) +"js" = ( +/obj/structure/cable/pink{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"jt" = ( +/obj/structure/table/steel_reinforced, +/obj/item/device/suit_cooling_unit, +/obj/item/device/suit_cooling_unit, +/obj/item/weapon/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/item/weapon/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/effect/floor_decal/milspec/color/red, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/dark, +/area/security/tactical) +"ju" = ( +/obj/machinery/door/window/brigdoor/eastleft{ + name = "Slime Pen 5"; + req_access = list(55) + }, +/obj/machinery/door/window/brigdoor/westright{ + name = "Slime Pen 4"; + req_access = list(55) + }, +/obj/machinery/door/blast/angled/open{ + dir = 4; + id = "xenobiopen4"; + name = "Pen 4 Blast Doors" + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"jv" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/security/security_cell_hallway) +"jw" = ( +/obj/structure/cable/pink{ + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/starboardfore) +"jx" = ( +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/grille, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/blast/angled/open{ + dir = 4; + id = "xenobiopen1"; + name = "Pen 1 Blast Doors" + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology) +"jy" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/door/firedoor/glass, +/obj/structure/window/reinforced, +/obj/machinery/door/blast/angled/open{ + dir = 2; + id = "securitylockdown" + }, +/obj/effect/floor_decal/milspec/color/red, +/turf/simulated/floor/tiled/dark, +/area/security/lobby) +"jz" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/structure/curtain/black{ + anchored = 1 + }, +/obj/structure/low_wall/bay/reinforced/steel, +/turf/simulated/floor, +/area/stellardelight/deck1/dorms/dorm3) +"jA" = ( +/turf/simulated/floor/carpet/purcarpet, +/area/stellardelight/deck1/dorms/dorm3) +"jB" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"jC" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/wood, +/area/library) +"jD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/carpet, +/area/stellardelight/deck1/dorms/dorm8) +"jF" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/mining) +"jG" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/research) +"jH" = ( +/obj/machinery/door/firedoor/glass/hidden/steel, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/aft) +"jI" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/workshop) +"jJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/vending/nifsoft_shop, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck1/port) +"jK" = ( +/obj/machinery/door/window/southleft{ + dir = 8; + name = "Library Desk Door"; + req_access = list(37) + }, +/obj/machinery/button/remote/blast_door{ + id = "librarywindowlockdown"; + name = "Window Lockdown"; + pixel_y = 25; + req_access = null + }, +/turf/simulated/floor/carpet, +/area/library) +"jL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/carpet, +/area/library) +"jN" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-8" + }, +/turf/simulated/floor/reinforced, +/area/stellardelight/deck1/shuttlebay) +"jO" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/hatch{ + door_color = "#e6ab22"; + name = "Cargo Substation"; + req_one_access = list(10); + stripe_color = "#e6ab22" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/maintenance/stellardelight/substation/cargo) +"jP" = ( +/obj/machinery/gateway{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/white/gray_platform, +/area/gateway) +"jQ" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/assembly/robotics) +"jR" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/exploration) +"jS" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/pathfinder) +"jT" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/landmark/vines, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/aft) +"jV" = ( +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/alarm/angled{ + dir = 4 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/substation/security) +"jW" = ( +/obj/machinery/alarm/angled{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/effect/landmark/start/pilot, +/turf/simulated/floor/tiled/eris/steel/panels, +/area/stellardelight/deck1/pilot) +"jY" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/alarm/angled{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/fore) +"jZ" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/exploration) +"ka" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/rnd/storage) +"kc" = ( +/obj/machinery/power/breakerbox/activated{ + RCon_tag = "Civilian Substation Bypass" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/substation/civilian) +"kd" = ( +/obj/structure/flora/pottedplant/stoutbush, +/obj/machinery/alarm/angled, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/workshop) +"ke" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/alarm/angled{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/port) +"kf" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/exploration) +"kg" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/effect/landmark/start/explorer, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/explobriefing) +"kh" = ( +/obj/structure/cable/pink{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/pink{ + icon_state = "2-8" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/portfore) +"kj" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/sign/directions/janitor{ + dir = 8; + pixel_x = 32 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/port) +"kk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/lino, +/area/chapel/office) +"kl" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/milspec/color/emerald/half{ + dir = 4 + }, +/obj/machinery/station_map{ + dir = 8; + pixel_x = 32 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/aft) +"km" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/portcent) +"kn" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 4 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/stellardelight/deck1/starboard) +"ko" = ( +/obj/machinery/alarm/angled{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/chapel_morgue) +"kp" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/floor/tiled, +/area/rnd/storage) +"kq" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/closet/emcloset, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/starboardaft) +"kr" = ( +/obj/machinery/power/breakerbox/activated{ + RCon_tag = "Research Substation Bypass" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/substation/research) +"ks" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/purple{ + dir = 4 + }, +/obj/effect/floor_decal/milspec/color/black, +/turf/simulated/floor/tiled/dark, +/area/security/armoury) +"kt" = ( +/obj/effect/floor_decal/chapel{ + dir = 4 + }, +/obj/structure/bed/chair/sofa/pew/right{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"ku" = ( +/obj/structure/disposaloutlet{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/light, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"kv" = ( +/obj/structure/sign/deck1{ + pixel_x = 32 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/milspec/color/emerald/half{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/aft) +"kw" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 8 + }, +/obj/effect/landmark/start/visitor, +/turf/simulated/floor/wood, +/area/library) +"kx" = ( +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/random/maintenance/clean, +/obj/random/contraband, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/portfore) +"ky" = ( +/obj/machinery/firealarm/angled{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/toilet) +"kz" = ( +/obj/machinery/computer/message_monitor{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck1/researchserver) +"kA" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/double{ + name = "maintenance access"; + stripe_color = "#454545" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/exploration) +"kB" = ( +/turf/simulated/wall/bay/r_wall/black, +/area/maintenance/security_port) +"kC" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris, +/area/rnd/xenobiology/xenoflora) +"kE" = ( +/obj/machinery/gateway{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/white/gray_platform, +/area/gateway) +"kG" = ( +/obj/machinery/computer/security{ + dir = 8 + }, +/obj/effect/floor_decal/milspec/color/red/half{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/security/lobby) +"kH" = ( +/obj/structure/dispenser/oxygen, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/miningequipment) +"kI" = ( +/obj/machinery/door/window/brigdoor/eastleft{ + name = "Slime Pen 3"; + req_access = list(55) + }, +/obj/machinery/door/window/brigdoor/westright{ + name = "Slime Pen 3"; + req_access = list(55) + }, +/obj/machinery/door/blast/angled/open{ + dir = 4; + id = "xenobiopen3"; + name = "Pen 3 Blast Doors" + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"kJ" = ( +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck1/exterior) +"kK" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/stellardelight/deck1/shower) +"kL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/carpet, +/area/stellardelight/deck1/dorms/dorm1) +"kM" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/closet/emcloset, +/obj/item/device/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck1/starboard) +"kN" = ( +/obj/machinery/door/blast/multi_tile/three_tile_ver{ + id = "xenospace4" + }, +/turf/simulated/floor/reinforced, +/area/rnd/workshop) +"kO" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/explobriefing) +"kP" = ( +/turf/simulated/wall/bay/r_wall/steel, +/area/rnd/storage) +"kQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/toilet) +"kS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/security/security_cell_hallway) +"kT" = ( +/obj/machinery/power/apc/angled{ + dir = 4 + }, +/obj/structure/cable/pink{ + icon_state = "0-8" + }, +/obj/machinery/camera/network/security, +/obj/machinery/computer/arcade, +/obj/effect/floor_decal/milspec/color/orange/half{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/prison/cell_block/C) +"kU" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/port) +"kY" = ( +/obj/structure/cable/pink{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable/pink{ + icon_state = "2-8" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/portcent) +"la" = ( +/obj/machinery/smartfridge/secure/extract, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/xenobiology) +"lb" = ( +/obj/machinery/door/blast/angled{ + id = "xenobiodiv3"; + name = "Divider 3 Blast Door" + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"lc" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck1/starboard) +"ld" = ( +/obj/structure/table/steel, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/obj/random/maintenance, +/obj/random/contraband, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/portaft) +"le" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/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/eris/steel/cargo, +/area/stellardelight/deck1/mining) +"lf" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/aft) +"lg" = ( +/obj/effect/shuttle_landmark/premade/sd/deck1/starboard, +/turf/space, +/area/space) +"lh" = ( +/obj/effect/floor_decal/chapel{ + dir = 1 + }, +/obj/structure/bed/chair/sofa/pew/left{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"li" = ( +/obj/structure/closet/secure_closet/personal, +/obj/machinery/firealarm/angled{ + dir = 8 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/stellardelight/deck1/dorms/dorm6) +"lk" = ( +/obj/machinery/computer/transhuman/resleeving{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/assembly/robotics) +"ll" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/eris/white/gray_platform, +/area/gateway) +"lm" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/substation/medical) +"ln" = ( +/obj/machinery/door/window/brigdoor/eastleft{ + name = "Slime Pen 1"; + req_access = list(55) + }, +/obj/machinery/door/window/brigdoor/westright{ + name = "Slime Pen 1"; + req_access = list(55) + }, +/obj/machinery/door/blast/angled/open{ + dir = 4; + id = "xenobiopen1"; + name = "Pen 1 Blast Doors" + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"lo" = ( +/obj/structure/table/woodentable, +/obj/item/device/camera_film, +/obj/item/device/camera_film, +/obj/item/device/taperecorder, +/turf/simulated/floor/carpet, +/area/library) +"lp" = ( +/obj/effect/floor_decal/borderfloorblack/full, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/flasher/portable, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/tiled/dark, +/area/security/armoury) +"lq" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/angled_bay/hatch{ + door_color = "#e6ab22"; + name = "Security Substation"; + req_one_access = list(10); + stripe_color = "#e6ab22" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/maintenance/stellardelight/substation/security) +"lr" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/closet/crate/trashcart, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/portcent) +"ls" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/sign/directions/dorms{ + dir = 6; + pixel_x = -32; + pixel_y = 6 + }, +/obj/structure/sign/directions/science{ + dir = 4; + pixel_x = -32 + }, +/obj/structure/sign/directions{ + desc = "A direction sign, pointing out the way to Exploration."; + name = "\improper Exploration Department"; + pixel_x = -32; + pixel_y = -6 + }, +/obj/structure/sign/directions/janitor{ + pixel_x = -32; + pixel_y = -12 + }, +/obj/machinery/camera/network/halls{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/port) +"lt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/newscaster{ + pixel_y = 28 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/aft) +"lu" = ( +/obj/structure/table/standard, +/obj/item/weapon/book/manual/resleeving, +/obj/item/weapon/storage/box/backup_kit, +/obj/structure/extinguisher_cabinet{ + dir = 8; + pixel_x = 30 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel, +/area/assembly/robotics) +"lv" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/effect/landmark/start/visitor, +/turf/simulated/floor/carpet/bcarpet, +/area/stellardelight/deck1/port) +"lw" = ( +/obj/structure/bed/chair/backed_red{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/exploration) +"lx" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/substation/civilian) +"ly" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 5 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/starboard) +"lz" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/angled_bay/standard/color{ + dir = 4; + door_color = "#9fccc7"; + fill_color = "#333333"; + name = "Pilot Equipment"; + req_access = list(67); + stripe_color = "#ffffff" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck1/pilot) +"lA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/firealarm/angled, +/obj/structure/ore_box, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/shuttlebay) +"lB" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/firealarm/angled, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/floor_decal/milspec/color/red, +/obj/item/weapon/storage/box/donut, +/turf/simulated/floor/tiled/dark, +/area/security/lobby) +"lC" = ( +/obj/item/weapon/bedsheet/bluedouble, +/obj/structure/bed/double/padded, +/obj/structure/curtain/black, +/turf/simulated/floor/carpet, +/area/stellardelight/deck1/dorms/dorm8) +"lD" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck1/starboard) +"lF" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals6, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/fore) +"lG" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/research) +"lH" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris, +/area/stellardelight/deck1/researchequip) +"lI" = ( +/obj/structure/cable/orange{ + icon_state = "2-4" + }, +/obj/machinery/power/sensor{ + name = "Powernet Sensor - Atmospherics Subgrid"; + name_tag = "Atmospherics Subgrid" + }, +/obj/structure/cable/orange{ + icon_state = "0-2" + }, +/obj/machinery/power/apc/angled{ + dir = 8; + name = "night shift APC"; + nightshift_setting = 2 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/substation/atmospherics) +"lJ" = ( +/obj/effect/floor_decal/borderfloorblack/full, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/flasher/portable, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/security/armoury) +"lK" = ( +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/disposal/wall{ + dir = 8; + pixel_x = 24; + plane = -34 + }, +/obj/machinery/button/remote/blast_door{ + id = "xenospace2"; + name = "2 Space Door"; + pixel_x = 10; + pixel_y = 21; + req_access = list(55) + }, +/obj/machinery/alarm/angled, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology) +"lM" = ( +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/sign/department/biblio{ + pixel_x = 32; + plane = -34 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/fore) +"lN" = ( +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/storage) +"lO" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/angled_bay/standard/glass{ + dir = 4; + door_color = "#333333"; + name = "Exploration Equipment Room"; + req_one_access = list(19,43,66); + stripe_color = "#5a19a8" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck1/exploequipment) +"lP" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/shuttlebay) +"lQ" = ( +/obj/structure/table/steel, +/obj/item/weapon/reagent_containers/spray/cleaner, +/obj/item/weapon/reagent_containers/spray/cleaner, +/turf/simulated/floor/tiled/monotile, +/area/janitor) +"lR" = ( +/obj/structure/stairs/spawner/north, +/obj/structure/railing/grey{ + dir = 8 + }, +/turf/simulated/floor, +/area/stellardelight/deck1/aft) +"lS" = ( +/obj/structure/cable/pink{ + icon_state = "1-8" + }, +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/security/tactical) +"lT" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-2" + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/starboardaft) +"lU" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/dark, +/area/security/security_cell_hallway) +"lV" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/closet/emcloset, +/obj/machinery/alarm/angled, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/shuttlebay) +"lW" = ( +/obj/machinery/camera/network/research{ + dir = 1 + }, +/obj/structure/table/glass, +/obj/machinery/chemical_dispenser/xenoflora/full, +/turf/simulated/floor/tiled/eris, +/area/rnd/xenobiology/xenoflora) +"lX" = ( +/obj/structure/closet/secure_closet/paramedic, +/obj/machinery/firealarm/angled{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/stellardelight/deck1/paramedic) +"lY" = ( +/obj/machinery/alarm/angled{ + dir = 4 + }, +/obj/structure/table/rack, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/obj/random/maintenance/security, +/obj/random/maintenance/clean, +/obj/random/maintenance, +/obj/random/contraband, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/starboardcent) +"lZ" = ( +/obj/structure/table/glass, +/obj/machinery/computer/med_data/laptop{ + dir = 4 + }, +/obj/item/device/radio{ + anchored = 1; + canhear_range = 7; + frequency = 1487; + icon = 'icons/obj/items.dmi'; + icon_state = "red_phone"; + name = "Virology Emergency Phone"; + pixel_x = 7; + pixel_y = 9 + }, +/obj/machinery/button/remote/blast_door{ + desc = "A remote control-switch for shutters."; + dir = 4; + id = "virologyquar"; + name = "Virology Emergency Lockdown Control"; + pixel_x = -28; + pixel_y = 5; + req_access = list(5) + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/virology) +"ma" = ( +/obj/structure/table/steel, +/obj/random/contraband, +/obj/random/maintenance/research, +/obj/random/maintenance, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/exploration) +"mb" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/reinforced, +/area/stellardelight/deck1/shuttlebay) +"mc" = ( +/obj/item/weapon/grenade/chem_grenade/cleaner, +/obj/item/weapon/grenade/chem_grenade/cleaner, +/obj/item/weapon/grenade/chem_grenade/cleaner, +/obj/structure/table/steel, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/disposal/wall{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/janitor) +"md" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/machinery/alarm/angled{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/pathfinder) +"me" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/carpet, +/area/library) +"mf" = ( +/obj/structure/closet/secure_closet/pilot, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/eris/steel/panels, +/area/stellardelight/deck1/pilot) +"mg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/bed/chair/office/dark, +/obj/effect/landmark/start/detective, +/turf/simulated/floor/tiled/white, +/area/security/detectives_office) +"mh" = ( +/obj/structure/cable/white{ + 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/white, +/area/medical/patient_wing) +"mi" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/eris, +/area/stellardelight/deck1/researchhall) +"mj" = ( +/obj/structure/cable/pink{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -24; + pixel_y = -25 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/security/security_processing) +"mk" = ( +/obj/effect/floor_decal/chapel{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"ml" = ( +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/machinery/power/apc/angled{ + dir = 1; + name = "night shift APC"; + nightshift_setting = 2 + }, +/turf/simulated/floor/tiled/eris/steel/panels, +/area/stellardelight/deck1/pilot) +"mm" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/starboard) +"mn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/floor_decal/milspec/color/orange/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/prison/cell_block/C) +"mo" = ( +/obj/structure/bookcase{ + name = "bookcase (Fiction)" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/sign/painting/library_secure{ + pixel_x = -30 + }, +/obj/item/weapon/book/bundle/custom_library/fiction/apurrrrfectman, +/obj/item/weapon/book/bundle/custom_library/fiction/beyondthedoor, +/obj/item/weapon/book/bundle/custom_library/fiction/chroniclesofmargatavol1, +/obj/item/weapon/book/bundle/custom_library/fiction/coldmountain, +/obj/item/weapon/book/bundle/custom_library/fiction/ghostship, +/obj/item/weapon/book/bundle/custom_library/fiction/manfromsnowyriver, +/obj/item/weapon/book/bundle/custom_library/fiction/metalglen, +/obj/item/weapon/book/bundle/custom_library/fiction/poemsforarainyday, +/obj/item/weapon/book/bundle/custom_library/fiction/raissue142, +/obj/item/weapon/book/bundle/custom_library/fiction/raissue147, +/obj/item/weapon/book/bundle/custom_library/fiction/silence, +/obj/item/weapon/book/bundle/custom_library/fiction/taleoftherainbowcat, +/obj/item/weapon/book/custom_library/fiction/blacksmithandkinglybloke, +/obj/item/weapon/book/custom_library/fiction/irishairmanforseesdeath, +/obj/item/weapon/book/custom_library/fiction/myrock, +/obj/item/weapon/book/custom_library/fiction/starsandsometimesfallingones, +/obj/item/weapon/book/custom_library/fiction/truelovehathmyheart, +/turf/simulated/floor/wood, +/area/library) +"mr" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/aft) +"ms" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/port) +"mt" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris, +/area/stellardelight/deck1/researchequip) +"mu" = ( +/turf/simulated/floor/tiled/dark, +/area/security/lobby) +"mv" = ( +/obj/structure/janitorialcart, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/clothing/suit/caution, +/obj/item/clothing/suit/caution, +/obj/item/clothing/suit/caution, +/obj/item/clothing/suit/caution, +/obj/item/device/lightreplacer, +/obj/structure/mopbucket, +/obj/item/weapon/reagent_containers/glass/bucket, +/obj/item/weapon/mop, +/obj/item/weapon/storage/bag/trash, +/obj/item/weapon/soap/nanotrasen, +/turf/simulated/floor/tiled/monotile, +/area/janitor) +"mw" = ( +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -25 + }, +/obj/effect/floor_decal/milspec/color/red/half{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/security/detectives_office) +"mx" = ( +/obj/structure/table/rack{ + dir = 8; + layer = 2.6 + }, +/obj/item/weapon/tank/jetpack/carbondioxide, +/obj/item/weapon/tank/jetpack/carbondioxide, +/obj/item/weapon/tank/jetpack/carbondioxide, +/obj/item/weapon/tank/jetpack/carbondioxide, +/obj/effect/floor_decal/milspec/color/red, +/turf/simulated/floor/tiled/dark, +/area/security/tactical) +"my" = ( +/obj/machinery/atmospherics/unary/freezer{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris, +/area/rnd/xenobiology/xenoflora_storage) +"mz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/stellardelight/deck1/dorms/dorm7) +"mA" = ( +/obj/structure/sign/deck1{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/fore) +"mB" = ( +/obj/structure/railing/grey{ + dir = 8 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/starboardaft) +"mC" = ( +/obj/machinery/power/pointdefense{ + id_tag = "sd_pd" + }, +/obj/effect/floor_decal/industrial/warning/full, +/obj/structure/cable/pink, +/obj/structure/cable/pink{ + icon_state = "0-4" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck1/exterior) +"mD" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/aft) +"mE" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/station_map{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/starboard) +"mF" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/milspec/color/red/half{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/landmark/start/security, +/turf/simulated/floor/tiled/dark, +/area/security/security_lockerroom) +"mG" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "4-8" + }, +/turf/simulated/floor/reinforced, +/area/stellardelight/deck1/shuttlebay) +"mH" = ( +/obj/structure/table/rack/shelf, +/obj/item/weapon/tank/oxygen, +/obj/item/device/suit_cooling_unit, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/suit/space/void/exploration, +/obj/item/clothing/mask/breath, +/obj/item/clothing/head/helmet/space/void/exploration, +/obj/item/weapon/tank/jetpack/carbondioxide, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/firealarm/angled, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/pathfinder) +"mI" = ( +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/aft) +"mJ" = ( +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/stellardelight/deck1/lowermed) +"mK" = ( +/obj/structure/table/sifwooden_reinforced, +/turf/simulated/floor/tiled/eris/steel/panels, +/area/stellardelight/deck1/pilot) +"mL" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/substation/research) +"mM" = ( +/turf/simulated/wall/bay/steel, +/area/janitor) +"mN" = ( +/obj/machinery/requests_console{ + department = "Robotics"; + departmentType = 2; + name = "Robotics RC"; + pixel_y = 30 + }, +/obj/machinery/r_n_d/circuit_imprinter, +/obj/item/weapon/reagent_containers/glass/beaker/sulphuric, +/turf/simulated/floor/tiled/steel, +/area/assembly/robotics) +"mO" = ( +/obj/effect/floor_decal/milspec/color/red/half{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/fore) +"mP" = ( +/obj/machinery/computer/ship/navigation/telescreen{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/explobriefing) +"mQ" = ( +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 8 + }, +/obj/effect/floor_decal/milspec/color/emerald/half{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/starboard) +"mR" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/angled_bay/standard/color{ + dir = 8; + door_color = "#ffffff"; + name = "Recovery Room"; + req_access = list(5); + stripe_color = "#5a96bb" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/medical/patient_wing) +"mS" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/double/glass{ + name = "glass airlock" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck1/starboard) +"mT" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/fore) +"mU" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"mV" = ( +/obj/machinery/hologram/holopad, +/obj/effect/floor_decal/industrial/outline, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/oreprocessing) +"mW" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/angled_bay/double/glass{ + dir = 8; + door_color = "#333333"; + name = "Exploration"; + req_one_access = list(19,43,66); + stripe_color = "#5a19a8" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck1/explobriefing) +"mX" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/camera/network/research{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris, +/area/rnd/xenobiology/xenoflora_storage) +"mY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/shuttlebay) +"mZ" = ( +/obj/structure/table/rack/steel, +/obj/item/clothing/gloves/arm_guard/bulletproof, +/obj/item/clothing/shoes/leg_guard/bulletproof, +/obj/item/clothing/suit/armor/bulletproof/alt, +/obj/item/clothing/head/helmet/bulletproof, +/obj/item/clothing/gloves/arm_guard/bulletproof, +/obj/item/clothing/shoes/leg_guard/bulletproof, +/obj/item/clothing/suit/armor/bulletproof/alt, +/obj/item/clothing/head/helmet/bulletproof, +/obj/machinery/atmospherics/pipe/simple/hidden/purple, +/obj/effect/floor_decal/milspec/color/black, +/turf/simulated/floor/tiled/dark, +/area/security/armoury) +"na" = ( +/obj/structure/table/rack/shelf, +/obj/item/weapon/tank/oxygen, +/obj/item/device/suit_cooling_unit, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/mask/breath, +/obj/item/clothing/suit/space/void/expedition_medical, +/obj/item/clothing/head/helmet/space/void/expedition_medical, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/exploequipment) +"nb" = ( +/obj/structure/disposaloutlet, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"nc" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck1/exterior) +"nd" = ( +/obj/structure/closet/secure_closet/sar, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/exploequipment) +"ne" = ( +/obj/machinery/power/breakerbox/activated{ + RCon_tag = "Exploration Substation Bypass" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/substation/exploration) +"nf" = ( +/turf/simulated/wall/bay/r_wall/brown, +/area/stellardelight/deck1/dorms/dorm2) +"ng" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/substation/atmospherics) +"nh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/security/detectives_office) +"ni" = ( +/turf/simulated/wall/bay/r_wall/steel, +/area/security/tactical) +"nj" = ( +/obj/structure/table/sifwooden_reinforced, +/mob/living/simple_mob/animal/passive/bird/azure_tit/iceman, +/turf/simulated/floor/tiled/eris/steel/panels, +/area/stellardelight/deck1/pilot) +"nk" = ( +/turf/simulated/wall/bay/r_wall/steel, +/area/stellardelight/deck1/explobriefing) +"nl" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + color = "#42038a" + }, +/obj/machinery/power/sensor{ + name = "Powernet Sensor - Exploration Subgrid"; + name_tag = "Exploration Subgrid" + }, +/obj/machinery/power/apc/angled{ + dir = 4; + name = "night shift APC"; + nightshift_setting = 2 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/substation/exploration) +"nm" = ( +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/portaft) +"nn" = ( +/obj/structure/cable/pink{ + icon_state = "2-4" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck1/exterior) +"no" = ( +/turf/simulated/floor/tiled/monotile, +/area/janitor) +"nq" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/pink{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/angled_bay/standard/glass{ + door_color = "#8c1d11"; + name = "Security Processing"; + req_access = list(63); + stripe_color = "#d27428" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/security/security_processing) +"nt" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck1/researchserver) +"nu" = ( +/obj/machinery/transhuman/synthprinter, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/dark, +/area/assembly/robotics) +"nv" = ( +/obj/structure/table/rack{ + dir = 8; + layer = 2.6 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/suit/space/void/security, +/obj/item/clothing/suit/space/void/security, +/obj/item/clothing/head/helmet/space/void/security, +/obj/item/clothing/head/helmet/space/void/security, +/obj/effect/floor_decal/milspec/color/red, +/turf/simulated/floor/tiled/dark, +/area/security/tactical) +"nw" = ( +/obj/structure/table/glass, +/obj/machinery/computer/med_data/laptop{ + dir = 1; + pixel_y = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/patient_wing) +"nx" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/standard/color{ + dir = 4; + door_color = "#ffffff"; + name = "Morgue"; + req_access = list(6); + stripe_color = "#5a96bb" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/medical/morgue) +"ny" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/machinery/door/blast/angled/open{ + dir = 2; + id = "explowindowlockdown" + }, +/obj/structure/low_wall/bay/reinforced/steel, +/turf/simulated/floor, +/area/stellardelight/deck1/explobriefing) +"nz" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/portcent) +"nA" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/stellardelight/deck1/shuttlebay) +"nB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/exploration) +"nC" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/closet/emergsuit_wall{ + dir = 4; + pixel_x = 27 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/port) +"nD" = ( +/turf/simulated/floor/tiled/eris/white/gray_platform, +/area/gateway) +"nE" = ( +/obj/machinery/computer/rdconsole/core{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/rnd/research) +"nF" = ( +/obj/structure/closet/secure_closet/pilot, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/eris/steel/panels, +/area/stellardelight/deck1/pilot) +"nG" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/sign/department/medbay{ + pixel_x = -32 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/aft) +"nH" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/maintenance/stellardelight/deck1/starboardaft) +"nI" = ( +/obj/effect/floor_decal/milspec/color/emerald, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/aft) +"nJ" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/double/glass{ + name = "glass airlock" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck1/port) +"nK" = ( +/turf/simulated/wall/rshull, +/area/stellardelight/deck1/miningshuttle) +"nL" = ( +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/starboardaft) +"nM" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/structure/low_wall/bay/reinforced/steel, +/turf/simulated/floor, +/area/chapel/chapel_morgue) +"nN" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris, +/area/stellardelight/deck1/researchhall) +"nO" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = 32; + pixel_y = -24 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor, +/area/medical/morgue) +"nP" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/exploration) +"nQ" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/firealarm/angled, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/starboard) +"nS" = ( +/obj/structure/cable/green{ + 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/techmaint, +/area/stellardelight/deck1/port) +"nT" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/aft) +"nV" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/forensics/sample_kit/powder, +/turf/simulated/floor/tiled/white, +/area/security/detectives_office) +"nW" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/fore) +"nX" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/starboard) +"nY" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/sign/directions/evac{ + dir = 1; + pixel_x = 32; + pixel_y = 32 + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor, +/area/stellardelight/deck1/aft) +"nZ" = ( +/obj/structure/cable/pink{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/portfore) +"oa" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/tool/wrench, +/obj/item/weapon/tool/crowbar, +/obj/item/weapon/hand_labeler, +/turf/simulated/floor/tiled/dark, +/area/security/warden) +"oc" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/stellardelight/deck1/aft) +"od" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green, +/obj/machinery/power/sensor{ + name = "Powernet Sensor - Civilian Subgrid"; + name_tag = "Civilian Subgrid" + }, +/obj/machinery/power/apc/angled{ + dir = 8; + name = "night shift APC"; + nightshift_setting = 2 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/substation/civilian) +"oe" = ( +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/starboardaft) +"of" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/flora/pottedplant/stoutbush, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/port) +"oh" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/button/remote/airlock{ + desc = "A remote control switch for the medbay foyer."; + dir = 4; + id = "resleeveexit"; + name = "Door Control"; + pixel_x = -27; + pixel_y = 25 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/stellardelight/deck1/resleeving) +"oi" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-8" + }, +/turf/simulated/wall/bay/r_wall/steel, +/area/rnd/xenobiology) +"ok" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 4; + name = "Exploration"; + sortType = "Exploration" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/portcent) +"ol" = ( +/obj/machinery/newscaster/security_unit{ + pixel_x = 32 + }, +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/security/warden) +"om" = ( +/obj/machinery/computer/shuttle_control/explore/stellardelight/exploration, +/turf/simulated/floor/tiled/eris/steel/gray_platform, +/area/stellardelight/deck1/exploshuttle) +"on" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/mining) +"oo" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/loading, +/turf/simulated/floor/tiled/steel_grid, +/area/assembly/robotics) +"op" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/medical/patient_wing) +"oq" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-4" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck1/exterior) +"or" = ( +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/blast/angled/open{ + dir = 4; + id = "xenobiopen6"; + name = "Pen 6 Blast Doors" + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology) +"os" = ( +/obj/structure/sign/department/miner_dock{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/aft) +"ou" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/starboard) +"ov" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/white/gray_platform, +/area/gateway) +"ox" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/eris, +/area/rnd/xenobiology/xenoflora) +"oy" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals3, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 6 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/aft) +"oz" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-2" + }, +/turf/simulated/wall/bay/r_wall/steel, +/area/maintenance/stellardelight/substation/research) +"oA" = ( +/obj/machinery/button/remote/airlock{ + dir = 1; + id = "dorm4"; + name = "Room 4 Lock"; + pixel_y = -22; + specialfunctions = 4 + }, +/obj/machinery/power/apc/angled{ + dir = 4; + name = "night shift APC"; + nightshift_setting = 2 + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/turf/simulated/floor/carpet, +/area/stellardelight/deck1/dorms/dorm4) +"oB" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/landmark/vermin, +/turf/simulated/floor/tiled/dark, +/area/security/security_cell_hallway) +"oC" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/toilet) +"oD" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck1/starboard) +"oE" = ( +/turf/simulated/wall/bay/white, +/area/medical/morgue) +"oF" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/port) +"oG" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/stellardelight/deck1/shuttlebay) +"oH" = ( +/obj/structure/disposalpipe/tagger{ + dir = 2; + name = "package tagger - Void"; + sort_tag = "Void" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/sign/department/virology{ + pixel_x = 32 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/stellardelight/deck1/lowermed) +"oI" = ( +/obj/structure/cable/pink{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/security/security_lockerroom) +"oJ" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/space/void/mining, +/obj/item/clothing/mask/breath, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/head/helmet/space/void/mining, +/obj/item/weapon/mining_scanner, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 24 + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/miningequipment) +"oK" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/wood, +/area/library) +"oL" = ( +/obj/structure/table/steel, +/obj/item/device/integrated_circuit_printer, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/workshop) +"oM" = ( +/obj/machinery/transhuman/resleever, +/obj/structure/sign/painting/library_secure{ + pixel_x = 30 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/stellardelight/deck1/resleeving) +"oO" = ( +/obj/structure/cable/pink{ + icon_state = "0-2" + }, +/obj/machinery/power/apc/angled{ + dir = 1; + name = "night shift APC"; + nightshift_setting = 2 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/floor_decal/milspec/color/red/half{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/security/security_lockerroom) +"oQ" = ( +/obj/machinery/vending/wardrobe/secdrobe, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/milspec/color/red, +/turf/simulated/floor/tiled/dark, +/area/security/security_lockerroom) +"oR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/landmark/start/pilot, +/turf/simulated/floor/tiled/eris/steel/panels, +/area/stellardelight/deck1/pilot) +"oS" = ( +/obj/structure/table/steel, +/obj/item/device/electronic_assembly/large/default, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/firealarm/angled, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/workshop) +"oT" = ( +/obj/structure/closet/l3closet/janitor, +/turf/simulated/floor/tiled/monotile, +/area/janitor) +"oU" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/port) +"oW" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/stellardelight/deck1/resleeving) +"oX" = ( +/turf/simulated/wall/bay/r_wall/purple, +/area/rnd/storage) +"oY" = ( +/obj/machinery/organ_printer/flesh, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/stellardelight/deck1/resleeving) +"oZ" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/pen, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/explobriefing) +"pa" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/stellardelight/deck1/aft) +"pb" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/substation/cargo) +"pc" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorblack/full, +/obj/effect/floor_decal/industrial/outline, +/obj/machinery/portable_atmospherics/canister/air, +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/security/armoury) +"pd" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/machinery/computer/ship/navigation/telescreen{ + pixel_x = -64 + }, +/obj/effect/landmark/start/pf, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/pathfinder) +"pe" = ( +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/stellardelight/deck1/miningshuttle) +"pf" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/exploration) +"pg" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/catwalk_plated/dark, +/obj/effect/landmark/vines, +/turf/simulated/floor, +/area/stellardelight/deck1/starboard) +"ph" = ( +/obj/random/trash_pile, +/turf/simulated/floor, +/area/maintenance/security_port) +"pi" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/starboardcent) +"pj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/eris, +/area/rnd/xenobiology/xenoflora) +"pk" = ( +/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/dark, +/area/rnd/xenobiology) +"pl" = ( +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/turf/simulated/wall/bay/r_wall/red, +/area/security/tactical) +"pm" = ( +/obj/machinery/button/remote/airlock{ + dir = 1; + id = "dorm6"; + name = "Room 6 Lock"; + pixel_y = -22; + specialfunctions = 4 + }, +/obj/machinery/power/apc/angled{ + dir = 8; + name = "night shift APC"; + nightshift_setting = 2 + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/stellardelight/deck1/dorms/dorm6) +"pn" = ( +/obj/structure/cable/pink{ + icon_state = "1-4" + }, +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck1/exterior) +"pp" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/machinery/door/blast/angled/open{ + dir = 4; + id = "chapelwindowlockdown" + }, +/obj/structure/low_wall/bay/reinforced/black, +/turf/simulated/floor, +/area/chapel/main) +"pq" = ( +/obj/machinery/portable_atmospherics/canister/phoron, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/storage) +"pr" = ( +/obj/structure/cable/pink{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/milspec/color/orange/half, +/turf/simulated/floor/tiled/dark, +/area/prison/cell_block) +"ps" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/angled_bay/standard/color{ + door_color = "#ffffff"; + fill_color = "#ead9ff"; + name = "Equipment Room"; + req_access = list(7); + stripe_color = "#5a19a8" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/rnd/research) +"pt" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/standard/color{ + dir = 4; + door_color = "#ffffff"; + fill_color = "#ead9ff"; + name = "Toxins Storage"; + req_access = list(8); + stripe_color = "#5a19a8" + }, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/rnd/storage) +"pu" = ( +/obj/machinery/portable_atmospherics/canister/phoron, +/turf/simulated/floor/tiled, +/area/rnd/storage) +"pv" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 32; + pixel_y = 7 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/turf/simulated/floor/tiled/eris/white/cargo, +/area/medical/virology) +"pw" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/oreprocessing) +"px" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/alarm/angled{ + dir = 8 + }, +/obj/machinery/computer/guestpass{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/fore) +"py" = ( +/obj/machinery/door/firedoor/glass/hidden/steel, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/fore) +"pz" = ( +/obj/machinery/power/pointdefense{ + id_tag = "sd_pd" + }, +/obj/effect/floor_decal/industrial/warning/full, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "0-2" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck1/exterior) +"pA" = ( +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/stellardelight/deck1/resleeving) +"pC" = ( +/turf/simulated/wall/bay/r_wall/purple, +/area/stellardelight/deck1/exploequipment) +"pD" = ( +/obj/structure/table/woodentable, +/obj/item/device/tvcamera, +/obj/structure/sign/painting/library_private{ + pixel_y = -32 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/wood, +/area/library) +"pE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/purple{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorblack/full, +/turf/simulated/floor/tiled/dark, +/area/security/armoury) +"pF" = ( +/turf/simulated/wall/bay/purple, +/area/stellardelight/deck1/researchequip) +"pG" = ( +/obj/machinery/suit_cycler/exploration, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/exploequipment) +"pH" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/angled_bay/standard/glass{ + door_color = "#a6753d"; + name = "Mining"; + req_access = list(31); + stripe_color = "#3b2b1a" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck1/mining) +"pI" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + frequency = 1379; + id_tag = "ex_airpump" + }, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + id_tag = "ex_airlock"; + pixel_y = 24; + req_one_access = list(13); + tag_airpump = "ex_airpump"; + tag_chamber_sensor = "ex_sensor"; + tag_exterior_door = "ex_exterior"; + tag_interior_door = "ex_interior" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/exploration) +"pJ" = ( +/obj/structure/bed/chair/sofa/corp/left{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/stellardelight/deck1/dorms/dorm2) +"pK" = ( +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/purple, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/floor_decal/milspec/color/black, +/turf/simulated/floor/tiled/dark, +/area/security/armoury) +"pL" = ( +/obj/machinery/door/window/brigdoor/southright{ + req_access = list(77); + req_one_access = newlist() + }, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/eris, +/area/rnd/xenobiology/xenoflora_storage) +"pM" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck1/researchserver) +"pN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/landmark/start/janitor, +/turf/simulated/floor/tiled/monotile, +/area/janitor) +"pO" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/hatch{ + door_color = "#e6ab22"; + name = "Cargo Substation"; + req_one_access = list(10); + stripe_color = "#e6ab22" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/maintenance/stellardelight/substation/cargo) +"pP" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/exploration) +"pQ" = ( +/turf/simulated/wall/bay/r_wall/steel, +/area/rnd/xenobiology/xenoflora_storage) +"pR" = ( +/turf/simulated/wall/bay/brown, +/area/stellardelight/deck1/miningequipment) +"pS" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/stellardelight/deck1/shower) +"pT" = ( +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"pU" = ( +/obj/structure/railing/grey{ + dir = 8 + }, +/obj/structure/sign/directions/evac{ + dir = 1; + pixel_x = -32 + }, +/obj/structure/sign/directions/medical{ + dir = 1; + pixel_x = -32; + pixel_y = 6 + }, +/obj/structure/sign/directions/stairs_up{ + dir = 1; + pixel_x = -32; + pixel_y = 12 + }, +/turf/simulated/floor, +/area/stellardelight/deck1/aft) +"pV" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/mining) +"pX" = ( +/obj/machinery/shower{ + dir = 1; + pixel_y = -2 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/curtain/open/shower/medical, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel, +/area/medical/virology) +"pY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/bed/chair/office/dark, +/obj/effect/landmark/start/detective, +/turf/simulated/floor/tiled/white, +/area/security/detectives_office) +"pZ" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/security/security_equiptment_storage) +"qa" = ( +/obj/machinery/suit_cycler/medical, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/stellardelight/deck1/paramedic) +"qb" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "miningops" + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/oreprocessing) +"qd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/exploration) +"qe" = ( +/obj/machinery/alarm/angled{ + dir = 8 + }, +/obj/effect/floor_decal/milspec/color/red/half{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/security/security_cell_hallway) +"qg" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + dir = 8; + frequency = 1380; + id_tag = "miningdocker_bay"; + pixel_x = 24 + }, +/turf/simulated/floor/reinforced, +/area/stellardelight/deck1/shuttlebay) +"qh" = ( +/turf/simulated/wall/bay/white, +/area/medical/exam_room) +"qj" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 4; + name = "Library"; + sortType = "Library" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor, +/area/stellardelight/deck1/starboard) +"qk" = ( +/obj/machinery/newscaster{ + pixel_x = 30 + }, +/obj/structure/cable/green{ + color = "#42038a"; + 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/milspec, +/area/stellardelight/deck1/explobriefing) +"ql" = ( +/obj/structure/table/woodentable, +/obj/machinery/photocopier/faxmachine{ + department = "Exploration Briefing" + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/explobriefing) +"qm" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck1/port) +"qn" = ( +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/white, +/area/medical/patient_wing) +"qo" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck1/port) +"qp" = ( +/obj/effect/floor_decal/milspec/color/red/half{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/dark, +/area/security/lobby) +"qq" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/exploration) +"qs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/floor_decal/milspec/color/orange/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/prison/cell_block) +"qu" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/landmark{ + name = "lightsout" + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/starboard) +"qv" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/sign/deck1{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/aft) +"qw" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/angled_bay/standard/color{ + door_color = "#9c9c9c"; + fill_color = "#5c5c5c"; + id_tag = "dorm4"; + name = "Room 4"; + stripe_color = "#89bd66" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck1/dorms/dorm4) +"qx" = ( +/obj/machinery/atmospherics/unary/heater{ + dir = 4 + }, +/obj/machinery/alarm/angled{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris, +/area/rnd/xenobiology/xenoflora_storage) +"qy" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/sign/directions/evac{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/port) +"qA" = ( +/turf/simulated/wall/bay/r_wall/purple, +/area/stellardelight/deck1/researchserver) +"qB" = ( +/obj/structure/table/bench/steel, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/security/tactical) +"qD" = ( +/turf/simulated/wall/bay/white, +/area/stellardelight/deck1/paramedic) +"qE" = ( +/turf/simulated/wall/bay/r_wall/steel, +/area/stellardelight/deck1/shower) +"qF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/firealarm/angled{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/chapel_morgue) +"qG" = ( +/obj/machinery/door_timer/cell_3{ + id = "Cell C"; + name = "Cell C"; + pixel_x = 32; + pixel_y = 32 + }, +/turf/simulated/floor/tiled/dark, +/area/security/security_cell_hallway) +"qH" = ( +/obj/item/modular_computer/console/preset/civilian, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/stellardelight/deck1/miningshuttle) +"qI" = ( +/obj/structure/table/steel, +/obj/item/weapon/storage/box/flashbangs{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/weapon/storage/box/handcuffs{ + pixel_x = 6; + pixel_y = -2 + }, +/obj/item/weapon/storage/box/evidence, +/obj/machinery/alarm/angled{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/security_equiptment_storage) +"qJ" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/hatch{ + door_color = "#8c1d11"; + name = "maintenance access"; + req_one_access = list(38,63); + stripe_color = "#8c1d11" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/security/tactical) +"qK" = ( +/obj/structure/bed/chair/sofa/corp/left, +/turf/simulated/floor/carpet/purcarpet, +/area/stellardelight/deck1/dorms/dorm6) +"qL" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/camera/network/halls{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/starboard) +"qM" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/shuttlebay) +"qN" = ( +/obj/structure/sign/painting/chapel_secure{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"qO" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/milspec/color/orange/half{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/prison/cell_block/C) +"qP" = ( +/obj/structure/cable/pink{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/prison/cell_block) +"qQ" = ( +/obj/machinery/light_switch{ + pixel_y = 25 + }, +/obj/machinery/button/remote/blast_door{ + id = "chapelwindowlockdown"; + name = "Window Lockdown"; + pixel_x = -9; + pixel_y = 25 + }, +/turf/simulated/floor/carpet, +/area/chapel/main) +"qR" = ( +/obj/structure/table/glass, +/turf/simulated/floor/tiled/dark, +/area/stellardelight/deck1/resleeving) +"qS" = ( +/obj/machinery/button/remote/blast_door{ + id = "brigwindowlockdown"; + name = "Window Lockdown"; + pixel_y = 25; + req_access = list(1) + }, +/turf/simulated/floor/tiled/dark, +/area/security/security_cell_hallway) +"qT" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/sign/directions/evac{ + dir = 1; + pixel_x = -32; + pixel_y = 32 + }, +/obj/effect/catwalk_plated/dark, +/obj/item/device/radio/beacon, +/turf/simulated/floor, +/area/stellardelight/deck1/aft) +"qU" = ( +/obj/machinery/mineral/stacking_machine, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/oreprocessing) +"qV" = ( +/obj/machinery/suit_cycler/mining, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/miningequipment) +"qW" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/angled_bay/standard/color{ + dir = 8; + door_color = "#ffffff"; + name = "Resleeving Lab"; + req_access = list(5); + stripe_color = "#5a96bb" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck1/resleeving) +"qX" = ( +/turf/space/internal_edge/right, +/area/stellardelight/deck1/starboard) +"qY" = ( +/obj/effect/floor_decal/milspec/color/orange/half, +/turf/simulated/floor/tiled/dark, +/area/prison/cell_block) +"qZ" = ( +/obj/structure/table/steel, +/obj/item/device/retail_scanner/security, +/obj/item/device/retail_scanner/security, +/obj/item/weapon/tool/crowbar, +/obj/item/weapon/tool/crowbar, +/obj/item/weapon/tool/crowbar, +/obj/item/weapon/tool/crowbar, +/obj/item/weapon/tool/crowbar, +/obj/item/weapon/tool/crowbar, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/floor_decal/milspec/color/red, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 24 + }, +/turf/simulated/floor/tiled/dark, +/area/security/security_lockerroom) +"ra" = ( +/turf/simulated/wall/bay/r_wall/steel, +/area/maintenance/stellardelight/deck1/exploration) +"rb" = ( +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "GatewayShutterW"; + name = "EVA Shutter"; + pixel_x = 23; + req_one_access = list(18,19,43,67) + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/port) +"rc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/stellardelight/deck1/dorms/dorm2) +"rd" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/machinery/meter, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris, +/area/rnd/xenobiology/xenoflora_storage) +"re" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/sign/painting/public{ + pixel_x = -30 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/port) +"rf" = ( +/obj/machinery/light/small, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/exploration) +"rg" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/port) +"rh" = ( +/obj/structure/table/steel, +/obj/item/weapon/cell/device/weapon{ + pixel_x = 3 + }, +/obj/item/weapon/cell/device/weapon{ + pixel_x = -6; + pixel_y = -3 + }, +/obj/item/weapon/storage/box/donut, +/turf/simulated/floor/tiled/dark, +/area/security/security_equiptment_storage) +"ri" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/steel/panels, +/area/stellardelight/deck1/pilot) +"rj" = ( +/obj/machinery/camera/network/research, +/obj/machinery/vending/hydronutrients, +/turf/simulated/floor/tiled/eris, +/area/rnd/xenobiology/xenoflora) +"rk" = ( +/obj/structure/bed/chair/backed_red, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/aft) +"rl" = ( +/obj/structure/cable/orange{ + icon_state = "2-8" + }, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/exploration) +"rm" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/stellardelight/deck1/paramedic) +"rn" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/space/void/mining, +/obj/item/clothing/mask/breath, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/head/helmet/space/void/mining, +/obj/item/weapon/mining_scanner, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/camera/network/mining{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/miningequipment) +"ro" = ( +/obj/machinery/power/pointdefense{ + id_tag = "sd_pd" + }, +/obj/effect/floor_decal/industrial/warning/full, +/obj/structure/cable/pink{ + icon_state = "0-8" + }, +/obj/structure/cable/pink{ + icon_state = "0-2" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck1/exterior) +"rp" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/morgue{ + dir = 2; + name = "Private Study"; + req_access = list(37) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_ridged, +/area/library) +"rr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood, +/area/library) +"rs" = ( +/obj/structure/cable/pink{ + icon_state = "1-2" + }, +/obj/machinery/power/sensor{ + name = "Powernet Sensor - Security Subgrid"; + name_tag = "Security Subgrid" + }, +/obj/structure/cable/pink{ + icon_state = "0-2" + }, +/obj/machinery/power/apc/angled{ + dir = 4; + name = "night shift APC"; + nightshift_setting = 2 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/substation/security) +"rt" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/folder/blue, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/explobriefing) +"ru" = ( +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -25; + pixel_y = 32 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/assembly/robotics) +"rv" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/landmark/start/fieldmedic, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/explobriefing) +"rw" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/port) +"ry" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/table/reinforced, +/obj/item/weapon/paper_bin{ + pixel_x = -1; + pixel_y = 4 + }, +/obj/item/weapon/pen, +/obj/machinery/door/blast/angled_shutter/open{ + dir = 4; + id = "dontlooktmyrobotpenis"; + name = "Privacy Shutters" + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/assembly/robotics) +"rz" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/closet/walllocker_double/east, +/obj/item/device/defib_kit/jumper_kit, +/obj/item/weapon/storage/box/gloves, +/obj/item/weapon/storage/box/bodybags{ + pixel_x = -3; + pixel_y = -2 + }, +/obj/item/weapon/book/manual/robotics_cyborgs, +/turf/simulated/floor/tiled/steel_dirty, +/area/assembly/robotics) +"rA" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/angled_bay/hatch{ + door_color = "#e6ab22"; + name = "Civilian Substation"; + req_one_access = list(10); + stripe_color = "#e6ab22" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/maintenance/stellardelight/substation/civilian) +"rB" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-2" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/exploration) +"rC" = ( +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/alarm/angled{ + dir = 8 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/substation/civilian) +"rD" = ( +/obj/structure/extinguisher_cabinet{ + dir = 8; + pixel_x = 30 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/research) +"rF" = ( +/obj/structure/cable/pink{ + icon_state = "1-2" + }, +/turf/simulated/wall/bay/r_wall/red, +/area/security/armoury) +"rG" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/aft) +"rH" = ( +/obj/structure/closet/l3closet/security, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/firealarm/angled, +/obj/effect/floor_decal/milspec/color/black, +/turf/simulated/floor/tiled/dark, +/area/security/armoury) +"rI" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/space/void/mining, +/obj/item/clothing/mask/breath, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/head/helmet/space/void/mining, +/obj/item/weapon/mining_scanner, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/power/apc/angled{ + dir = 1; + name = "night shift APC"; + nightshift_setting = 2 + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/miningequipment) +"rJ" = ( +/turf/simulated/floor, +/area/maintenance/stellardelight/substation/security) +"rK" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/portaft) +"rL" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/angled_bay/standard/color{ + door_color = "#ffffff"; + name = "Morgue"; + req_access = list(5,6); + stripe_color = "#5a96bb" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/medical/morgue) +"rM" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/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/eris/steel/cargo, +/area/stellardelight/deck1/pathfinder) +"rN" = ( +/obj/structure/cable/green{ + 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/dark, +/area/chapel/main) +"rO" = ( +/obj/effect/floor_decal/borderfloorblack/full, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/deployable/barrier, +/turf/simulated/floor/tiled/dark, +/area/security/armoury) +"rP" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 10 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/port) +"rQ" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/angled{ + dir = 4; + id = "GatewayShutterE" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/gateway) +"rS" = ( +/obj/structure/closet/walllocker_double/east{ + dir = 8; + pixel_x = -32 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/stellardelight/deck1/dorms/dorm7) +"rT" = ( +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology) +"rV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/alarm/angled{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/assembly/robotics) +"rW" = ( +/obj/machinery/button/remote/airlock{ + id = "dorm8"; + name = "Room 8 Lock"; + pixel_y = 24; + specialfunctions = 4 + }, +/obj/machinery/power/apc/angled{ + dir = 8; + name = "night shift APC"; + nightshift_setting = 2 + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/turf/simulated/floor/carpet, +/area/stellardelight/deck1/dorms/dorm8) +"rX" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/cable/pink{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/security/security_cell_hallway) +"rY" = ( +/obj/structure/table/woodentable, +/obj/item/device/flashlight/lamp{ + pixel_x = -14; + pixel_y = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/button/remote/blast_door{ + dir = 1; + id = "chapelofficelockdown"; + name = "Window Lockdown"; + pixel_x = -5; + pixel_y = 5 + }, +/turf/simulated/floor/lino, +/area/chapel/office) +"rZ" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/closet/l3closet/janitor, +/turf/simulated/floor/tiled/monotile, +/area/janitor) +"sa" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-4" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck1/exterior) +"sb" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/sign/directions/dorms{ + dir = 10; + pixel_x = 32; + pixel_y = 6 + }, +/obj/structure/sign/directions/science{ + pixel_x = 32 + }, +/obj/structure/sign/directions/janitor{ + dir = 8; + pixel_x = 32; + pixel_y = -6 + }, +/obj/machinery/camera/network/halls{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/starboard) +"sc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/assembly/robotics) +"sd" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/chapel_morgue) +"se" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/starboard) +"sf" = ( +/obj/machinery/disease2/isolator, +/obj/machinery/light/floortube{ + dir = 8; + pixel_x = -6 + }, +/obj/machinery/alarm/angled, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/virology) +"sg" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/starboard) +"sh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/sign/department/medbay{ + name = "RESLEEVING"; + pixel_x = 32 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/aft) +"si" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/stellardelight/deck1/shuttlebay) +"sj" = ( +/turf/simulated/floor/tiled/eris, +/area/rnd/xenobiology/xenoflora) +"sl" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/medical, +/obj/structure/curtain/open/privacy, +/obj/machinery/alarm/angled, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/patient_wing) +"sm" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/stellardelight/deck1/starboard) +"sn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/carpet, +/area/stellardelight/deck1/dorms/dorm1) +"so" = ( +/obj/machinery/gateway{ + dir = 5 + }, +/turf/simulated/floor/tiled/eris/white/gray_platform, +/area/gateway) +"sp" = ( +/obj/machinery/power/apc/angled{ + dir = 1; + name = "night shift APC"; + nightshift_setting = 2 + }, +/obj/structure/cable/pink{ + icon_state = "0-2" + }, +/turf/simulated/floor, +/area/maintenance/security_port) +"sq" = ( +/obj/structure/table/standard, +/obj/machinery/cell_charger, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "4-8" + }, +/obj/machinery/light, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel, +/area/assembly/robotics) +"sr" = ( +/obj/structure/closet/secure_closet/warden, +/obj/item/weapon/book/manual/security_space_law, +/obj/item/weapon/gun/projectile/shotgun/pump/combat{ + ammo_type = /obj/item/ammo_casing/a12g/beanbag; + desc = "Built for close quarters combat, the Hesphaistos Industries KS-40 is widely regarded as a weapon of choice for repelling boarders. This one has 'Property of the Warden' inscribed on the stock."; + name = "warden's shotgun" + }, +/obj/machinery/power/apc/angled{ + dir = 8 + }, +/obj/structure/cable/pink{ + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/item/weapon/gun/energy/sizegun, +/obj/item/weapon/storage/box/donut, +/turf/simulated/floor/tiled/dark, +/area/security/warden) +"ss" = ( +/obj/machinery/optable{ + name = "Robotics Operating Table" + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/secure_closet/medical_wall/anesthetics{ + pixel_x = 32; + req_access = list(); + req_one_access = list(29,45) + }, +/obj/machinery/camera/network/research{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/assembly/robotics) +"st" = ( +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck1/mining) +"su" = ( +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/camera/network/security{ + dir = 1 + }, +/obj/effect/floor_decal/milspec/color/black, +/turf/simulated/floor/tiled/dark, +/area/security/security_cell_hallway) +"sv" = ( +/obj/structure/cable/pink{ + icon_state = "1-2" + }, +/turf/simulated/wall/bay/r_wall/steel, +/area/security/armoury) +"sx" = ( +/obj/structure/cable/pink{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/prison/cell_block/B) +"sy" = ( +/obj/effect/floor_decal/industrial/warning/full, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/machinery/power/pointdefense{ + id_tag = "sd_pd" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck1/exterior) +"sz" = ( +/obj/structure/sign/deck1{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/fore) +"sA" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/milspec/color/orange/half{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/prison/cell_block/C) +"sB" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/landmark/vermin, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"sC" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/double/glass{ + door_color = "#333333"; + name = "Exploration"; + req_one_access = null; + stripe_color = "#5a19a8" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck1/exploration) +"sD" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/starboardfore) +"sE" = ( +/obj/structure/bed/chair/backed_red{ + dir = 4 + }, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/exploration) +"sF" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/alarm/angled{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/exploration) +"sG" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/port) +"sH" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"sI" = ( +/obj/machinery/door/window/eastright{ + dir = 8; + name = "Virology Isolation Room One"; + req_one_access = list(39) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/medical/virology) +"sJ" = ( +/obj/random/trash_pile, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/starboardfore) +"sK" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/camera/network/medbay{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/white/cargo, +/area/medical/virology) +"sL" = ( +/obj/structure/closet/secure_closet/security, +/obj/item/device/holowarrant, +/obj/item/clothing/accessory/badge/holo/cord, +/obj/item/clothing/accessory/badge/holo/cord, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/milspec/color/red, +/turf/simulated/floor/tiled/dark, +/area/security/security_lockerroom) +"sM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atm{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/aft) +"sN" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/explobriefing) +"sO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/effect/landmark/start/fieldmedic, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/exploequipment) +"sP" = ( +/obj/machinery/power/breakerbox/activated{ + RCon_tag = "Security Substation Bypass" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/substation/security) +"sQ" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/portcent) +"sR" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/stellardelight/deck1/mining) +"sS" = ( +/obj/machinery/recharge_station, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/mining) +"sT" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/firealarm/angled{ + dir = 8 + }, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/explobriefing) +"sU" = ( +/obj/structure/closet/coffin, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/machinery/power/apc/angled{ + dir = 1; + name = "night shift APC"; + nightshift_setting = 2 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"sV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/starboardfore) +"sW" = ( +/obj/machinery/door/airlock/angled_bay/external/glass{ + dir = 4; + frequency = 1379; + id_tag = "ex_exterior"; + locked = 1; + name = "Exterior Airlock" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1379; + master_tag = "ex_airlock"; + name = "exterior access button"; + pixel_y = 32; + req_one_access = list(13) + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/maintenance/stellardelight/deck1/exploration) +"sX" = ( +/obj/machinery/camera/network/research/xenobio{ + dir = 1 + }, +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/xenobiology) +"sY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/light_switch{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/research) +"sZ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/alarm/angled{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/oreprocessing) +"ta" = ( +/turf/simulated/wall/bay/white, +/area/stellardelight/deck1/lowermed) +"tb" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/eris/white/gray_platform, +/area/gateway) +"tc" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/exploration) +"td" = ( +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/obj/structure/cable/pink{ + icon_state = "2-4" + }, +/turf/simulated/wall/bay/r_wall/steel, +/area/maintenance/stellardelight/deck1/portcent) +"te" = ( +/obj/machinery/suit_cycler/exploration, +/obj/machinery/firealarm/angled, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/exploequipment) +"tf" = ( +/obj/structure/closet/wardrobe/robotics_black, +/turf/simulated/floor/tiled/dark, +/area/stellardelight/deck1/researchequip) +"tg" = ( +/obj/effect/floor_decal/milspec/color/black, +/turf/simulated/floor/tiled/dark, +/area/security/armoury) +"th" = ( +/obj/structure/table/rack/steel, +/obj/item/clothing/gloves/arm_guard/riot, +/obj/item/clothing/shoes/leg_guard/riot, +/obj/item/clothing/suit/armor/riot/alt, +/obj/item/clothing/head/helmet/riot, +/obj/item/weapon/shield/riot, +/obj/item/clothing/gloves/arm_guard/riot, +/obj/item/clothing/shoes/leg_guard/riot, +/obj/item/clothing/suit/armor/riot/alt, +/obj/item/clothing/head/helmet/riot, +/obj/item/weapon/shield/riot, +/obj/effect/floor_decal/milspec/color/black, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/dark, +/area/security/armoury) +"ti" = ( +/obj/machinery/computer/secure_data, +/turf/simulated/floor/tiled/dark, +/area/security/security_processing) +"tj" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-2" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck1/exterior) +"tl" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-2" + }, +/mob/living/simple_mob/animal/passive/mimepet/gregory, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/eris, +/area/rnd/xenobiology/xenoflora) +"tm" = ( +/obj/structure/dogbed, +/mob/living/simple_mob/animal/passive/tindalos/twigs, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/pathfinder) +"tn" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/milspec/color/black, +/turf/simulated/floor/tiled/dark, +/area/security/armoury) +"to" = ( +/obj/structure/table/bench/standard, +/obj/effect/floor_decal/milspec/color/orange/half{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/prison/cell_block) +"tp" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1379; + master_tag = "security_airlock"; + name = "interior access button"; + pixel_x = -32; + req_access = list(1) + }, +/obj/machinery/door/airlock/angled_bay/external/glass{ + frequency = 1379; + id_tag = "security_interior"; + locked = 1; + name = "Security Airlock" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/steel_ridged, +/area/security/tactical) +"tq" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/angled_bay/standard/color{ + door_color = "#ffffff"; + fill_color = "#ead9ff"; + name = "Circuitry Workshop"; + req_access = list(7); + stripe_color = "#5a19a8" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/rnd/workshop) +"tr" = ( +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/storage) +"ts" = ( +/obj/machinery/mech_recharger, +/obj/effect/floor_decal/milspec/color/black, +/turf/simulated/floor/tiled/dark, +/area/security/armoury) +"tt" = ( +/obj/structure/table/rack/steel, +/obj/item/clothing/gloves/arm_guard/laserproof, +/obj/item/clothing/shoes/leg_guard/laserproof, +/obj/item/clothing/suit/armor/laserproof, +/obj/item/clothing/head/helmet/laserproof, +/obj/item/clothing/gloves/arm_guard/laserproof, +/obj/item/clothing/shoes/leg_guard/laserproof, +/obj/item/clothing/suit/armor/laserproof, +/obj/item/clothing/head/helmet/laserproof, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/effect/floor_decal/milspec/color/black, +/turf/simulated/floor/tiled/dark, +/area/security/armoury) +"tu" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/structure/low_wall/bay/reinforced/purple, +/turf/simulated/floor, +/area/stellardelight/deck1/exploequipment) +"tv" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/stellardelight/deck1/paramedic) +"tw" = ( +/obj/structure/sign/department/sci{ + pixel_x = 32 + }, +/obj/effect/floor_decal/milspec/color/emerald/half{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/starboard) +"tx" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/exploration) +"tz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/oreprocessing) +"tA" = ( +/obj/machinery/camera/network/research/xenobio{ + dir = 5; + network = list("Xenobiology") + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"tB" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/portaft) +"tC" = ( +/turf/simulated/wall/bay/r_wall/black, +/area/security/armoury) +"tD" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/eris, +/area/stellardelight/deck1/researchhall) +"tE" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "4-8" + }, +/obj/structure/bed/chair, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/exploration) +"tF" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/machinery/power/apc/angled{ + dir = 1 + }, +/obj/structure/cable/pink{ + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/dark, +/area/security/security_processing) +"tG" = ( +/turf/simulated/floor/carpet/purcarpet, +/area/stellardelight/deck1/dorms/dorm6) +"tH" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/milspec/color/orange/half{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/prison/cell_block/C) +"tI" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/sign/department/rnd{ + pixel_y = 32 + }, +/obj/machinery/door/blast/angled_shutter/open{ + dir = 4; + id = "rndshutters"; + name = "Privacy Shutters" + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/research) +"tJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/aft) +"tK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/conveyor_switch/oneway{ + id = "bodieshitthefloor"; + pixel_x = -12; + pixel_y = 20 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/chapel_morgue) +"tL" = ( +/turf/simulated/wall/bay/r_wall{ + desc = "It has a steel stripe! A huge chunk of metal used to seperate rooms."; + stripe_color = "#3d5e80" + }, +/area/chapel/chapel_morgue) +"tM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/prison/cell_block) +"tN" = ( +/obj/structure/table/steel, +/obj/random/maintenance/security, +/obj/random/contraband, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/starboardfore) +"tO" = ( +/obj/structure/table/standard, +/obj/item/weapon/hand_labeler, +/obj/item/weapon/pen, +/obj/item/weapon/packageWrap, +/obj/item/weapon/packageWrap, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/research) +"tP" = ( +/obj/machinery/alarm/angled{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/starboardfore) +"tR" = ( +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/fore) +"tS" = ( +/obj/machinery/papershredder, +/obj/machinery/camera/network/security, +/obj/effect/floor_decal/milspec/color/red, +/turf/simulated/floor/tiled/dark, +/area/security/lobby) +"tT" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "2-8" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck1/exterior) +"tU" = ( +/obj/structure/table/bench/steel, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/tactical) +"tW" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/exploequipment) +"tX" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -24; + pixel_y = -25 + }, +/turf/simulated/floor/lino, +/area/chapel/office) +"tY" = ( +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/exploequipment) +"tZ" = ( +/turf/simulated/floor/tiled/techfloor, +/area/medical/morgue) +"ua" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorblack/full, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/canister/empty, +/turf/simulated/floor/tiled/dark, +/area/security/armoury) +"ub" = ( +/obj/structure/table/steel_reinforced, +/obj/item/ammo_magazine/m45/rubber{ + pixel_y = 9 + }, +/obj/item/ammo_magazine/m45/rubber{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/ammo_magazine/m45/rubber{ + pixel_y = -3 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/floor_decal/milspec/color/black, +/turf/simulated/floor/tiled/dark, +/area/security/armoury) +"uc" = ( +/obj/structure/closet/secure_closet/explorer, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/exploequipment) +"ue" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/port) +"uf" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/pathfinder) +"ug" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck1/port) +"uh" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor/glass/talon, +/obj/machinery/door/blast/regular/open{ + id = "talon_boat_cockpit" + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/stellardelight/deck1/exploshuttle) +"ui" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/white/cargo, +/area/medical/virology) +"uj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"uk" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/item/device/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/port) +"ul" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-2" + }, +/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, +/area/maintenance/stellardelight/deck1/starboardcent) +"um" = ( +/turf/simulated/wall/bay/steel, +/area/maintenance/stellardelight/substation/atmospherics) +"un" = ( +/obj/machinery/gateway{ + dir = 9 + }, +/turf/simulated/floor/tiled/eris/white/gray_platform, +/area/gateway) +"uo" = ( +/obj/structure/cable/orange{ + icon_state = "2-4" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck1/exterior) +"uq" = ( +/turf/space, +/area/space) +"ur" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/pink{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/angled_bay/standard/glass{ + door_color = "#8c1d11"; + name = "Brig"; + req_access = null; + req_one_access = list(38,63); + stripe_color = "#d27428" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/security/lobby) +"us" = ( +/turf/simulated/wall/bay/r_wall/steel, +/area/maintenance/stellardelight/substation/medical) +"ut" = ( +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/port) +"uu" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/aft) +"uv" = ( +/obj/structure/table/woodentable, +/obj/machinery/microwave, +/obj/machinery/firealarm/angled{ + dir = 8 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/stellardelight/deck1/dorms/dorm2) +"uw" = ( +/turf/space/internal_edge/left, +/area/stellardelight/deck1/starboard) +"ux" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/angled_bay/standard/color{ + door_color = "#333333"; + fill_color = "#757575"; + name = "Pathfinder"; + req_access = list(44); + stripe_color = "#5a19a8" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck1/pathfinder) +"uy" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/weapon/gun/energy/ionrifle/pistol, +/obj/machinery/camera/network/security, +/obj/effect/floor_decal/milspec/color/black, +/turf/simulated/floor/tiled/dark, +/area/security/armoury) +"uz" = ( +/obj/structure/table/reinforced, +/obj/item/device/slime_scanner, +/obj/item/device/slime_scanner, +/obj/item/weapon/reagent_containers/spray/cleaner, +/obj/machinery/light, +/obj/item/weapon/storage/box/syringes, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/xenobiology) +"uA" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck1/port) +"uB" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/machinery/door/blast/angled/open{ + dir = 2; + id = "explowindowlockdown" + }, +/obj/structure/low_wall/bay/reinforced/steel, +/turf/simulated/floor, +/area/stellardelight/deck1/exploration) +"uC" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/starboard) +"uD" = ( +/obj/structure/cable{ + 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/status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/port) +"uF" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "4-8" + }, +/turf/simulated/wall/bay/r_wall/steel, +/area/maintenance/stellardelight/deck1/exploration) +"uG" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 9 + }, +/obj/structure/closet/emergsuit_wall{ + dir = 8; + pixel_x = -27 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/port) +"uH" = ( +/obj/machinery/power/pointdefense{ + id_tag = "sd_pd" + }, +/obj/effect/floor_decal/industrial/warning/full, +/obj/structure/cable/pink{ + icon_state = "0-2" + }, +/obj/structure/cable/pink{ + icon_state = "0-8" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck1/exterior) +"uI" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -25; + pixel_y = -32 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/oreprocessing) +"uJ" = ( +/obj/effect/floor_decal/industrial/loading{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/oreprocessing) +"uL" = ( +/obj/effect/floor_decal/chapel, +/obj/structure/bed/chair/sofa/pew/right{ + dir = 1 + }, +/obj/effect/landmark/start/visitor, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"uM" = ( +/obj/structure/closet/excavation, +/turf/simulated/floor/tiled/eris/white/gray_platform, +/area/gateway) +"uN" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/reinforced, +/area/stellardelight/deck1/shuttlebay) +"uP" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/firealarm/angled{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/oreprocessing) +"uQ" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/structure/low_wall/bay/reinforced/steel, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/starboardaft) +"uR" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/blast/angled_shutter/open{ + dir = 4; + id = "rndshutters"; + name = "Privacy Shutters" + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/research) +"uS" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/flora/pottedplant/stoutbush, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/port) +"uT" = ( +/obj/structure/table/glass, +/obj/machinery/reagentgrinder, +/turf/simulated/floor/tiled/eris, +/area/rnd/xenobiology/xenoflora) +"uU" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/standard/glass{ + door_color = "#ffffff"; + name = "Research and Development"; + req_access = list(7); + stripe_color = "#5a19a8" + }, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_ridged, +/area/rnd/workshop) +"uV" = ( +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1379; + master_tag = "virology_airlock_control"; + name = "Virology Access Button"; + pixel_x = -32; + req_access = list(39) + }, +/obj/machinery/door/blast/angled/open{ + id = "virologyquar"; + name = "Virology Emergency Quarantine Blast Doors" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/standard/color{ + autoclose = 0; + door_color = "#ffffff"; + frequency = 1379; + id_tag = "virology_airlock_exterior"; + locked = 1; + name = "Virology Exterior Airlock"; + req_access = list(39); + stripe_color = "#5a96bb" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/medical/virology) +"uW" = ( +/turf/simulated/wall/bay/purple, +/area/stellardelight/deck1/exploration) +"uX" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/maintenance/stellardelight/deck1/starboardaft) +"uY" = ( +/obj/structure/closet/radiation, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/xenobiology) +"uZ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/virology) +"va" = ( +/obj/structure/closet/secure_closet/miner, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/alarm/angled{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/miningequipment) +"vb" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/camera/network/medbay{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/stellardelight/deck1/resleeving) +"vc" = ( +/obj/machinery/vending/security, +/obj/machinery/camera/network/security, +/turf/simulated/floor/tiled/dark, +/area/security/security_equiptment_storage) +"vd" = ( +/obj/structure/toilet{ + dir = 4 + }, +/obj/machinery/alarm/angled{ + dir = 4 + }, +/obj/effect/landmark/start/visitor, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/toilet) +"ve" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/pathfinder) +"vf" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/angled_bay/hatch{ + dir = 4; + name = "maintenance access"; + stripe_color = "#454545" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck1/aft) +"vg" = ( +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24; + pixel_y = 32 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/security/warden) +"vh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck1/starboard) +"vi" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/miningequipment) +"vj" = ( +/obj/machinery/recharge_station, +/obj/machinery/camera/network/exploration, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/aft) +"vk" = ( +/obj/structure/closet/secure_closet/pilot, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/eris/steel/panels, +/area/stellardelight/deck1/pilot) +"vm" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/hatch{ + dir = 4; + name = "maintenance access"; + stripe_color = "#454545" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/crew_quarters/toilet) +"vn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/exploration) +"vo" = ( +/obj/effect/floor_decal/milspec/color/red/half{ + dir = 8 + }, +/obj/effect/landmark/start/security, +/turf/simulated/floor/tiled/dark, +/area/security/security_lockerroom) +"vp" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/alarm/angled{ + dir = 8 + }, +/turf/simulated/floor/lino, +/area/chapel/office) +"vq" = ( +/obj/structure/closet/secure_closet/miner, +/obj/machinery/firealarm/angled{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/miningequipment) +"vr" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck1/starboard) +"vs" = ( +/obj/structure/table/steel, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/pen, +/turf/simulated/floor/tiled/dark, +/area/security/security_processing) +"vt" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/item_bank{ + dir = 4; + pixel_x = -29 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/starboard) +"vu" = ( +/turf/simulated/wall/bay/r_wall/brown, +/area/stellardelight/deck1/dorms/dorm5) +"vv" = ( +/obj/effect/landmark/start/scientist, +/turf/simulated/floor/tiled/eris, +/area/stellardelight/deck1/researchequip) +"vw" = ( +/obj/machinery/hologram/holopad, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/exploequipment) +"vx" = ( +/turf/simulated/wall/bay/r_wall/red, +/area/security/armoury) +"vy" = ( +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck1/explobriefing) +"vz" = ( +/obj/structure/bed/chair/backed_red{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/exploration) +"vA" = ( +/obj/machinery/computer/secure_data, +/obj/effect/floor_decal/milspec/color/red, +/turf/simulated/floor/tiled/dark, +/area/security/lobby) +"vB" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/fore) +"vC" = ( +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/miningequipment) +"vD" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"vE" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/lino, +/area/chapel/office) +"vF" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "4-8" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck1/exterior) +"vG" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/structure/cable/green{ + icon_state = "16-0" + }, +/obj/structure/disposalpipe/up{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/zpipe/up/supply, +/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/portcent) +"vH" = ( +/obj/machinery/button/remote/blast_door{ + id = "GatewayShutterE"; + name = "EVA Shutter"; + pixel_x = 5; + pixel_y = 24; + req_one_access = list(18,19,43,67) + }, +/obj/machinery/button/remote/blast_door{ + id = "GatewayShutterW"; + name = "EVA Shutter"; + pixel_x = -5; + pixel_y = 24; + req_access = null; + req_one_access = list(18,19,43,67) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/white/gray_platform, +/area/gateway) +"vI" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/firealarm/angled{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris, +/area/rnd/storage) +"vJ" = ( +/obj/machinery/mineral/stacking_unit_console{ + density = 0 + }, +/turf/simulated/wall/bay/brown, +/area/stellardelight/deck1/oreprocessing) +"vK" = ( +/obj/machinery/requests_console{ + department = "Exploration"; + name = "Exploration Requests Console"; + pixel_x = -30 + }, +/turf/simulated/floor/tiled/eris/steel/panels, +/area/stellardelight/deck1/pilot) +"vL" = ( +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/machinery/power/apc/angled{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck1/starboard) +"vM" = ( +/obj/machinery/button/remote/airlock{ + id = "bathroomstall1"; + name = "Toilet 1 Lock"; + pixel_x = -10; + pixel_y = 22; + specialfunctions = 4 + }, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/toilet) +"vN" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/xenobiology) +"vP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/starboardcent) +"vQ" = ( +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/eris/white/gray_platform, +/area/gateway) +"vT" = ( +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/exploration) +"vU" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/aft) +"vV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/xenobiology) +"vW" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/obj/effect/landmark/start/medical, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/exam_room) +"vX" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "2-8" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck1/exterior) +"vY" = ( +/obj/machinery/mech_recharger, +/turf/simulated/floor/bluegrid, +/area/assembly/robotics) +"vZ" = ( +/obj/structure/cable/pink{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/prison/cell_block/C) +"wa" = ( +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/obj/structure/cable/pink{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor, +/area/maintenance/security_port) +"wb" = ( +/obj/structure/sign/painting/chapel_secure{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"wc" = ( +/obj/machinery/firealarm/angled, +/obj/machinery/mecha_part_fabricator/pros, +/turf/simulated/floor/tiled/steel, +/area/assembly/robotics) +"we" = ( +/obj/structure/table/steel, +/obj/item/weapon/storage/box/nifsofts_security, +/obj/item/weapon/hand_labeler, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/vending/wallmed1/public{ + pixel_x = -29 + }, +/obj/effect/floor_decal/milspec/color/red, +/turf/simulated/floor/tiled/dark, +/area/security/security_lockerroom) +"wf" = ( +/turf/simulated/floor, +/area/maintenance/security_port) +"wg" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled/steel_grid, +/area/maintenance/stellardelight/deck1/starboardaft) +"wh" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 5 + }, +/obj/effect/floor_decal/milspec/color/black, +/turf/simulated/floor/tiled/dark, +/area/security/armoury) +"wi" = ( +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/port) +"wj" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"wk" = ( +/obj/machinery/requests_console{ + department = "Exploration"; + name = "Exploration Requests Console"; + pixel_x = -30 + }, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/explobriefing) +"wm" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/exploration) +"wn" = ( +/obj/structure/table/woodentable, +/obj/machinery/light/small, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/landmark/vermin, +/turf/simulated/floor/carpet/bcarpet, +/area/stellardelight/deck1/starboard) +"wo" = ( +/obj/structure/table/bench/marble, +/obj/machinery/camera/network/medbay{ + dir = 1 + }, +/obj/effect/landmark/start/paramedic, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/stellardelight/deck1/paramedic) +"wp" = ( +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/mining) +"wq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/alarm/angled{ + dir = 4 + }, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/explobriefing) +"ws" = ( +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/security_lockerroom) +"wt" = ( +/obj/structure/table/rack, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/suit/space/void/pilot, +/obj/item/clothing/suit/space/void/pilot, +/obj/item/clothing/head/helmet/space/void/pilot, +/obj/item/clothing/head/helmet/space/void/pilot, +/obj/item/weapon/tank/oxygen, +/obj/item/weapon/tank/oxygen, +/turf/simulated/floor/tiled/eris/steel/panels, +/area/stellardelight/deck1/pilot) +"wu" = ( +/obj/machinery/door/firedoor/glass/hidden/steel, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/port) +"wv" = ( +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/grille, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/blast/angled/open{ + dir = 4; + id = "xenobiopen2"; + name = "Pen 2 Blast Doors" + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology) +"ww" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/shuttlebay) +"wx" = ( +/obj/structure/cable/pink{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable/pink{ + icon_state = "1-2" + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/dark, +/area/security/security_equiptment_storage) +"wy" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/port) +"wz" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/structure/low_wall/bay/reinforced/steel, +/turf/simulated/floor, +/area/library) +"wA" = ( +/obj/machinery/firealarm/angled, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"wB" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris, +/area/rnd/xenobiology/xenoflora) +"wC" = ( +/obj/structure/bed/chair/bay/shuttle{ + dir = 8 + }, +/obj/machinery/light/floortube{ + dir = 4; + pixel_x = 6 + }, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/stellardelight/deck1/miningshuttle) +"wE" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/structure/curtain/black{ + anchored = 1 + }, +/obj/structure/low_wall/bay/reinforced/steel, +/turf/simulated/floor, +/area/stellardelight/deck1/dorms/dorm1) +"wF" = ( +/turf/simulated/wall/bay/steel, +/area/maintenance/stellardelight/substation/cargo) +"wG" = ( +/turf/simulated/wall/bay/r_wall/steel, +/area/maintenance/stellardelight/deck1/starboardfore) +"wI" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/seed_storage/xenobotany, +/turf/simulated/floor/tiled/eris, +/area/rnd/xenobiology/xenoflora) +"wJ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/toilet) +"wK" = ( +/obj/machinery/computer/rdconsole/robotics, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/camera/network/research, +/turf/simulated/floor/tiled/steel, +/area/assembly/robotics) +"wL" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/port) +"wM" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/orange, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/milspec/color/orange/half{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/prison/cell_block/C) +"wN" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/effect/landmark{ + name = "lightsout" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/shuttlebay) +"wO" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/mining/brace, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/shuttlebay) +"wP" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/starboardcent) +"wQ" = ( +/obj/structure/table/rack, +/obj/random/maintenance/research, +/obj/random/maintenance, +/obj/random/maintenance, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/portaft) +"wR" = ( +/obj/machinery/computer/diseasesplicer{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/virology) +"wS" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/standard/color{ + door_color = "#9c9c9c"; + fill_color = "#5c5c5c"; + id_tag = "dorm8"; + name = "Room 8"; + stripe_color = "#89bd66" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck1/dorms/dorm8) +"wT" = ( +/turf/simulated/floor/tiled/dark, +/area/security/security_cell_hallway) +"wU" = ( +/obj/structure/cable/orange{ + icon_state = "2-4" + }, +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/random/maintenance/clean, +/obj/random/maintenance/research, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/exploration) +"wV" = ( +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"wW" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/port) +"wX" = ( +/obj/structure/cable/pink{ + icon_state = "1-8" + }, +/turf/simulated/wall/bay/r_wall/steel, +/area/security/tactical) +"wY" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/alarm/angled{ + dir = 4 + }, +/obj/effect/floor_decal/milspec/color/orange/half{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/prison/cell_block/B) +"wZ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/structure/sign/directions/security{ + dir = 1; + pixel_y = 32 + }, +/obj/effect/floor_decal/milspec/color/red/half{ + dir = 1 + }, +/obj/effect/landmark/vines, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/fore) +"xa" = ( +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/obj/structure/cable/pink{ + icon_state = "1-8" + }, +/obj/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/lobby) +"xb" = ( +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck1/exploration) +"xc" = ( +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/starboard) +"xd" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/simulated/floor/tiled/dark, +/area/security/security_processing) +"xe" = ( +/turf/simulated/wall/bay/r_wall/brown, +/area/stellardelight/deck1/starboard) +"xf" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/structure/low_wall/bay/reinforced/brown, +/turf/simulated/floor, +/area/stellardelight/deck1/miningequipment) +"xg" = ( +/obj/structure/table/glass, +/obj/item/weapon/reagent_containers/glass/bottle/biomass{ + pixel_x = -4; + pixel_y = 8 + }, +/obj/item/weapon/reagent_containers/glass/bottle/biomass{ + pixel_x = -7; + pixel_y = 4 + }, +/obj/item/weapon/reagent_containers/glass/bottle/biomass{ + pixel_x = 6; + pixel_y = 8 + }, +/obj/item/weapon/reagent_containers/glass/bottle/biomass{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/device/flashlight/pen{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/machinery/computer/guestpass{ + dir = 8; + pixel_x = 25 + }, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/stellardelight/deck1/resleeving) +"xh" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/paper_bin{ + pixel_x = -2; + pixel_y = 8 + }, +/obj/item/weapon/pen/blue{ + pixel_x = 2; + pixel_y = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/lino, +/area/chapel/office) +"xi" = ( +/obj/structure/morgue{ + dir = 2 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/medical/morgue) +"xj" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/machinery/power/apc/angled{ + dir = 1 + }, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/eris, +/area/rnd/xenobiology/xenoflora) +"xk" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/dispenser/oxygen, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/exploequipment) +"xl" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/table/steel, +/obj/random/maintenance, +/obj/random/maintenance/research, +/obj/random/maintenance, +/obj/random/maintenance/clean, +/obj/random/maintenance/cargo, +/obj/random/maintenance/cargo, +/obj/random/contraband, +/obj/random/action_figure, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/exploration) +"xm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/floor_decal/milspec/color/red/half{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/security/security_cell_hallway) +"xn" = ( +/obj/machinery/firealarm/angled, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/white/gray_platform, +/area/gateway) +"xo" = ( +/turf/simulated/floor/reinforced, +/area/rnd/workshop) +"xq" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/starboardfore) +"xs" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/effect/landmark/start/roboticist, +/turf/simulated/floor/tiled/steel, +/area/assembly/robotics) +"xt" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/effect/landmark/start/xenobio, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/xenobiology) +"xu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/oreprocessing) +"xv" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/disposal/wall{ + dir = 8 + }, +/turf/simulated/floor/lino, +/area/chapel/office) +"xw" = ( +/obj/structure/closet/crate, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance/cargo, +/obj/random/maintenance/clean, +/obj/item/weapon/disk/nifsoft/compliance, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/exploration) +"xx" = ( +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck1/starboard) +"xy" = ( +/turf/simulated/wall/bay/r_wall/steel, +/area/maintenance/stellardelight/deck1/portfore) +"xz" = ( +/obj/machinery/requests_console/preset/research{ + pixel_y = 30 + }, +/obj/machinery/button/remote/blast_door{ + id = "rndshutters"; + name = "Privacy Shutter Control"; + pixel_x = -15; + pixel_y = 30 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/research) +"xA" = ( +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/security/warden) +"xB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/turf/simulated/floor/wood, +/area/library) +"xD" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/power/apc/angled{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/oreprocessing) +"xE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/station_map{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/fore) +"xF" = ( +/obj/structure/disposalpipe/sortjunction{ + dir = 4; + name = "Research"; + sortType = "Research" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/floor_decal/milspec/color/emerald/half{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 10 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/aft) +"xG" = ( +/obj/machinery/chem_master, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/camera/network/security{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/security/detectives_office) +"xH" = ( +/obj/structure/table/woodentable, +/obj/machinery/microwave, +/turf/simulated/floor/carpet/purcarpet, +/area/stellardelight/deck1/dorms/dorm6) +"xI" = ( +/obj/machinery/door/window/eastright{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/security/detectives_office) +"xJ" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor/glass/talon, +/obj/machinery/door/blast/regular/open{ + id = "talon_boat_cockpit" + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/stellardelight/deck1/miningshuttle) +"xK" = ( +/obj/machinery/power/apc/angled{ + dir = 1; + name = "night shift APC"; + nightshift_setting = 2 + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/structure/closet/firecloset, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/portcent) +"xL" = ( +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/security/security_cell_hallway) +"xM" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + frequency = 1379; + id_tag = "ex_airpump" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/exploration) +"xN" = ( +/obj/effect/floor_decal/milspec/color/red/half{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/security/tactical) +"xO" = ( +/obj/machinery/computer/shuttle_control/explore/stellardelight/mining, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/stellardelight/deck1/miningshuttle) +"xP" = ( +/obj/structure/sign/department/morgue{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"xQ" = ( +/obj/structure/window/reinforced, +/obj/machinery/power/apc/angled{ + dir = 4 + }, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris, +/area/rnd/xenobiology/xenoflora_storage) +"xR" = ( +/obj/effect/floor_decal/milspec/color/red/half{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/tactical) +"xS" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 6 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/stellardelight/deck1/shower) +"xT" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/starboardcent) +"xU" = ( +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/security_cell_hallway) +"xV" = ( +/turf/simulated/floor/carpet, +/area/library) +"xW" = ( +/obj/structure/cable/pink{ + icon_state = "1-2" + }, +/turf/simulated/wall/bay/r_wall/steel, +/area/maintenance/stellardelight/substation/security) +"xX" = ( +/obj/structure/table/reinforced, +/obj/item/device/uv_light, +/obj/item/weapon/reagent_containers/spray/luminol, +/turf/simulated/floor/tiled/white, +/area/security/detectives_office) +"xZ" = ( +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/fore) +"ya" = ( +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/dark, +/area/security/lobby) +"yb" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor/glass/talon, +/obj/machinery/door/blast/regular/open{ + id = "talon_boat_cockpit" + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/stellardelight/deck1/exploshuttle) +"yc" = ( +/obj/structure/bed/chair/bay/shuttle{ + dir = 8 + }, +/obj/machinery/power/apc/angled{ + cell_type = /obj/item/weapon/cell/super; + dir = 4; + req_access = list(19,43,67,66,5) + }, +/obj/structure/cable/green{ + color = "#42038a" + }, +/obj/machinery/light/floortube{ + dir = 4; + pixel_x = 6 + }, +/turf/simulated/floor/tiled/eris/steel/gray_platform, +/area/stellardelight/deck1/exploshuttle) +"yd" = ( +/obj/structure/table/reinforced, +/obj/machinery/cell_charger, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/white/gray_platform, +/area/gateway) +"ye" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/structure/low_wall/bay/reinforced/red, +/turf/simulated/floor, +/area/prison/cell_block) +"yf" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology) +"yg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/wood, +/area/library) +"yi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/starboard) +"yj" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 9 + }, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/exploration) +"yk" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/multi_tile/two_tile_ver{ + id = "armorydoor"; + name = "Armory" + }, +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/armoury) +"yl" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/obj/machinery/alarm/angled{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/stellardelight/deck1/shower) +"ym" = ( +/turf/simulated/wall/bay/r_wall/steel, +/area/rnd/xenobiology) +"yn" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/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, +/area/maintenance/stellardelight/deck1/exploration) +"yo" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"yp" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/angled_bay/hatch{ + dir = 4; + door_color = "#ffffff"; + name = "maintenance access"; + req_one_access = null; + stripe_color = "#5a19a8" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/maintenance/stellardelight/deck1/starboardaft) +"yq" = ( +/obj/structure/table/standard, +/obj/machinery/recharger, +/obj/item/device/retail_scanner/science, +/obj/item/device/multitool/scioutpost, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/research) +"yr" = ( +/obj/machinery/power/apc/angled{ + dir = 4; + name = "night shift APC"; + nightshift_setting = 2 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/table/rack, +/obj/random/maintenance/research, +/obj/random/maintenance/security, +/obj/random/maintenance/security, +/obj/random/maintenance/clean, +/obj/random/maintenance, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/starboardcent) +"ys" = ( +/obj/machinery/requests_console{ + department = "Exploration"; + name = "Exploration Requests Console"; + pixel_x = 30 + }, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/exploration) +"yt" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/computer/guestpass{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/aft) +"yu" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/stellardelight/deck1/paramedic) +"yv" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/disposal/wall{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/research) +"yw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/portcent) +"yx" = ( +/obj/machinery/firealarm/angled{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/starboard) +"yy" = ( +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/starboardfore) +"yz" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck1/exterior) +"yB" = ( +/obj/machinery/alarm/angled{ + dir = 8 + }, +/obj/structure/closet/secure_closet/brig{ + id = "Cell C" + }, +/obj/effect/floor_decal/milspec/color/orange/half{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/prison/cell_block/C) +"yC" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/cable{ + icon_state = "16-0" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/starboardcent) +"yD" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/turf/simulated/floor/tiled/eris, +/area/rnd/storage) +"yE" = ( +/obj/structure/cable/pink{ + icon_state = "1-8" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck1/exterior) +"yF" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/angled_bay/double{ + name = "maintenance access"; + stripe_color = "#454545" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/starboardfore) +"yG" = ( +/obj/structure/cable/pink{ + icon_state = "1-4" + }, +/obj/structure/cable/pink{ + icon_state = "1-2" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck1/exterior) +"yH" = ( +/obj/structure/bed/chair/bay/shuttle{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/stellardelight/deck1/miningshuttle) +"yI" = ( +/obj/machinery/transhuman/resleever, +/obj/machinery/alarm/angled{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/assembly/robotics) +"yJ" = ( +/obj/structure/table/rack/shelf, +/obj/item/weapon/tank/oxygen, +/obj/item/device/suit_cooling_unit, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/mask/breath, +/obj/item/clothing/suit/space/void/exploration, +/obj/item/clothing/head/helmet/space/void/exploration, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/exploequipment) +"yK" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/stellardelight/deck1/shuttlebay) +"yL" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/stellardelight/deck1/shuttlebay) +"yM" = ( +/obj/machinery/mech_recharger, +/obj/structure/cable/pink{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/milspec/color/black, +/turf/simulated/floor/tiled/dark, +/area/security/armoury) +"yN" = ( +/obj/structure/bed/chair, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/portaft) +"yO" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/camera/network/halls, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/aft) +"yP" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/pen, +/obj/item/weapon/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/explobriefing) +"yQ" = ( +/obj/machinery/atmospherics/unary/freezer{ + dir = 8; + icon_state = "freezer_1"; + power_setting = 20; + set_temperature = 73; + use_power = 1 + }, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck1/researchserver) +"yR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/floor_decal/milspec/color/red/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/security_cell_hallway) +"yS" = ( +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance/clean, +/obj/random/maintenance/research, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/exploration) +"yT" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/starboardcent) +"yU" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/clothing/glasses/welding, +/obj/item/weapon/storage/belt/utility, +/obj/machinery/power/apc/angled{ + dir = 4 + }, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/research) +"yV" = ( +/obj/machinery/firealarm/angled{ + dir = 8 + }, +/turf/simulated/floor/lino, +/area/chapel/office) +"yX" = ( +/obj/effect/shuttle_landmark/premade/sd/deck1/aft, +/turf/space, +/area/space) +"yY" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 8; + external_pressure_bound = 0; + external_pressure_bound_default = 0; + icon_state = "map_vent_in"; + initialize_directions = 1; + internal_pressure_bound = 4000; + internal_pressure_bound_default = 4000; + pressure_checks = 2; + pressure_checks_default = 2; + pump_direction = 0; + use_power = 1 + }, +/turf/simulated/floor/bluegrid{ + name = "Server Base"; + nitrogen = 500; + oxygen = 0; + temperature = 80 + }, +/area/stellardelight/deck1/researchserver) +"yZ" = ( +/obj/effect/floor_decal/chapel{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"za" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/starboard) +"zb" = ( +/obj/effect/floor_decal/milspec/color/red/half{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 10 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/fore) +"zc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/fore) +"zd" = ( +/obj/machinery/door/airlock/angled_bay/external/glass{ + dir = 4; + frequency = 1379; + id_tag = "ex_interior"; + locked = 1; + name = "Exterior Airlock" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1379; + master_tag = "ex_airlock"; + name = "interior access button"; + pixel_y = 32; + req_one_access = list(13) + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/maintenance/stellardelight/deck1/exploration) +"ze" = ( +/obj/structure/cable/pink{ + icon_state = "1-2" + }, +/obj/machinery/status_display{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled/dark, +/area/security/security_cell_hallway) +"zf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/virology) +"zg" = ( +/obj/structure/bed/chair/comfy/black, +/obj/machinery/firealarm/angled{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/stellardelight/deck1/dorms/dorm8) +"zh" = ( +/obj/structure/bed/chair/backed_red{ + dir = 8 + }, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/exploration) +"zi" = ( +/obj/machinery/space_heater, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/portcent) +"zj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/wood, +/area/library) +"zk" = ( +/obj/structure/closet/l3closet/virology, +/obj/machinery/power/apc/angled{ + dir = 1 + }, +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/eris/white/cargo, +/area/medical/virology) +"zl" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/starboard) +"zm" = ( +/obj/structure/closet/walllocker_double/east, +/obj/item/device/camera, +/obj/item/device/universal_translator, +/obj/item/weapon/folder/yellow, +/obj/item/weapon/pen, +/obj/item/weapon/storage/box/lights/mixed, +/obj/structure/cable/green{ + color = "#42038a"; + 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/milspec, +/area/stellardelight/deck1/explobriefing) +"zn" = ( +/obj/structure/closet/secure_closet/paramedic, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/stellardelight/deck1/paramedic) +"zo" = ( +/obj/item/weapon/stool/padded, +/obj/machinery/light_switch{ + pixel_y = 25 + }, +/obj/effect/landmark/start/librarian, +/turf/simulated/floor/carpet, +/area/library) +"zp" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/weapon/gun/energy/ionrifle, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/floor_decal/milspec/color/black, +/obj/effect/landmark/vermin, +/turf/simulated/floor/tiled/dark, +/area/security/armoury) +"zq" = ( +/obj/machinery/power/apc/angled{ + dir = 1 + }, +/obj/structure/cable/pink{ + icon_state = "0-2" + }, +/obj/effect/floor_decal/milspec/color/red/half{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/security/lobby) +"zr" = ( +/turf/simulated/floor/carpet/purcarpet, +/area/stellardelight/deck1/dorms/dorm2) +"zs" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/exploration) +"zt" = ( +/turf/simulated/floor, +/area/maintenance/stellardelight/substation/research) +"zv" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology) +"zw" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/angled_bay/hatch{ + door_color = "#e6ab22"; + name = "Medical Substation"; + req_one_access = list(10); + stripe_color = "#e6ab22" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/maintenance/stellardelight/substation/medical) +"zx" = ( +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/security_equiptment_storage) +"zy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/white/gray_platform, +/area/gateway) +"zz" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/mining) +"zA" = ( +/obj/structure/closet/walllocker_double/north, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/workshop) +"zB" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/angled_bay/hatch{ + dir = 4; + name = "maintenance access"; + stripe_color = "#454545" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/maintenance/security_port) +"zC" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/dark, +/area/security/security_cell_hallway) +"zD" = ( +/turf/simulated/wall/bay/r_wall/red, +/area/security/warden) +"zE" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/weapon/storage/box/stunshells{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/storage/box/flashshells{ + pixel_x = 1 + }, +/obj/item/weapon/storage/box/beanbags{ + pixel_x = 4; + pixel_y = -5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/purple{ + dir = 6 + }, +/obj/effect/floor_decal/milspec/color/black, +/turf/simulated/floor/tiled/dark, +/area/security/armoury) +"zG" = ( +/obj/machinery/autolathe{ + dir = 1; + hacked = 1 + }, +/obj/structure/reagent_dispensers/acid{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/assembly/robotics) +"zH" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/substation/security) +"zI" = ( +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/grille, +/obj/machinery/door/blast/angled/open{ + dir = 4; + id = "xenobiopen5"; + name = "Pen 5 Blast Doors" + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology) +"zK" = ( +/obj/structure/table/rack/shelf, +/obj/item/weapon/tank/oxygen, +/obj/item/device/suit_cooling_unit, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/mask/breath, +/obj/item/clothing/suit/space/void/expedition_medical, +/obj/item/clothing/head/helmet/space/void/expedition_medical, +/obj/machinery/light, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/exploequipment) +"zL" = ( +/obj/machinery/firealarm/angled, +/obj/effect/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/exploration) +"zM" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck1/port) +"zN" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/clothing/suit/storage/vest/heavy/officer{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/clothing/suit/storage/vest/heavy/officer{ + pixel_x = -4; + pixel_y = -6 + }, +/obj/item/clothing/suit/storage/vest/heavy/officer{ + pixel_x = 5; + pixel_y = -6 + }, +/obj/item/clothing/suit/storage/vest/heavy/officer{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/milspec/color/black, +/turf/simulated/floor/tiled/dark, +/area/security/armoury) +"zO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "4-8" + }, +/obj/machinery/camera/network/exploration, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/shuttlebay) +"zP" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/stellardelight/deck1/shower) +"zQ" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/alarm/angled{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/aft) +"zR" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/stellardelight/deck1/dorms/dorm4) +"zS" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-8" + }, +/obj/machinery/firealarm/angled{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris, +/area/stellardelight/deck1/researchhall) +"zT" = ( +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 28 + }, +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 20 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/xenobiology) +"zU" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/research) +"zV" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + dir = 4; + frequency = 1380; + id_tag = "miningdocker"; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/stellardelight/deck1/miningshuttle) +"zW" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/fore) +"zX" = ( +/obj/machinery/r_n_d/server/robotics, +/turf/simulated/floor/bluegrid{ + name = "Server Base"; + nitrogen = 500; + oxygen = 0; + temperature = 80 + }, +/area/stellardelight/deck1/researchserver) +"zY" = ( +/obj/structure/bed/chair/sofa/pew/right{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"zZ" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/explobriefing) +"Aa" = ( +/obj/item/weapon/storage/backpack/parachute{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/weapon/storage/backpack/parachute{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/weapon/storage/backpack/parachute{ + pixel_x = 4; + pixel_y = -6 + }, +/obj/item/weapon/storage/backpack/parachute{ + pixel_x = -4; + pixel_y = -6 + }, +/obj/structure/table/rack/shelf, +/obj/item/weapon/storage/backpack/parachute{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/weapon/storage/backpack/parachute{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/weapon/storage/backpack/parachute{ + pixel_x = 4; + pixel_y = -6 + }, +/obj/item/weapon/storage/backpack/parachute{ + pixel_x = -4; + pixel_y = -6 + }, +/obj/machinery/alarm/angled{ + dir = 4 + }, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/exploequipment) +"Ab" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/tiled/steel_grid, +/area/maintenance/stellardelight/deck1/starboardaft) +"Ac" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/obj/effect/floor_decal/milspec/color/red/half{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/security/tactical) +"Ad" = ( +/obj/machinery/camera/network/research/xenobio{ + dir = 9; + network = list("Xenobiology") + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"Ae" = ( +/obj/structure/bed/chair/sofa/corp/right, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/carpet/purcarpet, +/area/stellardelight/deck1/dorms/dorm6) +"Af" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "xenospace4"; + name = "4 Space Door"; + pixel_x = 5; + pixel_y = 2; + req_access = list(55) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology) +"Ag" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-8" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/exploration) +"Ah" = ( +/obj/machinery/power/pointdefense{ + id_tag = "sd_pd" + }, +/obj/effect/floor_decal/industrial/warning/full, +/obj/structure/cable/pink{ + icon_state = "0-2" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck1/exterior) +"Ai" = ( +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/grille, +/obj/machinery/door/blast/angled/open{ + dir = 4; + id = "xenobiopen3"; + name = "Pen 3 Blast Doors" + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology) +"Aj" = ( +/turf/simulated/wall/bay/steel, +/area/stellardelight/deck1/pilot) +"Ak" = ( +/turf/simulated/wall/bay/r_wall/black, +/area/chapel/chapel_morgue) +"Am" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"An" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/effect/landmark/start/fieldmedic, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/explobriefing) +"Ao" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/angled_bay/standard/glass{ + dir = 4; + door_color = "#8c1d11"; + name = "Equipment Storage"; + req_access = list(1); + stripe_color = "#d27428" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/security/security_lockerroom) +"Ap" = ( +/obj/structure/table/bench/sifwooden/padded, +/obj/effect/landmark/start/pilot, +/turf/simulated/floor/tiled/eris/steel/panels, +/area/stellardelight/deck1/pilot) +"Aq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/carpet, +/area/stellardelight/deck1/dorms/dorm5) +"Ar" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/stellardelight/deck1/dorms/dorm6) +"As" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/tiled/eris, +/area/rnd/xenobiology/xenoflora) +"At" = ( +/obj/effect/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/exploequipment) +"Au" = ( +/obj/machinery/power/apc/angled{ + dir = 4 + }, +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/exam_room) +"Av" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/white/gray_platform, +/area/gateway) +"Aw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/effect/landmark/start/security, +/turf/simulated/floor/tiled/dark, +/area/security/security_processing) +"Ax" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/reinforced, +/area/stellardelight/deck1/shuttlebay) +"Ay" = ( +/obj/machinery/light/small, +/turf/simulated/floor/carpet/purcarpet, +/area/stellardelight/deck1/dorms/dorm2) +"AB" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -24; + pixel_y = -24 + }, +/turf/simulated/floor/carpet, +/area/stellardelight/deck1/dorms/dorm5) +"AC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/alarm/angled, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/starboardcent) +"AD" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/disposal/wall{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/computer/shuttle_control/explore/stellardelight/exploration{ + dir = 8 + }, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/exploequipment) +"AE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/exploequipment) +"AF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 5 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/starboard) +"AG" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 4; + name = "Janitor"; + sortType = "Janitor" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor, +/area/stellardelight/deck1/port) +"AH" = ( +/obj/structure/bookcase{ + name = "bookcase (Non-Fiction)" + }, +/obj/item/weapon/book/bundle/custom_library/nonfiction/riseandfallofpersianempire, +/obj/item/weapon/book/bundle/custom_library/nonfiction/skrelliancastesystem, +/obj/item/weapon/book/bundle/custom_library/nonfiction/viabilityofcorporategov, +/obj/item/weapon/book/custom_library/nonfiction/freesirisailightbulbs, +/turf/simulated/floor/wood, +/area/library) +"AI" = ( +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/obj/structure/table/steel, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/contraband, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/starboardfore) +"AJ" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/angled_bay/standard/glass{ + dir = 4; + door_color = "#2e2e2e"; + name = "Chapel" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/chapel/main) +"AK" = ( +/obj/structure/table/rack{ + dir = 8; + layer = 2.9 + }, +/obj/structure/window/reinforced, +/obj/item/clothing/mask/breath, +/obj/item/weapon/rig/eva/equipped, +/obj/machinery/door/window/brigdoor/eastright{ + req_access = list(11,24) + }, +/turf/simulated/floor/tiled/eris/white/gray_platform, +/area/gateway) +"AL" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "2-4" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris, +/area/stellardelight/deck1/researchhall) +"AM" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "2-4" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck1/exterior) +"AN" = ( +/obj/structure/table/woodentable, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/item/weapon/paper_bin{ + pixel_y = 7 + }, +/obj/item/weapon/pen, +/turf/simulated/floor/carpet, +/area/library) +"AO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/assembly/robotics) +"AP" = ( +/obj/item/weapon/bedsheet/bluedouble, +/obj/structure/bed/double/padded, +/obj/structure/curtain/black, +/turf/simulated/floor/carpet, +/area/stellardelight/deck1/dorms/dorm5) +"AQ" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/starboard) +"AR" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/machinery/alarm/angled{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris, +/area/rnd/xenobiology/xenoflora_storage) +"AS" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/medical, +/obj/structure/curtain/open/privacy, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 24 + }, +/turf/simulated/floor/tiled/white, +/area/medical/patient_wing) +"AT" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/structure/curtain/black{ + anchored = 1 + }, +/obj/structure/low_wall/bay/reinforced/steel, +/turf/simulated/floor, +/area/stellardelight/deck1/dorms/dorm5) +"AV" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/chapel_morgue) +"AW" = ( +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/starboardfore) +"AX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/effect/floor_decal/milspec/color/black, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/dark, +/area/security/armoury) +"AY" = ( +/turf/simulated/wall/bay/r_wall/black, +/area/chapel/main) +"AZ" = ( +/obj/machinery/door/firedoor/glass/hidden/steel, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/starboard) +"Ba" = ( +/obj/machinery/status_display{ + pixel_x = 32 + }, +/obj/effect/floor_decal/milspec/color/red/half{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/security_cell_hallway) +"Bb" = ( +/obj/structure/table/steel, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/portfore) +"Bd" = ( +/obj/machinery/firealarm/angled, +/turf/simulated/floor/tiled/white, +/area/security/detectives_office) +"Be" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/mining) +"Bf" = ( +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor, +/area/maintenance/security_port) +"Bi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/security/security_lockerroom) +"Bj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/white/cargo, +/area/medical/virology) +"Bk" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/machinery/power/apc/angled{ + dir = 1 + }, +/obj/structure/cable/pink{ + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/white, +/area/security/detectives_office) +"Bl" = ( +/obj/structure/bed/chair/backed_red{ + dir = 1 + }, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/aft) +"Bm" = ( +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/grille, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/blast/angled/open{ + dir = 4; + id = "xenobiopen3"; + name = "Pen 3 Blast Doors" + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology) +"Bn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/effect/landmark/start/roboticist, +/turf/simulated/floor/tiled/steel, +/area/assembly/robotics) +"Bo" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/firstaid/surgery, +/obj/item/weapon/paper{ + desc = ""; + info = "Stop installing NIFs in here you clods! Unless it's on a synth. Otherwise, STOP DOING IT! You're killing people! -Management"; + name = "note to science staff" + }, +/obj/item/device/robotanalyzer, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/item/device/mmi/digital/posibrain, +/obj/item/device/mmi, +/turf/simulated/floor/tiled/steel_dirty, +/area/assembly/robotics) +"Br" = ( +/obj/structure/closet/secure_closet/personal, +/obj/machinery/firealarm/angled{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/stellardelight/deck1/dorms/dorm5) +"Bs" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/pink{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/angled_bay/standard/glass{ + door_color = "#8c1d11"; + name = "Equipment Storage"; + req_access = list(1); + stripe_color = "#d27428" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/security/security_lockerroom) +"Bt" = ( +/obj/effect/floor_decal/milspec/color/red/half{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/dark, +/area/security/lobby) +"Bu" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/research) +"Bv" = ( +/obj/structure/table/reinforced, +/obj/item/device/reagent_scanner, +/obj/item/device/mass_spectrometer/adv, +/obj/effect/floor_decal/milspec/color/red/half{ + dir = 6 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/white, +/area/security/detectives_office) +"Bw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/starboardfore) +"Bx" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 4 + }, +/obj/effect/landmark/start/visitor, +/turf/simulated/floor/wood, +/area/library) +"By" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/exploration) +"Bz" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/landmark/start/janitor, +/turf/simulated/floor/tiled/monotile, +/area/janitor) +"BA" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/sign/directions/security{ + dir = 1; + pixel_y = 32 + }, +/obj/effect/floor_decal/milspec/color/red/half{ + dir = 1 + }, +/obj/effect/landmark/vermin, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/fore) +"BB" = ( +/obj/structure/cable/green{ + color = "#42038a"; + 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 = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/research) +"BC" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/exploration) +"BD" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "4-8" + }, +/obj/machinery/door/airlock/angled_bay/standard/glass{ + dir = 4; + door_color = "#333333"; + name = "Shuttle Bay"; + req_one_access = null; + stripe_color = "#5a19a8" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck1/exploration) +"BE" = ( +/obj/machinery/light/floortube{ + dir = 8; + pixel_x = -6 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/eris, +/area/rnd/xenobiology/xenoflora) +"BF" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/angled_bay/standard/color{ + dir = 8; + door_color = "#ffffff"; + id_tag = "m-ex-room"; + name = "Exam Room"; + req_access = list(5); + stripe_color = "#5a96bb" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/medical/exam_room) +"BG" = ( +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/security/tactical) +"BH" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/landmark/vermin, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/exploration) +"BI" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck1/port) +"BJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/security/security_lockerroom) +"BK" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/assembly/robotics) +"BL" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/starboard) +"BM" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/recharger, +/turf/simulated/floor/tiled/dark, +/area/security/security_equiptment_storage) +"BN" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow, +/obj/machinery/power/sensor{ + name = "Powernet Sensor - Cargo Subgrid"; + name_tag = "Cargo Subgrid" + }, +/obj/machinery/power/apc/angled{ + dir = 4; + name = "night shift APC"; + nightshift_setting = 2 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/substation/cargo) +"BO" = ( +/obj/machinery/computer/secure_data{ + dir = 1 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/white, +/area/security/detectives_office) +"BP" = ( +/obj/structure/table/steel, +/obj/random/maintenance/clean, +/obj/random/maintenance, +/obj/random/contraband, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/exploration) +"BQ" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/substation/research) +"BR" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/starboardcent) +"BS" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/filingcabinet, +/turf/simulated/floor/tiled/white, +/area/security/detectives_office) +"BT" = ( +/obj/machinery/power/apc/angled{ + dir = 4 + }, +/obj/structure/cable/pink{ + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/security/security_equiptment_storage) +"BU" = ( +/turf/simulated/wall/bay/black, +/area/chapel/main) +"BV" = ( +/obj/machinery/disease2/incubator, +/obj/structure/reagent_dispensers/virusfood{ + pixel_y = 27 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/virology) +"BW" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/substation/exploration) +"BX" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris, +/area/rnd/xenobiology/xenoflora_storage) +"BY" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/milspec/color/orange/half{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/prison/cell_block) +"BZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/research) +"Ca" = ( +/obj/machinery/camera/network/command{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/white/gray_platform, +/area/gateway) +"Cb" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = 25; + pixel_y = -24 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/stellardelight/deck1/dorms/dorm3) +"Cc" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/exploration) +"Ce" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/machinery/door/blast/angled/open{ + dir = 4; + id = "researchwindowlockdown" + }, +/obj/structure/low_wall/bay/reinforced/steel, +/turf/simulated/floor, +/area/rnd/xenobiology/xenoflora_storage) +"Cf" = ( +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"Cg" = ( +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/starboardcent) +"Ch" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 10 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/starboard) +"Ci" = ( +/obj/machinery/power/pointdefense{ + id_tag = "sd_pd" + }, +/obj/effect/floor_decal/industrial/warning/full, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "0-2" + }, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "0-8" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck1/exterior) +"Cj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/library) +"Ck" = ( +/obj/machinery/firealarm/angled{ + dir = 8 + }, +/obj/machinery/photocopier, +/turf/simulated/floor/wood, +/area/library) +"Cl" = ( +/obj/structure/table/rack/shelf, +/obj/item/stack/marker_beacon/thirty{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/item/stack/marker_beacon/thirty{ + pixel_x = -5; + pixel_y = 4 + }, +/obj/item/device/gps{ + pixel_x = -6; + pixel_y = -4 + }, +/obj/item/device/gps{ + pixel_x = -6; + pixel_y = -4 + }, +/obj/item/device/gps{ + pixel_x = 6; + pixel_y = -4 + }, +/obj/item/device/gps{ + pixel_x = 6; + pixel_y = -4 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/camera/network/exploration{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck1/explobriefing) +"Cm" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/disposalpipe/up{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers, +/obj/machinery/atmospherics/pipe/zpipe/up/supply, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/starboardcent) +"Cn" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"Co" = ( +/obj/structure/bed/chair/sofa/corp/left{ + dir = 1 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/stellardelight/deck1/dorms/dorm7) +"Cp" = ( +/obj/machinery/power/apc/angled{ + dir = 8; + name = "night shift APC"; + nightshift_setting = 2 + }, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/eris, +/area/stellardelight/deck1/researchhall) +"Cr" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/starboardfore) +"Cs" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable{ + 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/angled_bay/hatch{ + dir = 4; + name = "maintenance access"; + stripe_color = "#454545" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/maintenance/stellardelight/deck1/starboardcent) +"Ct" = ( +/turf/simulated/wall/bay/r_wall/purple, +/area/assembly/robotics) +"Cu" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/stellardelight/deck1/shower) +"Cv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/white/gray_platform, +/area/gateway) +"Cw" = ( +/obj/effect/floor_decal/borderfloorblack/full, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/deployable/barrier, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/armoury) +"Cx" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "2-8" + }, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "4-8" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck1/exterior) +"Cz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/security/detectives_office) +"CA" = ( +/obj/machinery/door/airlock/angled_bay/standard/color/common{ + dir = 4; + id_tag = "bathroomstall1"; + name = "Toilet 1" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/crew_quarters/toilet) +"CB" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/portaft) +"CC" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/starboardcent) +"CD" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/machinery/door/blast/angled/open{ + dir = 2; + id = "brigwindowlockdown" + }, +/obj/structure/cable/pink{ + icon_state = "1-2" + }, +/obj/structure/low_wall/bay/reinforced/steel, +/turf/simulated/floor, +/area/security/security_equiptment_storage) +"CE" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "securitylockdown"; + name = "Brig Lockdown"; + pixel_x = 26; + pixel_y = -7 + }, +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "armorydoor"; + name = "Armory"; + pixel_x = 26; + pixel_y = 9 + }, +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "wardenoffice"; + name = "Privacy Shutters"; + pixel_x = 37; + pixel_y = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/security/warden) +"CG" = ( +/turf/simulated/wall/bay/white, +/area/stellardelight/deck1/resleeving) +"CH" = ( +/obj/structure/closet/secure_closet/explorer, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/exploequipment) +"CI" = ( +/obj/machinery/computer/secure_data, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/dark, +/area/security/warden) +"CJ" = ( +/obj/structure/table/glass, +/obj/item/weapon/book/manual/virology, +/obj/item/device/antibody_scanner, +/obj/item/weapon/reagent_containers/glass/beaker, +/obj/item/weapon/paper_bin, +/obj/item/weapon/folder/white, +/obj/item/weapon/pen, +/obj/machinery/light/floortube{ + dir = 4; + pixel_x = 6 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/disposal/wall{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/virology) +"CK" = ( +/obj/machinery/button/remote/blast_door{ + id = "explowindowlockdown"; + name = "Window Lockdown"; + pixel_y = 25 + }, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/exploration) +"CL" = ( +/obj/structure/stairs/spawner/north, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor, +/area/stellardelight/deck1/aft) +"CM" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/structure/low_wall/bay/reinforced/red, +/turf/simulated/floor, +/area/prison/cell_block/C) +"CN" = ( +/obj/structure/bed/chair/office/dark, +/obj/effect/landmark/start/fieldmedic, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/explobriefing) +"CO" = ( +/obj/structure/table/woodentable, +/obj/machinery/librarycomp, +/turf/simulated/floor/carpet, +/area/library) +"CP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/shuttlebay) +"CQ" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/requests_console/preset/security{ + pixel_y = 30 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/milspec/color/red, +/obj/item/weapon/paper_bin{ + pixel_y = 7 + }, +/obj/item/weapon/pen, +/turf/simulated/floor/tiled/dark, +/area/security/lobby) +"CR" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/white/cargo, +/area/medical/virology) +"CS" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "2-4" + }, +/turf/simulated/wall/bay/r_wall/purple, +/area/rnd/xenobiology) +"CT" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/exploequipment) +"CU" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/alarm/angled, +/obj/structure/undies_wardrobe, +/turf/simulated/floor/tiled/dark, +/area/stellardelight/deck1/resleeving) +"CV" = ( +/obj/structure/sign/directions/dorms{ + dir = 1; + pixel_x = 32 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/sign/directions/security{ + dir = 1; + pixel_x = 32; + pixel_y = 6 + }, +/obj/effect/floor_decal/milspec/color/emerald/half{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/aft) +"CW" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/explobriefing) +"CX" = ( +/obj/effect/floor_decal/chapel{ + dir = 1 + }, +/obj/structure/bed/chair/sofa/pew/left{ + dir = 1 + }, +/obj/effect/landmark/start/visitor, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"CY" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/table/rack, +/obj/random/drinkbottle, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/random/contraband, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/starboardaft) +"CZ" = ( +/obj/structure/cable/green{ + 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/techmaint, +/area/stellardelight/deck1/port) +"Da" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/standard/color{ + dir = 8; + door_color = "#ffffff"; + name = "EMT Bay"; + req_access = list(5); + stripe_color = "#5a96bb" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck1/paramedic) +"Db" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/machinery/door/blast/angled/open{ + dir = 2; + id = "researchwindowlockdown" + }, +/obj/structure/low_wall/bay/reinforced/steel, +/turf/simulated/floor, +/area/rnd/storage) +"Dc" = ( +/obj/item/weapon/bedsheet/orangedouble, +/obj/structure/bed/double/padded, +/obj/structure/curtain/black, +/turf/simulated/floor/carpet/purcarpet, +/area/stellardelight/deck1/dorms/dorm3) +"Dd" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/milspec/color/emerald/half{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/aft) +"De" = ( +/obj/item/weapon/bedsheet/bluedouble, +/obj/structure/bed/double/padded, +/obj/structure/curtain/black, +/turf/simulated/floor/carpet, +/area/stellardelight/deck1/dorms/dorm4) +"Df" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -32; + pixel_y = -32 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/stellardelight/deck1/paramedic) +"Dg" = ( +/obj/structure/plasticflaps/mining, +/obj/machinery/conveyor{ + dir = 8; + id = "bodieshitthefloor" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/chapel/chapel_morgue) +"Di" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/stellardelight/deck1/fore) +"Dj" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/double{ + name = "maintenance access"; + stripe_color = "#454545" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/portfore) +"Dk" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 10 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/port) +"Dl" = ( +/obj/structure/cable/pink{ + icon_state = "2-4" + }, +/obj/structure/cable/pink{ + icon_state = "2-8" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck1/exterior) +"Dm" = ( +/obj/structure/bed/chair/backed_red, +/obj/item/device/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/aft) +"Dn" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/miningequipment) +"Do" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/oreprocessing) +"Dp" = ( +/obj/machinery/door/firedoor/glass/hidden/steel, +/obj/structure/sign/directions/security{ + dir = 1; + pixel_x = -32; + pixel_y = 10 + }, +/obj/structure/sign/directions/library{ + dir = 4; + pixel_x = -32; + pixel_y = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/fore) +"Dq" = ( +/obj/machinery/newscaster{ + pixel_x = -29 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/port) +"Ds" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/standard/color{ + dir = 4; + door_color = "#ffffff"; + fill_color = "#ead9ff"; + name = "Robotics Lab"; + req_access = list(29,47); + stripe_color = "#5a19a8" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/assembly/robotics) +"Dt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/exploration) +"Dv" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/starboardaft) +"Dw" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"Dx" = ( +/turf/simulated/wall/bay/r_wall/purple, +/area/rnd/xenobiology) +"Dy" = ( +/obj/machinery/shower{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 5 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/stellardelight/deck1/shower) +"Dz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/starboard) +"DA" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24; + pixel_y = -32 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/stellardelight/deck1/resleeving) +"DC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/starboard) +"DD" = ( +/obj/structure/cable/orange{ + icon_state = "2-8" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck1/exterior) +"DE" = ( +/obj/structure/cable/pink{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/security/security_cell_hallway) +"DF" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/machinery/door/blast/angled/open{ + dir = 2; + id = "brigwindowlockdown" + }, +/obj/structure/low_wall/bay/reinforced/steel, +/turf/simulated/floor, +/area/prison/cell_block/C) +"DG" = ( +/obj/structure/bed/chair/office/light, +/obj/effect/landmark/start/xenobot, +/turf/simulated/floor/tiled/eris, +/area/rnd/xenobiology/xenoflora) +"DH" = ( +/turf/simulated/wall/bay/r_wall/purple, +/area/rnd/xenobiology/xenoflora_storage) +"DI" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"DJ" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/camera/network/halls{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/starboard) +"DK" = ( +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/milspec/color/emerald/half{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/aft) +"DL" = ( +/obj/structure/closet/secure_closet/xenoarchaeologist, +/turf/simulated/floor/tiled/eris/white/gray_platform, +/area/gateway) +"DN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/shuttlebay) +"DO" = ( +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/exploration) +"DP" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + 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/rnd/workshop) +"DQ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/exploration) +"DS" = ( +/turf/simulated/wall/bay/red, +/area/prison/cell_block) +"DT" = ( +/obj/fiftyspawner/glass, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/rods, +/obj/fiftyspawner/rglass, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/item/stack/material/plasteel{ + amount = 10 + }, +/obj/structure/closet/walllocker_double/north, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/eris/white/gray_platform, +/area/gateway) +"DV" = ( +/obj/machinery/suit_cycler/pilot, +/obj/machinery/light, +/turf/simulated/floor/tiled/eris/steel/panels, +/area/stellardelight/deck1/pilot) +"DW" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/workshop) +"DY" = ( +/obj/structure/railing/grey{ + dir = 4 + }, +/obj/structure/sign/directions/command{ + pixel_x = 32 + }, +/obj/structure/sign/directions/bar{ + pixel_x = 32; + pixel_y = 6 + }, +/obj/structure/sign/directions/evac{ + pixel_x = 32; + pixel_y = -12 + }, +/obj/structure/sign/directions/medical{ + pixel_x = 32; + pixel_y = -6 + }, +/obj/structure/sign/directions/stairs_up{ + pixel_x = 32; + pixel_y = 12 + }, +/turf/simulated/floor, +/area/stellardelight/deck1/fore) +"Eb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/library) +"Ec" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "4-8" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/exploration) +"Ee" = ( +/obj/effect/floor_decal/milspec/color/red/half{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/security/security_cell_hallway) +"Ef" = ( +/turf/space/internal_edge/top, +/area/stellardelight/deck1/starboard) +"Eg" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/library) +"Eh" = ( +/turf/simulated/wall/bay/r_wall/steel, +/area/security/armoury) +"Ei" = ( +/obj/structure/cable/pink{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -32; + pixel_y = -25 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/security/security_equiptment_storage) +"Ek" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/storage) +"Em" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/starboardcent) +"En" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/eris/white/gray_platform, +/area/gateway) +"Eo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/janitor) +"Ep" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/landmark/vines, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/port) +"Eq" = ( +/obj/structure/disposaloutlet{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/light, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"Er" = ( +/obj/machinery/button/remote/blast_door{ + dir = 1; + id = "xenospace6"; + name = "6 Space Door"; + pixel_x = 10; + pixel_y = -21; + req_access = list(55) + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology) +"Es" = ( +/obj/machinery/mecha_part_fabricator, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel, +/area/assembly/robotics) +"Et" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/angled_bay/hatch{ + door_color = "#e6ab22"; + name = "Civilian Substation"; + req_one_access = list(10); + stripe_color = "#e6ab22" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/maintenance/stellardelight/substation/civilian) +"Eu" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/stellardelight/deck1/lowermed) +"Ev" = ( +/obj/structure/cable/pink{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/portfore) +"Ew" = ( +/obj/structure/closet/secure_closet/personal, +/obj/item/clothing/under/bathrobe, +/obj/item/clothing/under/bathrobe, +/obj/item/weapon/towel/random, +/obj/item/weapon/towel/random, +/turf/simulated/floor/tiled/white, +/area/stellardelight/deck1/shower) +"Ex" = ( +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/grille, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/blast/angled/open{ + dir = 4; + id = "xenobiopen4"; + name = "Pen 4 Blast Doors" + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology) +"Ey" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/machinery/power/apc/angled{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/chapel_morgue) +"Ez" = ( +/obj/structure/table/reinforced, +/obj/item/stack/material/phoron{ + amount = 6 + }, +/obj/machinery/reagentgrinder{ + pixel_y = 11 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/xenobiology) +"EA" = ( +/obj/effect/floor_decal/milspec/color/red/half{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 10 + }, +/obj/machinery/firealarm/angled{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/fore) +"EB" = ( +/obj/machinery/door/window/eastright{ + dir = 8; + name = "Virology Isolation Room Two"; + req_one_access = list(39) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/medical/virology) +"EC" = ( +/obj/effect/landmark{ + name = "lightsout" + }, +/obj/structure/ore_box, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/mining) +"ED" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/security/security_equiptment_storage) +"EF" = ( +/obj/structure/table/rack/shelf, +/obj/item/device/radio{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/item/device/radio{ + pixel_x = 4; + pixel_y = -4 + }, +/obj/item/device/radio{ + pixel_x = -4; + pixel_y = 5 + }, +/obj/item/device/radio{ + pixel_x = 4; + pixel_y = 5 + }, +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 20 + }, +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 28 + }, +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 36 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck1/explobriefing) +"EG" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-8" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck1/exterior) +"EH" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/structure/low_wall/bay/reinforced/steel, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/portaft) +"EI" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/eris/white/gray_platform, +/area/gateway) +"EJ" = ( +/turf/simulated/wall/bay/r_wall/steel, +/area/stellardelight/deck1/shuttlebay) +"EK" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/port) +"EM" = ( +/obj/structure/table/rack, +/obj/item/device/defib_kit/compact/loaded, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/stellardelight/deck1/paramedic) +"EN" = ( +/obj/structure/mirror{ + pixel_y = 38 + }, +/obj/structure/sink{ + pixel_y = 20 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/toilet) +"EO" = ( +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/fore) +"EP" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris, +/area/rnd/xenobiology/xenoflora_storage) +"EQ" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/starboard) +"ER" = ( +/turf/simulated/wall/bay/r_wall/brown, +/area/stellardelight/deck1/dorms/dorm8) +"ES" = ( +/obj/machinery/mass_driver{ + dir = 8; + id = "torpedolauncher" + }, +/obj/structure/sign/vacuum{ + pixel_y = 32 + }, +/turf/simulated/floor/airless, +/area/chapel/chapel_morgue) +"ET" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 5 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/aft) +"EU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/table/woodentable, +/obj/item/weapon/paper_bin{ + pixel_y = 7 + }, +/obj/item/weapon/pen, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/library) +"EV" = ( +/obj/structure/stairs/spawner/south, +/obj/structure/railing/grey{ + dir = 8 + }, +/turf/simulated/floor, +/area/stellardelight/deck1/fore) +"EW" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/bluegrid, +/area/assembly/robotics) +"EX" = ( +/obj/structure/cable/orange{ + icon_state = "1-8" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/substation/atmospherics) +"EY" = ( +/obj/effect/floor_decal/chapel{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"EZ" = ( +/turf/space/internal_edge/bottomright, +/area/stellardelight/deck1/starboard) +"Fa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 10 + }, +/obj/effect/floor_decal/milspec/color/black, +/turf/simulated/floor/tiled/dark, +/area/security/armoury) +"Fb" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/library) +"Fc" = ( +/obj/machinery/vending/wardrobe/scidrobe, +/obj/effect/floor_decal/industrial/outline, +/turf/simulated/floor/tiled/dark, +/area/stellardelight/deck1/researchequip) +"Fd" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/medical, +/obj/structure/curtain/open/privacy, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/patient_wing) +"Fe" = ( +/turf/simulated/wall/bay/red, +/area/security/detectives_office) +"Ff" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/firealarm/angled{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology) +"Fh" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/closet/secure_closet/detective, +/obj/item/weapon/reagent_containers/spray/pepper, +/obj/item/weapon/gun/energy/taser, +/obj/item/device/camera{ + desc = "A one use - polaroid camera. 30 photos left."; + name = "detectives camera"; + pictures_left = 30 + }, +/turf/simulated/floor/tiled/white, +/area/security/detectives_office) +"Fi" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/security/detectives_office) +"Fj" = ( +/obj/machinery/firealarm/angled, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/security/warden) +"Fk" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 4 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/stellardelight/deck1/port) +"Fl" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "4-8" + }, +/obj/structure/table/rack, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/obj/random/maintenance/security, +/obj/random/maintenance/clean, +/obj/random/maintenance, +/obj/random/contraband, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/starboardcent) +"Fm" = ( +/obj/structure/morgue{ + dir = 2 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/dark, +/area/chapel/chapel_morgue) +"Fn" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/machinery/door/blast/angled/open{ + dir = 2; + id = "researchwindowlockdown" + }, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-2" + }, +/obj/structure/low_wall/bay/reinforced/steel, +/turf/simulated/floor, +/area/stellardelight/deck1/researchhall) +"Fo" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/pink{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/angled_bay/hatch{ + name = "maintenance access"; + stripe_color = "#454545" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/maintenance/stellardelight/deck1/portfore) +"Fp" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/angled_bay/hatch{ + dir = 4; + door_color = "#8c1d11"; + name = "maintenance access"; + req_one_access = list(1); + stripe_color = "#8c1d11" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/maintenance/security_port) +"Fq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology) +"Fr" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/patient_wing) +"Fs" = ( +/turf/simulated/floor/tiled/dark, +/area/security/tactical) +"Ft" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/turf/simulated/floor/tiled/eris/white/gray_platform, +/area/gateway) +"Fu" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/angled_bay/standard/color{ + dir = 4; + door_color = "#9c9c9c"; + fill_color = "#5c5c5c"; + name = "Unisex Restrooms"; + stripe_color = "#89bd66" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/crew_quarters/toilet) +"Fv" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/camera/network/halls{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/port) +"Fw" = ( +/obj/machinery/power/apc/angled{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/turf/simulated/floor/lino, +/area/chapel/office) +"Fx" = ( +/obj/structure/cable/green{ + color = "#42038a"; + 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_switch{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/explobriefing) +"Fy" = ( +/obj/structure/flora/pottedplant/orientaltree, +/obj/machinery/light, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/camera/network/exploration{ + dir = 8 + }, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/explobriefing) +"Fz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/monotile, +/area/janitor) +"FA" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-2" + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/eris, +/area/rnd/xenobiology/xenoflora) +"FB" = ( +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/machinery/power/apc/angled{ + dir = 1; + name = "night shift APC"; + nightshift_setting = 2 + }, +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/medical/morgue) +"FC" = ( +/obj/machinery/computer/prisoner, +/turf/simulated/floor/tiled/dark, +/area/security/warden) +"FD" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/milspec/color/black, +/obj/structure/sign/department/armory{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/dark, +/area/security/security_cell_hallway) +"FE" = ( +/turf/simulated/wall/bay/r_wall/steel, +/area/maintenance/stellardelight/deck1/starboardcent) +"FF" = ( +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/exploration) +"FG" = ( +/turf/simulated/wall/bay/white, +/area/medical/patient_wing) +"FH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/dark, +/area/security/security_processing) +"FI" = ( +/obj/structure/stairs/spawner/north, +/obj/structure/railing/grey{ + dir = 4 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/portaft) +"FK" = ( +/obj/structure/table/woodentable, +/obj/machinery/microwave, +/turf/simulated/floor/carpet/purcarpet, +/area/stellardelight/deck1/dorms/dorm3) +"FL" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/library) +"FM" = ( +/obj/structure/table/steel, +/obj/item/device/integrated_electronics/debugger{ + pixel_x = -5 + }, +/obj/item/device/integrated_electronics/wirer{ + pixel_x = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/camera/network/research{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/workshop) +"FN" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/standard/color{ + door_color = "#ffffff"; + name = "Recovery Room"; + req_access = list(5); + stripe_color = "#5a96bb" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/medical/patient_wing) +"FO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/firealarm/angled{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris, +/area/rnd/xenobiology/xenoflora) +"FP" = ( +/obj/machinery/power/pointdefense{ + id_tag = "sd_pd" + }, +/obj/effect/floor_decal/industrial/warning/full, +/obj/structure/cable/green{ + color = "#42038a" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck1/exterior) +"FQ" = ( +/obj/structure/morgue{ + dir = 2 + }, +/turf/simulated/floor/tiled/techfloor, +/area/medical/morgue) +"FR" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/alarm/angled{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/portcent) +"FS" = ( +/obj/structure/table/rack/shelf, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_y = -4 + }, +/obj/item/weapon/hand_labeler, +/obj/item/device/multitool/sd_buffered{ + pixel_y = 2 + }, +/obj/item/weapon/hand_labeler, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/exploequipment) +"FT" = ( +/turf/simulated/wall/bay/brown, +/area/library) +"FU" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 25; + pixel_y = 6 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/workshop) +"FV" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/closet/crate, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance/security, +/obj/random/contraband, +/obj/machinery/power/apc/angled{ + dir = 8; + name = "night shift APC"; + nightshift_setting = 2 + }, +/obj/structure/cable/pink{ + icon_state = "0-4" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/portfore) +"FW" = ( +/obj/machinery/power/apc/angled{ + dir = 8 + }, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck1/researchserver) +"FX" = ( +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris, +/area/rnd/xenobiology/xenoflora_storage) +"FY" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/bluegrid{ + name = "Server Base"; + nitrogen = 500; + oxygen = 0; + temperature = 80 + }, +/area/stellardelight/deck1/researchserver) +"FZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/security/detectives_office) +"Ga" = ( +/obj/effect/shuttle_landmark/premade/sd/deck1/portairlock, +/turf/space, +/area/space) +"Gb" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology) +"Gc" = ( +/obj/machinery/requests_console/preset/research{ + pixel_y = 30 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/research) +"Gd" = ( +/obj/machinery/power/breakerbox/activated{ + RCon_tag = "Cargo Substation Bypass" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/substation/cargo) +"Ge" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/chapel_morgue) +"Gh" = ( +/obj/machinery/hologram/holopad, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/aft) +"Gi" = ( +/obj/structure/closet{ + name = "Forensics Gear" + }, +/obj/item/weapon/storage/box/gloves, +/obj/item/weapon/storage/box/evidence, +/obj/item/weapon/storage/box/bodybags, +/obj/item/weapon/storage/briefcase/crimekit, +/obj/item/weapon/storage/briefcase/crimekit, +/obj/effect/floor_decal/milspec/color/red/half{ + dir = 5 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 24 + }, +/turf/simulated/floor/tiled/white, +/area/security/detectives_office) +"Gj" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "4-8" + }, +/obj/structure/low_wall/bay/reinforced/steel, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/exploration) +"Gl" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/eris, +/area/rnd/xenobiology/xenoflora) +"Gm" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/window/brigdoor/southleft{ + id = "Cell A"; + name = "Cell A"; + req_access = list(2) + }, +/obj/structure/cable/pink{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_ridged, +/area/prison/cell_block) +"Gn" = ( +/obj/machinery/disease2/diseaseanalyser, +/obj/machinery/light/floortube{ + dir = 8; + pixel_x = -6 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/virology) +"Go" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/tiled/steel_grid, +/area/maintenance/stellardelight/deck1/starboardaft) +"Gp" = ( +/obj/structure/table/bench/steel, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/camera/network/security{ + dir = 1 + }, +/obj/effect/landmark/start/security, +/turf/simulated/floor/tiled/dark, +/area/security/security_lockerroom) +"Gq" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/hydroponics, +/turf/simulated/floor/tiled/eris, +/area/rnd/xenobiology/xenoflora_storage) +"Gr" = ( +/turf/simulated/wall/bay/r_wall/red, +/area/security/tactical) +"Gt" = ( +/obj/machinery/power/apc/angled{ + dir = 4 + }, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "0-8" + }, +/obj/machinery/light_switch{ + pixel_y = 25 + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/pathfinder) +"Gu" = ( +/obj/item/weapon/bedsheet/bluedouble, +/obj/structure/bed/double/padded, +/obj/structure/curtain/black, +/turf/simulated/floor/carpet, +/area/stellardelight/deck1/dorms/dorm1) +"Gv" = ( +/obj/structure/cable/pink{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/portcent) +"Gy" = ( +/obj/structure/closet/firecloset, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/exploration) +"GA" = ( +/obj/machinery/light, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/fore) +"GB" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/exploequipment) +"GC" = ( +/obj/structure/stairs/spawner/north, +/obj/structure/railing/grey{ + dir = 4 + }, +/turf/simulated/floor, +/area/stellardelight/deck1/aft) +"GD" = ( +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/security/lobby) +"GE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck1/researchserver) +"GF" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "0-2" + }, +/obj/structure/cable/green{ + color = "#42038a" + }, +/obj/machinery/power/smes/buildable{ + RCon_tag = "Substation - Research"; + output_attempt = 0 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/substation/research) +"GG" = ( +/obj/structure/table/steel, +/obj/item/weapon/storage/box/bodybags{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/weapon/storage/box/bodybags, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/medical/morgue) +"GI" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/machinery/door/blast/angled/open{ + dir = 2; + id = "researchwindowlockdown" + }, +/obj/structure/low_wall/bay/reinforced/steel, +/turf/simulated/floor, +/area/stellardelight/deck1/researchhall) +"GK" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/alarm/angled{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/starboard) +"GL" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "4-8" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck1/exterior) +"GM" = ( +/obj/structure/cable/pink{ + icon_state = "1-2" + }, +/turf/simulated/wall/bay/r_wall{ + desc = "It has a brown stripe! A huge chunk of metal used to seperate rooms."; + stripe_color = "#785134" + }, +/area/security/armoury) +"GN" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/portcent) +"GP" = ( +/obj/structure/cable/pink{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/valve/digital{ + dir = 4; + name = "supply isolation valve" + }, +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor, +/area/security/armoury) +"GQ" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/portcent) +"GR" = ( +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 8 + }, +/obj/effect/floor_decal/milspec/color/black, +/turf/simulated/floor/tiled/dark, +/area/security/armoury) +"GS" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor/glass/talon, +/obj/machinery/door/blast/regular/open{ + id = "talon_boat_cockpit" + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/stellardelight/deck1/miningshuttle) +"GT" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/photocopier/faxmachine{ + department = "Security" + }, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/effect/floor_decal/milspec/color/red, +/turf/simulated/floor/tiled/dark, +/area/security/lobby) +"GU" = ( +/obj/machinery/vending/wardrobe/robodrobe, +/obj/effect/floor_decal/industrial/outline, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/alarm/angled, +/turf/simulated/floor/tiled/dark, +/area/stellardelight/deck1/researchequip) +"GV" = ( +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/portcent) +"GW" = ( +/obj/machinery/power/apc/angled{ + dir = 4 + }, +/obj/structure/cable/pink{ + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/dark, +/area/security/security_cell_hallway) +"GX" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/computer/guestpass{ + dir = 8; + pixel_x = 25 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/port) +"GZ" = ( +/obj/machinery/vending/loadout/uniform, +/obj/structure/sign/painting/library_secure{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled/dark, +/area/stellardelight/deck1/resleeving) +"Ha" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/item/device/radio/beacon, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/fore) +"Hb" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/angled_bay/double/glass{ + door_color = "#a6753d"; + name = "Shuttle Bay"; + req_access = list(31); + req_one_access = null; + stripe_color = "#3b2b1a" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck1/mining) +"Hc" = ( +/obj/machinery/power/pointdefense{ + id_tag = "sd_pd" + }, +/obj/effect/floor_decal/industrial/warning/full, +/obj/structure/cable/pink{ + icon_state = "0-8" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck1/exterior) +"Hd" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/stellardelight/deck1/miningshuttle) +"He" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/machinery/door/blast/angled/open{ + dir = 2; + id = "explowindowlockdown" + }, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-2" + }, +/obj/structure/low_wall/bay/reinforced/steel, +/turf/simulated/floor, +/area/stellardelight/deck1/explobriefing) +"Hf" = ( +/obj/structure/filingcabinet/filingcabinet, +/obj/machinery/requests_console{ + department = "Exploration"; + name = "Exploration Requests Console"; + pixel_x = -30 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/pathfinder) +"Hg" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 4; + name = "Security"; + sortType = "Security" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/portcent) +"Hi" = ( +/obj/machinery/computer/timeclock/premade/west, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/port) +"Hj" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/hatch{ + name = "maintenance access"; + stripe_color = "#454545" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/library) +"Hk" = ( +/obj/structure/table/bench/standard, +/obj/effect/floor_decal/milspec/color/orange/half{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/prison/cell_block/B) +"Hl" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/port) +"Hn" = ( +/obj/machinery/mineral/processing_unit_console{ + density = 0; + pixel_x = 32 + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/oreprocessing) +"Hp" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/sign/department/sci{ + pixel_x = 32; + pixel_y = 32 + }, +/obj/effect/floor_decal/milspec/color/emerald/half{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/aft) +"Hq" = ( +/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/tiled/steel_grid, +/area/rnd/xenobiology) +"Hr" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/xenobiology) +"Hs" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/angled/open{ + dir = 2; + id = "securitylockdown" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/security/lobby) +"Ht" = ( +/obj/structure/table/woodentable, +/obj/machinery/alarm/angled, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/stellardelight/deck1/dorms/dorm7) +"Hu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/purple, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/floor_decal/milspec/color/black, +/turf/simulated/floor/tiled/dark, +/area/security/armoury) +"Hv" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/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/dark, +/area/chapel/main) +"Hw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/lino, +/area/chapel/office) +"Hx" = ( +/obj/machinery/door/firedoor/glass/hidden/steel, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/fore) +"Hy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/stellardelight/deck1/resleeving) +"Hz" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/weapon/gun/projectile/shotgun/pump{ + ammo_type = /obj/item/ammo_casing/a12g/pellet; + pixel_x = 1; + pixel_y = 4 + }, +/obj/item/weapon/gun/projectile/shotgun/pump{ + ammo_type = /obj/item/ammo_casing/a12g/pellet; + pixel_x = 2; + pixel_y = -6 + }, +/obj/machinery/camera/network/security{ + dir = 4 + }, +/obj/effect/floor_decal/milspec/color/black, +/turf/simulated/floor/tiled/dark, +/area/security/armoury) +"HA" = ( +/obj/structure/cable/pink{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/security/detectives_office) +"HB" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "miningops" + }, +/obj/structure/plasticflaps/mining, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/oreprocessing) +"HC" = ( +/obj/structure/railing/grey{ + dir = 4 + }, +/obj/structure/sign/directions/medical{ + dir = 1; + pixel_x = 32; + pixel_y = 6 + }, +/obj/structure/sign/directions/evac{ + dir = 1; + pixel_x = 32 + }, +/obj/structure/sign/directions/stairs_up{ + dir = 1; + pixel_x = 32; + pixel_y = 12 + }, +/turf/simulated/floor, +/area/stellardelight/deck1/aft) +"HD" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/gun/energy/taser/xeno, +/obj/item/weapon/gun/energy/taser/xeno, +/obj/item/weapon/melee/baton/slime/loaded, +/obj/item/weapon/melee/baton/slime/loaded, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/xenobiology) +"HE" = ( +/obj/machinery/conveyor{ + id = "miningops" + }, +/obj/machinery/mineral/input, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/oreprocessing) +"HF" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/angled/open{ + dir = 2; + id = "securitylockdown" + }, +/obj/machinery/door/window/brigdoor/eastleft{ + dir = 2 + }, +/obj/effect/floor_decal/milspec/color/red, +/turf/simulated/floor/tiled/dark, +/area/security/lobby) +"HG" = ( +/obj/structure/table/woodentable, +/obj/machinery/photocopier/faxmachine{ + department = "Pathfinder's Office" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/pathfinder) +"HH" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/structure/curtain/black{ + anchored = 1 + }, +/obj/structure/low_wall/bay/reinforced/steel, +/turf/simulated/floor, +/area/stellardelight/deck1/dorms/dorm2) +"HI" = ( +/turf/simulated/floor, +/area/maintenance/stellardelight/substation/medical) +"HK" = ( +/obj/effect/floor_decal/chapel{ + dir = 8 + }, +/obj/structure/bed/chair/sofa/pew/left{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"HL" = ( +/obj/machinery/vending/nifsoft_shop, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck1/starboard) +"HN" = ( +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/security/lobby) +"HO" = ( +/obj/structure/bed/chair/comfy/black, +/obj/structure/sign/painting/public{ + pixel_y = 30 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/stellardelight/deck1/starboard) +"HP" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/sign/department/morgue{ + pixel_x = 32 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 5 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/port) +"HR" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/medical, +/obj/structure/sign/painting/library_secure{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/exam_room) +"HS" = ( +/obj/structure/table/woodentable, +/obj/machinery/microwave{ + pixel_y = 7 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 24 + }, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/explobriefing) +"HT" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/closet/walllocker_double/east{ + dir = 8; + pixel_x = -32 + }, +/turf/simulated/floor/carpet, +/area/stellardelight/deck1/dorms/dorm8) +"HV" = ( +/obj/machinery/alarm/angled{ + dir = 8 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/starboardaft) +"HW" = ( +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck1/port) +"HX" = ( +/obj/machinery/button/remote/airlock{ + id = "dorm1"; + name = "Room 1 Lock"; + pixel_y = 24; + specialfunctions = 4 + }, +/obj/machinery/power/apc/angled{ + dir = 4; + name = "night shift APC"; + nightshift_setting = 2 + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/turf/simulated/floor/carpet, +/area/stellardelight/deck1/dorms/dorm1) +"HY" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/portcent) +"HZ" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/effect/floor_decal/milspec/color/red/half, +/turf/simulated/floor/tiled/dark, +/area/security/tactical) +"Ib" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/portaft) +"Ic" = ( +/obj/structure/table/standard, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/alarm/angled{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/white/cargo, +/area/medical/virology) +"Ie" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/aft) +"If" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell B" + }, +/obj/effect/floor_decal/milspec/color/orange/half{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/prison/cell_block/B) +"Ig" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/wall/bay/r_wall/steel, +/area/crew_quarters/toilet) +"Ih" = ( +/obj/structure/closet{ + name = "robotics equipment" + }, +/obj/item/weapon/cell/high{ + charge = 100; + maxcharge = 15000; + pixel_x = 5; + pixel_y = -5 + }, +/obj/item/weapon/cell/high{ + charge = 100; + maxcharge = 15000; + pixel_x = 5; + pixel_y = -5 + }, +/obj/item/weapon/cell/high{ + charge = 100; + maxcharge = 15000; + pixel_x = 5; + pixel_y = -5 + }, +/obj/item/weapon/cell/high{ + charge = 100; + maxcharge = 15000; + pixel_x = 5; + pixel_y = -5 + }, +/obj/item/weapon/storage/firstaid/regular{ + empty = 1; + name = "First-Aid (empty)" + }, +/obj/item/weapon/storage/firstaid/regular{ + empty = 1; + name = "First-Aid (empty)" + }, +/obj/item/weapon/storage/firstaid/regular{ + empty = 1; + name = "First-Aid (empty)" + }, +/obj/item/device/healthanalyzer, +/obj/item/device/healthanalyzer, +/obj/item/device/healthanalyzer, +/obj/item/device/flash/synthetic, +/obj/item/device/flash/synthetic, +/obj/item/device/flash/synthetic, +/obj/item/device/flash/synthetic, +/obj/item/device/flash/synthetic, +/obj/item/device/flash/synthetic, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/item/device/assembly/prox_sensor{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/item/device/assembly/prox_sensor{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/item/clothing/glasses/omnihud/rnd, +/obj/item/weapon/storage/toolbox/electrical{ + pixel_x = 1; + pixel_y = 6 + }, +/obj/item/weapon/storage/belt/utility, +/obj/item/device/multitool{ + pixel_x = 3 + }, +/obj/item/weapon/storage/toolbox/mechanical, +/obj/item/weapon/tool/crowbar, +/obj/item/weapon/storage/toolbox/mechanical, +/obj/item/clothing/glasses/welding, +/obj/item/clothing/glasses/welding, +/obj/item/clothing/head/welding{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/item/clothing/head/welding{ + pixel_x = -3; + pixel_y = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/assembly/robotics) +"Ii" = ( +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/purple, +/obj/effect/floor_decal/milspec/color/black, +/turf/simulated/floor/tiled/dark, +/area/security/armoury) +"Ij" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/stellardelight/deck1/resleeving) +"Ik" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/starboardcent) +"Il" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/alarm/angled{ + dir = 8 + }, +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/obj/item/device/radio{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/item/device/radio{ + pixel_x = 4; + pixel_y = -4 + }, +/obj/item/device/radio{ + pixel_x = -4; + pixel_y = 5 + }, +/obj/item/device/radio{ + pixel_x = 4; + pixel_y = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/security/tactical) +"Im" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/starboard) +"In" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "2-8" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/exploration) +"Io" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/suit_cycler/security, +/obj/effect/floor_decal/milspec/color/red, +/turf/simulated/floor/tiled/dark, +/area/security/tactical) +"Ip" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/starboardcent) +"Iq" = ( +/obj/effect/floor_decal/milspec/color/red, +/obj/structure/disposalpipe/trunk, +/obj/machinery/disposal/wall{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/security/lobby) +"Ir" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/starboard) +"Is" = ( +/obj/structure/closet/secure_closet/security, +/obj/item/device/holowarrant, +/obj/item/clothing/accessory/badge/holo/cord, +/obj/item/clothing/accessory/badge/holo/cord, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/floor_decal/milspec/color/red, +/turf/simulated/floor/tiled/dark, +/area/security/security_lockerroom) +"Iu" = ( +/obj/machinery/door/airlock/angled_bay/external/glass{ + dir = 4; + door_color = "#525252"; + name = "Exploration Shuttle"; + req_one_access = list(19,43,67,66,5); + stripe_color = "#408f3b" + }, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "4-8" + }, +/obj/machinery/atmospheric_field_generator/perma/underdoors, +/obj/machinery/door/firedoor/glass/talon, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck1/exploshuttle) +"Iw" = ( +/obj/random/vendorfood, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck1/starboard) +"Ix" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/portcent) +"Iy" = ( +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan, +/obj/effect/floor_decal/milspec/color/black, +/turf/simulated/floor/tiled/dark, +/area/security/armoury) +"Iz" = ( +/obj/structure/closet/secure_closet/personal, +/obj/machinery/firealarm/angled{ + dir = 4 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/stellardelight/deck1/dorms/dorm3) +"IA" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck1/port) +"IB" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-2" + }, +/turf/simulated/floor/reinforced, +/area/stellardelight/deck1/shuttlebay) +"IC" = ( +/turf/simulated/wall/bay/r_wall/brown, +/area/stellardelight/deck1/dorms/dorm4) +"ID" = ( +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorblack/full, +/turf/simulated/floor/tiled/dark, +/area/security/armoury) +"IE" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris, +/area/rnd/storage) +"IF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/fore) +"IG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/starboardcent) +"IH" = ( +/obj/structure/cable/pink{ + 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/dark, +/area/security/lobby) +"IJ" = ( +/obj/structure/cable/pink{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/valve/digital{ + dir = 4; + name = "scrubber isolation valve" + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor, +/area/security/armoury) +"IK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/milspec/color/red/half{ + dir = 4 + }, +/obj/effect/landmark/start/security, +/turf/simulated/floor/tiled/dark, +/area/security/security_lockerroom) +"IL" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/exploration) +"IM" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/milspec/color/orange/half{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/prison/cell_block) +"IN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/milspec/color/red/half{ + dir = 8 + }, +/obj/effect/landmark/start/security, +/turf/simulated/floor/tiled/dark, +/area/security/security_lockerroom) +"IO" = ( +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/grille, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/blast/angled/open{ + dir = 4; + id = "xenobiopen6"; + name = "Pen 6 Blast Doors" + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology) +"IP" = ( +/obj/machinery/r_n_d/protolathe{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/research) +"IQ" = ( +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/assembly/robotics) +"IR" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/eris, +/area/rnd/xenobiology/xenoflora) +"IS" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/portcent) +"IT" = ( +/turf/space/internal_edge/bottom, +/area/stellardelight/deck1/starboard) +"IU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/toilet) +"IV" = ( +/obj/machinery/power/pointdefense{ + id_tag = "sd_pd" + }, +/obj/effect/floor_decal/industrial/warning/full, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "0-8" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck1/exterior) +"IW" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/sign/directions/dorms{ + dir = 1; + pixel_x = -32 + }, +/obj/structure/sign/directions/security{ + dir = 1; + pixel_x = -32; + pixel_y = 6 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/aft) +"IX" = ( +/obj/structure/cable/pink{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/milspec/color/orange/half, +/turf/simulated/floor/tiled/dark, +/area/prison/cell_block/B) +"IY" = ( +/turf/simulated/wall/bay/steel, +/area/crew_quarters/toilet) +"IZ" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/structure/curtain/black{ + anchored = 1 + }, +/obj/structure/low_wall/bay/reinforced/steel, +/turf/simulated/floor, +/area/stellardelight/deck1/dorms/dorm8) +"Ja" = ( +/obj/structure/closet/walllocker_double/west, +/obj/item/weapon/shovel, +/obj/item/weapon/shovel, +/obj/item/weapon/shovel, +/obj/item/weapon/shovel, +/obj/item/weapon/tool/wrench, +/obj/item/weapon/tool/wrench, +/obj/item/weapon/tool/wrench, +/obj/item/weapon/tool/wrench, +/obj/item/weapon/tool/crowbar, +/obj/item/weapon/tool/crowbar, +/obj/item/weapon/tool/crowbar, +/obj/item/weapon/tool/crowbar, +/obj/item/weapon/pickaxe, +/obj/item/weapon/pickaxe, +/obj/item/weapon/pickaxe, +/obj/item/weapon/pickaxe, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/miningequipment) +"Jb" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/starboard) +"Jc" = ( +/obj/structure/table/standard, +/obj/item/weapon/stock_parts/scanning_module{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/weapon/stock_parts/scanning_module, +/obj/item/weapon/stock_parts/capacitor, +/obj/item/weapon/stock_parts/capacitor, +/obj/machinery/light, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/landmark/vermin, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/research) +"Jd" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/substation/medical) +"Je" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/port) +"Jg" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/substation/exploration) +"Jh" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/closet/emergsuit_wall{ + dir = 8; + pixel_x = -27 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/starboard) +"Jj" = ( +/obj/machinery/power/breakerbox/activated{ + RCon_tag = "Medical Substation Bypass" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/substation/medical) +"Jk" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/eris/white/cargo, +/area/medical/virology) +"Jl" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/substation/cargo) +"Jn" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/alarm/angled{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/fore) +"Jo" = ( +/obj/structure/table/steel, +/obj/random/maintenance/research, +/obj/random/medical, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/exploration) +"Jp" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/hatch{ + dir = 4; + door_color = "#e6ab22"; + name = "Atmospherics Substation"; + req_one_access = list(10); + stripe_color = "#e6ab22" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/maintenance/stellardelight/substation/atmospherics) +"Jq" = ( +/obj/structure/table/glass, +/obj/machinery/computer/med_data/laptop, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/button/remote/airlock{ + dir = 4; + id = "m-ex-room"; + name = "Exam Room Lock"; + pixel_x = -30; + pixel_y = -8; + specialfunctions = 4 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/exam_room) +"Js" = ( +/turf/simulated/floor, +/area/stellardelight/deck1/dorms/dorm7) +"Jt" = ( +/obj/structure/table/woodentable, +/obj/machinery/light/small, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/stellardelight/deck1/port) +"Jv" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/catwalk_plated/dark, +/turf/simulated/floor, +/area/stellardelight/deck1/port) +"Jw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/tiled/eris, +/area/rnd/xenobiology/xenoflora) +"Jx" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/stellardelight/deck1/lowermed) +"Jz" = ( +/obj/machinery/newscaster{ + pixel_y = 28 + }, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/exploration) +"JA" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/port) +"JB" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/closet/walllocker_double/east, +/turf/simulated/floor/carpet, +/area/stellardelight/deck1/dorms/dorm1) +"JC" = ( +/obj/structure/table/rack{ + dir = 8; + layer = 2.9 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/suit/space/void/atmos, +/obj/item/clothing/head/helmet/space/void/atmos, +/obj/machinery/door/window/brigdoor{ + req_access = list(11,24) + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/white/gray_platform, +/area/gateway) +"JD" = ( +/obj/structure/bed/chair/bay/shuttle{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/stellardelight/deck1/miningshuttle) +"JE" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-2" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck1/exterior) +"JF" = ( +/turf/simulated/wall/bay/r_wall/steel, +/area/stellardelight/deck1/starboard) +"JH" = ( +/obj/structure/bed/chair/sofa/corp/left, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/carpet/purcarpet, +/area/stellardelight/deck1/dorms/dorm3) +"JI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/shuttlebay) +"JJ" = ( +/turf/simulated/wall/bay/r_wall{ + desc = "It has a purple stripe! A huge chunk of metal used to seperate rooms."; + stripe_color = "#5a19a8" + }, +/area/gateway) +"JK" = ( +/obj/machinery/door/firedoor, +/obj/item/weapon/folder/white, +/obj/structure/table/reinforced, +/obj/machinery/door/window/brigdoor/westright{ + dir = 4; + name = "Research Desk"; + req_access = list(7); + req_one_access = list(47) + }, +/obj/item/weapon/paper_bin{ + pixel_x = -1; + pixel_y = 4 + }, +/obj/item/weapon/pen, +/obj/machinery/door/blast/angled_shutter/open{ + dir = 4; + id = "rndshutters"; + name = "Privacy Shutters" + }, +/turf/simulated/floor/tiled/monotile, +/area/rnd/research) +"JL" = ( +/turf/simulated/wall/bay/r_wall/steel, +/area/stellardelight/deck1/pathfinder) +"JM" = ( +/obj/structure/cable/pink{ + 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/security/detectives_office) +"JN" = ( +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/obj/structure/cable/pink{ + icon_state = "1-8" + }, +/obj/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/security/lobby) +"JO" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "0-2" + }, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "0-8" + }, +/obj/machinery/power/pointdefense{ + id_tag = "sd_pd" + }, +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/airless, +/area/stellardelight/deck1/exterior) +"JP" = ( +/obj/structure/cable{ + 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, +/area/maintenance/stellardelight/deck1/exploration) +"JQ" = ( +/turf/simulated/wall/bay/r_wall/purple, +/area/rnd/xenobiology/xenoflora) +"JR" = ( +/obj/structure/cable/pink{ + icon_state = "0-4" + }, +/obj/machinery/power/apc/angled{ + dir = 8; + name = "night shift APC"; + nightshift_setting = 2 + }, +/obj/effect/floor_decal/milspec/color/black, +/turf/simulated/floor/tiled/dark, +/area/security/armoury) +"JS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/bookbinder, +/turf/simulated/floor/wood, +/area/library) +"JT" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/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/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/workshop) +"JU" = ( +/obj/machinery/vending/loadout/uniform, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/steel, +/area/assembly/robotics) +"JV" = ( +/obj/item/slime_extract/grey, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"JW" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/substation/cargo) +"JX" = ( +/obj/structure/cable/pink{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/milspec/color/orange/half, +/turf/simulated/floor/tiled/dark, +/area/prison/cell_block/C) +"JY" = ( +/obj/effect/floor_decal/borderfloorblack/full, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/flasher/portable, +/turf/simulated/floor/tiled/dark, +/area/security/armoury) +"Ka" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "2-4" + }, +/turf/simulated/wall/bay/r_wall/steel, +/area/maintenance/stellardelight/deck1/starboardcent) +"Kb" = ( +/obj/machinery/conveyor{ + id = "miningops" + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/oreprocessing) +"Kc" = ( +/obj/machinery/washing_machine, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 24 + }, +/turf/simulated/floor/tiled/dark, +/area/stellardelight/deck1/resleeving) +"Kd" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/status_display{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/port) +"Ke" = ( +/obj/structure/closet/secure_closet/explorer, +/obj/machinery/camera/network/exploration{ + dir = 4 + }, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/exploequipment) +"Kf" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/alarm/angled, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"Kg" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/angled_bay/standard/color{ + door_color = "#9c9c9c"; + fill_color = "#5c5c5c"; + id_tag = "dorm6"; + name = "Room 6"; + stripe_color = "#89bd66" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck1/dorms/dorm6) +"Ki" = ( +/obj/structure/toilet{ + dir = 4 + }, +/obj/machinery/alarm/angled{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/landmark/start/visitor, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/toilet) +"Kj" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/floor/tiled/eris/white/gray_platform, +/area/gateway) +"Kk" = ( +/obj/machinery/door/airlock/angled_bay/external/glass{ + dir = 4; + frequency = 1379; + id_tag = "ex_exterior"; + locked = 1; + name = "Exterior Airlock" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/steel_ridged, +/area/maintenance/stellardelight/deck1/exploration) +"Kl" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/angled_bay/hatch{ + name = "maintenance access"; + stripe_color = "#454545" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/maintenance/stellardelight/deck1/starboardaft) +"Km" = ( +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/exploration) +"Ko" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/toilet) +"Kp" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 8 + }, +/obj/effect/landmark/start/librarian, +/turf/simulated/floor/wood, +/area/library) +"Kq" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/structure/table/woodentable, +/obj/item/device/taperecorder, +/obj/item/device/tape/random, +/obj/item/device/camera, +/obj/item/device/retail_scanner/civilian, +/obj/structure/sign/painting/library_private{ + pixel_y = 32 + }, +/obj/machinery/newscaster{ + pixel_x = 29 + }, +/turf/simulated/floor/wood, +/area/library) +"Kr" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/reinforced, +/area/stellardelight/deck1/shuttlebay) +"Ks" = ( +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/obj/structure/cable/orange{ + icon_state = "2-8" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck1/exterior) +"Kt" = ( +/obj/structure/table/reinforced, +/obj/item/device/suit_cooling_unit, +/obj/item/device/suit_cooling_unit, +/obj/item/device/suit_cooling_unit, +/obj/item/device/suit_cooling_unit, +/turf/simulated/floor/tiled/eris/white/gray_platform, +/area/gateway) +"Ku" = ( +/turf/simulated/wall/bay{ + desc = "It has a purple stripe! A huge chunk of metal used to seperate rooms."; + stripe_color = "#5a19a8" + }, +/area/gateway) +"Kv" = ( +/obj/effect/floor_decal/chapel, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"Kw" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + dir = 8; + frequency = 1380; + id_tag = "explodocker"; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/eris/steel/gray_platform, +/area/stellardelight/deck1/exploshuttle) +"Ky" = ( +/obj/machinery/door/firedoor/glass/hidden/steel, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/fore) +"Kz" = ( +/obj/machinery/button/remote/airlock{ + id = "bathroomstall2"; + name = "Toilet 2 Lock"; + pixel_x = -10; + pixel_y = 22; + specialfunctions = 4 + }, +/obj/machinery/light/small, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/toilet) +"KA" = ( +/obj/machinery/vending/wardrobe/janidrobe, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/monotile, +/area/janitor) +"KB" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology) +"KC" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/alarm/angled{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/mining) +"KD" = ( +/obj/machinery/power/breakerbox/activated{ + RCon_tag = "Atmospherics Substation Bypass" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/substation/atmospherics) +"KE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/camera/network/halls, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/fore) +"KF" = ( +/turf/simulated/wall/bay/r_wall/brown, +/area/stellardelight/deck1/dorms/dorm6) +"KG" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/light_switch{ + pixel_x = 25; + pixel_y = 25 + }, +/turf/simulated/floor/carpet, +/area/stellardelight/deck1/dorms/dorm1) +"KH" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 9 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/aft) +"KI" = ( +/obj/machinery/button/remote/driver{ + id = "torpedolauncher"; + pixel_y = 27 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/dark, +/area/chapel/chapel_morgue) +"KJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/stellardelight/deck1/dorms/dorm2) +"KK" = ( +/obj/machinery/disposal/wall{ + dir = 4; + pixel_x = -24; + plane = -34 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/sink/kitchen{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology) +"KL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/port) +"KM" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -24; + pixel_y = -24 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/stellardelight/deck1/dorms/dorm6) +"KN" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/eris, +/area/rnd/xenobiology/xenoflora) +"KO" = ( +/turf/simulated/floor/carpet/purcarpet, +/area/stellardelight/deck1/dorms/dorm7) +"KP" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/substation/atmospherics) +"KQ" = ( +/obj/structure/bed/chair/bay/shuttle{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/steel/gray_platform, +/area/stellardelight/deck1/exploshuttle) +"KR" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/medical/patient_wing) +"KS" = ( +/obj/machinery/light, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"KT" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/stellardelight/deck1/shuttlebay) +"KU" = ( +/obj/machinery/camera/network/exploration{ + dir = 8 + }, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/exploration) +"KV" = ( +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/fore) +"KW" = ( +/obj/structure/bed/chair, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/exam_room) +"KX" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/aft) +"KY" = ( +/obj/machinery/power/apc/angled{ + dir = 4; + name = "night shift APC"; + nightshift_setting = 2 + }, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "0-8" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/starboardaft) +"KZ" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-4" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/exploration) +"La" = ( +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/milspec/color/black, +/turf/simulated/floor/tiled/dark, +/area/security/security_cell_hallway) +"Lc" = ( +/obj/machinery/door_timer/cell_3{ + id = "Cell B"; + name = "Cell B"; + pixel_x = 32; + pixel_y = 32 + }, +/turf/simulated/floor/tiled/dark, +/area/security/security_cell_hallway) +"Le" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/pink{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/angled_bay/standard/glass{ + door_color = "#8c1d11"; + name = "Brig"; + req_access = null; + req_one_access = list(38,63); + stripe_color = "#d27428" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/security/lobby) +"Lf" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/space_heater, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/starboardaft) +"Lg" = ( +/turf/simulated/wall/bay/r_wall/steel, +/area/chapel/chapel_morgue) +"Lh" = ( +/obj/effect/floor_decal/chapel, +/obj/structure/bed/chair/sofa/pew/right{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"Li" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/stellardelight/deck1/dorms/dorm6) +"Lj" = ( +/obj/structure/sink/kitchen{ + dir = 8; + pixel_x = -11 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/firealarm/angled{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/janitor) +"Lk" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/tiled/eris, +/area/stellardelight/deck1/researchhall) +"Ll" = ( +/obj/structure/bed/chair/bay/shuttle{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/steel/gray_platform, +/area/stellardelight/deck1/exploshuttle) +"Lm" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-4" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/starboardcent) +"Ln" = ( +/obj/structure/cable/orange{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/exploration) +"Lo" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/alarm/angled, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/starboard) +"Lp" = ( +/obj/machinery/power/apc/angled{ + dir = 8 + }, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/explobriefing) +"Lq" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + color = "#42038a" + }, +/obj/machinery/power/sensor{ + name = "Powernet Sensor - Research Subgrid"; + name_tag = "Research Subgrid" + }, +/obj/machinery/power/apc/angled{ + dir = 8; + name = "night shift APC"; + nightshift_setting = 2 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/substation/research) +"Lr" = ( +/obj/structure/bed/chair/wheelchair{ + dir = 8 + }, +/obj/machinery/firealarm/angled{ + dir = 8 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/exam_room) +"Ls" = ( +/obj/machinery/power/apc/angled{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/toilet) +"Lt" = ( +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/blast/angled/open{ + dir = 4; + id = "xenobiopen4"; + name = "Pen 4 Blast Doors" + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology) +"Lu" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "4-8" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/starboardaft) +"Lv" = ( +/obj/machinery/conveyor{ + id = "miningops" + }, +/obj/machinery/mineral/output, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/oreprocessing) +"Lw" = ( +/obj/structure/table/bench/standard, +/obj/effect/floor_decal/milspec/color/orange/half{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/prison/cell_block/C) +"Lx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/shuttlebay) +"Ly" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/power/apc/angled{ + dir = 4; + name = "night shift APC"; + nightshift_setting = 2 + }, +/obj/structure/cable/green{ + color = "#42038a" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/exploration) +"Lz" = ( +/obj/structure/closet/walllocker_double/east{ + dir = 8; + pixel_x = -32 + }, +/obj/item/weapon/storage/box/syringes, +/obj/item/weapon/storage/box/beakers, +/obj/item/weapon/storage/box/gloves, +/obj/item/weapon/reagent_containers/glass/bucket, +/obj/item/weapon/reagent_containers/glass/bucket, +/obj/item/robot_parts/l_arm, +/obj/item/device/analyzer/plant_analyzer, +/obj/item/device/analyzer/plant_analyzer, +/obj/item/weapon/material/knife/machete/hatchet, +/obj/item/weapon/material/knife/machete/hatchet, +/obj/item/weapon/material/minihoe, +/obj/item/weapon/material/minihoe, +/obj/item/inflatable/door, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/item/weapon/storage/box/botanydisk, +/obj/item/weapon/storage/box/botanydisk, +/turf/simulated/floor/tiled/eris, +/area/rnd/xenobiology/xenoflora) +"LA" = ( +/obj/structure/cable/pink{ + icon_state = "1-8" + }, +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/dark, +/area/security/security_lockerroom) +"LB" = ( +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/glass, +/obj/item/stack/material/plasteel{ + amount = 10 + }, +/obj/structure/closet/walllocker_double/east, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel, +/area/assembly/robotics) +"LC" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/port) +"LD" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/turf/simulated/floor/tiled/eris/white/gray_platform, +/area/gateway) +"LE" = ( +/obj/structure/sign/directions/evac{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/starboard) +"LF" = ( +/turf/simulated/wall/bay/purple, +/area/maintenance/stellardelight/deck1/starboardaft) +"LH" = ( +/turf/simulated/floor/tiled/dark, +/area/security/security_lockerroom) +"LI" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/angled_bay/standard/color{ + door_color = "#2e2e2e"; + fill_color = "#2e2e2e"; + name = "Chapel Morgue"; + req_access = list(6,27); + stripe_color = "#deaf43" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/chapel/chapel_morgue) +"LJ" = ( +/obj/machinery/button/remote/blast_door{ + id = "GatewayShutter"; + name = "Gateway Shutter"; + pixel_y = 24; + req_access = list(62) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/white/gray_platform, +/area/gateway) +"LK" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/tiled/steel_grid, +/area/assembly/robotics) +"LL" = ( +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/milspec/color/red/half{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/security/security_lockerroom) +"LM" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 4 + }, +/obj/effect/landmark/start/librarian, +/turf/simulated/floor/wood, +/area/library) +"LN" = ( +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/security/security_cell_hallway) +"LO" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/exploration) +"LP" = ( +/obj/structure/table/standard, +/obj/machinery/cell_charger, +/obj/item/weapon/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/item/weapon/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/research) +"LQ" = ( +/obj/machinery/door/blast/angled{ + id = "xenobiodiv4"; + name = "Divider 4 Blast Door" + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"LR" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/toilet) +"LT" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/angled_bay/hatch{ + door_color = "#e6ab22"; + name = "Research Substation"; + req_one_access = list(10); + stripe_color = "#e6ab22" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/maintenance/stellardelight/substation/research) +"LU" = ( +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/stellardelight/deck1/paramedic) +"LV" = ( +/obj/structure/cable{ + 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/alarm/angled, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/port) +"LW" = ( +/obj/structure/stairs/spawner/north, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor, +/area/stellardelight/deck1/aft) +"LX" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/stellardelight/deck1/dorms/dorm1) +"LY" = ( +/turf/simulated/wall/bay/r_wall{ + desc = "It has a brown stripe! A huge chunk of metal used to seperate rooms."; + stripe_color = "#785134" + }, +/area/library) +"LZ" = ( +/turf/simulated/wall/bay/r_wall/steel, +/area/stellardelight/deck1/exploration) +"Ma" = ( +/obj/machinery/door/airlock/angled_bay/external/glass{ + dir = 4; + door_color = "#a88860"; + name = "Mining Shuttle"; + req_access = null; + req_one_access = list(31,5); + stripe_color = "#69461a" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospheric_field_generator/perma/underdoors, +/obj/machinery/door/firedoor/glass/talon, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck1/miningshuttle) +"Mb" = ( +/turf/simulated/floor/tiled/dark, +/area/security/warden) +"Mc" = ( +/turf/simulated/wall/bay/r_wall{ + desc = "It has a brown stripe! A huge chunk of metal used to seperate rooms."; + stripe_color = "#785134" + }, +/area/security/armoury) +"Md" = ( +/obj/machinery/hologram/holopad, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/exploration) +"Me" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/angled_bay/standard/glass{ + dir = 4; + door_color = "#8c1d11"; + name = "Forensics Lab"; + req_access = list(4); + stripe_color = "#d27428" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/security/detectives_office) +"Mf" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/medical, +/obj/structure/curtain/open/privacy, +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/machinery/power/apc/angled{ + dir = 1; + name = "night shift APC"; + nightshift_setting = 2 + }, +/turf/simulated/floor/tiled/white, +/area/medical/patient_wing) +"Mg" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/structure/low_wall/bay/reinforced/purple, +/turf/simulated/floor, +/area/rnd/workshop) +"Mh" = ( +/turf/space/internal_edge/topleft, +/area/stellardelight/deck1/starboard) +"Mi" = ( +/obj/structure/table/standard, +/obj/item/weapon/stock_parts/matter_bin, +/obj/item/weapon/stock_parts/matter_bin, +/obj/item/weapon/stock_parts/console_screen, +/obj/item/weapon/stock_parts/console_screen, +/obj/item/weapon/stock_parts/console_screen, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/research) +"Mj" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/angled_bay/standard/color{ + door_color = "#2e2e2e"; + fill_color = "#2e2e2e"; + name = "Chapel Morgue"; + req_access = null; + stripe_color = "#deaf43" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/chapel/main) +"Mk" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/button/remote/blast_door{ + id = "chapelmassdriver"; + name = "Window Lockdown"; + pixel_y = 27; + req_one_access = list(6,27) + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/chapel_morgue) +"Ml" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/portaft) +"Mm" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/atm{ + pixel_y = 30 + }, +/obj/structure/closet/emergsuit_wall{ + dir = 8; + pixel_x = -27 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/fore) +"Mq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/port) +"Mr" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/bluegrid, +/area/assembly/robotics) +"Ms" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/obj/structure/curtain/open/privacy{ + name = "shower curtain" + }, +/turf/simulated/floor/tiled/white, +/area/stellardelight/deck1/shower) +"Mt" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/camera/network/halls{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/port) +"Mu" = ( +/obj/structure/bed/chair/sofa/pew/left{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"Mv" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/starboard) +"My" = ( +/obj/structure/table/standard, +/obj/item/weapon/stock_parts/micro_laser, +/obj/item/weapon/stock_parts/micro_laser, +/obj/item/weapon/stock_parts/manipulator, +/obj/item/weapon/stock_parts/manipulator, +/obj/machinery/camera/network/research{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/research) +"MA" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/stellardelight/deck1/fore) +"MB" = ( +/obj/structure/cable/pink{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/camera/network/security{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/security_cell_hallway) +"MD" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/starboard) +"ME" = ( +/obj/machinery/gateway/centerstation, +/turf/simulated/floor/tiled/eris/white/gray_platform, +/area/gateway) +"MF" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/space/void/mining, +/obj/item/clothing/mask/breath, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/head/helmet/space/void/mining, +/obj/item/weapon/mining_scanner, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/miningequipment) +"MG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/landmark/start/miner, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/miningequipment) +"MH" = ( +/obj/effect/floor_decal/milspec/color/emerald/half{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 5 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/starboard) +"MI" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 6 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/port) +"MJ" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/effect/landmark/start/roboticist, +/turf/simulated/floor/tiled/steel_grid, +/area/assembly/robotics) +"MK" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/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/dark, +/area/stellardelight/deck1/resleeving) +"ML" = ( +/obj/structure/bed/chair/sofa/corp/right{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/stellardelight/deck1/dorms/dorm7) +"MM" = ( +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/stellardelight/deck1/lowermed) +"MN" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/structure/curtain/black{ + anchored = 1 + }, +/obj/structure/low_wall/bay/reinforced/steel, +/turf/simulated/floor, +/area/stellardelight/deck1/dorms/dorm6) +"MO" = ( +/obj/machinery/door/airlock/angled_bay/standard/color/common{ + dir = 4; + id_tag = "bathroomstall2"; + name = "Toilet 2" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/crew_quarters/toilet) +"MP" = ( +/obj/machinery/power/pointdefense{ + id_tag = "sd_pd" + }, +/obj/effect/floor_decal/industrial/warning/full, +/obj/structure/cable/pink{ + icon_state = "0-4" + }, +/obj/structure/cable/pink{ + icon_state = "0-2" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck1/exterior) +"MQ" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = 25; + pixel_y = -24 + }, +/turf/simulated/floor/carpet, +/area/stellardelight/deck1/dorms/dorm4) +"MR" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/door/airlock/angled_bay/standard/glass{ + dir = 4; + door_color = "#ffffff"; + name = "Xenoflora Research"; + req_access = list(77); + stripe_color = "#5a19a8" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/rnd/xenobiology/xenoflora_storage) +"MS" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/hatch{ + dir = 4; + door_color = "#8c1d11"; + name = "maintenance access"; + req_access = list(4); + req_one_access = null; + stripe_color = "#8c1d11" + }, +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/security/detectives_office) +"MT" = ( +/obj/machinery/suit_cycler/engineering{ + req_access = null + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/white/gray_platform, +/area/gateway) +"MV" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/hatch{ + door_color = "#e6ab22"; + name = "Exploration Substation"; + req_one_access = list(10); + stripe_color = "#e6ab22" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/maintenance/stellardelight/substation/exploration) +"MW" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/machinery/door/blast/angled/open{ + dir = 2; + id = "explowindowlockdown" + }, +/obj/structure/low_wall/bay/reinforced/steel, +/turf/simulated/floor, +/area/stellardelight/deck1/pathfinder) +"MX" = ( +/obj/machinery/alarm/angled{ + dir = 4 + }, +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/stellardelight/deck1/resleeving) +"MZ" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 6 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/stellardelight/deck1/shower) +"Nb" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/angled{ + dir = 4; + id = "mechbay"; + name = "Mech Bay" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/assembly/robotics) +"Nc" = ( +/turf/simulated/wall/bay/r_wall/red, +/area/maintenance/security_port) +"Nd" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/firealarm/angled{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris, +/area/stellardelight/deck1/researchequip) +"Ne" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/machinery/door/blast/angled/open{ + dir = 4; + id = "processinglockdown" + }, +/obj/structure/low_wall/bay/reinforced/red, +/turf/simulated/floor, +/area/security/security_processing) +"Nf" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/port) +"Ng" = ( +/obj/structure/railing/grey{ + dir = 8 + }, +/turf/simulated/floor, +/area/stellardelight/deck1/lowermed) +"Nh" = ( +/obj/machinery/light/small, +/obj/machinery/alarm/angled{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"Ni" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/photocopier/faxmachine{ + department = "Warden's Office" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/security/warden) +"Nj" = ( +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/milspec/color/red/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/security/security_cell_hallway) +"Nk" = ( +/obj/structure/table/reinforced, +/obj/machinery/microscope, +/turf/simulated/floor/tiled/white, +/area/security/detectives_office) +"Nl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/aft) +"Nm" = ( +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/power/apc/angled{ + dir = 1; + name = "night shift APC"; + nightshift_setting = 2 + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/mining) +"No" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/light_switch{ + pixel_x = 25; + pixel_y = 25 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/stellardelight/deck1/dorms/dorm2) +"Np" = ( +/obj/structure/cable/green{ + color = "#42038a"; + 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, +/area/maintenance/stellardelight/deck1/exploration) +"Nq" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/eris, +/area/rnd/xenobiology/xenoflora_storage) +"Nr" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 25; + pixel_y = 32 + }, +/obj/effect/landmark/start/janitor, +/turf/simulated/floor/tiled/monotile, +/area/janitor) +"Ns" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/door/airlock/angled_bay/standard/glass{ + dir = 4; + door_color = "#a6753d"; + name = "Mining Equipment"; + req_access = list(31); + stripe_color = "#3b2b1a" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck1/miningequipment) +"Nt" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/table/rack, +/obj/random/maintenance/security, +/obj/random/maintenance/research, +/obj/random/contraband, +/obj/random/drinkbottle, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/portcent) +"Nu" = ( +/obj/structure/table/standard, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/glass, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/camera/network/research, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/research) +"Nv" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/firealarm/angled, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/stellardelight/deck1/lowermed) +"Nw" = ( +/obj/structure/closet/walllocker_double/medical/north, +/obj/item/weapon/folder/white, +/obj/item/device/healthanalyzer, +/obj/item/weapon/cane, +/obj/item/clothing/accessory/stethoscope, +/turf/simulated/floor/tiled/white, +/area/medical/patient_wing) +"Nx" = ( +/obj/structure/closet/secure_closet/sar, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/exploequipment) +"Nz" = ( +/obj/effect/floor_decal/chapel{ + dir = 8 + }, +/obj/structure/bed/chair/sofa/pew/left{ + dir = 1 + }, +/obj/effect/landmark/start/visitor, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"NA" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/explobriefing) +"NB" = ( +/obj/structure/closet/coffin, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"NC" = ( +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/monotile, +/area/janitor) +"ND" = ( +/obj/machinery/power/pointdefense{ + id_tag = "sd_pd" + }, +/obj/effect/floor_decal/industrial/warning/full, +/obj/structure/cable/pink{ + icon_state = "0-2" + }, +/obj/structure/cable/pink, +/turf/simulated/floor/airless, +/area/stellardelight/deck1/exterior) +"NF" = ( +/obj/structure/table/woodentable, +/obj/item/device/flashlight/lamp/green{ + pixel_x = 1; + pixel_y = 5 + }, +/turf/simulated/floor/carpet, +/area/library) +"NG" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/purple, +/obj/effect/floor_decal/milspec/color/black, +/turf/simulated/floor/tiled/dark, +/area/security/armoury) +"NH" = ( +/turf/simulated/wall/bay/steel, +/area/stellardelight/deck1/shower) +"NI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/exploration) +"NJ" = ( +/obj/effect/shuttle_landmark/premade/sd/deck1/fore, +/turf/space, +/area/space) +"NK" = ( +/obj/effect/floor_decal/milspec/color/red/half{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/security/tactical) +"NL" = ( +/obj/machinery/power/apc/angled{ + dir = 8; + name = "night shift APC"; + nightshift_setting = 2 + }, +/obj/structure/cable/green, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/portaft) +"NM" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/tiled/dark, +/area/assembly/robotics) +"NN" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/recharger{ + pixel_y = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/security/lobby) +"NP" = ( +/turf/simulated/wall/bay/r_wall/steel, +/area/maintenance/stellardelight/deck1/portaft) +"NQ" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/flora/pottedplant/minitree, +/obj/machinery/alarm/angled, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/starboard) +"NR" = ( +/obj/machinery/mech_recharger, +/obj/machinery/light, +/turf/simulated/floor/bluegrid, +/area/gateway) +"NS" = ( +/obj/structure/stairs/spawner/west, +/obj/structure/railing/grey{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/structure/cable/yellow{ + icon_state = "16-0" + }, +/turf/simulated/floor, +/area/stellardelight/deck1/mining) +"NT" = ( +/turf/space/internal_edge/topright, +/area/stellardelight/deck1/starboard) +"NV" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris, +/area/rnd/xenobiology/xenoflora) +"NW" = ( +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/portfore) +"NX" = ( +/obj/machinery/button/remote/blast_door{ + dir = 1; + id = "xenobiopen4"; + name = "Pen 4 Containment"; + pixel_x = 31; + pixel_y = 8; + req_access = list(55) + }, +/obj/machinery/button/remote/blast_door{ + id = "xenobiopen6"; + name = "Pen 6 Containment"; + pixel_x = 30; + pixel_y = -8; + req_access = list(55) + }, +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "xenobiodiv4"; + name = "Divider 4 Blast Doors"; + pixel_x = 39; + req_access = list(55) + }, +/obj/machinery/light/floortube{ + dir = 4; + pixel_x = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology) +"NY" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-2" + }, +/turf/simulated/wall/bay/r_wall/steel, +/area/stellardelight/deck1/pathfinder) +"NZ" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/mining) +"Oa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/effect/floor_decal/milspec/color/emerald/half, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/aft) +"Ob" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris, +/area/rnd/xenobiology/xenoflora_storage) +"Oc" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/status_display{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/stellardelight/deck1/lowermed) +"Od" = ( +/obj/machinery/light, +/obj/structure/sign/department/medbay{ + name = "RESLEEVING"; + pixel_x = -32 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/stellardelight/deck1/lowermed) +"Oe" = ( +/obj/structure/table/woodentable, +/obj/machinery/alarm/angled, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/stellardelight/deck1/dorms/dorm2) +"Og" = ( +/obj/machinery/optable, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/medical/morgue) +"Oh" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/angled_bay/double{ + name = "maintenance access"; + stripe_color = "#454545" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/starboardaft) +"Oj" = ( +/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 = 8 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/virology) +"Ok" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/aft) +"Ol" = ( +/obj/structure/table/rack, +/obj/item/weapon/storage/toolbox/mechanical, +/obj/item/device/multitool, +/obj/item/device/gps/medical{ + pixel_y = 3 + }, +/obj/item/device/gps/medical{ + pixel_x = -3 + }, +/obj/item/device/radio{ + pixel_x = 2 + }, +/obj/item/device/radio{ + pixel_x = -1; + pixel_y = -3 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/stellardelight/deck1/paramedic) +"Om" = ( +/obj/structure/cable/yellow, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/power/smes/buildable{ + RCon_tag = "Substation - Cargo"; + output_attempt = 0 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/substation/cargo) +"On" = ( +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/effect/floor_decal/milspec/color/red/half, +/turf/simulated/floor/tiled/dark, +/area/security/security_cell_hallway) +"Oo" = ( +/obj/machinery/botany/extractor, +/turf/simulated/floor/tiled/eris, +/area/rnd/xenobiology/xenoflora) +"Op" = ( +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/suit/space/void/medical, +/obj/item/clothing/suit/space/void/medical, +/obj/item/clothing/head/helmet/space/void/medical, +/obj/item/clothing/head/helmet/space/void/medical, +/obj/machinery/door/window/brigdoor/westleft{ + dir = 2; + req_access = list(5) + }, +/obj/structure/table/rack{ + dir = 8; + layer = 2.9 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/white/gray_platform, +/area/gateway) +"Oq" = ( +/obj/machinery/door/blast/angled{ + id = "xenobiodiv1"; + name = "Divider 1 Blast Door" + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"Or" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/chapel_morgue) +"Ot" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/catwalk_plated/dark, +/obj/structure/disposalpipe/junction, +/turf/simulated/floor, +/area/stellardelight/deck1/starboard) +"Ou" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/port) +"Ov" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/port) +"Ow" = ( +/obj/machinery/gateway{ + dir = 6 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/white/gray_platform, +/area/gateway) +"Ox" = ( +/obj/structure/closet, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/portfore) +"Oy" = ( +/obj/structure/morgue/crematorium{ + dir = 2; + id = "crematorium" + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/chapel_morgue) +"Oz" = ( +/obj/random/trash_pile, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/exploration) +"OA" = ( +/turf/simulated/floor, +/area/stellardelight/deck1/dorms/dorm2) +"OB" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/landmark/start/explorer, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/explobriefing) +"OC" = ( +/obj/effect/floor_decal/chapel{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 4; + name = "Bar"; + sortType = "Bar" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"OD" = ( +/obj/structure/closet/emergsuit_wall{ + dir = 8; + pixel_x = -27 + }, +/turf/simulated/floor/tiled/dark, +/area/security/lobby) +"OE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/security/detectives_office) +"OF" = ( +/turf/simulated/floor/tiled/eris/steel/panels, +/area/stellardelight/deck1/pilot) +"OG" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"OH" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/stellardelight/deck1/aft) +"OI" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/angled_bay/standard/color{ + door_color = "#ffffff"; + fill_color = "#ead9ff"; + name = "Equipment Room"; + req_access = list(7); + stripe_color = "#5a19a8" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck1/researchequip) +"OJ" = ( +/obj/structure/cable/pink{ + icon_state = "1-8" + }, +/obj/effect/floor_decal/milspec/color/black, +/turf/simulated/floor/tiled/dark, +/area/security/armoury) +"OL" = ( +/obj/machinery/alarm/angled{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/steel/gray_platform, +/area/stellardelight/deck1/exploshuttle) +"OM" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck1/shower) +"ON" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/sign/directions/evac{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/starboard) +"OO" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/starboard) +"OQ" = ( +/turf/simulated/wall/bay/brown, +/area/security/detectives_office) +"OR" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-4" + }, +/obj/structure/closet/crate, +/obj/random/maintenance/security, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/random/maintenance/engineering, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/snack, +/obj/random/mre, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/starboardaft) +"OT" = ( +/turf/simulated/wall/rshull, +/area/stellardelight/deck1/exploshuttle) +"OU" = ( +/obj/structure/dispenser{ + phorontanks = 0 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/stellardelight/deck1/paramedic) +"OV" = ( +/obj/machinery/computer/rdservercontrol{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck1/researchserver) +"OX" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/research) +"OY" = ( +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/blast/angled/open{ + dir = 4; + id = "xenobiopen1"; + name = "Pen 1 Blast Doors" + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology) +"OZ" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/aft) +"Pa" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/machinery/camera/network/security{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/security/tactical) +"Pb" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/structure/low_wall/bay/reinforced/black, +/turf/simulated/floor, +/area/chapel/main) +"Pd" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/random/trash_pile, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/exploration) +"Pf" = ( +/obj/effect/floor_decal/milspec/color/red/half{ + dir = 8 + }, +/obj/structure/closet/walllocker_double/east{ + dir = 8; + name = "Evidence Storage"; + pixel_x = -32 + }, +/obj/item/weapon/storage/box/evidence, +/obj/item/weapon/storage/box/evidence, +/turf/simulated/floor/tiled/dark, +/area/security/security_cell_hallway) +"Pg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + pixel_y = -24 + }, +/turf/simulated/floor/lino, +/area/chapel/office) +"Ph" = ( +/obj/structure/cable/pink{ + icon_state = "1-4" + }, +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/effect/floor_decal/milspec/color/black, +/turf/simulated/floor/tiled/dark, +/area/security/security_cell_hallway) +"Pj" = ( +/obj/machinery/door_timer/cell_3{ + id = "Cell A"; + name = "Cell A"; + pixel_x = 32; + pixel_y = 32 + }, +/obj/effect/floor_decal/milspec/color/black, +/turf/simulated/floor/tiled/dark, +/area/security/security_cell_hallway) +"Pk" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/random/slimecore, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"Pl" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/effect/landmark/start/scientist, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/workshop) +"Pm" = ( +/obj/effect/floor_decal/chapel, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"Pn" = ( +/obj/machinery/mineral/output, +/obj/machinery/conveyor{ + dir = 8; + id = "miningops" + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/oreprocessing) +"Po" = ( +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -25; + pixel_y = 32 + }, +/turf/simulated/floor/tiled/dark, +/area/security/tactical) +"Pp" = ( +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/camera/network/medbay{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/stellardelight/deck1/lowermed) +"Pr" = ( +/obj/structure/cable/green{ + color = "#42038a"; + 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/milspec, +/area/stellardelight/deck1/exploration) +"Ps" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/structure/low_wall/bay/reinforced/brown, +/turf/simulated/floor, +/area/stellardelight/deck1/oreprocessing) +"Pt" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/port) +"Pu" = ( +/turf/simulated/floor, +/area/maintenance/stellardelight/substation/exploration) +"Pv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/effect/floor_decal/milspec/color/black, +/turf/simulated/floor/tiled/dark, +/area/security/armoury) +"Pw" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "0-8" + }, +/obj/machinery/power/apc/angled{ + dir = 4; + name = "night shift APC"; + nightshift_setting = 2 + }, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/exploration) +"Py" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/security/detectives_office) +"Pz" = ( +/obj/structure/table/bench/marble, +/obj/structure/fireaxecabinet{ + pixel_y = -32 + }, +/obj/effect/landmark/start/paramedic, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/stellardelight/deck1/paramedic) +"PA" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/structure/curtain/black{ + anchored = 1 + }, +/obj/structure/low_wall/bay/reinforced/steel, +/turf/simulated/floor, +/area/stellardelight/deck1/dorms/dorm4) +"PB" = ( +/obj/machinery/chem_master, +/turf/simulated/floor/tiled/eris, +/area/rnd/xenobiology/xenoflora) +"PC" = ( +/obj/structure/bed/chair/backed_red{ + dir = 8 + }, +/obj/effect/landmark/start/explorer, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/exploration) +"PD" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/aft) +"PE" = ( +/obj/machinery/alarm/angled, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/exploration) +"PF" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/random/soap, +/obj/random/soap, +/obj/item/weapon/towel/random, +/obj/item/weapon/towel/random, +/obj/item/clothing/under/bathrobe, +/obj/item/clothing/under/bathrobe, +/obj/structure/table/standard, +/turf/simulated/floor/tiled/white, +/area/stellardelight/deck1/shower) +"PG" = ( +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/exploration) +"PH" = ( +/obj/structure/janitorialcart, +/obj/machinery/power/apc/angled{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/item/clothing/suit/caution, +/obj/item/clothing/suit/caution, +/obj/item/clothing/suit/caution, +/obj/item/clothing/suit/caution, +/obj/item/device/lightreplacer, +/obj/structure/mopbucket, +/obj/item/weapon/reagent_containers/glass/bucket, +/obj/item/weapon/mop, +/obj/item/weapon/storage/bag/trash, +/obj/item/weapon/soap/nanotrasen, +/turf/simulated/floor/tiled/monotile, +/area/janitor) +"PI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/carpet, +/area/stellardelight/deck1/dorms/dorm8) +"PJ" = ( +/obj/machinery/alarm/angled{ + dir = 8 + }, +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/turf/simulated/floor/tiled/eris, +/area/rnd/xenobiology/xenoflora) +"PL" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/exploration) +"PM" = ( +/turf/simulated/wall/bay/r_wall/steel, +/area/janitor) +"PN" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 10 + }, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/exploration) +"PO" = ( +/obj/effect/floor_decal/milspec/color/red/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/security/security_cell_hallway) +"PP" = ( +/obj/structure/closet/crate, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 24 + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/oreprocessing) +"PQ" = ( +/obj/item/weapon/storage/fancy/vials, +/obj/item/weapon/reagent_containers/syringe/antiviral, +/obj/item/weapon/reagent_containers/syringe/antiviral, +/obj/item/weapon/storage/lockbox/vials, +/obj/item/weapon/reagent_containers/dropper, +/obj/item/weapon/storage/box/syringes{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/weapon/storage/box/beakers, +/obj/item/weapon/storage/box/masks, +/obj/item/weapon/storage/box/gloves{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/weapon/soap/nanotrasen, +/obj/structure/closet/walllocker_double/medical/east, +/obj/item/weapon/hand_labeler, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/item/weapon/storage/box/monkeycubes/wolpincubes, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/virology) +"PR" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/closet/firecloset, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/starboardaft) +"PS" = ( +/obj/structure/cable/pink{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/milspec/color/red/half{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/security/security_cell_hallway) +"PU" = ( +/obj/machinery/button/remote/airlock{ + id = "bathroomstall3"; + name = "Toilet 3 Lock"; + pixel_x = -10; + pixel_y = 22; + specialfunctions = 4 + }, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/toilet) +"PV" = ( +/obj/machinery/light/small, +/turf/simulated/floor/tiled/dark, +/area/stellardelight/deck1/resleeving) +"PW" = ( +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/obj/structure/cable/pink{ + icon_state = "2-8" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/starboardfore) +"PX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"PY" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/reinforced, +/area/stellardelight/deck1/shuttlebay) +"PZ" = ( +/obj/structure/cable/green, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/machinery/power/smes/buildable{ + RCon_tag = "Substation - Civilian"; + output_attempt = 0 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/substation/civilian) +"Qa" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/stellardelight/deck1/dorms/dorm5) +"Qb" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + frequency = 1379; + id_tag = "ex_airpump" + }, +/obj/machinery/airlock_sensor{ + id_tag = "ex_sensor"; + pixel_y = 24 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/exploration) +"Qc" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/starboard) +"Qd" = ( +/obj/structure/bed/chair/comfy/black, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/stellardelight/deck1/dorms/dorm5) +"Qe" = ( +/obj/machinery/alarm/angled, +/turf/simulated/floor/carpet/purcarpet, +/area/stellardelight/deck1/dorms/dorm3) +"Qf" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/port) +"Qg" = ( +/obj/structure/table/steel, +/obj/item/device/flashlight/lamp, +/obj/machinery/button/remote/blast_door{ + id = "processinglockdown"; + name = "Window Lockdown"; + pixel_x = -5; + req_access = list(1) + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 24 + }, +/turf/simulated/floor/tiled/dark, +/area/security/security_processing) +"Qh" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/exam_room) +"Qi" = ( +/turf/simulated/wall/bay/r_wall{ + desc = "It has a red stripe! A huge chunk of metal used to seperate rooms."; + stripe_color = "#8c1d11" + }, +/area/security/tactical) +"Qj" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/starboard) +"Qk" = ( +/turf/simulated/wall/bay/red, +/area/prison/cell_block/C) +"Ql" = ( +/obj/structure/cable/orange{ + icon_state = "0-2" + }, +/obj/structure/cable/orange, +/obj/machinery/power/smes/buildable{ + RCon_tag = "Substation - Atmospherics"; + output_attempt = 0 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/substation/atmospherics) +"Qm" = ( +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/grille, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/blast/angled/open{ + dir = 4; + id = "xenobiopen5"; + name = "Pen 5 Blast Doors" + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology) +"Qn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/station_map{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/fore) +"Qp" = ( +/obj/structure/table/glass, +/obj/item/device/healthanalyzer, +/obj/item/clothing/accessory/stethoscope, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/exam_room) +"Qq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel, +/area/assembly/robotics) +"Qr" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/angled_bay/hatch{ + door_color = "#e6ab22"; + name = "Medical Substation"; + req_one_access = list(10); + stripe_color = "#e6ab22" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/maintenance/stellardelight/substation/medical) +"Qt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/exploration) +"Qu" = ( +/turf/simulated/wall/bay{ + desc = "It has a red stripe! A huge chunk of metal used to seperate rooms."; + stripe_color = "#8c1d11" + }, +/area/security/security_processing) +"Qv" = ( +/obj/machinery/door/firedoor/glass/hidden/steel, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/aft) +"Qw" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1379; + master_tag = "security_airlock"; + name = "exterior access button"; + pixel_x = -32; + req_access = list(1) + }, +/obj/machinery/door/airlock/angled_bay/external/glass{ + frequency = 1379; + id_tag = "security_exterior"; + locked = 1; + name = "Security Airlock" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/security/tactical) +"Qx" = ( +/obj/machinery/gateway, +/turf/simulated/floor/tiled/eris/white/gray_platform, +/area/gateway) +"Qy" = ( +/obj/machinery/light/floortube{ + dir = 4; + pixel_x = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/eris, +/area/rnd/xenobiology/xenoflora) +"Qz" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-4" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/starboardaft) +"QA" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/alarm/angled{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/stellardelight/deck1/lowermed) +"QB" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/portcent) +"QC" = ( +/turf/simulated/wall/bay/red, +/area/security/lobby) +"QD" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris, +/area/rnd/xenobiology/xenoflora_storage) +"QE" = ( +/obj/effect/landmark/start/scientist, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/research) +"QF" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/port) +"QG" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/double/glass{ + door_color = "#8c1d11"; + id_tag = "BrigFoyer"; + name = "Security"; + req_one_access = list(38,63); + stripe_color = "#d27428" + }, +/obj/machinery/door/blast/angled/open{ + dir = 2; + id = "securitylockdown" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/security/lobby) +"QH" = ( +/obj/machinery/hologram/holopad, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/eris, +/area/stellardelight/deck1/researchequip) +"QI" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/virology) +"QJ" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/stellardelight/deck1/lowermed) +"QK" = ( +/obj/structure/railing/grey{ + dir = 1 + }, +/turf/simulated/floor, +/area/stellardelight/deck1/mining) +"QM" = ( +/obj/item/weapon/bedsheet/orangedouble, +/obj/structure/bed/double/padded, +/obj/structure/curtain/black, +/turf/simulated/floor/carpet/purcarpet, +/area/stellardelight/deck1/dorms/dorm2) +"QO" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/flora/pottedplant/decorative, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/stellardelight/deck1/lowermed) +"QP" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/weapon/storage/box/trackimp{ + pixel_y = -4 + }, +/obj/item/weapon/storage/box/trackimp{ + pixel_x = 5; + pixel_y = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/alarm/angled, +/obj/effect/floor_decal/milspec/color/black, +/obj/effect/landmark/vermin, +/turf/simulated/floor/tiled/dark, +/area/security/armoury) +"QQ" = ( +/obj/effect/floor_decal/milspec/color/red/half{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/security/security_cell_hallway) +"QR" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/maintenance/stellardelight/deck1/starboardaft) +"QS" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/toilet) +"QU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/starboardaft) +"QV" = ( +/obj/structure/table/reinforced, +/obj/machinery/computer/med_data/laptop{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/alarm/angled{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/security/detectives_office) +"QX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/security/detectives_office) +"QY" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/machinery/door/blast/angled/open{ + dir = 2; + id = "brigwindowlockdown" + }, +/obj/structure/low_wall/bay/reinforced/steel, +/turf/simulated/floor, +/area/security/security_equiptment_storage) +"QZ" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/tiled/steel, +/area/assembly/robotics) +"Ra" = ( +/obj/structure/railing/grey{ + dir = 4 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/portaft) +"Rb" = ( +/obj/structure/bed/padded, +/turf/simulated/floor/tiled/eris/white/cargo, +/area/medical/virology) +"Rc" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/standard/color{ + door_color = "#2e2e2e"; + fill_color = "#2e2e2e"; + name = "Chapel Office"; + req_access = list(22); + stripe_color = "#deaf43" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/chapel/office) +"Rd" = ( +/obj/structure/bed/chair/wood/wings, +/obj/effect/landmark/start/chaplain, +/turf/simulated/floor/lino, +/area/chapel/office) +"Re" = ( +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/milspec/color/red/half{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/security/security_lockerroom) +"Rf" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/portcent) +"Rg" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/portaft) +"Rh" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/power/sensor{ + name = "Powernet Sensor - Medical Subgrid"; + name_tag = "Medical Subgrid" + }, +/obj/structure/cable/white, +/obj/machinery/power/apc/angled{ + dir = 4; + name = "night shift APC"; + nightshift_setting = 2 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/substation/medical) +"Ri" = ( +/obj/machinery/door/airlock/angled_bay/standard/color/common{ + dir = 4; + id_tag = "bathroomstall3"; + name = "Toilet 3" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/crew_quarters/toilet) +"Rj" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/camera/network/civilian{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"Rk" = ( +/obj/structure/cable{ + 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/techmaint, +/area/stellardelight/deck1/port) +"Rl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/maintenance/stellardelight/deck1/starboardaft) +"Rm" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled/eris, +/area/rnd/xenobiology/xenoflora) +"Rn" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/angled_bay/standard/color{ + dir = 8; + door_color = "#ffffff"; + id_tag = "resleeveexit"; + name = "Resleeving Lab"; + req_access = list(5); + stripe_color = "#5a96bb" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck1/resleeving) +"Ro" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris, +/area/rnd/xenobiology/xenoflora_storage) +"Rp" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/machinery/door/blast/angled/open{ + dir = 4; + id = "librarywindowlockdown" + }, +/obj/structure/low_wall/bay/reinforced/steel, +/turf/simulated/floor, +/area/library) +"Rq" = ( +/obj/structure/janitorialcart, +/obj/machinery/requests_console/preset/janitor{ + pixel_y = 30 + }, +/obj/item/clothing/suit/caution, +/obj/item/clothing/suit/caution, +/obj/item/clothing/suit/caution, +/obj/item/clothing/suit/caution, +/obj/item/device/lightreplacer, +/obj/structure/mopbucket, +/obj/item/weapon/reagent_containers/glass/bucket, +/obj/item/weapon/mop, +/obj/item/weapon/storage/bag/trash, +/obj/item/weapon/soap/nanotrasen, +/turf/simulated/floor/tiled/monotile, +/area/janitor) +"Rr" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24; + pixel_y = -32 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/turf/simulated/floor/tiled/white, +/area/medical/patient_wing) +"Rs" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/hatch{ + dir = 4; + door_color = "#e6ab22"; + name = "Exploration Substation"; + req_one_access = list(10); + stripe_color = "#e6ab22" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/maintenance/stellardelight/substation/exploration) +"Rt" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/hatch{ + name = "maintenance access"; + req_access = list(26); + stripe_color = "#454545" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/janitor) +"Ru" = ( +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/suit/space/void/security, +/obj/item/clothing/suit/space/void/security, +/obj/item/clothing/head/helmet/space/void/security, +/obj/item/clothing/head/helmet/space/void/security, +/obj/machinery/door/window/brigdoor{ + dir = 2 + }, +/obj/structure/table/rack{ + dir = 8; + layer = 2.9 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/white/gray_platform, +/area/gateway) +"Rv" = ( +/obj/structure/cable/pink{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/security/security_cell_hallway) +"Rw" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + frequency = 1379; + id_tag = "security_airpump" + }, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + dir = 4; + id_tag = "security_airlock"; + pixel_x = -24; + req_one_access = list(1); + tag_airpump = "security_airpump"; + tag_chamber_sensor = "security_sensor"; + tag_exterior_door = "security_exterior"; + tag_interior_door = "security_interior" + }, +/obj/machinery/airlock_sensor{ + dir = 8; + id_tag = "security_sensor"; + pixel_x = 24 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor, +/area/security/tactical) +"Ry" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/structure/low_wall/bay/reinforced/purple, +/turf/simulated/floor, +/area/rnd/xenobiology/xenoflora_storage) +"Rz" = ( +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/explobriefing) +"RA" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/milspec/color/emerald/half{ + dir = 4 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/aft) +"RB" = ( +/obj/machinery/gateway{ + dir = 10 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/white/gray_platform, +/area/gateway) +"RC" = ( +/turf/simulated/wall/bay/red, +/area/security/warden) +"RD" = ( +/obj/structure/closet/walllocker_double/north, +/obj/item/weapon/storage/briefcase/inflatable, +/obj/item/weapon/storage/briefcase/inflatable, +/obj/item/weapon/storage/briefcase/inflatable, +/turf/simulated/floor/tiled/eris/white/gray_platform, +/area/gateway) +"RE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/virology) +"RF" = ( +/turf/simulated/floor/airless, +/area/stellardelight/deck1/exterior) +"RG" = ( +/obj/structure/cable/pink{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/security/security_cell_hallway) +"RH" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -32; + pixel_y = -32 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/exam_room) +"RI" = ( +/turf/space/internal_edge/bottomleft, +/area/stellardelight/deck1/starboard) +"RJ" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/cable/pink{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/security/security_cell_hallway) +"RK" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/alarm/angled{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/toilet) +"RL" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/portaft) +"RM" = ( +/obj/structure/closet/secure_closet/personal, +/obj/machinery/firealarm/angled{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/stellardelight/deck1/dorms/dorm4) +"RN" = ( +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"RP" = ( +/obj/structure/table/rack, +/obj/item/weapon/rig/medical/equipped, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/stellardelight/deck1/paramedic) +"RQ" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/sign/department/chapel{ + pixel_x = -32; + plane = -34 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/fore) +"RR" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/botany/editor, +/turf/simulated/floor/tiled/eris, +/area/rnd/xenobiology/xenoflora) +"RS" = ( +/turf/simulated/wall/bay/purple, +/area/stellardelight/deck1/pathfinder) +"RT" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/angled_bay/standard/color{ + dir = 8; + door_color = "#ffffff"; + name = "Cleaning Room"; + req_access = null; + stripe_color = "#5a96bb" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck1/resleeving) +"RU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 29 + }, +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 20 + }, +/obj/effect/floor_decal/milspec/color/red/half{ + dir = 4 + }, +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 38 + }, +/turf/simulated/floor/tiled/dark, +/area/security/security_lockerroom) +"RX" = ( +/obj/effect/floor_decal/milspec/color/red/half{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 9 + }, +/obj/machinery/power/apc/angled{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/fore) +"RY" = ( +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/exploration) +"RZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/starboard) +"Sa" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/port) +"Sb" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/maintenance/stellardelight/deck1/starboardaft) +"Sc" = ( +/turf/simulated/wall/bay/r_wall/purple, +/area/maintenance/stellardelight/deck1/starboardaft) +"Sd" = ( +/obj/structure/cable/orange{ + icon_state = "1-4" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck1/exterior) +"Se" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/firstaid/regular, +/obj/item/weapon/storage/firstaid/regular, +/obj/item/weapon/storage/firstaid/adv, +/obj/item/bodybag/cryobag, +/obj/item/bodybag/cryobag, +/obj/machinery/alarm/angled{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/white/gray_platform, +/area/gateway) +"Sf" = ( +/obj/structure/cable/green{ + color = "#42038a"; + 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 = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/assembly/robotics) +"Sg" = ( +/obj/machinery/vending/wardrobe/chapdrobe, +/turf/simulated/floor/lino, +/area/chapel/office) +"Sh" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/port) +"Si" = ( +/obj/structure/bed/chair/comfy/black, +/obj/machinery/firealarm/angled{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/stellardelight/deck1/dorms/dorm1) +"Sj" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/starboard) +"Sk" = ( +/obj/machinery/power/apc/angled{ + dir = 1 + }, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "0-2" + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/eris, +/area/rnd/storage) +"Sl" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/substation/security) +"Sn" = ( +/obj/structure/flora/pottedplant/orientaltree, +/obj/machinery/light, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/explobriefing) +"Sq" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/eris, +/area/rnd/xenobiology/xenoflora_storage) +"Sr" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_grid, +/area/assembly/robotics) +"Ss" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/starboardfore) +"St" = ( +/obj/effect/landmark/start/xenobot, +/turf/simulated/floor/tiled/eris, +/area/rnd/xenobiology/xenoflora) +"Su" = ( +/obj/structure/cable/yellow{ + 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 = 8 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/mining) +"Sv" = ( +/obj/structure/cable/pink{ + icon_state = "1-8" + }, +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/security/security_lockerroom) +"Sx" = ( +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/wood, +/area/library) +"Sy" = ( +/obj/structure/cable/pink{ + icon_state = "2-8" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck1/exterior) +"Sz" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/starboard) +"SA" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/obj/structure/low_wall/bay/reinforced/steel, +/turf/simulated/floor, +/area/chapel/main) +"SB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck1/port) +"SC" = ( +/turf/simulated/wall/bay/steel, +/area/maintenance/stellardelight/substation/security) +"SD" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/camera/network/medbay, +/turf/simulated/floor/tiled/eris/white/cargo, +/area/medical/virology) +"SE" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/exploration) +"SF" = ( +/obj/structure/bed/chair/office/dark, +/obj/effect/landmark/start/security, +/turf/simulated/floor/tiled/dark, +/area/security/lobby) +"SG" = ( +/obj/machinery/vending/wallmed1/public{ + pixel_x = 29 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/toilet) +"SH" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/light_switch{ + pixel_x = -24; + pixel_y = 25 + }, +/turf/simulated/floor/carpet, +/area/stellardelight/deck1/dorms/dorm8) +"SI" = ( +/obj/machinery/computer/security{ + dir = 4 + }, +/obj/effect/floor_decal/milspec/color/red/half{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/security/lobby) +"SJ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/sign/directions{ + desc = "A direction sign, pointing out the way to Exploration."; + name = "\improper Exploration Department"; + pixel_x = 32 + }, +/obj/structure/sign/directions/science{ + dir = 6; + pixel_x = 32; + pixel_y = -6 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/aft) +"SL" = ( +/obj/effect/landmark{ + name = "lightsout" + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/port) +"SM" = ( +/obj/random/trash_pile, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/starboardaft) +"SN" = ( +/obj/machinery/power/pointdefense{ + id_tag = "sd_pd" + }, +/obj/effect/floor_decal/industrial/warning/full, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "0-2" + }, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "2-4" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck1/exterior) +"SO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/sign/directions{ + desc = "A direction sign, pointing out the way to Exploration."; + name = "\improper Exploration Department"; + pixel_y = -32 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/aft) +"SP" = ( +/obj/machinery/button/remote/airlock{ + dir = 1; + id = "dorm3"; + name = "Room 3 Lock"; + pixel_y = -22; + specialfunctions = 4 + }, +/obj/machinery/power/apc/angled{ + dir = 4; + name = "night shift APC"; + nightshift_setting = 2 + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/stellardelight/deck1/dorms/dorm3) +"SQ" = ( +/turf/simulated/floor/lino, +/area/chapel/office) +"SR" = ( +/obj/machinery/door/blast/multi_tile/three_tile_ver{ + id = "xenospace6" + }, +/turf/simulated/floor/reinforced, +/area/rnd/workshop) +"SS" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 25; + pixel_y = 32 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/miningequipment) +"ST" = ( +/obj/effect/landmark{ + name = "lightsout" + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/workshop) +"SU" = ( +/obj/machinery/light/small, +/turf/simulated/floor/carpet/purcarpet, +/area/stellardelight/deck1/dorms/dorm7) +"SV" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/stellardelight/deck1/shower) +"SW" = ( +/obj/machinery/door/airlock/angled_bay/external/glass{ + dir = 4; + frequency = 1379; + id_tag = "ex_interior"; + locked = 1; + name = "Exterior Airlock" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/maintenance/stellardelight/deck1/exploration) +"SX" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/toilet) +"SY" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/light_switch{ + pixel_x = -24; + pixel_y = 25 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/stellardelight/deck1/dorms/dorm7) +"SZ" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/steel/panels, +/area/stellardelight/deck1/pilot) +"Ta" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/library) +"Tb" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/exploration) +"Tc" = ( +/obj/item/weapon/bedsheet/orangedouble, +/obj/structure/bed/double/padded, +/obj/structure/curtain/black, +/turf/simulated/floor/carpet/purcarpet, +/area/stellardelight/deck1/dorms/dorm7) +"Td" = ( +/turf/simulated/wall/bay/r_wall/steel, +/area/maintenance/stellardelight/deck1/portcent) +"Te" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/weapon/gun/energy/laser{ + pixel_x = -1; + pixel_y = 2 + }, +/obj/item/weapon/gun/energy/laser{ + pixel_x = -1; + pixel_y = -11 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/purple{ + dir = 9 + }, +/obj/effect/floor_decal/milspec/color/black, +/turf/simulated/floor/tiled/dark, +/area/security/armoury) +"Tf" = ( +/obj/structure/cable/green{ + color = "#42038a"; + 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 = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/maintenance/stellardelight/deck1/starboardaft) +"Tg" = ( +/obj/structure/closet/emergsuit_wall{ + dir = 4; + pixel_x = 27 + }, +/turf/simulated/floor/tiled/dark, +/area/security/lobby) +"Th" = ( +/obj/structure/cable/pink{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/dark, +/area/security/security_processing) +"Ti" = ( +/obj/structure/bed/chair/bay/shuttle{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/steel/gray_platform, +/area/stellardelight/deck1/exploshuttle) +"Tj" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/research) +"Tk" = ( +/obj/structure/bed/chair/comfy/black, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 24 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/stellardelight/deck1/starboard) +"Tl" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/standard/glass{ + dir = 4; + door_color = "#ffffff"; + name = "Xenoflora Research"; + req_access = list(77); + stripe_color = "#5a19a8" + }, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/rnd/xenobiology/xenoflora) +"Tm" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/standard/glass{ + door_color = "#8c1d11"; + name = "Forensics Lab"; + req_access = list(4); + stripe_color = "#d27428" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/security/detectives_office) +"Tn" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris, +/area/stellardelight/deck1/researchequip) +"To" = ( +/obj/structure/cable{ + 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, +/area/maintenance/stellardelight/deck1/portaft) +"Tp" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/angled_bay/standard/glass{ + door_color = "#ffffff"; + name = "Xenobiology"; + req_access = null; + req_one_access = list(47,55); + stripe_color = "#5a19a8" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/rnd/xenobiology) +"Tq" = ( +/obj/structure/cable/white, +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/obj/machinery/power/smes/buildable{ + RCon_tag = "Substation - Medical"; + output_attempt = 0 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/substation/medical) +"Tr" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/landmark/start/explorer, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/exploequipment) +"Ts" = ( +/obj/machinery/door/blast/angled{ + id = "xenobiodiv2"; + name = "Divider 2 Blast Door" + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"Tv" = ( +/obj/machinery/vending/coffee, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck1/starboard) +"Tw" = ( +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/disposal/wall{ + dir = 4; + plane = -34 + }, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck1/port) +"Tx" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/angled_bay/standard/color{ + door_color = "#9c9c9c"; + fill_color = "#5c5c5c"; + id_tag = "dorm3"; + name = "Room 3"; + stripe_color = "#89bd66" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck1/dorms/dorm3) +"Ty" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/obj/effect/landmark/vines, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/exploration) +"TB" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/mining) +"TC" = ( +/obj/structure/bed/chair/office/dark, +/obj/effect/landmark/start/explorer, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/explobriefing) +"TD" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/exploration) +"TE" = ( +/obj/effect/floor_decal/milspec/color/orange/half, +/turf/simulated/floor/tiled/dark, +/area/prison/cell_block/C) +"TF" = ( +/obj/structure/bed/chair/sofa/corp/right{ + dir = 1 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/stellardelight/deck1/dorms/dorm2) +"TG" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/xenobiology) +"TH" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/machinery/door/blast/angled/open{ + dir = 2; + id = "processinglockdown" + }, +/obj/structure/low_wall/bay/reinforced/red, +/turf/simulated/floor, +/area/security/security_processing) +"TI" = ( +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/alarm/angled{ + dir = 4 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/substation/cargo) +"TJ" = ( +/obj/structure/stairs/spawner/south, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor, +/area/stellardelight/deck1/fore) +"TK" = ( +/obj/machinery/clonepod/transhuman, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/stellardelight/deck1/resleeving) +"TL" = ( +/obj/machinery/alarm/angled, +/turf/simulated/floor/carpet/purcarpet, +/area/stellardelight/deck1/dorms/dorm6) +"TM" = ( +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable/pink{ + icon_state = "1-4" + }, +/obj/effect/floor_decal/milspec/color/black, +/turf/simulated/floor/tiled/dark, +/area/security/armoury) +"TN" = ( +/obj/item/weapon/bedsheet/orangedouble, +/obj/structure/bed/double/padded, +/obj/structure/curtain/black, +/turf/simulated/floor/carpet/purcarpet, +/area/stellardelight/deck1/dorms/dorm6) +"TO" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/sign/directions/science{ + dir = 6; + pixel_x = -32 + }, +/obj/structure/sign/directions/science{ + dir = 5; + pixel_x = -32; + pixel_y = 6 + }, +/obj/structure/sign/directions{ + desc = "A direction sign, pointing out the way to Exploration."; + dir = 10; + name = "\improper Exploration Department"; + pixel_x = -32; + pixel_y = -6 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/aft) +"TP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 4 + }, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/explobriefing) +"TQ" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/starboardcent) +"TR" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 8 + }, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/exploration) +"TS" = ( +/obj/random/maintenance/security, +/obj/random/maintenance/security, +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/random/contraband, +/obj/random/mre, +/turf/simulated/floor, +/area/maintenance/security_port) +"TT" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/stellardelight/deck1/port) +"TU" = ( +/obj/structure/closet/coffin, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"TV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/table/rack, +/obj/item/canvas, +/obj/item/canvas/nineteen_nineteen, +/obj/item/canvas/twentyfour_twentyfour, +/obj/item/canvas/twentythree_nineteen, +/obj/item/canvas/twentythree_twentythree, +/obj/machinery/alarm/angled{ + dir = 4 + }, +/obj/item/paint_palette, +/obj/item/paint_brush, +/turf/simulated/floor/wood, +/area/library) +"TW" = ( +/obj/machinery/door/blast/angled{ + dir = 4; + id = "chapelmassdriver" + }, +/turf/simulated/floor/airless, +/area/chapel/chapel_morgue) +"TX" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/angled_bay/standard/color{ + dir = 8; + door_color = "#ffffff"; + id_tag = "recoveryexit"; + name = "Recovery Room"; + req_access = list(5); + stripe_color = "#5a96bb" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/medical/patient_wing) +"TY" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/exam_room) +"TZ" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/light/small, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/starboardcent) +"Ua" = ( +/turf/simulated/wall/bay/steel, +/area/maintenance/stellardelight/substation/exploration) +"Ub" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable{ + 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/angled_bay/hatch{ + dir = 4; + name = "maintenance access"; + stripe_color = "#454545" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/maintenance/stellardelight/deck1/portcent) +"Uc" = ( +/obj/machinery/computer/ship/navigation/telescreen{ + pixel_x = 32 + }, +/obj/structure/table/bench/sifwooden/padded, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 24; + pixel_y = -32 + }, +/obj/effect/landmark/start/pilot, +/turf/simulated/floor/tiled/eris/steel/panels, +/area/stellardelight/deck1/pilot) +"Ud" = ( +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/alarm/angled{ + dir = 8 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/substation/research) +"Ue" = ( +/obj/machinery/light_switch{ + pixel_y = 25 + }, +/obj/effect/floor_decal/milspec/color/red/half{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/security/lobby) +"Uf" = ( +/obj/machinery/newscaster{ + pixel_x = 29 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/starboard) +"Ug" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/machinery/door/blast/angled/open{ + dir = 4; + id = "wardenoffice"; + name = "Privacy Shutters" + }, +/obj/structure/low_wall/bay/reinforced/red, +/turf/simulated/floor, +/area/security/warden) +"Uh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/wood, +/area/library) +"Uj" = ( +/obj/structure/table/woodentable, +/obj/item/device/paicard, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/stellardelight/deck1/starboard) +"Uk" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/aft) +"Ul" = ( +/obj/structure/cable/pink{ + icon_state = "1-8" + }, +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck1/exterior) +"Um" = ( +/obj/structure/mirror{ + pixel_y = 38 + }, +/obj/structure/sink{ + pixel_y = 20 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/toilet) +"Un" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"Uo" = ( +/obj/effect/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/explobriefing) +"Up" = ( +/obj/machinery/chemical_analyzer, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/explobriefing) +"Uq" = ( +/obj/structure/cable/pink{ + icon_state = "1-2" + }, +/obj/structure/cable/pink{ + icon_state = "2-8" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck1/exterior) +"Ur" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/starboard) +"Us" = ( +/obj/structure/bed/chair/comfy/brown, +/obj/machinery/newscaster{ + pixel_y = 28 + }, +/obj/effect/landmark/start/librarian, +/turf/simulated/floor/wood, +/area/library) +"Ut" = ( +/obj/machinery/door/window/brigdoor/eastleft{ + name = "Slime Pen 2"; + req_access = list(55) + }, +/obj/machinery/door/window/brigdoor/westright{ + name = "Slime Pen 2"; + req_access = list(55) + }, +/obj/machinery/door/blast/angled/open{ + dir = 4; + id = "xenobiopen2"; + name = "Pen 2 Blast Doors" + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"Uu" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/starboardcent) +"Uw" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/exploration) +"Ux" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/machinery/camera/network/research{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/storage) +"Uy" = ( +/obj/item/weapon/bikehorn/rubberducky, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck1/shower) +"Uz" = ( +/obj/structure/bookcase/bookcart, +/turf/simulated/floor/carpet, +/area/library) +"UA" = ( +/obj/machinery/r_n_d/destructive_analyzer, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/rnd/research) +"UB" = ( +/obj/machinery/power/apc/angled{ + cell_type = /obj/item/weapon/cell/super; + dir = 1; + name = "night shift APC"; + nightshift_setting = 2 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/closet/emcloset, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/exploration) +"UD" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/research) +"UE" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/research) +"UF" = ( +/obj/machinery/biogenerator, +/turf/simulated/floor/tiled/eris, +/area/rnd/xenobiology/xenoflora) +"UG" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/reinforced, +/area/stellardelight/deck1/shuttlebay) +"UH" = ( +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"UI" = ( +/obj/structure/cable/pink{ + icon_state = "2-8" + }, +/obj/structure/cable/pink{ + icon_state = "2-4" + }, +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/security/security_cell_hallway) +"UJ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/landmark/vermin, +/turf/simulated/floor/reinforced, +/area/stellardelight/deck1/shuttlebay) +"UK" = ( +/obj/structure/cable/pink{ + icon_state = "1-8" + }, +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/security/security_cell_hallway) +"UL" = ( +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/hatch{ + door_color = "#e6ab22"; + name = "Atmospherics Substation"; + req_one_access = list(10); + stripe_color = "#e6ab22" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/maintenance/stellardelight/substation/atmospherics) +"UM" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/table/rack, +/obj/random/action_figure, +/obj/random/maintenance/security, +/obj/random/maintenance/clean, +/obj/random/maintenance, +/obj/random/snack, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/starboardcent) +"UN" = ( +/obj/structure/table/steel, +/obj/item/device/electronic_assembly/large/default, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/workshop) +"UO" = ( +/obj/effect/floor_decal/milspec/color/red/half{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/security_cell_hallway) +"UP" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/random/maintenance/security, +/obj/random/maintenance/security, +/obj/random/maintenance/security, +/obj/random/maintenance/security, +/obj/structure/table/rack, +/obj/random/contraband, +/obj/random/action_figure, +/turf/simulated/floor, +/area/maintenance/security_port) +"UQ" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/exploration) +"UR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/exploequipment) +"US" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/clothing/glasses/hud/security, +/obj/item/clothing/glasses/hud/security, +/obj/item/clothing/glasses/hud/security, +/turf/simulated/floor/tiled/dark, +/area/security/security_equiptment_storage) +"UT" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/exploration) +"UU" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/simulated/floor/reinforced, +/area/stellardelight/deck1/shuttlebay) +"UV" = ( +/obj/machinery/button/remote/blast_door{ + dir = 1; + id = "xenobiopen1"; + name = "Pen 1 Containment"; + pixel_x = -30; + pixel_y = 8; + req_access = list(55) + }, +/obj/machinery/button/remote/blast_door{ + id = "xenobiopen3"; + name = "Pen 3 Containment"; + pixel_x = -31; + pixel_y = -8; + req_access = list(55) + }, +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "xenobiodiv1"; + name = "Divider 1 Blast Doors"; + pixel_x = -39; + req_access = list(55) + }, +/obj/machinery/light/floortube{ + dir = 8; + pixel_x = -6 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology) +"UW" = ( +/obj/effect/floor_decal/industrial/outline, +/obj/structure/closet/secure_closet/guncabinet/excursion, +/obj/item/weapon/pickaxe/drill, +/turf/simulated/floor/tiled/eris/steel/gray_platform, +/area/stellardelight/deck1/exploshuttle) +"UX" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/angled_bay/hatch{ + door_color = "#e6ab22"; + name = "Research Substation"; + req_one_access = list(10); + stripe_color = "#e6ab22" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/maintenance/stellardelight/substation/research) +"UY" = ( +/obj/machinery/suit_cycler/engineering{ + req_access = null + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/white/gray_platform, +/area/gateway) +"UZ" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/substation/research) +"Va" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/medical/morgue) +"Vb" = ( +/turf/simulated/wall/bay/steel, +/area/maintenance/stellardelight/substation/medical) +"Vc" = ( +/obj/structure/cable/pink{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/security/lobby) +"Vd" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24; + pixel_y = 32 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/turf/simulated/floor/tiled/eris/steel/panels, +/area/stellardelight/deck1/pilot) +"Ve" = ( +/turf/simulated/wall/bay/r_wall/steel, +/area/prison/cell_block) +"Vf" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/disposal/wall{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck1/starboard) +"Vg" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "4-8" + }, +/turf/simulated/wall/bay/r_wall/steel, +/area/rnd/xenobiology) +"Vh" = ( +/turf/simulated/wall/bay/r_wall/steel, +/area/stellardelight/deck1/pilot) +"Vi" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/structure/low_wall/bay/reinforced/steel, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/exploration) +"Vj" = ( +/turf/simulated/wall/bay/purple, +/area/stellardelight/deck1/exploequipment) +"Vk" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/machinery/door/blast/angled/open{ + dir = 2; + id = "researchwindowlockdown" + }, +/obj/structure/low_wall/bay/reinforced/steel, +/turf/simulated/floor, +/area/rnd/xenobiology/xenoflora_storage) +"Vl" = ( +/obj/machinery/door/window/brigdoor/eastleft{ + name = "Slime Pen 6"; + req_access = list(55) + }, +/obj/machinery/door/window/brigdoor/westright{ + name = "Slime Pen 6"; + req_access = list(55) + }, +/obj/machinery/door/blast/angled/open{ + dir = 4; + id = "xenobiopen6"; + name = "Pen 6 Blast Doors" + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"Vm" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/effect/shuttle_landmark/shuttle_initializer/mining, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/stellardelight/deck1/miningshuttle) +"Vn" = ( +/obj/machinery/door/blast/angled, +/turf/simulated/floor, +/area/stellardelight/deck1/shuttlebay) +"Vo" = ( +/obj/machinery/power/apc/angled{ + dir = 1 + }, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/effect/landmark/start/explorer, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/exploequipment) +"Vp" = ( +/obj/structure/bookcase{ + name = "bookcase (Reference)" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/sign/painting/library_secure{ + pixel_x = 30 + }, +/obj/item/weapon/book/bundle/custom_library/reference/ThermodynamicReactionsandResearch, +/obj/item/weapon/book/bundle/custom_library/reference/fbpandprostheticmaintenance, +/obj/item/weapon/book/bundle/custom_library/reference/recyclingprocedures, +/obj/item/weapon/book/custom_library/reference/fistfulofd6splayersguide, +/obj/item/weapon/book/custom_library/reference/securityguidelines, +/obj/item/weapon/book/custom_library/reference/spacesurvivalguidedespressurization, +/obj/item/weapon/book/manual/anomaly_spectroscopy, +/obj/item/weapon/book/manual/anomaly_testing, +/obj/item/weapon/book/manual/atmospipes, +/obj/item/weapon/book/manual/bar_guide, +/obj/item/weapon/book/manual/barman_recipes, +/obj/item/weapon/book/manual/casino, +/obj/item/weapon/book/manual/chef_recipes, +/obj/item/weapon/book/manual/command_guide, +/obj/item/weapon/book/manual/cook_guide, +/obj/item/weapon/book/manual/detective, +/obj/item/weapon/book/manual/engineering_construction, +/obj/item/weapon/book/manual/engineering_guide, +/obj/item/weapon/book/manual/engineering_hacking, +/obj/item/weapon/book/manual/engineering_particle_accelerator, +/obj/item/weapon/book/manual/engineering_singularity_safety, +/obj/item/weapon/book/manual/evaguide, +/obj/item/weapon/book/manual/excavation, +/obj/item/weapon/book/manual/hydroponics_pod_people, +/obj/item/weapon/book/manual/mass_spectrometry, +/obj/item/weapon/book/manual/materials_chemistry_analysis, +/obj/item/weapon/book/manual/medical_cloning, +/obj/item/weapon/book/manual/medical_diagnostics_manual, +/obj/item/weapon/book/manual/research_and_development, +/obj/item/weapon/book/manual/resleeving, +/obj/item/weapon/book/manual/ripley_build_and_repair, +/obj/item/weapon/book/manual/robotics_cyborgs, +/obj/item/weapon/book/manual/rust_engine, +/obj/item/weapon/book/manual/security_space_law, +/obj/item/weapon/book/manual/standard_operating_procedure, +/obj/item/weapon/book/manual/stasis, +/obj/item/weapon/book/manual/supermatter_engine, +/obj/item/weapon/book/manual/tesla_engine, +/obj/item/weapon/book/manual/virology, +/obj/effect/landmark/vermin, +/turf/simulated/floor/wood, +/area/library) +"Vq" = ( +/obj/machinery/computer/centrifuge, +/obj/machinery/embedded_controller/radio/airlock/access_controller{ + dir = 4; + id_tag = "virology_airlock_control"; + name = "Virology Access Console"; + pixel_x = -28; + pixel_y = -16; + tag_exterior_door = "virology_airlock_exterior"; + tag_interior_door = "virology_airlock_interior" + }, +/obj/machinery/camera/network/medbay{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/virology) +"Vr" = ( +/obj/machinery/camera/network/security{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/security/lobby) +"Vs" = ( +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/stellardelight/deck1/resleeving) +"Vt" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/techfloor, +/area/medical/morgue) +"Vu" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/structure/low_wall/bay/reinforced/steel, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/portfore) +"Vv" = ( +/obj/machinery/button/remote/airlock{ + id = "dorm7"; + name = "Room 7 Lock"; + pixel_y = 24; + specialfunctions = 4 + }, +/obj/machinery/power/apc/angled{ + dir = 8; + name = "night shift APC"; + nightshift_setting = 2 + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/stellardelight/deck1/dorms/dorm7) +"Vw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck1/port) +"Vx" = ( +/obj/structure/cable/pink{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/milspec/color/black, +/turf/simulated/floor/tiled/dark, +/area/security/security_cell_hallway) +"Vy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/stellardelight/deck1/dorms/dorm3) +"Vz" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 6 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/starboard) +"VA" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/angled_bay/standard/color{ + dir = 8; + door_color = "#ffffff"; + name = "EMT Bay"; + req_access = list(5); + stripe_color = "#5a96bb" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck1/paramedic) +"VB" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/substation/security) +"VC" = ( +/obj/machinery/power/apc/angled{ + dir = 1 + }, +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/stellardelight/deck1/resleeving) +"VD" = ( +/obj/structure/railing/grey{ + dir = 8 + }, +/obj/structure/sign/directions/bar{ + pixel_x = -32; + pixel_y = 6 + }, +/obj/structure/sign/directions/command{ + pixel_x = -32 + }, +/obj/structure/sign/directions/medical{ + pixel_x = -32; + pixel_y = -6 + }, +/obj/structure/sign/directions/evac{ + pixel_x = -32; + pixel_y = -12 + }, +/obj/structure/sign/directions/stairs_up{ + pixel_x = -32; + pixel_y = 12 + }, +/turf/simulated/floor, +/area/stellardelight/deck1/fore) +"VE" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/table/standard, +/obj/machinery/recharger{ + pixel_y = 5 + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/mining) +"VF" = ( +/obj/structure/closet/secure_closet/security, +/obj/item/device/holowarrant, +/obj/item/clothing/accessory/badge/holo/cord, +/obj/item/clothing/accessory/badge/holo/cord, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/milspec/color/red, +/turf/simulated/floor/tiled/dark, +/area/security/security_lockerroom) +"VG" = ( +/obj/effect/floor_decal/milspec/color/red/half{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/security/security_lockerroom) +"VH" = ( +/obj/structure/table/woodentable, +/obj/machinery/alarm/angled{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/stellardelight/deck1/dorms/dorm5) +"VI" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/clothing/suit/armor/vest/wolftaur{ + pixel_x = 4; + pixel_y = 7 + }, +/obj/item/clothing/suit/armor/vest/wolftaur{ + pixel_x = -8; + pixel_y = -4 + }, +/obj/item/weapon/storage/lockbox, +/turf/simulated/floor/tiled/dark, +/area/security/security_equiptment_storage) +"VJ" = ( +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/dark, +/area/security/armoury) +"VK" = ( +/obj/structure/table/steel, +/obj/random/maintenance/security, +/obj/random/maintenance/security, +/obj/random/maintenance, +/obj/random/medical, +/obj/random/drinkbottle, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/starboardfore) +"VL" = ( +/obj/effect/floor_decal/chapel{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"VM" = ( +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/turf/simulated/wall/bay/r_wall/black, +/area/chapel/chapel_morgue) +"VN" = ( +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/effect/floor_decal/milspec/color/black, +/turf/simulated/floor/tiled/dark, +/area/security/armoury) +"VO" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/machinery/door/blast/angled/open{ + dir = 4; + id = "researchwindowlockdown" + }, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "4-8" + }, +/obj/structure/low_wall/bay/reinforced/steel, +/turf/simulated/floor, +/area/rnd/xenobiology/xenoflora_storage) +"VP" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/wall/bay/r_wall/steel, +/area/crew_quarters/toilet) +"VQ" = ( +/obj/structure/shuttle/engine/propulsion, +/turf/simulated/floor/reinforced, +/area/stellardelight/deck1/miningshuttle) +"VR" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 8 + }, +/obj/effect/landmark/start/visitor, +/turf/simulated/floor/carpet/bcarpet, +/area/stellardelight/deck1/starboard) +"VS" = ( +/obj/machinery/gateway{ + dir = 1 + }, +/obj/machinery/camera/network/command, +/turf/simulated/floor/tiled/eris/white/gray_platform, +/area/gateway) +"VT" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "miningops" + }, +/obj/structure/plasticflaps/mining, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/oreprocessing) +"VV" = ( +/turf/simulated/wall/bay/red, +/area/chapel/office) +"VW" = ( +/obj/machinery/vending/wardrobe/detdrobe, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/milspec/color/red, +/turf/simulated/floor/tiled/dark, +/area/security/security_lockerroom) +"VX" = ( +/obj/machinery/alarm/angled{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/stellardelight/deck1/miningshuttle) +"VY" = ( +/obj/structure/table/reinforced, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/stellardelight/deck1/miningshuttle) +"VZ" = ( +/obj/structure/table/woodentable, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/machinery/power/apc/angled{ + dir = 1; + name = "night shift APC"; + nightshift_setting = 2 + }, +/obj/machinery/recharger{ + pixel_y = 5 + }, +/turf/simulated/floor/wood, +/area/library) +"Wa" = ( +/obj/machinery/button/remote/airlock{ + id = "dorm2"; + name = "Room 2 Lock"; + pixel_y = 24; + specialfunctions = 4 + }, +/obj/machinery/power/apc/angled{ + dir = 4; + name = "night shift APC"; + nightshift_setting = 2 + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/stellardelight/deck1/dorms/dorm2) +"Wb" = ( +/obj/effect/floor_decal/industrial/warning/full, +/obj/structure/cable/green{ + color = "#42038a" + }, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "0-4" + }, +/obj/machinery/power/pointdefense{ + id_tag = "sd_pd" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck1/exterior) +"Wc" = ( +/obj/machinery/smartfridge/produce, +/turf/simulated/wall/bay/r_wall/purple, +/area/rnd/xenobiology/xenoflora_storage) +"Wd" = ( +/obj/machinery/power/apc/angled{ + dir = 1 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/ore_box, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/shuttlebay) +"We" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-4" + }, +/obj/effect/landmark/start/xenobot, +/turf/simulated/floor/tiled/eris, +/area/rnd/xenobiology/xenoflora) +"Wf" = ( +/obj/structure/table/woodentable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/random/coin/sometimes, +/obj/item/weapon/material/ashtray/glass, +/turf/simulated/floor/carpet/bcarpet, +/area/stellardelight/deck1/port) +"Wg" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/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, +/area/maintenance/stellardelight/deck1/portcent) +"Wh" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/table/rack, +/obj/random/maintenance/security, +/obj/random/maintenance/security, +/obj/random/maintenance/research, +/obj/random/contraband, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/portcent) +"Wi" = ( +/obj/machinery/camera/network/research/xenobio{ + dir = 9; + network = list("Xenobiology") + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"Wj" = ( +/obj/effect/floor_decal/milspec/color/emerald/half{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/starboard) +"Wk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/carpet, +/area/stellardelight/deck1/dorms/dorm4) +"Wl" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/stellardelight/deck1/dorms/dorm8) +"Wm" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/simulated/floor/tiled/eris, +/area/rnd/xenobiology/xenoflora) +"Wn" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/angled_bay/standard/color{ + door_color = "#9c9c9c"; + fill_color = "#5c5c5c"; + id_tag = "dorm7"; + name = "Room 7"; + stripe_color = "#89bd66" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck1/dorms/dorm7) +"Wo" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/effect/landmark/start/scientist, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/research) +"Wp" = ( +/obj/structure/bed/chair/sofa/pew/left{ + dir = 1 + }, +/obj/structure/sign/painting/chapel_secure{ + pixel_y = -32 + }, +/obj/effect/landmark/start/visitor, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"Wq" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/starboard) +"Wr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/chapel/chapel_morgue) +"Ws" = ( +/obj/machinery/camera/network/halls{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/starboard) +"Wt" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/oreprocessing) +"Wu" = ( +/turf/simulated/wall/bay/r_wall/steel, +/area/maintenance/stellardelight/deck1/starboardaft) +"Wv" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/storage) +"Ww" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "4-8" + }, +/turf/simulated/wall/bay/r_wall/steel, +/area/maintenance/stellardelight/deck1/starboardaft) +"Wx" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "2-8" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/exploration) +"Wy" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck1/starboard) +"Wz" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/camera/network/halls{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/port) +"WA" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "miningops"; + name = "Mining Ops conveyor switch"; + pixel_x = 10; + pixel_y = 5; + req_access = list(48); + req_one_access = list(48) + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/oreprocessing) +"WB" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/stellardelight/deck1/fore) +"WC" = ( +/obj/structure/table/rack, +/obj/random/maintenance/research, +/obj/random/maintenance/security, +/obj/random/maintenance/security, +/obj/random/maintenance/clean, +/obj/random/maintenance, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/starboardcent) +"WD" = ( +/obj/structure/cable/pink{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/security/security_lockerroom) +"WE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/carpet, +/area/stellardelight/deck1/dorms/dorm5) +"WF" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/port) +"WG" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/structure/low_wall/bay/reinforced/red, +/turf/simulated/floor, +/area/prison/cell_block/B) +"WH" = ( +/obj/structure/bed/chair/backed_red{ + dir = 4 + }, +/obj/effect/landmark/start/explorer, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/exploration) +"WJ" = ( +/obj/structure/table/woodentable, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/sign/painting/library_secure{ + pixel_y = 30 + }, +/obj/machinery/photocopier/faxmachine{ + department = "Library Conference Room" + }, +/turf/simulated/floor/wood, +/area/library) +"WK" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/port) +"WL" = ( +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/turf/simulated/wall/bay/r_wall/steel, +/area/chapel/chapel_morgue) +"WM" = ( +/turf/simulated/wall/bay/r_wall/purple, +/area/stellardelight/deck1/explobriefing) +"WP" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "miningops" + }, +/obj/machinery/mineral/output, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/oreprocessing) +"WQ" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 24 + }, +/obj/machinery/mining/brace, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/shuttlebay) +"WR" = ( +/turf/simulated/wall/bay/purple, +/area/rnd/research) +"WS" = ( +/obj/machinery/alarm/angled{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/aft) +"WT" = ( +/obj/structure/table/reinforced, +/obj/machinery/cell_charger, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/item/weapon/tank/jetpack/carbondioxide, +/obj/item/weapon/tank/jetpack/carbondioxide, +/obj/item/weapon/tank/jetpack/carbondioxide, +/obj/item/weapon/tank/jetpack/carbondioxide, +/obj/effect/landmark/vermin, +/turf/simulated/floor/tiled/eris/white/gray_platform, +/area/gateway) +"WU" = ( +/obj/effect/floor_decal/milspec/color/emerald/half{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/starboard) +"WW" = ( +/obj/structure/table/woodentable, +/obj/machinery/light/small, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/stellardelight/deck1/dorms/dorm6) +"WX" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/turf/simulated/floor/bluegrid{ + name = "Server Base"; + nitrogen = 500; + oxygen = 0; + temperature = 80 + }, +/area/stellardelight/deck1/researchserver) +"WY" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/eris/white/gray_platform, +/area/gateway) +"WZ" = ( +/obj/machinery/vending/tool, +/turf/simulated/floor/tiled/eris, +/area/stellardelight/deck1/researchhall) +"Xa" = ( +/obj/machinery/computer/ship/navigation/telescreen{ + pixel_x = -32; + pixel_y = -5 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/mining) +"Xb" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/camera/network/command{ + dir = 9 + }, +/turf/simulated/floor/tiled/eris/white/gray_platform, +/area/gateway) +"Xc" = ( +/turf/simulated/wall/bay/r_wall/steel, +/area/crew_quarters/toilet) +"Xd" = ( +/obj/machinery/alarm/angled, +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/turf/simulated/floor/tiled/white, +/area/security/detectives_office) +"Xe" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/alarm/angled, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/aft) +"Xf" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"Xg" = ( +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/obj/structure/sign/vacuum{ + pixel_x = -32 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/exploration) +"Xh" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/window/brigdoor/eastleft{ + name = "Warden's Desk"; + req_access = list(3) + }, +/obj/machinery/door/blast/angled/open{ + dir = 4; + id = "wardenoffice"; + name = "Privacy Shutters" + }, +/turf/simulated/floor/tiled/dark, +/area/security/warden) +"Xi" = ( +/obj/machinery/light/small, +/turf/simulated/floor/tiled/eris/white/cargo, +/area/medical/virology) +"Xj" = ( +/obj/structure/disposalpipe/trunk{ + dir = 2 + }, +/obj/machinery/disposal/wall{ + dir = 4; + pixel_x = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/library) +"Xk" = ( +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/security/lobby) +"Xl" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "2-8" + }, +/turf/simulated/floor/reinforced, +/area/stellardelight/deck1/shuttlebay) +"Xm" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/pink{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/angled_bay/hatch{ + door_color = "#e6ab22"; + name = "Security Substation"; + req_one_access = list(10); + stripe_color = "#e6ab22" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/maintenance/stellardelight/substation/security) +"Xn" = ( +/obj/structure/table/steel_reinforced, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "0-4" + }, +/obj/machinery/power/apc/angled{ + dir = 8; + name = "night shift APC"; + nightshift_setting = 2 + }, +/obj/machinery/camera/network/research, +/turf/simulated/floor/tiled/eris, +/area/stellardelight/deck1/researchequip) +"Xo" = ( +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/alarm/angled{ + dir = 4 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/substation/medical) +"Xp" = ( +/obj/structure/table/steel, +/obj/item/device/integrated_electronics/debugger{ + pixel_x = -5 + }, +/obj/item/device/integrated_electronics/wirer{ + pixel_x = 5 + }, +/obj/machinery/power/apc/angled{ + dir = 1 + }, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/workshop) +"Xq" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/exploration) +"Xr" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/button/remote/blast_door{ + id = "mechbay"; + name = "Mech Bay"; + pixel_y = 25; + req_access = list(29,47) + }, +/obj/machinery/door/blast/angled{ + dir = 4; + id = "mechbay"; + name = "Mech Bay" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/assembly/robotics) +"Xs" = ( +/obj/structure/cable{ + 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, +/area/maintenance/stellardelight/deck1/portcent) +"Xt" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/eris, +/area/rnd/xenobiology/xenoflora) +"Xu" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/aft) +"Xv" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/reagent_dispensers/foam, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/starboardcent) +"Xw" = ( +/obj/machinery/power/pointdefense{ + id_tag = "sd_pd" + }, +/obj/effect/floor_decal/industrial/warning/full, +/obj/structure/cable/pink, +/obj/structure/cable/pink{ + icon_state = "0-2" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck1/exterior) +"Xx" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 10 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/port) +"Xz" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/portaft) +"XA" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-8" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck1/exterior) +"XB" = ( +/turf/simulated/wall/bay/r_wall/red, +/area/security/security_equiptment_storage) +"XC" = ( +/obj/effect/floor_decal/milspec/color/red/half{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 9 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/fore) +"XD" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/door/airlock/angled_bay/hatch{ + dir = 4; + door_color = "#ffffff"; + name = "maintenance access"; + req_one_access = list(19,43,66); + stripe_color = "#5a19a8" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck1/explobriefing) +"XE" = ( +/obj/structure/table/reinforced, +/obj/item/roller, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/white/gray_platform, +/area/gateway) +"XF" = ( +/obj/effect/floor_decal/milspec/color/emerald/corner, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/aft) +"XG" = ( +/obj/structure/flora/pottedplant/dead, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/firealarm/angled{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck1/researchserver) +"XH" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 1 + }, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/exploration) +"XJ" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/milspec/color/emerald/half{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/aft) +"XL" = ( +/obj/machinery/alarm/angled{ + dir = 4 + }, +/obj/structure/closet/secure_closet/brig{ + id = "Cell A" + }, +/obj/effect/floor_decal/milspec/color/orange/half{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/prison/cell_block) +"XM" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "4-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, +/area/maintenance/stellardelight/deck1/exploration) +"XN" = ( +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 24 + }, +/obj/effect/landmark/start/scientist, +/turf/simulated/floor/tiled/eris, +/area/stellardelight/deck1/researchequip) +"XO" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/angled_bay/standard/glass{ + door_color = "#ffffff"; + name = "Mech Bay"; + req_access = list(29,47); + stripe_color = "#5a19a8" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/assembly/robotics) +"XP" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/toilet) +"XQ" = ( +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/disposaloutlet, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"XR" = ( +/turf/simulated/wall/bay/steel, +/area/maintenance/stellardelight/substation/research) +"XS" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/storage) +"XT" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/turf/simulated/floor/tiled/eris, +/area/rnd/xenobiology/xenoflora) +"XU" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/random/vendordrink, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/port) +"XV" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/structure/low_wall/bay/reinforced/purple, +/turf/simulated/floor, +/area/stellardelight/deck1/exploration) +"XW" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/camera/network/mining, +/obj/machinery/mining/drill, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/shuttlebay) +"XX" = ( +/obj/structure/table/woodentable, +/obj/item/device/flashlight/lamp/green{ + pixel_x = 1; + pixel_y = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood, +/area/library) +"XY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/aft) +"XZ" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/security/warden) +"Ya" = ( +/obj/structure/cable/pink{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/security/detectives_office) +"Yb" = ( +/obj/machinery/light, +/turf/simulated/floor/bluegrid, +/area/assembly/robotics) +"Yc" = ( +/obj/machinery/door/window/brigdoor/eastleft{ + name = "Slime Pen 5"; + req_access = list(55) + }, +/obj/machinery/door/window/brigdoor/westright{ + name = "Slime Pen 5"; + req_access = list(55) + }, +/obj/machinery/door/blast/angled/open{ + dir = 4; + id = "xenobiopen5"; + name = "Pen 5 Blast Doors" + }, +/turf/simulated/floor/reinforced, +/area/rnd/xenobiology) +"Yd" = ( +/obj/structure/cable/pink{ + icon_state = "1-8" + }, +/turf/simulated/wall/bay/r_wall/steel, +/area/maintenance/stellardelight/substation/security) +"Ye" = ( +/obj/structure/closet/secure_closet/hydroponics/sci{ + req_access = list(77) + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-2" + }, +/obj/machinery/alarm/angled{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris, +/area/stellardelight/deck1/researchhall) +"Yf" = ( +/obj/structure/window/reinforced{ + dir = 8; + pixel_x = -4 + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/stellardelight/deck1/lowermed) +"Yh" = ( +/obj/machinery/camera/network/mining{ + dir = 8 + }, +/obj/structure/ore_box, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/mining) +"Yi" = ( +/obj/structure/table/woodentable, +/obj/machinery/microwave, +/obj/machinery/firealarm/angled{ + dir = 4 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/stellardelight/deck1/dorms/dorm7) +"Yj" = ( +/obj/machinery/processor, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/xenobiology) +"Yk" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/exploration) +"Yl" = ( +/obj/machinery/photocopier, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/pathfinder) +"Ym" = ( +/obj/structure/cable/pink{ + 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/milspec/color/red/half, +/turf/simulated/floor/tiled/dark, +/area/security/security_cell_hallway) +"Yn" = ( +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/random/maintenance/clean, +/obj/random/maintenance/research, +/obj/random/medical, +/obj/random/snack, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/exploration) +"Yo" = ( +/obj/structure/morgue{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/medical/morgue) +"Yp" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/milspec/color/orange/half{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/prison/cell_block) +"Yq" = ( +/obj/structure/bed/chair/bay/shuttle{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/stellardelight/deck1/miningshuttle) +"Yr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/stellardelight/deck1/dorms/dorm7) +"Ys" = ( +/obj/machinery/button/remote/airlock{ + dir = 1; + id = "dorm5"; + name = "Room 5 Lock"; + pixel_y = -22; + specialfunctions = 4 + }, +/obj/machinery/power/apc/angled{ + dir = 8; + name = "night shift APC"; + nightshift_setting = 2 + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/turf/simulated/floor/carpet, +/area/stellardelight/deck1/dorms/dorm5) +"Yt" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/starboard) +"Yu" = ( +/obj/machinery/alarm/angled{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris, +/area/rnd/storage) +"Yv" = ( +/turf/simulated/wall/bay/black, +/area/chapel/office) +"Yw" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-2" + }, +/obj/effect/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/tiled/eris, +/area/rnd/xenobiology/xenoflora) +"Yx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/security/tactical) +"Yy" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/recharger{ + pixel_y = 5 + }, +/obj/structure/sign/vacuum{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/dark, +/area/security/tactical) +"Yz" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/eris, +/area/rnd/xenobiology/xenoflora_storage) +"YA" = ( +/obj/structure/bookcase{ + desc = "There appears to be a shrine to WGW at the back..."; + name = "Forbidden Knowledge" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/sign/painting/library_private{ + pixel_y = 32 + }, +/obj/structure/sign/painting/library_private{ + pixel_x = -32 + }, +/obj/item/weapon/book/manual/engineering_hacking, +/obj/item/weapon/book/manual/nuclear, +/obj/item/weapon/book/custom_library/fiction/woodysgotwood, +/turf/simulated/floor/wood, +/area/library) +"YB" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/exploration) +"YC" = ( +/obj/machinery/atmospherics/pipe/manifold/visible, +/obj/machinery/meter, +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/tiled/eris, +/area/rnd/xenobiology/xenoflora_storage) +"YD" = ( +/obj/structure/bed/chair/backed_red{ + dir = 4 + }, +/obj/machinery/computer/ship/navigation/telescreen{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/exploration) +"YE" = ( +/turf/simulated/floor, +/area/maintenance/stellardelight/substation/cargo) +"YF" = ( +/turf/simulated/wall/bay/r_wall/brown, +/area/stellardelight/deck1/dorms/dorm7) +"YG" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/door/airlock/angled_bay/standard/glass{ + dir = 4; + door_color = "#a6753d"; + name = "Refinery"; + req_access = list(48); + stripe_color = "#3b2b1a" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck1/oreprocessing) +"YH" = ( +/obj/structure/bed/chair/wood{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/lino, +/area/chapel/office) +"YI" = ( +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/aft) +"YJ" = ( +/obj/machinery/computer/ship/navigation/telescreen{ + pixel_y = 32 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/light_switch{ + pixel_y = 24 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/shuttlebay) +"YK" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/standard/color{ + dir = 4; + door_color = "#8c1d11"; + fill_color = "#854a44"; + name = "Armory"; + req_access = list(3); + stripe_color = "#d27428" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/security/armoury) +"YL" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/table/reinforced, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/sign/department/robo{ + pixel_y = 32 + }, +/obj/machinery/door/blast/angled_shutter/open{ + dir = 4; + id = "dontlooktmyrobotpenis"; + name = "Privacy Shutters" + }, +/obj/machinery/door/window/brigdoor/westleft{ + dir = 4; + name = "Robotics Desk"; + req_access = list(7); + req_one_access = list(47) + }, +/turf/simulated/floor/tiled/monotile, +/area/assembly/robotics) +"YM" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/structure/low_wall/bay/reinforced/purple, +/turf/simulated/floor, +/area/gateway) +"YN" = ( +/obj/machinery/power/apc/angled{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/aft) +"YO" = ( +/obj/structure/cable/pink{ + icon_state = "1-2" + }, +/obj/machinery/camera/network/security{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/security/security_cell_hallway) +"YP" = ( +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/turf/simulated/wall/bay/r_wall/steel, +/area/maintenance/stellardelight/deck1/exploration) +"YQ" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/camera/network/mining{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/mining) +"YR" = ( +/obj/structure/table/glass, +/obj/item/weapon/paper_bin{ + pixel_y = 4 + }, +/obj/item/weapon/pen{ + pixel_y = 4 + }, +/obj/machinery/firealarm/angled{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/patient_wing) +"YS" = ( +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/port) +"YT" = ( +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/port) +"YU" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/pen, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/pathfinder) +"YV" = ( +/obj/structure/cable/pink{ + icon_state = "1-2" + }, +/turf/simulated/wall/bay/r_wall/steel, +/area/security/tactical) +"YW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/xenobiology) +"YX" = ( +/obj/structure/closet/secure_closet/security, +/obj/item/device/holowarrant, +/obj/item/clothing/accessory/badge/holo/cord, +/obj/item/clothing/accessory/badge/holo/cord, +/obj/machinery/firealarm/angled{ + dir = 4 + }, +/obj/effect/floor_decal/milspec/color/red, +/turf/simulated/floor/tiled/dark, +/area/security/security_lockerroom) +"YY" = ( +/obj/effect/floor_decal/chapel{ + dir = 4 + }, +/obj/structure/bed/chair/sofa/pew/right{ + dir = 1 + }, +/obj/effect/landmark/start/visitor, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"YZ" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/item/weapon/storage/box/swabs{ + layer = 5 + }, +/obj/item/weapon/hand_labeler, +/obj/item/weapon/folder/red, +/obj/item/weapon/folder/blue{ + pixel_y = -3 + }, +/obj/item/weapon/folder/yellow{ + pixel_y = -5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/security/detectives_office) +"Za" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_grid, +/area/assembly/robotics) +"Zb" = ( +/obj/structure/closet/secure_closet/security, +/obj/item/device/holowarrant, +/obj/item/clothing/accessory/badge/holo/cord, +/obj/item/clothing/accessory/badge/holo/cord, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/milspec/color/red, +/turf/simulated/floor/tiled/dark, +/area/security/security_lockerroom) +"Zc" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/bluegrid, +/area/assembly/robotics) +"Zd" = ( +/obj/effect/landmark{ + name = "carpspawn" + }, +/turf/space, +/area/space) +"Ze" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/structure/low_wall/bay/reinforced/black, +/turf/simulated/floor, +/area/chapel/chapel_morgue) +"Zf" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/shuttlebay) +"Zg" = ( +/obj/structure/closet/secure_closet/miner, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/miningequipment) +"Zh" = ( +/obj/structure/table/woodentable, +/obj/machinery/recharger{ + pixel_y = 5 + }, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/explobriefing) +"Zi" = ( +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/exam_room) +"Zj" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/window/brigdoor/southleft{ + id = "Cell C"; + name = "Cell C"; + req_access = list(2) + }, +/obj/structure/cable/pink{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_ridged, +/area/prison/cell_block/C) +"Zk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/toilet) +"Zl" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck1/starboard) +"Zm" = ( +/obj/structure/closet/walllocker_double/west, +/obj/item/device/suit_cooling_unit, +/obj/item/device/suit_cooling_unit, +/obj/item/device/suit_cooling_unit, +/obj/item/device/suit_cooling_unit, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/miningequipment) +"Zn" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/machinery/door/blast/angled/open{ + dir = 2; + id = "wardenoffice"; + name = "Privacy Shutters" + }, +/obj/structure/low_wall/bay/reinforced/red, +/turf/simulated/floor, +/area/security/warden) +"Zo" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden, +/obj/machinery/camera/network/civilian{ + dir = 1 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/exploration) +"Zp" = ( +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "GatewayShutterE"; + name = "EVA Shutter"; + pixel_x = -23; + req_one_access = list(18,19,43,67) + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/starboard) +"Zq" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/exam_room) +"Zr" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "dontlooktmyrobotpenis"; + name = "Privacy Shutter Control"; + pixel_y = 2 + }, +/obj/item/device/robotanalyzer, +/turf/simulated/floor/tiled/steel, +/area/assembly/robotics) +"Zs" = ( +/obj/structure/table/woodentable, +/obj/structure/sign/painting/chapel_secure{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/lino, +/area/chapel/office) +"Zt" = ( +/turf/simulated/floor, +/area/stellardelight/deck1/fore) +"Zu" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/starboardcent) +"Zv" = ( +/turf/simulated/wall/bay/r_wall/red, +/area/security/detectives_office) +"Zw" = ( +/obj/effect/floor_decal/milspec/color/black, +/turf/simulated/floor/tiled/dark, +/area/security/security_cell_hallway) +"Zx" = ( +/obj/machinery/access_button{ + command = "cycle_interior"; + dir = 8; + frequency = 1379; + master_tag = "virology_airlock_control"; + name = "Virology Access Button"; + pixel_y = -33; + req_access = list(39) + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/standard/color{ + autoclose = 0; + dir = 4; + door_color = "#ffffff"; + frequency = 1379; + id_tag = "virology_airlock_interior"; + locked = 1; + name = "Virology Interior Airlock"; + req_access = list(39); + stripe_color = "#5a96bb" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/medical/virology) +"Zy" = ( +/obj/machinery/photocopier, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/chapel/office) +"Zz" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/alarm/angled{ + dir = 4 + }, +/obj/structure/table/steel, +/obj/random/maintenance/security, +/obj/random/maintenance/security, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/portfore) +"ZA" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/xenobiology) +"ZB" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/closet/emergsuit_wall{ + pixel_y = 29 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/aft) +"ZC" = ( +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 20 + }, +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 29 + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/mining) +"ZD" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/clothing/suit/armor/vest/alt{ + pixel_x = -4; + pixel_y = -6 + }, +/obj/item/clothing/suit/armor/vest/alt{ + pixel_x = 6; + pixel_y = -6 + }, +/obj/item/clothing/suit/armor/vest/alt{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/clothing/suit/armor/vest/alt{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/firealarm/angled{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/security/security_equiptment_storage) +"ZE" = ( +/obj/structure/stairs/spawner/south, +/obj/structure/railing/grey{ + dir = 4 + }, +/turf/simulated/floor, +/area/stellardelight/deck1/fore) +"ZF" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/dnaforensics, +/turf/simulated/floor/tiled/white, +/area/security/detectives_office) +"ZG" = ( +/turf/simulated/wall/bay/r_wall/red, +/area/security/security_lockerroom) +"ZI" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/security/lobby) +"ZJ" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/firealarm/angled{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/stellardelight/deck1/mining) +"ZK" = ( +/obj/structure/cable/pink{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/portfore) +"ZM" = ( +/obj/machinery/seed_extractor, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/eris, +/area/rnd/xenobiology/xenoflora) +"ZN" = ( +/obj/structure/table/rack/shelf, +/obj/item/weapon/tank/oxygen, +/obj/item/device/suit_cooling_unit, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/mask/breath, +/obj/item/clothing/suit/space/void/exploration, +/obj/item/clothing/head/helmet/space/void/exploration, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/exploequipment) +"ZO" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/station_map{ + dir = 4; + pixel_x = -32 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/aft) +"ZP" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/door/firedoor/glass, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/blast/angled/open{ + dir = 4; + id = "wardenoffice"; + name = "Privacy Shutters" + }, +/turf/simulated/floor/tiled/dark, +/area/security/warden) +"ZQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/landmark/start/fieldmedic, +/turf/simulated/floor/tiled/milspec, +/area/stellardelight/deck1/exploequipment) +"ZR" = ( +/obj/machinery/camera/network/security{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/security/lobby) +"ZS" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/cable/orange{ + icon_state = "0-4" + }, +/obj/structure/cable/orange{ + icon_state = "16-0" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/exploration) +"ZT" = ( +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/blast/angled/open{ + dir = 4; + id = "xenobiopen2"; + name = "Pen 2 Blast Doors" + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/xenobiology) +"ZU" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 8 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/stellardelight/deck1/port) +"ZV" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/sign/department/chapel{ + pixel_x = -32; + plane = -34 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck1/fore) +"ZW" = ( +/obj/structure/cable/green{ + color = "#42038a"; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/rnd/research) +"ZX" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/double{ + name = "maintenance access"; + stripe_color = "#454545" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck1/portaft) +"ZY" = ( +/obj/effect/floor_decal/borderfloorblack/full, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/deployable/barrier, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/security/armoury) +"ZZ" = ( +/turf/simulated/wall/bay/purple, +/area/rnd/xenobiology) + +(1,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(2,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(3,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(4,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(5,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(6,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(7,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(8,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(9,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(10,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(11,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(12,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(13,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(14,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(15,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(16,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(17,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(18,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(19,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(20,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(21,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(22,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +Zd +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(23,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +Ga +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(24,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(25,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(26,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +Zd +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(27,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +Zd +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(28,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +Zd +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(29,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(30,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +Zd +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(31,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(32,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(33,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +Zd +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(34,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(35,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(36,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(37,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(38,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +Zd +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(39,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +RF +ea +JE +JE +JE +JE +FP +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(40,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +SN +JE +JE +JE +JE +JE +sa +RF +hw +uq +uq +uq +uq +uq +uq +pz +JE +JE +GL +RF +RF +RF +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(41,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +bD +bD +ea +EG +RF +RF +uq +uq +uq +vX +JE +GL +RF +bD +bD +bD +bD +RF +RF +RF +RF +vF +RF +RF +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(42,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +ib +kJ +kJ +kJ +kJ +kJ +kJ +Sd +RF +RF +RF +RF +uo +ga +bD +bD +ra +sW +Kk +ra +Vi +Gj +ra +ra +ra +ra +Vi +ra +ra +ra +uF +Vi +Vi +ra +ra +ra +ra +ra +ra +bD +vF +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(43,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +RF +RF +RF +RF +RF +DD +kJ +kJ +kJ +kJ +Ks +kJ +Sd +ra +ra +xM +qd +ra +Oz +Wx +iU +iU +iU +iU +iU +iU +KZ +vT +tE +Jo +BP +Cc +gw +xw +vT +Gy +ra +bD +vF +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(44,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +RF +RF +RF +RF +RF +RF +RF +uq +uq +YP +ra +ra +Qb +Zo +ra +Yn +vT +um +um +um +um +um +um +In +wm +Ag +Ly +wm +wm +rB +wm +Np +Oz +ra +RF +vF +uq +RF +RF +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(45,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +RF +RF +RF +bD +bD +ra +YP +ZS +ra +pI +tx +ra +xl +rf +um +lI +Ql +KD +KP +um +if +WM +WM +WM +WM +WM +WM +WM +XD +WM +nk +RF +vF +bD +RF +RF +RF +uq +uq +et +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(46,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +bD +bD +ra +ra +Km +fE +ra +zd +SW +ra +wU +PG +UL +EX +jm +ng +cC +um +if +WM +Cl +wq +mP +Lp +wk +sT +gS +Sn +nk +bD +hE +JE +JE +sa +RF +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(47,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +nn +ND +ag +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +gc +nn +aK +aK +aK +aK +mC +uq +uq +uq +uq +uq +uq +uq +uq +uq +sy +nc +nc +nc +nc +hD +RF +uq +uq +uq +uq +uq +bD +ra +UB +jp +rl +RY +RY +FF +Xg +Ln +vn +um +um +um +um +Jp +um +if +WM +EF +Rz +Uo +kg +aJ +kg +ji +kO +He +JE +en +uq +RF +vF +RF +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(48,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +gc +RF +bD +bD +uq +uq +uq +uq +bD +bD +nn +yE +uq +gH +RF +bD +bD +uq +uq +uq +uq +uq +uq +bD +bD +RF +ap +yE +uq +uq +uq +RF +gH +RF +bD +bD +uq +uq +uq +bD +bD +RF +yz +RF +uq +uq +uq +yz +RF +RF +bD +bD +uq +uq +uq +ra +yn +qq +aA +qq +sF +qq +qq +Yk +pP +qq +UQ +Tb +qq +PL +DQ +XM +WM +Up +Rz +CN +zZ +yP +zZ +rv +Rz +ny +bD +vF +uq +RF +vF +RF +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(49,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +nn +Ul +Lg +TW +tL +tL +nM +nM +nM +Ak +iN +SA +xy +xy +as +Vu +Vu +xy +Vu +Vu +xy +Vu +Vu +Vu +xy +xy +Td +td +xW +xW +xW +xW +xW +Yd +Td +Td +NP +EH +EH +NP +NP +NP +NP +ek +NP +NP +NP +NP +ek +NP +NP +NP +NP +EH +EH +ra +ra +IL +wF +wF +wF +wF +wF +wF +vT +NI +Ua +Rs +Ua +Ua +Ua +Ua +Ec +WM +HS +Rz +TC +oZ +Zh +rt +OB +Rz +ny +uq +vF +uq +RF +vF +RF +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(50,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +gH +WL +Lg +ES +Ze +Mk +fZ +Ey +sd +Ak +mU +OG +xy +Ox +NW +cB +cB +FV +dS +kx +Zz +Bb +cB +cB +cB +Dj +gY +aV +SC +rJ +jV +zH +Sl +SC +gY +gY +ZX +nm +nm +NP +FI +Ra +bV +Ml +NL +yN +ld +wQ +Rg +nm +tB +nm +nm +nm +nm +kA +vT +IL +wF +pb +Jl +TI +YE +wF +pf +nB +Ua +gV +BW +ex +Pu +Ua +Ec +WM +eJ +Rz +NA +em +An +em +sN +Rz +ny +bD +vF +uq +RF +by +RF +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(51,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +nn +yE +WL +Lg +Dg +Ze +KI +fk +Ge +cN +Ak +xP +js +Fo +ZK +is +ZK +ZK +kh +ZK +ZK +Ev +ZK +ZK +ZK +ZK +nZ +Gv +kY +Xm +rs +hb +sP +VB +lq +Wg +cF +rK +CB +CB +CB +CB +CB +RL +Ib +To +bQ +To +aO +Ib +To +Xz +To +To +To +To +kf +JP +nP +jO +JW +Gd +Om +BN +pO +Uw +tc +Ua +Jg +ne +fQ +nl +MV +gt +WM +ql +TP +CW +Fx +zm +qk +aC +Fy +nk +bD +vF +uq +RF +vF +RF +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(52,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +gH +Lg +WL +Fm +Wr +tK +Wr +Or +qF +AV +LI +aU +pT +AY +AY +pp +pp +pp +AY +pp +pp +AY +pp +pp +pp +AY +AY +Rf +bH +SC +SC +SC +SC +SC +SC +Wh +gY +PM +PM +PM +PM +PM +PM +Xc +VP +Ig +Xc +Xc +Xc +vm +Xc +qE +qE +qE +qE +qE +qE +qE +qE +Vh +Vh +Vh +Vh +Vh +wF +Xq +yS +pC +pC +pC +pC +pC +pC +pC +pC +Vj +vy +mW +RS +RS +RS +RS +RS +JL +RF +vF +uq +RF +vF +RF +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(53,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +nn +yE +Lg +VM +Oy +fk +jo +ko +Ak +Ak +Ak +Ak +ix +hj +Mj +Rj +ad +Dw +PX +qN +PX +uj +wb +UH +UH +jB +fV +AY +vG +yw +Vb +Jd +lm +Xo +HI +us +Nt +gY +PM +KA +Lj +NC +bJ +mM +vd +IY +Ki +IY +vd +IY +EN +XP +NH +in +xS +jd +yl +Ms +ax +NH +vk +jW +vK +wt +Vh +Pd +Xq +ma +pC +uc +Ke +CH +Aa +FS +nd +Nx +Vj +XH +TR +RS +mH +Yl +fD +Hf +JL +bD +hE +JE +JE +EG +RF +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(54,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +MP +yE +Eh +Eh +aq +tC +Ak +Ak +Ak +vx +vx +vx +tC +Kf +Cf +AY +sU +TU +Am +fW +fW +fW +EY +Nz +UH +lh +cW +Wp +AY +Hg +GQ +zw +dy +Jj +Tq +Rh +Qr +aP +GV +Rt +no +Eo +no +lQ +mM +vM +IY +Kz +IY +PU +IY +Um +Zk +NH +PF +gI +cu +SV +NH +NH +NH +mf +oR +OF +wt +Vh +fO +vf +fO +pC +Vo +Tr +Tr +tW +AE +ZQ +sO +Vj +CK +jZ +RS +uf +ay +pd +ve +MW +uq +vF +bD +RF +RF +RF +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(55,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +nn +yE +Eh +Eh +vx +pc +vx +vx +vx +vx +vx +ua +vx +vx +kB +zB +AY +NB +NB +UH +UH +UH +eq +yZ +Lh +UH +YY +Pm +zY +AY +ok +sQ +Vb +Vb +Vb +Vb +Vb +Vb +lr +GN +PM +mv +pN +bv +mc +mM +CA +IY +MO +IY +Ri +IY +eL +SX +it +zP +pS +Uy +SV +Ms +Dy +NH +ml +SZ +OF +DV +Aj +vj +vU +uu +Vj +ZN +yJ +yJ +GB +tY +na +zK +Vj +By +TD +ux +rM +jS +YU +HG +MW +uq +vF +uq +RF +RF +uq +uq +uq +uq +uq +uq +uq +Zd +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(56,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +gH +Eh +Eh +vx +uy +ID +tt +wh +th +Hz +JR +pE +zp +vx +ph +Bf +Yv +Yv +eS +eS +eS +Yv +gm +Un +rN +DI +rN +vD +yo +fc +eC +eE +gY +gY +km +QB +zi +gY +HY +GN +PM +PH +Bz +no +oT +mM +wJ +IU +fb +kQ +kQ +kQ +kQ +Ko +NH +Ew +Cu +cu +SV +NH +NH +NH +ct +ri +Ap +nj +Aj +gn +OZ +Bl +Vj +te +tY +At +vw +tY +tY +pG +Vj +PE +jZ +RS +Gt +ay +md +tm +JL +bD +vF +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(57,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +Zd +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +gH +Eh +Mc +vx +QP +Iy +zE +Hu +mZ +dD +Ii +ks +Te +vx +wf +Bf +Yv +yV +xh +kk +SQ +Yv +qQ +VL +HK +UH +CX +mk +Mu +AY +xK +IS +cF +cF +nz +Ix +cF +FR +Xs +GN +PM +Rq +Nr +Fz +rZ +mM +Ls +LR +oC +ky +QS +SG +LR +RK +NH +Ew +MZ +OM +kK +Ms +ax +NH +nF +Vd +Uc +mK +Aj +rk +OZ +Bl +Vj +CT +AE +AE +eu +AD +UR +xk +Vj +Jz +LO +ey +ey +ey +ey +ey +NY +JE +oq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(58,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +gH +Eh +Mc +vx +rH +pK +NG +Fa +AX +Pv +VN +lp +lJ +vx +sp +wa +Yv +Rd +rY +YH +tX +Rc +Hv +OC +uL +UH +kt +Kv +bF +AY +Td +Ub +Td +Td +Td +Td +Td +Td +Td +gG +PM +mM +iF +mM +mM +mM +IY +IY +Fu +IY +IY +IY +IY +IY +NH +NH +NH +NH +NH +NH +NH +NH +Aj +lz +Aj +Aj +Aj +Dm +Gh +Bl +Vj +tu +tu +Vj +lO +Vj +tu +tu +Vj +zL +SE +vz +WH +YD +sE +gh +uB +bD +vF +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(59,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +gH +Eh +Mc +vx +aF +GP +IJ +dJ +dJ +dJ +OJ +JY +bI +vx +ii +Bf +Yv +Fw +vE +vp +xv +Yv +wA +Xf +gi +UH +wV +sB +Nh +BU +qo +uA +Tw +IA +Hi +Dq +aN +hp +Qf +YS +rg +rg +LC +rg +JA +wu +Kd +rg +Sa +rg +hR +ke +rg +Wz +re +MI +nJ +uG +bu +ZO +IW +qv +iJ +ET +Qv +dP +hg +hg +nT +cI +sC +yj +jR +Dt +BC +Pr +YB +cV +Pr +UT +Md +Qt +Qt +Qt +Qt +ho +uB +uq +vF +bD +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(60,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +gH +Eh +Mc +vx +ts +GR +hC +tg +fq +hu +tg +rO +Cw +vx +UP +Bf +Yv +gE +Hw +Yv +Yv +Yv +BU +AJ +BU +Pb +Pb +Pb +BU +BU +jJ +qm +Vw +ug +YT +nS +Ov +zM +GX +Fv +Ov +bw +kj +WK +nC +ut +WK +wW +oU +WK +Jv +cK +qy +cG +sG +HP +bs +Dk +lf +WS +tJ +tJ +tJ +SJ +YI +oy +sh +Nl +nY +fS +xb +PN +ys +ce +zs +DO +BH +Pw +DO +iQ +KU +zh +zh +lw +PC +Ty +uB +bD +vX +JE +JE +Wb +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(61,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +fP +Uq +sv +GM +rF +yM +TM +zN +eA +ub +cM +tn +rO +ZY +vx +TS +Bf +Yv +Sg +Pg +Yv +Mm +RQ +Hx +ej +Jn +ZV +py +gr +Ou +ls +ew +AG +ms +CZ +CZ +hk +YF +YF +YF +YF +YF +ja +KF +KF +KF +KF +KF +uk +YT +HW +TT +Fk +oE +oE +nx +oE +oE +FG +TX +FG +LW +eV +pa +CG +CG +Rn +CG +CG +nT +SO +uW +uW +uW +uW +uW +uW +uW +uW +uW +BD +uW +uW +XV +XV +XV +uW +LZ +EJ +EJ +EJ +EJ +vF +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(62,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +nn +yE +Eh +Eh +vx +vx +VJ +yk +vx +YK +vx +vx +vx +vx +vx +vx +wf +Bf +Yv +Zs +ch +Yv +mA +zW +xZ +KV +KV +KV +EO +hL +rb +hL +YT +WF +Pt +SL +YT +Je +YF +Vv +Tc +rS +YF +YF +KF +li +TN +pm +KF +kU +YT +BI +Wf +Jt +oE +hP +bT +Yo +oE +AS +dq +FG +GC +HC +oc +CG +Kc +oh +cp +CG +mD +rG +dl +dl +sS +pR +rn +Ja +Zm +vq +pR +aI +UG +iY +uN +uN +uN +uN +uN +uN +Ax +nA +EJ +vF +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(63,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +gH +Ve +Ve +ak +XL +DS +FD +La +RC +Fj +Mb +XZ +sr +cg +Ni +zD +hc +Bf +Yv +Zy +SQ +Yv +xE +zW +xZ +MA +Zt +gj +Ku +hY +Ku +hY +Ku +LV +YT +YT +YT +Sh +Wn +SY +mz +SU +YF +Js +KF +TL +Ar +KM +Kg +Xx +Mq +SB +lv +ZU +oE +xi +Va +Yo +oE +Mf +qn +FG +FG +CG +CG +CG +GZ +ci +PV +CG +Xe +XY +dl +NS +zz +xf +oJ +MG +vC +Zg +xf +ww +dI +OT +yb +OT +OT +OT +yb +OT +bo +yK +Vn +vF +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(64,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +gH +Ve +dR +qs +qY +ye +Zw +La +Zn +CI +fI +fI +xA +Mb +fy +zD +Nc +Fp +VV +VV +VV +VV +jf +zW +hG +WB +DY +ZE +Ku +RD +UY +nD +Ku +uD +YT +at +KL +of +YF +Ht +Yr +ML +YF +Js +KF +Ae +Li +WW +KF +uS +YT +YT +cO +cd +oE +FQ +Va +Yo +oE +eO +Fr +YR +FG +MX +oY +CG +CU +MK +qR +CG +iS +jT +dl +QK +pV +xf +qV +MG +vC +vi +xf +ww +dI +uh +ih +OL +UW +hy +Ti +OT +OT +yK +Vn +vF +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(65,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +gH +fw +dT +qP +pr +Gm +Vx +Ph +Zn +FC +bm +CE +vg +ol +oa +zD +iZ +Xk +OD +ZR +QG +RX +iX +mT +Ku +Ku +Ku +Ku +Ku +DT +ll +nD +YM +Rk +rw +Ep +Mt +EK +YF +Yi +KO +Co +YF +Js +KF +qK +tG +xH +KF +XU +bg +iI +Hl +YT +oE +FB +Vt +nO +rL +mh +KR +nw +FG +VC +gD +CG +CG +RT +CG +CG +yO +hg +dl +sR +pV +xf +qV +MG +dL +kH +xf +zO +dI +uh +ba +Ll +fi +bY +bY +Ll +OT +yK +Vn +vF +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(66,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +gH +fw +to +tM +qY +ye +Pj +su +RC +ZP +Xh +RC +fa +RC +Ug +zD +Ue +hT +mu +ZI +Hs +zb +IF +GA +Ku +Kt +Ca +vQ +nD +hX +nD +nD +YM +Rk +kU +ER +ER +ER +ER +ER +bU +bU +YF +YF +KF +MN +MN +vu +vu +vu +vu +vu +ue +YT +oE +ar +tZ +GG +oE +Nw +Fr +op +FN +Vs +dH +oW +vb +pA +Ij +CG +ZB +hg +dl +ZC +YQ +xf +MF +MG +vC +Zg +xf +mY +bS +uh +om +Ll +fi +bY +bY +Ll +OT +yK +Vn +vF +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(67,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +bD +gH +fw +IM +Yp +BY +DS +Ee +UI +rX +Rv +Rv +MB +fT +RG +PS +Le +IH +JN +QC +QC +QC +wZ +hU +zW +YM +LD +Se +XE +Kj +hX +nD +uM +YM +Rk +kU +ER +rW +lC +HT +ER +EZ +qX +qX +qX +qX +qX +NT +vu +Br +AP +Ys +vu +ue +oF +oE +gC +Og +cf +oE +sl +Rr +Fd +FG +fL +Hy +fH +hs +ir +ip +CG +cA +hg +dl +Nm +on +pR +rI +SS +Dn +va +pR +Zf +mG +uh +ih +Kw +iH +yc +KQ +OT +OT +yK +Vn +vF +uq +uq +uq +yX +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(68,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +Ah +Ul +Ve +ye +ye +ye +DS +qS +bX +Ba +wT +wT +wT +UO +yR +wT +QC +vA +hT +qp +SI +jy +mO +zc +zW +JJ +JJ +JJ +JJ +JJ +LJ +nD +NR +Ku +wL +Nf +wS +SH +jD +PI +IZ +IT +xe +xe +xe +xe +xe +Ef +AT +Aq +WE +AB +gf +rP +YT +oE +oE +oE +oE +oE +FG +mR +FG +FG +xg +TK +oM +ev +DA +hv +CG +ck +os +dl +wp +pV +pR +pR +Ns +pR +pR +pR +DN +mG +OT +yb +OT +Iu +OT +yb +OT +bo +yK +Vn +vF +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(69,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +bD +gH +jr +eB +wY +fl +WG +lU +On +Qu +Ne +Ne +Ne +Qu +xm +wT +QC +lB +GD +mu +SF +HF +mO +zc +zW +YM +un +kE +RB +hH +Av +gx +yd +YM +wy +kU +ER +zg +aj +Wl +IZ +IT +xe +xe +xe +xe +xe +Ef +AT +Qd +VH +Qa +vu +QF +YT +hJ +iG +Jk +pX +hJ +Eu +bG +ep +CG +CG +CG +CG +CG +qW +CG +CG +mr +Uk +pH +le +Be +Xa +ZJ +jF +KC +Su +Hb +lP +Xl +IB +IB +IB +jN +oG +oG +oG +oG +si +Vn +vX +sa +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(70,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +NJ +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +gH +jr +hl +sx +IX +eh +Rv +UK +Qu +iO +jl +xd +Qu +cy +oB +QC +GT +ya +mu +NN +fU +mO +Ha +df +YM +VS +ME +Qx +gL +zy +En +hz +YM +am +wi +bi +bi +bi +bi +bi +IT +xe +xe +xe +xe +xe +Ef +IC +IC +IC +IC +IC +fN +xc +hJ +zk +bf +pv +uV +oH +Pp +mJ +dw +Ng +ec +ik +iB +QJ +Od +ta +gq +mI +dl +VE +EC +Yh +TB +wp +wp +NZ +st +wN +Lx +CP +cn +CP +CP +CP +CP +cn +CP +JI +Vn +uq +IV +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(71,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +bD +gH +jr +Hk +ic +If +WG +Lc +xU +TH +ti +Aw +eH +Qu +io +wT +QC +CQ +ah +mu +SF +aY +mO +zc +zW +YM +so +jP +Ow +gL +Cv +db +WT +YM +bn +AQ +bi +Si +gK +LX +wE +IT +xe +xe +xe +xe +xe +Ef +PA +da +dc +zR +IC +Im +ei +hJ +hJ +Zx +hJ +hJ +hJ +hJ +Nv +Yf +Jx +Oc +QA +Jx +MM +QO +ta +Ie +hg +gQ +Ps +Ps +gQ +YG +gQ +Ps +Ps +gQ +YJ +mb +Kr +Kr +Kr +UU +uN +uN +uN +uN +dA +Vn +RF +RF +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(72,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +Ah +pn +bk +CM +CM +CM +Qk +wT +fF +TH +Qg +vs +FH +Qu +kS +wT +QC +tS +hT +Bt +kG +jy +mO +zc +zW +JJ +JJ +JJ +JJ +JJ +vH +nD +NR +Ku +mE +Ir +br +KG +sn +kL +wE +IT +xe +xe +xe +xe +xe +Ef +PA +Wk +iT +MQ +qw +ie +ei +hJ +sf +gT +Vq +lZ +Gn +hJ +qh +BF +qh +qh +qh +qD +VA +qD +qD +sM +hg +gQ +xD +pw +uP +uI +dQ +Wt +hi +gQ +qM +dI +nK +GS +nK +Ma +nK +GS +nK +VQ +PY +Vn +RF +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(73,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +Zd +uq +uq +uq +uq +uq +uq +uq +uq +bD +gH +DF +tH +sA +qO +Qk +wT +xU +TH +hQ +ab +mj +nq +gW +go +ur +Vc +xa +QC +QC +QC +BA +nW +zW +YM +Op +fh +JC +AK +zy +nD +DL +YM +OO +AQ +bi +HX +Gu +JB +bi +RI +uw +uw +uw +uw +uw +Mh +IC +RM +De +oA +IC +uC +jn +hJ +BV +RE +QI +zf +wR +hJ +Lr +RH +Jq +dd +qh +lX +Df +zn +qD +lt +hg +gQ +dO +sZ +tz +xu +Do +hA +uJ +Ps +wO +dI +xJ +VY +zV +Vm +gO +JD +nK +nK +PY +Vn +bD +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(74,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +gH +DF +Lw +dh +TE +CM +zC +xL +Qu +tF +Th +cE +Qu +LN +jv +QC +zq +he +mu +gy +QG +XC +zc +GA +Ku +Ru +Xb +EI +WY +ov +WY +Ft +YM +OO +AQ +bi +bi +bi +bi +bi +HH +HH +nf +nf +fr +jz +jz +IC +IC +IC +IC +IC +nQ +ei +hJ +fm +Oj +PQ +uZ +CJ +hJ +KW +Qh +Qp +vW +qh +ef +tv +Ol +qD +YN +hg +gQ +cQ +gQ +fK +mV +dQ +vJ +ff +Ps +XW +dI +xJ +xO +yH +pe +Hd +Hd +yH +nK +PY +Vn +bD +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(75,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +gH +DF +iD +vZ +JX +Zj +Rv +Ym +Qu +Ne +Ne +Ne +Qu +cP +wT +QC +Iq +HN +Tg +Vr +Hs +EA +zc +zW +Ku +Ku +Ku +Ku +Ku +gs +nD +tb +YM +OO +sg +cU +qL +Ur +nf +uv +zr +TF +nf +OA +fr +fu +jA +FK +fr +cZ +GK +BL +mm +ei +hJ +hJ +sI +hJ +EB +hJ +hJ +HR +Qh +aR +Zi +qh +RP +yu +EM +qD +bR +hg +gQ +WP +Ps +PP +dQ +dQ +Ps +qb +gQ +WQ +dI +xJ +qH +yH +pe +Hd +Hd +yH +nK +PY +Vn +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(76,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +gH +bk +kT +mn +TE +CM +qG +PO +Pf +wT +wT +wT +QQ +Nj +wT +Fe +Fe +Me +Fe +Fe +Fe +Fe +KE +zW +Dp +Di +VD +EV +Ku +xn +MT +tb +Ku +Qc +AQ +RZ +yi +iW +nf +Oe +rc +pJ +nf +OA +fr +JH +hK +bt +fr +eW +ei +ei +se +Ws +hJ +SD +gZ +hJ +ui +sK +hJ +TY +Au +Zq +gF +qh +cs +LU +Pz +qD +PD +KX +gQ +HB +Ps +gp +Hn +WA +Ps +VT +gQ +Wd +dI +xJ +VY +VX +eU +wC +Yq +nK +nK +PY +Vn +bD +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(77,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +gH +bk +bk +wM +yB +Qk +dB +GW +RJ +YO +eG +DE +ze +eQ +qe +Tm +mw +bE +BS +QV +cm +Fe +Qn +zW +xZ +MA +Zt +TJ +Ku +aH +Ku +rQ +Ku +Lo +EQ +Qj +ei +bd +cJ +No +KJ +Ay +nf +OA +fr +Qe +Vy +Cb +Tx +Ch +Dz +im +aQ +kn +hJ +CR +Bj +hJ +Bj +Xi +hJ +qh +qh +qh +qh +qh +qa +er +wo +qD +bh +Ok +gQ +do +gQ +Ps +gQ +Ps +gQ +Pn +gQ +lA +dI +nK +dU +nK +nK +dU +dU +nK +VQ +PY +Vn +bD +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(78,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +Sy +ag +aS +aS +XB +XB +XB +ZG +ZG +ZG +Ao +ZG +ZG +ZG +ZG +Zv +Bd +Ya +xI +mg +nV +Fe +sz +ao +xZ +KV +KV +KV +Ky +AF +Zp +ly +ei +OO +ei +qu +ei +Sz +nf +Wa +QM +dv +nf +nf +fr +Iz +Dc +SP +fr +AQ +ei +lD +cl +wn +hJ +Rb +Ic +hJ +Ic +Rb +hJ +an +lR +pU +OH +qD +OU +dr +rm +qD +yt +ht +gQ +dY +Lv +Kb +Kb +Kb +HE +qU +gQ +lV +yL +qg +oG +oG +oG +oG +oG +oG +KT +UJ +EJ +RF +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(79,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uH +ag +aS +ZD +pZ +qI +ZG +we +VW +LL +jc +ae +sL +Zb +Zv +Bk +HA +Fh +Cz +Nk +Fe +px +hS +tR +vB +lF +jY +lM +Jb +za +sb +eN +qj +ei +AQ +ei +DC +nf +nf +nf +nf +nf +NQ +fr +fr +fr +fr +fr +hN +ei +aE +fz +VR +hJ +hJ +hJ +hJ +hJ +hJ +hJ +an +CL +eV +pa +qD +qD +Da +qD +qD +dn +XF +WR +WR +WR +qA +qA +qA +qA +qA +qA +qA +qA +oX +oX +oX +oX +oX +kP +EJ +EJ +EJ +EJ +RF +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(80,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +gH +QY +VI +ED +rh +ZG +oO +ed +Sv +LH +vo +vo +IN +Zv +Fi +fd +YZ +nh +BO +OQ +FT +wz +FT +iz +dK +FT +wz +wz +FT +FT +HL +vr +vh +Wy +Sj +Jb +Sj +mS +vt +Sj +Sj +pg +MD +nX +Jh +AZ +nX +dG +nX +nX +Ot +nX +ON +Wq +DJ +hW +Vz +gd +KH +zQ +Xu +Xu +Xu +TO +jH +iL +nG +Xu +qT +Oa +WR +Mi +My +qA +zX +jj +nt +FW +kz +OV +qA +XS +kp +tr +Ux +pu +Db +bD +ea +JE +JE +FP +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(81,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +Dl +CD +gb +wx +Ei +Bs +oI +WD +LA +BJ +bq +bq +Gp +Zv +Xd +QX +Fh +FZ +xX +OQ +WJ +JS +Xj +FL +iq +Ck +AH +iq +mo +FT +kM +lc +Vf +vL +eP +Uf +LE +xx +id +yx +ei +ou +Yt +ei +aX +mQ +Wj +Wj +Wj +Wj +Wj +WU +tw +Wj +Wj +Wj +MH +xx +xF +kl +CV +kv +jg +XJ +DK +XJ +XJ +Hp +RA +Dd +gM +dp +Jc +qA +FY +WX +hB +pM +GE +cX +qA +ka +Wv +lN +Ek +pq +Db +uq +vF +bD +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(82,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +gH +QY +BM +zx +US +ZG +RU +VG +ws +Bi +IK +IK +mF +cY +OE +Py +xI +pY +ez +OQ +VZ +Eg +Eg +Ta +iq +iq +iq +iq +xB +LY +FE +Cs +FE +FE +FE +FE +FE +FE +FE +FE +Wu +Tv +Mv +ei +aD +aD +YL +ry +dW +aD +aD +Ds +aD +aD +Xr +Nb +Nb +aD +iM +LF +aM +aM +Mg +Mg +Mg +aM +aM +nI +nI +nI +WR +sY +LP +qA +zX +yY +yQ +du +XG +es +qA +Sk +vI +yD +IE +Yu +kP +RF +vF +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(83,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +gH +aS +vc +BT +dV +ZG +qZ +oQ +Re +dm +YX +VF +Is +Zv +Gi +JM +ZF +xG +Bv +OQ +fX +iq +iq +bA +zj +LM +Fb +Bx +Cj +LY +WC +Ik +Cg +hI +UM +Xv +wP +lY +Cg +bz +Wu +Iw +zl +ei +aD +wK +Bn +Zr +xs +zG +Ih +ru +aB +aD +Mr +fo +Yb +aD +Rl +wg +aM +oS +oL +gu +oL +UN +aM +tI +JK +uR +WR +Gc +yv +qA +qA +qA +qA +ha +qA +qA +qA +oX +oX +pt +oX +oX +kP +RF +vF +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(84,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +gH +aS +aS +XB +XB +ZG +ZG +ZG +hF +ZG +ZG +ZG +ZG +Zv +Fe +MS +Fe +Fe +Fe +OQ +FT +jK +lo +xV +oK +iK +XX +jq +yg +Hj +iA +CC +yT +yT +xT +Zu +yT +yT +yT +eM +Wu +co +zl +ei +aD +mN +sc +cS +hV +LK +IQ +Qq +sq +aD +vY +AO +vY +aD +nH +QR +aM +Xp +Pl +ST +Pl +FM +aM +xz +Wo +jG +OX +BZ +QE +yq +WR +Xn +Tn +lH +Nd +pF +WZ +nN +Cp +AL +cq +Ye +Fn +JE +en +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(85,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +Sy +ag +ni +ni +eF +eF +Gr +ee +Po +HZ +nv +fn +mx +Gr +sJ +bx +LY +YA +TV +iE +FT +zo +NF +xV +eb +Kp +kw +Kp +Eb +LY +IG +Ik +bl +bl +bl +bl +bl +bl +Cg +gz +Kl +Zl +oD +aE +aD +Es +ig +BK +BK +NM +Za +gU +Sr +XO +fR +jQ +Sf +fJ +Sb +Tf +tq +DP +jI +DW +FU +JT +uU +hM +UE +nE +UA +zU +Bu +BB +ps +de +QH +fx +mt +OI +bN +tD +zS +Lk +mi +dN +GI +uq +vF +uq +RF +RF +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(86,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +ro +ag +ni +ni +Qi +Gr +eT +BG +au +ft +Ac +xN +Gr +Cr +bx +LY +Us +Uh +rr +rp +jL +AN +me +jC +iq +iq +iq +Eb +LY +AC +Uu +Et +lx +kc +PZ +od +rA +pi +TQ +Wu +Tk +Uj +sm +aD +wc +oo +cD +cD +MJ +sc +QZ +Bo +aD +Zc +sc +Zc +aD +fs +Ab +aM +zA +Dx +eo +Dx +hx +ZZ +hm +ZW +cv +UD +Tj +lG +tO +WR +Fc +iw +vv +tf +JQ +JQ +JQ +JQ +Tl +JQ +JQ +bj +bD +vF +bD +RF +RF +RF +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(87,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +Sy +ag +Qw +Rw +tp +Yx +di +eX +qB +tU +Pa +Gr +sD +bx +LY +Kq +EU +pD +FT +eI +CO +Uz +Vp +Sx +aG +iq +dx +LY +Cm +Ip +bl +fj +jh +rC +bZ +bl +Cg +vP +Wu +HO +dj +sm +aD +JU +LB +nu +yI +lk +lu +rz +ss +aD +bW +rV +EW +aD +uX +Go +aM +kd +Dx +gX +aZ +gl +ZZ +Nu +rD +IP +fp +cw +yU +dZ +WR +GU +bP +XN +hd +JQ +wI +Xt +UF +Rm +Lz +RR +iV +bD +Cx +JE +JE +sa +RF +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(88,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +gH +ni +ni +Gr +ac +lS +Fs +eD +xR +NK +qJ +yy +bx +LY +LY +LY +LY +LY +LY +Rp +Rp +LY +Rp +Rp +Rp +LY +LY +yC +TZ +XR +XR +XR +XR +XR +XR +iy +vP +Wu +JF +JF +JF +Ct +Ct +Ct +Ct +Ct +Ct +Ct +Ct +Ct +Ct +Ct +Ct +Ct +Ct +yp +Sc +Dx +Dx +Dx +be +Dx +Dx +Dx +Dx +Dx +Dx +Dx +Dx +Dx +Dx +Dx +Dx +Dx +Dx +JQ +JQ +rj +ox +cT +NV +sj +Oo +iV +uq +vF +uq +RF +vF +RF +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(89,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +Sy +ag +ni +Gr +Yy +Il +dt +Io +jt +fG +Gr +tN +PW +jw +ai +cr +fB +yy +Bw +sV +sV +bM +Ss +Ss +Ss +Ss +yF +Em +BR +LT +mL +kr +GF +Lq +UX +Lm +ul +Oh +Dv +Dv +Dv +Dv +Dv +Dv +Qz +Dv +lT +Dv +il +OR +CY +Lf +Qz +Dv +Dv +bB +kq +Dx +fM +uY +hq +HD +Dx +XQ +JV +KS +Dx +XQ +Pk +KS +Dx +Cn +RN +ku +Dx +ZM +FO +Qy +pj +Qy +wB +DG +PB +iV +bD +vF +uq +RF +vF +RF +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(90,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +gH +ni +ni +Gr +pl +Gr +Gr +Gr +Gr +Gr +VK +AI +yy +yy +bx +yy +yy +xq +yy +yy +tP +yy +yy +yy +yy +AW +Cg +yr +XR +UZ +BQ +Ud +zt +XR +Fl +Cg +nL +oe +SM +Wu +aw +mB +oe +Lu +oe +HV +oe +oe +Lu +oe +oe +KY +oe +oe +QU +PR +Dx +zT +ZA +vV +uz +Dx +Ad +RN +RN +Oq +Ad +RN +RN +lb +Wi +bL +sH +Dx +xj +We +XT +XT +XT +kC +uT +lW +bj +RF +vF +uq +RF +dk +RF +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(91,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +Sy +yG +YV +YV +wX +ni +ni +ni +ni +ni +ge +aW +wG +wG +aW +ge +ge +wG +ge +ge +wG +ge +ge +ge +wG +wG +FE +Ka +oz +oz +oz +oz +oz +oz +gP +FE +Wu +uQ +uQ +Wu +Wu +Wu +Wu +Ww +Wu +Wu +Wu +Wu +Ww +Wu +Wu +Wu +Wu +uQ +uQ +Wu +ym +Yj +ZA +vV +Ez +Dx +jx +ln +OY +Dx +Bm +kI +Ai +Dx +Qm +Yc +zI +CS +Gl +tl +KN +Yw +FA +IR +DG +PB +iV +bD +vF +uq +RF +vF +RF +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(92,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +Hc +RF +bD +bD +uq +uq +uq +uq +bD +bD +Sy +ag +uq +gH +RF +bD +bD +uq +uq +uq +uq +uq +uq +bD +bD +RF +vF +RF +uq +uq +uq +ea +tj +EG +bD +bD +uq +uq +uq +bD +bD +RF +vF +RF +uq +uq +uq +vF +RF +RF +bD +bD +uq +uq +uq +fg +dF +xt +vN +sX +Dx +KK +gg +Ff +UV +bK +gg +rT +cj +bK +gg +KB +iC +XT +St +XT +XT +XT +kC +sj +Oo +iV +uq +vF +uq +RF +vF +RF +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(93,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +Sy +Xw +yE +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +Ci +JE +JE +JE +JE +EG +IV +uq +uq +uq +uq +uq +uq +uq +uq +uq +JO +JE +JE +JE +JE +EG +RF +uq +uq +uq +uq +uq +bD +fg +la +ZA +TG +Hq +Tp +pk +eR +zv +Gb +Fq +Af +eR +Gb +eR +eR +hZ +iC +PJ +sj +gk +Wm +BE +As +Jw +bb +iV +bD +vF +uq +RF +vF +RF +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(94,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +bD +bD +ym +ym +hO +YW +bc +Dx +lK +gg +yf +dg +jk +gg +rT +NX +jk +gg +Er +iC +DH +Ry +Ry +DH +DH +MR +Wc +DH +pQ +RF +hE +JE +JE +EG +RF +uq +uq +et +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(95,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +RF +RF +RF +bD +bD +ym +ym +eY +Hr +Dx +wv +Ut +ZT +Dx +Ex +ju +Lt +Dx +IO +Vl +or +iC +AR +QD +QD +EP +FX +Ro +hr +qx +Vk +bD +vF +bD +RF +RF +RF +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(96,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +RF +RF +RF +RF +RF +RF +RF +uq +uq +ym +Vg +el +Dx +aL +RN +RN +Ts +aL +RN +RN +LQ +tA +bL +wj +iC +rd +iv +iv +iv +pL +Nq +Yz +YC +Vk +uq +vF +uq +RF +RF +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(97,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +RF +RF +RF +RF +RF +RF +ea +JE +JE +JE +AM +JE +JE +oi +ym +Dx +nb +JV +KS +Dx +nb +fv +KS +Dx +Cn +RN +Eq +iC +BX +Gq +BX +mX +xQ +Ob +Sq +my +Vk +uq +vF +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(98,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +Zd +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +pz +JE +JE +JE +JE +JE +JE +JE +EG +RF +RF +RF +vX +FP +bD +bD +ym +ym +xo +xo +jb +ym +xo +xo +kN +ym +xo +xo +SR +Vg +pQ +Ce +Ce +pQ +pQ +Ce +VO +pQ +pQ +bD +vF +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +Zd +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(99,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +bD +bD +RF +RF +RF +RF +uq +uq +uq +ea +tT +sa +RF +bD +bD +bD +bD +vX +JE +sa +RF +vF +RF +RF +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(100,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +pz +JE +JE +JE +JE +JE +EG +RF +IV +uq +uq +uq +uq +uq +uq +pz +XA +JE +cb +RF +RF +RF +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(101,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +RF +vX +JE +JE +JE +JE +FP +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(102,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(103,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +Zd +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(104,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(105,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(106,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +Zd +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(107,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(108,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +Zd +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(109,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(110,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(111,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +Zd +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(112,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(113,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(114,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +Zd +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(115,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +lg +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(116,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(117,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(118,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(119,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(120,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(121,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +Zd +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(122,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(123,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(124,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(125,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(126,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(127,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(128,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(129,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(130,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(131,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(132,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(133,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(134,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(135,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(136,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(137,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(138,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(139,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} +(140,1,1) = {" +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +uq +"} diff --git a/maps/stellardelight/stellar_delight2.dmm b/maps/stellardelight/stellar_delight2.dmm new file mode 100644 index 0000000000..40257a3a9a --- /dev/null +++ b/maps/stellardelight/stellar_delight2.dmm @@ -0,0 +1,43137 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/obj/structure/cable/orange{ + icon_state = "2-4" + }, +/turf/simulated/wall/bay/r_wall/steel, +/area/maintenance/stellardelight/deck2/portsolars) +"ab" = ( +/obj/structure/stairs/spawner/north, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor, +/area/stellardelight/deck2/aftstarboard) +"ac" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"ad" = ( +/obj/structure/table/reinforced, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/chemistry) +"ae" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/quartermaster/storage) +"af" = ( +/obj/item/bee_pack, +/obj/item/honey_frame, +/obj/item/honey_frame, +/obj/item/honey_frame, +/obj/item/honey_frame, +/obj/item/honey_frame, +/obj/item/weapon/tool/crowbar, +/obj/item/bee_smoker, +/obj/item/beehive_assembly, +/obj/structure/closet/crate/hydroponics{ + desc = "All you need to start your own honey farm."; + name = "beekeeping crate" + }, +/obj/item/beehive_assembly, +/obj/item/beehive_assembly, +/obj/item/beehive_assembly, +/obj/item/beehive_assembly, +/obj/item/bee_pack, +/obj/item/bee_pack, +/obj/item/bee_pack, +/obj/item/honey_frame, +/obj/item/honey_frame, +/obj/item/honey_frame, +/obj/machinery/power/apc/angled{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/effect/floor_decal/milspec/color/green/half{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hydroponics) +"ag" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 9 + }, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/monitoring) +"ah" = ( +/obj/machinery/atmospherics/omni/atmos_filter{ + name = "CO2 Filter"; + tag_north = 2; + tag_south = 1; + tag_west = 5 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"ai" = ( +/obj/machinery/vending/tool, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/locker_room) +"aj" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/standard/glass{ + dir = 4; + name = "Hydroponics/Kitchen Access"; + req_one_access = list(35,28) + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/hydroponics) +"ak" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/quartermaster/storage) +"al" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/green, +/obj/machinery/meter, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/monitoring) +"am" = ( +/obj/structure/cable{ + 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, +/area/maintenance/stellardelight/deck2/starboardsolars) +"an" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/blue{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/angled_bay/hatch{ + dir = 4; + name = "maintenance access"; + stripe_color = "#454545" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck2/starboard) +"ao" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green, +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 4 + }, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"ap" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/monotile, +/area/hydroponics) +"aq" = ( +/obj/effect/landmark/start/atmostech, +/turf/simulated/floor, +/area/stellardelight/deck2/combustionworkshop) +"ar" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/quartermaster/storage) +"as" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/crew_quarters/bar) +"at" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/cable{ + icon_state = "16-0" + }, +/obj/structure/disposalpipe/up{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/starboardfore) +"au" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"av" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/mob/living/simple_mob/animal/goat{ + name = "Ted" + }, +/turf/simulated/floor/tiled/freezer/cold, +/area/crew_quarters/kitchen) +"aw" = ( +/obj/structure/table/standard, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/structure/symbol/sa{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/storage/primary) +"ax" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/starboardfore) +"ay" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck2/fuelstorage) +"az" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/cable/cyan{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/camera/network/engineering{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/engine_eva) +"aA" = ( +/turf/simulated/floor/tiled/monotile, +/area/stellardelight/deck2/fore) +"aB" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"aC" = ( +/obj/machinery/computer/guestpass{ + pixel_y = 24 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"aD" = ( +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/standard/color{ + dir = 4; + door_color = "#e6ab22"; + fill_color = "#877242"; + name = "Combustion Workshop"; + req_access = list(24); + stripe_color = "#2ebfbd" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck2/combustionworkshop) +"aE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/dark/cargo, +/area/crew_quarters/recreation_area) +"aF" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/floor_decal/milspec/color/white/half, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/central) +"aG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/milspec/color/green/half{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hydroponics) +"aH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/mob/living/simple_mob/vore/alienanimals/teppi/baby, +/turf/simulated/floor/grass, +/area/hydroponics) +"aI" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/door/airlock/angled_bay/double{ + name = "maintenance access"; + stripe_color = "#454545" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/starboardsolars) +"aJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/mob/living/simple_mob/animal/passive/cow, +/turf/simulated/floor/grass, +/area/hydroponics) +"aK" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/bar) +"aL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/starboard) +"aM" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/starboardsolars) +"aN" = ( +/turf/simulated/wall/bay/r_wall/steel, +/area/crew_quarters/locker) +"aO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/table/reinforced, +/obj/random/tech_supply, +/obj/random/tech_supply, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/engine_eva) +"aP" = ( +/obj/structure/disposalpipe/segment, +/mob/living/simple_mob/vore/alienanimals/teppi/baby, +/turf/simulated/floor/grass, +/area/hydroponics) +"aQ" = ( +/obj/structure/grille, +/turf/simulated/floor/airless, +/area/engineering/engine_room) +"aR" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/vehicle/train/trolley{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/quartermaster/storage) +"aS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/milspec/color/green/half{ + dir = 4 + }, +/obj/item/weapon/stool/padded{ + dir = 4 + }, +/obj/effect/landmark/start/botanist, +/turf/simulated/floor/tiled, +/area/hydroponics) +"aT" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/machinery/door/blast/angled/open{ + dir = 4; + id = "botanylockdown" + }, +/obj/structure/low_wall/bay/reinforced/steel, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/portfore) +"aU" = ( +/turf/simulated/floor/tiled/monotile, +/area/stellardelight/deck2/aftport) +"aV" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/portaft) +"aW" = ( +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/engine_eva) +"aX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/cmostore) +"aY" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/crew_quarters/bar) +"aZ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/camera/network/engineering{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/monitoring) +"ba" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/starboard) +"bb" = ( +/obj/machinery/light/floortube{ + dir = 4; + pixel_x = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/milspec/color/green/half{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hydroponics) +"bc" = ( +/obj/machinery/seed_extractor, +/obj/effect/floor_decal/milspec/color/green/half{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hydroponics) +"bd" = ( +/obj/effect/landmark/start/engineer, +/turf/simulated/floor/tiled/eris/dark/gray_platform, +/area/engineering/workshop) +"be" = ( +/obj/machinery/computer/station_alert, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/monitoring) +"bf" = ( +/turf/simulated/open, +/area/stellardelight/deck2/triage) +"bg" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 10 + }, +/turf/simulated/wall/bay/r_wall/steel, +/area/stellardelight/deck2/port) +"bh" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/door/airlock/angled_bay/hatch/engineering{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck2/port) +"bi" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/reception) +"bj" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "\improper HIGH VOLTAGE"; + pixel_y = 32 + }, +/obj/structure/low_wall/bay/reinforced/orange, +/turf/simulated/floor, +/area/engineering/engine_room) +"bk" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/aftport) +"bl" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/noticeboard{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/quartermaster/storage) +"bm" = ( +/obj/structure/sign/directions/science{ + pixel_x = 32 + }, +/obj/structure/sign/directions/dorms{ + pixel_x = 32; + pixel_y = 6 + }, +/obj/structure/sign/directions{ + desc = "A direction sign, pointing out the way to Exploration."; + name = "\improper Exploration Department"; + pixel_x = 32; + pixel_y = -6 + }, +/obj/structure/sign/directions/security{ + pixel_x = 32; + pixel_y = 12 + }, +/obj/structure/sign/directions/stairs_down{ + pixel_x = 32; + pixel_y = 18 + }, +/obj/structure/railing/grey{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/stellardelight/deck2/aftport) +"bn" = ( +/obj/structure/railing/grey{ + dir = 8 + }, +/obj/structure/cable/white{ + icon_state = "32-1" + }, +/turf/simulated/floor/tiled/monotile, +/area/stellardelight/deck2/triage) +"bo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 9 + }, +/obj/machinery/power/apc/angled{ + dir = 4 + }, +/obj/structure/cable/orange{ + icon_state = "0-8" + }, +/obj/structure/cable/orange{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/monitoring) +"bp" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/crew_quarters/bar) +"bq" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/milspec/color/green/half{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/hydroponics) +"br" = ( +/obj/structure/sign/directions/science{ + pixel_x = -32 + }, +/obj/structure/sign/directions/dorms{ + pixel_x = -32; + pixel_y = 6 + }, +/obj/structure/sign/directions{ + desc = "A direction sign, pointing out the way to Exploration."; + name = "\improper Exploration Department"; + pixel_x = -32; + pixel_y = -6 + }, +/obj/structure/sign/directions/security{ + pixel_x = -32; + pixel_y = 12 + }, +/obj/structure/sign/directions/stairs_down{ + pixel_x = -32; + pixel_y = 18 + }, +/obj/structure/railing/grey{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/stellardelight/deck2/aftstarboard) +"bs" = ( +/obj/structure/table/standard, +/obj/item/device/healthanalyzer, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/white, +/area/medical/surgery2) +"bt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "botanylockdown"; + name = "Window Lockdown"; + pixel_x = -25 + }, +/obj/effect/floor_decal/milspec/color/green/half{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/hydroponics) +"bu" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/box/gloves{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/weapon/storage/box/masks, +/obj/machinery/power/apc/angled{ + dir = 8 + }, +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/stellardelight/deck2/triage) +"bv" = ( +/turf/simulated/floor/tiled/monotile, +/area/stellardelight/deck2/aftstarboard) +"bw" = ( +/obj/machinery/power/pointdefense{ + id_tag = "sd_pd" + }, +/obj/effect/floor_decal/industrial/warning/full, +/obj/structure/cable/green, +/turf/simulated/floor/airless, +/area/stellardelight/deck2/exterior) +"bx" = ( +/obj/structure/sign/double/barsign, +/turf/simulated/wall/bay/steel, +/area/crew_quarters/bar) +"by" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/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 + }, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/crew_quarters/bar) +"bz" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden, +/obj/machinery/camera/network/engine{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/engineering/engine_room) +"bA" = ( +/obj/effect/floor_decal/milspec/color/blue/half{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/port) +"bB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/quartermaster/storage) +"bC" = ( +/obj/structure/bed/chair/bay/shuttle{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + pixel_y = -24 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck2/starboardescape) +"bD" = ( +/obj/machinery/power/pointdefense{ + id_tag = "sd_pd" + }, +/obj/effect/floor_decal/industrial/warning/full, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck2/exterior) +"bE" = ( +/obj/machinery/door/blast/angled, +/turf/simulated/floor, +/area/quartermaster/storage) +"bF" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black, +/turf/simulated/wall/bay/r_wall/orange, +/area/engineering/atmos/storage) +"bG" = ( +/obj/structure/cable/yellow{ + icon_state = "32-8" + }, +/obj/structure/sign/department/miner_dock{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/storage) +"bH" = ( +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck2/exterior) +"bI" = ( +/obj/structure/bed/chair/bay/shuttle{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + pixel_y = -24 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck2/portescape) +"bJ" = ( +/obj/structure/cable/white{ + 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/eris/white/bluecorner, +/area/stellardelight/deck2/triage) +"bK" = ( +/obj/structure/table/rack/steel, +/obj/item/weapon/circuitboard/sleeper{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/weapon/circuitboard/sleeper_console{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/weapon/circuitboard/body_scanner{ + pixel_x = -1; + pixel_y = 1 + }, +/obj/item/weapon/circuitboard/scanner_console, +/obj/item/weapon/circuitboard/grinder{ + pixel_x = 1; + pixel_y = -1 + }, +/obj/item/weapon/circuitboard/bioprinter{ + pixel_x = 2; + pixel_y = -2 + }, +/obj/item/weapon/circuitboard/chem_master{ + pixel_x = 3; + pixel_y = -3 + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/storage/tech) +"bL" = ( +/obj/structure/stairs/spawner/north, +/obj/structure/railing/grey{ + dir = 8 + }, +/turf/simulated/floor, +/area/stellardelight/deck2/central) +"bM" = ( +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/mob/living/simple_mob/animal/passive/opossum/poppy, +/turf/simulated/floor/tiled/eris/dark/gray_platform, +/area/engineering/workshop) +"bN" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"bO" = ( +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 24 + }, +/mob/living/simple_mob/otie/red/chubby/cocoa, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/crew_quarters/bar) +"bP" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/alarm/angled, +/obj/machinery/space_heater, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/portfore) +"bQ" = ( +/obj/structure/closet/secure_closet/quartermaster, +/obj/item/weapon/storage/backpack/dufflebag, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/firealarm/angled{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/quartermaster/qm) +"bR" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/angled_bay/hatch{ + door_color = "#e6ab22"; + name = "maintenance access"; + req_one_access = list(24); + stripe_color = "#e6ab22" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/engineering/atmos/monitoring) +"bS" = ( +/obj/machinery/biogenerator, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/milspec/color/green/half{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hydroponics) +"bT" = ( +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/turf/simulated/wall/bay/r_wall/steel, +/area/engineering/storage) +"bU" = ( +/obj/structure/filingcabinet, +/obj/machinery/light, +/obj/machinery/alarm/angled{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/quartermaster/qm) +"bV" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/book/manual/bar_guide, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -24 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/stellardelight/deck2/barbackroom) +"bW" = ( +/obj/effect/floor_decal/milspec/cargo, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/quartermaster/storage) +"bX" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/aftstarboard) +"bY" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/stellardelight/deck2/aftport) +"bZ" = ( +/obj/machinery/computer/atmoscontrol, +/obj/machinery/light/floortube{ + dir = 1; + pixel_y = 6 + }, +/obj/machinery/requests_console/preset/engineering{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/engineering_monitoring) +"ca" = ( +/obj/structure/medical_stand, +/turf/simulated/floor/tiled/white, +/area/medical/surgery) +"cb" = ( +/obj/structure/table/fancyblack, +/turf/simulated/floor/carpet/sblucarpet, +/area/stellardelight/deck2/briefingroom) +"cc" = ( +/obj/machinery/power/smes/buildable{ + RCon_tag = "Engine - Core"; + charge = 2e+006; + input_attempt = 1; + input_level = 200000; + name = "Engine"; + output_level = 250000 + }, +/obj/structure/cable/cyan{ + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/engineering/storage) +"cd" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/floodlight, +/turf/simulated/floor/plating, +/area/engineering/storage) +"ce" = ( +/obj/machinery/vending/wardrobe/cargodrobe, +/obj/machinery/status_display/supply_display{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/quartermaster/storage) +"cf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/engine_eva) +"cg" = ( +/obj/structure/bed/chair/comfy/blue, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/requests_console/preset/bridge{ + pixel_y = 30 + }, +/obj/structure/cable/blue{ + icon_state = "4-8" + }, +/turf/simulated/floor/carpet/sblucarpet, +/area/stellardelight/deck2/briefingroom) +"ch" = ( +/turf/simulated/wall/bay/r_wall/green, +/area/crew_quarters/kitchen) +"ci" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/aftport) +"cj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/aftport) +"ck" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/reagent_containers/spray/cleaner{ + desc = "Someone has crossed out the 'Space' from Space Cleaner and written in Chemistry. Scrawled on the back is, 'Okay, whoever filled this with polytrinic acid, it was only funny the first time. It was hard enough replacing the CMO's first cat!'"; + name = "Chemistry Cleaner" + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/chemistry) +"cl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/wall/bay/r_wall/orange, +/area/engineering/atmos/monitoring) +"cm" = ( +/obj/machinery/shieldgen, +/turf/simulated/floor/plating, +/area/engineering/storage) +"cn" = ( +/obj/structure/sign/painting/public{ + pixel_x = -30 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/port) +"co" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals_central5, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"cp" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/power/thermoregulator, +/turf/simulated/floor/plating, +/area/engineering/storage) +"cq" = ( +/obj/machinery/air_sensor{ + frequency = 1438; + id_tag = "burn_chamber"; + output = 63 + }, +/obj/machinery/camera/network/engine, +/turf/simulated/floor/reinforced/airless, +/area/stellardelight/deck2/combustionworkshop) +"cr" = ( +/obj/structure/cable/cyan{ + icon_state = "1-2" + }, +/turf/simulated/floor/airless, +/area/engineering/engine_room) +"cs" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/machinery/newscaster{ + pixel_y = 28 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/aftport) +"ct" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/eris/dark/cargo, +/area/crew_quarters/recreation_area) +"cu" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/turf/simulated/floor/tiled/freezer/cold, +/area/crew_quarters/kitchen) +"cv" = ( +/turf/simulated/wall/bay/r_wall/steel, +/area/stellardelight/deck2/fuelstorage) +"cw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/crew_quarters/kitchen) +"cx" = ( +/obj/machinery/atmospherics/pipe/tank/nitrous_oxide, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"cy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 8; + name = "Void"; + sortType = "Void" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/quartermaster/storage) +"cz" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/sign/department/cargo{ + pixel_x = 32 + }, +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/aftport) +"cA" = ( +/obj/structure/sign/poster{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/starboard) +"cB" = ( +/obj/structure/closet/crate/bin, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/stellardelight/deck2/barbackroom) +"cC" = ( +/obj/structure/flora/pottedplant/decorative, +/turf/simulated/floor/tiled/eris/dark/cargo, +/area/crew_quarters/recreation_area) +"cD" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/medical/surgery2) +"cE" = ( +/obj/machinery/atmospherics/pipe/tank/oxygen, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"cF" = ( +/obj/structure/cable/orange{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/engine_eva) +"cG" = ( +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/obj/structure/cable/orange{ + icon_state = "2-8" + }, +/obj/structure/cable/orange{ + icon_state = "1-8" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck2/exterior) +"cH" = ( +/obj/machinery/requests_console{ + department = "Cargo Bay"; + departmentType = 2; + dir = 8; + pixel_x = 28 + }, +/turf/simulated/floor/wood, +/area/quartermaster/qm) +"cI" = ( +/obj/structure/sign/painting/public{ + pixel_y = 30 + }, +/obj/structure/sign/painting/public{ + pixel_y = -30 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5, +/turf/simulated/floor/tiled, +/area/storage/art) +"cJ" = ( +/obj/structure/bed/chair/comfy/blue, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/blue{ + icon_state = "4-8" + }, +/turf/simulated/floor/carpet/sblucarpet, +/area/stellardelight/deck2/briefingroom) +"cK" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/aftport) +"cL" = ( +/obj/structure/cable/cyan{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/engineering/engine_room) +"cM" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/monitoring) +"cN" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + id_tag = "engine_airlock"; + pixel_y = 24; + req_one_access = list(10,11); + tag_airpump = "engine_airpump"; + tag_chamber_sensor = "engine_sensor"; + tag_exterior_door = "engine_exterior"; + tag_interior_door = "engine_interior" + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + frequency = 1379; + id_tag = "engine_airpump" + }, +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/engineering/engine_room) +"cO" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/port) +"cP" = ( +/obj/machinery/alarm/angled{ + dir = 8 + }, +/obj/effect/floor_decal/milspec/color/black/corner, +/obj/effect/floor_decal/milspec/color/silver/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"cQ" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/hatch{ + dir = 4; + name = "maintenance access"; + req_access = list(25); + stripe_color = "#454545" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck2/barbackroom) +"cR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/cmostore) +"cS" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/starboard) +"cT" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck2/exterior) +"cU" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/conveyor{ + dir = 1; + id = "cargounload" + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/quartermaster/storage) +"cV" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/landmark{ + name = "morphspawn" + }, +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/portaft) +"cW" = ( +/obj/structure/table/standard, +/obj/machinery/microwave, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/button/remote/blast_door{ + id = "kitchenlockdown"; + name = "Window Lockdown"; + pixel_x = 2; + pixel_y = 26 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/crew_quarters/kitchen) +"cX" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/machinery/door/blast/angled/open{ + dir = 2; + id = "qmwindows"; + name = "Privagy Shutters" + }, +/obj/structure/low_wall/bay/reinforced/brown, +/turf/simulated/floor, +/area/quartermaster/qm) +"cY" = ( +/obj/machinery/light, +/obj/effect/floor_decal/milspec/color/blue/half, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"cZ" = ( +/obj/item/device/flashlight/lamp/green{ + pixel_y = 7 + }, +/obj/item/weapon/folder/blue_captain, +/obj/structure/table/darkglass, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/requests_console/preset/captain{ + pixel_x = -30 + }, +/turf/simulated/floor/carpet/blucarpet, +/area/crew_quarters/captain) +"da" = ( +/obj/structure/cable/orange{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/locker_room) +"db" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/paper{ + info = "For those who didn't know yet, the big blue box in here is a 'grid checker' which will shut off the power if a dangerous power spike erupts into the powernet, shutting everything down protects everything from electrical damage, however the outages can be disruptive to ship operations, so it is designed to restore power after a somewhat significant delay, up to fifteen minutes or so. The grid checker can be manually hacked in order to end the outage sooner. To do that, you must cut three specific wires which do not cause a red light to shine, then pulse a fourth wire. Electrical protection is highly recommended when doing maintenance on the grid checker."; + name = "grid checker info" + }, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/storage/box/lights/mixed, +/turf/simulated/floor/plating, +/area/engineering/storage) +"dc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/structure/cable/white{ + 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 = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/turf/simulated/floor/tiled/eris/white/cargo, +/area/stellardelight/deck2/triage) +"dd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/engineering/storage) +"de" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/starboardfore) +"df" = ( +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/cable, +/obj/machinery/power/grid_checker, +/turf/simulated/floor/plating, +/area/engineering/storage) +"dg" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/chemistry) +"dh" = ( +/obj/structure/table/woodentable, +/obj/machinery/computer/med_data/laptop{ + dir = 8 + }, +/turf/simulated/floor/carpet/blue, +/area/medical/psych) +"di" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/sign/poster{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck2/fuelstorage) +"dj" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/aftport) +"dk" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck2/exterior) +"dl" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/plating, +/area/engineering/storage) +"dm" = ( +/obj/item/device/radio/intercom{ + dir = 1; + pixel_x = -32; + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/eris/cafe, +/area/crew_quarters/kitchen) +"dn" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/machinery/disposal/wall, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/port) +"do" = ( +/turf/simulated/wall/bay/brown, +/area/quartermaster/storage) +"dp" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/milspec/color/blue/half{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/central) +"dq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/quartermaster/storage) +"dr" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/stellardelight/deck2/triage) +"ds" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/stellardelight/deck2/triage) +"dt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 1 + }, +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/monitoring) +"du" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/quartermaster/qm) +"dv" = ( +/obj/structure/window/reinforced{ + dir = 8; + pixel_x = -4 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/bed/chair/comfy/brown, +/turf/simulated/floor/glass/reinforced, +/area/stellardelight/deck2/fore) +"dw" = ( +/obj/item/weapon/stool/padded, +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/bar) +"dx" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 8 + }, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/portsolars) +"dy" = ( +/obj/machinery/camera/network/halls{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/starboard) +"dz" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/aftport) +"dA" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/structure/low_wall/bay/reinforced/orange, +/turf/simulated/floor, +/area/engineering/workshop) +"dB" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/central) +"dC" = ( +/obj/structure/railing/grey, +/obj/structure/railing/grey{ + dir = 4 + }, +/turf/simulated/open, +/area/maintenance/stellardelight/deck2/portaft) +"dD" = ( +/obj/structure/table/standard, +/obj/item/stack/nanopaste, +/obj/machinery/power/apc/angled{ + dir = 1 + }, +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/white, +/area/medical/surgery) +"dE" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/structure/flora/pottedplant/minitree, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/starboard) +"dF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/grass, +/area/hydroponics) +"dG" = ( +/obj/effect/floor_decal/emblem/stellardelight{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"dH" = ( +/obj/machinery/atmospherics/binary/circulator{ + anchored = 1; + dir = 1 + }, +/obj/machinery/camera/network/engine{ + dir = 4 + }, +/turf/simulated/floor, +/area/stellardelight/deck2/combustionworkshop) +"dI" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/aftstarboard) +"dJ" = ( +/obj/machinery/status_display/supply_display{ + pixel_x = -32 + }, +/turf/simulated/floor/wood, +/area/quartermaster/qm) +"dK" = ( +/obj/machinery/computer/transhuman/designer{ + dir = 8 + }, +/obj/structure/sign/painting/library_secure{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/reception) +"dL" = ( +/obj/structure/stairs/spawner/north, +/obj/structure/railing/grey{ + dir = 4 + }, +/turf/simulated/floor, +/area/stellardelight/deck2/aftport) +"dM" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck2/exterior) +"dN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/quartermaster/storage) +"dO" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/portsolars) +"dP" = ( +/turf/simulated/floor/grass, +/area/hydroponics) +"dQ" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/monotile, +/area/hydroponics) +"dR" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/port) +"dS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/locker_room) +"dU" = ( +/obj/structure/bed/chair/backed_red{ + dir = 4 + }, +/obj/effect/landmark/start/visitor, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/crew_quarters/bar) +"dV" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/wall/bay/r_wall/steel, +/area/stellardelight/deck2/o2production) +"dX" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/port) +"dY" = ( +/obj/item/weapon/stool/padded{ + dir = 1 + }, +/obj/effect/landmark/start/visitor, +/turf/simulated/floor/tiled/eris/dark/cargo, +/area/crew_quarters/recreation_area) +"dZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/blue{ + icon_state = "4-8" + }, +/obj/structure/sign/painting/library_secure{ + pixel_y = 30 + }, +/turf/simulated/floor/carpet/sblucarpet, +/area/stellardelight/deck2/briefingroom) +"ea" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/floor_decal/milspec/color/green/half{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hydroponics) +"eb" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4; + frequency = 1379; + id_tag = "d2_portmaint_airpump" + }, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + id_tag = "d2_portmaint_airlock"; + pixel_y = 24; + req_one_access = list(13); + tag_airpump = "d2_portmaint_airpump"; + tag_chamber_sensor = "d2_portmaint_sensor"; + tag_exterior_door = "d2_portmaint_exterior"; + tag_interior_door = "d2_portmaint_interior" + }, +/obj/machinery/airlock_sensor{ + dir = 1; + id_tag = "d2_portmaint_sensor"; + pixel_y = -24; + req_access = list(13) + }, +/obj/machinery/light/small, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/portsolars) +"ec" = ( +/obj/effect/floor_decal/milspec/color/blue/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/starboard) +"ed" = ( +/turf/simulated/floor/wood, +/area/quartermaster/qm) +"ee" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/cmostore) +"ef" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/obj/machinery/button/remote/airlock{ + desc = "A remote control switch for the medbay foyer."; + id = "MedbayFoyer W"; + name = "Medbay Doors Control"; + pixel_x = -6; + pixel_y = 32 + }, +/obj/effect/landmark/start/medical, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/reception) +"eg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/turf/simulated/wall/bay/r_wall/orange, +/area/stellardelight/deck2/fuelstorage) +"eh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/engineering/storage) +"ei" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/aftport) +"ej" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/effect/floor_decal/milspec/color/green/half, +/turf/simulated/floor/tiled, +/area/hydroponics) +"ek" = ( +/obj/structure/sign/directions/recreation{ + dir = 4; + pixel_x = 32 + }, +/obj/effect/floor_decal/milspec/color/black/corner, +/obj/effect/floor_decal/milspec/color/silver/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"el" = ( +/obj/machinery/shieldwallgen, +/turf/simulated/floor/plating, +/area/engineering/storage) +"em" = ( +/obj/effect/floor_decal/milspec/color/blue/half{ + dir = 1 + }, +/obj/item/device/radio/beacon, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/central) +"en" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/open, +/area/stellardelight/deck2/aftstarboard) +"ep" = ( +/obj/machinery/power/apc/angled{ + dir = 4; + name = "night shift APC"; + nightshift_setting = 2 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/starboardfore) +"eq" = ( +/turf/simulated/wall/bay/r_wall/orange, +/area/engineering/atmos/storage) +"er" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/carpet/sblucarpet, +/area/stellardelight/deck2/briefingroom) +"es" = ( +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 1; + name = "Sorting Office"; + sortType = "Sorting Office" + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/quartermaster/storage) +"et" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/monitoring) +"eu" = ( +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/red, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/monitoring) +"ev" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/floor_decal/industrial/outline, +/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/item/clothing/shoes/black, +/obj/item/device/communicator, +/turf/simulated/floor/holofloor/tiled/dark, +/area/crew_quarters/locker) +"ew" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/button/remote/blast_door{ + id = "bridgelockdown"; + name = "Bridge Lockdown"; + pixel_y = 2 + }, +/turf/simulated/floor/tiled/eris/dark/gray_platform, +/area/bridge) +"ex" = ( +/obj/structure/closet/hydrant{ + pixel_x = -32 + }, +/obj/effect/floor_decal/milspec/color/black/corner{ + dir = 1 + }, +/obj/effect/floor_decal/milspec/color/silver/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"ey" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/machinery/door/blast/angled/open{ + dir = 2; + id = "atmoswindowlockdown" + }, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/obj/structure/low_wall/bay/reinforced/steel, +/turf/simulated/floor, +/area/engineering/atmos/monitoring) +"ez" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/black{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"eA" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/wall/bay/r_wall/steel, +/area/maintenance/stellardelight/deck2/starboardfore) +"eB" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/aftport) +"eC" = ( +/turf/simulated/wall/bay/steel, +/area/storage/primary) +"eD" = ( +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/structure/sign/directions/stairs_up{ + pixel_x = 32 + }, +/obj/structure/sign/directions/stairs_down{ + dir = 1; + pixel_x = 32; + pixel_y = 6 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/aftport) +"eE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/portsolars) +"eF" = ( +/obj/structure/table/reinforced, +/obj/machinery/alarm/angled, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/item/weapon/storage/briefcase/inflatable{ + pixel_x = 3; + pixel_y = 6 + }, +/obj/item/weapon/storage/briefcase/inflatable{ + pixel_y = 3 + }, +/obj/item/weapon/storage/briefcase/inflatable{ + pixel_x = -3 + }, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/engine_eva) +"eG" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck2/o2production) +"eH" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/monitoring) +"eI" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"eJ" = ( +/obj/structure/table/reinforced, +/obj/machinery/chemical_dispenser/full, +/obj/machinery/firealarm/angled{ + dir = 8 + }, +/obj/machinery/camera/network/medbay, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/chemistry) +"eK" = ( +/obj/structure/table/steel, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/storage/tech) +"eL" = ( +/obj/machinery/camera/network/halls{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/port) +"eM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker) +"eN" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/aftstarboard) +"eO" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 24 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/aftstarboard) +"eP" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/aftport) +"eQ" = ( +/obj/structure/cable/orange{ + 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/machinery/requests_console/preset/engineering{ + pixel_x = 30 + }, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/workshop) +"eR" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/quartermaster/storage) +"eS" = ( +/obj/structure/table/glass, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/computer/med_data/laptop, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/reception) +"eT" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/aftstarboard) +"eU" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck2/o2production) +"eV" = ( +/obj/structure/sign/directions/recreation{ + dir = 8; + pixel_x = -32 + }, +/obj/effect/floor_decal/milspec/color/black/corner{ + dir = 1 + }, +/obj/effect/floor_decal/milspec/color/silver/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"eW" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 6 + }, +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck2/exterior) +"eX" = ( +/obj/machinery/alarm/angled{ + dir = 4 + }, +/obj/effect/floor_decal/milspec/color/black/corner{ + dir = 1 + }, +/obj/effect/floor_decal/milspec/color/silver/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"eY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker) +"eZ" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/central) +"fa" = ( +/obj/machinery/door/window/westright{ + dir = 1; + req_one_access = list(35,28) + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/grass, +/area/hydroponics) +"fb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/wood, +/area/medical/psych) +"fc" = ( +/obj/structure/bed/chair/bay/shuttle{ + dir = 4 + }, +/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod{ + frequency = 1380; + id_tag = "starboard_escape_pod"; + pixel_y = 24 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck2/starboardescape) +"fd" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/random/trash_pile, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/starboardfore) +"fe" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 8 + }, +/turf/simulated/floor, +/area/stellardelight/deck2/starboardescape) +"ff" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/obj/machinery/atmospherics/binary/pump/high_power/on, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"fg" = ( +/obj/machinery/camera/network/medbay{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/surgery2) +"fh" = ( +/obj/structure/table/reinforced, +/obj/machinery/reagentgrinder, +/obj/item/stack/material/phoron, +/obj/item/stack/material/phoron, +/obj/item/stack/material/phoron, +/obj/item/stack/material/phoron, +/obj/item/stack/material/phoron, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/chemistry) +"fi" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/crew_quarters/bar) +"fk" = ( +/obj/machinery/vending/engivend, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/locker_room) +"fl" = ( +/turf/simulated/wall/bay/steel, +/area/crew_quarters/locker) +"fm" = ( +/obj/machinery/vending/wardrobe/engidrobe, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/locker_room) +"fn" = ( +/obj/structure/sign/directions/evac{ + dir = 6; + pixel_x = -32 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/aftport) +"fo" = ( +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/item/device/perfect_tele{ + name = "manager's translocator" + }, +/obj/structure/table/darkglass, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/landmark/vermin, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"fp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/bar) +"fr" = ( +/obj/structure/sign/painting/public{ + pixel_x = -30 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/port) +"fs" = ( +/obj/machinery/power/apc/angled{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/starboard) +"ft" = ( +/obj/machinery/vitals_monitor, +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/cmostore) +"fu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/white/cargo, +/area/stellardelight/deck2/triage) +"fv" = ( +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/central) +"fw" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/portsolars) +"fx" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/white/cargo, +/area/stellardelight/deck2/triage) +"fz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/quartermaster/storage) +"fA" = ( +/obj/structure/cable/orange{ + 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/eris/dark/orangecorner, +/area/engineering/engine_eva) +"fB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/crew_quarters/bar) +"fF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/structure/cable/white{ + 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/eris/white/bluecorner, +/area/medical/cmostore) +"fG" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/machinery/camera/network/engineering{ + dir = 1 + }, +/turf/simulated/floor, +/area/engineering/atmos/monitoring) +"fI" = ( +/obj/effect/floor_decal/milspec/color/white/corner{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/central) +"fJ" = ( +/turf/simulated/open, +/area/stellardelight/deck2/aftstarboard) +"fK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6, +/turf/simulated/floor/tiled/eris/dark/cargo, +/area/crew_quarters/recreation_area) +"fL" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/landmark/vermin, +/obj/machinery/station_slot_machine, +/turf/simulated/floor/tiled/eris/dark/cargo, +/area/crew_quarters/recreation_area) +"fN" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "\improper HIGH VOLTAGE"; + pixel_y = -32 + }, +/obj/structure/low_wall/bay/reinforced/orange, +/turf/simulated/floor, +/area/engineering/engine_room) +"fO" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/stellardelight/deck2/triage) +"fP" = ( +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/obj/structure/sign/painting/library_secure{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled/eris/white/cargo, +/area/stellardelight/deck2/triage) +"fQ" = ( +/obj/structure/lattice, +/obj/structure/cable/orange{ + icon_state = "32-2" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/open, +/area/maintenance/stellardelight/deck2/atmos) +"fR" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/port) +"fT" = ( +/obj/structure/table/reinforced, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/fiftyspawner/steel, +/obj/structure/closet/walllocker_double/north{ + dir = 4; + pixel_x = 32; + pixel_y = 0 + }, +/obj/fiftyspawner/wood, +/obj/item/stack/material/glass/phoronrglass{ + amount = 20 + }, +/obj/fiftyspawner/rods, +/obj/fiftyspawner/rods, +/obj/fiftyspawner/plastic, +/obj/fiftyspawner/plastic, +/obj/item/stack/material/plasteel{ + amount = 30 + }, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/workshop) +"fU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/locker_room) +"fV" = ( +/turf/simulated/floor, +/area/bridge) +"fW" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/aftstarboard) +"fX" = ( +/obj/structure/bed/chair/bay/shuttle{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck2/portescape) +"fY" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/conveyor_switch/oneway{ + id = "cargoload" + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/quartermaster/storage) +"fZ" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/low_wall/bay/reinforced/orange, +/turf/simulated/floor, +/area/engineering/storage) +"ga" = ( +/obj/machinery/alarm/angled{ + dir = 8 + }, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/monitoring) +"gb" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/smartfridge/sheets/persistent_lossy, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/quartermaster/storage) +"gd" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/starboardsolars) +"ge" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/red, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck2/o2production) +"gf" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/aftport) +"gg" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/obj/machinery/button/remote/airlock{ + desc = "A remote control switch for the medbay foyer."; + id = "MedbayFoyer W"; + name = "Medbay Doors Control"; + pixel_x = -6; + pixel_y = 32 + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/landmark/start/medical, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/reception) +"gh" = ( +/obj/structure/table/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/circuitboard/robotics{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/weapon/circuitboard/mecha_control, +/obj/item/weapon/circuitboard/aifixer{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/storage/tech) +"gi" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck2/exterior) +"gj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/eris/cafe, +/area/crew_quarters/kitchen) +"gk" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/table/rack, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/random/maintenance/engineering, +/obj/random/maintenance, +/obj/random/maintenance, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/starboardfore) +"gl" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/milspec/color/black/corner{ + dir = 1 + }, +/obj/effect/floor_decal/milspec/color/silver/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"gm" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{ + dir = 4; + frequency = 1380; + id_tag = "port_escape_berth"; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/eris/white/danger, +/area/stellardelight/deck2/port) +"gn" = ( +/obj/structure/displaycase, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"go" = ( +/obj/machinery/atmospherics/binary/pump/on{ + dir = 8; + name = "Air to Ports" + }, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/monitoring) +"gp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/starboardsolars) +"gq" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/status_display/supply_display{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/quartermaster/storage) +"gr" = ( +/obj/structure/table/standard, +/obj/machinery/microwave, +/turf/simulated/floor/tiled/eris/cafe, +/area/crew_quarters/kitchen) +"gs" = ( +/obj/machinery/atmospherics/unary/vent_pump/engine{ + external_pressure_bound = 100; + external_pressure_bound_default = 0; + frequency = 1438; + icon_state = "map_vent_in"; + id_tag = "cooling_out"; + initialize_directions = 4; + pump_direction = 0; + use_power = 1 + }, +/turf/simulated/floor/reinforced/airless, +/area/stellardelight/deck2/combustionworkshop) +"gu" = ( +/obj/machinery/firealarm/angled, +/obj/item/device/defib_kit/loaded, +/obj/structure/table/reinforced, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/cmostore) +"gv" = ( +/obj/structure/lattice, +/obj/structure/cable{ + icon_state = "32-2" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/open, +/area/maintenance/stellardelight/deck2/starboardfore) +"gw" = ( +/obj/effect/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/aftport) +"gx" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/door/window/westright{ + req_one_access = list(35,28) + }, +/obj/effect/floor_decal/milspec/color/green, +/turf/simulated/floor/tiled, +/area/hydroponics) +"gy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/monitoring) +"gA" = ( +/obj/structure/railing/grey{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/stellardelight/deck2/fore) +"gB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/monitoring) +"gC" = ( +/obj/structure/cable/blue{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/camera/network/command{ + dir = 10 + }, +/turf/simulated/floor/tiled/eris/dark/gray_platform, +/area/bridge) +"gE" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/camera/network/engineering{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/engineering/storage) +"gF" = ( +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/obj/structure/cable/orange{ + icon_state = "2-8" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck2/exterior) +"gG" = ( +/obj/effect/floor_decal/milspec/color/green/half{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 2 + }, +/obj/machinery/disposal/wall{ + dir = 4; + pixel_x = -24; + plane = -34 + }, +/turf/simulated/floor/tiled, +/area/hydroponics) +"gH" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/reception) +"gJ" = ( +/obj/structure/medical_stand, +/turf/simulated/floor/tiled/white, +/area/medical/surgery2) +"gK" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/aftport) +"gL" = ( +/obj/effect/floor_decal/milspec/color/orange/half{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/aftstarboard) +"gM" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/green{ + dir = 1 + }, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"gN" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/quartermaster/storage) +"gO" = ( +/obj/structure/table/standard, +/obj/item/device/destTagger{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/weapon/packageWrap, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/quartermaster/storage) +"gP" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/stellardelight/deck2/barbackroom) +"gQ" = ( +/obj/machinery/gibber, +/turf/simulated/floor/tiled/freezer/cold, +/area/crew_quarters/kitchen) +"gR" = ( +/obj/structure/closet/firecloset, +/obj/machinery/power/apc/angled{ + dir = 8 + }, +/obj/structure/cable/green, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/landmark/vermin, +/turf/simulated/floor/tiled/techmaint, +/area/storage/primary) +"gS" = ( +/obj/structure/dispenser, +/turf/simulated/floor/plating, +/area/engineering/storage) +"gT" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/locker_room) +"gU" = ( +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/engineering/storage) +"gV" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/engineering/storage) +"gW" = ( +/obj/machinery/power/tesla_coil, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/simulated/floor/airless, +/area/engineering/engine_room) +"gX" = ( +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/engine_eva) +"gY" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/black{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"gZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/turf/simulated/floor, +/area/stellardelight/deck2/combustionworkshop) +"ha" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/alarm/angled{ + dir = 8 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/starboardsolars) +"hb" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/starboardfore) +"hc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/bed/chair/bay/comfy/blue{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/bridge) +"hd" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"he" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible/green, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"hf" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/wall/bay/r_wall/green, +/area/hydroponics) +"hg" = ( +/obj/structure/shuttle/window, +/obj/structure/grille, +/turf/simulated/floor, +/area/stellardelight/deck2/portescape) +"hh" = ( +/obj/structure/cable/green{ + 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/monotile, +/area/hydroponics) +"hi" = ( +/obj/structure/closet/walllocker_double/medical/north, +/obj/item/weapon/storage/box/body_record_disk, +/obj/item/device/retail_scanner/medical, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/cmostore) +"hj" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/stellardelight/deck2/triage) +"hk" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck2/exterior) +"hl" = ( +/turf/simulated/wall/bay/green, +/area/crew_quarters/kitchen) +"hm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/eris/dark/cargo, +/area/crew_quarters/recreation_area) +"hn" = ( +/turf/simulated/wall/bay/white, +/area/medical/cryo) +"ho" = ( +/obj/machinery/optable, +/turf/simulated/floor/tiled/white, +/area/medical/surgery2) +"hp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/reception) +"hq" = ( +/obj/structure/sign/department/ass, +/turf/simulated/wall/bay/brown, +/area/storage/primary) +"hr" = ( +/obj/structure/sign/directions/evac{ + pixel_x = 32; + pixel_y = -32 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/port) +"hs" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/standard/glass{ + door_color = "#e6ab22"; + name = "Engineering EVA Storage"; + req_access = null; + req_one_access = list(11,24); + stripe_color = "#913013" + }, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_ridged, +/area/engineering/workshop) +"ht" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/quartermaster/storage) +"hu" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck2/o2production) +"hw" = ( +/obj/structure/table/standard, +/obj/machinery/alarm/angled, +/turf/simulated/floor/tiled/white, +/area/medical/surgery) +"hx" = ( +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/stellardelight/deck2/triage) +"hy" = ( +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/aftstarboard) +"hz" = ( +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/obj/item/stack/cable_coil/yellow, +/turf/simulated/floor/airless, +/area/stellardelight/deck2/exterior) +"hA" = ( +/obj/structure/closet/walllocker_double/south{ + dir = 2; + pixel_y = 30 + }, +/obj/item/weapon/storage/pill_bottle/dice_nerd, +/obj/item/weapon/storage/pill_bottle/dice, +/obj/item/weapon/storage/dicecup, +/obj/item/weapon/deck/cah, +/obj/item/weapon/deck/cah/black, +/obj/item/weapon/deck/cards, +/obj/item/weapon/deck/cards/casino, +/turf/simulated/floor/tiled/eris/dark/cargo, +/area/crew_quarters/recreation_area) +"hC" = ( +/obj/structure/filingcabinet/chestdrawer{ + name = "Medical Forms" + }, +/turf/simulated/floor/carpet/blue, +/area/medical/psych) +"hD" = ( +/obj/structure/bed/chair/sofa/corp/left{ + dir = 4 + }, +/obj/effect/landmark/start/visitor, +/turf/simulated/floor/carpet/turcarpet, +/area/crew_quarters/recreation_area) +"hF" = ( +/obj/machinery/vending/wallmed1{ + dir = 1; + pixel_y = -30 + }, +/turf/simulated/floor/tiled/white, +/area/medical/surgery2) +"hH" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/monotile, +/area/hydroponics) +"hI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 6 + }, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck2/exterior) +"hJ" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/aftstarboard) +"hK" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/red{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/monitoring) +"hL" = ( +/obj/structure/table/reinforced, +/obj/machinery/light, +/obj/machinery/power/apc/angled{ + dir = 4 + }, +/obj/structure/cable/white, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/chemistry) +"hM" = ( +/obj/structure/table/standard, +/obj/machinery/alarm/angled, +/turf/simulated/floor/tiled/white, +/area/medical/surgery2) +"hN" = ( +/obj/machinery/atmospherics/omni/atmos_filter{ + name = "N2/O2 Filter"; + tag_east = 4; + tag_north = 2; + tag_south = 3; + tag_west = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"hO" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/structure/low_wall/bay/reinforced/steel, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/portfore) +"hP" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/floor_decal/industrial/outline, +/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/item/clothing/shoes/black, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/item/device/communicator, +/turf/simulated/floor/holofloor/tiled/dark, +/area/crew_quarters/locker) +"hQ" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/firstaid/surgery, +/obj/item/device/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/white, +/area/medical/surgery2) +"hR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/eris/white/cargo, +/area/stellardelight/deck2/triage) +"hS" = ( +/obj/effect/floor_decal/milspec/cargo, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/quartermaster/storage) +"hU" = ( +/obj/structure/disposalpipe/tagger/partial{ + dir = 8; + name = "partial tagger - Sorting Office"; + sort_tag = "Sorting Office" + }, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/quartermaster/storage) +"hV" = ( +/obj/effect/floor_decal/industrial/loading{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/surgery) +"hW" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/quartermaster/storage) +"hX" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/engineering/engine_room) +"hY" = ( +/obj/item/weapon/stool/padded{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/landmark/start/bartender, +/turf/simulated/floor/lino, +/area/crew_quarters/bar) +"hZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/eris/cafe, +/area/crew_quarters/kitchen) +"ib" = ( +/obj/machinery/power/grounding_rod, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/simulated/floor/airless, +/area/engineering/engine_room) +"ic" = ( +/obj/structure/bed/chair/backed_red{ + dir = 8 + }, +/obj/effect/landmark/start/visitor, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/crew_quarters/bar) +"ie" = ( +/turf/simulated/wall/bay/r_wall/steel, +/area/maintenance/stellardelight/deck2/portsolars) +"if" = ( +/obj/machinery/vending/hydronutrients, +/obj/effect/floor_decal/milspec/color/green, +/turf/simulated/floor/tiled, +/area/hydroponics) +"ig" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/monitoring) +"ih" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"ii" = ( +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/obj/effect/floor_decal/milspec/color/green/half, +/turf/simulated/floor/tiled, +/area/hydroponics) +"ij" = ( +/obj/machinery/computer/ship/navigation/telescreen{ + pixel_x = 32; + pixel_y = -32 + }, +/obj/structure/table/bench/steel, +/obj/effect/landmark/start/visitor, +/turf/simulated/floor/tiled/eris/dark/cargo, +/area/crew_quarters/recreation_area) +"ik" = ( +/obj/effect/floor_decal/corner_steel_grid{ + dir = 10 + }, +/obj/machinery/bodyscanner{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/white/cargo, +/area/stellardelight/deck2/triage) +"il" = ( +/obj/machinery/vending/assist, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/storage/tech) +"im" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/monitoring) +"in" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/quartermaster/storage) +"io" = ( +/obj/structure/bed/chair/bay/comfy/brown{ + dir = 8 + }, +/obj/effect/landmark/start/intern, +/turf/simulated/floor/carpet, +/area/crew_quarters/recreation_area) +"ip" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/machinery/door/blast/angled/open{ + id = "psychshutter"; + name = "Privacy Shutter" + }, +/obj/structure/low_wall/bay/reinforced/white, +/turf/simulated/floor, +/area/medical/psych) +"iq" = ( +/obj/structure/closet/hydrant{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/stellardelight/deck2/triage) +"ir" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/wall/bay/r_wall/steel, +/area/crew_quarters/bar) +"is" = ( +/obj/structure/cable/cyan{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/engineering/engine_room) +"it" = ( +/obj/machinery/alarm/angled{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/wood, +/area/stellardelight/deck2/briefingroom) +"iu" = ( +/obj/effect/floor_decal/milspec/color/blue/half{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/starboard) +"iv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/engineering_monitoring) +"iw" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/locker_room) +"ix" = ( +/obj/structure/bed/chair/sofa/corp{ + dir = 1 + }, +/obj/effect/landmark/start/visitor, +/turf/simulated/floor/carpet/turcarpet, +/area/crew_quarters/recreation_area) +"iy" = ( +/obj/machinery/atm{ + pixel_y = 30 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"iz" = ( +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/portaft) +"iA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/turf/simulated/wall/bay/r_wall/orange, +/area/engineering/atmos/storage) +"iB" = ( +/obj/structure/filingcabinet/filingcabinet, +/obj/machinery/requests_console/preset/cargo{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/quartermaster/storage) +"iC" = ( +/obj/structure/sink/kitchen{ + pixel_y = 20 + }, +/obj/machinery/firealarm/angled{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/crew_quarters/kitchen) +"iD" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/surgery) +"iE" = ( +/obj/structure/railing/grey{ + dir = 8 + }, +/obj/structure/sign/directions/evac{ + dir = 1; + pixel_x = -32 + }, +/obj/structure/sign/directions/stairs_up{ + dir = 1; + pixel_x = -32; + pixel_y = 6 + }, +/turf/simulated/floor, +/area/stellardelight/deck2/aftstarboard) +"iF" = ( +/obj/machinery/door/window/brigdoor/northleft{ + dir = 4; + name = "Kitchen"; + req_access = list(28) + }, +/obj/machinery/camera/network/civilian, +/turf/simulated/floor/tiled/eris/cafe, +/area/crew_quarters/kitchen) +"iG" = ( +/obj/structure/cable, +/obj/machinery/power/smes/buildable{ + RCon_tag = "Power - Main"; + charge = 2e+007; + cur_coils = 4; + input_attempt = 1; + input_level = 500000; + name = "Main"; + output_level = 1e+006 + }, +/turf/simulated/floor/plating, +/area/engineering/storage) +"iH" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck2/exterior) +"iI" = ( +/obj/structure/table/reinforced, +/obj/machinery/light{ + dir = 4 + }, +/obj/item/weapon/reagent_containers/spray/cleaner, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/workshop) +"iJ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/monitoring) +"iK" = ( +/obj/item/weapon/stock_parts/manipulator, +/obj/item/weapon/stock_parts/matter_bin, +/obj/item/weapon/stock_parts/matter_bin, +/obj/item/weapon/stock_parts/manipulator, +/obj/structure/table/rack/steel, +/obj/item/weapon/stock_parts/console_screen, +/obj/item/weapon/circuitboard/autolathe, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/storage/tech) +"iL" = ( +/obj/structure/grille, +/obj/structure/shuttle/window, +/obj/effect/shuttle_landmark{ + base_area = /area/stellardelight/deck2/exterior; + base_turf = /turf/simulated/floor/airless; + docking_controller = "starboard_escape_berth"; + landmark_tag = "starboard_ship_berth"; + name = "Stellar Delight Escape Pod Starboard" + }, +/turf/simulated/floor, +/area/stellardelight/deck2/starboardescape) +"iM" = ( +/obj/structure/cable/blue{ + icon_state = "4-8" + }, +/obj/item/weapon/book/manual/command_guide, +/obj/item/weapon/book/manual/standard_operating_procedure, +/obj/item/weapon/book/manual/security_space_law, +/obj/structure/closet/walllocker_double/north, +/obj/item/weapon/book/manual/sd_guide, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"iN" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/standard/glass{ + name = "Hydroponics/Kitchen Access"; + req_one_access = list(35,28) + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/crew_quarters/kitchen) +"iO" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 4 + }, +/turf/simulated/floor/tiled/eris/dark/cargo, +/area/crew_quarters/recreation_area) +"iP" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/requests_console/preset/medical{ + pixel_y = -30 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/reception) +"iQ" = ( +/turf/simulated/wall/bay/r_wall/steel, +/area/maintenance/stellardelight/deck2/starboardfore) +"iR" = ( +/obj/machinery/power/tesla_coil, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow, +/turf/simulated/floor/airless, +/area/engineering/engine_room) +"iS" = ( +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/engineering_monitoring) +"iT" = ( +/obj/structure/table/woodentable, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/crew_quarters/bar) +"iU" = ( +/obj/machinery/power/pointdefense{ + id_tag = "sd_pd" + }, +/obj/effect/floor_decal/industrial/warning/full, +/obj/structure/cable/orange{ + icon_state = "0-2" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck2/exterior) +"iV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker) +"iW" = ( +/obj/machinery/button/remote/airlock{ + desc = "A remote control switch for the medbay foyer."; + dir = 8; + id = "MedbayFoyer W"; + name = "Medbay Doors Control"; + pixel_x = 25 + }, +/obj/structure/cable/white{ + 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 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/stellardelight/deck2/triage) +"iX" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/angled_bay/standard/glass{ + door_color = "#9c9c9c"; + name = "Bar"; + stripe_color = "#89bd66" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/crew_quarters/bar) +"iY" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/monotile, +/area/hydroponics) +"iZ" = ( +/turf/simulated/floor/tiled/monotile, +/area/hydroponics) +"ja" = ( +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/monitoring) +"jc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/chemistry) +"jd" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/closet/emergsuit_wall{ + dir = 4; + pixel_x = 27 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/port) +"jf" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/reagent_containers/glass/beaker/large, +/obj/item/weapon/reagent_containers/dropper, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/chemistry) +"jg" = ( +/obj/structure/table/reinforced, +/obj/random/tech_supply, +/obj/random/tech_supply, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/engine_eva) +"ji" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"jj" = ( +/obj/structure/easel, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled, +/area/storage/art) +"jk" = ( +/obj/structure/cable/blue{ + 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, +/area/stellardelight/deck2/starboard) +"jm" = ( +/obj/structure/table/reinforced, +/obj/item/device/gps/engineering{ + pixel_x = 3; + pixel_y = 6 + }, +/obj/item/device/gps/engineering{ + pixel_y = 3 + }, +/obj/item/device/gps/engineering{ + pixel_x = -3 + }, +/obj/machinery/camera/network/engineering{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/engine_eva) +"jn" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/starboardsolars) +"jo" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/structure/low_wall/bay/reinforced/green, +/turf/simulated/floor, +/area/hydroponics) +"jp" = ( +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/eris/white/cargo, +/area/stellardelight/deck2/triage) +"jq" = ( +/obj/machinery/power/apc/angled{ + dir = 4 + }, +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/cmostore) +"jr" = ( +/obj/structure/closet/emergsuit_wall{ + pixel_y = 29 + }, +/obj/effect/floor_decal/milspec/color/silver/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"js" = ( +/obj/structure/closet/secure_closet/atmos_personal, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck2/o2production) +"jt" = ( +/obj/machinery/vending/nifsoft_shop, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/aftport) +"jv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/eris/dark/cargo, +/area/crew_quarters/recreation_area) +"jx" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck2/exterior) +"jy" = ( +/obj/structure/sign/directions/cargo{ + pixel_x = -32; + pixel_y = -35 + }, +/obj/structure/sign/directions/medical{ + pixel_x = -32; + pixel_y = -29 + }, +/obj/effect/floor_decal/milspec/color/blue/corner{ + dir = 8 + }, +/obj/structure/sign/directions/engineering{ + pixel_x = -32; + pixel_y = -41 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"jz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/machinery/station_map{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/aftstarboard) +"jA" = ( +/obj/structure/table/rack{ + dir = 8; + layer = 2.6 + }, +/obj/machinery/door/window/northleft{ + name = "Atmospherics Hardsuits"; + req_access = list(24) + }, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/suit/space/void/atmos, +/obj/item/clothing/suit/space/void/atmos, +/obj/item/clothing/head/helmet/space/void/atmos, +/obj/item/clothing/head/helmet/space/void/atmos, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/engine_eva) +"jB" = ( +/obj/structure/railing/grey{ + dir = 8 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/starboardaft) +"jC" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"jD" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/quartermaster/storage) +"jE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/light, +/turf/simulated/floor, +/area/stellardelight/deck2/combustionworkshop) +"jF" = ( +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 1 + }, +/obj/effect/floor_decal/milspec/color/black/corner, +/obj/effect/floor_decal/milspec/color/silver/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"jG" = ( +/obj/structure/table/glass, +/obj/item/weapon/paper_bin{ + pixel_y = 5 + }, +/obj/item/weapon/pen, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/reception) +"jI" = ( +/obj/structure/table/woodentable, +/obj/structure/plushie/ian{ + dir = 8; + pixel_y = 6 + }, +/turf/simulated/floor/wood, +/area/medical/psych) +"jK" = ( +/obj/structure/table/glass, +/obj/machinery/camera/network/medbay{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/stellardelight/deck2/triage) +"jL" = ( +/obj/structure/cable/orange{ + icon_state = "1-4" + }, +/turf/simulated/wall/bay/r_wall/steel, +/area/maintenance/stellardelight/deck2/portsolars) +"jM" = ( +/obj/effect/floor_decal/milspec/color/green/half{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/turf/simulated/floor/tiled, +/area/hydroponics) +"jN" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/aftport) +"jO" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "\improper HIGH VOLTAGE"; + pixel_y = -32 + }, +/obj/structure/low_wall/bay/reinforced/steel, +/turf/simulated/floor, +/area/engineering/engine_room) +"jP" = ( +/obj/effect/floor_decal/milspec/color/silver/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"jQ" = ( +/turf/simulated/floor/reinforced, +/area/quartermaster/storage) +"jS" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/milspec/color/orange/half, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/aftstarboard) +"jT" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/structure/low_wall/bay/reinforced/steel, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/starboardsolars) +"jU" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/machinery/door/blast/angled/open{ + dir = 2; + id = "bridgelockdown" + }, +/obj/structure/low_wall/bay/reinforced/blue, +/turf/simulated/floor, +/area/bridge) +"jV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/monitoring) +"jW" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/cmostore) +"jX" = ( +/obj/structure/flora/pottedplant/minitree, +/obj/machinery/alarm/angled{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/medical/psych) +"jY" = ( +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/workshop) +"jZ" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/crate, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/quartermaster/storage) +"ka" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/cyan{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/angled_bay/standard/glass{ + door_color = "#e6ab22"; + name = "Particle Accelerator"; + req_access = list(10); + stripe_color = "#913013" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/engineering/engine_room) +"kb" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck2/triage) +"kc" = ( +/obj/machinery/computer/power_monitor, +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/bridge) +"kd" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"ke" = ( +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 24 + }, +/obj/item/device/radio/intercom/department/medbay{ + dir = 4; + pixel_x = 24 + }, +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/turf/simulated/floor/wood, +/area/medical/psych) +"kf" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/engineering/engine_room) +"kg" = ( +/obj/machinery/alarm/angled{ + dir = 4 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/portaft) +"kh" = ( +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable/orange{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/engineering_monitoring) +"ki" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = -32; + pixel_y = 32 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/crew_quarters/kitchen) +"kj" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/cmostore) +"kk" = ( +/obj/machinery/vending/blood, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/cmostore) +"kl" = ( +/obj/structure/window/reinforced{ + dir = 8; + pixel_x = -4 + }, +/obj/structure/flora/pottedplant/decorative, +/turf/simulated/floor/glass/reinforced, +/area/stellardelight/deck2/fore) +"km" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/green, +/obj/structure/cable/orange{ + icon_state = "1-4" + }, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/monitoring) +"kn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/disposal/wall{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/monitoring) +"ko" = ( +/obj/item/weapon/storage/secure/briefcase/ml3m_pack_med, +/obj/structure/table/reinforced, +/obj/machinery/alarm/angled{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/cmostore) +"kp" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/eris/dark/cargo, +/area/crew_quarters/recreation_area) +"kq" = ( +/obj/structure/closet/secure_closet/cargotech, +/obj/item/weapon/stamp/cargo, +/obj/item/weapon/storage/backpack/dufflebag, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/quartermaster/storage) +"kr" = ( +/obj/machinery/power/apc/angled{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"ks" = ( +/obj/structure/table/rack/steel, +/obj/item/weapon/circuitboard/mech_recharger{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/weapon/circuitboard/cell_charger{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/weapon/circuitboard/recharger{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/weapon/circuitboard/recharge_station{ + pixel_x = -1; + pixel_y = 1 + }, +/obj/item/weapon/circuitboard/arcade/battle, +/obj/item/weapon/circuitboard/arcade/clawmachine{ + pixel_x = 1; + pixel_y = -1 + }, +/obj/item/weapon/circuitboard/arcade/orion_trail{ + pixel_x = 2; + pixel_y = -2 + }, +/obj/item/weapon/circuitboard/jukebox{ + pixel_x = 3; + pixel_y = -3 + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/storage/tech) +"kt" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/open, +/area/stellardelight/deck2/aftport) +"ku" = ( +/obj/machinery/computer/ship/navigation/telescreen{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/crew_quarters/bar) +"kv" = ( +/obj/machinery/alarm/angled{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/floor_decal/milspec/color/orange/half{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/aftstarboard) +"kx" = ( +/obj/structure/disposalpipe/sortjunction/wildcard/flipped{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/quartermaster/storage) +"ky" = ( +/obj/structure/bed/chair/comfy/brown, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/carpet/blucarpet, +/area/crew_quarters/captain) +"kz" = ( +/obj/machinery/firealarm/angled{ + dir = 8 + }, +/obj/machinery/atmospherics/binary/pump{ + dir = 1; + name = "cold loop pump" + }, +/turf/simulated/floor, +/area/stellardelight/deck2/combustionworkshop) +"kA" = ( +/obj/structure/table/reinforced, +/obj/random/toolbox, +/obj/item/device/geiger, +/obj/machinery/alarm/angled{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/workshop) +"kB" = ( +/obj/structure/table/standard, +/obj/item/clothing/under/pizzaguy, +/obj/item/clothing/under/pizzaguy, +/obj/item/clothing/under/pizzaguy, +/obj/item/clothing/head/pizzaguy, +/obj/item/clothing/head/pizzaguy, +/obj/item/clothing/head/pizzaguy, +/obj/machinery/status_display/supply_display{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/quartermaster/storage) +"kC" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/stellardelight/deck2/triage) +"kD" = ( +/obj/machinery/door/airlock/angled_bay/standard/color{ + door_color = "#323d80"; + name = "Bridge"; + req_access = list(19); + req_one_access = list(19); + stripe_color = "#f7d35c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck2/briefingroom) +"kE" = ( +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/steel_ridged, +/area/crew_quarters/recreation_area) +"kF" = ( +/obj/machinery/camera/network/halls{ + dir = 1 + }, +/obj/effect/floor_decal/milspec/color/blue/half, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"kG" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/milspec/color/green/half{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hydroponics) +"kH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/storage/tech) +"kI" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/effect/landmark{ + name = "lightsout" + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/port) +"kJ" = ( +/obj/machinery/computer/card{ + dir = 4 + }, +/obj/machinery/light/floortube{ + dir = 8; + pixel_x = -6 + }, +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/bridge) +"kK" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 1; + name = "Bar"; + sortType = "Bar" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/portfore) +"kL" = ( +/obj/structure/cable/orange{ + icon_state = "1-8" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck2/exterior) +"kM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 10 + }, +/obj/structure/cable/orange{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/monitoring) +"kN" = ( +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/obj/structure/cable/orange{ + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/stellardelight/substation/engineering) +"kO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 5 + }, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/cmostore) +"kP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/red, +/turf/simulated/floor, +/area/stellardelight/deck2/combustionworkshop) +"kQ" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/black{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"kR" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/structure/low_wall/bay/reinforced/green, +/obj/machinery/door/blast/angled/open{ + dir = 4; + id = "botanylockdown" + }, +/turf/simulated/floor, +/area/hydroponics) +"kS" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"kT" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/standard/color{ + dir = 4; + door_color = "#e6ab22"; + fill_color = "#877242"; + name = "Tech Storage"; + req_access = list(23); + stripe_color = "#913013" + }, +/obj/structure/cable/orange{ + 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_ridged, +/area/engineering/engine_eva) +"kV" = ( +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 8 + }, +/obj/structure/sign/directions/bar{ + dir = 1; + pixel_x = 32 + }, +/obj/effect/floor_decal/milspec/color/black/corner, +/obj/effect/floor_decal/milspec/color/silver/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"kW" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"kX" = ( +/obj/machinery/vending/dinnerware, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/crew_quarters/kitchen) +"kY" = ( +/obj/machinery/power/apc/angled{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/simulated/floor/wood, +/area/quartermaster/qm) +"kZ" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 5; + pixel_y = 28 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/reception) +"la" = ( +/obj/effect/floor_decal/industrial/danger{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/monitoring) +"lc" = ( +/obj/structure/cable/white{ + 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/wood, +/area/medical/psych) +"ld" = ( +/obj/structure/table/glass, +/obj/machinery/photocopier/faxmachine{ + department = "Medical" + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/reception) +"le" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/door/airlock/angled_bay/standard/color{ + dir = 4; + door_color = "#a6753d"; + fill_color = "#75736f"; + name = "Quartermaster"; + req_access = list(41); + stripe_color = "#3b2b1a" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/quartermaster/qm) +"lf" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/floor_decal/milspec/color/green/half{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hydroponics) +"lg" = ( +/obj/structure/closet/secure_closet/captains, +/obj/item/clothing/glasses/omnihud/all, +/obj/item/weapon/disk/nuclear, +/obj/item/weapon/paper/dockingcodes/sd, +/obj/item/device/retail_scanner/command, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"lh" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/hatch{ + door_color = "#e6ab22"; + name = "maintenance access"; + req_one_access = list(24); + stripe_color = "#e6ab22" + }, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/engineering/atmos/storage) +"li" = ( +/obj/structure/table/steel, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/storage/tech) +"lj" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"lk" = ( +/obj/structure/table/rack{ + dir = 8; + layer = 2.6 + }, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/machinery/door/window/southright{ + dir = 1; + name = "Engineering Hardsuits"; + req_one_access = list(11) + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/suit/space/void/engineering, +/obj/item/clothing/suit/space/void/engineering, +/obj/item/clothing/head/helmet/space/void/engineering, +/obj/item/clothing/head/helmet/space/void/engineering, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/engine_eva) +"ll" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/milspec/color/blue/half{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/central) +"lm" = ( +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/engine_eva) +"ln" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/item/device/radio/beacon, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/aftport) +"lo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/bridge) +"lq" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'RADIOACTIVE AREA'"; + icon_state = "radiation"; + name = "\improper RADIOACTIVE AREA"; + pixel_x = -32 + }, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/obj/structure/cable/orange{ + icon_state = "2-4" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck2/exterior) +"lr" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/crew_quarters/kitchen) +"ls" = ( +/obj/structure/bed/chair/backed_red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/crew_quarters/bar) +"lt" = ( +/obj/effect/floor_decal/industrial/danger{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/monitoring) +"lu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/engineering/storage) +"lv" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/starboard) +"lw" = ( +/obj/structure/table/rack/steel, +/obj/item/weapon/circuitboard/powermonitor{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/weapon/circuitboard/stationalert_engineering{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/weapon/circuitboard/atmos_alert{ + pixel_x = -1; + pixel_y = 1 + }, +/obj/item/weapon/circuitboard/rcon_console, +/obj/item/weapon/circuitboard/atmoscontrol{ + pixel_x = 1; + pixel_y = -1 + }, +/obj/item/weapon/circuitboard/drone_control{ + pixel_x = 2; + pixel_y = -2 + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/storage/tech) +"lx" = ( +/obj/machinery/power/tesla_coil, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/turf/simulated/floor/airless, +/area/engineering/engine_room) +"ly" = ( +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 4 + }, +/obj/machinery/meter, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/monitoring) +"lz" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/landmark/start/chef, +/turf/simulated/floor/tiled/eris/cafe, +/area/crew_quarters/kitchen) +"lA" = ( +/obj/structure/cable/cyan{ + icon_state = "1-8" + }, +/obj/machinery/light/small, +/turf/simulated/floor/airless, +/area/engineering/engine_room) +"lB" = ( +/obj/structure/cable/blue{ + icon_state = "2-4" + }, +/obj/structure/cable/blue{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark/gray_platform, +/area/bridge) +"lC" = ( +/obj/machinery/computer/communications{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/carpet/blucarpet, +/area/crew_quarters/captain) +"lD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/camera/network/command{ + dir = 10 + }, +/turf/simulated/floor/tiled/eris/dark/gray_platform, +/area/bridge) +"lF" = ( +/obj/effect/landmark{ + name = "lightsout" + }, +/turf/simulated/floor, +/area/stellardelight/deck2/combustionworkshop) +"lG" = ( +/obj/structure/bed/chair/sofa/corp/right{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/carpet/turcarpet, +/area/crew_quarters/recreation_area) +"lI" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/door/window/westleft{ + req_one_access = list(35,28) + }, +/obj/effect/floor_decal/milspec/color/green, +/turf/simulated/floor/tiled, +/area/hydroponics) +"lJ" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/door/airlock/angled_bay/double/glass{ + dir = 8; + door_color = "#9c9c9c"; + name = "Commons"; + stripe_color = "#89bd66" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/crew_quarters/recreation_area) +"lK" = ( +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/engine_eva) +"lL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/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/eris/white/bluecorner, +/area/medical/cmostore) +"lN" = ( +/obj/structure/cable/cyan{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/engineering/engine_room) +"lO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/dark/cargo, +/area/crew_quarters/recreation_area) +"lP" = ( +/obj/structure/table/glass, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/recharger, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/stellardelight/deck2/triage) +"lQ" = ( +/obj/structure/sign/directions/chapel{ + dir = 1; + pixel_x = 32 + }, +/obj/structure/sign/directions/dorms{ + dir = 1; + pixel_x = 32; + pixel_y = -6 + }, +/obj/structure/sign/directions/security{ + dir = 1; + pixel_x = 32; + pixel_y = 6 + }, +/obj/structure/sign/directions{ + desc = "A direction sign, pointing out the way to Exploration."; + dir = 1; + name = "\improper Exploration Department"; + pixel_x = 32; + pixel_y = -12 + }, +/obj/structure/sign/directions/stairs_down{ + dir = 1; + pixel_x = 32; + pixel_y = 12 + }, +/turf/simulated/open, +/area/stellardelight/deck2/fore) +"lR" = ( +/obj/machinery/vending/wardrobe/virodrobe, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/cmostore) +"lS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"lT" = ( +/obj/effect/floor_decal/milspec/color/silver/corner{ + dir = 4 + }, +/obj/effect/floor_decal/milspec/color/black/corner{ + dir = 1 + }, +/obj/structure/sign/department/bar{ + pixel_y = 32; + plane = -34 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"lU" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/crew_quarters/bar) +"lV" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/angled_bay/external/glass{ + dir = 4; + frequency = 1379; + id_tag = "engine_interior"; + locked = 1; + name = "Engine Airlock" + }, +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1379; + master_tag = "engine_airlock"; + name = "interior access button"; + pixel_y = 32; + req_access = list(10,11) + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/engineering/engine_room) +"lW" = ( +/obj/machinery/medical_kiosk{ + pixel_y = 6 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/reception) +"lX" = ( +/obj/machinery/door/window/southright{ + dir = 1; + name = "Jetpack Storage"; + req_one_access = list(11,24) + }, +/obj/structure/table/rack{ + dir = 8; + layer = 2.6 + }, +/obj/item/weapon/tank/jetpack/carbondioxide, +/obj/item/weapon/tank/jetpack/carbondioxide, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/engine_eva) +"lY" = ( +/obj/structure/sign/directions/library{ + dir = 1; + pixel_x = -32 + }, +/obj/structure/sign/directions/dorms{ + dir = 1; + pixel_x = -32; + pixel_y = -6 + }, +/obj/structure/sign/directions/security{ + dir = 1; + pixel_x = -32; + pixel_y = 6 + }, +/obj/structure/sign/directions/science{ + dir = 1; + pixel_x = -32; + pixel_y = -12 + }, +/obj/structure/sign/directions/stairs_down{ + dir = 1; + pixel_x = -32; + pixel_y = 12 + }, +/turf/simulated/open, +/area/stellardelight/deck2/fore) +"lZ" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck2/exterior) +"ma" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 9 + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck2/exterior) +"mb" = ( +/obj/effect/floor_decal/milspec/color/blue/half{ + dir = 4 + }, +/obj/machinery/station_map{ + dir = 8; + pixel_x = 32 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/port) +"md" = ( +/obj/effect/floor_decal/industrial/outline, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/machinery/vending/loadout/loadout_misc, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/landmark/vines, +/turf/simulated/floor/holofloor/tiled/dark, +/area/crew_quarters/locker) +"me" = ( +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/reception) +"mf" = ( +/obj/machinery/atmospherics/pipe/tank/air, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"mg" = ( +/obj/random/vendordrink, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/landmark/vines, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck2/port) +"mh" = ( +/obj/structure/disposaloutlet, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck2/exterior) +"mi" = ( +/obj/structure/sign/department/bridge{ + pixel_x = 32 + }, +/obj/effect/floor_decal/milspec/color/blue/half{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/port) +"mj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/obj/machinery/power/apc/angled{ + cell_type = /obj/item/weapon/cell/super; + dir = 4; + name = "night shift APC"; + nightshift_setting = 2 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/starboardsolars) +"mk" = ( +/obj/machinery/power/apc/angled{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/effect/floor_decal/milspec/color/blue/half{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/central) +"ml" = ( +/obj/effect/floor_decal/milspec/color/green/half{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/hydroponics) +"mm" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/starboard) +"mn" = ( +/turf/simulated/floor/lino, +/area/crew_quarters/bar) +"mo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/reception) +"mq" = ( +/obj/machinery/atmospherics/unary/engine/bigger{ + dir = 1 + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck2/fuelstorage) +"mr" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/structure/low_wall/bay/reinforced/steel, +/turf/simulated/floor, +/area/engineering/engine_room) +"ms" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 9 + }, +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck2/exterior) +"mt" = ( +/turf/simulated/floor/tiled/eris/dark/cargo, +/area/crew_quarters/recreation_area) +"mu" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/standard/color{ + dir = 4; + door_color = "#e6ab22"; + fill_color = "#877242"; + name = "Combustion Workshop"; + req_access = list(24); + stripe_color = "#2ebfbd" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/engineering/atmos/monitoring) +"mv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 10 + }, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/engine_eva) +"mw" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/effect/landmark/start/cargo, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/quartermaster/storage) +"mx" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/nitrogen, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/monitoring) +"mz" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/effect/floor_decal/milspec/color/green/half{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hydroponics) +"mA" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/machinery/camera/network/engineering{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"mB" = ( +/obj/machinery/atmospherics/pipe/tank/phoron{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"mC" = ( +/obj/machinery/power/emitter{ + anchored = 1; + dir = 1; + icon_state = "emitter1"; + state = 1 + }, +/obj/structure/cable/cyan{ + icon_state = "0-8" + }, +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/turf/simulated/floor/airless, +/area/engineering/engine_room) +"mD" = ( +/obj/machinery/atmospherics/binary/pump, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/monitoring) +"mE" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/quartermaster/qm) +"mF" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/tiled/techmaint, +/area/storage/primary) +"mG" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/floor_decal/industrial/outline, +/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/item/clothing/shoes/black, +/obj/machinery/light, +/obj/item/device/communicator, +/turf/simulated/floor/holofloor/tiled/dark, +/area/crew_quarters/locker) +"mH" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/item/weapon/book/manual/security_space_law, +/obj/item/weapon/folder/red, +/obj/item/weapon/folder/blue, +/obj/machinery/power/apc/angled{ + dir = 8; + name = "night shift APC"; + nightshift_setting = 2 + }, +/obj/structure/cable/blue{ + icon_state = "0-2" + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/landmark/vermin, +/turf/simulated/floor/wood, +/area/stellardelight/deck2/briefingroom) +"mI" = ( +/turf/simulated/wall/bay/r_wall/steel, +/area/maintenance/stellardelight/deck2/atmos) +"mJ" = ( +/obj/structure/table/woodentable, +/obj/item/device/paicard, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/crew_quarters/bar) +"mK" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock/angled_bay/standard/color{ + dir = 8; + door_color = "#ffffff"; + name = "Operating Theatre 2"; + req_access = list(45); + stripe_color = "#5a96bb" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/medical/surgery2) +"mL" = ( +/obj/structure/flora/pottedplant/small, +/obj/machinery/camera/network/civilian{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/recreation_area) +"mM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/effect/landmark/start/engineer, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/locker_room) +"mN" = ( +/obj/effect/floor_decal/milspec/color/black/corner, +/obj/effect/floor_decal/milspec/color/silver/corner{ + dir = 4 + }, +/obj/machinery/station_map{ + dir = 8; + pixel_x = 32 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"mO" = ( +/turf/simulated/wall/bay/r_wall/orange, +/area/engineering/engineering_monitoring) +"mP" = ( +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/turf/simulated/floor/wood, +/area/medical/psych) +"mQ" = ( +/obj/structure/table/standard, +/obj/item/weapon/packageWrap, +/obj/item/weapon/packageWrap, +/obj/machinery/power/apc/angled{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/storage/art) +"mR" = ( +/obj/structure/cable/orange{ + icon_state = "1-4" + }, +/obj/structure/cable/orange{ + icon_state = "1-8" + }, +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck2/exterior) +"mS" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/landmark{ + name = "verminstart" + }, +/turf/simulated/floor/grass, +/area/hydroponics) +"mT" = ( +/turf/simulated/wall/bay/steel, +/area/storage/art) +"mU" = ( +/obj/item/weapon/stool/padded{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/camera/network/civilian{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/dark/cargo, +/area/crew_quarters/recreation_area) +"mV" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"mW" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/reagent_containers/glass/beaker/large, +/obj/item/weapon/reagent_containers/dropper, +/obj/item/device/radio/intercom{ + pixel_y = -24 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/chemistry) +"mX" = ( +/obj/structure/table/standard, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/pen/red{ + pixel_x = -1; + pixel_y = 3 + }, +/obj/item/weapon/pen/blue{ + pixel_x = -5; + pixel_y = -1 + }, +/obj/machinery/alarm/angled, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/storage/art) +"mY" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/closet/emcloset, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/portfore) +"mZ" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/power/solar, +/turf/simulated/floor/airless, +/area/stellardelight/deck2/exterior) +"na" = ( +/obj/structure/cable/cyan{ + icon_state = "1-2" + }, +/obj/machinery/camera/network/engineering{ + dir = 8 + }, +/obj/effect/landmark/start/engineer, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/locker_room) +"nb" = ( +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/engine_eva) +"nd" = ( +/turf/simulated/wall/bay/white, +/area/medical/surgery2) +"nf" = ( +/obj/machinery/firealarm/angled{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/engineering_monitoring) +"ng" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/eris/dark/danger, +/area/engineering/engine_room) +"ni" = ( +/turf/simulated/wall/bay/r_wall/steel, +/area/engineering/engine_room) +"nj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10, +/turf/simulated/floor/tiled/eris/white/cargo, +/area/stellardelight/deck2/triage) +"nm" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/quartermaster/storage) +"no" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/engine_eva) +"np" = ( +/obj/structure/cable/orange{ + icon_state = "1-4" + }, +/obj/structure/cable/orange, +/obj/machinery/power/apc/angled{ + dir = 8 + }, +/obj/machinery/power/sensor{ + name = "Powernet Sensor - Engineering Subgrid"; + name_tag = "Engineering Subgrid" + }, +/turf/simulated/floor/plating, +/area/maintenance/stellardelight/substation/engineering) +"nq" = ( +/turf/simulated/wall/bay/r_wall/steel, +/area/engineering/engine_eva) +"nr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 10 + }, +/turf/simulated/wall/bay/r_wall/orange, +/area/engineering/atmos/storage) +"ns" = ( +/obj/structure/table/reinforced, +/obj/machinery/photocopier/faxmachine{ + department = "Engineering" + }, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/engineering_monitoring) +"nt" = ( +/turf/simulated/wall/bay/brown, +/area/crew_quarters/recreation_area) +"nu" = ( +/obj/structure/cable/blue{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/angled_bay/standard/color{ + door_color = "#323d80"; + fill_color = "#c9892e"; + id_tag = "captaindoor"; + name = "Captain's Office"; + req_access = list(20); + stripe_color = "#f7d35c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_ridged, +/area/crew_quarters/captain) +"nv" = ( +/obj/structure/cable/blue{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/bridge) +"nw" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/milspec/color/orange/half{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/aftport) +"nx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/locker_room) +"ny" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 6 + }, +/obj/structure/sign/atmos/co2{ + pixel_y = 26 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"nz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/quartermaster/storage) +"nA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor, +/area/stellardelight/deck2/combustionworkshop) +"nB" = ( +/obj/random/vendorfood, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/aftport) +"nC" = ( +/obj/machinery/appliance/cooker/grill, +/obj/machinery/requests_console{ + department = "Service"; + pixel_y = 26 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/crew_quarters/kitchen) +"nD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/hologram/holopad, +/obj/structure/cable/blue{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/eris/dark/gray_platform, +/area/bridge) +"nE" = ( +/obj/machinery/atmospherics/pipe/tank/carbon_dioxide, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"nF" = ( +/obj/structure/table/standard, +/obj/item/clothing/head/soft, +/obj/item/clothing/head/soft, +/obj/item/weapon/stamp{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/machinery/camera/network/cargo, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/quartermaster/storage) +"nG" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 5 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"nH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/closet/walllocker_double/medical/north, +/obj/item/weapon/storage/firstaid/regular, +/obj/item/weapon/storage/firstaid/regular, +/obj/random/medical/lite, +/obj/random/medical/lite, +/obj/item/bodybag/cryobag, +/obj/item/bodybag/cryobag, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/engine_eva) +"nI" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 5 + }, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck2/exterior) +"nJ" = ( +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/cmostore) +"nK" = ( +/turf/simulated/wall/bay/r_wall/blue, +/area/bridge) +"nL" = ( +/obj/structure/sign/painting/public{ + pixel_x = -30 + }, +/obj/effect/floor_decal/milspec/color/blue/half{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/starboard) +"nM" = ( +/obj/machinery/light/small, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/engineering/storage) +"nN" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/aftstarboard) +"nO" = ( +/turf/simulated/wall/bay/r_wall/orange, +/area/engineering/engine_eva) +"nP" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck2/exterior) +"nQ" = ( +/obj/structure/table/marble, +/obj/machinery/chemical_dispenser/bar_soft/full{ + dir = 1 + }, +/obj/machinery/requests_console{ + department = "Service"; + dir = 1; + pixel_y = -26 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/landmark/vermin, +/turf/simulated/floor/lino, +/area/crew_quarters/bar) +"nR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/monitoring) +"nS" = ( +/obj/effect/floor_decal/milspec/color/green/corner{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"nT" = ( +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/stellardelight/deck2/triage) +"nU" = ( +/obj/structure/table/steel_reinforced, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/angled_shutter{ + dir = 4; + id = "kitchen"; + layer = 3.3; + name = "Kitchen Shutters" + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/crew_quarters/kitchen) +"nV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 10 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/cmostore) +"nW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/green, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/obj/machinery/alarm/angled{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/monitoring) +"nX" = ( +/obj/machinery/alarm/angled{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/aftport) +"nZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/monitoring) +"oa" = ( +/turf/simulated/wall/bay/brown, +/area/maintenance/stellardelight/substation/engineering) +"ob" = ( +/obj/effect/shuttle_landmark/premade/sd/deck2/starboard, +/turf/space, +/area/space) +"oc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/carpet/blucarpet, +/area/crew_quarters/captain) +"od" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck2/o2production) +"oe" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/green, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"of" = ( +/obj/structure/sign/directions/evac{ + pixel_x = 32 + }, +/obj/effect/floor_decal/milspec/color/black/corner, +/obj/effect/floor_decal/milspec/color/silver/corner{ + dir = 4 + }, +/obj/structure/sign/directions/medical{ + pixel_x = 32; + pixel_y = -6 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"og" = ( +/obj/machinery/sleeper{ + dir = 4 + }, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 10 + }, +/turf/simulated/floor/tiled/eris/white/cargo, +/area/stellardelight/deck2/triage) +"oh" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/firstaid/surgery, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/white, +/area/medical/surgery2) +"oi" = ( +/obj/structure/sign/department/bridge{ + pixel_x = -32 + }, +/obj/effect/floor_decal/milspec/color/blue/half{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/starboard) +"oj" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/monotile, +/area/hydroponics) +"ok" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/grass, +/area/hydroponics) +"ol" = ( +/obj/structure/cable/white{ + 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 = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/chemistry) +"om" = ( +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/monitoring) +"on" = ( +/obj/machinery/firealarm/angled{ + dir = 8 + }, +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/storage/tech) +"oo" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"op" = ( +/obj/machinery/power/generator{ + anchored = 1; + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/simulated/floor, +/area/stellardelight/deck2/combustionworkshop) +"oq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/monitoring) +"or" = ( +/obj/structure/closet/walllocker_double/east, +/obj/item/weapon/storage/box/lights/mixed, +/obj/item/weapon/tape_roll, +/obj/item/weapon/storage/belt/utility, +/obj/item/device/multitool, +/obj/fiftyspawner/steel, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/quartermaster/storage) +"os" = ( +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 8 + }, +/obj/effect/floor_decal/milspec/color/blue, +/obj/structure/sign/deck2{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled/monotile, +/area/stellardelight/deck2/central) +"ot" = ( +/obj/machinery/alarm/angled, +/obj/machinery/atmospherics/portables_connector/fuel, +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor, +/area/stellardelight/deck2/fuelstorage) +"ou" = ( +/obj/machinery/computer/supplycomp/control{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 24 + }, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/quartermaster/storage) +"ov" = ( +/turf/simulated/wall/bay/r_wall/steel, +/area/stellardelight/deck2/combustionworkshop) +"ow" = ( +/turf/simulated/wall/bay/r_wall/orange, +/area/storage/tech) +"ox" = ( +/obj/structure/sign/poster{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/port) +"oy" = ( +/obj/machinery/door/blast/angled{ + dir = 4; + id = "burnchamberlockvent" + }, +/turf/simulated/floor/reinforced/airless, +/area/stellardelight/deck2/combustionworkshop) +"oz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/grass, +/area/hydroponics) +"oA" = ( +/obj/machinery/atmospherics/binary/pump, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"oB" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/crew_quarters/bar) +"oC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/quartermaster/storage) +"oD" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/angled_bay/hatch{ + dir = 4; + name = "maintenance access"; + req_access = list(28); + stripe_color = "#454545" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/crew_quarters/kitchen) +"oE" = ( +/turf/simulated/wall/bay/r_wall/orange, +/area/stellardelight/deck2/o2production) +"oF" = ( +/obj/structure/bed/chair/backed_red{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/crew_quarters/bar) +"oG" = ( +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/starboardfore) +"oH" = ( +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 2 + }, +/obj/effect/floor_decal/milspec/color/blue/half{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/central) +"oI" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/door/airlock/angled_bay/standard/glass{ + dir = 4; + door_color = "#e6ab22"; + name = "Engineering Hard Storage"; + req_access = list(11); + stripe_color = "#913013" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/engineering/engineering_monitoring) +"oJ" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/machinery/door/blast/angled/open{ + dir = 2; + id = "barlockdown" + }, +/obj/structure/low_wall/bay/reinforced/steel, +/turf/simulated/floor, +/area/crew_quarters/bar) +"oK" = ( +/obj/structure/table/standard, +/obj/item/device/defib_kit/loaded, +/obj/item/weapon/reagent_containers/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner"; + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/device/radio/intercom/department/medbay{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/white, +/area/medical/surgery2) +"oL" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible/cyan, +/obj/machinery/power/apc/angled{ + dir = 4 + }, +/obj/structure/cable/orange{ + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"oM" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/double/glass{ + dir = 8; + name = "Art Storage" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/storage/art) +"oO" = ( +/obj/machinery/chem_master/condimaster, +/turf/simulated/floor/tiled/eris/cafe, +/area/crew_quarters/kitchen) +"oP" = ( +/obj/machinery/firealarm/angled{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/engineering/storage) +"oQ" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"oR" = ( +/turf/simulated/floor/plating, +/area/engineering/storage) +"oS" = ( +/obj/structure/bed/chair/bay/comfy/brown{ + dir = 4 + }, +/obj/effect/landmark/start/entertainer, +/turf/simulated/floor/carpet, +/area/crew_quarters/recreation_area) +"oT" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/tiled/techmaint, +/area/storage/primary) +"oU" = ( +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/monitoring) +"oV" = ( +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark/gray_platform, +/area/engineering/workshop) +"oX" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/engine_eva) +"oY" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable/cyan{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/locker_room) +"oZ" = ( +/obj/machinery/computer/ship/navigation/telescreen{ + pixel_y = 32 + }, +/obj/machinery/firealarm/angled{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/landmark/start/commandsecretary, +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/bridge) +"pa" = ( +/obj/effect/floor_decal/emblem/stellardelight{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/machinery/station_map{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"pb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/quartermaster/storage) +"pc" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "packageSort1" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/quartermaster/storage) +"pd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/grass, +/area/hydroponics) +"pe" = ( +/obj/machinery/shieldgen, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/engineering/storage) +"pf" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/angled_bay/hatch{ + dir = 4; + door_color = "#ffffff"; + name = "Gas Storage"; + req_one_access = list(5); + stripe_color = "#5a96bb" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/medical/cryo) +"pg" = ( +/obj/structure/closet/secure_closet/medical3, +/obj/item/weapon/soap/nanotrasen, +/obj/item/weapon/storage/belt/medical, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/cmostore) +"ph" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/starboardaft) +"pj" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/starboardsolars) +"pk" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/power/sensor{ + name = "Powernet Sensor - Port Solar Array"; + name_tag = "Port Solar Array" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/portsolars) +"pl" = ( +/obj/structure/table/standard, +/obj/machinery/photocopier/faxmachine{ + department = "Cargo" + }, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/quartermaster/storage) +"pm" = ( +/obj/structure/closet/hydrant{ + pixel_x = 32 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/starboard) +"pn" = ( +/obj/machinery/alarm/angled{ + dir = 4 + }, +/obj/machinery/recharge_station, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/crew_quarters/bar) +"po" = ( +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 2 + }, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"pp" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/crate, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/quartermaster/storage) +"pq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/aftport) +"pr" = ( +/obj/machinery/light/small, +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled/eris/white/danger, +/area/stellardelight/deck2/port) +"pu" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/airless, +/area/engineering/engine_room) +"pv" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/standard/glass{ + dir = 4; + name = "glass airlock" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck2/aftport) +"pw" = ( +/obj/structure/sign/pods, +/turf/simulated/wall/bay/r_wall/steel, +/area/stellardelight/deck2/port) +"px" = ( +/obj/machinery/power/emitter, +/turf/simulated/floor/plating, +/area/engineering/storage) +"py" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/bar) +"pz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/landmark/start/chef, +/turf/simulated/floor/tiled/eris/cafe, +/area/crew_quarters/kitchen) +"pA" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/port) +"pB" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 8 + }, +/turf/simulated/floor, +/area/stellardelight/deck2/combustionworkshop) +"pC" = ( +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/storage/tech) +"pD" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/quartermaster/storage) +"pF" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/obj/item/clothing/gloves/yellow, +/obj/item/clothing/gloves/yellow, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/locker_room) +"pG" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"pH" = ( +/obj/structure/sign/directions/evac{ + pixel_x = -32 + }, +/obj/effect/floor_decal/milspec/color/black/corner{ + dir = 1 + }, +/obj/effect/floor_decal/milspec/color/silver/corner{ + dir = 8 + }, +/obj/structure/sign/directions/medical{ + pixel_x = -32; + pixel_y = -6 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"pI" = ( +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/crew_quarters/kitchen) +"pJ" = ( +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/starboardaft) +"pK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/angled_bay/hatch{ + dir = 4; + door_color = "#e6ab22"; + locked = 1; + name = "maintenance access"; + req_one_access = list(19); + stripe_color = "#e6ab22" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/engineering/atmos/monitoring) +"pL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/port) +"pM" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/machinery/alarm/angled, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/reception) +"pN" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/item/weapon/reagent_containers/glass/bucket, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/milspec/color/green/half{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hydroponics) +"pO" = ( +/obj/machinery/atmospherics/binary/algae_farm/filled{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck2/o2production) +"pP" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/landmark{ + name = "lightsout" + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled, +/area/storage/art) +"pQ" = ( +/obj/structure/bed/chair/bay/shuttle{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck2/starboardescape) +"pR" = ( +/obj/structure/closet/gmcloset{ + name = "formal wardrobe" + }, +/obj/item/glass_jar, +/obj/item/device/retail_scanner/civilian, +/obj/item/device/retail_scanner/civilian, +/obj/item/device/destTagger{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/weapon/packageWrap, +/turf/simulated/floor/wood, +/area/stellardelight/deck2/barbackroom) +"pS" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/portfore) +"pT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 9 + }, +/turf/simulated/wall/bay/r_wall/orange, +/area/engineering/atmos/monitoring) +"pU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/engine_eva) +"pV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker) +"pW" = ( +/obj/machinery/media/jukebox, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/crew_quarters/bar) +"pX" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/effect/floor_decal/milspec/color/green/half{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/hydroponics) +"pY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/green, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck2/o2production) +"pZ" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/machinery/station_map{ + dir = 8; + pixel_x = 32 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"qa" = ( +/obj/structure/table/rack, +/obj/random/maintenance/medical, +/obj/random/maintenance/medical, +/obj/random/maintenance/medical, +/obj/random/maintenance/medical, +/obj/random/maintenance/medical, +/obj/random/maintenance, +/obj/random/contraband, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/starboardaft) +"qb" = ( +/obj/machinery/door/firedoor/glass/hidden/steel, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/aftport) +"qd" = ( +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 24 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/cable/cyan{ + icon_state = "2-4" + }, +/obj/structure/closet/secure_closet/engineering_personal, +/obj/effect/landmark/vermin, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/locker_room) +"qe" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/crew_quarters/bar) +"qf" = ( +/turf/simulated/wall/bay/r_wall/white, +/area/medical/surgery2) +"qg" = ( +/obj/machinery/atmospherics/binary/pump/high_power/on, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"qh" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/starboardsolars) +"qi" = ( +/obj/effect/floor_decal/industrial/warning/full, +/obj/structure/cable/orange{ + icon_state = "0-8" + }, +/obj/structure/cable/orange{ + icon_state = "0-4" + }, +/obj/machinery/power/pointdefense{ + id_tag = "sd_pd" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck2/exterior) +"qj" = ( +/obj/structure/table/glass, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/device/flashlight/lamp/green{ + pixel_y = -6 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/reception) +"qk" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/quartermaster/storage) +"ql" = ( +/obj/machinery/atmospherics/pipe/tank/phoron, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"qm" = ( +/obj/machinery/vending/medical, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/white/cargo, +/area/stellardelight/deck2/triage) +"qn" = ( +/obj/structure/filingcabinet/medical{ + desc = "A large cabinet with hard copy medical records."; + name = "Medical Records" + }, +/obj/machinery/power/apc/angled{ + dir = 1 + }, +/obj/structure/cable/white{ + icon_state = "0-4" + }, +/obj/machinery/firealarm/angled{ + dir = 8 + }, +/turf/simulated/floor/carpet/blue, +/area/medical/psych) +"qo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"qp" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/grass, +/area/hydroponics) +"qq" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/machinery/door/blast/angled/open{ + dir = 2; + id = "atmoswindowlockdown" + }, +/obj/structure/low_wall/bay/reinforced/steel, +/turf/simulated/floor, +/area/engineering/atmos/monitoring) +"qr" = ( +/turf/simulated/wall/bay/r_wall/orange, +/area/engineering/storage) +"qs" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/fancy/crayons, +/obj/item/weapon/storage/fancy/crayons, +/obj/item/weapon/storage/fancy/crayons, +/obj/item/weapon/storage/fancy/crayons, +/obj/item/weapon/storage/fancy/crayons, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/newscaster{ + pixel_y = 28 + }, +/obj/effect/landmark/vermin, +/turf/simulated/floor/tiled, +/area/storage/art) +"qt" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/crate/freezer, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/quartermaster/storage) +"qu" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/quartermaster/storage) +"qv" = ( +/obj/machinery/power/port_gen/pacman{ + anchored = 1 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/engineering/storage) +"qw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/monitoring) +"qx" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/monitoring) +"qy" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/closet/firecloset, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/portfore) +"qz" = ( +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark/gray_platform, +/area/engineering/workshop) +"qA" = ( +/obj/structure/table/rack/steel, +/obj/item/weapon/circuitboard/skills{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/weapon/circuitboard/med_data{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/weapon/circuitboard/secure_data{ + pixel_x = -1; + pixel_y = 1 + }, +/obj/item/weapon/circuitboard/security, +/obj/item/weapon/circuitboard/security/engineering{ + pixel_x = 1; + pixel_y = -1 + }, +/obj/item/weapon/circuitboard/security/mining{ + pixel_x = 2; + pixel_y = -2 + }, +/obj/item/weapon/circuitboard/stationalert_security{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/machinery/camera/network/engineering, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/storage/tech) +"qC" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/double{ + name = "maintenance access"; + stripe_color = "#454545" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/portsolars) +"qD" = ( +/obj/machinery/power/apc/angled{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/machinery/recharge_station, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/aftstarboard) +"qF" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/turf/simulated/floor, +/area/engineering/atmos/monitoring) +"qG" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck2/exterior) +"qH" = ( +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/hologram/holopad, +/obj/effect/landmark/start/engineer, +/turf/simulated/floor/tiled/eris/dark/gray_platform, +/area/engineering/workshop) +"qI" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/port) +"qJ" = ( +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/engineering/engine_room) +"qL" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/machinery/light, +/turf/simulated/floor, +/area/engineering/atmos/monitoring) +"qM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 6 + }, +/turf/simulated/wall/bay/r_wall/steel, +/area/stellardelight/deck2/fuelstorage) +"qN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/monitoring) +"qO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck2/o2production) +"qP" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/engine_eva) +"qQ" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/smartfridge/chemistry, +/turf/simulated/floor/plating, +/area/medical/chemistry) +"qS" = ( +/obj/item/weapon/stool/padded{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/machinery/light, +/turf/simulated/floor/lino, +/area/crew_quarters/bar) +"qT" = ( +/obj/structure/lattice, +/obj/structure/railing/grey{ + dir = 4 + }, +/obj/structure/sign/directions/evac{ + dir = 1; + pixel_x = 32 + }, +/obj/structure/sign/directions/stairs_up{ + dir = 1; + pixel_x = 32; + pixel_y = 6 + }, +/turf/simulated/floor, +/area/stellardelight/deck2/aftport) +"qV" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/engineering/storage) +"qW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/dispenser{ + phorontanks = 0 + }, +/obj/machinery/camera/network/engineering{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/engine_eva) +"qX" = ( +/obj/random/tech_supply/component/nofail, +/obj/random/tech_supply/component/nofail, +/obj/random/tech_supply/component/nofail, +/obj/random/tech_supply/component/nofail, +/obj/random/tech_supply/component/nofail, +/obj/random/tech_supply/component/nofail, +/obj/random/tech_supply/component/nofail, +/obj/random/tech_supply/component/nofail, +/obj/item/device/flash, +/obj/item/device/flash, +/obj/item/device/integrated_electronics/debugger{ + pixel_x = -5 + }, +/obj/item/device/integrated_electronics/wirer{ + pixel_x = 5 + }, +/obj/item/device/integrated_circuit_printer, +/obj/structure/table/steel, +/obj/machinery/alarm/angled, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/storage/tech) +"qY" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/portsolars) +"qZ" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/structure/sign/deck2{ + pixel_x = 32 + }, +/obj/structure/sign/directions/medical/morgue{ + pixel_x = -32 + }, +/obj/structure/sign/directions/medical/resleeving{ + pixel_x = -32; + pixel_y = -6 + }, +/obj/structure/sign/directions/medical/virology{ + pixel_x = -32; + pixel_y = -12 + }, +/obj/structure/sign/directions/stairs_down{ + pixel_x = -32; + pixel_y = 6 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/stellardelight/deck2/triage) +"ra" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled/techmaint, +/area/storage/primary) +"rb" = ( +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/turf/simulated/wall/bay/r_wall/steel, +/area/stellardelight/deck2/o2production) +"rc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/effect/floor_decal/milspec/color/white/half, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/central) +"rd" = ( +/obj/structure/table/marble, +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "bar"; + layer = 3.3; + name = "Bar Shutters" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/bar) +"re" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/landmark/start/cargo, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/quartermaster/storage) +"rf" = ( +/obj/structure/cable/cyan{ + icon_state = "1-2" + }, +/obj/structure/closet/walllocker_double/west, +/obj/item/weapon/book/manual/engineering_particle_accelerator, +/obj/item/weapon/book/manual/tesla_engine, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/engineering/engine_room) +"rg" = ( +/obj/structure/bed/chair/sofa/corp/corner{ + dir = 8 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/crew_quarters/recreation_area) +"rh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/starboard) +"ri" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/starboardfore) +"rj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/floor_decal/emblem/stellardelight{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"rk" = ( +/obj/structure/sign/directions/command{ + dir = 1; + pixel_y = 32 + }, +/obj/effect/floor_decal/milspec/color/blue/half{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/central) +"rl" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/starboardfore) +"rm" = ( +/obj/structure/cable/white{ + 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 = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/stellardelight/deck2/triage) +"rn" = ( +/obj/machinery/appliance/cooker/fryer, +/obj/machinery/camera/network/civilian{ + dir = 5 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/crew_quarters/kitchen) +"ro" = ( +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck2/o2production) +"rp" = ( +/obj/structure/cable/cyan{ + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/locker_room) +"rq" = ( +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/engineering_monitoring) +"rr" = ( +/obj/structure/closet/walllocker_double/south{ + color = "#8da4a6"; + pixel_x = -5 + }, +/obj/item/weapon/storage/box/donkpockets{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/structure/table/standard, +/obj/machinery/button/remote/blast_door{ + dir = 1; + id = "kitchen"; + name = "Kitchen shutters"; + pixel_x = 9; + pixel_y = -25 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -1; + pixel_y = -42 + }, +/obj/item/weapon/reagent_containers/food/condiment/flour, +/obj/item/weapon/reagent_containers/food/condiment/flour, +/obj/item/weapon/reagent_containers/food/condiment/flour, +/obj/item/weapon/reagent_containers/food/condiment/flour, +/obj/item/weapon/reagent_containers/food/condiment/flour, +/obj/item/weapon/reagent_containers/food/condiment/flour, +/obj/item/weapon/reagent_containers/food/condiment/flour, +/obj/item/weapon/reagent_containers/food/condiment/flour, +/obj/item/weapon/reagent_containers/food/condiment/spacespice, +/obj/item/weapon/reagent_containers/food/condiment/spacespice, +/obj/item/weapon/reagent_containers/food/condiment/sugar, +/obj/item/weapon/reagent_containers/food/condiment/sugar, +/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker, +/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker, +/obj/item/weapon/reagent_containers/food/condiment/small/peppermill, +/obj/item/weapon/reagent_containers/food/condiment/small/peppermill, +/obj/machinery/button/remote/blast_door{ + dir = 1; + id = "kitchenhallway"; + name = "Kitchen shutters"; + pixel_x = 9; + pixel_y = -36 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/crew_quarters/kitchen) +"rs" = ( +/obj/machinery/alarm/angled{ + dir = 4 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/atmos) +"rt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/effect/floor_decal/milspec/color/green/half{ + dir = 8 + }, +/obj/effect/landmark/start/botanist, +/turf/simulated/floor/tiled, +/area/hydroponics) +"ru" = ( +/obj/structure/bed/chair/bay/comfy/yellow{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/bridge) +"rv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/quartermaster/storage) +"rw" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/standard/glass{ + door_color = "#e6ab22"; + name = "Engineering Workshop"; + req_access = null; + req_one_access = list(11,24); + stripe_color = "#913013" + }, +/obj/structure/cable/orange{ + 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_ridged, +/area/engineering/workshop) +"rx" = ( +/turf/simulated/wall/bay/r_wall/steel, +/area/storage/primary) +"ry" = ( +/obj/structure/table/rack, +/obj/item/weapon/tank/jetpack, +/obj/item/clothing/mask/gas, +/obj/item/clothing/suit/space/void/captain, +/obj/item/clothing/head/helmet/space/void/captain, +/obj/structure/window/reinforced, +/obj/machinery/door/window/brigdoor/westright{ + dir = 4; + name = "Captain's Storage"; + req_access = list(20) + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/weapon/card/id/gold/captain/spare{ + name = "\improper Captain's spare ID" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"rz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker) +"rB" = ( +/obj/structure/particle_accelerator/particle_emitter/right{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark/danger, +/area/engineering/engine_room) +"rC" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/reception) +"rD" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/external/glass{ + dir = 4 + }, +/obj/effect/map_helper/airlock/door/simple, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck2/starboardescape) +"rE" = ( +/obj/structure/table/standard, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/item/device/paicard, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/newscaster{ + pixel_y = 28 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 24 + }, +/obj/effect/landmark/vines, +/turf/simulated/floor/tiled/techmaint, +/area/storage/primary) +"rF" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable/blue{ + icon_state = "1-4" + }, +/turf/simulated/floor/carpet/sblucarpet, +/area/stellardelight/deck2/briefingroom) +"rG" = ( +/obj/structure/bed/chair/comfy, +/obj/effect/landmark/start/bartender, +/turf/simulated/floor/wood, +/area/stellardelight/deck2/barbackroom) +"rH" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/firealarm/angled, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"rI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker) +"rK" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/quartermaster/storage) +"rM" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/closet/emcloset, +/obj/machinery/camera/network/halls{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/white/danger, +/area/stellardelight/deck2/starboard) +"rN" = ( +/turf/simulated/wall/bay/r_wall/blue, +/area/crew_quarters/captain) +"rO" = ( +/obj/structure/closet/secure_closet/hydroponics, +/obj/item/weapon/shovel/spade, +/obj/item/weapon/storage/belt/utility, +/obj/item/stack/material/sandstone{ + amount = 5 + }, +/obj/effect/floor_decal/milspec/color/green/half{ + dir = 9 + }, +/obj/machinery/requests_console{ + department = "Service"; + pixel_y = 26 + }, +/obj/item/device/retail_scanner/civilian, +/turf/simulated/floor/tiled, +/area/hydroponics) +"rP" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/grass, +/area/hydroponics) +"rQ" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"rR" = ( +/turf/simulated/wall/bay/r_wall/steel, +/area/maintenance/stellardelight/deck2/portaft) +"rT" = ( +/turf/simulated/wall/bay/r_wall/steel, +/area/storage/tech) +"rV" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/structure/low_wall/bay/reinforced/steel, +/turf/simulated/floor, +/area/crew_quarters/bar) +"rW" = ( +/obj/structure/cable/orange{ + icon_state = "1-4" + }, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/turf/simulated/wall/bay/r_wall/steel, +/area/maintenance/stellardelight/deck2/atmos) +"rX" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/angled_bay/standard/glass{ + dir = 4; + door_color = "#9c9c9c"; + name = "Laundry"; + stripe_color = "#89bd66" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/crew_quarters/locker) +"rY" = ( +/obj/structure/sign/directions/medical{ + dir = 1; + pixel_x = -32; + pixel_y = 35 + }, +/obj/structure/sign/directions/bridge{ + dir = 1; + pixel_x = -32; + pixel_y = 41 + }, +/obj/structure/sign/directions/engineering{ + pixel_x = -32; + pixel_y = 23 + }, +/obj/structure/sign/directions/cargo{ + dir = 10; + pixel_x = -32; + pixel_y = 29 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/starboard) +"rZ" = ( +/obj/structure/sign/pods, +/turf/simulated/wall/bay/r_wall/steel, +/area/stellardelight/deck2/starboard) +"sa" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/simulated/wall/bay/r_wall/steel, +/area/maintenance/stellardelight/deck2/portsolars) +"sb" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible/cyan, +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"sc" = ( +/obj/structure/bed/chair/sofa/corp{ + dir = 1 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/crew_quarters/recreation_area) +"sd" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/machinery/alarm/angled{ + dir = 4 + }, +/obj/effect/floor_decal/milspec/color/green/half{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/hydroponics) +"se" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck2/exterior) +"sg" = ( +/turf/simulated/floor/tiled/eris/white/danger, +/area/stellardelight/deck2/port) +"sh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/grass, +/area/hydroponics) +"si" = ( +/obj/structure/lattice, +/obj/structure/cable/green{ + icon_state = "32-2" + }, +/obj/structure/disposalpipe/down{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers, +/obj/machinery/atmospherics/pipe/zpipe/down/supply, +/obj/machinery/door/firedoor/glass, +/turf/simulated/open, +/area/maintenance/stellardelight/deck2/portfore) +"sj" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"sk" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/angled_bay/standard/glass{ + door_color = "#a6753d"; + name = "Cargo Office"; + req_access = list(31); + stripe_color = "#3b2b1a" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/quartermaster/storage) +"sl" = ( +/obj/item/weapon/stool/padded{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/storage/tech) +"sm" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/airlock_sensor{ + id_tag = "engine_sensor"; + pixel_y = 24 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + frequency = 1379; + id_tag = "engine_airpump" + }, +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/engineering/engine_room) +"sn" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/portaft) +"so" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/simulated/floor/carpet/blue, +/area/medical/psych) +"sp" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/red, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/monitoring) +"sq" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/structure/low_wall/bay/reinforced/white, +/turf/simulated/floor, +/area/medical/chemistry) +"sr" = ( +/obj/item/weapon/stool/padded{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/bar) +"su" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/light/floortube{ + dir = 1; + pixel_y = -10 + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/quartermaster/storage) +"sv" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/reception) +"sw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/camera/network/engine{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/engineering/engine_room) +"sx" = ( +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/turf/simulated/wall/bay/r_wall/steel, +/area/maintenance/stellardelight/deck2/atmos) +"sy" = ( +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/turf/simulated/wall/bay/r_wall/steel, +/area/engineering/storage) +"sz" = ( +/obj/machinery/computer/atmoscontrol, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/monitoring) +"sA" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/effect/floor_decal/milspec/color/green/half{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/hydroponics) +"sB" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/carpet/blucarpet, +/area/crew_quarters/captain) +"sC" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck2/exterior) +"sD" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/hatch{ + dir = 4; + name = "maintenance access"; + stripe_color = "#454545" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/crew_quarters/locker) +"sE" = ( +/obj/machinery/honey_extractor, +/obj/machinery/status_display{ + pixel_x = 32 + }, +/obj/effect/floor_decal/milspec/color/green/half{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hydroponics) +"sF" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor, +/area/stellardelight/deck2/combustionworkshop) +"sG" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/wall/bay/brown, +/area/quartermaster/storage) +"sH" = ( +/obj/structure/table/wooden_reinforced, +/turf/simulated/floor/tiled/eris/dark/cargo, +/area/crew_quarters/recreation_area) +"sI" = ( +/obj/structure/sign/deck2{ + pixel_x = 32 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/aftport) +"sJ" = ( +/obj/machinery/vending/wardrobe/medidrobe, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/cmostore) +"sK" = ( +/obj/effect/floor_decal/industrial/loading{ + dir = 8 + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/medical/surgery) +"sL" = ( +/obj/structure/table/marble, +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "bar"; + layer = 3.3; + name = "Bar Shutters" + }, +/turf/simulated/floor/lino, +/area/crew_quarters/bar) +"sM" = ( +/obj/structure/cable/orange{ + icon_state = "2-8" + }, +/turf/simulated/wall/bay/r_wall/steel, +/area/maintenance/stellardelight/deck2/starboardsolars) +"sN" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/low_wall/bay/reinforced/steel, +/turf/simulated/floor, +/area/storage/primary) +"sO" = ( +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"sP" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/crew_quarters/bar) +"sQ" = ( +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/simulated/floor/airless, +/area/engineering/engine_room) +"sR" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging, +/obj/structure/cable/orange{ + icon_state = "2-8" + }, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck2/exterior) +"sS" = ( +/obj/machinery/door/firedoor/glass/hidden/steel, +/obj/effect/floor_decal/milspec/color/blue, +/obj/machinery/camera/network/command{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/stellardelight/deck2/central) +"sT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/green, +/obj/machinery/camera/network/engineering{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck2/o2production) +"sU" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 10 + }, +/obj/structure/sign/atmos/o2{ + pixel_x = 32; + pixel_y = 26 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"sV" = ( +/obj/machinery/firealarm/angled{ + dir = 8 + }, +/obj/effect/floor_decal/milspec/color/green/half{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hydroponics) +"sW" = ( +/obj/effect/catwalk_plated, +/turf/simulated/floor, +/area/stellardelight/deck2/port) +"sX" = ( +/obj/structure/dogbed, +/mob/living/simple_mob/animal/passive/dog/void_puppy/nulle, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"sY" = ( +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'RADIOACTIVE AREA'"; + icon_state = "radiation"; + name = "\improper RADIOACTIVE AREA"; + pixel_y = 32 + }, +/obj/machinery/camera/network/engine, +/turf/simulated/floor/airless, +/area/engineering/engine_room) +"sZ" = ( +/obj/structure/closet/crate{ + icon_state = "crate"; + name = "Grenade Crate" + }, +/obj/item/weapon/grenade/chem_grenade, +/obj/item/weapon/grenade/chem_grenade, +/obj/item/weapon/grenade/chem_grenade, +/obj/item/device/assembly/timer, +/obj/item/device/assembly/timer, +/obj/item/device/assembly/timer, +/obj/item/device/assembly/igniter, +/obj/item/device/assembly/igniter, +/obj/item/device/assembly/igniter, +/obj/item/weapon/tool/screwdriver, +/obj/structure/table/reinforced, +/obj/machinery/light, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/cmostore) +"ta" = ( +/turf/simulated/wall/bay/brown, +/area/engineering/workshop) +"tb" = ( +/obj/structure/bed/chair/sofa/corp/right{ + dir = 8 + }, +/obj/effect/landmark/start/visitor, +/turf/simulated/floor/carpet/turcarpet, +/area/crew_quarters/recreation_area) +"tc" = ( +/obj/structure/lattice, +/turf/space, +/area/stellardelight/deck2/exterior) +"td" = ( +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"te" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/structure/flora/pottedplant/minitree, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/port) +"tf" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/window/eastright{ + dir = 8; + name = "Chemistry" + }, +/obj/machinery/door/window/westleft{ + dir = 4; + name = "Chemistry"; + req_one_access = list(33) + }, +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "chemistry"; + layer = 3.1; + name = "Chemistry Shutters" + }, +/obj/structure/table/reinforced, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/chemistry) +"tg" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'RADIOACTIVE AREA'"; + icon_state = "radiation"; + name = "\improper RADIOACTIVE AREA" + }, +/turf/simulated/wall/bay/r_wall/orange, +/area/engineering/engine_room) +"th" = ( +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/obj/structure/cable/orange{ + icon_state = "1-8" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/atmos) +"ti" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/port) +"tj" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck2/exterior) +"tk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 9 + }, +/turf/simulated/wall/bay/r_wall/steel, +/area/stellardelight/deck2/fuelstorage) +"tl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/engine_eva) +"tm" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/cable/cyan{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/engine_eva) +"tn" = ( +/obj/structure/table/standard, +/obj/item/device/camera{ + pixel_x = -2; + pixel_y = 9 + }, +/obj/item/device/camera{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/storage/art) +"to" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 4 + }, +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/obj/effect/landmark/start/atmostech, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/monitoring) +"tp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/starboardsolars) +"ts" = ( +/obj/structure/bed/chair/bay/comfy/brown{ + dir = 1 + }, +/obj/effect/landmark/start/visitor, +/turf/simulated/floor/carpet, +/area/crew_quarters/recreation_area) +"tt" = ( +/obj/structure/table/standard, +/obj/item/weapon/folder/yellow, +/obj/item/weapon/pen/red{ + pixel_x = 2; + pixel_y = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "qmwindows"; + name = "Privacy Shutters"; + pixel_y = 15 + }, +/turf/simulated/floor/wood, +/area/quartermaster/qm) +"tu" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/quartermaster/storage) +"tv" = ( +/obj/structure/bed/psych, +/obj/structure/sign/painting/library_secure{ + pixel_y = -30 + }, +/turf/simulated/floor/wood, +/area/medical/psych) +"tw" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/power/sensor{ + name = "Powernet Sensor - Starboard Solar Array"; + name_tag = "Starboard Solar Array" + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/starboardsolars) +"ty" = ( +/obj/effect/floor_decal/industrial/danger{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/monitoring) +"tz" = ( +/obj/effect/floor_decal/industrial/danger/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/monitoring) +"tA" = ( +/obj/machinery/firealarm/angled, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/aftport) +"tB" = ( +/obj/machinery/firealarm/angled, +/obj/structure/frame, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/workshop) +"tC" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/storage/tech) +"tD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 4 + }, +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/obj/machinery/vending/tool, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck2/o2production) +"tE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/random/tech_supply, +/obj/random/tech_supply, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/engine_eva) +"tF" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"tI" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/monitoring) +"tJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/landmark{ + name = "lightsout" + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker) +"tK" = ( +/turf/simulated/wall/bay/r_wall/steel, +/area/engineering/storage) +"tL" = ( +/obj/structure/sign/nanotrasen{ + pixel_x = 32 + }, +/turf/simulated/floor/glass/reinforced, +/area/stellardelight/deck2/port) +"tM" = ( +/obj/structure/table/rack, +/obj/structure/bed/chair/wheelchair{ + dir = 4 + }, +/obj/structure/bed/chair/wheelchair{ + dir = 4 + }, +/obj/machinery/camera/network/medbay{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/cmostore) +"tN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/monitoring) +"tP" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/port) +"tQ" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/stellardelight/substation/engineering) +"tT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/stellardelight/deck2/triage) +"tU" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/port) +"tV" = ( +/obj/item/weapon/storage/box/nifsofts_medical{ + pixel_x = 7; + pixel_y = 7 + }, +/obj/item/weapon/storage/box/nifsofts_medical, +/obj/structure/table/reinforced, +/obj/item/device/radio{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/device/radio{ + pixel_x = 4; + pixel_y = -4 + }, +/obj/item/device/radio{ + pixel_x = 7; + pixel_y = 8 + }, +/obj/machinery/light_switch{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/cmostore) +"tW" = ( +/turf/simulated/floor/tiled, +/area/crew_quarters/locker) +"tX" = ( +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/engineering/storage) +"tZ" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 6 + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck2/exterior) +"ua" = ( +/obj/effect/floor_decal/milspec/color/blue/corner, +/obj/structure/sign/directions/medical{ + pixel_x = 32; + pixel_y = -29 + }, +/obj/structure/sign/directions/cargo{ + pixel_x = 32; + pixel_y = -35 + }, +/obj/structure/sign/directions/engineering{ + pixel_x = 32; + pixel_y = -41 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"ub" = ( +/turf/simulated/floor/reinforced/airless, +/area/stellardelight/deck2/combustionworkshop) +"uc" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/table/rack, +/obj/random/maintenance/engineering, +/obj/random/maintenance/engineering, +/obj/random/contraband, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/portsolars) +"ud" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled/eris/dark/cargo, +/area/crew_quarters/recreation_area) +"ue" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold4w/visible/red, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"uf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/noticeboard{ + pixel_x = -32 + }, +/obj/effect/floor_decal/milspec/color/green/half{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/hydroponics) +"ug" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/machinery/door/blast/angled/open{ + dir = 4; + id = "privacyshutters"; + name = "Privacy Shutter" + }, +/obj/structure/low_wall/bay/reinforced/blue, +/turf/simulated/floor, +/area/stellardelight/deck2/briefingroom) +"uh" = ( +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/structure/cable/white{ + 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 = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/stellardelight/deck2/triage) +"ui" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 5 + }, +/turf/space, +/area/space) +"uj" = ( +/obj/structure/closet/emergsuit_wall{ + dir = 8; + pixel_x = -27 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/stellardelight/deck2/triage) +"uk" = ( +/turf/simulated/wall/bay/r_wall/steel, +/area/stellardelight/deck2/o2production) +"ul" = ( +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/aftport) +"um" = ( +/obj/structure/railing/grey{ + dir = 8 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/portaft) +"un" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/light/small, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/starboardaft) +"uo" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/angled_bay/hatch{ + dir = 4; + door_color = "#e6ab22"; + name = "Engineering Substation"; + req_one_access = list(10); + stripe_color = "#e6ab22" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/maintenance/stellardelight/substation/engineering) +"up" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/milspec/color/orange/corner, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/aftstarboard) +"uq" = ( +/obj/structure/sign/directions/medical{ + dir = 8; + pixel_x = 32; + pixel_y = 35 + }, +/obj/structure/sign/directions/cargo{ + pixel_x = 32; + pixel_y = 28 + }, +/obj/structure/sign/directions/bridge{ + dir = 1; + pixel_x = 32; + pixel_y = 41 + }, +/obj/structure/sign/directions/engineering{ + pixel_x = 32; + pixel_y = 22 + }, +/obj/structure/sign/directions/bar{ + dir = 1; + pixel_x = 32; + pixel_y = 47 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/starboard) +"ur" = ( +/obj/machinery/power/pointdefense{ + id_tag = "sd_pd" + }, +/obj/effect/floor_decal/industrial/warning/full, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck2/exterior) +"us" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/recharge_station, +/obj/effect/landmark/vines, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck2/starboard) +"ut" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/red{ + dir = 1 + }, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck2/o2production) +"uu" = ( +/obj/structure/cable/orange{ + icon_state = "1-8" + }, +/turf/simulated/wall/bay/r_wall/steel, +/area/stellardelight/deck2/combustionworkshop) +"uv" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/firstaid/surgery, +/obj/item/device/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/white, +/area/medical/surgery) +"uw" = ( +/obj/structure/particle_accelerator/power_box{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark/danger, +/area/engineering/engine_room) +"ux" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/structure/low_wall/bay/reinforced/steel, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/portsolars) +"uy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/storage/art) +"uz" = ( +/obj/structure/sign/deck2{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -24 + }, +/obj/structure/flora/pottedplant/decorative, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/aftstarboard) +"uA" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/grass, +/area/hydroponics) +"uB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/monitoring) +"uC" = ( +/obj/structure/cable/blue{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/dark/gray_platform, +/area/bridge) +"uD" = ( +/obj/structure/cable/orange{ + icon_state = "1-8" + }, +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/engineering_monitoring) +"uE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"uF" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/camera/network/halls, +/obj/effect/floor_decal/milspec/color/blue/half{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/central) +"uG" = ( +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/obj/structure/cable/orange{ + icon_state = "1-4" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck2/exterior) +"uI" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/camera/network/cargo{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/quartermaster/storage) +"uJ" = ( +/obj/machinery/computer/security/telescreen/entertainment{ + desc = "Look's like it's set to the info station... I wonder what else is on?"; + pixel_x = 32; + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/eris/dark/cargo, +/area/crew_quarters/recreation_area) +"uK" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck2/exterior) +"uL" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/portaft) +"uM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/angled_bay/hatch{ + dir = 4; + door_color = "#e6ab22"; + locked = 1; + name = "maintenance access"; + req_one_access = list(19); + stripe_color = "#e6ab22" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/engineering/engine_eva) +"uN" = ( +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/monitoring) +"uO" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/black{ + dir = 4 + }, +/obj/machinery/alarm/angled{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"uP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"uQ" = ( +/obj/structure/stairs/spawner/north, +/obj/structure/railing/grey{ + dir = 4 + }, +/turf/simulated/floor, +/area/stellardelight/deck2/central) +"uR" = ( +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/atmos) +"uU" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/disposal/wall{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/workshop) +"uW" = ( +/obj/machinery/appliance/mixer/candy, +/obj/machinery/light, +/turf/simulated/floor/tiled/eris/cafe, +/area/crew_quarters/kitchen) +"uX" = ( +/obj/machinery/hologram/holopad, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/crew_quarters/bar) +"uY" = ( +/obj/structure/cable/yellow{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/quartermaster/storage) +"uZ" = ( +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "bar"; + name = "Bar Shutter Control"; + pixel_x = 24 + }, +/obj/structure/table/marble, +/obj/item/weapon/reagent_containers/glass/rag, +/obj/item/weapon/reagent_containers/food/drinks/shaker{ + pixel_x = -7; + pixel_y = 11 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 26; + pixel_y = -9 + }, +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "barlockdown"; + name = "Window Lockdown"; + pixel_x = 24; + pixel_y = 10 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/bar) +"va" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/medical/psych) +"vb" = ( +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/locker_room) +"vc" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/eris/dark/gray_platform, +/area/engineering/workshop) +"vd" = ( +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/storage/tech) +"ve" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/eris/white/cargo, +/area/stellardelight/deck2/triage) +"vf" = ( +/obj/structure/table/glass, +/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = -4 + }, +/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = 7; + pixel_y = 1 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/stellardelight/deck2/triage) +"vg" = ( +/obj/machinery/power/apc/angled{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/crew_quarters/bar) +"vh" = ( +/obj/structure/closet/crate/freezer, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer/cold, +/area/crew_quarters/kitchen) +"vi" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/white/cargo, +/area/stellardelight/deck2/triage) +"vj" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"vk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor, +/area/stellardelight/deck2/combustionworkshop) +"vm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/closet/walllocker_double/north{ + color = "#8da4a6" + }, +/obj/item/weapon/circuitboard/tesla_coil, +/obj/item/weapon/circuitboard/tesla_coil, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/engine_eva) +"vn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/monitoring) +"vo" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/obj/item/weapon/cell/device, +/obj/item/weapon/cell/device, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/workshop) +"vp" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/angled_bay/hatch/engineering{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck2/starboard) +"vq" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/quartermaster/storage) +"vt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/table/rack, +/obj/random/contraband, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/random/maintenance, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/starboardsolars) +"vu" = ( +/obj/machinery/lapvend, +/turf/simulated/floor/tiled/techmaint, +/area/storage/primary) +"vw" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor, +/area/stellardelight/deck2/combustionworkshop) +"vx" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/portable_atmospherics/powered/pump/filled, +/turf/simulated/floor, +/area/engineering/atmos/monitoring) +"vy" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/quartermaster/storage) +"vz" = ( +/obj/machinery/alarm/angled, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/engineering/engine_room) +"vA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/quartermaster/storage) +"vB" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/visible/black, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"vC" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "packageSort1" + }, +/obj/machinery/disposal/deliveryChute, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/quartermaster/storage) +"vD" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/yellow, +/obj/machinery/meter, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/monitoring) +"vF" = ( +/obj/machinery/atmospherics/pipe/manifold/visible/supply, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/monitoring) +"vG" = ( +/obj/structure/closet/walllocker_double/medical/north, +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = 5; + pixel_y = 8 + }, +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = 5; + pixel_y = 8 + }, +/obj/item/weapon/storage/belt/medical, +/obj/item/weapon/storage/belt/medical, +/obj/item/clothing/gloves/sterile/nitrile, +/obj/item/clothing/gloves/sterile/nitrile, +/obj/random/tetheraid, +/obj/random/tetheraid, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/cmostore) +"vH" = ( +/obj/effect/floor_decal/milspec/color/white/corner, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/central) +"vI" = ( +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/stellardelight/deck2/triage) +"vJ" = ( +/obj/structure/cable/orange{ + icon_state = "1-8" + }, +/turf/simulated/wall/bay/r_wall/steel, +/area/maintenance/stellardelight/deck2/atmos) +"vK" = ( +/obj/structure/cable/blue{ + icon_state = "1-8" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"vL" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/surgery2) +"vM" = ( +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/stellardelight/substation/engineering) +"vN" = ( +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/reception) +"vO" = ( +/obj/machinery/chem_master, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/chemistry) +"vP" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/effect/landmark/vermin, +/turf/simulated/floor/tiled/monotile, +/area/hydroponics) +"vQ" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/starboardaft) +"vR" = ( +/obj/machinery/light, +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/starboard) +"vS" = ( +/obj/structure/bed/chair/bay/comfy/brown{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/recreation_area) +"vU" = ( +/obj/machinery/alarm/angled{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/port) +"vV" = ( +/obj/structure/grille, +/obj/structure/window/phoronreinforced/full, +/obj/structure/window/phoronreinforced, +/obj/structure/window/phoronreinforced{ + dir = 8 + }, +/obj/structure/window/phoronreinforced{ + dir = 1 + }, +/obj/structure/window/phoronreinforced{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/obj/machinery/door/blast/angled/open{ + dir = 2; + id = "burnchamberlockdown" + }, +/turf/simulated/floor, +/area/stellardelight/deck2/combustionworkshop) +"vW" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/phoron, +/obj/machinery/status_display{ + pixel_x = 32 + }, +/turf/simulated/floor, +/area/stellardelight/deck2/combustionworkshop) +"vX" = ( +/obj/machinery/vending/fitness, +/obj/structure/sign/poster{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck2/port) +"vY" = ( +/obj/item/device/radio/headset/headset_med, +/obj/item/weapon/storage/box/syringes, +/obj/item/weapon/storage/fancy/vials, +/obj/item/weapon/storage/fancy/vials, +/obj/item/weapon/storage/box/pillbottles, +/obj/item/weapon/storage/box/pillbottles, +/obj/structure/closet/wardrobe/chemistry_white, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/chemistry) +"wa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/table/glass, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/reception) +"wb" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/starboard) +"wd" = ( +/obj/structure/closet/secure_closet/medical2, +/obj/machinery/firealarm/angled{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/surgery) +"we" = ( +/obj/effect/floor_decal/milspec/color/blue/half{ + dir = 1 + }, +/obj/machinery/newscaster{ + pixel_y = 28 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/central) +"wf" = ( +/obj/structure/bed/chair/sofa/corp/corner{ + dir = 4 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/crew_quarters/recreation_area) +"wg" = ( +/obj/effect/floor_decal/industrial/warning/full, +/obj/structure/cable/orange{ + icon_state = "0-2" + }, +/obj/machinery/power/pointdefense{ + id_tag = "sd_pd" + }, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck2/exterior) +"wh" = ( +/obj/structure/filingcabinet/chestdrawer{ + name = "Scan Records" + }, +/obj/machinery/firealarm/angled, +/turf/simulated/floor/tiled/eris/white/cargo, +/area/stellardelight/deck2/triage) +"wi" = ( +/obj/structure/railing/grey{ + dir = 8 + }, +/turf/simulated/floor, +/area/stellardelight/deck2/central) +"wk" = ( +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/quartermaster/storage) +"wl" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/milspec/color/white/half, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/central) +"wm" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ + dir = 1 + }, +/turf/simulated/wall/bay/r_wall/steel, +/area/stellardelight/deck2/fuelstorage) +"wn" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 4 + }, +/turf/simulated/floor, +/area/stellardelight/deck2/portescape) +"wo" = ( +/obj/structure/bed/chair/bay/comfy/brown{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/dark/gray_platform, +/area/bridge) +"wp" = ( +/turf/simulated/wall/bay/r_wall/orange, +/area/stellardelight/deck2/combustionworkshop) +"wq" = ( +/obj/structure/bed/chair/backed_red{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/crew_quarters/bar) +"wr" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck2/exterior) +"ws" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/medical/psych) +"wt" = ( +/obj/machinery/power/apc/angled{ + dir = 8 + }, +/obj/structure/cable/green, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker) +"wu" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 4 + }, +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck2/exterior) +"wv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/storage/primary) +"ww" = ( +/obj/structure/table/glass, +/obj/random/medical{ + pixel_x = -4; + pixel_y = 5 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/landmark/vermin, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/stellardelight/deck2/triage) +"wy" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/storage/art) +"wz" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/eris/white/cargo, +/area/stellardelight/deck2/triage) +"wA" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red, +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"wB" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/wall/bay/r_wall/steel, +/area/stellardelight/deck2/port) +"wC" = ( +/obj/machinery/recharger, +/obj/item/weapon/storage/box/syringegun, +/obj/item/weapon/gun/launcher/syringe, +/obj/structure/table/reinforced, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/cmostore) +"wD" = ( +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/engineering/storage) +"wE" = ( +/obj/structure/disposalpipe/sortjunction/untagged/flipped{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/quartermaster/storage) +"wF" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/port) +"wG" = ( +/obj/structure/table/woodentable, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = 30 + }, +/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{ + pixel_x = -3; + pixel_y = 4 + }, +/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{ + pixel_x = 2; + pixel_y = 7 + }, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/crew_quarters/bar) +"wH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/quartermaster/storage) +"wI" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black, +/obj/machinery/meter, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"wJ" = ( +/obj/structure/sign/painting/public{ + pixel_y = -30 + }, +/turf/simulated/floor/tiled, +/area/storage/art) +"wK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/floor_decal/emblem/stellardelight{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"wL" = ( +/obj/machinery/appliance/mixer/cereal, +/obj/machinery/alarm/angled{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/crew_quarters/kitchen) +"wM" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/portable_atmospherics/powered/pump/filled, +/obj/structure/sign/poster{ + dir = 1 + }, +/turf/simulated/floor, +/area/engineering/atmos/monitoring) +"wN" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/effect/landmark/start/cargo, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/quartermaster/storage) +"wO" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/standard/glass{ + dir = 4; + name = "glass airlock" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck2/aftstarboard) +"wP" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/monotile, +/area/hydroponics) +"wR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/landmark/start/cargo, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/quartermaster/storage) +"wS" = ( +/obj/structure/bed/chair, +/obj/machinery/firealarm/angled, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/reception) +"wT" = ( +/obj/machinery/atmospherics/unary/cryo_cell, +/turf/simulated/floor/tiled/techfloor/grid, +/area/stellardelight/deck2/triage) +"wV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/bar) +"wW" = ( +/obj/structure/sign/nanotrasen{ + pixel_x = -32 + }, +/turf/simulated/floor/glass/reinforced, +/area/stellardelight/deck2/starboard) +"wX" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/reception) +"wY" = ( +/turf/simulated/wall/bay/steel, +/area/stellardelight/deck2/aftport) +"wZ" = ( +/obj/machinery/atmospherics/pipe/tank/air{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"xa" = ( +/obj/structure/cable/orange{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/obj/structure/cable/orange{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 10 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/engine_eva) +"xb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/engineering/engine_room) +"xc" = ( +/turf/simulated/wall/bay/r_wall/steel, +/area/maintenance/stellardelight/deck2/starboardsolars) +"xd" = ( +/turf/simulated/wall/bay/r_wall/blue, +/area/stellardelight/deck2/briefingroom) +"xe" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/port) +"xg" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"xh" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/starboard) +"xi" = ( +/obj/machinery/atmospherics/omni/atmos_filter{ + name = "N2O Filter"; + tag_east = 2; + tag_south = 1; + tag_west = 7 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"xj" = ( +/obj/machinery/vending/wallmed1{ + dir = 1; + pixel_y = -30 + }, +/turf/simulated/floor/tiled/white, +/area/medical/surgery) +"xk" = ( +/obj/machinery/photocopier, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/quartermaster/storage) +"xl" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 10 + }, +/obj/structure/sign/atmos_air{ + pixel_x = 32; + pixel_y = 26 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"xm" = ( +/obj/machinery/alarm/angled, +/obj/machinery/recharge_station, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/aftport) +"xn" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/milspec/color/white/half, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark{ + name = "vinestart" + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/central) +"xo" = ( +/obj/machinery/computer/supplycomp/control, +/turf/simulated/floor/wood, +/area/quartermaster/qm) +"xp" = ( +/turf/simulated/wall/bay/white, +/area/medical/psych) +"xq" = ( +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/engine_eva) +"xr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 6 + }, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/monitoring) +"xt" = ( +/obj/machinery/pipedispenser/disposal, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/monitoring) +"xu" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible/black, +/obj/machinery/meter, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"xv" = ( +/obj/item/weapon/melee/chainofcommand, +/obj/item/weapon/coin/phoron{ + desc = "The face of the coin shows a portrait of the explorer who discovered the Virgo-Erigone system. The back depicts a Zodiac symbol that represents Virgo."; + name = "limited edition phoron coin" + }, +/obj/item/weapon/folder/blue_captain, +/obj/item/weapon/stamp/captain, +/obj/structure/table/darkglass, +/turf/simulated/floor/carpet/blucarpet, +/area/crew_quarters/captain) +"xw" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/vehicle/train/trolley{ + dir = 1 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/quartermaster/storage) +"xx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/effect/floor_decal/milspec/color/orange/half{ + dir = 8 + }, +/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" + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/aftport) +"xy" = ( +/obj/structure/railing/grey{ + dir = 4 + }, +/turf/simulated/floor, +/area/stellardelight/deck2/central) +"xz" = ( +/obj/structure/particle_accelerator/end_cap{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark/danger, +/area/engineering/engine_room) +"xA" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled/eris/dark/cargo, +/area/crew_quarters/recreation_area) +"xB" = ( +/obj/machinery/computer/station_alert/all, +/obj/structure/panic_button{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/bridge) +"xC" = ( +/obj/effect/landmark{ + name = "lightsout" + }, +/obj/effect/floor_decal/steeldecal/steel_decals5, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/aftport) +"xD" = ( +/obj/structure/bed/chair/backed_red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/crew_quarters/bar) +"xE" = ( +/obj/structure/bed/chair/sofa/corp/left{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/carpet/turcarpet, +/area/crew_quarters/recreation_area) +"xG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/quartermaster/storage) +"xH" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock/angled_bay/standard/color{ + dir = 8; + door_color = "#ffffff"; + name = "Mental Health"; + req_access = list(64); + stripe_color = "#5a96bb" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/medical/psych) +"xI" = ( +/obj/effect/floor_decal/industrial/outline, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/machinery/vending/loadout/accessory, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/holofloor/tiled/dark, +/area/crew_quarters/locker) +"xJ" = ( +/obj/structure/table/reinforced, +/obj/machinery/chemical_dispenser/biochemistry/full, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 24 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/chemistry) +"xK" = ( +/obj/structure/table/standard, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/recharger{ + pixel_y = 5 + }, +/turf/simulated/floor/tiled/techmaint, +/area/storage/primary) +"xL" = ( +/obj/item/roller, +/obj/item/roller{ + pixel_y = 8 + }, +/obj/item/roller{ + pixel_y = 16 + }, +/obj/structure/table/glass, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/power/apc/angled{ + dir = 4 + }, +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/reception) +"xM" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/workshop) +"xN" = ( +/mob/living/simple_mob/animal/passive/mouse/brown/feivel, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/monitoring) +"xO" = ( +/obj/machinery/light, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/reception) +"xP" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 4 + }, +/obj/structure/table/wooden_reinforced, +/turf/simulated/floor/glass/reinforced, +/area/stellardelight/deck2/fore) +"xQ" = ( +/obj/structure/sign/redcross, +/turf/simulated/wall/bay/white, +/area/medical/reception) +"xR" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 8 + }, +/obj/machinery/door/blast/angled/open{ + dir = 4; + id = "atmoswindowlockdown" + }, +/obj/structure/low_wall/bay/reinforced/steel, +/turf/simulated/floor, +/area/stellardelight/deck2/combustionworkshop) +"xU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/monitoring) +"xV" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/cmostore) +"xW" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 6 + }, +/obj/structure/sign/atmos/phoron{ + pixel_x = -32; + pixel_y = 26 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"xX" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/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/tiled, +/area/stellardelight/deck2/starboard) +"xY" = ( +/obj/structure/table/standard, +/obj/item/weapon/reagent_containers/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner"; + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/device/radio/intercom/department/medbay{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/white, +/area/medical/surgery2) +"xZ" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/central) +"ya" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/sign/nosmoking_1{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/reception) +"yc" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/dark/cargo, +/area/crew_quarters/recreation_area) +"yd" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/standard/glass{ + dir = 4; + name = "glass airlock" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck2/aftport) +"ye" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + 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{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/quartermaster/storage) +"yf" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/table/standard, +/obj/item/weapon/reagent_containers/dropper, +/obj/item/weapon/reagent_containers/glass/beaker{ + pixel_x = 5 + }, +/obj/item/weapon/reagent_containers/food/condiment/enzyme{ + layer = 5 + }, +/obj/item/weapon/reagent_containers/food/condiment/enzyme{ + layer = 5 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/crew_quarters/kitchen) +"yg" = ( +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck2/fuelstorage) +"yh" = ( +/obj/structure/closet/emergsuit_wall{ + dir = 4; + pixel_x = 27 + }, +/obj/effect/floor_decal/milspec/color/black/corner, +/obj/effect/floor_decal/milspec/color/silver/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"yi" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/angled_bay/hatch{ + door_color = "#e6ab22"; + name = "maintenance access"; + req_access = list(11,24); + req_one_access = null; + stripe_color = "#e6ab22" + }, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/engineering/engineering_monitoring) +"yj" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/structure/low_wall/bay/reinforced/orange, +/turf/simulated/floor, +/area/engineering/engine_room) +"yk" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/stellardelight/deck2/triage) +"yl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/wall/bay/r_wall/orange, +/area/engineering/atmos/storage) +"ym" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/sign/department/atmos{ + pixel_x = -32 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/aftport) +"yn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker) +"yo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/wood, +/area/medical/psych) +"yp" = ( +/obj/structure/bed/chair/bay/shuttle{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck2/portescape) +"yq" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/engine_eva) +"yr" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/standard/glass{ + name = "glass airlock" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck2/starboard) +"ys" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/machinery/newscaster{ + pixel_y = 28 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"yu" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/machinery/newscaster{ + pixel_x = 29 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/starboard) +"yv" = ( +/obj/effect/landmark/start/botanist, +/turf/simulated/floor/tiled/monotile, +/area/hydroponics) +"yw" = ( +/obj/structure/table/reinforced, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/glass, +/obj/fiftyspawner/glass, +/obj/machinery/power/apc/angled{ + dir = 4 + }, +/obj/structure/cable/orange{ + icon_state = "0-8" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/workshop) +"yx" = ( +/obj/machinery/status_display{ + pixel_y = -32 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/starboard) +"yy" = ( +/obj/machinery/power/tracker, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck2/exterior) +"yz" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/random/trash_pile, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/portfore) +"yA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 10 + }, +/turf/simulated/wall/bay/r_wall/steel, +/area/engineering/engine_eva) +"yB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/monitoring) +"yC" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/quartermaster/storage) +"yD" = ( +/obj/structure/closet/hydrant{ + pixel_x = -32 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/aftport) +"yE" = ( +/obj/structure/medical_stand, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/cmostore) +"yF" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"yG" = ( +/obj/structure/bed/chair/sofa/corp/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/crew_quarters/recreation_area) +"yH" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/power/solar, +/turf/simulated/floor/airless, +/area/stellardelight/deck2/exterior) +"yI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/cmostore) +"yJ" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/blue{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/blast/angled/open{ + dir = 4; + id = "bridgelockdown" + }, +/obj/machinery/door/airlock/angled_bay/standard/glass{ + dir = 4; + door_color = "#323d80"; + name = "Bridge"; + req_access = list(19); + req_one_access = list(19); + stripe_color = "#f7d35c" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/bridge) +"yK" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck2/exterior) +"yM" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/wood, +/area/stellardelight/deck2/barbackroom) +"yN" = ( +/obj/machinery/door/airlock/angled_bay/hatch{ + door_color = "#e6ab22"; + locked = 1; + name = "Burn Chamber"; + req_one_access = list(24); + stripe_color = "#e6ab22" + }, +/obj/machinery/door/blast/angled/open{ + dir = 2; + id = "burnchamberlockdown" + }, +/turf/simulated/floor/reinforced, +/area/stellardelight/deck2/combustionworkshop) +"yP" = ( +/obj/random/trash_pile, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/portaft) +"yQ" = ( +/obj/machinery/camera/network/medbay{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/reception) +"yR" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/quartermaster/storage) +"yS" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/hatch{ + name = "maintenance access"; + stripe_color = "#454545" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/starboardfore) +"yT" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/status_display/supply_display{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/quartermaster/storage) +"yU" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/surgery) +"yV" = ( +/obj/item/device/sleevemate, +/obj/item/device/denecrotizer/medical, +/obj/structure/table/reinforced, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/cmostore) +"yW" = ( +/turf/simulated/wall/bay/steel, +/area/stellardelight/deck2/aftstarboard) +"yX" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/window/westleft{ + dir = 4; + name = "Animal Pen"; + req_one_access = list(35,28) + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/hydroponics) +"yY" = ( +/obj/machinery/camera/network/halls{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/aftport) +"yZ" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck2/exterior) +"za" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/low_wall/bay/reinforced/orange, +/turf/simulated/floor, +/area/engineering/engine_room) +"zb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/monotile, +/area/hydroponics) +"zc" = ( +/obj/structure/sign/department/chem{ + pixel_y = 32 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/stellardelight/deck2/triage) +"zd" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"zf" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/aftport) +"zh" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/aftstarboard) +"zi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/obj/structure/cable/orange{ + icon_state = "2-4" + }, +/turf/simulated/floor, +/area/stellardelight/deck2/combustionworkshop) +"zj" = ( +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/quartermaster/storage) +"zk" = ( +/obj/machinery/light/small, +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled/eris/white/danger, +/area/stellardelight/deck2/starboard) +"zl" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/aftport) +"zm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techmaint, +/area/storage/primary) +"zo" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/effect/floor_decal/milspec/color/blue/half{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/central) +"zp" = ( +/obj/machinery/power/apc/angled{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/port) +"zq" = ( +/obj/structure/cable/orange{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/storage/tech) +"zr" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/effect/floor_decal/milspec/color/green/half{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/hydroponics) +"zs" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"zt" = ( +/obj/machinery/camera/network/medbay{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/surgery) +"zu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor, +/area/stellardelight/deck2/combustionworkshop) +"zv" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/power/apc/angled{ + cell_type = /obj/item/weapon/cell/super; + dir = 8; + name = "night shift APC"; + nightshift_setting = 2 + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/portsolars) +"zw" = ( +/obj/structure/bed/chair/backed_red{ + dir = 1 + }, +/obj/effect/landmark/start/visitor, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/crew_quarters/bar) +"zy" = ( +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/engineering/engine_room) +"zz" = ( +/obj/effect/floor_decal/milspec/color/black/corner, +/obj/effect/floor_decal/milspec/color/silver/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"zC" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/landmark/start/medical, +/turf/simulated/floor/tiled/eris/white/cargo, +/area/stellardelight/deck2/triage) +"zD" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/eris/white/cargo, +/area/stellardelight/deck2/triage) +"zG" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/reception) +"zH" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/dark/gray_platform, +/area/bridge) +"zI" = ( +/obj/machinery/door/airlock/angled_bay/external/glass{ + dir = 4; + frequency = 1379; + id_tag = "d2_portmaint_exterior"; + locked = 1; + name = "Exterior Airlock" + }, +/obj/machinery/access_button{ + command = "cycle_exterior"; + dir = 8; + frequency = 1379; + master_tag = "d2_portmaint_airlock"; + name = "exterior access button"; + pixel_y = 32; + req_one_access = list(13) + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/maintenance/stellardelight/deck2/portsolars) +"zJ" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/crew_quarters/kitchen) +"zK" = ( +/obj/structure/cable/blue{ + icon_state = "2-4" + }, +/obj/machinery/alarm/angled{ + dir = 4 + }, +/obj/structure/closet/emcloset, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/starboardfore) +"zL" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ + dir = 1 + }, +/obj/machinery/firealarm/angled, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/simulated/floor, +/area/medical/cryo) +"zM" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red, +/obj/machinery/atmospherics/binary/pump{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"zN" = ( +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck2/starboard) +"zO" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/milspec/color/green/half{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"zQ" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/angled_bay/standard/glass{ + door_color = "#ffffff"; + name = "Medbay Storage"; + req_access = list(5); + stripe_color = "#5a96bb" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/medical/cmostore) +"zR" = ( +/obj/effect/floor_decal/milspec/color/orange/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/aftport) +"zS" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/starboard) +"zT" = ( +/obj/machinery/shieldgen, +/obj/machinery/camera/network/engineering, +/turf/simulated/floor/plating, +/area/engineering/storage) +"zU" = ( +/obj/machinery/oxygen_pump/anesthetic, +/turf/simulated/wall/bay/white, +/area/medical/surgery) +"zV" = ( +/obj/structure/cable/orange{ + 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/techfloor, +/area/stellardelight/deck2/fuelstorage) +"zW" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/random/trash_pile, +/obj/effect/landmark{ + name = "morphspawn" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/starboardaft) +"zX" = ( +/obj/machinery/alarm/angled{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/stellardelight/deck2/triage) +"zY" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/fuel, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck2/fuelstorage) +"zZ" = ( +/obj/structure/closet/emergsuit_wall{ + dir = 8; + pixel_x = -27 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/starboard) +"Aa" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/closet/emcloset, +/obj/machinery/camera/network/halls{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/white/danger, +/area/stellardelight/deck2/port) +"Ab" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/monitoring) +"Ad" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/stellardelight/deck2/briefingroom) +"Ae" = ( +/obj/effect/floor_decal/industrial/outline, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/machinery/vending/loadout/uniform, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/holofloor/tiled/dark, +/area/crew_quarters/locker) +"Af" = ( +/obj/structure/table/reinforced, +/obj/item/device/retail_scanner/engineering, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/workshop) +"Ag" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/monitoring) +"Ah" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/external/glass{ + dir = 4 + }, +/obj/effect/map_helper/airlock/door/simple, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck2/starboardescape) +"Ai" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 9 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"Aj" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/starboard) +"Ak" = ( +/obj/structure/table/standard, +/obj/item/weapon/material/knife/butch, +/obj/item/weapon/material/kitchen/rollingpin, +/turf/simulated/floor/tiled/eris/cafe, +/area/crew_quarters/kitchen) +"Al" = ( +/obj/structure/table/fancyblack, +/obj/item/weapon/paper_bin{ + pixel_y = 5 + }, +/obj/item/weapon/pen, +/turf/simulated/floor/carpet/sblucarpet, +/area/stellardelight/deck2/briefingroom) +"Am" = ( +/obj/machinery/portable_atmospherics/powered/scrubber, +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/turf/simulated/floor, +/area/engineering/atmos/monitoring) +"An" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/visible/cyan{ + dir = 6 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/monitoring) +"Ao" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/aftport) +"Ap" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor, +/area/stellardelight/deck2/combustionworkshop) +"Ar" = ( +/obj/machinery/power/pointdefense{ + id_tag = "sd_pd" + }, +/obj/effect/floor_decal/industrial/warning/full, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck2/exterior) +"As" = ( +/obj/machinery/atmospherics/binary/pump/on{ + dir = 1; + name = "Scrubber to Waste" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"At" = ( +/turf/simulated/floor/tiled/eris/dark/gray_platform, +/area/engineering/workshop) +"Au" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 6 + }, +/turf/space, +/area/space) +"Av" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/closet/secure_closet/atmos_personal, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck2/o2production) +"Aw" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/sign/directions/engineering/atmospherics{ + dir = 8; + pixel_x = -32; + pixel_y = -12 + }, +/obj/structure/sign/directions/cargo{ + dir = 10; + pixel_x = -32 + }, +/obj/structure/sign/directions/engineering{ + dir = 4; + pixel_x = -32; + pixel_y = -6 + }, +/obj/structure/sign/directions/medical{ + dir = 1; + pixel_x = -32; + pixel_y = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/stellardelight/deck2/aftstarboard) +"Ax" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/vending/wallmed1/public{ + pixel_x = 29 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/bar) +"Ay" = ( +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/stellardelight/deck2/triage) +"Az" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/low_wall/bay/reinforced/brown, +/turf/simulated/floor, +/area/quartermaster/storage) +"AA" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/central) +"AB" = ( +/obj/machinery/computer/guestpass{ + pixel_y = 24 + }, +/obj/effect/floor_decal/milspec/color/blue/half{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/central) +"AC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/freezer/cold, +/area/crew_quarters/kitchen) +"AD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor, +/area/stellardelight/deck2/combustionworkshop) +"AE" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/locker_room) +"AF" = ( +/obj/machinery/power/pointdefense{ + id_tag = "sd_pd" + }, +/obj/effect/floor_decal/industrial/warning/full, +/obj/structure/cable/orange{ + icon_state = "0-8" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck2/exterior) +"AG" = ( +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/mask/muzzle, +/obj/structure/table/reinforced, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/cmostore) +"AI" = ( +/obj/machinery/door/firedoor/glass/hidden/steel, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"AK" = ( +/obj/machinery/power/sensor{ + name = "Powernet Sensor - Master Grid"; + name_tag = "Master" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/engineering/storage) +"AL" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/sign/directions/engineering{ + dir = 4; + pixel_x = 32; + pixel_y = -6 + }, +/obj/structure/sign/directions/engineering/atmospherics{ + dir = 10; + pixel_x = 32; + pixel_y = -12 + }, +/obj/structure/sign/directions/cargo{ + dir = 6; + pixel_x = 32 + }, +/obj/structure/sign/directions/medical{ + dir = 1; + pixel_x = 32; + pixel_y = 6 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/stellardelight/deck2/aftport) +"AM" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/structure/low_wall/bay/reinforced/steel, +/turf/simulated/floor, +/area/storage/art) +"AN" = ( +/obj/structure/table/marble, +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "bar"; + layer = 3.3; + name = "Bar Shutters" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/bar) +"AO" = ( +/obj/machinery/computer/skills{ + pixel_y = 7 + }, +/obj/structure/table/darkglass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/button/remote/airlock{ + id = "captaindoor"; + pixel_x = -15; + pixel_y = 2 + }, +/turf/simulated/floor/carpet/blucarpet, +/area/crew_quarters/captain) +"AP" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/portaft) +"AR" = ( +/obj/machinery/light, +/turf/simulated/floor/grass, +/area/hydroponics) +"AS" = ( +/obj/structure/table/rack/steel, +/obj/item/weapon/circuitboard/algae_farm{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/weapon/circuitboard/unary_atmos/heater, +/obj/item/weapon/circuitboard/unary_atmos/cooler{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/storage/tech) +"AT" = ( +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/storage/tech) +"AU" = ( +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/portsolars) +"AV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/turf/simulated/wall/bay/r_wall/steel, +/area/stellardelight/deck2/fuelstorage) +"AW" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"AX" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"AY" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/crew_quarters/bar) +"AZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/corner, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/quartermaster/storage) +"Ba" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 10 + }, +/obj/machinery/sleeper{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/white/cargo, +/area/stellardelight/deck2/triage) +"Bb" = ( +/obj/structure/flora/pottedplant/minitree, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/chemistry) +"Bc" = ( +/obj/effect/floor_decal/milspec/color/blue/half{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"Bd" = ( +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/camera/network/engineering, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck2/fuelstorage) +"Be" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/closet/secure_closet/engineering_personal, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/locker_room) +"Bf" = ( +/obj/structure/sign/directions/bar{ + dir = 1; + pixel_x = 32; + pixel_y = 15 + }, +/obj/machinery/camera/network/halls{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/port) +"Bg" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/stellardelight/deck2/aftstarboard) +"Bh" = ( +/obj/machinery/computer/operating, +/turf/simulated/floor/tiled/white, +/area/medical/surgery) +"Bi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/storage/art) +"Bj" = ( +/obj/machinery/smartfridge/produce/persistent_lossy, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor, +/area/crew_quarters/kitchen) +"Bk" = ( +/turf/simulated/floor/tiled/freezer/cold, +/area/crew_quarters/kitchen) +"Bl" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock/angled_bay/standard/color{ + dir = 8; + door_color = "#ffffff"; + name = "Operating Theatre 1"; + req_access = list(45); + stripe_color = "#5a96bb" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/medical/surgery) +"Bm" = ( +/obj/effect/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/crew_quarters/kitchen) +"Bn" = ( +/obj/structure/table/standard, +/obj/machinery/reagentgrinder{ + pixel_y = 10 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/crew_quarters/kitchen) +"Bo" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/landmark/start/chef, +/turf/simulated/floor/tiled/eris/cafe, +/area/crew_quarters/kitchen) +"Bp" = ( +/turf/simulated/floor/carpet, +/area/crew_quarters/recreation_area) +"Bq" = ( +/turf/simulated/floor/tiled/eris/white/danger, +/area/stellardelight/deck2/starboard) +"Br" = ( +/obj/structure/shuttle/window, +/obj/structure/grille, +/obj/effect/shuttle_landmark{ + base_area = /area/stellardelight/deck2/exterior; + base_turf = /turf/simulated/floor/airless; + docking_controller = "port_escape_berth"; + landmark_tag = "port_ship_berth"; + name = "Stellar Delight Escape Pod Port" + }, +/turf/simulated/floor, +/area/stellardelight/deck2/portescape) +"Bs" = ( +/obj/machinery/field_generator{ + anchored = 1; + state = 1 + }, +/turf/simulated/floor/airless, +/area/engineering/engine_room) +"Bt" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/aftport) +"Bu" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/structure/low_wall/bay/reinforced/steel, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/starboardfore) +"Bv" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 1 + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/medical/surgery2) +"Bw" = ( +/turf/simulated/wall/bay/r_wall/steel, +/area/stellardelight/deck2/port) +"Bx" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals5, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/port) +"BA" = ( +/obj/structure/railing/grey{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/stellardelight/deck2/fore) +"BB" = ( +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/engine_eva) +"BC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/crew_quarters/recreation_area) +"BD" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/standard/glass{ + door_color = "#9c9c9c"; + fill_color = null; + name = "Commons"; + stripe_color = "#89bd66" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/crew_quarters/recreation_area) +"BE" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck2/exterior) +"BF" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/freezer/cold, +/area/crew_quarters/kitchen) +"BG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/meter, +/turf/simulated/floor, +/area/stellardelight/deck2/combustionworkshop) +"BH" = ( +/obj/effect/floor_decal/milspec/color/green/half{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hydroponics) +"BI" = ( +/obj/structure/table/standard, +/obj/item/weapon/clipboard, +/obj/item/weapon/stamp/qm, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood, +/area/quartermaster/qm) +"BJ" = ( +/obj/machinery/hologram/holopad, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/crew_quarters/bar) +"BK" = ( +/obj/item/weapon/stool/padded, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/carpet, +/area/crew_quarters/recreation_area) +"BL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals5, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/aftport) +"BM" = ( +/obj/structure/table/standard, +/obj/item/weapon/folder/yellow, +/obj/item/weapon/stamp/denied{ + pixel_x = 4; + pixel_y = -2 + }, +/obj/item/weapon/stamp/cargo, +/obj/machinery/light/floortube{ + dir = 1; + pixel_y = 6 + }, +/obj/machinery/camera/network/cargo, +/obj/item/device/retail_scanner/cargo, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/quartermaster/storage) +"BN" = ( +/turf/simulated/wall/bay/r_wall/steel, +/area/maintenance/stellardelight/substation/engineering) +"BO" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/quartermaster/storage) +"BP" = ( +/obj/effect/floor_decal/milspec/color/blue/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/port) +"BQ" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/portable_atmospherics/powered/pump/filled, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/simulated/floor, +/area/engineering/atmos/monitoring) +"BR" = ( +/obj/structure/closet/secure_closet/medical1, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/chemistry) +"BS" = ( +/obj/machinery/power/apc/angled{ + dir = 1; + name = "night shift APC"; + nightshift_setting = 2 + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/machinery/light_switch{ + pixel_x = 9; + pixel_y = 24 + }, +/turf/simulated/floor/tiled/eris/dark/cargo, +/area/crew_quarters/recreation_area) +"BT" = ( +/turf/simulated/wall/bay/r_wall/steel, +/area/engineering/atmos/storage) +"BU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/eris/white/cargo, +/area/stellardelight/deck2/triage) +"BV" = ( +/obj/structure/table/marble, +/obj/machinery/door/blast/shutters{ + id = "bar"; + layer = 3.3; + name = "Bar Shutters" + }, +/obj/item/weapon/material/ashtray/glass, +/turf/simulated/floor/lino, +/area/crew_quarters/bar) +"BW" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/external/glass{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck2/port) +"BX" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/bridge) +"BY" = ( +/obj/machinery/atmospherics/pipe/tank/nitrogen{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"BZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck2/o2production) +"Ca" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/monitoring) +"Cb" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/status_display{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled/eris/white/danger, +/area/stellardelight/deck2/port) +"Cc" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/junction, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/starboardsolars) +"Cd" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/stellardelight/deck2/triage) +"Ce" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/double/glass/common{ + dir = 8; + name = "Escape Pod" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck2/port) +"Cf" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck2/exterior) +"Cg" = ( +/obj/structure/sign/painting/public{ + pixel_y = -30 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/storage/art) +"Ch" = ( +/obj/machinery/atmospherics/pipe/tank/oxygen{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"Ci" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/reception) +"Cj" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/port) +"Ck" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 5 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/orange{ + icon_state = "1-4" + }, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck2/o2production) +"Cl" = ( +/obj/structure/cable/orange{ + icon_state = "2-8" + }, +/turf/simulated/wall/bay/r_wall/steel, +/area/engineering/storage) +"Cm" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/quartermaster/storage) +"Cn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 1 + }, +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/obj/effect/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/monitoring) +"Co" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/starboard) +"Cp" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/power/solar, +/turf/simulated/floor/airless, +/area/stellardelight/deck2/exterior) +"Cq" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/solar, +/turf/simulated/floor/airless, +/area/stellardelight/deck2/exterior) +"Cr" = ( +/obj/machinery/alarm/angled{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/storage/tech) +"Ct" = ( +/obj/machinery/light, +/obj/effect/floor_decal/milspec/color/black/corner, +/obj/effect/floor_decal/milspec/color/silver/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"Cu" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/portfore) +"Cv" = ( +/obj/machinery/gear_painter, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker) +"Cw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/bridge) +"Cx" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/aftstarboard) +"Cy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark/cargo, +/area/crew_quarters/recreation_area) +"Cz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/camera/network/engineering, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/monitoring) +"CA" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/portsolars) +"CB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/monitoring) +"CC" = ( +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/starboard) +"CD" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/aftport) +"CE" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/crew_quarters/kitchen) +"CF" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker) +"CG" = ( +/obj/machinery/computer/ship/helm, +/turf/simulated/floor/tiled/eris/dark/gray_platform, +/area/bridge) +"CH" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 10 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"CI" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{ + pixel_x = 2; + pixel_y = 7 + }, +/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{ + pixel_x = -3; + pixel_y = 4 + }, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/crew_quarters/bar) +"CJ" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/port) +"CK" = ( +/obj/structure/table/fancyblack, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/carpet/sblucarpet, +/area/stellardelight/deck2/briefingroom) +"CL" = ( +/obj/structure/table/reinforced, +/obj/random/maintenance/clean, +/obj/random/powercell, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/workshop) +"CM" = ( +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/structure/cable/orange{ + icon_state = "1-8" + }, +/obj/effect/landmark/vermin, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/monitoring) +"CO" = ( +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/turf/simulated/wall/bay/r_wall/steel, +/area/maintenance/stellardelight/deck2/portsolars) +"CP" = ( +/obj/structure/cable/orange{ + icon_state = "2-8" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck2/exterior) +"CQ" = ( +/obj/machinery/power/pointdefense{ + id_tag = "sd_pd" + }, +/obj/effect/floor_decal/industrial/warning/full, +/obj/structure/cable/orange{ + icon_state = "0-4" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck2/exterior) +"CR" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/obj/effect/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"CS" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/effect/landmark/start/cargo, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/quartermaster/storage) +"CT" = ( +/obj/machinery/atmospherics/pipe/tank/nitrogen, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"CU" = ( +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/turf/simulated/wall/bay/r_wall/steel, +/area/maintenance/stellardelight/deck2/starboardsolars) +"CV" = ( +/obj/effect/floor_decal/industrial/outline, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/machinery/vending/loadout/clothing, +/obj/machinery/alarm/angled, +/turf/simulated/floor/holofloor/tiled/dark, +/area/crew_quarters/locker) +"CW" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/starboard) +"CY" = ( +/obj/structure/table/woodentable, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{ + pixel_x = -3; + pixel_y = 4 + }, +/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{ + pixel_x = 2; + pixel_y = 7 + }, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/crew_quarters/bar) +"CZ" = ( +/obj/machinery/power/pointdefense{ + id_tag = "sd_pd" + }, +/obj/effect/floor_decal/industrial/warning/full, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck2/exterior) +"Da" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/central) +"Dc" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/obj/effect/landmark/start/atmostech, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"Dd" = ( +/obj/structure/table/standard, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/structure/symbol/sa{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/storage/primary) +"De" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -24 + }, +/obj/structure/flora/pottedplant/decorative, +/turf/simulated/floor/tiled/eris/dark/cargo, +/area/crew_quarters/recreation_area) +"Df" = ( +/obj/machinery/atmospherics/unary/freezer{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/cmostore) +"Dg" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/nitrogen, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/monitoring) +"Dh" = ( +/obj/machinery/computer/med_data, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/bridge) +"Di" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck2/exterior) +"Dj" = ( +/obj/machinery/smartfridge/drinks, +/turf/simulated/floor/lino, +/area/crew_quarters/bar) +"Dk" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/double/glass{ + door_color = "#ffffff"; + id_tag = "MedbayFoyer W"; + name = "Medbay Foyer"; + req_access = list(5); + req_one_access = list(5); + stripe_color = "#5a96bb" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck2/triage) +"Dl" = ( +/obj/structure/bed/chair/bay/comfy/brown, +/turf/simulated/floor/carpet, +/area/crew_quarters/recreation_area) +"Dm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/monitoring) +"Dn" = ( +/turf/simulated/floor/wood, +/area/medical/psych) +"Do" = ( +/obj/machinery/seed_storage/garden, +/obj/effect/floor_decal/milspec/color/green, +/turf/simulated/floor/tiled, +/area/hydroponics) +"Dq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/hydroponics) +"Dr" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/quartermaster/qm) +"Ds" = ( +/obj/structure/cable/orange{ + icon_state = "2-4" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck2/exterior) +"Dt" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck2/exterior) +"Du" = ( +/obj/effect/floor_decal/industrial/outline, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/undies_wardrobe, +/obj/effect/landmark/vermin, +/turf/simulated/floor/holofloor/tiled/dark, +/area/crew_quarters/locker) +"Dv" = ( +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/chemistry) +"Dw" = ( +/obj/machinery/atmospherics/unary/engine/bigger{ + dir = 1 + }, +/turf/simulated/floor/airless, +/area/engineering/engine_eva) +"Dx" = ( +/obj/structure/table/woodentable, +/obj/item/device/flashlight/lamp/green{ + pixel_x = -5; + pixel_y = 4 + }, +/obj/item/weapon/clipboard, +/turf/simulated/floor/carpet/blue, +/area/medical/psych) +"Dy" = ( +/obj/structure/table/standard, +/obj/item/device/defib_kit/loaded, +/obj/item/weapon/reagent_containers/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner"; + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/device/radio/intercom/department/medbay{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/white, +/area/medical/surgery) +"Dz" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/angled_bay/standard/glass{ + door_color = "#ffffff"; + name = "Chemistry"; + req_access = list(33); + stripe_color = "#5a96bb" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/medical/chemistry) +"DA" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/stellardelight/deck2/aftport) +"DB" = ( +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/atmos) +"DC" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/machinery/firealarm/angled{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"DD" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/alarm/freezer{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/freezer/cold, +/area/crew_quarters/kitchen) +"DE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/green, +/obj/machinery/alarm/angled{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck2/o2production) +"DF" = ( +/obj/machinery/atmospherics/portables_connector/fuel, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor, +/area/stellardelight/deck2/fuelstorage) +"DG" = ( +/obj/machinery/power/apc/angled{ + dir = 8 + }, +/obj/structure/cable/blue{ + icon_state = "0-2" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"DH" = ( +/obj/structure/cable/green{ + 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/manifold/hidden/supply, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/portsolars) +"DI" = ( +/obj/machinery/camera/network/civilian{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/crew_quarters/bar) +"DJ" = ( +/obj/machinery/portable_atmospherics/canister/oxygen/prechilled, +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/power/apc/angled{ + dir = 1 + }, +/obj/structure/cable/white{ + icon_state = "0-8" + }, +/turf/simulated/floor, +/area/medical/cryo) +"DL" = ( +/turf/simulated/floor/carpet/turcarpet, +/area/crew_quarters/recreation_area) +"DM" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/quartermaster/storage) +"DN" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/bed/chair/comfy/brown, +/turf/simulated/floor/glass/reinforced, +/area/stellardelight/deck2/fore) +"DO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 24 + }, +/obj/structure/flora/pottedplant/decorative, +/turf/simulated/floor/tiled/eris/dark/cargo, +/area/crew_quarters/recreation_area) +"DP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/freezer/cold, +/area/crew_quarters/kitchen) +"DQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 1; + name = "Atmospherics"; + sortType = "Atmospherics" + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/aftport) +"DR" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/tank/phoron/full{ + dir = 8 + }, +/turf/simulated/floor, +/area/stellardelight/deck2/fuelstorage) +"DS" = ( +/obj/structure/bed/chair/bay/comfy/brown, +/obj/effect/landmark/start/clown, +/turf/simulated/floor/carpet, +/area/crew_quarters/recreation_area) +"DT" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/engineering/storage) +"DV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/sign/department/cargo{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/quartermaster/storage) +"DW" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/landmark{ + name = "lightsout" + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"DX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/simulated/floor, +/area/stellardelight/deck2/combustionworkshop) +"DY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 5 + }, +/obj/structure/cable/orange{ + icon_state = "1-4" + }, +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/monitoring) +"DZ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/quartermaster/storage) +"Ea" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1379; + id_tag = "d2_starmaint_airpump" + }, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + id_tag = "d2_starmaint_airlock"; + pixel_y = 24; + req_one_access = list(13); + tag_airpump = "d2_starmaint_airpump"; + tag_chamber_sensor = "d2_starmaint_sensor"; + tag_exterior_door = "d2_starmaint_exterior"; + tag_interior_door = "d2_starmaint_interior" + }, +/obj/machinery/airlock_sensor{ + dir = 1; + id_tag = "d2_starmaint_sensor"; + pixel_y = -24; + req_access = list(13) + }, +/obj/machinery/light/small, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/starboardsolars) +"Ec" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/port) +"Ed" = ( +/obj/machinery/light, +/obj/structure/table/reinforced, +/obj/item/weapon/packageWrap, +/obj/item/weapon/hand_labeler, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/item/weapon/tape_roll, +/obj/item/weapon/clipboard, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/engineering_monitoring) +"Ee" = ( +/obj/machinery/optable, +/turf/simulated/floor/tiled/white, +/area/medical/surgery) +"Ef" = ( +/turf/simulated/open, +/area/stellardelight/deck2/aftport) +"Eg" = ( +/obj/structure/cable/orange{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/eris/dark/gray_platform, +/area/engineering/workshop) +"Eh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/quartermaster/storage) +"Ei" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 4 + }, +/obj/effect/landmark/start/atmostech, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck2/o2production) +"Ej" = ( +/obj/machinery/door/firedoor/glass/hidden/steel, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/structure/sign/directions/stairs_down{ + dir = 1; + pixel_x = -32; + pixel_y = 6 + }, +/obj/structure/sign/directions/stairs_up{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/aftstarboard) +"Ek" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red, +/obj/machinery/meter, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/monitoring) +"El" = ( +/obj/structure/cable/orange{ + icon_state = "1-4" + }, +/turf/simulated/wall/bay/r_wall/steel, +/area/maintenance/stellardelight/deck2/starboardsolars) +"Em" = ( +/obj/machinery/portable_atmospherics/powered/scrubber, +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/structure/sign/poster{ + dir = 1 + }, +/turf/simulated/floor, +/area/engineering/atmos/monitoring) +"En" = ( +/obj/structure/cable/blue{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/starboard) +"Eo" = ( +/obj/effect/floor_decal/corner_steel_grid{ + dir = 10 + }, +/obj/machinery/sleep_console{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/white/cargo, +/area/stellardelight/deck2/triage) +"Ep" = ( +/obj/structure/bed/chair/bay/comfy/brown, +/obj/effect/landmark/start/mime, +/turf/simulated/floor/carpet, +/area/crew_quarters/recreation_area) +"Eq" = ( +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/monitoring) +"Er" = ( +/obj/effect/floor_decal/industrial/danger{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/monitoring) +"Es" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/port) +"Et" = ( +/obj/machinery/portable_atmospherics/powered/scrubber, +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor, +/area/engineering/atmos/monitoring) +"Eu" = ( +/obj/effect/shuttle_landmark{ + base_area = /area/quartermaster/storage; + base_turf = /turf/simulated/floor/reinforced; + docking_controller = "cargo_bay"; + landmark_tag = "supply_station"; + name = "Ship Cargo Bay" + }, +/turf/simulated/floor/reinforced, +/area/quartermaster/storage) +"Ev" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/portfore) +"Ew" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/double/glass/common{ + dir = 8; + name = "Escape Pod" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck2/starboard) +"Ex" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/hatch{ + door_color = "#ffffff"; + name = "Gas Storage"; + req_one_access = list(5,24); + stripe_color = "#5a96bb" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/medical/cryo) +"Ey" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/structure/low_wall/bay/reinforced/steel, +/turf/simulated/floor, +/area/storage/primary) +"Ez" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/storage/box/beanbags, +/obj/item/weapon/gun/projectile/shotgun/doublebarrel, +/obj/item/weapon/paper{ + info = "This permit signifies that the Bartender is permitted to posess this firearm in the bar, and ONLY the bar. Failure to adhere to this permit will result in confiscation of the weapon and possibly arrest."; + name = "Shotgun permit" + }, +/turf/simulated/floor/wood, +/area/stellardelight/deck2/barbackroom) +"EA" = ( +/obj/machinery/light/floortube{ + dir = 8; + pixel_x = -6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/monotile, +/area/hydroponics) +"EC" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/paper_bin{ + pixel_y = 4 + }, +/obj/item/weapon/pen{ + pixel_y = 4 + }, +/turf/simulated/floor/carpet/blue, +/area/medical/psych) +"ED" = ( +/obj/machinery/photocopier/faxmachine{ + department = "Captain's Office" + }, +/obj/structure/table/darkglass, +/obj/structure/sign/painting/library_secure{ + pixel_x = 30 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"EE" = ( +/obj/effect/floor_decal/milspec/color/silver/corner{ + dir = 4 + }, +/obj/effect/floor_decal/milspec/color/black/corner{ + dir = 1 + }, +/obj/machinery/newscaster{ + pixel_y = 28 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"EF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/wall/bay/r_wall/orange, +/area/stellardelight/deck2/o2production) +"EG" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/portaft) +"EH" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/crate, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/camera/network/cargo{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/quartermaster/storage) +"EI" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/structure/closet/emergsuit_wall{ + dir = 8; + pixel_x = -27 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/port) +"EJ" = ( +/obj/machinery/computer/crew{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/reception) +"EK" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/quartermaster/storage) +"EL" = ( +/obj/structure/table/standard, +/obj/item/device/healthanalyzer, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/white, +/area/medical/surgery) +"EM" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/quartermaster/storage) +"EN" = ( +/obj/effect/floor_decal/emblem/stellardelight{ + dir = 6 + }, +/obj/effect/floor_decal/milspec/color/blue/half, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"EO" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/captaindouble, +/obj/structure/curtain/black, +/obj/effect/landmark/start/captain, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"EP" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/airless, +/area/engineering/engine_room) +"EQ" = ( +/obj/machinery/atmospherics/pipe/tank/phoron/full{ + dir = 4 + }, +/turf/simulated/floor, +/area/stellardelight/deck2/fuelstorage) +"ER" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/standard/glass{ + dir = 4; + door_color = "#e6ab22"; + name = "Engineering Hard Storage"; + req_access = list(11); + stripe_color = "#913013" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/engineering/storage) +"ES" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/effect/floor_decal/milspec/color/green/half{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/hydroponics) +"ET" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/conveyor{ + id = "cargoload" + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/quartermaster/storage) +"EU" = ( +/obj/structure/table/glass, +/obj/random/medical{ + pixel_x = -4; + pixel_y = 5 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/stellardelight/deck2/triage) +"EV" = ( +/obj/item/weapon/stool/padded{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/crew_quarters/bar) +"EW" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/aftport) +"EX" = ( +/obj/random/trash_pile, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/starboardaft) +"EZ" = ( +/obj/machinery/vending/tool, +/obj/machinery/camera/network/civilian, +/turf/simulated/floor/tiled/techmaint, +/area/storage/primary) +"Fa" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/stellardelight/deck2/combustionworkshop) +"Fb" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/crew_quarters/bar) +"Fc" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/light/small, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/portfore) +"Fd" = ( +/obj/structure/cable/orange{ + icon_state = "2-4" + }, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark/gray_platform, +/area/engineering/workshop) +"Fe" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/sign/vacuum{ + pixel_x = -32 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/portsolars) +"Ff" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/machinery/door/blast/angled/open{ + dir = 4; + id = "atmoswindowlockdown" + }, +/obj/structure/low_wall/bay/reinforced/steel, +/turf/simulated/floor, +/area/stellardelight/deck2/combustionworkshop) +"Fg" = ( +/obj/structure/cable/orange{ + icon_state = "2-4" + }, +/turf/simulated/wall/bay/r_wall/steel, +/area/maintenance/stellardelight/deck2/starboardsolars) +"Fh" = ( +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/obj/structure/cable/orange{ + icon_state = "1-4" + }, +/obj/structure/cable/orange{ + icon_state = "2-4" + }, +/obj/structure/cable/orange{ + icon_state = "2-4" + }, +/obj/structure/cable/orange{ + icon_state = "2-4" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck2/exterior) +"Fi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + id_tag = "cargo_bay"; + pixel_y = 24; + req_one_access = null; + tag_door = null + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/quartermaster/storage) +"Fk" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 1 + }, +/turf/simulated/floor/carpet/sblucarpet, +/area/stellardelight/deck2/briefingroom) +"Fl" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/red{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/monitoring) +"Fm" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/machinery/power/apc/angled{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/crew_quarters/kitchen) +"Fn" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/quartermaster/qm) +"Fo" = ( +/obj/machinery/power/solar_control{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/portsolars) +"Fp" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/table/steel_reinforced, +/obj/machinery/photocopier/faxmachine{ + department = "Bridge" + }, +/obj/machinery/light/floortube{ + dir = 4; + pixel_x = 6 + }, +/obj/structure/closet/walllocker_double/north{ + color = "#8da4a6"; + dir = 4; + pixel_x = 32; + pixel_y = 0 + }, +/obj/item/weapon/paper/dockingcodes, +/obj/item/device/radio, +/obj/item/device/radio, +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/bridge) +"Fq" = ( +/obj/structure/table/standard, +/obj/item/device/healthanalyzer, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/surgery) +"Fr" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/folder/white, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/carpet/blue, +/area/medical/psych) +"Fs" = ( +/obj/machinery/alarm/angled{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable/cyan{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/locker_room) +"Ft" = ( +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/chemistry) +"Fv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/monitoring) +"Fw" = ( +/obj/structure/table/gamblingtable, +/obj/machinery/light/floortube{ + pixel_y = -6 + }, +/obj/item/weapon/material/ashtray/glass, +/turf/simulated/floor/carpet, +/area/crew_quarters/recreation_area) +"Fx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 10 + }, +/obj/machinery/button/ignition{ + id = "castfireball"; + pixel_y = 28 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/button/remote/blast_door{ + id = "burnchamberlockdown"; + name = "Window Lockdown"; + pixel_x = -9; + pixel_y = 31 + }, +/obj/machinery/button/remote/blast_door{ + id = "burnchamberlockvent"; + name = "Chamber Vent"; + pixel_x = -1; + pixel_y = 37 + }, +/obj/machinery/computer/general_air_control/supermatter_core{ + input_tag = "cooling_in"; + name = "Engine Cooling Control"; + output_tag = "cooling_out"; + sensors = list("burn_chamber" = "Burn Chamber"); + throwpass = 1 + }, +/turf/simulated/floor, +/area/stellardelight/deck2/combustionworkshop) +"Fy" = ( +/obj/item/weapon/stool/padded{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/dark/cargo, +/area/crew_quarters/recreation_area) +"Fz" = ( +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/turf/simulated/wall/bay/r_wall/steel, +/area/maintenance/stellardelight/deck2/portsolars) +"FA" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/vending/nifsoft_shop, +/obj/machinery/item_bank{ + pixel_y = 28 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"FB" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/wood, +/area/stellardelight/deck2/barbackroom) +"FC" = ( +/obj/structure/closet/secure_closet/bar, +/obj/machinery/alarm/angled{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/stellardelight/deck2/barbackroom) +"FD" = ( +/obj/machinery/atmospherics/unary/outlet_injector{ + dir = 4; + frequency = 1441; + id = "atmos_out"; + use_power = 1 + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck2/exterior) +"FE" = ( +/obj/machinery/sleep_console{ + dir = 4 + }, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 10 + }, +/turf/simulated/floor/tiled/eris/white/cargo, +/area/stellardelight/deck2/triage) +"FF" = ( +/obj/structure/particle_accelerator/particle_emitter/center{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark/danger, +/area/engineering/engine_room) +"FG" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/eris/white/cargo, +/area/stellardelight/deck2/triage) +"FH" = ( +/obj/structure/medical_stand, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/stellardelight/deck2/triage) +"FJ" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/angled_bay/standard/glass{ + door_color = "#9c9c9c"; + name = "Bar"; + stripe_color = "#89bd66" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/crew_quarters/bar) +"FK" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/cable/orange{ + icon_state = "1-8" + }, +/obj/structure/table/rack, +/obj/random/maintenance/cargo, +/obj/random/maintenance/engineering, +/obj/random/maintenance/engineering, +/obj/random/maintenance/engineering, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/monitoring) +"FL" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan, +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/monitoring) +"FM" = ( +/obj/item/weapon/stool/padded{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/crew_quarters/bar) +"FN" = ( +/obj/structure/table/rack/steel, +/obj/item/weapon/circuitboard/grinder{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/weapon/circuitboard/grill{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/weapon/circuitboard/fryer{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/weapon/circuitboard/oven{ + pixel_x = -1; + pixel_y = 1 + }, +/obj/item/weapon/circuitboard/microwave, +/obj/item/weapon/circuitboard/cerealmaker{ + pixel_x = 1; + pixel_y = -1 + }, +/obj/item/weapon/circuitboard/candymachine{ + pixel_x = 2; + pixel_y = -2 + }, +/obj/item/weapon/circuitboard/biogenerator{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/machinery/power/apc/angled{ + dir = 4 + }, +/obj/structure/cable/orange{ + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/storage/tech) +"FP" = ( +/obj/machinery/light, +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/port) +"FQ" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/starboard) +"FR" = ( +/obj/effect/floor_decal/industrial/outline, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/machinery/vending/loadout/overwear, +/obj/machinery/camera/network/civilian, +/turf/simulated/floor/holofloor/tiled/dark, +/area/crew_quarters/locker) +"FS" = ( +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/machinery/power/apc/angled{ + dir = 1; + name = "night shift APC"; + nightshift_setting = 2 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/portaft) +"FT" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/orange{ + icon_state = "2-4" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/starboardsolars) +"FU" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"FV" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/engine_eva) +"FW" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/light/floortube{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/quartermaster/storage) +"FX" = ( +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/aftport) +"FY" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/engine_eva) +"FZ" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/machinery/alarm/angled{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/starboardfore) +"Ga" = ( +/obj/structure/closet/emergsuit_wall{ + dir = 8; + pixel_x = -27 + }, +/obj/effect/floor_decal/milspec/color/black/corner{ + dir = 1 + }, +/obj/effect/floor_decal/milspec/color/silver/corner{ + dir = 8 + }, +/obj/effect/landmark/vines, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"Gb" = ( +/obj/structure/window/reinforced{ + dir = 8; + pixel_x = -4 + }, +/obj/structure/bed/chair/comfy/brown{ + dir = 1 + }, +/turf/simulated/floor/glass/reinforced, +/area/stellardelight/deck2/fore) +"Gc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/port) +"Gd" = ( +/obj/structure/cable/blue{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/milspec/color/blue/half{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/starboard) +"Ge" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 1 + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/medical/surgery) +"Gf" = ( +/turf/simulated/wall/bay/orange, +/area/maintenance/stellardelight/substation/engineering) +"Gg" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 8 + }, +/turf/simulated/floor/carpet/sblucarpet, +/area/stellardelight/deck2/briefingroom) +"Gh" = ( +/obj/machinery/atmospherics/binary/pump{ + name = "CO2 to O2 Generators" + }, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/monitoring) +"Gi" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/crew_quarters/kitchen) +"Gj" = ( +/obj/effect/floor_decal/milspec/color/black/corner{ + dir = 1 + }, +/obj/effect/floor_decal/milspec/color/silver/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"Gl" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/monitoring) +"Gn" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/crew_quarters/bar) +"Go" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck2/exterior) +"Gp" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/starboard) +"Gq" = ( +/obj/structure/lattice, +/obj/machinery/door/firedoor/glass, +/turf/simulated/open, +/area/maintenance/stellardelight/deck2/portfore) +"Gr" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/carpet/blue, +/area/medical/psych) +"Gs" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/standard/glass{ + dir = 4; + name = "glass airlock" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck2/aftport) +"Gt" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/status_display{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled/eris/white/danger, +/area/stellardelight/deck2/starboard) +"Gu" = ( +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/turf/simulated/floor/airless, +/area/engineering/engine_room) +"Gv" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/portfore) +"Gw" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/hologram/holopad, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/surgery2) +"Gx" = ( +/obj/structure/sign/deck2{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 24 + }, +/obj/structure/flora/pottedplant/decorative, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/aftport) +"Gy" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/angled_shutter{ + id = "kitchenhallway"; + layer = 3.3; + name = "Kitchen Shutters" + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/crew_quarters/kitchen) +"Gz" = ( +/obj/machinery/computer/general_air_control{ + frequency = 1443; + level = 3; + name = "Distribution and Waste Monitor"; + sensors = list("dist_main_meter" = "Surface - Distribution Loop", "scrub_main_meter" = "Surface - Scrubbers Loop", "mair_main_meter" = "Surface - Mixed Air Tank", "dist_aux_meter" = "Station - Distribution Loop", "scrub_aux_meter" = "Station - Scrubbers Loop", "mair_aux_meter" = "Station - Mixed Air Tank", "mair_mining_meter" = "Mining Outpost - Mixed Air Tank") + }, +/obj/machinery/power/apc/angled{ + dir = 1 + }, +/obj/structure/cable/orange{ + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/engineering_monitoring) +"GA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark/cargo, +/area/crew_quarters/recreation_area) +"GB" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/crew_quarters/kitchen) +"GC" = ( +/obj/machinery/computer/atmos_alert{ + dir = 1 + }, +/obj/machinery/camera/network/engineering{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/monitoring) +"GD" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/angled_bay/standard/glass{ + door_color = "#e6ab22"; + name = "O2 Production"; + req_access = list(24); + stripe_color = "#2ebfbd" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck2/o2production) +"GE" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/quartermaster/storage) +"GF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/white/cargo, +/area/stellardelight/deck2/triage) +"GG" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/storage/primary) +"GH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/eris/dark/gray_platform, +/area/engineering/workshop) +"GI" = ( +/obj/effect/landmark{ + name = "Observer-Start" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/floor_decal/emblem/stellardelight/center, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"GJ" = ( +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/turf/simulated/wall/bay/r_wall/steel, +/area/maintenance/stellardelight/deck2/atmos) +"GK" = ( +/obj/structure/closet, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/portsolars) +"GL" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/turf/simulated/floor/tiled/eris/dark/cargo, +/area/crew_quarters/recreation_area) +"GM" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/effect/floor_decal/milspec/color/green/half{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/hydroponics) +"GN" = ( +/obj/structure/bed/chair/bay/shuttle{ + dir = 4 + }, +/obj/machinery/alarm/angled, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck2/starboardescape) +"GO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/portsolars) +"GP" = ( +/obj/structure/cable/blue{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/structure/cable/blue{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/eris/dark/gray_platform, +/area/bridge) +"GQ" = ( +/obj/structure/cable/blue{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/closet/firecloset, +/obj/random/snack, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/starboardfore) +"GR" = ( +/obj/structure/cable/orange{ + icon_state = "1-8" + }, +/turf/simulated/wall/bay/r_wall/steel, +/area/maintenance/stellardelight/deck2/starboardsolars) +"GS" = ( +/obj/effect/floor_decal/emblem/stellardelight{ + dir = 10 + }, +/obj/effect/floor_decal/milspec/color/blue/half, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"GT" = ( +/obj/structure/cable/white{ + 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 = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/stellardelight/deck2/triage) +"GU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck2/fuelstorage) +"GV" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 4 + }, +/turf/simulated/floor/carpet/sblucarpet, +/area/stellardelight/deck2/briefingroom) +"GW" = ( +/obj/machinery/power/apc/angled{ + dir = 4 + }, +/obj/structure/cable/blue, +/obj/structure/table/steel_reinforced, +/obj/item/weapon/paper_bin{ + pixel_y = 5 + }, +/obj/item/weapon/pen, +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/bridge) +"GX" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/bar) +"GY" = ( +/obj/machinery/door/firedoor/glass/hidden/steel, +/obj/effect/floor_decal/milspec/color/green/half{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"GZ" = ( +/obj/machinery/computer/security/engineering{ + dir = 1 + }, +/obj/machinery/light/floortube{ + pixel_y = -6 + }, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/engineering_monitoring) +"Ha" = ( +/obj/machinery/icecream_vat, +/turf/simulated/floor/tiled/freezer/cold, +/area/crew_quarters/kitchen) +"Hb" = ( +/obj/item/modular_computer/console/preset/command, +/obj/machinery/camera/network/command, +/turf/simulated/floor/tiled/eris/dark/gray_platform, +/area/bridge) +"Hc" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/reagent_containers/glass/beaker/large, +/obj/item/weapon/reagent_containers/dropper, +/obj/machinery/light, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/chemistry) +"Hd" = ( +/turf/simulated/wall/bay/r_wall/steel, +/area/stellardelight/deck2/starboard) +"He" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/vehicle/train/engine{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/landmark/vermin, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/quartermaster/storage) +"Hf" = ( +/obj/machinery/power/emitter{ + anchored = 1; + icon_state = "emitter1"; + state = 1 + }, +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/obj/structure/cable/cyan{ + icon_state = "0-4" + }, +/turf/simulated/floor/airless, +/area/engineering/engine_room) +"Hg" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/stellardelight/deck2/central) +"Hh" = ( +/obj/machinery/alarm/angled, +/obj/effect/floor_decal/milspec/color/blue/half{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/central) +"Hi" = ( +/obj/structure/table/marble, +/obj/machinery/chemical_dispenser/bar_alc/full{ + dir = 1 + }, +/obj/machinery/camera/network/civilian{ + dir = 8 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/bar) +"Hj" = ( +/obj/machinery/atm{ + pixel_y = 30 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/aftport) +"Hk" = ( +/obj/machinery/camera/network/halls{ + dir = 4 + }, +/obj/effect/floor_decal/milspec/color/green/half{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"Hl" = ( +/obj/machinery/camera/network/halls{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/aftport) +"Hm" = ( +/turf/simulated/wall/bay/r_wall/orange, +/area/engineering/atmos/monitoring) +"Ho" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/dark/cargo, +/area/crew_quarters/recreation_area) +"Hp" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/table/standard, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/device/megaphone, +/turf/simulated/floor/wood, +/area/quartermaster/qm) +"Hq" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/hatch{ + door_color = "#e6ab22"; + name = "Engineering Substation"; + req_one_access = list(10); + stripe_color = "#e6ab22" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/maintenance/stellardelight/substation/engineering) +"Hr" = ( +/turf/simulated/wall/bay/white, +/area/medical/surgery) +"Hs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/firealarm/angled{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/monitoring) +"Ht" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/firstaid/surgery, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/white, +/area/medical/surgery) +"Hu" = ( +/obj/structure/table/standard, +/obj/structure/disposalpipe/tagger{ + dir = 8; + name = "package tagger - Trash"; + sort_tag = "Trash" + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/quartermaster/storage) +"Hv" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "\improper HIGH VOLTAGE"; + pixel_y = 32 + }, +/obj/structure/low_wall/bay/reinforced/steel, +/turf/simulated/floor, +/area/engineering/engine_room) +"Hw" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/surgery2) +"Hx" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/plating, +/area/engineering/storage) +"Hy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"HA" = ( +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 24 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/table/glass, +/obj/machinery/recharger, +/obj/item/weapon/tool/screwdriver, +/turf/simulated/floor/tiled/eris/white/cargo, +/area/stellardelight/deck2/triage) +"HB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/medical/psych) +"HC" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/green{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/monitoring) +"HD" = ( +/obj/structure/cable{ + 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/eris/white/danger, +/area/stellardelight/deck2/starboard) +"HE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/crew_quarters/recreation_area) +"HF" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/crate/medical, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/quartermaster/storage) +"HG" = ( +/obj/machinery/door/firedoor/glass/hidden/steel, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/machinery/station_map{ + dir = 4; + pixel_x = -32 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/aftport) +"HH" = ( +/obj/machinery/light, +/obj/structure/cable/white{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/reception) +"HI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/green, +/obj/effect/landmark/start/atmostech, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck2/o2production) +"HJ" = ( +/turf/simulated/wall/bay/steel, +/area/crew_quarters/kitchen) +"HK" = ( +/turf/simulated/wall/bay/orange, +/area/engineering/locker_room) +"HL" = ( +/obj/structure/bed/chair/bay/comfy/captain{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/dark/gray_platform, +/area/bridge) +"HM" = ( +/obj/structure/table/reinforced, +/obj/structure/sign/poster{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/stellardelight/deck2/triage) +"HN" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/quartermaster/storage) +"HO" = ( +/obj/machinery/camera/network/halls{ + dir = 1 + }, +/obj/effect/floor_decal/milspec/color/black/corner, +/obj/effect/floor_decal/milspec/color/silver/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"HP" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/double/glass{ + dir = 8; + name = "Primary Tool Storage" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/storage/primary) +"HQ" = ( +/turf/simulated/wall/bay/r_wall/steel, +/area/crew_quarters/bar) +"HR" = ( +/obj/machinery/camera/network/halls{ + dir = 8 + }, +/obj/effect/floor_decal/milspec/color/black/corner, +/obj/effect/floor_decal/milspec/color/silver/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"HS" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/closet/emergsuit_wall{ + dir = 8; + pixel_x = -27 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/starboardsolars) +"HT" = ( +/obj/structure/cable/yellow{ + icon_state = "0-2" + }, +/obj/machinery/power/terminal{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/engineering/storage) +"HV" = ( +/obj/machinery/washing_machine, +/turf/simulated/floor/holofloor/tiled/dark, +/area/crew_quarters/locker) +"HW" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/structure/low_wall/bay/reinforced/steel, +/turf/simulated/floor, +/area/crew_quarters/locker) +"HX" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible/cyan, +/obj/machinery/meter, +/obj/structure/cable/orange{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"HY" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/effect/floor_decal/emblem/stellardelight{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"HZ" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/quartermaster/storage) +"Ia" = ( +/obj/item/clothing/accessory/stethoscope, +/obj/item/clothing/accessory/stethoscope, +/obj/item/clothing/accessory/stethoscope, +/obj/item/weapon/storage/box/syringes{ + pixel_y = 9 + }, +/obj/item/weapon/storage/box/syringes{ + pixel_y = 9 + }, +/obj/random/medical, +/obj/item/weapon/storage/box/beakers{ + pixel_x = 14; + pixel_y = 10 + }, +/obj/structure/table/reinforced, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/cmostore) +"Ib" = ( +/obj/machinery/camera/network/halls{ + dir = 1 + }, +/obj/effect/floor_decal/milspec/color/white/half, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/central) +"Id" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 12 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/cmostore) +"Ie" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/starboardsolars) +"If" = ( +/obj/structure/grille, +/obj/structure/window/phoronreinforced/full, +/obj/structure/window/phoronreinforced, +/obj/structure/window/phoronreinforced{ + dir = 8 + }, +/obj/structure/window/phoronreinforced{ + dir = 1 + }, +/obj/structure/window/phoronreinforced{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/red, +/obj/machinery/door/blast/angled/open{ + dir = 2; + id = "burnchamberlockdown" + }, +/turf/simulated/floor, +/area/stellardelight/deck2/combustionworkshop) +"Ig" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck2/exterior) +"Ih" = ( +/obj/structure/cable/white{ + 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/eris/white/bluecorner, +/area/stellardelight/deck2/triage) +"Ii" = ( +/obj/structure/cable/orange{ + icon_state = "1-4" + }, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck2/exterior) +"Ij" = ( +/obj/item/weapon/computer_hardware/battery_module, +/obj/item/weapon/computer_hardware/battery_module, +/obj/item/weapon/computer_hardware/battery_module/nano, +/obj/item/weapon/computer_hardware/hard_drive, +/obj/item/weapon/computer_hardware/hard_drive, +/obj/item/weapon/computer_hardware/hard_drive/micro, +/obj/item/weapon/computer_hardware/network_card, +/obj/item/weapon/computer_hardware/network_card, +/obj/item/weapon/computer_hardware/network_card/wired, +/obj/item/weapon/computer_hardware/processor_unit, +/obj/item/weapon/computer_hardware/processor_unit, +/obj/item/weapon/computer_hardware/processor_unit/small, +/obj/item/weapon/computer_hardware/tesla_link, +/obj/item/weapon/computer_hardware/nano_printer, +/obj/item/weapon/computer_hardware/hard_drive/portable, +/obj/item/weapon/computer_hardware/hard_drive/portable, +/obj/item/device/multitool, +/obj/item/clothing/gloves/yellow, +/obj/item/weapon/storage/toolbox/electrical{ + pixel_x = 1; + pixel_y = -1 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/table/steel, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/storage/tech) +"Ik" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/random/vendordrink, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/firealarm/angled, +/obj/effect/landmark/vermin, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/aftstarboard) +"Il" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/engine_eva) +"Im" = ( +/obj/structure/window/reinforced{ + dir = 8; + pixel_x = -4 + }, +/obj/structure/table/wooden_reinforced, +/turf/simulated/floor/glass/reinforced, +/area/stellardelight/deck2/fore) +"In" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck2/o2production) +"Io" = ( +/obj/machinery/alarm/angled{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/table/steel_reinforced, +/obj/item/device/retail_scanner/command, +/obj/effect/landmark/vermin, +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/bridge) +"Ip" = ( +/obj/structure/stairs/spawner/north, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor, +/area/stellardelight/deck2/aftport) +"Iq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck2/fuelstorage) +"Ir" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/apc/angled{ + dir = 1; + name = "night shift APC"; + nightshift_setting = 2 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/starboardaft) +"Is" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/monotile, +/area/hydroponics) +"It" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/engineering/storage) +"Iu" = ( +/obj/structure/table/glass, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/recharger, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/stellardelight/deck2/triage) +"Iv" = ( +/obj/effect/floor_decal/milspec/color/blue/half{ + dir = 8 + }, +/obj/machinery/station_map{ + dir = 4; + pixel_x = -32 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/starboard) +"Iw" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/portfore) +"Ix" = ( +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'RADIOACTIVE AREA'"; + icon_state = "radiation"; + name = "\improper RADIOACTIVE AREA"; + pixel_y = -32 + }, +/obj/machinery/camera/network/engine{ + dir = 1 + }, +/turf/simulated/floor/airless, +/area/engineering/engine_room) +"Iy" = ( +/obj/structure/table/reinforced, +/obj/random/powercell, +/obj/random/tech_supply, +/obj/structure/closet/walllocker_double/west, +/obj/item/device/t_scanner, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/workshop) +"Iz" = ( +/obj/item/stack/cable_coil/yellow, +/turf/simulated/floor/airless, +/area/stellardelight/deck2/exterior) +"IA" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/red, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck2/o2production) +"IB" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/port) +"IC" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/port) +"ID" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/quartermaster/storage) +"IE" = ( +/obj/effect/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/glass/reinforced, +/area/crew_quarters/recreation_area) +"IF" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ + dir = 8 + }, +/turf/simulated/floor, +/area/stellardelight/deck2/combustionworkshop) +"IG" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/effect/floor_decal/milspec/color/blue/half{ + dir = 1 + }, +/obj/structure/sign/poster{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/central) +"IH" = ( +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/monitoring) +"II" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/angled_bay/standard/glass{ + dir = 4; + door_color = "#e6ab22"; + name = "Engineering Glass"; + req_access = list(10); + stripe_color = "#913013" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/engineering/locker_room) +"IJ" = ( +/obj/structure/reagent_dispensers/beerkeg, +/turf/simulated/floor/wood, +/area/stellardelight/deck2/barbackroom) +"IK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"IL" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/keycard_auth{ + pixel_y = 2 + }, +/turf/simulated/floor/tiled/eris/dark/gray_platform, +/area/bridge) +"IN" = ( +/obj/machinery/atmospherics/binary/pump/on{ + name = "Air to Distro" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"IO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/quartermaster/storage) +"IQ" = ( +/obj/structure/table/glass, +/obj/machinery/door/window/southright{ + dir = 1; + req_access = list(5) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/reception) +"IR" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/vehicle/train/trolley{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/camera/network/cargo{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/quartermaster/storage) +"IT" = ( +/obj/machinery/vending/wardrobe/chemdrobe, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/cmostore) +"IU" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/machinery/door/blast/angled/open{ + dir = 4; + id = "atmoswindowlockdown" + }, +/obj/structure/low_wall/bay/reinforced/steel, +/turf/simulated/floor, +/area/stellardelight/deck2/o2production) +"IV" = ( +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"IW" = ( +/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/eris/cafe, +/area/crew_quarters/kitchen) +"IX" = ( +/obj/machinery/alarm/angled{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/starboard) +"IY" = ( +/obj/machinery/firealarm/angled, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/starboard) +"IZ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/white, +/area/medical/surgery) +"Ja" = ( +/obj/structure/table/rack/steel, +/obj/item/weapon/stock_parts/matter_bin, +/obj/item/weapon/stock_parts/matter_bin, +/obj/item/weapon/stock_parts/matter_bin, +/obj/item/weapon/stock_parts/manipulator, +/obj/item/weapon/stock_parts/console_screen, +/obj/item/weapon/circuitboard/partslathe, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/storage/tech) +"Jb" = ( +/obj/machinery/shield_capacitor, +/turf/simulated/floor/plating, +/area/engineering/storage) +"Jd" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/machinery/door/blast/angled/open{ + dir = 2; + id = "atmoswindowlockdown" + }, +/obj/structure/low_wall/bay/reinforced/steel, +/turf/simulated/floor, +/area/stellardelight/deck2/combustionworkshop) +"Je" = ( +/obj/structure/sign/directions/bar{ + dir = 1; + pixel_y = 25 + }, +/obj/effect/floor_decal/milspec/color/silver/corner{ + dir = 4 + }, +/obj/effect/floor_decal/milspec/color/black/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"Jf" = ( +/obj/structure/railing/grey{ + dir = 8 + }, +/obj/structure/railing/grey, +/turf/simulated/open, +/area/maintenance/stellardelight/deck2/starboardaft) +"Jg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/storage/tech) +"Jh" = ( +/turf/space, +/area/space) +"Ji" = ( +/obj/machinery/computer/arcade/orion_trail, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/eris/dark/cargo, +/area/crew_quarters/recreation_area) +"Jj" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/quartermaster/storage) +"Jk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 6 + }, +/turf/simulated/wall/bay/r_wall/steel, +/area/engineering/engine_eva) +"Jl" = ( +/obj/effect/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/crew_quarters/bar) +"Jm" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck2/exterior) +"Jn" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/aftstarboard) +"Jo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 6 + }, +/turf/simulated/wall/bay/r_wall/orange, +/area/stellardelight/deck2/fuelstorage) +"Jp" = ( +/obj/machinery/camera/network/civilian{ + dir = 1 + }, +/turf/simulated/floor/grass, +/area/hydroponics) +"Jq" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/stellardelight/deck2/fore) +"Jr" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/crate/internals, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/quartermaster/storage) +"Js" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ + dir = 1 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck2/fuelstorage) +"Jt" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck2/o2production) +"Jv" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/quartermaster/storage) +"Jx" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'RADIOACTIVE AREA'"; + icon_state = "radiation"; + name = "\improper RADIOACTIVE AREA"; + pixel_x = -32 + }, +/obj/effect/floor_decal/industrial/warning/full, +/obj/structure/cable/orange{ + icon_state = "0-2" + }, +/obj/structure/cable/orange{ + icon_state = "0-8" + }, +/obj/machinery/power/pointdefense{ + id_tag = "sd_pd" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck2/exterior) +"Jy" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/stellardelight/deck2/triage) +"JB" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/storage/art) +"JC" = ( +/obj/structure/sign/department/cargo{ + pixel_x = 32 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/aftport) +"JD" = ( +/obj/machinery/computer/power_monitor{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/engineering_monitoring) +"JE" = ( +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/engineering/engine_room) +"JF" = ( +/obj/structure/sign/directions/bar{ + dir = 1; + pixel_x = -32; + pixel_y = 15 + }, +/obj/machinery/camera/network/halls{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/starboard) +"JG" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/starboard) +"JH" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/structure/cable/green{ + icon_state = "16-0" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/portfore) +"JI" = ( +/obj/effect/floor_decal/milspec/color/green/half, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/hydroponics) +"JJ" = ( +/obj/structure/cable/orange{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/engine_eva) +"JK" = ( +/obj/structure/cable/blue{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/bridge) +"JL" = ( +/obj/effect/floor_decal/milspec/color/black/corner, +/obj/effect/floor_decal/milspec/color/silver/corner{ + dir = 8 + }, +/obj/item/device/radio/beacon, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"JM" = ( +/obj/machinery/power/apc/angled{ + dir = 1 + }, +/obj/structure/cable/orange{ + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck2/fuelstorage) +"JN" = ( +/obj/effect/floor_decal/milspec/cargo, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/quartermaster/storage) +"JP" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/table/rack, +/obj/random/maintenance/engineering, +/obj/random/maintenance/engineering, +/obj/random/maintenance/engineering, +/obj/random/maintenance/engineering, +/obj/random/snack, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/portsolars) +"JQ" = ( +/turf/simulated/floor/tiled/eris/dark/gray_platform, +/area/bridge) +"JR" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/angled_bay/standard/glass{ + door_color = "#9c9c9c"; + fill_color = null; + name = "Commons"; + stripe_color = "#89bd66" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/crew_quarters/recreation_area) +"JS" = ( +/obj/machinery/atmospherics/pipe/manifold4w/visible/black, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"JT" = ( +/obj/machinery/reagentgrinder, +/obj/structure/table/woodentable, +/turf/simulated/floor/wood, +/area/stellardelight/deck2/barbackroom) +"JV" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/effect/landmark/start/chemist, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/chemistry) +"JW" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/starboard) +"JX" = ( +/obj/machinery/shield_gen, +/turf/simulated/floor/plating, +/area/engineering/storage) +"JY" = ( +/turf/simulated/wall/bay/r_wall/steel, +/area/storage/art) +"JZ" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/blast/angled/open{ + dir = 2; + id = "qmwindows"; + name = "Privagy Shutters" + }, +/obj/structure/low_wall/bay/reinforced/brown, +/turf/simulated/floor, +/area/quartermaster/qm) +"Ka" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/starboard) +"Kb" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/portaft) +"Kc" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/item/weapon/reagent_containers/glass/bucket, +/obj/effect/floor_decal/milspec/color/green/half, +/turf/simulated/floor/tiled, +/area/hydroponics) +"Kd" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ + dir = 8 + }, +/obj/structure/cable/orange{ + icon_state = "1-4" + }, +/turf/simulated/floor, +/area/stellardelight/deck2/combustionworkshop) +"Ke" = ( +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/steel_ridged, +/area/storage/primary) +"Kf" = ( +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/cmostore) +"Kg" = ( +/obj/structure/table/glass, +/obj/item/device/defib_kit/loaded, +/turf/simulated/floor/tiled/eris/white/cargo, +/area/stellardelight/deck2/triage) +"Kh" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/power/solar, +/turf/simulated/floor/airless, +/area/stellardelight/deck2/exterior) +"Ki" = ( +/obj/machinery/atmospherics/pipe/simple/visible/cyan, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"Kj" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/machinery/vending/event, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker) +"Kk" = ( +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/obj/structure/closet/secure_closet/atmos_personal, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck2/o2production) +"Kl" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/monotile, +/area/stellardelight/deck2/triage) +"Km" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/reception) +"Kn" = ( +/obj/effect/floor_decal/milspec/color/black/corner{ + dir = 1 + }, +/obj/effect/floor_decal/milspec/color/silver/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"Ko" = ( +/obj/machinery/firealarm/angled, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/port) +"Kp" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ + dir = 4 + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck2/exterior) +"Kq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 10 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/vending/wardrobe/atmosdrobe, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck2/o2production) +"Kr" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/fuel, +/turf/simulated/wall/bay/r_wall/steel, +/area/engineering/engine_eva) +"Ks" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/landmark/start/medical, +/turf/simulated/floor/tiled/eris/white/cargo, +/area/stellardelight/deck2/triage) +"Kt" = ( +/obj/structure/table/glass, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/weapon/backup_implanter{ + pixel_y = 9 + }, +/obj/item/weapon/backup_implanter{ + pixel_y = 2 + }, +/obj/item/weapon/backup_implanter{ + pixel_y = -5 + }, +/obj/item/weapon/backup_implanter{ + pixel_y = -12 + }, +/obj/machinery/alarm/angled{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/reception) +"Ku" = ( +/obj/structure/cable/orange{ + 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/eris/dark/orangecorner, +/area/engineering/engineering_monitoring) +"Kv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/locker_room) +"Kw" = ( +/obj/structure/closet/secure_closet/medical2, +/obj/machinery/firealarm/angled{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/surgery2) +"Kx" = ( +/obj/structure/table/woodentable, +/obj/item/clothing/head/that{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/weapon/tool/screwdriver, +/obj/item/weapon/reagent_containers/food/drinks/shaker{ + pixel_x = -7; + pixel_y = 11 + }, +/obj/item/weapon/flame/lighter/zippo{ + pixel_x = 2 + }, +/obj/item/clothing/mask/smokable/cigarette/cigar/cohiba, +/obj/item/weapon/reagent_containers/food/drinks/metaglass, +/obj/item/weapon/reagent_containers/food/drinks/metaglass, +/obj/item/weapon/reagent_containers/food/drinks/metaglass, +/obj/item/weapon/reagent_containers/food/drinks/metaglass, +/obj/machinery/power/apc/angled{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/turf/simulated/floor/wood, +/area/stellardelight/deck2/barbackroom) +"Ky" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/chemistry) +"Kz" = ( +/obj/machinery/door/airlock/angled_bay/external/glass{ + dir = 4; + frequency = 1379; + id_tag = "d2_starmaint_interior"; + locked = 1; + name = "Exterior Airlock" + }, +/obj/machinery/access_button{ + command = "cycle_interior"; + dir = 8; + frequency = 1379; + master_tag = "d2_starmaint_airlock"; + name = "interior access button"; + pixel_y = 32; + req_one_access = list(13) + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/maintenance/stellardelight/deck2/starboardsolars) +"KA" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/aftstarboard) +"KB" = ( +/obj/structure/cable/orange{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/engine_eva) +"KC" = ( +/obj/structure/closet/walllocker_double{ + pixel_y = 28 + }, +/obj/item/canvas, +/obj/item/canvas, +/obj/item/canvas, +/obj/item/canvas, +/obj/item/canvas, +/obj/item/canvas/nineteen_nineteen, +/obj/item/canvas/nineteen_nineteen, +/obj/item/canvas/nineteen_nineteen, +/obj/item/canvas/nineteen_nineteen, +/obj/item/canvas/nineteen_nineteen, +/obj/item/canvas/twentyfour_twentyfour, +/obj/item/canvas/twentyfour_twentyfour, +/obj/item/canvas/twentyfour_twentyfour, +/obj/item/canvas/twentyfour_twentyfour, +/obj/item/canvas/twentyfour_twentyfour, +/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_twentythree, +/obj/item/canvas/twentythree_twentythree, +/obj/item/canvas/twentythree_twentythree, +/obj/item/canvas/twentythree_twentythree, +/obj/item/canvas/twentythree_twentythree, +/obj/structure/table/standard, +/obj/machinery/recharger, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/light{ + dir = 4 + }, +/obj/item/paint_palette, +/obj/item/paint_palette, +/obj/item/paint_brush, +/obj/item/paint_brush, +/obj/effect/landmark/vines, +/turf/simulated/floor/tiled, +/area/storage/art) +"KD" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/alarm/angled{ + dir = 4 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/portfore) +"KE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/storage/art) +"KG" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -24; + pixel_y = 24 + }, +/turf/simulated/floor/wood, +/area/stellardelight/deck2/barbackroom) +"KH" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"KI" = ( +/obj/machinery/alarm/angled{ + dir = 8 + }, +/obj/machinery/power/emitter, +/turf/simulated/floor/plating, +/area/engineering/storage) +"KJ" = ( +/obj/effect/catwalk_plated, +/turf/simulated/floor, +/area/stellardelight/deck2/starboard) +"KK" = ( +/turf/simulated/wall/bay/r_wall/green, +/area/hydroponics) +"KL" = ( +/turf/simulated/wall/bay/r_wall/steel, +/area/maintenance/stellardelight/deck2/portfore) +"KM" = ( +/obj/machinery/the_singularitygen/tesla{ + anchored = 1 + }, +/turf/simulated/floor/airless, +/area/engineering/engine_room) +"KN" = ( +/obj/structure/table/reinforced, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/engine_eva) +"KP" = ( +/obj/structure/cable/cyan{ + icon_state = "2-8" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/airless, +/area/engineering/engine_room) +"KQ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/cable/orange{ + icon_state = "2-4" + }, +/obj/structure/table/rack, +/obj/random/maintenance/cargo, +/obj/random/maintenance/engineering, +/obj/random/maintenance/engineering, +/obj/random/maintenance/engineering, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/monitoring) +"KR" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/quartermaster/storage) +"KS" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/angled_bay/standard/glass{ + dir = 4; + door_color = "#ffffff"; + name = "Medbay Foyer"; + req_access = list(5); + stripe_color = "#5a96bb" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck2/triage) +"KT" = ( +/obj/machinery/vending/medical, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/white/cargo, +/area/stellardelight/deck2/triage) +"KU" = ( +/obj/machinery/vending/coffee, +/obj/structure/sign/poster{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck2/starboard) +"KV" = ( +/obj/structure/table/glass, +/obj/machinery/recharger, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/stellardelight/deck2/triage) +"KW" = ( +/obj/machinery/alarm/angled{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/engineering_monitoring) +"KX" = ( +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/obj/structure/cable/orange{ + icon_state = "2-8" + }, +/turf/simulated/wall/bay/r_wall/steel, +/area/engineering/storage) +"KY" = ( +/obj/structure/table/reinforced, +/obj/machinery/alarm/angled, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/camera/network/medbay{ + dir = 8 + }, +/obj/effect/landmark/vermin, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/chemistry) +"La" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/eris/white/cargo, +/area/stellardelight/deck2/triage) +"Lb" = ( +/obj/structure/table/wooden_reinforced, +/turf/simulated/floor/carpet/turcarpet, +/area/crew_quarters/recreation_area) +"Lc" = ( +/obj/structure/table/reinforced, +/obj/item/device/floor_painter, +/obj/item/device/t_scanner, +/obj/item/device/multitool{ + pixel_x = 5 + }, +/obj/item/weapon/reagent_containers/spray/cleaner, +/obj/machinery/camera/network/engineering{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/workshop) +"Ld" = ( +/obj/item/modular_computer/console/preset/medical{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/bridge) +"Le" = ( +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck2/exterior) +"Lf" = ( +/obj/structure/cable/orange{ + icon_state = "2-8" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/portsolars) +"Lg" = ( +/obj/structure/cable/orange{ + icon_state = "2-8" + }, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/obj/structure/cable/orange{ + icon_state = "1-8" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck2/exterior) +"Lh" = ( +/obj/machinery/computer/operating, +/turf/simulated/floor/tiled/white, +/area/medical/surgery2) +"Li" = ( +/obj/machinery/floodlight, +/obj/structure/cable/orange{ + icon_state = "0-8" + }, +/obj/machinery/power/apc/angled{ + dir = 4 + }, +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/engineering/storage) +"Lk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/obj/structure/cable/orange{ + icon_state = "2-4" + }, +/obj/structure/cable/orange{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/monitoring) +"Ll" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/stellardelight/deck2/triage) +"Lm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/quartermaster/storage) +"Ln" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/reagent_containers/spray/cleaner{ + desc = "Someone has crossed out the 'Space' from Space Cleaner and written in Chemistry. Scrawled on the back is, 'Okay, whoever filled this with polytrinic acid, it was only funny the first time. It was hard enough replacing the CMO's first cat!'"; + name = "Chemistry Cleaner" + }, +/obj/item/weapon/hand_labeler, +/obj/item/weapon/packageWrap, +/obj/item/device/mass_spectrometer/adv, +/obj/item/device/mass_spectrometer/adv, +/obj/item/clothing/glasses/science, +/obj/item/clothing/glasses/science, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/chemistry) +"Lp" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/engineering/engine_room) +"Lq" = ( +/obj/machinery/computer/security/telescreen/entertainment{ + desc = "Look's like it's set to the info station... I wonder what else is on?"; + pixel_x = -32; + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/eris/dark/cargo, +/area/crew_quarters/recreation_area) +"Lr" = ( +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 8 + }, +/obj/effect/floor_decal/milspec/color/orange/half{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/aftstarboard) +"Ls" = ( +/obj/machinery/alarm/angled, +/obj/effect/floor_decal/milspec/color/silver/corner{ + dir = 4 + }, +/obj/effect/floor_decal/milspec/color/black/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"Lt" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/belt/utility, +/obj/item/weapon/storage/belt/utility, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/storage/box/nifsofts_engineering, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/workshop) +"Lu" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/door/window/northright{ + dir = 2; + name = "Cargo Ordering"; + req_access = list(50) + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/monotile, +/area/quartermaster/storage) +"Lv" = ( +/obj/structure/bed/chair, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/reception) +"Lw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/turf/simulated/wall/bay/r_wall/steel, +/area/engineering/engine_eva) +"Lx" = ( +/obj/structure/flora/pottedplant/orientaltree, +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/bridge) +"Ly" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/wood, +/area/stellardelight/deck2/barbackroom) +"Lz" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/milspec/color/green/half{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hydroponics) +"LB" = ( +/obj/machinery/power/solar_control{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/starboardsolars) +"LC" = ( +/obj/machinery/computer/crew{ + dir = 8 + }, +/obj/machinery/firealarm/angled{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/reception) +"LD" = ( +/obj/structure/table/reinforced, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_y = 5 + }, +/obj/item/weapon/storage/toolbox/electrical, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/workshop) +"LE" = ( +/turf/simulated/wall/bay/r_wall/steel, +/area/quartermaster/storage) +"LF" = ( +/obj/structure/table/standard, +/obj/item/weapon/packageWrap, +/obj/fiftyspawner/cardboard, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/quartermaster/storage) +"LG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck2/fuelstorage) +"LH" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/starboard) +"LI" = ( +/turf/simulated/wall/bay/orange, +/area/engineering/engineering_monitoring) +"LK" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals5, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/aftstarboard) +"LL" = ( +/obj/machinery/door/window/brigdoor/northleft{ + name = "Bar"; + req_access = list(25) + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/lino, +/area/crew_quarters/bar) +"LM" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/external/glass{ + dir = 4 + }, +/obj/effect/map_helper/airlock/door/simple, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck2/portescape) +"LN" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/obj/machinery/firealarm/angled{ + dir = 8 + }, +/obj/effect/landmark/start/bartender, +/turf/simulated/floor/wood, +/area/stellardelight/deck2/barbackroom) +"LO" = ( +/obj/machinery/light/floortube{ + dir = 4; + pixel_x = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/milspec/color/green/half{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled, +/area/hydroponics) +"LP" = ( +/obj/structure/table/woodentable, +/obj/machinery/light/floortube{ + dir = 1; + pixel_y = 6 + }, +/obj/machinery/camera/network/civilian, +/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{ + pixel_x = -3; + pixel_y = 4 + }, +/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{ + pixel_x = 2; + pixel_y = 7 + }, +/obj/item/weapon/material/ashtray/glass, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/crew_quarters/bar) +"LQ" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/cmostore) +"LR" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/crew_quarters/bar) +"LS" = ( +/mob/living/simple_mob/animal/passive/chicken, +/turf/simulated/floor/grass, +/area/hydroponics) +"LT" = ( +/obj/machinery/disposal/wall{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 2 + }, +/obj/machinery/firealarm/angled, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/crew_quarters/bar) +"LU" = ( +/obj/machinery/atmospherics/pipe/simple/visible/universal{ + name = "Distro Loop Drain" + }, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/monitoring) +"LV" = ( +/obj/structure/table/glass, +/obj/structure/sign/department/operational{ + pixel_x = 32 + }, +/obj/random/medical, +/obj/random/medical, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/stellardelight/deck2/triage) +"LW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/turf/simulated/floor/tiled/freezer/cold, +/area/crew_quarters/kitchen) +"LX" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/conveyor_switch/oneway{ + id = "cargounload" + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/quartermaster/storage) +"LY" = ( +/turf/simulated/wall/bay/brown, +/area/engineering/engine_eva) +"LZ" = ( +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/stellardelight/deck2/triage) +"Ma" = ( +/obj/structure/table/standard, +/obj/item/device/taperecorder, +/obj/item/stack/cable_coil/random, +/obj/item/weapon/hand_labeler, +/obj/item/stack/cable_coil/random, +/obj/item/device/floor_painter, +/obj/machinery/camera/network/civilian, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/storage/art) +"Mb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/stellardelight/deck2/triage) +"Mc" = ( +/obj/structure/closet/emergsuit_wall{ + dir = 8; + pixel_x = -27 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/aftport) +"Md" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/portfore) +"Me" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/quartermaster/storage) +"Mf" = ( +/obj/machinery/atmospherics/omni/atmos_filter{ + name = "Phoron Filter"; + tag_north = 2; + tag_south = 1; + tag_west = 6 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"Mg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark/danger, +/area/engineering/engine_room) +"Mh" = ( +/obj/structure/table/rack/steel, +/obj/item/weapon/circuitboard/rdserver{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/weapon/circuitboard/protolathe{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/weapon/circuitboard/destructive_analyzer{ + pixel_x = -1; + pixel_y = 1 + }, +/obj/item/weapon/circuitboard/rdconsole, +/obj/item/weapon/circuitboard/autolathe{ + pixel_x = 1; + pixel_y = -1 + }, +/obj/item/weapon/circuitboard/mechfab{ + pixel_x = 2; + pixel_y = -2 + }, +/obj/item/weapon/circuitboard/prosthetics{ + pixel_x = 3; + pixel_y = -3 + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/storage/tech) +"Mi" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"Mj" = ( +/obj/effect/floor_decal/milspec/color/blue/half{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/central) +"Mk" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/starboard) +"Ml" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/stellardelight/deck2/aftstarboard) +"Mm" = ( +/obj/structure/cable/blue{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/starboard) +"Mn" = ( +/obj/machinery/beehive, +/obj/effect/floor_decal/milspec/color/green/half{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hydroponics) +"Mo" = ( +/obj/machinery/camera/network/halls{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/port) +"Mp" = ( +/obj/machinery/computer/arcade/battle, +/turf/simulated/floor/tiled/eris/dark/cargo, +/area/crew_quarters/recreation_area) +"Mq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/reception) +"Mr" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/obj/structure/low_wall/bay/reinforced/orange, +/turf/simulated/floor, +/area/engineering/storage) +"Ms" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/port) +"Mt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + icon_state = "1-8" + }, +/obj/machinery/keycard_auth{ + pixel_x = 32 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24; + pixel_y = 9 + }, +/turf/simulated/floor/wood, +/area/stellardelight/deck2/briefingroom) +"Mu" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 10 + }, +/obj/structure/sign/atmos/n2{ + pixel_y = 26 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"Mv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/locker_room) +"Mw" = ( +/obj/structure/table/steel_reinforced, +/obj/item/device/radio/intercom{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/dark/gray_platform, +/area/bridge) +"Mx" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/solar, +/turf/simulated/floor/airless, +/area/stellardelight/deck2/exterior) +"My" = ( +/obj/structure/table/rack, +/obj/random/maintenance/engineering, +/obj/random/maintenance/engineering, +/obj/random/maintenance/engineering, +/obj/random/maintenance/clean, +/obj/random/maintenance/cargo, +/obj/random/maintenance/cargo, +/obj/random/contraband, +/obj/random/drinkbottle, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/portsolars) +"Mz" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/angled_bay/secure{ + name = "Secure Tech Storage"; + req_access = list(19,23) + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/storage/tech) +"MA" = ( +/obj/structure/sign/directions/evac{ + pixel_x = 32; + pixel_y = -6 + }, +/obj/structure/sign/directions/evac{ + dir = 8; + pixel_x = 32 + }, +/turf/simulated/floor/glass/reinforced, +/area/stellardelight/deck2/port) +"MB" = ( +/obj/structure/cable/orange{ + icon_state = "1-4" + }, +/turf/simulated/wall/bay/r_wall/steel, +/area/engineering/storage) +"MC" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 8 + }, +/turf/simulated/wall/bay/r_wall/steel, +/area/maintenance/stellardelight/deck2/portsolars) +"MD" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/port) +"ME" = ( +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/obj/structure/closet/emergsuit_wall{ + pixel_y = 29 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/quartermaster/storage) +"MF" = ( +/obj/machinery/firealarm/angled{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/locker_room) +"MG" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/fuel, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck2/fuelstorage) +"MH" = ( +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/eris/white/cargo, +/area/stellardelight/deck2/triage) +"MJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/monitoring) +"MK" = ( +/obj/structure/bed/chair/backed_red{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/crew_quarters/bar) +"MM" = ( +/obj/structure/table/standard, +/obj/machinery/recharger{ + pixel_y = 5 + }, +/obj/machinery/light/floortube{ + pixel_y = -4 + }, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/quartermaster/storage) +"MN" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck2/exterior) +"MP" = ( +/obj/machinery/atmospherics/binary/pump/fuel{ + name = "Direct Injector" + }, +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor, +/area/stellardelight/deck2/fuelstorage) +"MQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 10 + }, +/obj/machinery/alarm/angled{ + dir = 8 + }, +/obj/machinery/power/apc/angled{ + dir = 1 + }, +/obj/structure/cable/orange{ + icon_state = "0-8" + }, +/obj/machinery/portable_atmospherics/canister/phoron, +/turf/simulated/floor, +/area/stellardelight/deck2/combustionworkshop) +"MR" = ( +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/aftport) +"MS" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/chemistry) +"MT" = ( +/obj/machinery/power/grounding_rod, +/obj/structure/cable/cyan{ + icon_state = "1-2" + }, +/turf/simulated/floor/airless, +/area/engineering/engine_room) +"MU" = ( +/turf/simulated/wall/bay/green, +/area/hydroponics) +"MV" = ( +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 2 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"MW" = ( +/obj/structure/table/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/circuitboard/crew{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/weapon/circuitboard/card, +/obj/item/weapon/circuitboard/communications{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/storage/tech) +"MX" = ( +/obj/structure/cable/orange{ + icon_state = "2-4" + }, +/obj/structure/cable/orange{ + icon_state = "1-4" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck2/exterior) +"MY" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 1; + name = "Medical"; + sortType = "Medical" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/port) +"MZ" = ( +/obj/machinery/vending/boozeomat, +/turf/simulated/floor/lino, +/area/crew_quarters/bar) +"Na" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/green, +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/monitoring) +"Nb" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/starboardfore) +"Nc" = ( +/obj/structure/bed/chair/backed_red{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/crew_quarters/bar) +"Nd" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/starboard) +"Ne" = ( +/obj/structure/lattice, +/obj/structure/disposalpipe/down{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers, +/obj/machinery/atmospherics/pipe/zpipe/down/supply, +/obj/machinery/door/firedoor/glass, +/turf/simulated/open, +/area/maintenance/stellardelight/deck2/starboardfore) +"Nf" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/machinery/door/blast/angled/open{ + dir = 4; + id = "qmwindows"; + name = "Privagy Shutters" + }, +/obj/structure/low_wall/bay/reinforced/brown, +/turf/simulated/floor, +/area/quartermaster/qm) +"Ng" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/table/steel_reinforced, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/angled_shutter{ + id = "kitchenhallway"; + layer = 3.3; + name = "Kitchen Shutters" + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/crew_quarters/kitchen) +"Nh" = ( +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/reception) +"Nj" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/quartermaster/storage) +"Nk" = ( +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 24 + }, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/crew_quarters/bar) +"Nl" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/black, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"Nm" = ( +/obj/structure/noticeboard{ + pixel_x = -32 + }, +/obj/effect/landmark/start/engineer, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/locker_room) +"Nn" = ( +/obj/machinery/computer/ship/engines, +/turf/simulated/floor/tiled/eris/dark/gray_platform, +/area/bridge) +"No" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck2/fuelstorage) +"Np" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/starboardsolars) +"Nq" = ( +/obj/machinery/suit_cycler/engineering, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/engine_eva) +"Nr" = ( +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/central) +"Ns" = ( +/turf/simulated/floor/tiled, +/area/storage/art) +"Nt" = ( +/obj/structure/table/rack{ + dir = 8; + layer = 2.6 + }, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/machinery/door/window/northleft{ + name = "Engineering Hardsuits"; + req_access = list(11) + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/suit/space/void/engineering, +/obj/item/clothing/suit/space/void/engineering, +/obj/item/clothing/head/helmet/space/void/engineering, +/obj/item/clothing/head/helmet/space/void/engineering, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/engine_eva) +"Nu" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/machinery/button/remote/blast_door{ + dir = 1; + id = "psychshutter"; + name = "Shutter Control"; + pixel_x = -15; + pixel_y = -28 + }, +/obj/effect/landmark/start/psych, +/turf/simulated/floor/carpet/blue, +/area/medical/psych) +"Nv" = ( +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/turf/simulated/wall/bay/r_wall/steel, +/area/maintenance/stellardelight/deck2/starboardsolars) +"Nw" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/pipe/zpipe/up/supply, +/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers, +/obj/machinery/door/firedoor/glass, +/obj/structure/disposalpipe/sortjunction{ + dir = 8; + name = "Kitchen/Botany"; + sortType = "Kitchen/Botany" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/portfore) +"Nx" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/starboard) +"Ny" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/red, +/obj/item/device/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_x = 24 + }, +/turf/simulated/floor, +/area/stellardelight/deck2/combustionworkshop) +"Nz" = ( +/obj/machinery/computer/atmos_alert, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/engineering_monitoring) +"NA" = ( +/obj/machinery/door/airlock/angled_bay/external/glass{ + dir = 4; + frequency = 1379; + id_tag = "d2_starmaint_exterior"; + locked = 1; + name = "Exterior Airlock" + }, +/obj/machinery/access_button{ + command = "cycle_exterior"; + dir = 4; + frequency = 1379; + master_tag = "d2_starmaint_airlock"; + name = "exterior access button"; + pixel_y = 32; + req_one_access = list(13) + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/maintenance/stellardelight/deck2/starboardsolars) +"NB" = ( +/obj/structure/closet/emergsuit_wall{ + dir = 4; + pixel_x = 27 + }, +/obj/item/clothing/gloves/yellow, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/portsolars) +"NC" = ( +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/storage/tech) +"ND" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"NE" = ( +/obj/structure/reagent_dispensers/foam, +/obj/machinery/light, +/turf/simulated/floor/tiled/techmaint, +/area/storage/primary) +"NF" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/chemistry) +"NG" = ( +/obj/structure/sign/directions/medical{ + dir = 1; + pixel_x = 32; + pixel_y = 35 + }, +/obj/structure/sign/directions/bridge{ + dir = 1; + pixel_x = 32; + pixel_y = 41 + }, +/obj/structure/sign/directions/engineering{ + dir = 4; + pixel_x = 32; + pixel_y = 23 + }, +/obj/structure/sign/directions/cargo{ + pixel_x = 32; + pixel_y = 29 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/port) +"NH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 5 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor, +/area/stellardelight/deck2/combustionworkshop) +"NJ" = ( +/obj/machinery/firealarm/angled{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/storage/art) +"NK" = ( +/obj/machinery/atmospherics/pipe/tank/carbon_dioxide{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"NL" = ( +/turf/simulated/floor/airless, +/area/stellardelight/deck2/exterior) +"NM" = ( +/obj/structure/closet/crate, +/obj/item/weapon/circuitboard/smes, +/obj/item/weapon/circuitboard/smes, +/obj/item/weapon/smes_coil, +/obj/item/weapon/smes_coil, +/obj/item/weapon/smes_coil/super_capacity, +/obj/item/weapon/smes_coil/super_capacity, +/obj/item/weapon/smes_coil/super_io, +/obj/item/weapon/smes_coil/super_io, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/engineering/storage) +"NN" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/structure/low_wall/bay/reinforced/brown, +/turf/simulated/floor, +/area/quartermaster/storage) +"NO" = ( +/obj/structure/extinguisher_cabinet{ + dir = 8; + pixel_x = 27 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 24; + pixel_y = 32 + }, +/turf/simulated/floor/wood, +/area/quartermaster/qm) +"NP" = ( +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/stellardelight/deck2/triage) +"NQ" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/standard/glass{ + dir = 4; + door_color = "#ffffff"; + name = "Medbay Foyer"; + req_access = list(5); + stripe_color = "#5a96bb" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck2/triage) +"NS" = ( +/obj/structure/table/rack/steel, +/obj/item/instrument/violin, +/obj/item/instrument/piano_synth, +/obj/item/instrument/recorder, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/recreation_area) +"NU" = ( +/obj/effect/floor_decal/industrial/warning/full, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/obj/structure/cable/orange{ + icon_state = "0-2" + }, +/obj/machinery/power/pointdefense{ + id_tag = "sd_pd" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck2/exterior) +"NW" = ( +/obj/structure/stairs/spawner/north, +/obj/structure/railing/grey{ + dir = 8 + }, +/turf/simulated/floor, +/area/stellardelight/deck2/aftstarboard) +"NX" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"NY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/wood, +/area/stellardelight/deck2/barbackroom) +"NZ" = ( +/obj/structure/cable/orange{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/effect/landmark{ + name = "lightsout" + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/engineering_monitoring) +"Oa" = ( +/obj/structure/table/standard, +/obj/machinery/photocopier/faxmachine{ + department = "Quartermaster-Office" + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/wood, +/area/quartermaster/qm) +"Ob" = ( +/obj/structure/table/gamblingtable, +/obj/random/coin/sometimes, +/turf/simulated/floor/carpet, +/area/crew_quarters/recreation_area) +"Od" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/wall/bay/r_wall/orange, +/area/stellardelight/deck2/fuelstorage) +"Og" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/stellardelight/deck2/barbackroom) +"Oh" = ( +/obj/effect/landmark{ + name = "carpspawn" + }, +/turf/space, +/area/space) +"Oi" = ( +/obj/machinery/firealarm/angled, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/aftport) +"Oj" = ( +/obj/structure/table/standard, +/obj/item/weapon/reagent_containers/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner"; + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/device/radio/intercom/department/medbay{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/white, +/area/medical/surgery) +"Ok" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/storage/art) +"Ol" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/structure/filingcabinet/medical, +/turf/simulated/floor/tiled/eris/white/cargo, +/area/stellardelight/deck2/triage) +"Om" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/medical/surgery) +"On" = ( +/obj/structure/table/marble, +/obj/machinery/door/blast/shutters{ + id = "bar"; + layer = 3.3; + name = "Bar Shutters" + }, +/turf/simulated/floor/lino, +/area/crew_quarters/bar) +"Oo" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/table/rack, +/obj/random/maintenance/medical, +/obj/random/maintenance/medical, +/obj/random/maintenance/medical, +/obj/random/maintenance/medical, +/obj/random/maintenance/engineering, +/obj/random/maintenance, +/obj/item/weapon/disk/nifsoft/compliance, +/obj/random/drinkbottle, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/starboardfore) +"Op" = ( +/obj/effect/floor_decal/industrial/loading{ + dir = 8 + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/medical/surgery2) +"Oq" = ( +/obj/machinery/power/apc/angled{ + cell_type = /obj/item/weapon/cell/super; + dir = 8 + }, +/obj/structure/cable/cyan{ + icon_state = "0-2" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/cable/cyan{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/engineering/engine_room) +"Or" = ( +/obj/structure/table/reinforced, +/obj/machinery/chemical_dispenser/full, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/chemistry) +"Os" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/engineering/storage) +"Ot" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/starboardfore) +"Ou" = ( +/obj/effect/floor_decal/milspec/color/orange/half{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/aftstarboard) +"Ov" = ( +/obj/machinery/atmospherics/binary/pump, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/monitoring) +"Ow" = ( +/turf/simulated/floor/carpet/blucarpet, +/area/crew_quarters/captain) +"Ox" = ( +/obj/structure/extinguisher_cabinet{ + dir = 8; + pixel_x = 27 + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/stellardelight/deck2/triage) +"Oz" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/aftstarboard) +"OA" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/effect/landmark{ + name = "verminstart" + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/crew_quarters/kitchen) +"OB" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/locker_room) +"OC" = ( +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/obj/structure/extinguisher_cabinet{ + dir = 1; + pixel_y = -30 + }, +/turf/simulated/floor/tiled/white, +/area/medical/surgery) +"OD" = ( +/obj/machinery/camera/network/command{ + dir = 10 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/carpet/sblucarpet, +/area/stellardelight/deck2/briefingroom) +"OE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/stellardelight/deck2/triage) +"OF" = ( +/turf/simulated/wall/bay/r_wall/orange, +/area/engineering/engine_room) +"OG" = ( +/obj/machinery/oxygen_pump/anesthetic, +/turf/simulated/wall/bay/white, +/area/medical/surgery2) +"OH" = ( +/obj/machinery/atmospherics/binary/pump, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"OI" = ( +/obj/structure/cable/orange{ + 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/eris/dark/orangecorner, +/area/engineering/locker_room) +"OJ" = ( +/obj/structure/table/standard, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/machinery/alarm/angled, +/turf/simulated/floor/tiled/techmaint, +/area/storage/primary) +"OK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck2/o2production) +"OL" = ( +/turf/simulated/floor/wood, +/area/stellardelight/deck2/briefingroom) +"OM" = ( +/obj/structure/foodcart, +/turf/simulated/floor/tiled/freezer/cold, +/area/crew_quarters/kitchen) +"ON" = ( +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/aftstarboard) +"OO" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/box/beakers{ + name = "box of measuring cups"; + pixel_x = 2; + pixel_y = 3; + starts_with = list(/obj/item/weapon/reagent_containers/glass/beaker/measuring_cup = 7) + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/crew_quarters/kitchen) +"OP" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/landmark/vines, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/quartermaster/storage) +"OQ" = ( +/obj/machinery/power/apc/angled{ + dir = 1; + name = "night shift APC"; + nightshift_setting = 2 + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/portfore) +"OR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/quartermaster/storage) +"OS" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/milspec/color/orange/half{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/aftstarboard) +"OT" = ( +/obj/effect/floor_decal/industrial/danger{ + dir = 8 + }, +/obj/machinery/requests_console/preset/atmos{ + pixel_y = 30 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/monitoring) +"OU" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -24; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/white, +/area/medical/surgery2) +"OV" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"OW" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 1; + pixel_y = 1 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"OX" = ( +/obj/structure/extinguisher_cabinet{ + dir = 1; + pixel_y = -30 + }, +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/surgery2) +"OY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/danger/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/monitoring) +"OZ" = ( +/obj/structure/closet/toolcloset, +/obj/item/weapon/pickaxe, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/locker_room) +"Pb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 6 + }, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/cmostore) +"Pc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/crew_quarters/bar) +"Pd" = ( +/obj/structure/particle_accelerator/fuel_chamber{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/eris/dark/danger, +/area/engineering/engine_room) +"Pe" = ( +/obj/structure/table/woodentable, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/recharger{ + pixel_y = 5 + }, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/crew_quarters/bar) +"Pf" = ( +/obj/structure/sign/directions/evac{ + dir = 4; + pixel_x = -32 + }, +/obj/structure/sign/directions/evac{ + pixel_x = -32; + pixel_y = -6 + }, +/turf/simulated/floor/glass/reinforced, +/area/stellardelight/deck2/starboard) +"Pg" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/table/standard, +/obj/item/weapon/book/manual/cook_guide, +/turf/simulated/floor/tiled/eris/cafe, +/area/crew_quarters/kitchen) +"Ph" = ( +/obj/structure/bed/chair/office/dark, +/obj/effect/landmark/start/engineer, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/engineering_monitoring) +"Pi" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/starboardfore) +"Pj" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "packageSort1" + }, +/obj/structure/disposalpipe/trunk, +/obj/structure/disposaloutlet{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/quartermaster/storage) +"Pk" = ( +/obj/structure/cable/orange{ + icon_state = "1-8" + }, +/turf/simulated/wall/bay/r_wall/steel, +/area/maintenance/stellardelight/deck2/portsolars) +"Pl" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/firealarm/angled{ + dir = 4 + }, +/obj/structure/flora/pottedplant/smallcactus{ + pixel_y = 14 + }, +/obj/structure/fireaxecabinet{ + pixel_y = 28 + }, +/turf/simulated/floor/wood, +/area/stellardelight/deck2/briefingroom) +"Pm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck2/o2production) +"Pn" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/angled_shutter{ + dir = 4; + id = "kitchen"; + layer = 3.3; + name = "Kitchen Shutters" + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/crew_quarters/kitchen) +"Po" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/external/glass{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck2/starboard) +"Pp" = ( +/obj/effect/landmark{ + name = "droppod_landing" + }, +/turf/space, +/area/space) +"Pq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/monitoring) +"Pr" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/table/glass, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/reception) +"Ps" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/machinery/disposal/wall, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/starboard) +"Pt" = ( +/obj/machinery/alarm/angled, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/aftport) +"Pu" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 4 + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck2/exterior) +"Pv" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/angled_bay/standard/glass{ + door_color = "#ffffff"; + name = "Medbay Storage"; + req_access = list(5); + stripe_color = "#5a96bb" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/medical/cmostore) +"Pw" = ( +/obj/machinery/sparker{ + id = "castfireball"; + pixel_x = 20 + }, +/turf/simulated/floor/reinforced/airless, +/area/stellardelight/deck2/combustionworkshop) +"Px" = ( +/obj/machinery/door/airlock/angled_bay/external/glass{ + dir = 4; + frequency = 1379; + id_tag = "d2_portmaint_interior"; + locked = 1; + name = "Exterior Airlock" + }, +/obj/machinery/access_button{ + command = "cycle_interior"; + dir = 4; + frequency = 1379; + master_tag = "d2_portmaint_airlock"; + name = "interior access button"; + pixel_y = 32; + req_one_access = list(13) + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/maintenance/stellardelight/deck2/portsolars) +"Py" = ( +/obj/machinery/alarm/angled, +/obj/machinery/vending/nifsoft_shop, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/aftstarboard) +"Pz" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/oxygen/prechilled, +/obj/machinery/alarm/angled{ + dir = 8 + }, +/turf/simulated/floor, +/area/medical/cryo) +"PA" = ( +/obj/structure/sign/deck2{ + pixel_y = 32 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"PB" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/fuel, +/turf/simulated/wall/bay/r_wall/steel, +/area/stellardelight/deck2/fuelstorage) +"PC" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "packageSort1" + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/quartermaster/storage) +"PD" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/wood, +/area/quartermaster/qm) +"PE" = ( +/turf/simulated/wall/bay/white, +/area/medical/reception) +"PF" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/aftstarboard) +"PG" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/eris/white/danger, +/area/stellardelight/deck2/port) +"PH" = ( +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/quartermaster/storage) +"PI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/engine_eva) +"PJ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/green, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/obj/effect/landmark/start/atmostech, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck2/o2production) +"PK" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals_central5, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"PL" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "packageSort1" + }, +/obj/structure/sign/department/mail{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/quartermaster/storage) +"PM" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/table/standard, +/obj/item/weapon/hand_labeler, +/obj/item/weapon/folder/yellow, +/obj/item/weapon/stamp{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/quartermaster/storage) +"PO" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/effect/landmark{ + name = "lightsout" + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/central) +"PP" = ( +/turf/simulated/floor/carpet/sblucarpet, +/area/stellardelight/deck2/briefingroom) +"PQ" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/simulated/wall/bay/r_wall/steel, +/area/maintenance/stellardelight/deck2/starboardsolars) +"PR" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/machinery/door/blast/angled/open{ + dir = 2; + id = "barlockdown" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/low_wall/bay/reinforced/steel, +/turf/simulated/floor, +/area/crew_quarters/bar) +"PS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/conveyor{ + dir = 1; + id = "cargounload" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/quartermaster/storage) +"PT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/table/rack, +/obj/random/maintenance/cargo, +/obj/random/maintenance/engineering, +/obj/random/maintenance/engineering, +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/obj/random/snack, +/obj/random/coin/sometimes, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/starboardsolars) +"PU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/portsolars) +"PV" = ( +/obj/structure/stairs/spawner/north, +/obj/structure/railing/grey{ + dir = 8 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/starboardaft) +"PW" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 8 + }, +/obj/structure/table/rack, +/obj/random/maintenance/engineering, +/obj/random/maintenance/engineering, +/obj/random/maintenance/engineering, +/obj/random/maintenance/clean, +/obj/random/maintenance/cargo, +/obj/random/maintenance/cargo, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/portsolars) +"PY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 5 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor, +/area/medical/cryo) +"PZ" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/milspec/color/green/half{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"Qa" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/quartermaster/storage) +"Qc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/cmostore) +"Qd" = ( +/obj/structure/sign/directions/evac{ + pixel_x = -32; + pixel_y = -32 + }, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/starboard) +"Qe" = ( +/obj/effect/floor_decal/milspec/color/green/half{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"Qf" = ( +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 2 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/aftport) +"Qg" = ( +/obj/structure/cable/orange{ + icon_state = "1-8" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/atmos) +"Qh" = ( +/obj/structure/flora/pottedplant/minitree, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/camera/network/medbay, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/reception) +"Qi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/turf/simulated/floor/tiled/eris/white/cargo, +/area/stellardelight/deck2/triage) +"Qj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/camera/network/cargo{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/quartermaster/storage) +"Qk" = ( +/obj/machinery/computer/rcon{ + dir = 1 + }, +/obj/machinery/light/floortube{ + pixel_y = -6 + }, +/obj/machinery/camera/network/engineering{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/engineering_monitoring) +"Ql" = ( +/obj/item/weapon/stock_parts/manipulator, +/obj/item/weapon/stock_parts/manipulator, +/obj/item/weapon/stock_parts/matter_bin, +/obj/item/weapon/stock_parts/micro_laser, +/obj/item/weapon/stock_parts/capacitor, +/obj/item/weapon/stock_parts/capacitor, +/obj/item/weapon/stock_parts/scanning_module, +/obj/item/weapon/stock_parts/scanning_module, +/obj/item/weapon/stock_parts/console_screen, +/obj/item/device/pipe_painter, +/obj/item/weapon/pipe_dispenser, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/structure/table/steel, +/obj/machinery/camera/network/engineering, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/storage/tech) +"Qm" = ( +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/engine_eva) +"Qn" = ( +/obj/machinery/power/apc/angled{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/milspec/color/orange/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/aftport) +"Qo" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/effect/floor_decal/milspec/color/green/half{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hydroponics) +"Qp" = ( +/obj/structure/table/glass, +/obj/item/weapon/backup_implanter{ + pixel_y = 9 + }, +/obj/item/weapon/backup_implanter{ + pixel_y = 2 + }, +/obj/item/weapon/backup_implanter{ + pixel_y = -5 + }, +/obj/item/weapon/backup_implanter{ + pixel_y = -12 + }, +/obj/structure/sign/department/operational{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/stellardelight/deck2/triage) +"Qq" = ( +/obj/structure/bed/chair, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/reception) +"Qr" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 6 + }, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/monitoring) +"Qt" = ( +/obj/structure/cable/orange{ + 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/eris/dark/techfloor_grid, +/area/storage/tech) +"Qu" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/green, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck2/o2production) +"Qv" = ( +/obj/structure/particle_accelerator/particle_emitter/left{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark/danger, +/area/engineering/engine_room) +"Qw" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 10 + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck2/exterior) +"Qx" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/portfore) +"Qy" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/closet/crate/freezer, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OMinus, +/turf/simulated/floor/tiled/white, +/area/medical/surgery) +"Qz" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/cyan{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/angled_bay/standard/glass{ + door_color = "#e6ab22"; + name = "Particle Accelerator"; + req_access = list(10); + stripe_color = "#913013" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/engineering/engine_room) +"QA" = ( +/obj/structure/closet/crate/solar, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor, +/area/engineering/storage) +"QB" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/machinery/door/blast/angled/open{ + dir = 4; + id = "psychshutter"; + name = "Privacy Shutter" + }, +/obj/structure/low_wall/bay/reinforced/white, +/turf/simulated/floor, +/area/medical/psych) +"QC" = ( +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/monitoring) +"QD" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/eris/white/cargo, +/area/stellardelight/deck2/triage) +"QE" = ( +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 5 + }, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/engine_eva) +"QG" = ( +/obj/machinery/appliance/cooker/oven, +/turf/simulated/floor/tiled/eris/cafe, +/area/crew_quarters/kitchen) +"QH" = ( +/obj/machinery/atmospherics/pipe/tank/nitrous_oxide{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"QI" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 5 + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck2/exterior) +"QJ" = ( +/obj/machinery/computer/ship/navigation/telescreen{ + pixel_x = -32; + pixel_y = -32 + }, +/obj/structure/table/bench/steel, +/turf/simulated/floor/tiled/eris/dark/cargo, +/area/crew_quarters/recreation_area) +"QK" = ( +/obj/machinery/atmospherics/omni/mixer{ + name = "Air Mixer"; + tag_east = 1; + tag_east_con = 0.79; + tag_north = 1; + tag_north_con = 0.21; + tag_south = 2; + tag_south_con = null; + tag_west_con = null + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"QM" = ( +/obj/structure/closet/hydrant{ + pixel_x = 32 + }, +/obj/effect/floor_decal/milspec/color/black/corner, +/obj/effect/floor_decal/milspec/color/silver/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"QN" = ( +/obj/structure/extinguisher_cabinet{ + dir = 4; + pixel_x = -27 + }, +/obj/item/bodybag/cryobag{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/structure/table/reinforced, +/obj/item/bodybag/cryobag, +/obj/item/bodybag/cryobag{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/cmostore) +"QO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 10 + }, +/obj/machinery/meter, +/turf/simulated/floor, +/area/stellardelight/deck2/combustionworkshop) +"QP" = ( +/turf/simulated/wall/bay/white, +/area/medical/cmostore) +"QQ" = ( +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/orange{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/locker_room) +"QR" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/aftport) +"QS" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/crew_quarters/bar) +"QT" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/westleft{ + name = "Engineering Reception Desk"; + req_access = list(10) + }, +/obj/item/weapon/folder/yellow, +/turf/simulated/floor/tiled/eris/dark/gray_platform, +/area/engineering/engineering_monitoring) +"QU" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/structure/low_wall/bay/reinforced/orange, +/turf/simulated/floor, +/area/engineering/engineering_monitoring) +"QV" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/double/glass{ + dir = 8; + door_color = "#9c9c9c"; + name = "Commons"; + stripe_color = "#89bd66" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/crew_quarters/recreation_area) +"QW" = ( +/obj/machinery/power/pointdefense{ + id_tag = "sd_pd" + }, +/obj/effect/floor_decal/industrial/warning/full, +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/obj/structure/cable/orange{ + icon_state = "0-8" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck2/exterior) +"QX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"QY" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/structure/low_wall/bay/reinforced/steel, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/portaft) +"QZ" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/eris/dark/cargo, +/area/crew_quarters/recreation_area) +"Ra" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/structure/low_wall/bay/reinforced/steel, +/turf/simulated/floor, +/area/storage/tech) +"Rb" = ( +/obj/machinery/power/tesla_coil, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/simulated/floor/airless, +/area/engineering/engine_room) +"Rc" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/window/eastright{ + dir = 8; + name = "Chemistry" + }, +/obj/machinery/door/window/westleft{ + dir = 4; + name = "Chemistry"; + req_one_access = list(33) + }, +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "chemistry"; + layer = 3.1; + name = "Chemistry Shutters" + }, +/obj/structure/table/reinforced, +/turf/simulated/floor/tiled/white, +/area/medical/chemistry) +"Rd" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/angled/open{ + dir = 4; + id = "bridgelockdown" + }, +/obj/machinery/door/airlock/angled_bay/standard/glass{ + dir = 4; + door_color = "#323d80"; + name = "Bridge"; + req_access = list(19); + req_one_access = list(19); + stripe_color = "#f7d35c" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/bridge) +"Re" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/angled_bay/standard/glass{ + door_color = "#e6ab22"; + name = "Engineering Monitoring Room"; + req_access = null; + req_one_access = list(11,24); + stripe_color = "#913013" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/engineering/engineering_monitoring) +"Rf" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/book/manual/sd_guide, +/turf/simulated/floor/tiled/eris/dark/gray_platform, +/area/bridge) +"Rh" = ( +/obj/structure/table/standard, +/obj/item/weapon/paper_bin, +/obj/item/weapon/pen/red, +/obj/item/weapon/pen{ + pixel_x = 4; + pixel_y = 4 + }, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/quartermaster/storage) +"Ri" = ( +/obj/structure/table/bench/steel, +/turf/simulated/floor/tiled/eris/dark/cargo, +/area/crew_quarters/recreation_area) +"Rj" = ( +/obj/effect/floor_decal/milspec/color/blue/half{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"Rk" = ( +/obj/structure/sign/department/eng{ + pixel_x = 32 + }, +/obj/effect/floor_decal/milspec/color/orange/half{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/aftstarboard) +"Rl" = ( +/obj/machinery/atmospherics/portables_connector/fuel, +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor, +/area/stellardelight/deck2/fuelstorage) +"Rm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker) +"Rn" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12 + }, +/turf/simulated/floor/wood, +/area/stellardelight/deck2/barbackroom) +"Ro" = ( +/obj/machinery/vending/wardrobe/hydrobe, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/milspec/color/green/half{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hydroponics) +"Rp" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/angled_bay/hatch{ + name = "maintenance access"; + stripe_color = "#454545" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck2/port) +"Rq" = ( +/turf/simulated/open, +/area/stellardelight/deck2/fore) +"Rr" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/crew_quarters/bar) +"Rs" = ( +/obj/machinery/power/emitter{ + anchored = 1; + icon_state = "emitter1"; + state = 1 + }, +/obj/structure/cable/cyan{ + icon_state = "0-4" + }, +/turf/simulated/floor/airless, +/area/engineering/engine_room) +"Ru" = ( +/turf/simulated/floor/glass/reinforced, +/area/stellardelight/deck2/starboard) +"Rv" = ( +/obj/structure/sign/poster{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/aftport) +"Rw" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/red, +/obj/machinery/door/airlock/angled_bay/standard/glass{ + door_color = "#e6ab22"; + name = "O2 Production"; + req_access = list(24); + stripe_color = "#2ebfbd" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck2/o2production) +"Rx" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/quartermaster/storage) +"Ry" = ( +/obj/machinery/particle_accelerator/control_box, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/eris/dark/danger, +/area/engineering/engine_room) +"Rz" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/light/small, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/portaft) +"RA" = ( +/obj/machinery/smartfridge/drying_rack, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/milspec/color/green/half{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/hydroponics) +"RD" = ( +/obj/structure/sign/directions/kitchen{ + dir = 1; + pixel_y = 32 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/milspec/color/black/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"RE" = ( +/obj/structure/stairs/spawner/north, +/obj/structure/railing/grey{ + dir = 8 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/portaft) +"RF" = ( +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/reception) +"RG" = ( +/obj/structure/cable/cyan{ + icon_state = "1-2" + }, +/obj/machinery/firealarm/angled{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/engineering/engine_room) +"RH" = ( +/obj/structure/cable/blue{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"RI" = ( +/obj/structure/bed/chair/office/dark, +/obj/effect/landmark/start/chemist, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/chemistry) +"RJ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/cyan{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/engineering/engine_room) +"RK" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker) +"RL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/green, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/monitoring) +"RM" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/medical/surgery) +"RN" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"RO" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/mob/living/simple_mob/animal/passive/mouse/jerboa/leggy, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/quartermaster/storage) +"RP" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/workshop) +"RQ" = ( +/obj/effect/floor_decal/corner_steel_grid{ + dir = 10 + }, +/obj/machinery/body_scanconsole{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/white/cargo, +/area/stellardelight/deck2/triage) +"RS" = ( +/obj/structure/cable/blue{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/starboardfore) +"RT" = ( +/obj/effect/floor_decal/milspec/color/blue/half, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"RU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck2/fuelstorage) +"RV" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/engineering/engine_room) +"RW" = ( +/obj/structure/sign/painting/library_secure{ + pixel_x = 30 + }, +/turf/simulated/floor/wood, +/area/medical/psych) +"RX" = ( +/obj/structure/table/standard, +/obj/item/device/camera_film{ + pixel_x = 4; + pixel_y = 11 + }, +/obj/item/device/camera_film{ + pixel_x = -3; + pixel_y = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/storage/art) +"RY" = ( +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/turf/simulated/wall/bay/r_wall/steel, +/area/engineering/engine_room) +"Sb" = ( +/turf/simulated/floor/tiled/eris/dark/danger, +/area/engineering/engine_room) +"Sc" = ( +/obj/machinery/atmospherics/binary/pump/fuel{ + name = "Tanks To Engines" + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor, +/area/stellardelight/deck2/fuelstorage) +"Sd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/fuel, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck2/fuelstorage) +"Se" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + icon_state = "2-4" + }, +/turf/simulated/floor/plating, +/area/engineering/storage) +"Sf" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/firstaid/regular, +/obj/machinery/alarm/angled, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/quartermaster/storage) +"Sg" = ( +/obj/machinery/atmospherics/binary/circulator{ + anchored = 1 + }, +/turf/simulated/floor, +/area/stellardelight/deck2/combustionworkshop) +"Sh" = ( +/obj/machinery/disposal/wall{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/chemistry) +"Sj" = ( +/obj/machinery/power/pointdefense{ + id_tag = "sd_pd" + }, +/obj/effect/floor_decal/industrial/warning/full, +/obj/structure/cable/orange, +/turf/simulated/floor/airless, +/area/stellardelight/deck2/exterior) +"Sk" = ( +/obj/machinery/power/pointdefense{ + id_tag = "sd_pd" + }, +/obj/effect/floor_decal/industrial/warning/full, +/obj/structure/cable/orange{ + icon_state = "2-4" + }, +/obj/structure/cable/orange{ + icon_state = "0-4" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck2/exterior) +"Sm" = ( +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/engine_eva) +"Sn" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/quartermaster/storage) +"So" = ( +/obj/machinery/computer/ship/navigation/telescreen{ + pixel_y = 32 + }, +/obj/machinery/requests_console/preset/bridge{ + pixel_x = -30 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/light_switch{ + pixel_y = 24 + }, +/obj/effect/landmark/start/commandsecretary, +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/bridge) +"Sp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/eris/dark/gray_platform, +/area/bridge) +"Sq" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/effect/landmark/start/qm, +/turf/simulated/floor/wood, +/area/quartermaster/qm) +"Sr" = ( +/obj/effect/floor_decal/milspec/color/green/corner{ + dir = 8 + }, +/obj/machinery/firealarm/angled{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"Ss" = ( +/obj/structure/table/standard, +/obj/item/device/healthanalyzer, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/medical/surgery2) +"St" = ( +/obj/structure/cable/orange{ + icon_state = "2-4" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/atmos) +"Su" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck2/fuelstorage) +"Sv" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/quartermaster/storage) +"Sw" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1379; + master_tag = "engine_airlock"; + name = "exterior access button"; + pixel_y = 32; + req_access = list(10,11) + }, +/obj/machinery/door/airlock/angled_bay/external/glass{ + dir = 4; + frequency = 1379; + id_tag = "engine_exterior"; + locked = 1; + name = "Engine Airlock" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/engineering/engine_room) +"Sx" = ( +/turf/simulated/wall/bay/steel, +/area/crew_quarters/bar) +"Sy" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/angled_bay/standard/glass{ + dir = 4; + name = "Hydroponics"; + req_one_access = list(35,28); + stripe_color = "#00ab03" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/hydroponics) +"Sz" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/machinery/door/blast/angled/open{ + dir = 2; + id = "atmoswindowlockdown" + }, +/obj/structure/low_wall/bay/reinforced/steel, +/turf/simulated/floor, +/area/stellardelight/deck2/o2production) +"SA" = ( +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/turf/simulated/wall/bay/r_wall/steel, +/area/maintenance/stellardelight/substation/engineering) +"SD" = ( +/obj/machinery/door/firedoor/glass/hidden/steel, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/central) +"SE" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/wall/bay/r_wall/steel, +/area/maintenance/stellardelight/deck2/portfore) +"SF" = ( +/obj/machinery/computer/arcade/clawmachine, +/turf/simulated/floor/tiled/eris/dark/cargo, +/area/crew_quarters/recreation_area) +"SG" = ( +/obj/structure/table/rack/steel, +/obj/item/device/slime_scanner, +/obj/item/device/sleevemate, +/obj/item/device/robotanalyzer, +/obj/item/device/reagent_scanner, +/obj/item/device/healthanalyzer, +/obj/item/device/geiger, +/obj/item/device/analyzer/plant_analyzer, +/obj/item/device/analyzer, +/obj/item/device/t_scanner, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/storage/tech) +"SH" = ( +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "privacyshutters"; + name = "Shutter Control"; + pixel_x = 25 + }, +/turf/simulated/floor/wood, +/area/stellardelight/deck2/briefingroom) +"SI" = ( +/obj/item/weapon/stool/padded{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/dark/cargo, +/area/crew_quarters/recreation_area) +"SK" = ( +/turf/simulated/wall/bay/r_wall/steel, +/area/engineering/atmos/monitoring) +"SL" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/techmaint, +/area/storage/primary) +"SM" = ( +/obj/structure/cable{ + 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, +/area/maintenance/stellardelight/deck2/starboardaft) +"SN" = ( +/obj/structure/closet/wardrobe/captain, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"SO" = ( +/obj/structure/cable/orange{ + icon_state = "1-4" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck2/exterior) +"SP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/engine_eva) +"SQ" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/aftport) +"SR" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/starboardaft) +"SS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/monitoring) +"ST" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/external/glass{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck2/starboard) +"SU" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"SV" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 2; + name = "Bridge"; + sortType = "Bridge" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/starboardfore) +"SW" = ( +/obj/structure/cable/orange{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/locker_room) +"SX" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/port) +"SY" = ( +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 26; + pixel_y = -11 + }, +/obj/effect/floor_decal/milspec/color/green/half{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hydroponics) +"SZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/quartermaster/storage) +"Ta" = ( +/turf/simulated/floor/tiled/eris/cafe, +/area/crew_quarters/kitchen) +"Tc" = ( +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/effect/landmark/start/engineer, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/engineering_monitoring) +"Td" = ( +/obj/structure/sign/directions/evac{ + dir = 10; + pixel_x = 32 + }, +/obj/machinery/camera/network/halls{ + dir = 8 + }, +/obj/effect/floor_decal/milspec/color/orange/corner, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/aftstarboard) +"Te" = ( +/obj/machinery/power/smes/buildable/offmap_spawn/empty{ + RCon_tag = "Solar Array - Port" + }, +/obj/structure/cable, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/portsolars) +"Tf" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/monitoring) +"Tg" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/cable/blue{ + icon_state = "0-8" + }, +/obj/structure/cable/blue{ + icon_state = "16-0" + }, +/obj/structure/disposalpipe/up{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers, +/obj/machinery/atmospherics/pipe/zpipe/up/supply, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/starboardfore) +"Th" = ( +/obj/machinery/computer/station_alert, +/obj/machinery/light/floortube{ + dir = 1; + pixel_y = 6 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 24 + }, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/engineering_monitoring) +"Ti" = ( +/obj/structure/closet/emcloset, +/obj/machinery/status_display/supply_display{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/quartermaster/storage) +"Tj" = ( +/obj/machinery/vending/loadout/costume, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker) +"Tk" = ( +/obj/machinery/camera/network/halls{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/starboard) +"Tl" = ( +/obj/machinery/camera/network/halls{ + dir = 4 + }, +/obj/effect/floor_decal/milspec/color/black/corner{ + dir = 1 + }, +/obj/effect/floor_decal/milspec/color/silver/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"Tm" = ( +/obj/structure/table/rack, +/obj/item/roller, +/obj/item/roller{ + pixel_y = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/landmark/vermin, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/cmostore) +"Tn" = ( +/obj/machinery/chem_master, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/chemistry) +"To" = ( +/turf/simulated/wall/bay/orange, +/area/engineering/workshop) +"Tp" = ( +/obj/structure/cable/white{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/wood, +/area/medical/psych) +"Tq" = ( +/obj/machinery/atmospherics/pipe/simple/visible/universal{ + name = "Waste to Filter" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/monitoring) +"Tr" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/simulated/floor, +/area/stellardelight/deck2/combustionworkshop) +"Ts" = ( +/turf/simulated/shuttle/wall, +/area/stellardelight/deck2/starboardescape) +"Tt" = ( +/obj/effect/shuttle_landmark/premade/sd/deck2/port, +/turf/space, +/area/space) +"Tu" = ( +/obj/machinery/atmospherics/binary/pump/fuel{ + dir = 8; + name = "Tank Refuel" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/red, +/turf/simulated/floor, +/area/stellardelight/deck2/fuelstorage) +"Tv" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/starboardaft) +"Tw" = ( +/obj/structure/cable/orange{ + icon_state = "2-8" + }, +/turf/simulated/wall/bay/r_wall/steel, +/area/maintenance/stellardelight/deck2/portsolars) +"Tx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/camera/network/engineering{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/storage/tech) +"TA" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"TB" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/box{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/storage/box, +/obj/item/weapon/tape_roll{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/weapon/tape_roll, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/storage/art) +"TC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/crew_quarters/bar) +"TD" = ( +/obj/structure/table/steel, +/obj/item/weapon/module/power_control, +/obj/item/weapon/airlock_electronics, +/obj/item/weapon/module/power_control, +/obj/item/weapon/airlock_electronics, +/obj/item/device/aicard, +/obj/item/weapon/aiModule/reset, +/obj/structure/cable/orange{ + icon_state = "1-4" + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/storage/tech) +"TF" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck2/o2production) +"TG" = ( +/obj/structure/table/reinforced, +/obj/machinery/firealarm/angled, +/obj/item/weapon/storage/briefcase/inflatable{ + pixel_x = 3; + pixel_y = 6 + }, +/obj/item/weapon/storage/briefcase/inflatable{ + pixel_y = 3 + }, +/obj/item/weapon/storage/briefcase/inflatable{ + pixel_x = -3 + }, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/engine_eva) +"TH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck2/o2production) +"TI" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/starboard) +"TJ" = ( +/obj/machinery/computer/guestpass{ + pixel_y = 24 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/aftport) +"TK" = ( +/obj/structure/closet/secure_closet/cargotech, +/obj/item/weapon/stamp/cargo, +/obj/item/weapon/storage/backpack/dufflebag, +/obj/machinery/power/apc/angled{ + dir = 4 + }, +/obj/structure/cable/yellow{ + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/quartermaster/storage) +"TL" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 10 + }, +/obj/machinery/bodyscanner{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/white/cargo, +/area/stellardelight/deck2/triage) +"TM" = ( +/obj/effect/floor_decal/milspec/color/black/corner, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"TN" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/aftstarboard) +"TO" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/engine_eva) +"TQ" = ( +/obj/structure/bed/chair/bay/shuttle{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck2/starboardescape) +"TR" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/turf/simulated/floor/tiled/eris/white/cargo, +/area/stellardelight/deck2/triage) +"TS" = ( +/obj/structure/flora/pottedplant/tall, +/obj/structure/closet/emergsuit_wall{ + dir = 8; + pixel_x = -27 + }, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/quartermaster/storage) +"TU" = ( +/obj/machinery/door/blast/angled/open{ + dir = 2; + id = "barlockdown" + }, +/turf/simulated/floor/airless, +/area/crew_quarters/bar) +"TV" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/wall/bay/r_wall/steel, +/area/maintenance/stellardelight/deck2/starboardfore) +"TW" = ( +/obj/structure/sign/department/atmos{ + pixel_x = -32 + }, +/obj/effect/floor_decal/milspec/color/orange/half{ + dir = 10 + }, +/obj/structure/flora/pottedplant/smalltree, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/aftport) +"TX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/engine_eva) +"TY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/wood, +/area/stellardelight/deck2/barbackroom) +"TZ" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/port) +"Ua" = ( +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/aftport) +"Ub" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/portfore) +"Uc" = ( +/turf/simulated/floor, +/area/stellardelight/deck2/aftstarboard) +"Ud" = ( +/obj/structure/table/glass, +/obj/machinery/door/window/southright{ + dir = 1; + req_access = list(5) + }, +/obj/structure/cable/white{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/reception) +"Ue" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/effect/floor_decal/milspec/color/green/half{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hydroponics) +"Uf" = ( +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning/full, +/obj/machinery/power/pointdefense{ + id_tag = "sd_pd" + }, +/obj/structure/cable/orange{ + icon_state = "0-2" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck2/exterior) +"Ug" = ( +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/engine_eva) +"Uh" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck2/exterior) +"Ui" = ( +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/quartermaster/storage) +"Uj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/eris/dark/gray_platform, +/area/bridge) +"Uk" = ( +/obj/machinery/pipedispenser, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/monitoring) +"Ul" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/green, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/monitoring) +"Um" = ( +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/quartermaster/storage) +"Un" = ( +/obj/machinery/atmospherics/binary/pump/on{ + dir = 1; + name = "Ports to Waste" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"Uo" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/effect/floor_decal/milspec/color/green, +/turf/simulated/floor/tiled, +/area/hydroponics) +"Up" = ( +/obj/structure/cable/orange{ + icon_state = "2-8" + }, +/obj/structure/cable/orange{ + icon_state = "1-8" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck2/exterior) +"Uq" = ( +/obj/machinery/vending/medical, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/cmostore) +"Ur" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/quartermaster/storage) +"Us" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging, +/obj/structure/cable/orange{ + icon_state = "1-4" + }, +/obj/structure/cable/orange{ + icon_state = "2-4" + }, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck2/exterior) +"Ut" = ( +/turf/simulated/floor/glass/reinforced, +/area/crew_quarters/recreation_area) +"Uu" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/machinery/door/blast/angled/open{ + id = "privacyshutters"; + name = "Privacy Shutter" + }, +/obj/structure/low_wall/bay/reinforced/blue, +/turf/simulated/floor, +/area/stellardelight/deck2/briefingroom) +"Uv" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/hatch{ + name = "maintenance access"; + stripe_color = "#454545" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/portfore) +"Ux" = ( +/obj/structure/bed/chair/backed_red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/effect/landmark/start/visitor, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/crew_quarters/bar) +"Uy" = ( +/obj/machinery/light/floortube{ + dir = 8; + pixel_x = -6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/landmark{ + name = "lightsout" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/monotile, +/area/hydroponics) +"Uz" = ( +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 2; + name = "Engineering"; + sortType = "Engineering" + }, +/turf/simulated/floor/tiled/eris/dark/gray_platform, +/area/engineering/workshop) +"UA" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/landmark{ + name = "lightsout" + }, +/obj/machinery/hologram/holopad, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/starboard) +"UB" = ( +/obj/machinery/power/smes/buildable{ + RCon_tag = "Substation - Engineering"; + output_attempt = 0 + }, +/obj/structure/cable/orange{ + icon_state = "0-2" + }, +/obj/structure/cable/orange, +/turf/simulated/floor/plating, +/area/maintenance/stellardelight/substation/engineering) +"UC" = ( +/turf/simulated/floor/wood, +/area/stellardelight/deck2/barbackroom) +"UD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/monitoring) +"UE" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/turf/simulated/floor/airless, +/area/engineering/engine_room) +"UF" = ( +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/airless, +/area/engineering/engine_room) +"UG" = ( +/turf/simulated/wall/bay/r_wall/orange, +/area/stellardelight/deck2/fuelstorage) +"UH" = ( +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/chemistry) +"UI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/wall/bay/r_wall/steel, +/area/stellardelight/deck2/combustionworkshop) +"UJ" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/starboardfore) +"UK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/landmark/start/engineer, +/turf/simulated/floor/tiled/eris/dark/gray_platform, +/area/engineering/workshop) +"UL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/eris/dark/gray_platform, +/area/bridge) +"UM" = ( +/obj/effect/floor_decal/emblem/stellardelight, +/obj/effect/floor_decal/milspec/color/blue/half, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"UN" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/storage/art) +"UO" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "packageSort1" + }, +/obj/structure/plasticflaps, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/quartermaster/storage) +"UQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 1; + pixel_y = 1 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"US" = ( +/obj/machinery/door/firedoor/glass/hidden/steel, +/obj/structure/sign/directions/bar{ + dir = 1; + pixel_x = -32 + }, +/obj/effect/floor_decal/milspec/color/black/corner{ + dir = 1 + }, +/obj/effect/floor_decal/milspec/color/silver/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"UT" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck2/exterior) +"UU" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/engine_eva) +"UV" = ( +/obj/structure/table/rack/steel, +/obj/item/weapon/circuitboard/body_designer{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/weapon/circuitboard/resleeving_control{ + pixel_x = -1; + pixel_y = 1 + }, +/obj/item/weapon/circuitboard/transhuman_clonepod{ + pixel_x = 1; + pixel_y = -1 + }, +/obj/item/weapon/circuitboard/transhuman_synthprinter{ + pixel_x = 3; + pixel_y = -3 + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/storage/tech) +"UW" = ( +/obj/structure/sign/poster{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/dark/cargo, +/area/crew_quarters/recreation_area) +"UX" = ( +/obj/structure/table/gamblingtable, +/turf/simulated/floor/carpet, +/area/crew_quarters/recreation_area) +"UY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck2/o2production) +"UZ" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/quartermaster/storage) +"Vb" = ( +/turf/simulated/wall/bay/white, +/area/stellardelight/deck2/triage) +"Vc" = ( +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning/full, +/obj/structure/cable/orange{ + icon_state = "0-2" + }, +/obj/machinery/power/pointdefense{ + id_tag = "sd_pd" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck2/exterior) +"Vd" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/wall/bay/r_wall/steel, +/area/crew_quarters/kitchen) +"Ve" = ( +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/port) +"Vf" = ( +/turf/simulated/floor/airless, +/area/engineering/engine_room) +"Vg" = ( +/obj/machinery/light, +/turf/simulated/floor/wood, +/area/stellardelight/deck2/briefingroom) +"Vh" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock/angled_bay/standard/color{ + dir = 4; + door_color = "#9c9c9c"; + fill_color = "#5c5c5c"; + name = "Bar Backroom"; + req_access = list(25); + stripe_color = "#89bd66" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/crew_quarters/bar) +"Vi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/quartermaster/storage) +"Vj" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/angled_bay/standard/glass{ + dir = 4; + door_color = "#a6753d"; + name = "Cargo Office"; + req_access = list(31); + stripe_color = "#3b2b1a" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/quartermaster/storage) +"Vk" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/aftport) +"Vl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 8; + name = "Trash"; + sortType = "Trash" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/quartermaster/storage) +"Vm" = ( +/turf/simulated/floor/airless, +/area/stellardelight/deck2/fuelstorage) +"Vo" = ( +/turf/simulated/wall/bay/r_wall/orange, +/area/engineering/workshop) +"Vp" = ( +/obj/structure/table/standard, +/obj/machinery/cell_charger, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/quartermaster/storage) +"Vq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/structure/cable/white{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/cmostore) +"Vr" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 4 + }, +/obj/structure/flora/pottedplant/decorative, +/turf/simulated/floor/glass/reinforced, +/area/stellardelight/deck2/fore) +"Vt" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/closet/crate/freezer, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/simulated/floor/tiled/white, +/area/medical/surgery2) +"Vu" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/camera/network/halls{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/aftstarboard) +"Vv" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/table/standard, +/obj/item/weapon/reagent_containers/food/snacks/mint, +/obj/machinery/light/floortube{ + pixel_y = -6 + }, +/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{ + pixel_x = 3; + pixel_y = 13 + }, +/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{ + pixel_x = -1; + pixel_y = 10 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/crew_quarters/kitchen) +"Vw" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/standard/glass{ + name = "glass airlock" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck2/port) +"Vx" = ( +/obj/machinery/power/grounding_rod, +/obj/structure/cable/yellow{ + icon_state = "1-4" + }, +/turf/simulated/floor/airless, +/area/engineering/engine_room) +"Vy" = ( +/obj/machinery/disposal/wall{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/bridge) +"Vz" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/landmark/start/botanist, +/turf/simulated/floor/grass, +/area/hydroponics) +"VA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/green, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/monitoring) +"VB" = ( +/obj/machinery/atmospherics/unary/outlet_injector{ + frequency = 1438; + id = "cooling_in"; + name = "Coolant Injector"; + pixel_y = 1; + power_rating = 30000; + use_power = 1; + volume_rate = 700 + }, +/turf/simulated/floor/reinforced/airless, +/area/stellardelight/deck2/combustionworkshop) +"VC" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 9 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/bar) +"VE" = ( +/obj/structure/cable/blue{ + icon_state = "4-8" + }, +/obj/machinery/light_switch{ + pixel_y = 25 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"VF" = ( +/obj/machinery/door/airlock/angled_bay/standard/color{ + dir = 4; + door_color = "#323d80"; + name = "Briefing Room"; + req_access = list(19); + req_one_access = list(19); + stripe_color = "#f7d35c" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck2/briefingroom) +"VG" = ( +/obj/effect/floor_decal/milspec/color/silver/corner{ + dir = 4 + }, +/obj/effect/floor_decal/milspec/color/black/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"VH" = ( +/obj/machinery/firealarm/angled{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer/cold, +/area/crew_quarters/kitchen) +"VI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/turf/simulated/floor, +/area/stellardelight/deck2/combustionworkshop) +"VJ" = ( +/turf/simulated/floor/airless, +/area/engineering/engine_eva) +"VK" = ( +/obj/structure/table/standard, +/obj/item/stack/nanopaste, +/obj/machinery/power/apc/angled{ + dir = 1 + }, +/obj/structure/cable/white{ + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/white, +/area/medical/surgery2) +"VL" = ( +/obj/structure/closet/chefcloset, +/obj/item/glass_jar, +/obj/item/device/retail_scanner/civilian, +/obj/item/weapon/soap/nanotrasen, +/obj/item/device/destTagger{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/weapon/packageWrap, +/obj/item/weapon/packageWrap, +/obj/item/weapon/packageWrap, +/obj/item/weapon/tool/wrench, +/obj/structure/noticeboard{ + dir = 1; + pixel_y = -32 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/crew_quarters/kitchen) +"VM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/eris/dark/cargo, +/area/crew_quarters/recreation_area) +"VN" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/stellardelight/deck2/central) +"VO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/red, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/turf/simulated/floor, +/area/stellardelight/deck2/combustionworkshop) +"VP" = ( +/turf/simulated/floor/glass/reinforced, +/area/stellardelight/deck2/port) +"VS" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/firstaid/toxin{ + pixel_x = -9; + pixel_y = 10 + }, +/obj/item/weapon/storage/firstaid/toxin{ + pixel_x = -9; + pixel_y = 1 + }, +/obj/item/weapon/storage/firstaid/o2{ + pixel_x = 6; + pixel_y = 10 + }, +/obj/item/weapon/storage/firstaid/o2{ + pixel_x = 6; + pixel_y = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/cmostore) +"VT" = ( +/obj/structure/bed/chair/bay/shuttle{ + dir = 8 + }, +/obj/machinery/alarm/angled, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck2/portescape) +"VU" = ( +/obj/effect/floor_decal/industrial/outline, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/machinery/vending/loadout/gadget, +/turf/simulated/floor/holofloor/tiled/dark, +/area/crew_quarters/locker) +"VV" = ( +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/monitoring) +"VW" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/green{ + dir = 1 + }, +/obj/machinery/meter, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/monitoring) +"VX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/table/rack, +/obj/random/contraband, +/obj/random/maintenance/cargo, +/obj/random/maintenance/engineering, +/obj/random/maintenance/engineering, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/sign/vacuum{ + pixel_x = 32 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/starboardsolars) +"VY" = ( +/obj/machinery/computer/timeclock/premade/north, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"VZ" = ( +/obj/effect/floor_decal/milspec/color/white/half, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/central) +"Wa" = ( +/obj/structure/kitchenspike, +/turf/simulated/floor/tiled/freezer/cold, +/area/crew_quarters/kitchen) +"Wb" = ( +/obj/structure/lattice, +/turf/space, +/area/space) +"Wc" = ( +/obj/structure/table/standard, +/obj/item/weapon/module/power_control, +/obj/item/weapon/cell{ + maxcharge = 2000 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/quartermaster/storage) +"We" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/quartermaster/storage) +"Wf" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/quartermaster/storage) +"Wg" = ( +/obj/structure/closet/firecloset, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/starboardsolars) +"Wh" = ( +/obj/structure/table/reinforced, +/obj/machinery/cell_charger, +/obj/item/weapon/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/item/weapon/tool/wrench, +/obj/item/weapon/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/item/weapon/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/workshop) +"Wi" = ( +/obj/machinery/computer/crew, +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/bridge) +"Wj" = ( +/obj/machinery/atmospherics/pipe/tank/phoron/full{ + dir = 8 + }, +/turf/simulated/floor, +/area/stellardelight/deck2/fuelstorage) +"Wk" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"Wl" = ( +/obj/machinery/vending/assist, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/techmaint, +/area/storage/primary) +"Wm" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker) +"Wn" = ( +/obj/machinery/power/pointdefense{ + id_tag = "sd_pd" + }, +/obj/effect/floor_decal/industrial/warning/full, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck2/exterior) +"Wo" = ( +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/atmos) +"Wp" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/floor_decal/milspec/color/green/half{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hydroponics) +"Wq" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 4 + }, +/obj/structure/bed/chair/comfy/brown{ + dir = 1 + }, +/turf/simulated/floor/glass/reinforced, +/area/stellardelight/deck2/fore) +"Wr" = ( +/obj/structure/cable/green{ + 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/stellardelight/deck2/central) +"Ws" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/portaft) +"Wu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/structure/cable/white{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/eris/white/cargo, +/area/stellardelight/deck2/triage) +"Wv" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 4 + }, +/obj/machinery/camera/network/engineering, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"Ww" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/cyan{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/locker_room) +"Wx" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/black, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"Wy" = ( +/obj/structure/sign/painting/public{ + pixel_x = 30 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/starboard) +"Wz" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/structure/low_wall/bay/reinforced/white, +/turf/simulated/floor, +/area/medical/reception) +"WA" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/obj/machinery/door/airlock/angled_bay/standard/color{ + dir = 4; + door_color = "#e6ab22"; + fill_color = "#877242"; + name = "Atmospherics"; + req_access = list(24); + stripe_color = "#2ebfbd" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/engineering/atmos/monitoring) +"WB" = ( +/obj/structure/table/glass, +/mob/living/simple_mob/animal/passive/cat/jones, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/reception) +"WC" = ( +/obj/machinery/alarm/angled, +/turf/simulated/floor/tiled/eris/dark/cargo, +/area/crew_quarters/recreation_area) +"WE" = ( +/obj/machinery/firealarm/angled{ + dir = 4 + }, +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/quartermaster/storage) +"WF" = ( +/obj/structure/sign/directions/medical{ + dir = 4; + pixel_x = -32; + pixel_y = 35 + }, +/obj/structure/sign/directions/cargo{ + pixel_x = -32; + pixel_y = 29 + }, +/obj/structure/sign/directions/bridge{ + dir = 1; + pixel_x = -32; + pixel_y = 41 + }, +/obj/structure/sign/directions/bar{ + dir = 1; + pixel_x = -32; + pixel_y = 47 + }, +/obj/structure/sign/directions/engineering/atmospherics{ + dir = 10; + pixel_x = -32; + pixel_y = 23 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/port) +"WG" = ( +/obj/structure/railing/grey, +/turf/simulated/open, +/area/quartermaster/storage) +"WH" = ( +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 2 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"WI" = ( +/obj/structure/bed/chair/backed_red{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/landmark/start/visitor, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/crew_quarters/bar) +"WJ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/red{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck2/o2production) +"WK" = ( +/obj/structure/closet/emcloset, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/port) +"WL" = ( +/obj/structure/closet/emergsuit_wall{ + dir = 8; + pixel_x = -27 + }, +/obj/effect/floor_decal/milspec/color/blue/half{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/starboard) +"WM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck2/o2production) +"WN" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/grass, +/area/hydroponics) +"WO" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/starboardfore) +"WP" = ( +/turf/simulated/shuttle/wall, +/area/stellardelight/deck2/portescape) +"WQ" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/camera/network/medbay{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/reception) +"WR" = ( +/obj/structure/table/wooden_reinforced, +/obj/item/device/paicard, +/turf/simulated/floor/tiled/eris/dark/cargo, +/area/crew_quarters/recreation_area) +"WS" = ( +/obj/machinery/atmospherics/pipe/simple/visible/red{ + dir = 6 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"WT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/engineering/storage) +"WU" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/angled_bay/standard/color{ + door_color = "#e6ab22"; + fill_color = "#877242"; + name = "Fuel Storage"; + req_access = list(24); + stripe_color = "#2ebfbd" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck2/fuelstorage) +"WW" = ( +/obj/machinery/power/apc/angled{ + dir = 8 + }, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/obj/structure/cable/orange{ + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/engine_eva) +"WX" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/effect/landmark/start/captain, +/turf/simulated/floor/carpet/blucarpet, +/area/crew_quarters/captain) +"WY" = ( +/obj/structure/table/glass, +/obj/random/medical{ + pixel_x = -4; + pixel_y = 5 + }, +/obj/machinery/camera/network/medbay{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/stellardelight/deck2/triage) +"WZ" = ( +/obj/machinery/firealarm/angled{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/locker) +"Xa" = ( +/turf/simulated/wall/bay/r_wall/white, +/area/medical/chemistry) +"Xb" = ( +/obj/structure/cable/white{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/reception) +"Xc" = ( +/obj/machinery/shipsensors{ + dir = 1 + }, +/obj/machinery/door/blast/angled/open{ + dir = 2; + id = "barlockdown" + }, +/turf/simulated/floor/airless, +/area/crew_quarters/bar) +"Xd" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/starboard) +"Xe" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 4 + }, +/obj/effect/landmark/vines, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"Xf" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/tool/crowbar, +/obj/item/clothing/gloves/black, +/obj/item/weapon/storage/box/lights/mixed, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/workshop) +"Xg" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/effect/landmark/start/chemist, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/chemistry) +"Xh" = ( +/obj/effect/floor_decal/industrial/loading{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/surgery2) +"Xi" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"Xj" = ( +/obj/structure/closet/crate, +/obj/item/stack/material/phoron{ + amount = 25 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/cable/yellow{ + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/engineering/storage) +"Xk" = ( +/turf/simulated/wall/bay/r_wall/steel, +/area/crew_quarters/kitchen) +"Xl" = ( +/obj/machinery/firealarm/angled, +/obj/effect/floor_decal/milspec/color/black/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"Xm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/alarm/angled{ + dir = 4 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/portsolars) +"Xo" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/airless, +/area/engineering/engine_room) +"Xp" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/starboardaft) +"Xq" = ( +/obj/item/weapon/stool/padded{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/bar) +"Xr" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/starboardsolars) +"Xs" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/blue{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/eris/dark/gray_platform, +/area/bridge) +"Xt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/table/glass, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/reception) +"Xu" = ( +/obj/machinery/atmospherics/unary/freezer{ + dir = 1 + }, +/turf/simulated/floor, +/area/engineering/atmos/monitoring) +"Xv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/standard/glass{ + name = "glass airlock" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck2/starboard) +"Xx" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/recreation_area) +"Xy" = ( +/turf/simulated/floor/tiled/techmaint, +/area/storage/primary) +"Xz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/item/weapon/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/engine_eva) +"XB" = ( +/obj/structure/table/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/circuitboard/transhuman_resleever{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/weapon/circuitboard/circuit_imprinter{ + pixel_x = -1; + pixel_y = 1 + }, +/obj/item/weapon/circuitboard/aiupload{ + pixel_x = 1; + pixel_y = -1 + }, +/obj/item/weapon/circuitboard/borgupload{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/storage/tech) +"XC" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"XD" = ( +/obj/structure/easel, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/storage/art) +"XF" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/firstaid/adv{ + name = "human repair kit"; + pixel_x = -9; + pixel_y = 9 + }, +/obj/item/weapon/storage/firstaid/adv{ + pixel_x = -9; + pixel_y = 1 + }, +/obj/item/weapon/storage/firstaid/fire{ + pixel_x = 6; + pixel_y = 9 + }, +/obj/item/weapon/storage/firstaid/fire{ + pixel_x = 6; + pixel_y = 1 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/cmostore) +"XG" = ( +/obj/machinery/atmospherics/binary/algae_farm/filled{ + dir = 1 + }, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck2/o2production) +"XH" = ( +/obj/machinery/power/breakerbox/activated{ + RCon_tag = "Engineering Substation Bypass" + }, +/turf/simulated/floor/plating, +/area/maintenance/stellardelight/substation/engineering) +"XI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 5 + }, +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/monitoring) +"XJ" = ( +/obj/machinery/autolathe, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/quartermaster/storage) +"XK" = ( +/obj/machinery/atmospherics/pipe/simple/visible/green, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/monitoring) +"XL" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/standard/glass{ + dir = 4; + name = "glass airlock" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck2/aftstarboard) +"XM" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{ + dir = 8; + frequency = 1380; + id_tag = "starboard_escape_berth"; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/eris/white/danger, +/area/stellardelight/deck2/starboard) +"XN" = ( +/obj/machinery/computer/supplycomp{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/camera/network/cargo{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/quartermaster/storage) +"XO" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"XP" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/eris/dark/cargo, +/area/crew_quarters/recreation_area) +"XQ" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/aftstarboard) +"XR" = ( +/obj/machinery/suit_cycler/captain, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"XS" = ( +/obj/effect/floor_decal/industrial/danger/corner{ + dir = 4 + }, +/obj/machinery/computer/security/engineering, +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/monitoring) +"XT" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/structure/low_wall/bay/reinforced/steel, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/starboardaft) +"XU" = ( +/obj/item/weapon/stool/padded{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/lino, +/area/crew_quarters/bar) +"XV" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/monitoring) +"XW" = ( +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/obj/machinery/power/apc/angled{ + dir = 4; + name = "night shift APC"; + nightshift_setting = 2 + }, +/obj/structure/cable/orange, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/atmos) +"XX" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/table/standard, +/obj/item/weapon/cartridge/quartermaster{ + pixel_x = -4; + pixel_y = 7 + }, +/obj/item/weapon/cartridge/quartermaster{ + pixel_x = 6; + pixel_y = 5 + }, +/obj/item/weapon/cartridge/quartermaster, +/turf/simulated/floor/wood, +/area/quartermaster/qm) +"XY" = ( +/obj/effect/landmark/start/medical, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/cmostore) +"XZ" = ( +/obj/structure/bookcase, +/obj/item/weapon/book/manual/anomaly_spectroscopy, +/obj/item/weapon/book/manual/anomaly_testing, +/obj/item/weapon/book/manual/materials_chemistry_analysis, +/obj/item/weapon/book/manual/resleeving, +/obj/item/weapon/book/manual/standard_operating_procedure, +/obj/item/weapon/book/manual/security_space_law, +/obj/item/weapon/book/manual/command_guide, +/obj/item/weapon/book/manual, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/medical/psych) +"Ya" = ( +/obj/machinery/atmospherics/pipe/simple/visible/universal{ + name = "Air to Distro" + }, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/monitoring) +"Yb" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/light/small, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/starboardfore) +"Yc" = ( +/obj/structure/musician/piano{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark/cargo, +/area/crew_quarters/recreation_area) +"Yd" = ( +/obj/item/device/suit_cooling_unit, +/obj/item/device/suit_cooling_unit, +/obj/structure/table/reinforced, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/engine_eva) +"Ye" = ( +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"Yf" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/machinery/door/blast/angled/open{ + dir = 2; + id = "barlockdown" + }, +/obj/structure/low_wall/bay/reinforced/steel, +/turf/simulated/floor, +/area/stellardelight/deck2/barbackroom) +"Yg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/wall/bay/brown, +/area/quartermaster/storage) +"Yh" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/portaft) +"Yi" = ( +/turf/simulated/wall/bay/r_wall/steel, +/area/stellardelight/deck2/barbackroom) +"Yj" = ( +/obj/structure/table/standard, +/obj/item/device/retail_scanner/civilian, +/turf/simulated/floor/tiled/eris/cafe, +/area/crew_quarters/kitchen) +"Yk" = ( +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck2/port) +"Yl" = ( +/obj/machinery/firealarm/angled, +/turf/simulated/floor/tiled/eris/dark/cargo, +/area/crew_quarters/recreation_area) +"Ym" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/portsolars) +"Yn" = ( +/obj/machinery/button/remote/blast_door{ + desc = "A remote control-switch for shutters."; + dir = 4; + id = "chemistry"; + name = "Chemistry Shutters"; + pixel_x = -24; + pixel_y = -30; + req_access = list(5) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/chemistry) +"Yo" = ( +/obj/machinery/atmospherics/unary/heater{ + dir = 1 + }, +/turf/simulated/floor, +/area/engineering/atmos/monitoring) +"Yp" = ( +/obj/structure/cable/green{ + icon_state = "1-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/eris/cafe, +/area/crew_quarters/kitchen) +"Yq" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/engineering/engine_room) +"Yr" = ( +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/engineering/storage) +"Ys" = ( +/obj/structure/table/reinforced, +/obj/machinery/chemical_dispenser/full, +/obj/structure/extinguisher_cabinet{ + dir = 1; + pixel_y = -30 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/chemistry) +"Yu" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/blast/angled_shutter{ + dir = 4; + id = "kitchen"; + layer = 3.3; + name = "Kitchen Shutters" + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/crew_quarters/kitchen) +"Yv" = ( +/obj/machinery/atmospherics/pipe/simple/visible/black{ + dir = 6 + }, +/obj/structure/sign/atmos/n2o{ + pixel_y = 26 + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/storage) +"Yw" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled/monotile, +/area/hydroponics) +"Yx" = ( +/obj/structure/sign/deck2{ + pixel_x = -32 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/aftstarboard) +"Yy" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/alarm/angled, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"Yz" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/starboard) +"YA" = ( +/obj/structure/grille, +/obj/structure/shuttle/window, +/turf/simulated/floor, +/area/stellardelight/deck2/starboardescape) +"YB" = ( +/turf/simulated/wall/bay/r_wall/steel, +/area/maintenance/stellardelight/deck2/starboardaft) +"YC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/landmark/start/chef, +/turf/simulated/floor/tiled/eris/cafe, +/area/crew_quarters/kitchen) +"YD" = ( +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/crew_quarters/bar) +"YE" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 4 + }, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/engineering/atmos/monitoring) +"YF" = ( +/obj/structure/sign/painting/public{ + pixel_y = -30 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/storage/art) +"YG" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/tiled/eris/dark/gray_platform, +/area/engineering/workshop) +"YH" = ( +/obj/machinery/beehive, +/obj/machinery/camera/network/civilian{ + dir = 8 + }, +/obj/effect/floor_decal/milspec/color/green/half{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hydroponics) +"YI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/reception) +"YJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/effect/floor_decal/milspec/color/green/half{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/hydroponics) +"YK" = ( +/obj/effect/floor_decal/milspec/color/green/half{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/structure/sign/poster{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hydroponics) +"YL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/eris/dark/gray_platform, +/area/engineering/workshop) +"YM" = ( +/obj/structure/table/woodentable, +/obj/machinery/light/small, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/stellardelight/deck2/barbackroom) +"YN" = ( +/obj/item/weapon/stool/padded{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/camera/network/civilian{ + dir = 5 + }, +/turf/simulated/floor/tiled/eris/dark/cargo, +/area/crew_quarters/recreation_area) +"YO" = ( +/obj/structure/table/gamblingtable, +/obj/machinery/recharger{ + pixel_y = 5 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/recreation_area) +"YP" = ( +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/quartermaster/storage) +"YQ" = ( +/obj/random/vendorfood, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck2/port) +"YR" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/engineering_monitoring) +"YS" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/aftport) +"YT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor, +/area/stellardelight/deck2/combustionworkshop) +"YU" = ( +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/crew_quarters/bar) +"YW" = ( +/obj/random/vendordrink, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/landmark/vermin, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck2/starboard) +"YX" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/starboard) +"YY" = ( +/turf/simulated/wall/bay/brown, +/area/quartermaster/qm) +"YZ" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/ladder/up, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/starboardfore) +"Za" = ( +/obj/machinery/alarm/angled{ + dir = 8 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/starboardaft) +"Zb" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/standard/color{ + dir = 8; + fill_color = "#ffffff"; + name = "Kitchen Cold Room"; + req_access = list(28) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/crew_quarters/kitchen) +"Zc" = ( +/obj/structure/bed/chair/bay/shuttle{ + dir = 8 + }, +/obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod{ + frequency = 1380; + id_tag = "port_escape_pod"; + pixel_y = 24 + }, +/turf/simulated/floor/tiled/techmaint, +/area/stellardelight/deck2/portescape) +"Zd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/eris/dark/gray_platform, +/area/engineering/workshop) +"Ze" = ( +/turf/simulated/floor/tiled/eris/white/cargo, +/area/stellardelight/deck2/triage) +"Zf" = ( +/obj/machinery/power/apc/angled{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/cable/orange{ + icon_state = "0-4" + }, +/obj/structure/table/reinforced, +/obj/item/device/radio/off{ + pixel_y = 6 + }, +/obj/item/device/radio/off{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/item/device/radio/off{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/device/radio/off, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/engineering/locker_room) +"Zh" = ( +/obj/structure/cable/orange{ + 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/eris/dark/orangecorner, +/area/engineering/engine_eva) +"Zi" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/radiation, +/obj/item/clothing/head/radiation, +/obj/item/bodybag/cryobag{ + pixel_x = 1; + pixel_y = 1 + }, +/obj/item/weapon/storage/toolbox/emergency{ + pixel_x = 2; + pixel_y = 1 + }, +/obj/item/weapon/storage/box/lights/mixed{ + pixel_y = 4 + }, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/cmostore) +"Zj" = ( +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/bridge) +"Zk" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/angled_bay/hatch{ + name = "maintenance access"; + stripe_color = "#454545" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck2/starboard) +"Zl" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/machinery/door/blast/angled/open{ + dir = 2; + id = "kitchenlockdown" + }, +/obj/structure/low_wall/bay/reinforced/steel, +/turf/simulated/floor, +/area/crew_quarters/kitchen) +"Zm" = ( +/obj/machinery/camera/network/halls{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"Zo" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/milspec/color/black/corner{ + dir = 1 + }, +/obj/effect/floor_decal/milspec/color/silver/corner{ + dir = 4 + }, +/obj/effect/floor_decal/milspec/color/silver/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"Zp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/monitoring) +"Zq" = ( +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/monitoring) +"Zr" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"Zs" = ( +/turf/simulated/floor, +/area/stellardelight/deck2/combustionworkshop) +"Zt" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/tank/phoron/full{ + dir = 4 + }, +/turf/simulated/floor, +/area/stellardelight/deck2/fuelstorage) +"Zu" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/storage/art) +"Zv" = ( +/obj/structure/closet/walllocker_double/medical/north, +/obj/item/weapon/storage/box/rxglasses{ + pixel_x = 7; + pixel_y = 7 + }, +/obj/item/weapon/storage/box/rxglasses, +/obj/item/device/glasses_kit, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/cmostore) +"Zw" = ( +/obj/machinery/camera/network/medbay{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/medical/cmostore) +"Zx" = ( +/obj/item/modular_computer/console/preset/engineering{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/bridge) +"Zy" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/wall/bay/r_wall/steel, +/area/crew_quarters/kitchen) +"ZA" = ( +/obj/structure/table/standard, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/machinery/firealarm/angled{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/techmaint, +/area/storage/primary) +"ZC" = ( +/obj/item/weapon/stool/padded{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/eris/steel/brown_platform, +/area/crew_quarters/bar) +"ZD" = ( +/obj/structure/table/reinforced, +/obj/item/roller, +/obj/item/roller{ + pixel_y = 8 + }, +/obj/item/roller{ + pixel_y = 16 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/stellardelight/deck2/triage) +"ZE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck2/fuelstorage) +"ZF" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 1; + pixel_y = 1 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/aftport) +"ZG" = ( +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck2/exterior) +"ZH" = ( +/obj/machinery/computer/guestpass{ + dir = 8; + pixel_x = 25 + }, +/obj/effect/floor_decal/milspec/color/orange/half{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/aftstarboard) +"ZI" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/quartermaster/storage) +"ZJ" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/portsolars) +"ZK" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10, +/turf/simulated/floor/tiled/eris/white/cargo, +/area/stellardelight/deck2/triage) +"ZL" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/eris/cafe, +/area/crew_quarters/kitchen) +"ZM" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/fore) +"ZN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 10 + }, +/obj/machinery/power/apc/angled{ + dir = 4 + }, +/obj/structure/cable/orange{ + icon_state = "0-8" + }, +/obj/machinery/vending/engivend, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck2/o2production) +"ZO" = ( +/obj/structure/table/marble, +/obj/machinery/chemical_dispenser/bar_coffee/full{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + pixel_y = -24 + }, +/obj/machinery/light/small, +/turf/simulated/floor/lino, +/area/crew_quarters/bar) +"ZP" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/cable/yellow{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/engineering/engine_room) +"ZQ" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck2/port) +"ZR" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/machinery/door/window/westright{ + name = "Engineering Reception Desk"; + req_access = list(10) + }, +/obj/item/weapon/pen/blue{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/weapon/pen/red, +/turf/simulated/floor/tiled/eris/dark/gray_platform, +/area/engineering/engineering_monitoring) +"ZS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/green, +/obj/structure/cable/orange{ + icon_state = "1-2" + }, +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/monitoring) +"ZT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 4 + }, +/obj/structure/cable/orange{ + icon_state = "4-8" + }, +/obj/machinery/button/remote/blast_door{ + id = "atmoswindowlockdown"; + name = "Window Lockdown"; + pixel_y = 56 + }, +/turf/simulated/floor/tiled/techfloor, +/area/engineering/atmos/monitoring) +"ZU" = ( +/obj/machinery/computer/ship/sensors, +/turf/simulated/floor/tiled/eris/dark/gray_platform, +/area/bridge) +"ZV" = ( +/turf/simulated/floor, +/area/stellardelight/deck2/aftport) +"ZW" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/machinery/camera/network/civilian{ + dir = 5 + }, +/obj/effect/floor_decal/milspec/color/green, +/turf/simulated/floor/tiled, +/area/hydroponics) +"ZX" = ( +/obj/machinery/power/smes/buildable/offmap_spawn/empty{ + RCon_tag = "Solar Array - Starboard" + }, +/obj/structure/cable, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck2/starboardsolars) +"ZY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/conveyor{ + id = "cargoload" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/eris/steel/cargo, +/area/quartermaster/storage) +"ZZ" = ( +/obj/structure/bed/chair/sofa/corp/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/crew_quarters/recreation_area) + +(1,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(2,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(3,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(4,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(5,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(6,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(7,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(8,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(9,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(10,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(11,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(12,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(13,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(14,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(15,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(16,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(17,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(18,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(19,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Oh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(20,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(21,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(22,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Oh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(23,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(24,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(25,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Oh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Tt +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(26,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Oh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(27,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(28,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(29,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(30,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(31,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(32,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(33,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Oh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(34,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(35,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(36,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +NL +NL +NL +NL +NL +iU +SO +NL +Jh +Jh +Jh +Jh +Jh +Jh +Jh +NL +CQ +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(37,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Sk +Le +Le +Le +Le +Le +hI +Dt +Jm +Jm +Jm +Jm +Jm +sR +Jm +Jm +Jm +Jm +Jm +Jm +Us +Jm +nI +kL +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(38,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Ds +uu +oy +ov +ov +ov +Ff +xR +ov +ov +Ff +Ff +ov +ov +Wb +Au +QI +tZ +QI +tZ +QI +eW +QI +Pu +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(39,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Ds +Le +Le +Le +wg +Le +Le +Le +Le +Le +SO +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Ds +kL +ov +ub +VB +vV +NH +Zs +QO +kz +dH +zu +IF +vk +UI +ui +Pu +Pu +Pu +Pu +Pu +Pu +wu +Pu +Pu +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(40,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Pp +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +iU +Le +Le +Le +Le +Le +Vc +Le +Fh +Le +kL +NL +NL +NL +NL +NL +NL +Iz +NL +NL +CP +MX +Le +Sj +Jh +Jh +Jh +Jh +Jh +NL +ZG +NL +ov +cq +ub +yN +gZ +aq +Zs +lF +op +Tr +pB +sF +Jd +Kp +Pu +Pu +Pu +Pu +Pu +Pu +wu +Pu +Pu +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(41,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Oh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +NL +NL +NL +NL +NL +NL +ZG +yH +yH +yH +yH +yH +yH +NL +yH +yH +yH +yH +yH +ZG +NL +Wb +Wb +Wb +Wb +Wb +NL +NL +ZG +tc +ov +Pw +gs +If +VO +kP +kP +kP +Sg +YT +Ap +AD +ov +Qw +ma +Qw +ma +Qw +ma +Pu +wu +Pu +Pu +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(42,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +NL +NL +NL +NL +ZG +iH +Uh +Uh +Uh +Uh +Uh +NL +Ig +Ig +Ig +Ig +BE +CP +Le +Le +Le +Le +Le +rW +GJ +GJ +vJ +mI +ov +wp +wp +wp +Fx +zi +BG +Kd +VI +DX +Fa +jE +uk +IU +IU +uk +uk +uk +NL +Pu +wu +Pu +Pu +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(43,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +NL +NL +NL +NL +NL +NL +se +dk +dk +dk +dk +dk +dk +dk +bw +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +yy +uK +bH +mZ +Mx +Cq +Cq +Cq +Cq +NL +Cq +Cq +Cq +Cq +Cq +NL +Jh +Jh +Jh +Jh +mI +sx +DB +rs +DB +DB +Hm +Hm +Hm +wp +wp +aD +wp +MQ +vW +Ny +vw +nA +EF +In +hu +BZ +TF +uk +uk +Qw +ms +Qw +ma +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(44,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +NL +NL +NL +NL +NL +NL +NL +jx +NL +NL +NL +NL +NL +NL +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +CP +Le +SO +qG +Uh +Uh +Uh +NL +Ig +Ig +Ig +Ig +BE +Wb +Wb +Jh +Jh +mI +mI +uR +DB +DB +St +Wo +bR +xr +Gh +nW +RL +DY +Hm +Hm +Hm +Hm +Hm +mu +oE +eU +TH +qO +pO +Pm +uk +uk +ZG +NL +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(45,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +NL +NL +NL +NL +NL +NL +Ar +NL +jx +NL +NL +NL +NL +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +CP +SO +Mx +Mx +Mx +NL +Mx +Mx +Mx +Mx +Mx +Wb +Wb +Wb +mI +mI +fQ +th +Wo +XW +Qg +eq +eq +iA +eq +eq +be +ZT +Hm +Em +Am +Et +Am +nR +Rw +od +UY +WJ +pO +HI +Av +dV +mh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(46,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +se +dk +dk +dk +dk +dk +dk +UT +cT +nP +NL +NL +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +CP +SO +NL +NL +Cf +NL +NL +NL +NL +Jh +Jh +Wb +BT +BT +eq +eq +eq +eq +eq +eq +eq +nE +JS +NK +eq +sz +to +GC +Ag +Fl +sp +hK +Pq +oE +Kq +ge +IA +eG +Ei +js +uk +ZG +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(47,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +bD +yK +NL +NL +Jh +Jh +Jh +Jh +NL +jx +NL +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +ZG +Wb +ie +zI +ie +Jh +Wb +Wb +Jh +Jh +Jh +BT +cx +ez +QH +eq +ql +ez +mB +eq +nE +JS +NK +eq +XS +kM +ZS +VA +km +Na +Ul +Fv +GD +Ck +Jt +ut +XG +PJ +Kk +rb +mR +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(48,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +jx +Wb +Jh +Jh +Jh +Jh +Jh +Wb +jx +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Wb +ZG +Jh +aa +eb +Fz +Fz +Fz +jL +Wb +Jh +FD +BT +cx +JS +QH +eq +ql +JS +mB +eq +ny +xu +oA +oo +Er +la +la +tz +eu +ig +tN +mx +oE +tD +UY +OK +pO +Qu +ro +Sz +ZG +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(49,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +KL +hO +SE +KL +aT +aT +aT +KL +aT +KL +SE +KL +aT +aT +aT +KL +aT +aT +KL +aT +aT +aT +KL +KL +KL +KL +KL +WP +Br +hg +WP +rR +rR +rR +rR +QY +QY +rR +rR +rR +rR +rR +ie +Tw +Fz +Pk +Px +sa +Fo +Te +CO +ux +ux +MC +BT +Yv +xu +oA +oo +xW +xu +oA +mA +kW +eI +WS +Un +Ab +Ab +Ek +QC +uN +gy +SS +Dg +oE +ZN +pY +DE +sT +WM +ro +Sz +QW +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(50,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +KL +KL +Md +Qx +Gv +Gv +Gv +Gv +Gv +Gv +Gv +KD +Gv +Gv +Gv +Gv +Gv +Gv +Gv +Gv +Gv +Gv +Gv +Gv +Uv +Gv +yz +KL +WP +Zc +fX +WP +rR +rR +RE +um +iz +sn +kg +iz +dC +cV +aV +qC +zv +Xm +eE +pk +Fe +PU +GO +GK +ZJ +My +PW +eq +Wv +xi +oQ +oQ +zM +Mf +oQ +oQ +wA +ah +ue +As +Tq +oU +xN +Zq +VV +et +Ca +Yo +UG +UG +Od +UG +UG +cv +cv +cv +CP +SO +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(51,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +NL +NL +NL +NL +Wb +Jh +Jh +hO +Md +Ub +ch +ch +ch +ch +ch +ch +ch +KK +KK +KK +kR +kR +kR +KK +kR +kR +KK +kR +kR +kR +KK +KK +OQ +Ev +KL +WP +yp +bI +WP +rR +EG +Yh +Yh +Yh +AP +Yh +Yh +Yh +uL +Yh +Ym +qY +fw +uc +JP +DH +CA +NB +Lf +dO +AU +dx +lh +gM +oe +AX +Dc +he +CR +AX +AX +he +AX +ao +AX +Qr +ag +XK +qN +CM +qw +iJ +Xu +UG +di +Iq +EQ +Zt +qM +Vm +mq +Wb +ZG +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(52,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +NL +NL +CZ +dk +dk +dk +dk +Vd +Zy +oD +ch +ch +Bk +Wa +vh +Wa +OM +hl +rO +sV +ZW +Wp +LO +rt +Lz +bb +kG +sd +Vz +oz +pd +uA +KK +Gq +Cu +hO +WP +VT +fX +WP +QY +Kb +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +bh +wB +Bw +Bw +Bw +Bw +bg +bF +Wx +hN +qg +ac +Wx +ez +ac +QK +ff +nG +CH +AW +LU +ja +Eq +VW +Cn +mD +vD +qL +UG +JM +GU +Su +LG +AV +Vm +Vm +Wb +ZG +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Oh +Jh +Jh +Jh +Jh +"} +(53,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +NL +NL +se +nP +NL +Jh +Jh +Xk +Xk +kX +Gi +wL +ch +DD +av +AC +DP +BF +hl +pN +yv +Uo +iZ +ES +ea +Qo +pX +iZ +ej +WN +ok +dP +AR +KK +si +pS +hO +WP +LM +LM +WP +QY +Kb +Bw +YQ +Gc +dX +fr +MD +ox +MD +zp +eL +fr +vU +MD +MD +fR +IC +TZ +cn +TZ +dR +WK +eq +RN +gY +qg +ac +vB +Nl +wI +Ai +RN +tF +IN +Ki +Ya +vF +An +uB +XI +im +vn +qF +UG +Bd +No +zY +yg +AV +cv +cv +Ds +kL +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(54,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +NL +NL +se +nP +NL +Jh +Jh +Xk +Xk +Fm +ki +Yp +uW +ch +gQ +cu +VH +LW +Ha +hl +af +dQ +Do +iZ +GM +lf +mz +sA +iZ +ii +WN +aH +LS +Jp +KK +JH +Fc +KL +wn +sW +sW +wn +rR +Rz +Bw +vX +Ec +kI +ti +ti +ti +ti +IB +ti +ti +ti +ti +qI +xe +MY +ti +ti +ti +Es +te +eq +Mu +xu +oA +TA +sU +xu +oA +NX +xl +HX +OH +zd +YE +ly +go +UD +Lk +oq +om +IH +WU +zV +Tu +Js +Sc +PB +NL +NL +ZG +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(55,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +NL +NL +se +nP +NL +Wb +Jh +Xk +Xk +rn +oO +CE +IW +VL +hl +hl +hl +hl +Zb +hl +hl +Mn +oj +if +vP +Uy +ap +zb +EA +wP +JI +fa +aJ +aP +rP +hf +Nw +Iw +KL +Bw +BW +BW +Bw +rR +Kb +Bw +mg +pL +CJ +hr +Cj +Cj +Cj +Cj +Cj +Cj +ZQ +Cj +tP +tU +jd +Cj +Bf +NG +cO +Bx +eq +CT +JS +BY +eq +cE +JS +Ch +eq +mf +sb +wZ +eq +OT +ty +lt +OY +nZ +Dm +CB +qF +UG +Rl +Sd +ZE +MP +PB +cv +cv +CP +SO +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(56,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +NL +NL +bD +yK +NL +Wb +Wb +Wb +Xk +OA +dm +YC +lz +hZ +lr +iN +YK +gG +bq +YJ +uf +bt +Dq +Is +hh +hH +iY +Yw +iZ +iZ +iZ +Kc +WN +ok +dP +AR +KK +bP +kK +Rp +gm +PG +PG +Cb +Rp +Ws +Bw +Bw +dn +Ms +Mo +xp +xp +QB +QB +QB +xp +Hr +Hr +Hr +Hr +Hr +Hr +Hr +Ec +cO +Bx +eq +CT +kQ +BY +eq +cE +uO +Ch +eq +mf +oL +wZ +eq +Cz +Hs +kn +Zp +dt +Ov +al +qF +UG +ot +MG +Su +ay +wm +Vm +mq +Wb +ZG +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(57,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +NL +NL +jx +Wb +Wb +Jh +Jh +Xk +nC +Ta +Bn +yf +IW +Yj +Bj +ml +BH +BH +jM +BH +YH +Ro +sE +bc +Ue +SY +zr +bS +aS +aG +RA +qp +dF +sh +mS +KK +mY +qy +Bw +Aa +sg +sg +pr +Bw +FS +yP +Bw +Ko +wF +SX +xp +qn +hC +Dx +yo +XZ +Hr +Oj +Ht +Fq +Qy +wd +Hr +Gs +yd +pv +eq +eq +eq +eq +eq +eq +eq +eq +eq +eq +nr +yl +yl +WA +cl +pT +vx +FL +gB +HC +fG +UG +DF +RU +Wj +DR +AV +Vm +Vm +Wb +ZG +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(58,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Wb +jx +Jh +Jh +Jh +Jh +Zl +QG +Bm +Ak +Pg +IW +rr +hl +MU +jo +jo +aj +jo +MU +MU +MU +jo +jo +MU +Sy +MU +gx +lI +MU +jo +jo +yX +jo +KK +Bw +Bw +Bw +pw +Yk +Ce +pw +Bw +Bw +Bw +Bw +Ec +wF +SX +ip +so +Nu +EC +ws +va +Hr +hw +hV +RM +Om +zt +Hr +jt +gK +eP +yY +fn +HG +bk +Mc +Mc +yD +SQ +nX +SQ +ym +Qn +nw +xx +TW +Hm +BQ +FL +gB +yB +qF +UG +UG +Jo +eg +eg +tk +cv +cv +Ds +kL +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(59,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +lZ +Di +Jh +Jh +Jh +Zl +gr +Ta +OO +Vv +IW +pI +Gy +Zo +ND +ND +au +ND +Sr +zO +Qe +Qe +Qe +Qe +PZ +GY +Qe +Qe +Hk +Qe +Qe +Qe +Qe +nS +Vw +eL +pA +VP +VP +VP +MD +eL +pA +EI +MD +WF +wF +SX +ip +Gr +dh +Fr +ws +tv +Hr +zU +Ee +Bh +iD +ca +Hr +xm +dj +YS +YS +YS +ul +YS +YS +YS +YS +YS +dz +YS +EW +gf +DQ +QR +zR +Hm +wM +FL +eH +cM +XV +Tf +aZ +xU +jV +KQ +ey +Le +Le +gF +Ii +Sj +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(60,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +lZ +Di +Wb +Xk +Xk +cW +gj +pz +Bo +cw +Ta +Gy +Gj +jC +XC +XC +XC +XC +XC +XC +XC +ih +ZM +bN +MV +XO +XO +XO +XO +XO +hd +sO +sO +Vw +Ve +Ve +VP +VP +VP +Ve +Ve +Ve +Ve +Ve +Ve +wF +SX +ip +mP +Tp +HB +fb +jI +Hr +dD +sK +Ge +yU +xj +Hr +nB +cj +FX +CD +CD +eD +CD +CD +FX +FX +gw +ci +FX +JC +zf +CD +pq +cz +Hm +vx +bo +Uk +xt +tI +ga +qx +MJ +Gl +FK +qq +Wb +Wb +NL +CP +SO +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(61,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Wb +jx +NL +Xk +iC +Ta +Ta +Ta +GB +zJ +ZL +Ng +gl +aB +TM +HR +of +cP +yh +QM +Xe +qo +ek +mN +kV +Zr +Zr +Zr +Zr +sO +Xi +ua +Rj +Vw +mi +bA +MA +tL +VP +bA +bA +bA +mb +bA +BP +wF +FP +xp +ke +lc +Dn +RW +jX +Hr +Dy +uv +EL +IZ +OC +Hr +Hr +Oi +bY +aU +kt +wY +Ip +ZV +bY +FX +FX +ci +Hl +do +do +do +Vj +do +Hm +Hm +Hm +Hm +Hm +Hm +Hm +Hm +pK +Hm +Hm +SK +LE +LE +LE +LE +ZG +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(62,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Oh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +NL +jx +NL +Xk +iF +Pn +Pn +Pn +Yu +nU +Pn +HJ +RD +KH +zz +nt +nt +nt +nt +nt +kE +QV +nt +nt +nt +DN +xP +Wq +Vr +Wk +Xi +RT +nK +nK +nK +Rd +xd +xd +ug +ug +ug +ug +xd +xd +oH +SD +fv +xp +xp +xH +xp +xp +xp +Hr +Hr +Hr +Hr +Bl +Hr +Hr +Hr +Gx +DA +bm +Ef +wY +dL +qT +AL +sI +FX +zl +Ao +do +ME +bl +hU +do +vC +UO +PC +PL +PC +UO +Pj +sG +pb +Jr +Ur +EH +yT +UZ +yC +LE +ZG +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(63,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +NL +NL +jx +HQ +HQ +YD +EV +EV +EV +ZC +FM +EV +Sx +po +td +jF +nt +Ji +YN +De +QZ +Ho +aE +QJ +WR +nt +Rq +Rq +Rq +aA +Jq +Xi +RT +nK +fV +nK +zH +xd +mH +Ad +rF +GV +GV +OD +xd +Mj +Da +vH +PE +Qh +bi +Nh +Vb +ZD +HM +FH +bu +Qp +Ih +KV +jK +Vb +QP +QP +QP +QP +QP +QP +QP +QP +QP +ei +Bt +eB +do +bG +Lm +YP +do +Az +NN +qu +re +pc +NN +NN +Yg +Fi +EK +eR +EK +qt +Wf +ID +bE +ZG +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(64,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +bD +dk +dM +ir +pn +QS +QS +QS +BJ +Fb +TC +DI +Sx +jr +KH +zz +nt +Mp +dY +cC +iO +mt +Cy +mt +Yc +nt +Rq +Rq +lQ +gA +Jq +Xi +kF +nK +nK +nK +Rd +xd +Pl +OL +cJ +cb +Al +Fk +Uu +Mj +Da +Ib +PE +pM +Xb +hp +Dk +ds +hx +hx +Ay +LZ +bJ +Ll +hx +EU +QP +QN +Zi +tM +ko +Ia +XY +pg +QP +cs +ci +eB +do +WG +Hu +ak +Me +ar +uI +Sn +wk +Cm +Qj +AZ +ht +ye +DZ +DZ +DZ +DZ +DZ +in +bE +ZG +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(65,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +oJ +Gn +MK +YU +Nc +Nc +dU +TC +YU +rV +VG +KH +HO +nt +GL +mt +mt +mt +mt +Cy +mt +SI +nt +nt +nt +nt +nt +PA +Xi +cY +nK +nK +So +lD +xd +xd +xd +cg +CK +cb +Fk +Uu +ll +xZ +xn +PE +dK +me +gH +kb +iW +uh +Ox +fO +Jy +nT +yk +Mb +ww +QP +Uq +Kf +Kf +XF +VS +XY +pg +QP +Rv +ci +eB +do +WG +gb +kx +Rx +Jj +PH +wE +es +Rx +Vi +pD +jQ +jQ +jQ +Eu +jQ +jQ +jQ +Qa +bE +ZG +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(66,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +oJ +wG +MK +YU +Gn +CY +Gn +TC +YU +rV +lT +KH +Ct +nt +WC +mt +mt +mt +mt +jv +ct +Lq +ct +HE +xE +yG +nt +kr +Mi +RT +nK +xB +Zj +Sp +Io +kJ +xd +dZ +er +Gg +PP +xd +dp +Da +VZ +PE +PE +kZ +ya +Vb +Vb +KS +Vb +KT +wz +ZK +Ze +nj +Qi +Pv +lL +cR +ee +cR +yI +XY +pg +QP +Qf +MR +Ua +do +do +do +do +Ti +DM +JN +hS +hS +zj +dN +pD +jQ +jQ +jQ +jQ +jQ +jQ +jQ +Qa +bE +ZG +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(67,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +oJ +Gn +MK +YU +ic +ls +oF +TC +aY +bx +VG +KH +zz +nt +UW +Bp +oS +oS +oS +Bp +mt +mt +mt +DL +Lb +ix +nt +rH +QX +RT +jU +kc +ru +Xs +Cw +Cw +kD +Mt +it +SH +Vg +xd +AB +Da +VZ +Wz +Lv +RF +YI +Kt +EJ +WQ +Vb +wh +wz +RQ +Ze +Eo +Ze +QP +gu +Kf +Kf +Kf +Kf +XY +pg +QP +jN +ci +eB +OP +TS +XN +NN +ou +vy +mw +mw +jD +zj +PS +cU +jQ +jQ +jQ +jQ +jQ +jQ +jQ +Qa +bE +ZG +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(68,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Wb +HQ +Nk +YU +YU +YU +qe +YU +TC +YU +Sx +VG +KH +zz +nt +yc +Dl +UX +UX +UX +vS +mt +mt +mt +DL +Lb +sc +nt +yF +uE +RT +jU +Lx +Zx +UL +BX +Vy +xd +xd +xd +xd +VF +xd +rk +Da +VZ +xQ +lW +RF +mo +IQ +ef +xO +Vb +fP +ve +TL +QD +Ba +jp +QP +QP +tV +Id +yV +Kf +XY +pg +QP +tA +ci +eB +dq +zj +We +Lu +CS +vq +Rh +gO +vq +hS +dN +LX +jQ +jQ +jQ +jQ +jQ +jQ +jQ +Qa +bE +ZG +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(69,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Wb +TU +oJ +Gn +MK +YU +Nc +Ux +xD +Pc +fB +iX +UQ +kS +PK +JR +xA +DS +UX +Bp +Ob +ts +Ut +Ut +Ut +DL +tb +rg +nt +dG +wK +GS +jU +ew +Rf +Uj +ZU +JQ +nK +nK +bL +wi +VN +sS +Mj +Da +VZ +vN +RF +RF +Xt +eS +jG +iP +Vb +Kg +wz +fx +zC +fx +MH +LZ +Vb +Vb +Vb +Vb +hi +XY +pg +QP +TJ +ci +eB +dq +zj +GE +NN +BM +RO +pl +LF +oC +hS +dN +pD +jQ +jQ +jQ +jQ +jQ +jQ +jQ +Qa +bE +CP +SO +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(70,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Xc +oJ +LP +zw +Jl +Gn +CI +iT +TC +ku +Sx +Je +DW +JL +nt +BS +Dl +YO +BK +Fw +vS +Ut +IE +Ut +Xx +NS +mL +nt +HY +GI +UM +jU +Hb +HL +nD +CG +wo +nK +nK +uQ +xy +Hg +os +em +PO +wl +Ci +zG +wX +Pr +qj +ld +rC +Vb +HA +wz +TR +Kl +vi +Ze +Ay +qZ +bn +bf +Vb +Zv +Kf +sZ +QP +Hj +ln +xC +xG +zj +GE +do +iB +vq +XJ +MM +nz +hS +dN +su +jQ +jQ +jQ +jQ +jQ +jQ +jQ +FW +bE +Jh +AF +Jh +Jh +Jh +Jh +Jh +Jh +Oh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(71,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Wb +TU +oJ +Gn +MK +oB +wq +wq +WI +LR +by +FJ +OW +pG +co +BD +ud +Ep +UX +Bp +UX +ts +Ut +Ut +Ut +DL +hD +wf +nt +pa +rj +EN +jU +Mw +IL +Uj +Nn +JQ +rN +rN +rN +rN +rN +rN +Mj +Wr +VZ +vN +RF +RF +wa +eS +WB +rC +Vb +Ol +FG +ZK +Ks +ZK +Ze +hx +Vb +Vb +Vb +Vb +vG +Kf +wC +QP +cK +Vk +BL +KR +wH +Sv +sk +gN +Um +wR +wR +fz +bB +OR +fY +jQ +jQ +jQ +jQ +jQ +jQ +jQ +Qa +bE +NL +NL +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(72,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Wb +HQ +bO +YU +lU +as +as +Rr +AY +YU +Sx +Ls +KH +zz +nt +yc +Dl +UX +UX +UX +vS +mt +mt +mt +DL +Lb +sc +nt +yF +uE +RT +jU +Lx +Ld +Uj +Zj +Zj +rN +ry +sB +cZ +lC +rN +zo +Wr +VZ +xQ +wS +RF +sv +Ud +gg +HH +Vb +wT +BU +RQ +Ze +FE +La +QP +QP +kk +xV +jW +Kf +Kf +AG +QP +Pt +ci +eB +rv +zj +DV +do +EM +uY +hS +hS +bW +zj +ZY +ET +jQ +jQ +jQ +jQ +jQ +jQ +jQ +Qa +bE +NL +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(73,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +oJ +Gn +MK +fi +VC +XU +sr +Xq +qS +Sx +EE +KH +zz +nt +hA +Bp +io +io +io +Bp +mt +mt +mt +DL +Lb +ix +nt +Yy +Hy +RT +jU +Wi +hc +GP +nv +JK +nu +RH +ky +AO +WX +rN +Hh +Wr +VZ +Wz +Qq +Km +Mq +xL +LC +yQ +Vb +wT +zD +ik +Ze +og +Ze +QP +sJ +nJ +kj +Pb +Vq +kO +yE +QP +jN +ci +eB +gq +HZ +Nj +NN +ae +or +WE +Ui +BO +Ui +dN +pD +jQ +jQ +jQ +jQ +jQ +jQ +jQ +Qa +bE +Wb +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(74,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +oJ +wG +MK +fi +dw +On +rd +AN +sL +rV +lT +KH +Ct +nt +Yl +mt +mt +mt +mt +hm +VM +uJ +VM +BC +lG +ZZ +nt +ys +IK +RT +nK +Dh +lo +lB +GW +Fp +rN +VE +oc +xv +Ow +rN +IG +AA +rc +Xa +Xa +Rc +tf +Xa +Xa +NQ +Vb +qm +Wu +GF +hR +fu +dc +zQ +fF +aX +Qc +Tm +hn +pf +hn +hn +Qf +qb +Ua +YY +Nf +Nf +YY +le +YY +YY +xk +BO +Ui +dN +pD +jQ +jQ +jQ +jQ +jQ +jQ +jQ +Qa +bE +Wb +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(75,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +oJ +Gn +zw +fi +dw +BV +py +fp +mn +rV +VG +KH +HO +nt +XP +mt +mt +mt +mt +lO +mt +mt +nt +nt +nt +nt +nt +PA +IK +cY +nK +nK +oZ +gC +rN +rN +rN +iM +uP +IV +IV +rN +uF +dB +aF +Xa +eJ +JV +Yn +Hc +Xa +zc +uj +Ll +dr +hx +hx +tT +Iu +QP +IT +LQ +nV +ft +hn +zL +PY +Ex +ZF +ci +eB +cX +ed +du +dJ +mE +bQ +YY +ce +BO +Ui +dN +pD +jQ +jQ +jQ +jQ +jQ +jQ +jQ +Qa +bE +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(76,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +bD +dk +Di +HQ +LT +as +uX +dw +On +hY +fp +MZ +Sx +Xl +KH +zz +nt +SF +Fy +cC +iO +mt +lO +Ri +sH +nt +Rq +Rq +lY +BA +Jq +IK +kF +nK +nK +nK +yJ +rN +SN +DG +vK +uP +IV +sX +rN +mk +eZ +VZ +sq +vO +Ft +Dv +ol +Dz +rm +hj +kC +vI +NP +Cd +OE +EU +QP +lR +jq +Zw +Df +hn +DJ +Pz +hn +eO +Jn +zh +cX +Oa +tt +BI +PD +ed +cX +nF +BO +Ui +cy +tu +HN +HN +HN +HN +HN +HN +HN +nm +bE +Wb +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(77,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +NL +NL +jx +HQ +HQ +pW +sP +dw +On +py +fp +Dj +Sx +po +AI +jF +nt +fL +mU +DO +kp +GA +fK +ij +sH +nt +Rq +Rq +Rq +aA +Jq +IK +RT +nK +fV +nK +uC +rN +lg +EO +ED +fo +XR +gn +rN +we +dB +fI +sq +xJ +fh +MS +NF +qQ +iq +zX +vf +LV +GT +lP +WY +Vb +QP +QP +QP +QP +QP +hn +hn +hn +hn +Oz +KA +XQ +JZ +Hp +Sq +XX +Dr +Fn +JZ +PM +wN +rK +Vl +qk +Eh +SZ +Jv +jZ +pp +yR +HF +IO +bE +Wb +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(78,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +NL +tj +dk +PR +Pe +bp +dw +On +py +fp +ZO +Sx +VY +KH +zz +nt +nt +nt +nt +nt +kE +lJ +nt +nt +nt +dv +Im +Gb +kl +Wk +IK +RT +nK +nK +nK +yJ +rN +rN +rN +rN +rN +rN +rN +rN +oH +Nr +fv +sq +jf +jc +dg +Sh +Xa +qf +nd +nd +nd +mK +nd +nd +nd +uz +Bg +br +fJ +yW +NW +iE +Aw +Yx +ON +Jn +LK +cX +xo +NO +cH +kY +bU +YY +Sf +TK +kq +vA +Vp +Wc +kB +He +aR +IR +xw +ZI +hW +LE +NL +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(79,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Wb +jx +NL +oJ +mJ +sP +dw +On +wV +aK +nQ +Sx +aC +KH +jP +Tl +pH +eX +Ga +ex +zs +lS +eV +Kn +US +ND +ND +ND +ND +sO +IK +jy +Bc +yr +oi +Gd +Pf +wW +Ru +nL +WL +WL +Iv +iu +ec +YX +vR +Xa +Tn +Xg +Ky +Ft +vO +qf +xY +oh +bs +OU +OX +nd +nd +jz +Ml +bv +en +yW +ab +Uc +Ml +ON +ON +Jn +Vu +ta +ta +ta +ta +ta +ta +ta +ta +LY +LY +uM +LY +oa +oa +oa +oa +BN +LE +LE +LE +LE +NL +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(80,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +se +nP +Wb +HQ +HQ +vg +Ax +LL +GX +uZ +Hi +Sx +iy +mV +XC +rQ +ZM +ZM +ZM +ZM +ZM +kd +SU +ZM +WH +ZM +ZM +ZM +xg +ji +lj +ji +ji +Xv +En +jk +Ru +Ru +Ru +CC +CC +CC +CC +CC +CC +YX +JG +sq +Or +Ft +Ky +RI +Ys +qf +hM +Xh +vL +Hw +fg +nd +Ik +TN +dI +eN +eN +Ej +eN +eN +dI +dI +eT +nN +up +dA +Lt +Xf +Lc +kA +Iy +CL +To +jm +yq +TO +FY +Gf +XH +UB +np +BN +Wb +Wb +NL +NL +NL +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(81,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +se +nP +Jh +Jh +Jh +HQ +Sx +Sx +Sx +Vh +Sx +Sx +Sx +FA +Zr +sj +FU +Zr +Zr +vj +pZ +DC +Zr +OV +Zr +Ye +Zr +Zr +Zm +OV +Zr +Zr +sj +Zr +yr +Mm +lv +Ru +Ru +Ru +Mk +Mk +lv +Mk +Mk +uq +YX +JG +sq +Ln +ck +Ky +ad +mW +qf +OG +ho +Lh +Gw +gJ +nd +qD +Cx +hJ +hJ +hJ +hy +hJ +hJ +hJ +fW +hJ +bX +jS +dA +RP +At +bd +UK +At +Wh +To +eF +tl +Il +no +Hq +tQ +vM +kN +SA +Le +Le +uG +Le +Sj +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(82,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Wb +jx +Jh +Jh +Jh +Jh +Yf +rG +bV +LN +KG +Rn +FC +fl +fl +HW +fl +rX +fl +HW +fl +fl +eC +Ke +HP +hq +mT +mT +AM +mT +JB +oM +mT +mT +JY +Hd +an +Hd +rZ +zN +Ew +rZ +Hd +Hd +Hd +Hd +Xd +YX +JG +sq +BR +Ft +Ky +Ft +vY +qf +VK +Op +Bv +cD +hF +nd +Py +PF +ON +Td +Ou +Lr +Ou +Ou +Rk +kv +ZH +OS +gL +dA +LD +Zd +YG +YL +GH +vo +To +TG +Sm +pU +Yd +Gf +Gf +Gf +uo +BN +nq +nq +CP +SO +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(83,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +NL +se +yK +Wb +Wb +Jh +Jh +Yf +UC +TY +Og +FB +UC +JT +fl +Ae +Rm +WZ +CF +wt +eM +hP +fl +ZA +zm +GG +gR +mT +qs +RX +tn +Ok +KE +NJ +YF +JY +zK +RS +Hd +rM +Bq +Bq +zk +Hd +pJ +EX +Hd +IY +YX +JG +Xa +KY +jc +Bb +UH +hL +qf +oK +hQ +Ss +Vt +Kw +nd +XL +wO +XL +LI +QU +ZR +QT +QU +LI +HK +HK +II +HK +To +tB +Eg +qH +bM +Fd +jY +hs +nb +fA +xa +Ug +lm +WW +QE +cF +Jk +VJ +Dw +Wb +ZG +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(84,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Oh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +NL +NL +Wn +jx +NL +Wb +Wb +Wb +Yi +cB +UC +yM +Ly +NY +YM +fl +CV +Wm +tW +eY +tW +RK +ev +fl +vu +Xy +wv +ra +mT +mX +Ns +Ns +Zu +wJ +mT +cI +JY +GQ +SV +Zk +XM +HD +HD +Gt +Zk +SM +Hd +Hd +Ps +ba +dy +Xa +Xa +sq +sq +sq +Xa +qf +nd +nd +nd +nd +nd +nd +Xd +FQ +Ka +QU +Th +Ph +rq +GZ +LI +ai +MF +gT +Zf +To +xM +qz +Uz +vc +oV +Af +To +UU +TX +Qm +aO +Nq +Sm +SP +Nt +Lw +VJ +VJ +Wb +ZG +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(85,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +NL +NL +jx +NL +NL +Wb +Jh +Yi +Yi +IJ +Kx +Ez +gP +pR +fl +FR +Wm +HV +tJ +HV +RK +ev +fl +EZ +SL +wv +mF +mT +TB +Ns +Ns +pP +wJ +mT +cI +JY +Tg +Ot +Hd +Hd +ST +Po +Hd +Hd +SR +Hd +YW +rh +xX +Qd +Nx +CW +CW +CW +CW +CW +Yz +CW +cA +CW +zZ +CW +JF +rY +FQ +yx +QU +Nz +rq +iv +Ed +LI +fk +SW +AE +QQ +rw +jY +eQ +uU +fT +yw +iI +To +xq +oX +aW +Xz +Nq +Sm +SP +lk +Lw +nq +nq +Ds +kL +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(86,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +NL +lZ +dk +dk +Di +Jh +Jh +Yi +Yi +Yi +Yi +cQ +Yi +aN +xI +Wm +HV +eY +HV +RK +mG +fl +Wl +Xy +wv +NE +mT +Ma +Ns +Ns +Zu +wJ +mT +cI +JY +at +Yb +iQ +fe +KJ +KJ +fe +YB +un +Hd +KU +Xd +UA +wb +JW +Nd +Nd +mm +cS +cS +cS +cS +cS +TI +Co +Co +Co +Co +Gp +dE +QU +ns +rq +NZ +Ku +Re +OI +da +iw +pF +To +To +Vo +Vo +Vo +Vo +Vo +Vo +qr +nH +BB +tE +qP +Sm +mv +qW +Kr +NL +NL +ZG +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(87,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +NL +NL +NL +jx +NL +Jh +Jh +iQ +iQ +YZ +de +oG +aN +VU +yn +eM +rz +Rm +pV +ev +fl +OJ +Xy +wv +oT +mT +mQ +UN +UN +wy +wJ +mT +cI +JY +Ne +Ot +Bu +Ts +Ah +rD +Ts +XT +SR +Hd +us +aL +zS +Wy +xh +Mk +Mk +fs +Tk +yu +IX +Mk +Mk +LH +Mk +pm +Mk +Mk +lv +Aj +LI +Gz +Tc +uD +YR +LI +fm +Kv +dS +vb +Nm +OB +OF +Oq +rf +RG +lN +is +OF +vm +KB +gX +lK +JJ +PI +jA +Lw +nq +nq +CP +SO +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(88,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +NL +NL +ur +dk +dk +dk +dk +TV +TV +gk +oG +aN +md +iV +Tj +Cv +Kj +rI +Du +fl +rE +xK +aw +Dd +mT +KC +Bi +XD +jj +uy +uy +Cg +JY +gv +UJ +Bu +Ts +GN +pQ +Ts +XT +SR +Hd +Hd +Hd +Hd +Hd +Hd +Hd +Hd +Hd +Hd +Hd +Hd +Hd +Hd +vp +Hd +Hd +Hd +Hd +Hd +Hd +mO +bZ +rq +iS +Qk +LI +Be +mM +nx +fU +Mv +OZ +tg +xb +Sb +xz +Mg +qJ +tg +cf +TX +KN +jg +Zh +FV +lX +yA +VJ +Dw +Wb +ZG +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(89,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +NL +NL +NL +NL +Wb +Jh +Jh +Bu +Oo +Nb +aN +aN +aN +HW +HW +HW +sD +aN +aN +rx +Ey +sN +rx +JY +JY +AM +AM +JY +AM +AM +JY +JY +fd +Pi +iQ +Ts +TQ +bC +Ts +YB +Ir +Tv +Tv +Tv +ph +Tv +Tv +Tv +vQ +Tv +aI +qh +Ie +HS +am +Cc +aM +aM +FT +pj +Np +Np +yi +KW +nf +kh +JD +LI +qd +na +oY +rp +Fs +Ww +ka +RJ +ng +Pd +Ry +cL +Qz +tm +az +nO +nO +kT +nO +nO +nq +VJ +VJ +Wb +ZG +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(90,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +iQ +iQ +hb +ri +WO +WO +WO +WO +WO +WO +WO +FZ +WO +WO +ax +oG +oG +oG +oG +oG +oG +oG +oG +oG +yS +rl +ep +iQ +Ts +fc +pQ +Ts +YB +YB +PV +jB +pJ +Xp +Za +pJ +Jf +zW +qa +gd +mj +ha +Xr +tw +VX +gp +tp +PT +vt +jn +Wg +mO +mO +mO +oI +mO +mO +Mr +qr +ER +qr +qr +qr +qr +kf +Sb +uw +Sb +hX +OF +OF +lV +OF +il +Qt +on +SG +rT +rT +rT +Ds +kL +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(91,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +iQ +Bu +eA +iQ +iQ +Bu +Bu +Bu +iQ +iQ +eA +iQ +Bu +Bu +iQ +iQ +iQ +Bu +Bu +iQ +Bu +Bu +iQ +iQ +iQ +iQ +iQ +Ts +iL +YA +Ts +YB +YB +YB +YB +XT +XT +YB +YB +YB +YB +YB +xc +Fg +CU +El +Kz +PQ +LB +ZX +Nv +jT +jT +xc +tK +cm +pe +Yr +Hx +db +cc +HT +qV +Se +NM +qv +qr +vz +Qv +FF +rB +sw +OF +sm +bz +OF +Ql +zq +NC +NC +TD +Ja +rT +qi +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(92,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +jx +Wb +Jh +Jh +Jh +Jh +Jh +Wb +jx +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Wb +ZG +Jh +sM +Ea +CU +CU +CU +GR +Wb +Jh +NL +tK +zT +cm +Yr +AK +df +iG +HT +It +oP +QA +Xj +fZ +ZP +RV +zy +JE +Lp +OF +cN +Yq +OF +Ij +sl +Jg +Jg +AT +iK +rT +ZG +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(93,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +bD +yZ +NL +NL +Jh +Jh +Jh +Jh +NL +jx +NL +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +hz +Wb +xc +NA +xc +Jh +Wb +Wb +Jh +Jh +Jh +tK +el +el +tX +Os +dd +dd +WT +gE +qr +qr +qr +qr +bj +yj +za +yj +fN +OF +OF +Sw +OF +qX +eK +li +tC +vd +UV +Ra +ZG +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Oh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(94,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +lZ +dk +dk +dk +dk +dk +dk +hk +gi +Di +NL +NL +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Ds +kL +NL +NL +Cf +NL +NL +NL +NL +Jh +Jh +Wb +tK +tK +gS +wD +eh +DT +gU +lu +nM +qr +Vf +Vf +Xo +Vf +Vf +EP +Vf +Vf +Xo +pu +UE +OF +ow +ow +ow +Mh +vd +lw +Ra +ZG +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(95,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +NL +NL +NL +NL +NL +NL +Wn +NL +jx +NL +NL +NL +NL +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Ds +kL +yH +yH +yH +NL +yH +yH +yH +yH +yH +Wb +Wb +Wb +tK +tK +Li +cd +dl +oR +gV +oR +qr +Vf +Vf +ib +UF +lx +sQ +iR +UF +Vx +Vf +Gu +OF +MW +Cr +ow +qA +vd +bK +Ra +ZG +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(96,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +NL +NL +NL +NL +NL +NL +NL +jx +NL +NL +NL +NL +NL +NL +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Ds +Le +kL +wr +Uh +Uh +Uh +NL +Ig +Ig +Ig +Ig +BE +Wb +Wb +Jh +Jh +tK +sy +cp +px +px +Jb +JX +qr +Rs +Vf +EP +Bs +Vf +Vf +Vf +Bs +EP +Vf +mC +OF +gh +kH +Mz +Jg +pC +ks +rT +ZG +NL +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(97,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +NL +NL +NL +NL +NL +NL +lZ +dk +dk +dk +dk +dk +dk +dk +bw +Jh +Jh +Jh +Oh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +yy +uK +Go +Kh +yH +Cp +Cp +Cp +Cp +NL +Cp +Cp +Cp +Cp +Cp +NL +Jh +Jh +Jh +Jh +KX +MB +px +KI +Jb +Jb +qr +Gu +Vf +gW +Vf +Vf +Vf +Vf +Vf +gW +Vf +Gu +OF +XB +Tx +ow +AS +FN +rT +rT +ZG +NL +NL +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(98,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +NL +NL +NL +NL +ZG +iH +Uh +Uh +Uh +Uh +Uh +NL +MN +MN +MN +MN +sC +Ds +Le +Le +Le +Le +kL +Cl +bT +bT +bT +bT +MB +sY +Vf +EP +Vf +Vf +KM +Vf +Vf +EP +Vf +Ix +ni +Ra +Ra +rT +rT +rT +rT +NL +ZG +NL +NL +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(99,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +NL +NL +NL +NL +NL +NL +ZG +Mx +Mx +Mx +Mx +Mx +Mx +NL +Mx +Mx +Mx +Mx +Mx +ZG +NL +Wb +Wb +Wb +Wb +Wb +NL +NL +NL +tc +RY +Gu +Vf +Rb +Vf +Vf +Vf +Vf +Vf +Rb +Vf +Gu +ni +NL +NL +NL +NL +NL +NL +NL +ZG +NL +NL +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(100,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Pp +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +iU +Le +Le +Le +Le +Le +Uf +Le +cG +Le +SO +NL +NL +NL +NL +NL +NL +NL +NL +NL +Ds +Up +Le +Sj +Jh +Jh +Jh +Jh +Jh +NL +NL +NL +RY +Hf +Vf +Vf +Bs +Vf +Vf +Vf +Bs +Vf +Vf +mC +ni +NL +NL +NL +NL +NL +NL +NL +ZG +NL +NL +Jh +Jh +Pp +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(101,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +CP +Le +Le +Le +NU +Le +Le +Le +Le +Le +kL +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +NL +NL +RY +KP +MT +cr +cr +cr +cr +cr +cr +cr +MT +lA +ni +Wb +NL +NL +NL +NL +NL +NL +ZG +NL +NL +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(102,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +NL +RY +ni +ni +Hv +aQ +aQ +mr +aQ +aQ +jO +ni +ni +ni +Wb +Wb +NL +NL +NL +NL +NL +ZG +NL +NL +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(103,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Oh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jx +Le +Le +Le +Le +Le +Le +Le +Le +Le +Le +Le +lq +Le +Le +Le +Le +Le +Le +Le +Lg +Le +Le +SO +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(104,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +NL +NL +NL +NL +NL +AF +NL +NL +Jh +Jh +Jh +Jh +Jh +Jh +Jh +NL +AF +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(105,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(106,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(107,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Oh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(108,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(109,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(110,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(111,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(112,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(113,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(114,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(115,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Oh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Oh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(116,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(117,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +ob +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(118,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(119,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(120,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Oh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(121,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(122,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(123,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(124,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(125,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(126,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(127,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(128,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(129,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(130,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(131,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(132,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(133,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(134,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(135,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(136,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(137,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(138,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(139,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(140,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} diff --git a/maps/stellardelight/stellar_delight3.dmm b/maps/stellardelight/stellar_delight3.dmm new file mode 100644 index 0000000000..94b58cab54 --- /dev/null +++ b/maps/stellardelight/stellar_delight3.dmm @@ -0,0 +1,34308 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/obj/effect/landmark{ + name = "morphspawn" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/aftstarroom) +"ab" = ( +/obj/structure/railing/grey{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/stellardelight/deck3/commandhall) +"ac" = ( +/obj/effect/landmark{ + name = "morphspawn" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/stellardelight/deck3/forestarroomb) +"ad" = ( +/turf/simulated/wall/bay/r_wall/blue, +/area/tcommsat/chamber) +"ae" = ( +/obj/structure/railing/grey{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/stellardelight/deck3/commandhall) +"af" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck3/exterior) +"ag" = ( +/turf/simulated/floor/tiled/monotile, +/area/stellardelight/deck3/aft) +"ah" = ( +/obj/structure/sign/directions/stairs_down{ + pixel_x = 32; + pixel_y = 18 + }, +/obj/structure/sign/directions/medical{ + pixel_x = 32; + pixel_y = 12 + }, +/obj/structure/sign/directions/engineering{ + pixel_x = 32; + pixel_y = 6 + }, +/obj/structure/sign/directions/cargo{ + pixel_x = 32 + }, +/obj/structure/railing/grey{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/stellardelight/deck3/aft) +"ai" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/structure/low_wall/bay/reinforced/steel, +/turf/simulated/floor, +/area/stellardelight/deck3/portdock) +"aj" = ( +/turf/simulated/floor/carpet/turcarpet, +/area/ai) +"ak" = ( +/obj/structure/sign/directions/stairs_down{ + pixel_x = -32; + pixel_y = 18 + }, +/obj/structure/sign/directions/medical{ + pixel_x = -32; + pixel_y = 12 + }, +/obj/structure/sign/directions/engineering{ + pixel_x = -32; + pixel_y = 6 + }, +/obj/structure/sign/directions/cargo{ + pixel_x = -32 + }, +/obj/structure/railing/grey{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/stellardelight/deck3/aft) +"al" = ( +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/substation/command) +"am" = ( +/obj/machinery/door/airlock/angled_bay/hatch{ + dir = 4; + name = "maintenance access"; + stripe_color = "#454545" + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/maintenance/stellardelight/deck3/forestarrooma) +"an" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai_cyborg_station) +"ao" = ( +/obj/machinery/computer/HolodeckControl{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled, +/area/holodeck_control) +"at" = ( +/obj/structure/table/darkglass, +/turf/simulated/floor/tiled/dark, +/area/lawoffice) +"aw" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/aftstarroom) +"aA" = ( +/turf/simulated/wall/bay/r_wall/steel, +/area/stellardelight/deck3/transitgateway) +"aB" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/structure/low_wall/bay/reinforced/steel, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/starboardcent) +"aD" = ( +/obj/structure/table/steel, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/forestarrooma) +"aG" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/aft) +"aH" = ( +/obj/machinery/account_database{ + dir = 8 + }, +/obj/structure/sign/painting/library_secure{ + pixel_x = 30 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"aJ" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/structure/low_wall/bay/reinforced/steel, +/turf/simulated/floor, +/area/stellardelight/deck2/starboard) +"aK" = ( +/obj/structure/cable/blue{ + icon_state = "1-4" + }, +/obj/machinery/camera/network/command{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"aM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor, +/area/stellardelight/deck2/central) +"aN" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + icon_state = "1-2" + }, +/turf/simulated/open, +/area/stellardelight/deck2/starboard) +"aP" = ( +/obj/structure/bed/chair/shuttle{ + dir = 1 + }, +/obj/structure/closet/emergsuit_wall{ + dir = 1; + pixel_y = -32 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -28 + }, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "sdboat" + }, +/turf/simulated/floor/tiled, +/area/shuttle/sdboat/aft{ + base_turf = /turf/simulated/floor/reinforced/airless + }) +"aQ" = ( +/turf/simulated/floor/tiled/eris/dark/gray_platform, +/area/stellardelight/deck3/commandhall) +"aS" = ( +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/forestarrooma) +"aX" = ( +/obj/structure/sign/deck3{ + pixel_x = 32 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/aft) +"ba" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/landmark/vines, +/turf/simulated/open, +/area/stellardelight/deck2/fore) +"bb" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck3/transitgateway) +"bd" = ( +/obj/structure/closet, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/portaft) +"be" = ( +/obj/machinery/door/firedoor/glass/hidden/shuttle, +/obj/machinery/door/blast/shuttle/open{ + dir = 4; + id = "shuttleshutter" + }, +/obj/structure/window/fancy_shuttle{ + fancy_shuttle_tag = "sdboat" + }, +/turf/simulated/floor/reinforced/airless, +/area/shuttle/sdboat/fore{ + base_turf = /turf/simulated/floor/reinforced/airless + }) +"bg" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/angled_bay/standard/color{ + dir = 4; + door_color = "#323d80"; + fill_color = "#313866"; + id_tag = "hopdoor"; + name = "Head of Personnel"; + req_access = list(57); + stripe_color = "#a3d1d1" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/crew_quarters/heads/hop) +"bh" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/hatch{ + dir = 4; + door_color = "#e6ab22"; + name = "Command Substation"; + req_one_access = list(10); + stripe_color = "#e6ab22" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/maintenance/stellardelight/deck3/starboardfore) +"bj" = ( +/obj/structure/flora/pottedplant/stoutbush, +/turf/simulated/floor/tiled/dark, +/area/lawoffice) +"bl" = ( +/obj/structure/lattice, +/obj/structure/cable/green{ + icon_state = "32-2" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/open, +/area/maintenance/stellardelight/deck3/portcent) +"bm" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/substation/command) +"bn" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/open, +/area/stellardelight/deck2/fore) +"bp" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck3/exterior) +"br" = ( +/obj/structure/lattice, +/obj/structure/cable{ + icon_state = "32-2" + }, +/obj/structure/disposalpipe/down, +/obj/machinery/door/firedoor/glass, +/turf/simulated/open, +/area/maintenance/stellardelight/deck3/starboardcent) +"bs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai) +"bx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/carpet/purcarpet, +/area/crew_quarters/heads/hor) +"by" = ( +/turf/simulated/wall/bay/r_wall/steel, +/area/maintenance/stellardelight/deck3/starboardaft) +"bB" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/starboardcent) +"bC" = ( +/obj/structure/closet/crate, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance/medical, +/obj/random/maintenance/medical, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/portfore) +"bE" = ( +/turf/simulated/floor/glass/reinforced, +/area/stellardelight/deck3/commandhall) +"bI" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/blue{ + icon_state = "2-4" + }, +/turf/simulated/open, +/area/stellardelight/deck2/fore) +"bJ" = ( +/obj/structure/table/steel, +/obj/item/weapon/flame/candle, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/stellardelight/deck3/forestarrooma) +"bK" = ( +/obj/machinery/camera/network/command, +/turf/simulated/floor/bluegrid, +/area/ai) +"bL" = ( +/obj/machinery/media/jukebox/hacked, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai) +"bM" = ( +/obj/effect/floor_decal/emblem/nt1, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai_upload) +"bO" = ( +/obj/structure/table/darkglass, +/obj/item/weapon/clipboard, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/lawoffice) +"bP" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/portcent) +"bQ" = ( +/obj/structure/cable/blue{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai_cyborg_station) +"bS" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/starboardcent) +"bT" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor, +/area/stellardelight/deck2/central) +"bU" = ( +/turf/simulated/wall/bay{ + desc = "It has a blue stripe! A huge chunk of metal used to seperate rooms."; + stripe_color = "#2e2aa1" + }, +/area/stellardelight/deck3/commandhall) +"bV" = ( +/obj/machinery/alarm/angled, +/turf/simulated/open, +/area/crew_quarters/bar) +"bW" = ( +/obj/structure/table/standard, +/obj/item/toy/plushie/ipc/toaster, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/bluegrid, +/area/ai_cyborg_station) +"bY" = ( +/obj/structure/table/woodentable, +/obj/machinery/door/blast/shutters{ + dir = 4; + id = "cafe"; + layer = 3.1; + name = "Cafe Shutters" + }, +/turf/simulated/floor/lino, +/area/stellardelight/deck3/cafe) +"bZ" = ( +/obj/machinery/ntnet_relay, +/turf/simulated/floor/tiled/dark{ + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"ca" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/landmark/vines, +/turf/simulated/open, +/area/crew_quarters/bar) +"cb" = ( +/turf/simulated/wall/bay/r_wall/blue, +/area/crew_quarters/heads/chief) +"cc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tcommsat/computer) +"ch" = ( +/obj/machinery/vending/wardrobe/mimedrobe, +/turf/simulated/floor/carpet/bcarpet, +/area/stellardelight/deck3/clownmimeoffice) +"ci" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/blue{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/angled_bay/secure{ + dir = 4; + name = "Robotic Storage"; + req_access = list(16) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/ai_cyborg_station) +"ck" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/sign/painting/public{ + pixel_y = 30 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/aft) +"cm" = ( +/obj/machinery/exonet_node{ + anchored = 1 + }, +/turf/simulated/floor/tiled/dark{ + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"cn" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "sdboat" + }, +/turf/simulated/floor/tiled, +/area/shuttle/sdboat/aft{ + base_turf = /turf/simulated/floor/reinforced/airless + }) +"cp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/light/small, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/portaft) +"cq" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/aft) +"cs" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/simulated/floor/glass/reinforced, +/area/stellardelight/deck3/aft) +"ct" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/blue{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/angled_bay/secure{ + dir = 4; + name = "AI Storage"; + req_access = list(16) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/ai_cyborg_station) +"cu" = ( +/obj/structure/sign/directions/evac{ + pixel_x = -32 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/structure/flora/pottedplant/smalltree, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/aft) +"cw" = ( +/obj/structure/cable/blue{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai_upload) +"cx" = ( +/obj/machinery/computer/timeclock/premade/north, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/aft) +"cy" = ( +/obj/machinery/recharge_station, +/obj/structure/closet/emergsuit_wall{ + pixel_y = 29 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/starboarddock) +"cz" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/simulated/wall/bay/r_wall/blue, +/area/ai_cyborg_station) +"cA" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/machinery/light, +/turf/simulated/floor/glass/reinforced, +/area/stellardelight/deck3/aft) +"cH" = ( +/obj/machinery/power/apc/angled{ + dir = 8; + name = "night shift APC"; + nightshift_setting = 2 + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/foreportroomb) +"cI" = ( +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck3/cryo) +"cK" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/portfore) +"cL" = ( +/obj/structure/cable/blue{ + icon_state = "1-2" + }, +/obj/structure/cable/blue{ + icon_state = "2-4" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/starboardfore) +"cO" = ( +/obj/machinery/holoplant, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/status_display{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tcommsat/computer) +"cP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"cS" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/portcent) +"cW" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + 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/bluegrid{ + name = "Mainframe Base"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"cY" = ( +/obj/machinery/telecomms/broadcaster/preset_right/sd, +/turf/simulated/floor/tiled/dark{ + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"cZ" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/foreportrooma) +"db" = ( +/obj/structure/lattice, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/open, +/area/stellardelight/deck2/starboard) +"df" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/starboarddock) +"dh" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck3/exterior) +"dj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 1; + pixel_y = 1 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/aft) +"dk" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4; + frequency = 1379; + id_tag = "starmaint_airpump" + }, +/obj/machinery/camera/network/civilian, +/turf/simulated/floor/airless, +/area/maintenance/stellardelight/deck3/starboardcent) +"dn" = ( +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai_server_room) +"do" = ( +/obj/machinery/papershredder, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"dr" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/aft) +"du" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/hatch{ + dir = 4; + name = "maintenance access"; + stripe_color = "#454545" + }, +/obj/structure/cable/blue{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/maintenance/stellardelight/deck3/forestarrooma) +"dw" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/portdock) +"dx" = ( +/turf/simulated/wall/bay/steel, +/area/maintenance/stellardelight/deck3/forestarroomb) +"dy" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/cable/blue{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tcommsat/computer) +"dB" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck3/exterior) +"dD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hos) +"dE" = ( +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/portaft) +"dF" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/emblem/nt1, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/aft) +"dH" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/hos) +"dL" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/table/steel, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/stellardelight/deck3/foreportroomb) +"dM" = ( +/obj/structure/closet/firecloset, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/portaft) +"dN" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/angled_bay/hatch{ + name = "maintenance access"; + stripe_color = "#454545" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/crew_quarters/bar) +"dQ" = ( +/obj/machinery/door/firedoor/glass/hidden/shuttle, +/obj/machinery/door/blast/shuttle/open{ + id = "shuttleshutter" + }, +/obj/structure/window/fancy_shuttle{ + fancy_shuttle_tag = "sdboat" + }, +/turf/simulated/floor/reinforced/airless, +/area/shuttle/sdboat/aft{ + base_turf = /turf/simulated/floor/reinforced/airless + }) +"dS" = ( +/obj/machinery/camera/network/command{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/ai) +"dT" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/open, +/area/stellardelight/deck2/port) +"dU" = ( +/turf/simulated/wall/bay/blue, +/area/lawoffice) +"dV" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/obj/machinery/holoplant, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tcommsat/computer) +"dY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hos) +"dZ" = ( +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24; + pixel_y = 24 + }, +/turf/simulated/floor/tiled/dark, +/area/lawoffice) +"ea" = ( +/obj/structure/table/bench/padded, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood, +/area/stellardelight/deck3/cafe) +"eb" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4; + frequency = 1379; + id_tag = "starmaint_airpump" + }, +/turf/simulated/floor/airless, +/area/maintenance/stellardelight/deck3/starboardcent) +"ed" = ( +/obj/structure/closet, +/obj/random/firstaid, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/portaft) +"eg" = ( +/obj/machinery/porta_turret/ai_defense, +/obj/structure/cable/blue{ + icon_state = "1-2" + }, +/turf/simulated/floor/bluegrid, +/area/ai) +"eh" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/portcent) +"ei" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/stellardelight/deck3/aft) +"ej" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/structure/closet/emergsuit_wall{ + pixel_y = 29 + }, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck3/transitgateway) +"ek" = ( +/obj/machinery/camera/network/halls{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/portdock) +"el" = ( +/obj/machinery/pda_multicaster/prebuilt, +/turf/simulated/floor/tiled/dark{ + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"em" = ( +/obj/structure/cable/blue{ + icon_state = "4-8" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/forestarrooma) +"en" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/aft) +"eo" = ( +/obj/machinery/power/apc/angled{ + dir = 4 + }, +/obj/structure/cable/blue{ + icon_state = "0-2" + }, +/turf/simulated/floor/bluegrid{ + name = "Mainframe Base"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"ep" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/simulated/floor, +/area/ai_cyborg_station) +"et" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/light/small, +/turf/simulated/floor/airless, +/area/stellardelight/deck3/portdock) +"eu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/bluegrid, +/area/ai) +"ev" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/blue{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/angled_bay/standard/color{ + dir = 4; + door_color = "#323d80"; + fill_color = "#313866"; + id_tag = "rddoor"; + name = "Research Director"; + req_access = list(30); + stripe_color = "#5a19a8" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/crew_quarters/heads/hor) +"ew" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck3/exterior) +"ex" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/starboarddock) +"ey" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/stellardelight/deck3/foreportroomb) +"ez" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/double{ + name = "maintenance access"; + stripe_color = "#454545" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/starboardfore) +"eC" = ( +/obj/machinery/telecomms/receiver/preset_right/sd, +/turf/simulated/floor/tiled/dark{ + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"eD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"eE" = ( +/obj/machinery/alarm/angled{ + dir = 4 + }, +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/random/drinkbottle, +/obj/random/snack, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/forestarroomb) +"eF" = ( +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/random/maintenance/engineering, +/obj/random/maintenance/medical, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/portfore) +"eI" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/wall/bay/r_wall/steel, +/area/crew_quarters/bar) +"eJ" = ( +/turf/simulated/wall/fancy_shuttle/nondense{ + fancy_shuttle_tag = "sdboat" + }, +/area/shuttle/sdboat/fore{ + base_turf = /turf/simulated/floor/reinforced/airless + }) +"eK" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + external_pressure_bound = 0; + external_pressure_bound_default = 0; + icon_state = "map_vent_in"; + initialize_directions = 1; + internal_pressure_bound = 4000; + internal_pressure_bound_default = 4000; + pressure_checks = 2; + pressure_checks_default = 2; + pump_direction = 0; + use_power = 1 + }, +/turf/simulated/floor/bluegrid{ + name = "Mainframe Base"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"eL" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/camera/network/command{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark/gray_platform, +/area/stellardelight/deck3/commandhall) +"eN" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/aft) +"eP" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/standard/color/common{ + dir = 4; + name = "Holodeck" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/holodeck_control) +"eQ" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/open, +/area/stellardelight/deck2/starboard) +"eR" = ( +/obj/structure/table/steel, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/stellardelight/deck3/forestarrooma) +"eS" = ( +/obj/structure/cable/blue{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai_cyborg_station) +"eU" = ( +/obj/structure/table/woodentable, +/obj/machinery/door/blast/shutters{ + dir = 2; + id = "cafe"; + layer = 3.1; + name = "Cafe Shutters" + }, +/turf/simulated/floor/lino, +/area/stellardelight/deck3/cafe) +"eV" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/open, +/area/crew_quarters/bar) +"eX" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck3/exterior) +"eY" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/open, +/area/stellardelight/deck2/starboard) +"fa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/carpet/oracarpet, +/area/crew_quarters/heads/chief) +"fb" = ( +/obj/structure/cable/blue{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai_server_room) +"fd" = ( +/obj/item/weapon/reagent_containers/food/drinks/cup{ + pixel_x = 8; + pixel_y = 8 + }, +/obj/item/weapon/reagent_containers/food/drinks/cup{ + pixel_x = -4; + pixel_y = 8 + }, +/obj/item/weapon/reagent_containers/food/drinks/cup{ + pixel_x = 8; + pixel_y = -4 + }, +/obj/item/weapon/reagent_containers/food/drinks/cup{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/item/weapon/reagent_containers/food/drinks/cup{ + pixel_x = 8 + }, +/obj/item/weapon/reagent_containers/food/drinks/cup{ + pixel_x = -4 + }, +/obj/item/weapon/reagent_containers/food/drinks/cup{ + pixel_x = 8; + pixel_y = 12 + }, +/obj/item/weapon/reagent_containers/food/drinks/cup{ + pixel_x = -4; + pixel_y = 12 + }, +/obj/structure/table/woodentable, +/obj/item/weapon/hand_labeler, +/obj/machinery/alarm/angled, +/obj/machinery/status_display{ + pixel_x = -32 + }, +/turf/simulated/floor/lino, +/area/stellardelight/deck3/cafe) +"ff" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/hatch{ + dir = 4; + name = "maintenance access"; + stripe_color = "#454545" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/maintenance/stellardelight/deck3/starboardaft) +"fg" = ( +/obj/structure/handrail{ + dir = 1 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -28 + }, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "sdboat" + }, +/turf/simulated/floor/tiled, +/area/shuttle/sdboat/aft{ + base_turf = /turf/simulated/floor/reinforced/airless + }) +"fh" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/stellardelight/deck3/foreportroomb) +"fj" = ( +/obj/structure/table/woodentable, +/obj/item/toy/figure/clown, +/obj/item/weapon/pen/crayon/marker/rainbow, +/obj/item/weapon/pen/crayon/rainbow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/carpet/gaycarpet, +/area/stellardelight/deck3/clownmimeoffice) +"fk" = ( +/obj/machinery/telecomms/server/presets/common, +/turf/simulated/floor/tiled/dark{ + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"fs" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/wall/bay/r_wall/steel, +/area/crew_quarters/bar) +"fv" = ( +/obj/machinery/holoplant, +/obj/machinery/power/apc/angled{ + dir = 4 + }, +/obj/structure/cable/blue{ + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai_upload) +"fz" = ( +/obj/effect/floor_decal/techfloor/orange, +/obj/effect/landmark{ + name = "JoinLateGateway" + }, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck3/transitgateway) +"fD" = ( +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/random/maintenance/engineering, +/obj/random/maintenance/engineering, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/forestarroomb) +"fE" = ( +/obj/structure/lattice, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/open, +/area/stellardelight/deck2/starboard) +"fG" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/portcent) +"fM" = ( +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable, +/turf/simulated/floor, +/area/ai_cyborg_station) +"fO" = ( +/obj/structure/cable/blue{ + icon_state = "2-4" + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"fP" = ( +/obj/machinery/space_heater, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/portaft) +"fS" = ( +/turf/simulated/wall/bay/steel, +/area/crew_quarters/heads/hop) +"fT" = ( +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -24; + pixel_y = 24 + }, +/turf/simulated/floor/tiled/dark, +/area/lawoffice) +"fW" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/starboarddock) +"gb" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/folder/red_hos, +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hos) +"gc" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4; + frequency = 1379; + id_tag = "portmaint_airpump" + }, +/turf/simulated/floor/airless, +/area/maintenance/stellardelight/deck3/portcent) +"gg" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/open, +/area/crew_quarters/bar) +"gh" = ( +/obj/machinery/telecomms/server/presets/command, +/turf/simulated/floor/tiled/dark{ + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"gi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/turf/simulated/wall/fancy_shuttle{ + fancy_shuttle_tag = "sdboat" + }, +/area/shuttle/sdboat/aft{ + base_turf = /turf/simulated/floor/reinforced/airless + }) +"gj" = ( +/obj/structure/table/rack/shelf, +/obj/item/weapon/disk/nifsoft/compliance, +/obj/random/contraband, +/obj/random/contraband, +/obj/random/contraband, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/snack, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/stellardelight/deck3/foreportroomb) +"gk" = ( +/obj/structure/table/woodentable, +/obj/item/device/paicard, +/turf/simulated/floor/wood, +/area/stellardelight/deck3/cafe) +"gl" = ( +/obj/structure/bed/chair/shuttle{ + dir = 1 + }, +/obj/structure/closet/emergsuit_wall{ + pixel_y = 32 + }, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "sdboat" + }, +/turf/simulated/floor/tiled, +/area/shuttle/sdboat/aft{ + base_turf = /turf/simulated/floor/reinforced/airless + }) +"gm" = ( +/obj/structure/lattice, +/obj/structure/cable/blue{ + icon_state = "4-8" + }, +/turf/simulated/open, +/area/stellardelight/deck2/fore) +"gq" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/structure/closet/hydrant{ + pixel_y = 28 + }, +/turf/simulated/floor/lino, +/area/stellardelight/deck3/cafe) +"gs" = ( +/obj/machinery/requests_console/preset/rd{ + pixel_x = 30 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/crew_quarters/heads/hor) +"gw" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck3/exterior) +"gy" = ( +/obj/structure/closet/secure_closet/engineering_chief, +/obj/item/device/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/item/device/retail_scanner/engineering, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/chief) +"gA" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/portcent) +"gB" = ( +/obj/machinery/power/pointdefense{ + id_tag = "sd_pd" + }, +/obj/effect/floor_decal/industrial/warning/full, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck3/exterior) +"gE" = ( +/obj/structure/table/darkglass, +/obj/item/weapon/stamp/denied{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/weapon/stamp/internalaffairs, +/turf/simulated/floor/tiled/dark, +/area/lawoffice) +"gG" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/open, +/area/stellardelight/deck2/fore) +"gH" = ( +/turf/simulated/floor, +/area/ai_cyborg_station) +"gJ" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck3/exterior) +"gL" = ( +/obj/item/weapon/bedsheet/hosdouble, +/obj/structure/bed/double/padded, +/obj/structure/curtain/black{ + color = "#631915" + }, +/obj/effect/landmark/start/hos, +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hos) +"gM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 1 + }, +/turf/simulated/wall/bay/r_wall/steel, +/area/stellardelight/deck3/aft) +"gN" = ( +/obj/structure/cable/blue{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai) +"gO" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable/blue{ + icon_state = "4-8" + }, +/turf/simulated/open, +/area/stellardelight/deck2/fore) +"gQ" = ( +/obj/machinery/power/smes/buildable{ + charge = 5e+006; + input_attempt = 1; + input_level = 200000; + output_level = 200000 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/cable/cyan{ + icon_state = "0-4" + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/bluegrid, +/area/ai) +"gR" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 6 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck3/transitgateway) +"gS" = ( +/obj/structure/cable/cyan{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai) +"gU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 5 + }, +/turf/simulated/floor/bluegrid{ + name = "Mainframe Base"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"gV" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/double/glass{ + name = "glass airlock" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck3/aft) +"gW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 10 + }, +/turf/simulated/floor/bluegrid{ + name = "Mainframe Base"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"hb" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/stellardelight/deck3/cafe) +"hc" = ( +/obj/machinery/requests_console/preset/hos{ + pixel_x = -30 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hos) +"hd" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/portaft) +"he" = ( +/obj/machinery/button/remote/airlock{ + id = "readingroom1"; + name = "Room 1 Lock"; + pixel_y = 24; + specialfunctions = 4 + }, +/obj/machinery/button/remote/blast_door{ + id = "readingroom1"; + name = "Window Lockdown"; + pixel_x = -10; + pixel_y = 24 + }, +/turf/simulated/floor/carpet, +/area/stellardelight/deck3/readingroom) +"hf" = ( +/obj/structure/sign/warning/docking_area{ + pixel_x = -32 + }, +/turf/simulated/floor/reinforced/airless, +/area/stellardelight/deck3/exterior) +"hg" = ( +/obj/effect/fancy_shuttle/sd_shuttle{ + dir = 1; + fancy_shuttle_tag = "sdboat" + }, +/obj/effect/fancy_shuttle_floor_preview/sd_shuttle{ + dir = 1 + }, +/turf/simulated/wall/fancy_shuttle{ + fancy_shuttle_tag = "sdboat" + }, +/area/shuttle/sdboat/aft{ + base_turf = /turf/simulated/floor/reinforced/airless + }) +"hj" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/stellardelight/deck3/foreportroomb) +"hk" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/sign/warning/docking_area{ + pixel_y = 32 + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck3/exterior) +"hp" = ( +/obj/structure/table/glass, +/obj/machinery/computer/med_data/laptop{ + dir = 4; + pixel_y = 6 + }, +/turf/simulated/floor/carpet/tealcarpet, +/area/crew_quarters/heads/cmo) +"hr" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/substation/command) +"ht" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai_upload) +"hu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/lawoffice) +"hw" = ( +/obj/machinery/telecomms/processor/preset_one, +/turf/simulated/floor/tiled/dark{ + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"hy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/airless, +/area/maintenance/stellardelight/deck3/starboardcent) +"hz" = ( +/obj/structure/cable/blue{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/stellardelight/deck3/forestarroomb) +"hB" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/starboardcent) +"hC" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/open, +/area/stellardelight/deck2/fore) +"hD" = ( +/turf/simulated/wall/bay/r_wall/steel, +/area/maintenance/stellardelight/deck3/foreportrooma) +"hE" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/starboardcent) +"hF" = ( +/obj/machinery/holoplant, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/bluegrid, +/area/ai_cyborg_station) +"hG" = ( +/obj/structure/sign/poster{ + dir = 4 + }, +/turf/simulated/floor, +/area/stellardelight/deck2/port) +"hK" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai_upload) +"hN" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/low_wall/bay/reinforced/steel, +/turf/simulated/floor, +/area/stellardelight/deck3/portdock) +"hO" = ( +/obj/machinery/power/breakerbox/activated{ + RCon_tag = "Command Substation Bypass" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/substation/command) +"hP" = ( +/obj/structure/lattice, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/open, +/area/stellardelight/deck2/starboard) +"hQ" = ( +/turf/simulated/wall/bay/r_wall/steel, +/area/maintenance/stellardelight/deck3/aftstarroom) +"hR" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "sdboat" + }, +/turf/simulated/floor/tiled, +/area/shuttle/sdboat/aft{ + base_turf = /turf/simulated/floor/reinforced/airless + }) +"hT" = ( +/obj/structure/cable/blue{ + icon_state = "4-8" + }, +/turf/simulated/wall/bay/r_wall/steel, +/area/maintenance/stellardelight/deck3/starboardfore) +"hU" = ( +/obj/structure/sign/painting/library_secure{ + pixel_x = 30 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/crew_quarters/heads/hor) +"hX" = ( +/turf/simulated/floor/carpet/oracarpet, +/area/crew_quarters/heads/chief) +"hY" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor, +/area/stellardelight/deck2/port) +"hZ" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/structure/sign/vacuum{ + pixel_x = 32; + plane = -34 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/starboarddock) +"ib" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 9 + }, +/turf/simulated/floor/bluegrid{ + name = "Mainframe Base"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"if" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/starboardaft) +"ii" = ( +/turf/simulated/floor, +/area/maintenance/stellardelight/substation/command) +"ij" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"il" = ( +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/foreportrooma) +"im" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/aft) +"in" = ( +/turf/simulated/wall/bay/r_wall/blue, +/area/crew_quarters/heads/hop) +"ip" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/carpet/gaycarpet, +/area/stellardelight/deck3/clownmimeoffice) +"ir" = ( +/obj/structure/cable/blue{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/stellardelight/deck3/forestarroomb) +"is" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/secure{ + name = "AI/Telecoms"; + req_access = list(16) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_ridged, +/area/ai_upload) +"iv" = ( +/obj/machinery/alarm/angled{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/starboardaft) +"iw" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "sdboat" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/shuttle/sdboat/aft{ + base_turf = /turf/simulated/floor/reinforced/airless + }) +"iy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/stellardelight/deck3/commandhall) +"iz" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/bed/chair/sofa/corp/right{ + dir = 4 + }, +/obj/effect/landmark{ + name = "morphspawn" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/portfore) +"iC" = ( +/obj/structure/cryofeed{ + dir = 4 + }, +/obj/effect/floor_decal/corner_techfloor_grid{ + dir = 5 + }, +/obj/effect/floor_decal/corner_techfloor_grid{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck3/cryo) +"iE" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/hatch{ + door_color = "#e6ab22"; + name = "Shield Generator"; + req_access = null; + req_one_access = list(11,24); + stripe_color = "#e6ab22" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck3/commandhall) +"iI" = ( +/obj/structure/cable/blue{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/closet/emergsuit_wall{ + dir = 4; + pixel_x = 27 + }, +/turf/simulated/floor/tiled/eris/dark/gray_platform, +/area/stellardelight/deck3/commandhall) +"iJ" = ( +/obj/machinery/cryopod/robot, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/bluegrid, +/area/ai_cyborg_station) +"iK" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/cable/blue{ + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai) +"iL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tcommsat/computer) +"iN" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/open, +/area/crew_quarters/bar) +"iP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"iQ" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/open, +/area/stellardelight/deck2/fore) +"iR" = ( +/obj/structure/cable/cyan{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai) +"iS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/starboardaft) +"iV" = ( +/obj/structure/railing/grey{ + dir = 4 + }, +/turf/simulated/open, +/area/stellardelight/deck3/commandhall) +"iW" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/aft) +"iY" = ( +/obj/machinery/power/pointdefense{ + id_tag = "sd_pd" + }, +/obj/effect/floor_decal/industrial/warning/full, +/obj/structure/cable/blue, +/turf/simulated/floor/airless, +/area/stellardelight/deck3/exterior) +"iZ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/light/small, +/turf/simulated/floor/airless, +/area/stellardelight/deck3/starboarddock) +"ja" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/open, +/area/crew_quarters/bar) +"jc" = ( +/obj/machinery/computer/ship/sensors/adv, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "sdboat" + }, +/turf/simulated/floor/tiled, +/area/shuttle/sdboat/fore{ + base_turf = /turf/simulated/floor/reinforced/airless + }) +"jd" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/transitgateway) +"jg" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/structure/low_wall/bay/reinforced/steel, +/turf/simulated/floor, +/area/stellardelight/deck3/starboarddock) +"jh" = ( +/obj/structure/closet/secure_closet/hop2, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Bridge"; + departmentType = 5; + name = "Bridge RC"; + pixel_x = 30 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"jl" = ( +/obj/item/weapon/book/manual/command_guide, +/obj/item/weapon/book/manual/command_guide, +/obj/item/weapon/book/manual/standard_operating_procedure, +/obj/item/weapon/book/manual/standard_operating_procedure, +/obj/item/weapon/book/manual/security_space_law, +/obj/item/weapon/book/manual/security_space_law, +/obj/structure/closet/walllocker_double/east, +/turf/simulated/floor/tiled/dark, +/area/lawoffice) +"jm" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/table/woodentable, +/obj/machinery/door/blast/shutters{ + dir = 2; + id = "cafe"; + layer = 3.1; + name = "Cafe Shutters" + }, +/turf/simulated/floor/lino, +/area/stellardelight/deck3/cafe) +"jn" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/blue{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/angled_bay/standard/color{ + dir = 4; + door_color = "#323d80"; + fill_color = "#858585"; + id_tag = "cedoor"; + name = "Chief Engineer"; + req_access = list(56); + stripe_color = "#e6ab22" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/crew_quarters/heads/chief) +"jp" = ( +/obj/structure/closet, +/obj/random/contraband, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance/cargo, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/aftstarroom) +"jy" = ( +/obj/structure/window/bay/reinforced, +/obj/structure/low_wall/bay/reinforced/steel, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/angled/open{ + dir = 4; + id = "clownmimeoffice" + }, +/turf/simulated/floor, +/area/stellardelight/deck3/clownmimeoffice) +"jC" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/open, +/area/crew_quarters/bar) +"jD" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/hopdouble, +/obj/structure/curtain/black, +/obj/machinery/newscaster{ + pixel_y = 28 + }, +/obj/effect/landmark/start/hop, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"jE" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/bluegrid{ + name = "Mainframe Base"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"jK" = ( +/obj/machinery/alarm/angled{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark/gray_platform, +/area/stellardelight/deck3/commandhall) +"jL" = ( +/obj/structure/lattice, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/open, +/area/stellardelight/deck2/port) +"jM" = ( +/obj/item/modular_computer/console/preset/command, +/obj/structure/sign/poster{ + dir = 4 + }, +/obj/machinery/newscaster{ + pixel_y = 28 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/heads/hor) +"jO" = ( +/obj/machinery/station_map{ + dir = 4; + pixel_x = -32 + }, +/turf/simulated/floor/tiled/eris/dark/gray_platform, +/area/stellardelight/deck3/commandhall) +"jP" = ( +/obj/machinery/alarm/angled, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/aft) +"jT" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/open, +/area/stellardelight/deck2/port) +"jV" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/portdock) +"jY" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/open, +/area/stellardelight/deck2/central) +"ka" = ( +/obj/structure/table/darkglass, +/obj/item/weapon/storage/briefcase{ + pixel_x = -2; + pixel_y = -5 + }, +/turf/simulated/floor/tiled/dark, +/area/lawoffice) +"kb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/obj/structure/cable/blue{ + icon_state = "4-8" + }, +/turf/simulated/floor/bluegrid{ + name = "Mainframe Base"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"kc" = ( +/obj/machinery/telecomms/server/presets/medical, +/turf/simulated/floor/tiled/dark{ + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"ki" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/structure/low_wall/bay/reinforced/steel, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/portaft) +"kj" = ( +/obj/structure/lattice, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/open, +/area/stellardelight/deck2/starboard) +"kk" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck3/exterior) +"kl" = ( +/obj/machinery/keycard_auth{ + pixel_y = 28 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/alarm/angled{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/chief) +"ko" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck3/exterior) +"kp" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/alarm/angled, +/turf/simulated/floor, +/area/maintenance/stellardelight/substation/command) +"kr" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/aft) +"ks" = ( +/obj/machinery/telecomms/server/presets/security, +/turf/simulated/floor/tiled/dark{ + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"kt" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/stellardelight/deck3/aft) +"ku" = ( +/obj/structure/barricade/cutout/mime, +/turf/simulated/floor/carpet/bcarpet, +/area/stellardelight/deck3/clownmimeoffice) +"kw" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/bluegrid{ + name = "Mainframe Base"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"ky" = ( +/obj/structure/closet/walllocker_double/north, +/obj/item/device/megaphone, +/obj/item/weapon/book/manual/standard_operating_procedure, +/obj/item/weapon/book/manual/command_guide, +/obj/structure/table/reinforced, +/obj/item/weapon/folder/red, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hop) +"kz" = ( +/obj/machinery/airlock_sensor/airlock_exterior/shuttle{ + dir = 6; + pixel_x = 7; + pixel_y = 26 + }, +/obj/effect/map_helper/airlock/sensor/ext_sensor, +/obj/effect/map_helper/airlock/door/ext_door, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_external, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "sdboat" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/shuttle/sdboat/aft{ + base_turf = /turf/simulated/floor/reinforced/airless + }) +"kB" = ( +/obj/machinery/porta_turret/ai_defense, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/bluegrid, +/area/ai) +"kF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tcommsat/computer) +"kN" = ( +/obj/structure/sign/painting/library_secure{ + pixel_x = 30 + }, +/obj/structure/closet/secure_closet/hop, +/obj/item/clothing/glasses/omnihud, +/obj/item/weapon/paper/dockingcodes/sd, +/obj/item/device/retail_scanner/command, +/obj/item/weapon/storage/box/PDAs, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"kO" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor, +/area/stellardelight/deck2/fore) +"kP" = ( +/turf/simulated/wall/bay/r_wall/steel, +/area/maintenance/stellardelight/deck3/portfore) +"kQ" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/wall/bay/r_wall/steel, +/area/maintenance/stellardelight/deck3/foreportrooma) +"kT" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"kU" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/open, +/area/crew_quarters/bar) +"kV" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/stellardelight/deck3/foreportroomb) +"kW" = ( +/obj/machinery/camera/network/halls{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/starboarddock) +"kX" = ( +/obj/structure/cable/blue{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai_cyborg_station) +"kY" = ( +/obj/effect/floor_decal/techfloor{ + dir = 10 + }, +/obj/effect/landmark{ + name = "JoinLateCryo" + }, +/obj/machinery/camera/network/civilian{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck3/cryo) +"kZ" = ( +/obj/structure/handrail{ + dir = 1 + }, +/obj/machinery/airlock_sensor{ + dir = 8; + pixel_x = 29; + pixel_y = 2 + }, +/obj/effect/map_helper/airlock/sensor/int_sensor, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "sdboat" + }, +/turf/simulated/floor/tiled, +/area/shuttle/sdboat/aft{ + base_turf = /turf/simulated/floor/reinforced/airless + }) +"la" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/shuttles, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/portdock) +"lc" = ( +/obj/structure/fuel_port{ + dir = 8; + pixel_x = -32 + }, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "sdboat" + }, +/obj/machinery/atmospherics/binary/pump/fuel{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/shuttle/sdboat/aft{ + base_turf = /turf/simulated/floor/reinforced/airless + }) +"le" = ( +/obj/structure/railing/grey{ + dir = 8 + }, +/obj/structure/railing/grey, +/turf/simulated/open, +/area/maintenance/stellardelight/deck3/starboardaft) +"lh" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/hatch{ + dir = 4; + name = "maintenance access"; + stripe_color = "#454545" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/maintenance/stellardelight/deck3/foreportroomb) +"li" = ( +/obj/machinery/telecomms/hub/preset/sd, +/turf/simulated/floor/tiled/dark{ + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"lj" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/open, +/area/stellardelight/deck2/fore) +"lk" = ( +/obj/structure/filingcabinet/medical, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/eris/white/cargo, +/area/crew_quarters/heads/cmo) +"lm" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/aft) +"lo" = ( +/obj/machinery/telecomms/server/presets/engineering, +/turf/simulated/floor/tiled/dark{ + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"lq" = ( +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/aftstarroom) +"lt" = ( +/obj/structure/bed/chair, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/structure/sign/poster{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/aft) +"lu" = ( +/obj/machinery/camera/network/command, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai_cyborg_station) +"lv" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/aft) +"lw" = ( +/obj/machinery/telecomms/server/presets/science, +/turf/simulated/floor/tiled/dark{ + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"lx" = ( +/obj/machinery/telecomms/processor/preset_two, +/turf/simulated/floor/tiled/dark{ + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"lA" = ( +/obj/structure/table/rack, +/obj/random/contraband, +/obj/random/maintenance, +/obj/random/maintenance/engineering, +/obj/random/maintenance/engineering, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/stellardelight/deck3/forestarroomb) +"lB" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "sdboat" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/shuttle/sdboat/aft{ + base_turf = /turf/simulated/floor/reinforced/airless + }) +"lC" = ( +/obj/machinery/power/apc/angled{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/starboarddock) +"lD" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/landmark/start/bartender, +/turf/simulated/floor/lino, +/area/stellardelight/deck3/cafe) +"lE" = ( +/obj/machinery/telecomms/bus/preset_two/sd, +/turf/simulated/floor/tiled/dark{ + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"lF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/starboardaft) +"lH" = ( +/obj/machinery/telecomms/server/presets/service/sd, +/turf/simulated/floor/tiled/dark{ + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"lJ" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/aft) +"lL" = ( +/obj/structure/cable/blue{ + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai_cyborg_station) +"lP" = ( +/obj/structure/table/woodentable, +/obj/item/device/radio/intercom{ + dir = 4; + name = "Station Intercom (General)"; + pixel_x = 24 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/ai) +"lQ" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai) +"lT" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/alarm/angled{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck3/transitgateway) +"lU" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/standard/color{ + dir = 4; + door_color = "#9c9c9c"; + fill_color = "#5c5c5c"; + id_tag = "readingroom1"; + name = "Room 1"; + stripe_color = "#89bd66" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck3/readingroom) +"lV" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/stellardelight/deck3/clownmimeoffice) +"lY" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/open, +/area/stellardelight/deck2/central) +"ma" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/external/glass{ + dir = 4; + frequency = 1379; + id_tag = "portmaint_exterior"; + locked = 1; + name = "Exterior Airlock" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/maintenance/stellardelight/deck3/portcent) +"mb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/portdock) +"md" = ( +/obj/machinery/button/remote/airlock{ + id = "readingroom3"; + name = "Room 3 Lock"; + pixel_y = 24; + specialfunctions = 4 + }, +/obj/machinery/button/remote/blast_door{ + id = "readingroom3"; + name = "Window Lockdown"; + pixel_x = -10; + pixel_y = 24 + }, +/turf/simulated/floor/carpet, +/area/stellardelight/deck3/readingroom) +"me" = ( +/turf/simulated/wall/bay/r_wall/steel, +/area/maintenance/stellardelight/deck3/starboardcent) +"mf" = ( +/obj/effect/shuttle_landmark/premade/sd/deck3/portairlock, +/turf/space, +/area/space) +"mg" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/open, +/area/stellardelight/deck2/central) +"mh" = ( +/obj/structure/table/steel_reinforced, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 1; + pixel_y = 1 + }, +/obj/structure/closet/emergsuit_wall{ + dir = 1; + pixel_y = -32 + }, +/obj/machinery/alarm{ + pixel_y = 28 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "sdboat" + }, +/turf/simulated/floor/tiled, +/area/shuttle/sdboat/fore{ + base_turf = /turf/simulated/floor/reinforced/airless + }) +"mi" = ( +/obj/machinery/shipsensors/fancy_shuttle, +/turf/simulated/wall/fancy_shuttle/nondense{ + fancy_shuttle_tag = "sdboat" + }, +/area/shuttle/sdboat/fore{ + base_turf = /turf/simulated/floor/reinforced/airless + }) +"mj" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + icon_state = "4-8" + }, +/turf/simulated/open, +/area/stellardelight/deck2/fore) +"mm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor, +/area/stellardelight/deck2/fore) +"mn" = ( +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/obj/effect/landmark{ + name = "JoinLateCryo" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck3/cryo) +"mo" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck3/starboarddock) +"mp" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable/blue{ + icon_state = "4-8" + }, +/turf/simulated/open, +/area/stellardelight/deck2/fore) +"mq" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/machinery/alarm/angled{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/starboarddock) +"mr" = ( +/obj/structure/table/bench/padded, +/obj/effect/landmark/start/visitor, +/turf/simulated/floor/wood, +/area/stellardelight/deck3/cafe) +"ms" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/portfore) +"mv" = ( +/obj/effect/map_helper/airlock/atmos/pump_out_external, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1; + frequency = 1380; + id_tag = "sdboat_docker_pump_out_external" + }, +/turf/simulated/wall/fancy_shuttle/low{ + fancy_shuttle_tag = "sdboat" + }, +/area/shuttle/sdboat/aft{ + base_turf = /turf/simulated/floor/reinforced/airless + }) +"mA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/bluegrid, +/area/ai) +"mC" = ( +/obj/machinery/telecomms/server/presets/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/black, +/turf/simulated/floor/tiled/dark{ + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"mD" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/photocopier/faxmachine{ + department = "Head of Security" + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/hos) +"mF" = ( +/turf/simulated/floor/carpet/bcarpet, +/area/stellardelight/deck3/clownmimeoffice) +"mI" = ( +/obj/structure/cable/blue{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -24; + pixel_y = 24 + }, +/turf/simulated/floor/tiled/eris/white/cargo, +/area/crew_quarters/heads/cmo) +"mK" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/starboardaft) +"mM" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck3/exterior) +"mO" = ( +/obj/structure/table/alien{ + name = "fancy table" + }, +/obj/machinery/computer/skills{ + dir = 4; + pixel_y = 6 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/crew_quarters/heads/hor) +"mQ" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/structure/low_wall/bay/reinforced/steel, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/portfore) +"mR" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/forestarrooma) +"mS" = ( +/obj/structure/lattice, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/open, +/area/stellardelight/deck2/starboard) +"mT" = ( +/obj/machinery/space_heater, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/starboardcent) +"mX" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/portdock) +"na" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + icon_state = "4-8" + }, +/turf/simulated/floor, +/area/stellardelight/deck2/fore) +"nd" = ( +/obj/structure/cable/blue{ + icon_state = "4-8" + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai) +"ne" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/open, +/area/stellardelight/deck2/fore) +"nf" = ( +/obj/structure/cable/blue{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/external/glass{ + dir = 4; + frequency = 1379; + id_tag = "starmaint_exterior"; + locked = 1; + name = "Exterior Airlock" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/maintenance/stellardelight/deck3/starboardcent) +"nh" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck3/exterior) +"nj" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/angled_bay/hatch{ + dir = 4; + name = "maintenance access"; + stripe_color = "#454545" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck3/cafe) +"nk" = ( +/obj/machinery/light, +/obj/structure/table/bench/padded, +/obj/effect/landmark/start/visitor, +/turf/simulated/floor/wood, +/area/stellardelight/deck3/cafe) +"nm" = ( +/obj/machinery/telecomms/server/presets/unused, +/turf/simulated/floor/tiled/dark{ + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"np" = ( +/obj/structure/cable/blue{ + icon_state = "1-2" + }, +/obj/machinery/camera/network/command{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai) +"nr" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 5 + }, +/obj/structure/closet/emergsuit_wall{ + pixel_y = 29 + }, +/obj/structure/closet/emergsuit_wall{ + dir = 4; + pixel_x = 27 + }, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck3/transitgateway) +"ns" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/carpet/oracarpet, +/area/crew_quarters/heads/chief) +"nt" = ( +/obj/machinery/status_display{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled/monotile, +/area/stellardelight/deck3/commandhall) +"nu" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + icon_state = "4-8" + }, +/obj/machinery/alarm/angled{ + dir = 8 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/starboardcent) +"nv" = ( +/obj/item/weapon/reagent_containers/glass/bucket/wood, +/obj/structure/closet/crate, +/obj/item/weapon/material/minihoe, +/obj/item/seeds/reishimycelium, +/obj/item/seeds/random, +/obj/item/seeds/random, +/obj/item/seeds/random, +/obj/item/seeds/random, +/obj/item/seeds/random, +/obj/item/seeds/ambrosiavulgarisseed, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/stellardelight/deck3/foreportroomb) +"nw" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/double{ + dir = 8; + name = "maintenance access"; + stripe_color = "#454545" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/portcent) +"nx" = ( +/turf/simulated/open, +/area/stellardelight/deck2/central) +"nz" = ( +/obj/machinery/camera/network/civilian{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/stellardelight/deck3/cafe) +"nB" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/external/glass{ + dir = 4; + frequency = 1380; + id_tag = null; + locked = 1; + name = "Docking Port Airlock" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/effect/map_helper/airlock/door/int_door, +/obj/machinery/access_button{ + command = "cycle_interior"; + dir = 4; + frequency = 1380; + master_tag = "sd_escape_starboard"; + pixel_y = 32; + req_one_access = list(13) + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck3/starboarddock) +"nC" = ( +/obj/machinery/telecomms/bus/preset_four, +/turf/simulated/floor/tiled/dark{ + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"nD" = ( +/obj/machinery/power/apc/angled{ + dir = 4; + name = "night shift APC"; + nightshift_setting = 2 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/table/rack, +/obj/random/contraband, +/obj/random/maintenance/clean, +/obj/random/maintenance, +/obj/random/maintenance/engineering, +/obj/random/maintenance/engineering, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/starboardaft) +"nF" = ( +/obj/structure/table/woodentable, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/wood, +/area/stellardelight/deck3/cafe) +"nH" = ( +/obj/structure/table/steel_reinforced, +/obj/item/device/flashlight/lamp/green{ + pixel_x = -4; + pixel_y = 12 + }, +/obj/item/weapon/stamp/hos, +/obj/item/weapon/book/manual/sd_guide, +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hos) +"nL" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/machinery/item_bank{ + dir = 4; + pixel_x = -26 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/aft) +"nM" = ( +/obj/structure/cable/blue{ + icon_state = "1-2" + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai) +"nN" = ( +/obj/machinery/cryopod/robot, +/turf/simulated/floor/bluegrid, +/area/ai_cyborg_station) +"nO" = ( +/obj/structure/closet/crate, +/obj/random/contraband, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/foreportrooma) +"nP" = ( +/turf/simulated/wall/bay/purple, +/area/crew_quarters/heads/hor) +"nS" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai_server_room) +"nT" = ( +/obj/machinery/smartfridge/drinks, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/aftstarroom) +"nV" = ( +/obj/structure/table/rack, +/obj/random/contraband, +/obj/random/maintenance, +/obj/random/maintenance, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/portaft) +"nW" = ( +/turf/simulated/wall/bay/steel, +/area/stellardelight/deck3/cafe) +"nX" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/stellardelight/deck3/foreportroomb) +"nZ" = ( +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 2 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/aft) +"ob" = ( +/obj/structure/lattice, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/open, +/area/stellardelight/deck2/port) +"od" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1379; + id_tag = "starmaint_airpump" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/airless, +/area/maintenance/stellardelight/deck3/starboardcent) +"og" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/stellardelight/deck3/foreportrooma) +"ok" = ( +/obj/structure/lattice, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/open, +/area/stellardelight/deck2/starboard) +"ol" = ( +/obj/structure/table/alien{ + name = "fancy table" + }, +/obj/item/weapon/stamp/rd, +/obj/item/weapon/book/manual/sd_guide, +/turf/simulated/floor/carpet/purcarpet, +/area/crew_quarters/heads/hor) +"op" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/portcent) +"oq" = ( +/obj/effect/landmark/arrivals, +/turf/simulated/floor/glass/reinforced, +/area/stellardelight/deck3/aft) +"os" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/obj/machinery/door/airlock/angled_bay/external/glass{ + frequency = 1380; + id_tag = null; + locked = 1; + name = "Docking Port Airlock" + }, +/obj/effect/map_helper/airlock/door/int_door, +/obj/machinery/access_button{ + command = "cycle_interior"; + dir = 1; + frequency = 1380; + master_tag = "sd_escape_center_right"; + pixel_x = 32; + req_one_access = list(13) + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck3/aft) +"ou" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1; + frequency = 1380; + id_tag = null + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{ + dir = 8; + frequency = 1380; + id_tag = "sd_escape_center_right"; + master_tag = "escape_dock"; + pixel_x = 24; + req_one_access = list(13); + tag_airpump = null; + tag_chamber_sensor = null; + tag_exterior_door = null; + tag_interior_door = null + }, +/obj/machinery/airlock_sensor{ + dir = 4; + frequency = 1380; + id_tag = null; + pixel_x = -25 + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/aft) +"ov" = ( +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/forestarroomb) +"ow" = ( +/turf/simulated/open, +/area/stellardelight/deck2/starboard) +"oy" = ( +/obj/machinery/door/firedoor/glass/hidden/steel, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/aft) +"oA" = ( +/obj/machinery/telecomms/processor/preset_four, +/turf/simulated/floor/tiled/dark{ + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"oC" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/starboardcent) +"oD" = ( +/obj/item/modular_computer/console/preset/command, +/obj/structure/sign/poster{ + dir = 4 + }, +/obj/machinery/newscaster{ + pixel_y = 28 + }, +/turf/simulated/floor/tiled/eris/white/cargo, +/area/crew_quarters/heads/cmo) +"oE" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/wood, +/area/stellardelight/deck3/readingroom) +"oI" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/zpipe/down/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/open, +/area/maintenance/stellardelight/deck3/portcent) +"oM" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/portaft) +"oN" = ( +/obj/machinery/teleport/hub{ + dir = 2 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai_cyborg_station) +"oO" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck3/portdock) +"oP" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/open, +/area/crew_quarters/bar) +"oR" = ( +/obj/machinery/newscaster/security_unit{ + pixel_x = -32; + pixel_y = 32 + }, +/obj/item/device/radio/intercom/locked/ai_private{ + dir = 4; + pixel_x = 32 + }, +/obj/item/device/radio/intercom{ + broadcasting = 1; + dir = 8; + name = "Common Channel"; + pixel_x = -21 + }, +/obj/item/device/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/obj/machinery/requests_console/preset/ai{ + pixel_x = 32; + pixel_y = 32 + }, +/obj/effect/landmark/start/ai, +/turf/simulated/floor/bluegrid, +/area/ai) +"oS" = ( +/obj/structure/cryofeed, +/obj/effect/floor_decal/corner_techfloor_grid{ + dir = 5 + }, +/obj/effect/floor_decal/corner_techfloor_grid{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck3/cryo) +"oT" = ( +/obj/structure/cable/blue{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai_cyborg_station) +"oU" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/starboarddock) +"oV" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/camera/network/halls{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/aft) +"oW" = ( +/turf/simulated/open, +/area/stellardelight/deck2/port) +"oX" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + icon_state = "1-2" + }, +/turf/simulated/open, +/area/stellardelight/deck2/fore) +"oY" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/blue{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/angled_bay/hatch{ + name = "Telecoms Control Room"; + req_access = list(61) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_ridged, +/area/tcommsat/computer) +"oZ" = ( +/turf/simulated/wall/bay/steel, +/area/stellardelight/deck3/readingroom) +"pb" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/aft) +"pc" = ( +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/aft) +"pd" = ( +/obj/machinery/power/apc/angled{ + dir = 8 + }, +/obj/structure/cable/blue{ + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/eris/white/cargo, +/area/crew_quarters/heads/cmo) +"pf" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/portfore) +"pk" = ( +/obj/structure/table/steel, +/obj/random/drinkbottle, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/stellardelight/deck3/foreportrooma) +"pl" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/starboarddock) +"pm" = ( +/obj/structure/table/darkglass, +/obj/item/device/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 24 + }, +/obj/item/device/flashlight/lamp/green{ + pixel_x = -5; + pixel_y = -5 + }, +/obj/item/weapon/paper_bin, +/obj/item/weapon/pen/blade/red{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/weapon/pen, +/obj/item/weapon/pen/blue{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/lawoffice) +"po" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/flora/pottedplant/decorative, +/turf/simulated/floor/tiled/eris/dark/gray_platform, +/area/stellardelight/deck3/commandhall) +"pp" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/stellardelight/deck3/cafe) +"pq" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/forestarrooma) +"pt" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/starboardcent) +"px" = ( +/obj/machinery/telecomms/processor/preset_three, +/turf/simulated/floor/tiled/dark{ + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"pz" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/hatch{ + name = "maintenance access"; + stripe_color = "#454545" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/maintenance/stellardelight/deck3/aftstarroom) +"pA" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/cosmosdouble{ + icon_state = "dobulesheetcosmos" + }, +/obj/machinery/camera/network/command, +/turf/simulated/floor/carpet/turcarpet, +/area/ai) +"pB" = ( +/obj/structure/bed/chair, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 24 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/aft) +"pC" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 1 + }, +/obj/structure/sign/warning/evac{ + pixel_x = 32 + }, +/obj/effect/landmark{ + name = "lightsout" + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/portdock) +"pE" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/stellardelight/deck3/forestarrooma) +"pG" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/shuttles/right, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/starboarddock) +"pK" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/aft) +"pL" = ( +/obj/structure/table/steel, +/obj/random/snack, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/forestarrooma) +"pN" = ( +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/foreportroomb) +"pO" = ( +/obj/machinery/power/apc/angled{ + dir = 4 + }, +/obj/structure/cable/blue{ + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/hos) +"pS" = ( +/obj/structure/cable/blue{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/alarm/angled{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai_cyborg_station) +"pT" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck3/exterior) +"pV" = ( +/obj/machinery/keycard_auth{ + pixel_y = 28 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/alarm/angled{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/heads/hor) +"pW" = ( +/obj/structure/cable/blue{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tcommsat/computer) +"pX" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/angled_bay/hatch{ + door_color = "#323d80"; + name = "maintenance access"; + req_one_access = list(16); + stripe_color = "#323d80" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/ai_cyborg_station) +"pY" = ( +/obj/machinery/telecomms/bus/preset_three, +/turf/simulated/floor/tiled/dark{ + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"qb" = ( +/obj/machinery/power/pointdefense{ + id_tag = "sd_pd" + }, +/obj/effect/floor_decal/industrial/warning/full, +/obj/structure/cable/blue{ + icon_state = "0-2" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck3/exterior) +"qc" = ( +/obj/structure/table/bench/padded, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/stellardelight/deck3/cafe) +"qd" = ( +/obj/effect/landmark{ + name = "JoinLateCyborg" + }, +/obj/effect/landmark/start/cyborg, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai_cyborg_station) +"qe" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/external/glass{ + dir = 4; + frequency = 1380; + id_tag = null; + locked = 1; + name = "Docking Port Airlock" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/effect/map_helper/airlock/door/int_door, +/obj/machinery/access_button{ + command = "cycle_interior"; + dir = 8; + frequency = 1380; + master_tag = "sd_escape_port"; + pixel_y = 32; + req_one_access = list(13) + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck3/portdock) +"qf" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/starboardcent) +"qg" = ( +/obj/structure/table/glass, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/random/contraband, +/obj/random/snack, +/turf/simulated/floor/wood, +/area/stellardelight/deck3/readingroom) +"qi" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/open, +/area/stellardelight/deck2/fore) +"qn" = ( +/obj/machinery/porta_turret/stationary, +/turf/simulated/floor/bluegrid{ + name = "Mainframe Base"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"qp" = ( +/turf/simulated/open, +/area/crew_quarters/bar) +"qq" = ( +/turf/simulated/wall/bay/r_wall/blue, +/area/tcommsat/computer) +"qs" = ( +/obj/structure/table/rack, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/random/maintenance/security, +/obj/random/maintenance/security, +/obj/random/maintenance/security, +/obj/random/drinkbottle, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/forestarrooma) +"qv" = ( +/obj/structure/cable/cyan{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/angled_bay/hatch{ + dir = 4; + door_color = "#323d80"; + id_tag = "AICore"; + id_tint = null; + locked = 1; + name = "AI Core"; + req_one_access = list(16); + stripe_color = "#323d80" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/ai) +"qx" = ( +/obj/structure/table/glass, +/turf/simulated/floor/wood, +/area/stellardelight/deck3/readingroom) +"qy" = ( +/obj/structure/cable/blue{ + icon_state = "4-8" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck3/exterior) +"qz" = ( +/turf/simulated/floor/reinforced{ + name = "Holodeck Projector Floor" + }, +/area/holodeck/alphadeck) +"qA" = ( +/obj/machinery/turretid/stun{ + check_synth = 1; + control_area = /area/ai; + name = "AI Chamber turret control"; + pixel_x = -30; + pixel_y = -24 + }, +/obj/machinery/flasher{ + id = "AI"; + pixel_x = -24; + pixel_y = 25 + }, +/obj/machinery/hologram/holopad, +/obj/structure/cable/cyan{ + icon_state = "2-8" + }, +/turf/simulated/floor/bluegrid, +/area/ai) +"qC" = ( +/obj/structure/table/glass, +/turf/simulated/floor/carpet, +/area/stellardelight/deck3/readingroom) +"qE" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck3/starboarddock) +"qF" = ( +/turf/simulated/open, +/area/stellardelight/deck2/fore) +"qK" = ( +/obj/effect/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai_cyborg_station) +"qL" = ( +/obj/structure/sign/warning/docking_area{ + pixel_x = 32 + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck3/exterior) +"qM" = ( +/obj/structure/table/steel, +/obj/random/firstaid, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/foreportrooma) +"qN" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/aft) +"qO" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/blue{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/angled_bay/hatch{ + door_color = "#323d80"; + name = "maintenance access"; + req_one_access = list(16); + stripe_color = "#323d80" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/ai_cyborg_station) +"qP" = ( +/obj/structure/lattice, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/open, +/area/stellardelight/deck2/port) +"qQ" = ( +/obj/machinery/porta_turret/stationary, +/obj/structure/cable/blue{ + icon_state = "2-4" + }, +/turf/simulated/floor/bluegrid{ + name = "Mainframe Base"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"qS" = ( +/obj/machinery/light/small, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/starboardaft) +"qU" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/cable/blue{ + icon_state = "1-8" + }, +/turf/simulated/floor/bluegrid{ + name = "Mainframe Base"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"qW" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/hatch{ + dir = 4; + name = "maintenance access"; + stripe_color = "#454545" + }, +/obj/structure/cable/blue{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/maintenance/stellardelight/deck3/forestarroomb) +"qX" = ( +/obj/random/vendorfood, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/aft) +"qY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/alarm/angled{ + dir = 4 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/starboardaft) +"qZ" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/machinery/power/apc/angled{ + dir = 4 + }, +/obj/structure/cable/blue{ + icon_state = "0-8" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"rb" = ( +/obj/effect/floor_decal/emblem/nt3, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai_upload) +"rc" = ( +/turf/simulated/wall/bay/r_wall/blue, +/area/stellardelight/deck3/commandhall) +"rg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/wood, +/area/stellardelight/deck3/cafe) +"rh" = ( +/obj/machinery/cryopod{ + dir = 4 + }, +/obj/effect/floor_decal/corner_techfloor_grid{ + dir = 10 + }, +/obj/effect/floor_decal/corner_techfloor_grid{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck3/cryo) +"ri" = ( +/obj/structure/handrail, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "sdboat" + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/shuttle/sdboat/aft{ + base_turf = /turf/simulated/floor/reinforced/airless + }) +"rj" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/foreportroomb) +"rl" = ( +/obj/structure/sign/painting/library_secure{ + pixel_x = -30 + }, +/turf/simulated/floor/tiled/dark, +/area/lawoffice) +"rm" = ( +/obj/effect/floor_decal/techfloor{ + dir = 5 + }, +/obj/effect/landmark{ + name = "JoinLateCryo" + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/computer/cryopod{ + pixel_x = 32; + pixel_y = 32 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 24 + }, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck3/cryo) +"rn" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck3/transitgateway) +"rp" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1379; + master_tag = "portmaint_airlock"; + name = "interior access button"; + pixel_x = 32; + req_access = null; + req_one_access = list(13) + }, +/obj/machinery/door/airlock/angled_bay/external/glass{ + frequency = 1379; + id_tag = "portmaint_interior"; + locked = 1; + name = "Exterior Airlock" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/maintenance/stellardelight/deck3/portcent) +"rq" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/aftstarroom) +"rr" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4; + frequency = 1380; + id_tag = null + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{ + frequency = 1380; + id_tag = "sd_escape_starboard"; + master_tag = "escape_dock"; + pixel_y = 30; + req_one_access = list(13); + tag_airpump = null; + tag_chamber_sensor = null; + tag_exterior_door = null; + tag_interior_door = null + }, +/obj/machinery/airlock_sensor{ + frequency = 1380; + id_tag = null; + pixel_y = -25 + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/starboarddock) +"rs" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/black{ + dir = 1 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/bluegrid{ + name = "Mainframe Base"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"rw" = ( +/obj/structure/closet/walllocker_double/west, +/obj/item/weapon/book/manual/command_guide, +/obj/item/weapon/book/manual/command_guide, +/obj/item/weapon/book/manual/standard_operating_procedure, +/obj/item/weapon/book/manual/standard_operating_procedure, +/obj/item/weapon/book/manual/security_space_law, +/obj/item/weapon/book/manual/security_space_law, +/turf/simulated/floor/tiled/dark, +/area/lawoffice) +"rx" = ( +/turf/simulated/wall/bay/white, +/area/crew_quarters/heads/cmo) +"rA" = ( +/obj/structure/table/reinforced, +/obj/machinery/computer/skills, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"rB" = ( +/obj/machinery/door/airlock/angled_bay/hatch{ + dir = 4; + door_color = "#323d80"; + id_tag = "AICore"; + id_tint = null; + locked = 1; + name = "AI Core"; + req_one_access = list(16); + stripe_color = "#323d80" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/ai) +"rH" = ( +/obj/structure/lattice, +/obj/structure/cable/blue{ + icon_state = "32-8" + }, +/obj/structure/disposalpipe/down{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/zpipe/down/supply, +/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers, +/obj/machinery/door/firedoor/glass, +/turf/simulated/open, +/area/maintenance/stellardelight/deck3/starboardcent) +"rL" = ( +/turf/simulated/floor/lino, +/area/stellardelight/deck3/cafe) +"rN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/bluegrid, +/area/ai) +"rS" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/open, +/area/stellardelight/deck2/port) +"rX" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "sdboat" + }, +/turf/simulated/floor/tiled, +/area/shuttle/sdboat/aft{ + base_turf = /turf/simulated/floor/reinforced/airless + }) +"rZ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai) +"sa" = ( +/obj/effect/map_helper/airlock/door/int_door, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_external, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "sdboat" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/shuttle/sdboat/aft{ + base_turf = /turf/simulated/floor/reinforced/airless + }) +"sb" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/blue{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/angled_bay/secure{ + name = "AI Storage"; + req_access = list(16) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_ridged, +/area/ai_cyborg_station) +"sc" = ( +/turf/simulated/wall/bay/r_wall/blue, +/area/ai) +"sd" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + icon_state = "1-2" + }, +/turf/simulated/open, +/area/stellardelight/deck2/fore) +"sf" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/dark/gray_platform, +/area/stellardelight/deck3/commandhall) +"si" = ( +/obj/structure/table/woodentable, +/obj/machinery/chemical_dispenser/bar_coffee/full{ + pixel_y = 8 + }, +/obj/structure/sign/painting/library_secure{ + pixel_y = 30 + }, +/turf/simulated/floor/lino, +/area/stellardelight/deck3/cafe) +"sj" = ( +/obj/machinery/power/apc/angled{ + dir = 4; + name = "night shift APC"; + nightshift_setting = 2 + }, +/obj/structure/closet, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/structure/cable/blue{ + icon_state = "0-2" + }, +/obj/random/snack, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/forestarrooma) +"sl" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 8; + 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/bluegrid{ + name = "Mainframe Base"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"sn" = ( +/obj/structure/lattice, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/open, +/area/stellardelight/deck2/starboard) +"sr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai) +"ss" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/external/glass{ + dir = 4; + frequency = 1380; + id_tag = null; + locked = 1; + name = "Docking Port Airlock" + }, +/obj/effect/map_helper/airlock/door/int_door, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/access_button{ + command = "cycle_interior"; + dir = 4; + frequency = 1380; + master_tag = "sd_port_landing"; + pixel_y = 32; + req_one_access = list(13) + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck3/portdock) +"st" = ( +/obj/structure/bed/chair/sofa/corp/right{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/mob/living/simple_mob/animal/passive/fox/syndicate/aipet, +/turf/simulated/floor/carpet/turcarpet, +/area/ai) +"su" = ( +/obj/machinery/power/apc/angled{ + dir = 8 + }, +/obj/structure/cable/blue{ + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tcommsat/computer) +"sx" = ( +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor, +/area/stellardelight/deck2/central) +"sz" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/hatch{ + dir = 4; + door_color = "#e6ab22"; + name = "Shield Generator"; + req_access = null; + req_one_access = list(11,24); + stripe_color = "#e6ab22" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck2/central) +"sA" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/crew_quarters/heads/hor) +"sC" = ( +/obj/machinery/computer/mecha{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/heads/hor) +"sE" = ( +/obj/effect/shuttle_landmark/premade/sd/deck3/starboardlanding, +/turf/space, +/area/space) +"sI" = ( +/obj/structure/table/standard, +/obj/item/device/paicard, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/bluegrid, +/area/ai_cyborg_station) +"sJ" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/open, +/area/stellardelight/deck2/fore) +"sK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/turf/simulated/floor/bluegrid{ + name = "Mainframe Base"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"sM" = ( +/turf/simulated/floor/reinforced/airless, +/area/stellardelight/deck3/exterior) +"sN" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/portcent) +"sO" = ( +/turf/simulated/floor, +/area/stellardelight/deck2/fore) +"sP" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/starboarddock) +"sQ" = ( +/obj/structure/table/standard, +/obj/item/weapon/aiModule/reset, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -28 + }, +/obj/structure/sign/warning/secure_area{ + pixel_y = 32 + }, +/turf/simulated/floor/bluegrid, +/area/ai_cyborg_station) +"sR" = ( +/obj/structure/cable/blue{ + icon_state = "4-8" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/forestarroomb) +"sU" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/aft) +"sX" = ( +/obj/structure/closet/crate, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance/security, +/obj/random/maintenance/security, +/obj/random/drinkbottle, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/portfore) +"sZ" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/wall/bay/r_wall/blue, +/area/maintenance/stellardelight/deck3/portaft) +"tb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/starboarddock) +"tc" = ( +/obj/structure/cable/blue{ + icon_state = "1-4" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/starboardfore) +"tg" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/aft) +"th" = ( +/turf/simulated/wall/bay/r_wall/blue, +/area/ai_cyborg_station) +"tk" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/starboardaft) +"tn" = ( +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/ai) +"tp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/random/trash_pile, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/portcent) +"tq" = ( +/obj/machinery/camera/network/command{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai) +"tu" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/closet/crate, +/obj/random/contraband, +/obj/random/maintenance, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/aftstarroom) +"ty" = ( +/obj/machinery/computer/teleporter, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai_cyborg_station) +"tz" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/bluegrid, +/area/ai_upload) +"tC" = ( +/obj/structure/sign/vacuum, +/turf/simulated/wall/bay/r_wall/steel, +/area/maintenance/stellardelight/deck3/starboardcent) +"tF" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/frame, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/stellardelight/deck3/forestarrooma) +"tG" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/aft) +"tH" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/transitgateway) +"tJ" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/flora/pottedplant/decorative, +/turf/simulated/floor/tiled/eris/dark/gray_platform, +/area/stellardelight/deck3/commandhall) +"tK" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck3/exterior) +"tL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/obj/structure/cable/blue{ + icon_state = "1-8" + }, +/turf/simulated/floor/bluegrid{ + name = "Mainframe Base"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"tO" = ( +/obj/structure/table/steel_reinforced, +/obj/item/device/taperecorder{ + pixel_x = 10 + }, +/obj/item/weapon/reagent_containers/food/drinks/flask/barflask{ + pixel_x = -9; + pixel_y = -2 + }, +/obj/item/device/radio/off, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/hos) +"tQ" = ( +/obj/structure/table/standard, +/obj/item/weapon/aiModule/freeform, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/bluegrid, +/area/ai_cyborg_station) +"tR" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/external/glass{ + dir = 4; + frequency = 1380; + id_tag = null; + locked = 1; + name = "Docking Port Airlock" + }, +/obj/effect/map_helper/airlock/door/ext_door, +/obj/machinery/access_button{ + command = "cycle_exterior"; + dir = 4; + frequency = 1380; + master_tag = "sd_escape_port"; + pixel_y = 32; + req_one_access = list(13) + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck3/portdock) +"tT" = ( +/obj/structure/cable/blue{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/eris/dark/gray_platform, +/area/stellardelight/deck3/commandhall) +"tV" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/open, +/area/stellardelight/deck2/fore) +"tW" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock{ + start_pressure = 4559.63 + }, +/turf/simulated/floor, +/area/tcommsat/computer) +"tX" = ( +/obj/structure/bed/chair/sofa/corp/left{ + dir = 8 + }, +/turf/simulated/floor/bluegrid, +/area/ai) +"tZ" = ( +/turf/simulated/floor/carpet/purcarpet, +/area/crew_quarters/heads/hor) +"ub" = ( +/obj/item/modular_computer/console/preset/command, +/obj/structure/sign/poster{ + dir = 8 + }, +/obj/machinery/newscaster/security_unit{ + pixel_y = 28 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/hos) +"uc" = ( +/obj/machinery/teleport/station{ + dir = 2 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai_cyborg_station) +"uf" = ( +/obj/structure/lattice, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/open, +/area/stellardelight/deck2/port) +"ui" = ( +/obj/machinery/portable_atmospherics/canister/phoron, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "sdboat" + }, +/obj/machinery/atmospherics/portables_connector/fuel{ + dir = 1 + }, +/obj/machinery/door/window/southleft{ + dir = 1; + req_one_access = list(11,67) + }, +/turf/simulated/floor/tiled, +/area/shuttle/sdboat/aft{ + base_turf = /turf/simulated/floor/reinforced/airless + }) +"uj" = ( +/turf/simulated/wall/bay/r_wall/blue, +/area/crew_quarters/heads/hor) +"uk" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -24 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/portdock) +"ul" = ( +/obj/structure/cable/blue{ + icon_state = "2-8" + }, +/obj/structure/cable/blue{ + icon_state = "1-2" + }, +/obj/structure/cable/blue{ + icon_state = "1-8" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/starboardfore) +"un" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck3/exterior) +"uq" = ( +/turf/simulated/wall/bay/r_wall/steel, +/area/stellardelight/deck3/starboarddock) +"ur" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/wall/bay/r_wall/steel, +/area/maintenance/stellardelight/deck3/starboardaft) +"us" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/bluegrid, +/area/ai) +"ut" = ( +/obj/structure/cable/blue{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/starboardcent) +"uv" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/black, +/obj/structure/cable/blue{ + icon_state = "2-4" + }, +/turf/simulated/floor/bluegrid{ + name = "Mainframe Base"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"uw" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/obj/structure/cable/blue{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tcommsat/computer) +"uz" = ( +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/obj/effect/landmark{ + name = "JoinLateCryo" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck3/cryo) +"uB" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/machinery/atmospherics/pipe/simple/hidden/black, +/obj/structure/low_wall/bay/reinforced/blue, +/turf/simulated/floor, +/area/tcommsat/computer) +"uD" = ( +/obj/structure/closet/firecloset, +/obj/random/maintenance, +/obj/random/maintenance/cargo, +/obj/random/maintenance/clean, +/obj/random/drinkbottle, +/obj/random/drinkbottle, +/obj/random/drinkbottle, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/aftstarroom) +"uE" = ( +/obj/structure/table/rack, +/obj/random/contraband, +/obj/random/maintenance, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/forestarroomb) +"uH" = ( +/obj/structure/cable/blue{ + icon_state = "2-8" + }, +/obj/structure/cable/blue{ + icon_state = "4-8" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck3/exterior) +"uI" = ( +/obj/structure/cable/blue{ + icon_state = "1-4" + }, +/turf/simulated/floor/bluegrid, +/area/ai) +"uJ" = ( +/obj/structure/closet/firecloset, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/portcent) +"uM" = ( +/obj/machinery/alarm/angled, +/obj/structure/table/woodentable, +/obj/item/device/flashlight/lamp/clown{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/weapon/bikehorn{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/weapon/stamp/clown{ + pixel_x = 6; + pixel_y = 9 + }, +/turf/simulated/floor/wood, +/area/stellardelight/deck3/clownmimeoffice) +"uQ" = ( +/obj/machinery/alarm/angled{ + dir = 8 + }, +/obj/machinery/computer/shuttle_control/explore/sdboat{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai_server_room) +"uT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/blue{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/ai_cyborg_station) +"uU" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/standard/color{ + dir = 4; + door_color = "#9c9c9c"; + fill_color = "#5c5c5c"; + id_tag = "readingroom3"; + name = "Room 3"; + stripe_color = "#89bd66" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck3/readingroom) +"uV" = ( +/obj/machinery/computer/robotics{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/heads/hor) +"uW" = ( +/obj/effect/floor_decal/corner_techfloor_grid{ + dir = 5 + }, +/obj/effect/floor_decal/corner_techfloor_grid{ + dir = 10 + }, +/obj/machinery/light/floortube{ + dir = 4; + pixel_x = 2 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck3/cryo) +"uX" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor, +/area/stellardelight/deck2/starboard) +"uY" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/starboardaft) +"uZ" = ( +/obj/structure/cable/blue{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/camera/network/command{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai_server_room) +"va" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck3/exterior) +"vb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ai_cyborg_station) +"ve" = ( +/obj/structure/closet/walllocker_double/east, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/chief) +"vf" = ( +/obj/structure/table/reinforced, +/obj/machinery/photocopier/faxmachine{ + department = "Chief Engineer's Office" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/chief) +"vh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/stellardelight/deck3/cafe) +"vi" = ( +/turf/simulated/floor/carpet/tealcarpet, +/area/crew_quarters/heads/cmo) +"vo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/starboarddock) +"vq" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/wall/bay/r_wall/steel, +/area/maintenance/stellardelight/deck3/portaft) +"vr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 9 + }, +/turf/simulated/wall/fancy_shuttle{ + fancy_shuttle_tag = "sdboat" + }, +/area/shuttle/sdboat/aft{ + base_turf = /turf/simulated/floor/reinforced/airless + }) +"vt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/simulated/floor, +/area/stellardelight/deck2/central) +"vv" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/emblem/nt2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/effect/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/aft) +"vw" = ( +/obj/structure/sign/department/shield, +/turf/simulated/wall/bay/r_wall/blue, +/area/stellardelight/deck3/commandhall) +"vy" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/starboardaft) +"vA" = ( +/obj/machinery/power/apc/angled{ + dir = 1; + name = "night shift APC"; + nightshift_setting = 2 + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/portaft) +"vE" = ( +/obj/effect/shuttle_landmark{ + base_area = /area/stellardelight/deck3/exterior; + base_turf = /turf/simulated/floor/reinforced/airless; + docking_controller = "sd_starboard_landing"; + landmark_tag = "starboard_shuttlepad"; + name = "Starboard Shuttlepad" + }, +/turf/simulated/floor/reinforced/airless, +/area/stellardelight/deck3/exterior) +"vF" = ( +/obj/structure/lattice, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/open, +/area/stellardelight/deck2/fore) +"vG" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/aft) +"vI" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/portdock) +"vJ" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/starboarddock) +"vN" = ( +/obj/machinery/computer/telecomms/monitor{ + dir = 8; + network = "tcommsat" + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tcommsat/computer) +"vO" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/angled_bay/hatch{ + door_color = "#323d80"; + name = "maintenance access"; + req_one_access = list(19,38); + stripe_color = "#323d80" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck3/commandhall) +"vP" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/structure/sign/nanotrasen{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/starboarddock) +"vQ" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck3/exterior) +"vS" = ( +/obj/structure/cable/blue{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai_cyborg_station) +"vT" = ( +/obj/machinery/holoplant, +/obj/machinery/status_display{ + pixel_x = -32 + }, +/turf/simulated/floor/bluegrid, +/area/ai_cyborg_station) +"vX" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "sdboat" + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/shuttle/sdboat/aft{ + base_turf = /turf/simulated/floor/reinforced/airless + }) +"wa" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/structure/low_wall/bay/reinforced/steel, +/turf/simulated/floor, +/area/stellardelight/deck2/port) +"wc" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/landmark/vermin, +/turf/simulated/open, +/area/stellardelight/deck2/starboard) +"wd" = ( +/obj/structure/table/standard, +/obj/item/weapon/aiModule/oxygen, +/obj/item/weapon/aiModule/oneHuman, +/obj/item/weapon/aiModule/purge, +/obj/item/weapon/aiModule/antimov, +/obj/item/weapon/aiModule/teleporterOffline, +/obj/machinery/alarm/angled{ + dir = 8 + }, +/turf/simulated/floor/bluegrid, +/area/ai_cyborg_station) +"we" = ( +/obj/machinery/power/pointdefense{ + id_tag = "sd_pd" + }, +/obj/effect/floor_decal/industrial/warning/full, +/obj/structure/cable/blue{ + icon_state = "0-8" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck3/exterior) +"wg" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/aft) +"wm" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1380; + id_tag = null + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + frequency = 1380; + id_tag = "sd_starboard_landing"; + pixel_y = 29 + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/obj/machinery/airlock_sensor{ + frequency = 1380; + id_tag = null; + pixel_y = -25 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/starboarddock) +"wo" = ( +/obj/structure/table/standard, +/obj/item/weapon/aiModule/asimov, +/obj/item/weapon/aiModule/freeformcore, +/obj/item/weapon/aiModule/corp, +/obj/item/weapon/aiModule/paladin, +/obj/item/weapon/aiModule/robocop, +/obj/structure/cable/blue, +/obj/machinery/power/apc/angled{ + dir = 8 + }, +/turf/simulated/floor/bluegrid, +/area/ai_cyborg_station) +"wq" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hos) +"wr" = ( +/obj/machinery/computer/ship/engines/adv, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "sdboat" + }, +/turf/simulated/floor/tiled, +/area/shuttle/sdboat/fore{ + base_turf = /turf/simulated/floor/reinforced/airless + }) +"wt" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/machinery/door/blast/angled/open{ + dir = 4; + id = "readingroom2" + }, +/obj/structure/low_wall/bay/reinforced/steel, +/turf/simulated/floor, +/area/stellardelight/deck3/readingroom) +"wv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai_cyborg_station) +"ww" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/starboardaft) +"wy" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/blue{ + icon_state = "1-2" + }, +/turf/simulated/open, +/area/stellardelight/deck2/fore) +"wA" = ( +/obj/machinery/alarm/angled{ + dir = 4 + }, +/turf/simulated/floor/bluegrid, +/area/ai_upload) +"wG" = ( +/obj/machinery/alarm/angled{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai) +"wK" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 24 + }, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck3/transitgateway) +"wM" = ( +/turf/simulated/floor/airless, +/area/maintenance/stellardelight/deck3/starboardcent) +"wN" = ( +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai_cyborg_station) +"wP" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/machinery/station_map{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/aft) +"wQ" = ( +/obj/structure/cable/blue{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark/gray_platform, +/area/stellardelight/deck3/commandhall) +"wR" = ( +/obj/structure/lattice, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/open, +/area/stellardelight/deck2/starboard) +"wS" = ( +/obj/machinery/holoplant, +/turf/simulated/floor/bluegrid, +/area/ai) +"wV" = ( +/obj/structure/cable/blue{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/closet/emergsuit_wall{ + dir = 8; + pixel_x = -27 + }, +/turf/simulated/floor/tiled/eris/dark/gray_platform, +/area/stellardelight/deck3/commandhall) +"wW" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/camera/network/civilian{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/transitgateway) +"wY" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"wZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/wall/fancy_shuttle{ + fancy_shuttle_tag = "sdboat" + }, +/area/shuttle/sdboat/aft{ + base_turf = /turf/simulated/floor/reinforced/airless + }) +"xb" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/closet/crate, +/obj/random/contraband, +/obj/random/contraband, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/random/maintenance/engineering, +/obj/random/maintenance/engineering, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/foreportrooma) +"xd" = ( +/obj/structure/lattice, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/open, +/area/stellardelight/deck2/port) +"xe" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai_server_room) +"xf" = ( +/obj/structure/handrail{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "sdboat" + }, +/turf/simulated/floor/tiled, +/area/shuttle/sdboat/aft{ + base_turf = /turf/simulated/floor/reinforced/airless + }) +"xg" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/low_wall/bay/reinforced/blue, +/turf/simulated/floor, +/area/crew_quarters/heads/hop) +"xh" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/bluegrid, +/area/ai) +"xi" = ( +/obj/structure/cable/green{ + 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, +/area/maintenance/stellardelight/deck3/portaft) +"xj" = ( +/obj/structure/table/standard, +/obj/item/weapon/aiModule/consuming_eradicator, +/obj/item/weapon/aiModule/guard_dog, +/obj/item/weapon/aiModule/pleasurebot, +/obj/item/weapon/aiModule/protective_shell, +/obj/item/weapon/aiModule/scientific_pursuer, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/bluegrid, +/area/ai_cyborg_station) +"xm" = ( +/obj/structure/cable/blue{ + icon_state = "1-2" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck3/exterior) +"xo" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/stellardelight/deck3/clownmimeoffice) +"xp" = ( +/turf/simulated/floor/wood, +/area/stellardelight/deck3/clownmimeoffice) +"xu" = ( +/obj/machinery/door/airlock/angled_bay/external/glass{ + dir = 4; + frequency = 1379; + id_tag = "starmaint_exterior"; + locked = 1; + name = "Exterior Airlock" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1379; + master_tag = "starmaint_airlock"; + name = "exterior access button"; + pixel_y = 32; + req_access = null; + req_one_access = list(13) + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/maintenance/stellardelight/deck3/starboardcent) +"xv" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/stellardelight/deck3/readingroom) +"xw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/blue{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/eris/dark/gray_platform, +/area/stellardelight/deck3/commandhall) +"xy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/monotile, +/area/stellardelight/deck3/commandhall) +"xz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/freezer{ + dir = 1; + icon_state = "freezer_1"; + set_temperature = 73; + use_power = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tcommsat/computer) +"xA" = ( +/obj/structure/sign/warning/evac{ + pixel_x = 32; + pixel_y = -32 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/aft) +"xB" = ( +/obj/machinery/atmospherics/binary/passive_gate/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tcommsat/computer) +"xC" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/landmark/vermin, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/starboarddock) +"xE" = ( +/obj/structure/closet, +/obj/random/firstaid, +/obj/random/maintenance, +/obj/random/maintenance/cargo, +/obj/random/maintenance/cargo, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/aftstarroom) +"xH" = ( +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/starboardcent) +"xI" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/low_wall/bay/reinforced/steel, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/foreportroomb) +"xL" = ( +/turf/simulated/wall/fancy_shuttle/low{ + fancy_shuttle_tag = "sdboat" + }, +/area/shuttle/sdboat/aft{ + base_turf = /turf/simulated/floor/reinforced/airless + }) +"xM" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/effect/landmark/start/iaa, +/turf/simulated/floor/tiled/dark, +/area/lawoffice) +"xN" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/stellardelight/deck3/forestarrooma) +"xO" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/aft) +"xP" = ( +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/stellardelight/deck3/foreportroomb) +"xR" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/open, +/area/stellardelight/deck2/starboard) +"xS" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/effect/landmark/start/hos, +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hos) +"xT" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/portaft) +"xU" = ( +/obj/structure/cable/blue{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/dark/gray_platform, +/area/stellardelight/deck3/commandhall) +"xW" = ( +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck3/aft) +"xY" = ( +/turf/simulated/floor/tiled/dark, +/area/lawoffice) +"xZ" = ( +/turf/simulated/floor/wood, +/area/stellardelight/deck3/cafe) +"ya" = ( +/obj/machinery/button/remote/blast_door{ + id = "shuttleshutter"; + name = "Shutter Control"; + pixel_x = 17; + pixel_y = 27 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "sdboat" + }, +/turf/simulated/floor/tiled, +/area/shuttle/sdboat/fore{ + base_turf = /turf/simulated/floor/reinforced/airless + }) +"yb" = ( +/obj/structure/sign/deck3{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile, +/area/stellardelight/deck3/commandhall) +"yc" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden, +/obj/structure/cable/blue{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tcommsat/computer) +"yd" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck3/exterior) +"ye" = ( +/obj/structure/dogbed, +/mob/living/simple_mob/animal/passive/dog/corgi/Lisa, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"yf" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/double{ + dir = 8; + name = "maintenance access"; + stripe_color = "#454545" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/starboardcent) +"yi" = ( +/obj/structure/cable/blue{ + icon_state = "1-2" + }, +/obj/structure/cable/blue, +/obj/machinery/power/sensor{ + name = "Powernet Sensor - Command Subgrid"; + name_tag = "Command Subgrid" + }, +/obj/machinery/power/apc/angled{ + dir = 8 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/substation/command) +"yj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/turf/simulated/wall/bay/r_wall/steel, +/area/stellardelight/deck3/aft) +"ym" = ( +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/random/maintenance/clean, +/obj/random/maintenance/engineering, +/obj/random/maintenance/security, +/obj/random/contraband, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/starboardfore) +"yo" = ( +/obj/structure/cable/blue{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"yp" = ( +/obj/structure/cable/blue{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/computer/cryopod/robot{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai_cyborg_station) +"yq" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/stellardelight/deck3/readingroom) +"ys" = ( +/obj/machinery/atm{ + pixel_y = 30 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/aft) +"yt" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/aft) +"yw" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 9 + }, +/obj/structure/closet/emergsuit_wall{ + pixel_y = 29 + }, +/obj/structure/closet/emergsuit_wall{ + dir = 8; + pixel_x = -27 + }, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck3/transitgateway) +"yy" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/structure/cable/blue{ + icon_state = "4-8" + }, +/obj/structure/low_wall/bay/reinforced/steel, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/forestarroomb) +"yB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/carpet/tealcarpet, +/area/crew_quarters/heads/cmo) +"yC" = ( +/obj/machinery/power/apc/angled{ + dir = 4 + }, +/obj/structure/cable/blue, +/turf/simulated/floor/tiled/dark, +/area/lawoffice) +"yE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tcommsat/computer) +"yF" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/double/glass{ + name = "glass airlock" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck3/portdock) +"yH" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/wall/bay/r_wall/blue, +/area/ai_cyborg_station) +"yI" = ( +/obj/item/weapon/folder{ + pixel_x = -4 + }, +/obj/item/weapon/folder/blue{ + pixel_x = 5 + }, +/obj/item/weapon/folder/red{ + pixel_y = 3 + }, +/obj/item/weapon/folder/yellow, +/obj/structure/table/darkglass, +/obj/machinery/light, +/turf/simulated/floor/tiled/dark, +/area/lawoffice) +"yJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/monotile, +/area/stellardelight/deck3/commandhall) +"yM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/standard/color{ + door_color = "#323d80"; + fill_color = "#313866"; + name = "Head of Personnel"; + req_access = list(57); + stripe_color = "#a3d1d1" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/crew_quarters/heads/hop) +"yP" = ( +/obj/structure/sign/warning/falling{ + pixel_x = 32 + }, +/turf/simulated/open, +/area/stellardelight/deck2/starboard) +"yR" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/structure/low_wall/bay/reinforced/steel, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/portcent) +"yS" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/access_button{ + command = "cycle_exterior"; + dir = 4; + frequency = 1380; + master_tag = "sd_starboard_landing"; + pixel_y = 32; + req_one_access = list(13) + }, +/obj/machinery/door/airlock/angled_bay/external/glass{ + dir = 4; + frequency = 1380; + id_tag = null; + locked = 1; + name = "Docking Port Airlock" + }, +/obj/effect/map_helper/airlock/door/ext_door, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck3/starboarddock) +"yV" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai_cyborg_station) +"yW" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck3/exterior) +"yY" = ( +/obj/structure/table/steel, +/obj/random/maintenance/clean, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/stellardelight/deck3/foreportroomb) +"yZ" = ( +/obj/machinery/door/airlock/angled_bay/hatch{ + name = "maintenance access"; + stripe_color = "#454545" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck3/readingroom) +"za" = ( +/obj/machinery/cryopod/robot/door/gateway, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck3/transitgateway) +"zb" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/structure/cable/blue{ + icon_state = "1-4" + }, +/obj/structure/cable/blue{ + icon_state = "1-8" + }, +/obj/structure/cable/blue{ + icon_state = "2-4" + }, +/obj/structure/cable/blue{ + icon_state = "2-8" + }, +/obj/structure/cable/blue{ + icon_state = "1-2" + }, +/obj/structure/cable/blue{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/eris/dark/gray_platform, +/area/stellardelight/deck3/commandhall) +"zf" = ( +/obj/structure/cable/blue{ + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/starboardfore) +"zg" = ( +/obj/structure/cable/blue{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai_upload) +"zi" = ( +/obj/effect/floor_decal/emblem/nt2, +/obj/structure/cable/blue{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai_upload) +"zk" = ( +/obj/effect/landmark{ + name = "droppod_landing" + }, +/turf/space, +/area/space) +"zm" = ( +/obj/structure/cable/blue{ + icon_state = "4-8" + }, +/obj/structure/table/reinforced, +/obj/machinery/photocopier/faxmachine{ + department = "Head of Personnel's Office" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/alarm/angled, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"zn" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/structure/low_wall/bay/reinforced/blue, +/turf/simulated/floor, +/area/tcommsat/computer) +"zo" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/lawoffice) +"zp" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/foreportroomb) +"zr" = ( +/obj/machinery/cryopod, +/obj/effect/floor_decal/corner_techfloor_grid{ + dir = 5 + }, +/obj/effect/floor_decal/corner_techfloor_grid{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck3/cryo) +"zt" = ( +/obj/structure/table/steel, +/obj/random/contraband, +/obj/random/maintenance/clean, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/stellardelight/deck3/foreportroomb) +"zv" = ( +/obj/item/weapon/bedsheet/rddouble, +/obj/structure/bed/double/padded, +/obj/structure/curtain/black{ + color = "#361447" + }, +/obj/effect/landmark/start/rd, +/turf/simulated/floor/carpet/purcarpet, +/area/crew_quarters/heads/hor) +"zw" = ( +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + dir = 8; + id_tag = "portmaint_airlock"; + pixel_x = 24; + req_access = null; + req_one_access = list(13); + tag_airpump = "portmaint_airpump"; + tag_chamber_sensor = "portmaint_sensor"; + tag_exterior_door = "portmaint_exterior"; + tag_interior_door = "portmaint_interior" + }, +/turf/simulated/floor/airless, +/area/maintenance/stellardelight/deck3/portcent) +"zy" = ( +/obj/machinery/camera/network/halls{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/aft) +"zz" = ( +/turf/simulated/wall/bay/steel, +/area/stellardelight/deck3/commandhall) +"zA" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/table/steel, +/obj/random/maintenance/engineering, +/obj/random/maintenance/security, +/obj/random/maintenance/clean, +/obj/random/maintenance, +/obj/random/contraband, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/starboardfore) +"zB" = ( +/obj/structure/cable/blue{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/tiled/eris/dark/gray_platform, +/area/stellardelight/deck3/commandhall) +"zC" = ( +/obj/item/toy/figure/mime, +/obj/item/weapon/pen/crayon/marker/mime, +/obj/item/weapon/pen/crayon/mime, +/obj/structure/table/woodentable, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/stellardelight/deck3/clownmimeoffice) +"zD" = ( +/obj/structure/cable/blue{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/sign/warning/secure_area{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai_server_room) +"zE" = ( +/obj/structure/table/bench/padded, +/obj/effect/landmark/start/commandsecretary, +/turf/simulated/floor/wood, +/area/stellardelight/deck3/cafe) +"zF" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/power/apc/angled{ + dir = 8 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/stellardelight/deck3/clownmimeoffice) +"zH" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor, +/area/stellardelight/deck2/port) +"zI" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/obj/effect/floor_decal/arrivals, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/aft) +"zJ" = ( +/obj/effect/floor_decal/techfloor{ + dir = 9 + }, +/obj/effect/landmark{ + name = "JoinLateCryo" + }, +/obj/machinery/alarm/angled{ + pixel_x = -32; + pixel_y = 19 + }, +/obj/structure/closet/emergsuit_wall{ + pixel_y = 29 + }, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck3/cryo) +"zL" = ( +/obj/structure/cable{ + 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, +/area/maintenance/stellardelight/deck3/starboardcent) +"zM" = ( +/obj/effect/landmark{ + name = "JoinLateCyborg" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/landmark/start/cyborg, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai_cyborg_station) +"zN" = ( +/turf/simulated/wall/bay/r_wall/blue, +/area/crew_quarters/heads/hos) +"zQ" = ( +/obj/structure/table/steel, +/obj/item/device/flashlight/lamp, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/stellardelight/deck3/foreportrooma) +"zS" = ( +/obj/structure/handrail{ + dir = 1 + }, +/obj/machinery/power/apc{ + pixel_y = -28; + req_access = null; + req_one_access = list(11, 67) + }, +/obj/structure/cable/green, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "sdboat" + }, +/turf/simulated/floor/tiled, +/area/shuttle/sdboat/aft{ + base_turf = /turf/simulated/floor/reinforced/airless + }) +"zV" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/closet/crate, +/obj/random/contraband, +/obj/random/maintenance, +/obj/random/snack, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/aftstarroom) +"zW" = ( +/obj/structure/lattice, +/obj/structure/sign/warning/falling{ + pixel_y = 32 + }, +/turf/simulated/open, +/area/stellardelight/deck2/fore) +"zX" = ( +/turf/simulated/wall/bay/r_wall/steel, +/area/stellardelight/deck3/readingroom) +"zY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tcommsat/computer) +"Ae" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck3/exterior) +"Af" = ( +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/turf/simulated/floor/wood, +/area/stellardelight/deck3/readingroom) +"Ai" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/landmark{ + name = "maint_pred" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/stellardelight/deck3/forestarrooma) +"Aj" = ( +/obj/item/device/camera, +/obj/item/device/camera_film, +/obj/item/device/taperecorder, +/obj/item/device/tape/random, +/obj/item/device/tape/random, +/obj/item/weapon/storage/secure/briefcase, +/obj/structure/closet/walllocker_double/east, +/turf/simulated/floor/tiled/dark, +/area/lawoffice) +"Al" = ( +/obj/machinery/power/apc/angled{ + dir = 4; + name = "night shift APC"; + nightshift_setting = 2 + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/structure/table/rack, +/obj/random/maintenance, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/aftstarroom) +"Am" = ( +/obj/machinery/power/apc/angled{ + dir = 4; + req_access = list(19,43,67) + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/turf/simulated/floor/wood, +/area/stellardelight/deck3/readingroom) +"An" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hop) +"Ap" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor, +/area/stellardelight/deck2/starboard) +"Aq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tcommsat/computer) +"As" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/starboardaft) +"At" = ( +/obj/structure/table/glass, +/obj/item/device/flashlight/lamp/green, +/turf/simulated/floor/carpet, +/area/stellardelight/deck3/readingroom) +"Av" = ( +/obj/effect/floor_decal/techfloor{ + dir = 6 + }, +/obj/effect/landmark{ + name = "JoinLateCryo" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck3/cryo) +"Aw" = ( +/obj/machinery/camera/network/command{ + dir = 9 + }, +/turf/simulated/floor/tiled/eris/dark/gray_platform, +/area/stellardelight/deck3/commandhall) +"Ax" = ( +/obj/machinery/holoplant, +/turf/simulated/floor/bluegrid, +/area/ai_cyborg_station) +"Ay" = ( +/obj/structure/table/steel, +/obj/random/maintenance/engineering, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/forestarrooma) +"Az" = ( +/obj/item/weapon/camera_assembly, +/obj/item/weapon/camera_assembly, +/obj/item/weapon/camera_assembly, +/obj/item/weapon/camera_assembly, +/obj/item/weapon/camera_assembly, +/obj/item/weapon/camera_assembly, +/obj/structure/closet/crate{ + name = "Camera Assembly Crate" + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai_cyborg_station) +"AD" = ( +/obj/structure/handrail, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + frequency = 1380; + id_tag = "sdboat_docker"; + pixel_x = 5; + pixel_y = 25 + }, +/obj/machinery/airlock_sensor{ + dir = 8; + frequency = 1380; + id_tag = null; + pixel_x = 25; + pixel_y = 2 + }, +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "sdboat" + }, +/turf/simulated/floor/tiled, +/area/shuttle/sdboat/aft{ + base_turf = /turf/simulated/floor/reinforced/airless + }) +"AE" = ( +/obj/structure/table/glass, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/white/cargo, +/area/crew_quarters/heads/cmo) +"AH" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/starboardcent) +"AK" = ( +/obj/random/trash_pile, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/starboardaft) +"AP" = ( +/obj/machinery/power/apc/angled{ + dir = 4 + }, +/obj/structure/cable/blue{ + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/chief) +"AQ" = ( +/obj/structure/closet/crate, +/obj/random/contraband, +/obj/random/contraband, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/forestarrooma) +"AS" = ( +/obj/machinery/computer/telecomms/server{ + dir = 8; + network = "tcommsat" + }, +/obj/machinery/alarm/angled{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tcommsat/computer) +"AT" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/double{ + name = "maintenance access"; + stripe_color = "#454545" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/starboardaft) +"AU" = ( +/obj/machinery/light/small, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/simulated/floor, +/area/stellardelight/deck2/central) +"AX" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger{ + pixel_y = 6 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"AY" = ( +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/aft) +"AZ" = ( +/obj/machinery/porta_turret, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai_upload) +"Ba" = ( +/obj/structure/closet/walllocker_double/east, +/obj/item/weapon/book/manual/command_guide, +/obj/item/weapon/book/manual/standard_operating_procedure, +/obj/item/weapon/book/manual/security_space_law, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/hos) +"Bb" = ( +/obj/structure/bed/chair/bay/comfy/blue{ + dir = 1 + }, +/obj/structure/panic_button/small{ + pixel_x = -29; + pixel_y = 30 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "sdboat" + }, +/turf/simulated/floor/tiled, +/area/shuttle/sdboat/fore{ + base_turf = /turf/simulated/floor/reinforced/airless + }) +"Bd" = ( +/obj/machinery/alarm/angled{ + dir = 8 + }, +/obj/structure/bookcase, +/turf/simulated/floor/wood, +/area/stellardelight/deck3/readingroom) +"Be" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/aft) +"Bg" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/angled_bay/hatch{ + dir = 4; + name = "maintenance access"; + stripe_color = "#454545" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/maintenance/stellardelight/deck3/starboardaft) +"Bj" = ( +/obj/machinery/message_server, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai_server_room) +"Bk" = ( +/obj/machinery/computer/aiupload{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai_upload) +"Bl" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8; + id_tag = null + }, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + frequency = 1380; + id_tag = "tcommsairlock"; + pixel_y = 24; + req_one_access = list(61) + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/obj/machinery/airlock_sensor{ + dir = 8; + pixel_x = 25 + }, +/turf/simulated/floor, +/area/tcommsat/computer) +"Bm" = ( +/obj/structure/closet/emcloset, +/obj/random/drinkbottle, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/portaft) +"Bn" = ( +/obj/effect/landmark{ + name = "maint_pred" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/aftstarroom) +"Bp" = ( +/turf/simulated/wall/bay/r_wall/steel, +/area/maintenance/stellardelight/substation/command) +"Bq" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/dark, +/area/lawoffice) +"Br" = ( +/obj/structure/table/alien{ + name = "fancy table" + }, +/obj/machinery/photocopier/faxmachine{ + department = "Research Director's Office" + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/heads/hor) +"Bs" = ( +/obj/machinery/computer/borgupload{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai_upload) +"Bt" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/stellardelight/deck3/cafe) +"Bz" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/blue{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/angled_bay/standard/color{ + dir = 4; + door_color = "#323d80"; + fill_color = "#313866"; + id_tag = "cmodoor"; + name = "Chief Medical Officer"; + req_access = list(40); + stripe_color = "#ffffff" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/crew_quarters/heads/cmo) +"BA" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/external/glass{ + dir = 4; + frequency = 1380; + id_tag = null; + locked = 1; + name = "Docking Port Airlock" + }, +/obj/effect/map_helper/airlock/door/ext_door, +/obj/machinery/access_button{ + command = "cycle_exterior"; + dir = 8; + frequency = 1380; + master_tag = "sd_port_landing"; + pixel_y = 32; + req_one_access = list(13) + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck3/portdock) +"BB" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 1 + }, +/obj/structure/low_wall/bay/reinforced/steel, +/turf/simulated/floor, +/area/stellardelight/deck3/aft) +"BC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/aft) +"BF" = ( +/obj/structure/cable/blue{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/hatch{ + door_color = "#e6ab22"; + name = "Command Substation"; + req_one_access = list(10); + stripe_color = "#e6ab22" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/maintenance/stellardelight/substation/command) +"BG" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/table/rack, +/obj/random/maintenance/clean, +/obj/random/maintenance, +/obj/random/maintenance/engineering, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/starboardaft) +"BH" = ( +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hos) +"BJ" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/double/glass{ + name = "glass airlock" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck3/starboarddock) +"BK" = ( +/obj/structure/cable/blue{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark/gray_platform, +/area/stellardelight/deck3/commandhall) +"BL" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/open, +/area/stellardelight/deck2/port) +"BM" = ( +/obj/structure/sign/painting/library_secure{ + pixel_x = -30 + }, +/turf/simulated/floor/carpet/oracarpet, +/area/crew_quarters/heads/chief) +"BQ" = ( +/obj/structure/cable/blue{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -24; + pixel_y = 24 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/heads/hor) +"BR" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1; + frequency = 1380; + id_tag = null + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{ + dir = 4; + frequency = 1380; + id_tag = "sd_escape_center_left"; + master_tag = "escape_dock"; + pixel_x = -24; + req_one_access = list(13); + tag_airpump = null; + tag_chamber_sensor = null; + tag_exterior_door = null; + tag_interior_door = null + }, +/obj/machinery/airlock_sensor{ + dir = 8; + frequency = 1380; + id_tag = null; + pixel_x = 25 + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/aft) +"BV" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/machinery/alarm/angled{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/portdock) +"BW" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "sdboat" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/shuttle/sdboat/aft{ + base_turf = /turf/simulated/floor/reinforced/airless + }) +"BY" = ( +/obj/machinery/newscaster{ + layer = 3.3; + pixel_x = -27 + }, +/turf/simulated/floor/tiled/dark, +/area/lawoffice) +"BZ" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/portaft) +"Cb" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/landmark/vermin, +/turf/simulated/open, +/area/stellardelight/deck2/fore) +"Cc" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/hatch{ + dir = 4; + name = "maintenance access"; + stripe_color = "#454545" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck3/aft) +"Cd" = ( +/obj/structure/table/woodentable, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/stellardelight/deck3/cafe) +"Ce" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/carpet/turcarpet, +/area/ai) +"Cf" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/angled_bay/hatch{ + dir = 4; + name = "maintenance access"; + stripe_color = "#454545" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/maintenance/stellardelight/deck3/portcent) +"Cn" = ( +/obj/structure/cable/blue{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai) +"Co" = ( +/obj/machinery/button/remote/airlock{ + id = "readingroom2"; + name = "Room 2 Lock"; + pixel_y = 24; + specialfunctions = 4 + }, +/obj/machinery/button/remote/blast_door{ + id = "readingroom2"; + name = "Window Lockdown"; + pixel_x = -10; + pixel_y = 24 + }, +/turf/simulated/floor/carpet, +/area/stellardelight/deck3/readingroom) +"Cp" = ( +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor, +/area/stellardelight/deck2/fore) +"Cu" = ( +/obj/machinery/power/apc/angled{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/random/vendorfood, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/aft) +"Cw" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable/blue{ + icon_state = "2-8" + }, +/obj/structure/cable/blue{ + icon_state = "2-4" + }, +/turf/simulated/open, +/area/stellardelight/deck2/fore) +"Cx" = ( +/obj/effect/shuttle_landmark{ + base_area = /area/stellardelight/deck3/exterior; + base_turf = /turf/simulated/floor/reinforced/airless; + docking_controller = "escape_dock"; + landmark_tag = "escape_station"; + name = "Ship Arrivals" + }, +/turf/simulated/floor/reinforced/airless, +/area/stellardelight/deck3/exterior) +"Cy" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/obj/effect/floor_decal/arrivals/right, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/aft) +"Cz" = ( +/obj/structure/lattice, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/open, +/area/stellardelight/deck2/port) +"CA" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/machinery/door/blast/angled/open{ + dir = 2; + id = "barlockdown" + }, +/obj/structure/low_wall/bay/reinforced/steel, +/turf/simulated/floor, +/area/crew_quarters/bar) +"CC" = ( +/turf/simulated/wall/bay/r_wall/steel, +/area/stellardelight/deck3/clownmimeoffice) +"CD" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1380; + id_tag = null + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port_multi{ + frequency = 1380; + id_tag = "sd_escape_port"; + master_tag = "escape_dock"; + pixel_y = 30; + req_one_access = list(13); + tag_airpump = null; + tag_chamber_sensor = null; + tag_exterior_door = null; + tag_interior_door = null + }, +/obj/machinery/airlock_sensor{ + frequency = 1380; + id_tag = null; + pixel_y = -25 + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/portdock) +"CG" = ( +/obj/machinery/blackbox_recorder, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai_server_room) +"CH" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor, +/area/stellardelight/deck2/starboard) +"CJ" = ( +/obj/structure/lattice, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/open, +/area/stellardelight/deck2/starboard) +"CK" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/structure/low_wall/bay/reinforced/steel, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/starboardaft) +"CO" = ( +/obj/effect/overmap/visitable/ship/stellar_delight, +/turf/space, +/area/space) +"CP" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/effect/floor_decal/arrivals/right, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/aft) +"CR" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/alarm/angled, +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hop) +"CS" = ( +/obj/structure/lattice, +/turf/simulated/open, +/area/stellardelight/deck2/port) +"CT" = ( +/obj/structure/cable/blue{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai_cyborg_station) +"CU" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor, +/area/stellardelight/deck2/fore) +"CV" = ( +/obj/structure/bed/chair, +/obj/structure/sign/painting/public{ + pixel_y = 30 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/aft) +"CY" = ( +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/obj/effect/landmark{ + name = "JoinLateCryo" + }, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck3/cryo) +"Dd" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/open, +/area/crew_quarters/bar) +"De" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/simulated/wall/bay/r_wall/blue, +/area/ai_cyborg_station) +"Df" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/stellardelight/deck2/fore) +"Dh" = ( +/obj/machinery/computer/message_monitor{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai_server_room) +"Di" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck3/exterior) +"Dk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/starboardaft) +"Dn" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/starboarddock) +"Dp" = ( +/obj/random/trash_pile, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/portfore) +"Ds" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai_cyborg_station) +"Du" = ( +/obj/machinery/vending/wardrobe/clowndrobe, +/turf/simulated/floor/carpet/gaycarpet, +/area/stellardelight/deck3/clownmimeoffice) +"Dw" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor/carpet/deco, +/area/ai) +"Dy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black, +/turf/simulated/floor/bluegrid{ + name = "Mainframe Base"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"DC" = ( +/turf/simulated/wall/bay/steel, +/area/maintenance/stellardelight/deck3/foreportroomb) +"DD" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/angled_bay/standard/glass{ + name = "maintenance access" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck2/port) +"DE" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/starboardcent) +"DH" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/open, +/area/crew_quarters/bar) +"DI" = ( +/obj/machinery/power/apc/angled{ + dir = 8 + }, +/obj/structure/cable/blue{ + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/heads/hor) +"DL" = ( +/obj/structure/cable/blue{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai_server_room) +"DM" = ( +/obj/structure/table/steel, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/stellardelight/deck3/foreportrooma) +"DN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"DO" = ( +/obj/structure/closet/hydrant{ + pixel_y = 28 + }, +/obj/structure/dogbed{ + name = "catslug bed" + }, +/mob/living/simple_mob/vore/alienanimals/catslug/tulidaan, +/turf/simulated/floor/wood, +/area/stellardelight/deck3/readingroom) +"DP" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/structure/cable/blue{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tcommsat/computer) +"DQ" = ( +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/starboardfore) +"DT" = ( +/obj/structure/railing/grey, +/obj/structure/railing/grey{ + dir = 4 + }, +/turf/simulated/open, +/area/maintenance/stellardelight/deck3/portaft) +"DV" = ( +/obj/structure/cable/blue{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/wall/bay/blue, +/area/lawoffice) +"DW" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "clownmimeoffice"; + name = "Window Lockdown"; + pixel_x = 23; + pixel_y = 7 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/carpet/gaycarpet, +/area/stellardelight/deck3/clownmimeoffice) +"DY" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/foreportrooma) +"DZ" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/starboardcent) +"Ec" = ( +/turf/simulated/wall/bay/steel, +/area/stellardelight/deck3/clownmimeoffice) +"Ed" = ( +/turf/simulated/wall/bay/r_wall/steel, +/area/stellardelight/deck3/aft) +"Ee" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/black{ + dir = 1 + }, +/turf/simulated/floor/bluegrid{ + name = "Mainframe Base"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"Ef" = ( +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/stellardelight/deck3/forestarroomb) +"Eg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/camera/network/halls{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/portdock) +"Eh" = ( +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck3/cryo) +"Ei" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/random/trash_pile, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/portcent) +"El" = ( +/obj/effect/landmark{ + name = "carpspawn" + }, +/turf/space, +/area/space) +"En" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck3/exterior) +"Es" = ( +/obj/effect/shuttle_landmark/premade/sd/deck3/portlanding, +/turf/space, +/area/space) +"Et" = ( +/obj/structure/closet/secure_closet/hos, +/obj/item/device/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/hos) +"Eu" = ( +/turf/simulated/wall/bay/r_wall/blue, +/area/stellardelight/deck2/port) +"Ev" = ( +/obj/structure/cable/blue{ + icon_state = "1-4" + }, +/obj/structure/cable/blue{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/starboardcent) +"Ex" = ( +/obj/structure/bed/chair/bay/comfy/blue{ + dir = 1 + }, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "sdboat" + }, +/turf/simulated/floor/tiled, +/area/shuttle/sdboat/fore{ + base_turf = /turf/simulated/floor/reinforced/airless + }) +"EE" = ( +/obj/structure/table/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/rig/ce/equipped, +/obj/item/clothing/mask/breath, +/obj/item/clothing/shoes/magboots/adv, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/chief) +"EF" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/aft) +"EH" = ( +/obj/structure/table/steel, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/stellardelight/deck3/foreportroomb) +"EI" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1379; + id_tag = "portmaint_airpump" + }, +/turf/simulated/floor/airless, +/area/maintenance/stellardelight/deck3/portcent) +"EJ" = ( +/turf/simulated/wall/bay/r_wall/blue, +/area/crew_quarters/heads/cmo) +"EL" = ( +/obj/machinery/door/airlock/angled_bay/hatch{ + frequency = null; + id_tag = null; + locked = 1; + name = "Telecoms Server Access"; + req_access = list(61); + stripe_color = "#ffd863" + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/blue{ + icon_state = "1-2" + }, +/obj/machinery/access_button{ + command = "cycle_exterior"; + dir = 1; + frequency = 1380; + master_tag = "tcommsairlock"; + pixel_x = -32; + req_one_access = list(61) + }, +/obj/effect/map_helper/airlock/door/ext_door, +/turf/simulated/floor/tiled/steel_ridged, +/area/tcommsat/computer) +"EN" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/aft) +"EO" = ( +/obj/structure/sign/nanotrasen{ + pixel_y = 30 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/lawoffice) +"ER" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/stellardelight/deck3/aft) +"ET" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/starboardaft) +"EU" = ( +/obj/structure/cable/blue{ + icon_state = "2-8" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck3/exterior) +"EV" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck3/exterior) +"EW" = ( +/obj/structure/cable/blue{ + icon_state = "1-4" + }, +/obj/structure/cable/blue{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled/eris/dark/gray_platform, +/area/stellardelight/deck3/commandhall) +"EX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 10 + }, +/turf/simulated/wall/fancy_shuttle{ + fancy_shuttle_tag = "sdboat" + }, +/area/shuttle/sdboat/aft{ + base_turf = /turf/simulated/floor/reinforced/airless + }) +"EY" = ( +/obj/structure/table/reinforced, +/obj/machinery/computer/skills{ + dir = 8; + pixel_y = 6 + }, +/turf/simulated/floor/carpet/oracarpet, +/area/crew_quarters/heads/chief) +"EZ" = ( +/turf/simulated/wall/bay/r_wall/steel, +/area/maintenance/stellardelight/deck3/forestarroomb) +"Fb" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/open, +/area/crew_quarters/bar) +"Fc" = ( +/obj/structure/closet/walllocker_double/west, +/obj/item/device/taperecorder{ + pixel_x = -3 + }, +/obj/item/weapon/circuitboard/aicore{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/weapon/circuitboard/teleporter, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/heads/hor) +"Fe" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai_upload) +"Ff" = ( +/obj/structure/bed/chair, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/alarm/angled, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/landmark/vermin, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/aft) +"Fg" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/blue{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/angled_bay/standard/color{ + dir = 4; + door_color = "#323d80"; + fill_color = "#854a44"; + id_tag = "hosdoor"; + name = "Head of Security"; + req_access = list(58); + stripe_color = "#d27428" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/crew_quarters/heads/hos) +"Fh" = ( +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai_server_room) +"Fj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/cable/blue{ + icon_state = "4-8" + }, +/turf/simulated/floor, +/area/stellardelight/deck2/fore) +"Fm" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1379; + id_tag = "portmaint_airpump" + }, +/obj/machinery/camera/network/civilian, +/turf/simulated/floor/airless, +/area/maintenance/stellardelight/deck3/portcent) +"Fr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/monotile, +/area/stellardelight/deck3/commandhall) +"Ft" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor, +/area/stellardelight/deck2/port) +"Fv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tcommsat/computer) +"Fy" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/airless, +/area/maintenance/stellardelight/deck3/portcent) +"FC" = ( +/obj/machinery/alarm/angled{ + dir = 8 + }, +/obj/structure/cable/blue{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/lawoffice) +"FD" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/structure/low_wall/bay/reinforced/steel, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/forestarroomb) +"FE" = ( +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/forestarroomb) +"FG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/portaft) +"FH" = ( +/obj/machinery/power/pointdefense{ + id_tag = "sd_pd" + }, +/obj/effect/floor_decal/industrial/warning/full, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck3/exterior) +"FI" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck3/exterior) +"FL" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + icon_state = "1-2" + }, +/turf/simulated/open, +/area/stellardelight/deck2/starboard) +"FM" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/white/cargo, +/area/crew_quarters/heads/cmo) +"FO" = ( +/obj/structure/bed/psych{ + name = "couch" + }, +/turf/simulated/floor/tiled/eris/white/cargo, +/area/crew_quarters/heads/cmo) +"FR" = ( +/obj/effect/floor_decal/techfloor/orange, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck3/transitgateway) +"FS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 8 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/portaft) +"FU" = ( +/obj/structure/cable/blue{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai_cyborg_station) +"FW" = ( +/obj/machinery/power/apc/angled{ + dir = 8; + name = "night shift APC"; + nightshift_setting = 2 + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/foreportrooma) +"FY" = ( +/obj/structure/closet, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/foreportrooma) +"Ga" = ( +/obj/structure/cable/cyan{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/bluegrid, +/area/ai) +"Gc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/starboardaft) +"Ge" = ( +/obj/structure/table/standard, +/obj/item/weapon/aiModule/nanotrasen, +/obj/machinery/camera/network/command, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/bluegrid, +/area/ai_cyborg_station) +"Gf" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/alarm/angled, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/aft) +"Gg" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = -3 + }, +/turf/simulated/floor/lino, +/area/stellardelight/deck3/cafe) +"Gh" = ( +/obj/structure/cable/blue{ + icon_state = "1-2" + }, +/obj/structure/cable/blue{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai_upload) +"Gi" = ( +/obj/structure/table/rack, +/obj/item/weapon/rig/hazmat/equipped, +/obj/machinery/light, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/heads/hor) +"Gj" = ( +/turf/simulated/floor/tiled/monotile, +/area/stellardelight/deck3/commandhall) +"Gk" = ( +/turf/simulated/wall/bay/r_wall/blue, +/area/maintenance/stellardelight/deck3/portaft) +"Gl" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/effect/landmark/start/cmo, +/turf/simulated/floor/carpet/tealcarpet, +/area/crew_quarters/heads/cmo) +"Gm" = ( +/obj/structure/cable/blue{ + icon_state = "0-2" + }, +/obj/structure/cable/blue, +/obj/machinery/power/smes/buildable{ + RCon_tag = "Substation - Command"; + output_attempt = 0 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/substation/command) +"Go" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck3/exterior) +"Gq" = ( +/obj/structure/cable{ + 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 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/starboardaft) +"Gv" = ( +/obj/structure/sign/deck3{ + pixel_x = -32 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/aft) +"GB" = ( +/obj/item/weapon/reagent_containers/food/drinks/shaker, +/obj/item/weapon/reagent_containers/glass/rag, +/obj/structure/table/rack, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/stellardelight/deck3/forestarroomb) +"GD" = ( +/obj/structure/cable/blue{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tcommsat/computer) +"GE" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck3/aft) +"GF" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/airless, +/area/maintenance/stellardelight/deck3/portcent) +"GH" = ( +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/wood, +/area/stellardelight/deck3/readingroom) +"GJ" = ( +/obj/structure/cable/blue{ + icon_state = "1-4" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/forestarrooma) +"GP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/bluegrid, +/area/ai) +"GQ" = ( +/turf/simulated/wall/bay/red, +/area/crew_quarters/heads/hos) +"GR" = ( +/obj/machinery/requests_console/preset/cmo{ + pixel_x = 30 + }, +/turf/simulated/floor/carpet/tealcarpet, +/area/crew_quarters/heads/cmo) +"GS" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/portcent) +"GT" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck3/exterior) +"GU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai_server_room) +"GV" = ( +/obj/structure/lattice, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/open, +/area/stellardelight/deck2/port) +"GW" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/book/manual/supermatter_engine, +/obj/item/device/radio{ + pixel_x = -4 + }, +/obj/item/device/megaphone, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/chief) +"Ha" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/cedouble, +/obj/structure/curtain/black{ + color = "#945112" + }, +/obj/effect/landmark/start/ce, +/turf/simulated/floor/carpet/oracarpet, +/area/crew_quarters/heads/chief) +"Hc" = ( +/obj/structure/cable/blue{ + icon_state = "1-2" + }, +/obj/structure/cable/blue, +/obj/machinery/power/sensor{ + name = "Powernet Sensor - AI/Telecomms Subgrid"; + name_tag = "AI/Telecomms Subgrid" + }, +/obj/machinery/power/apc/angled{ + dir = 8 + }, +/turf/simulated/floor, +/area/ai_cyborg_station) +"Hd" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/closet/firecloset, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/aft) +"He" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor, +/area/stellardelight/deck2/central) +"Hf" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/open, +/area/stellardelight/deck2/fore) +"Hg" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/structure/sign/vacuum{ + pixel_x = -32; + plane = -34 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/portdock) +"Hh" = ( +/obj/structure/cable/blue{ + icon_state = "4-8" + }, +/obj/machinery/airlock_sensor{ + dir = 4; + id_tag = "starmaint_sensor"; + pixel_x = -24; + req_access = list(13) + }, +/turf/simulated/floor/airless, +/area/maintenance/stellardelight/deck3/starboardcent) +"Hi" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 24 + }, +/obj/structure/closet/emergsuit_wall{ + pixel_y = 29 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/aft) +"Hk" = ( +/obj/machinery/alarm/angled{ + dir = 8 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/portfore) +"Hm" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/portcent) +"Ho" = ( +/obj/structure/table/steel, +/obj/random/contraband, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance/clean, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/aftstarroom) +"Hq" = ( +/obj/structure/sign/warning/falling{ + pixel_y = 32 + }, +/turf/simulated/open, +/area/stellardelight/deck2/fore) +"Hs" = ( +/turf/simulated/wall/bay/orange, +/area/crew_quarters/heads/chief) +"Ht" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 4; + external_pressure_bound = 0; + external_pressure_bound_default = 0; + icon_state = "map_vent_in"; + initialize_directions = 1; + internal_pressure_bound = 4000; + internal_pressure_bound_default = 4000; + pressure_checks = 2; + pressure_checks_default = 2; + pump_direction = 0; + use_power = 1 + }, +/turf/simulated/floor/bluegrid{ + name = "Mainframe Base"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"Hu" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck3/portdock) +"Hv" = ( +/obj/structure/sign/painting/library_secure{ + pixel_x = 30 + }, +/turf/simulated/floor/tiled/dark, +/area/lawoffice) +"Hw" = ( +/obj/structure/sign/painting/public{ + pixel_y = 30 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/aft) +"Hx" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck3/exterior) +"HA" = ( +/obj/structure/cable/cyan, +/obj/machinery/button/remote/blast_door{ + desc = "A remote control-switch for the AI core maintenance door."; + dir = 4; + id = "AICore"; + name = "AI Maintenance Hatch"; + pixel_x = -25; + pixel_y = -5; + req_access = list(16) + }, +/obj/machinery/light, +/obj/machinery/holoplant, +/obj/machinery/power/apc/angled{ + dir = 4 + }, +/turf/simulated/floor/bluegrid, +/area/ai) +"HB" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/structure/table/bench/marble, +/turf/simulated/floor/lino, +/area/stellardelight/deck3/cafe) +"HF" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/table/rack, +/obj/random/maintenance/clean, +/obj/random/maintenance, +/obj/random/maintenance, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/starboardaft) +"HH" = ( +/obj/structure/closet/emcloset, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/aft) +"HL" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/starboardcent) +"HN" = ( +/obj/structure/cable/blue{ + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai_cyborg_station) +"HO" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/wall/bay/r_wall/steel, +/area/maintenance/stellardelight/deck3/foreportrooma) +"HP" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/low_wall/bay/reinforced/steel, +/turf/simulated/floor, +/area/stellardelight/deck3/starboarddock) +"HQ" = ( +/obj/machinery/door/airlock/angled_bay/standard/color{ + door_color = "#9c9c9c"; + fill_color = "#5c5c5c"; + id_tag = null; + name = "Reading Rooms"; + stripe_color = "#89bd66" + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck3/readingroom) +"HR" = ( +/obj/structure/table/steel, +/obj/random/contraband, +/obj/machinery/chemical_dispenser/bar_coffee/full{ + pixel_y = 8 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/foreportrooma) +"HS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai) +"HT" = ( +/obj/structure/cable/blue{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai_cyborg_station) +"HV" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/effect/landmark{ + name = "morphspawn" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/stellardelight/deck3/forestarrooma) +"HW" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/blue{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/eris/dark/gray_platform, +/area/stellardelight/deck3/commandhall) +"HX" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tcommsat/computer) +"HY" = ( +/obj/structure/table/rack, +/obj/random/contraband, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/snack, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/portaft) +"HZ" = ( +/obj/structure/lattice, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/open, +/area/stellardelight/deck2/central) +"Ia" = ( +/turf/simulated/wall/fancy_shuttle/nondense{ + fancy_shuttle_tag = "sdboat" + }, +/area/shuttle/sdboat/aft{ + base_turf = /turf/simulated/floor/reinforced/airless + }) +"Ib" = ( +/obj/machinery/alarm/angled{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/stellardelight/deck3/forestarrooma) +"Ie" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/open, +/area/stellardelight/deck2/fore) +"Ig" = ( +/obj/structure/lattice, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/open, +/area/stellardelight/deck2/port) +"Ii" = ( +/turf/simulated/wall/bay/r_wall/steel, +/area/holodeck_control) +"Ij" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/landmark{ + name = "maint_pred" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/stellardelight/deck3/foreportroomb) +"Il" = ( +/obj/machinery/photocopier, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"Im" = ( +/obj/effect/landmark/tram, +/turf/simulated/floor/glass/reinforced, +/area/stellardelight/deck3/aft) +"In" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/random/trash_pile, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/starboardcent) +"Io" = ( +/obj/structure/cable/blue{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/starboardcent) +"Ir" = ( +/obj/structure/bed/chair/shuttle{ + dir = 1 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "sdboat" + }, +/turf/simulated/floor/tiled, +/area/shuttle/sdboat/aft{ + base_turf = /turf/simulated/floor/reinforced/airless + }) +"It" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/aft) +"Iu" = ( +/obj/machinery/holoplant, +/turf/simulated/floor/bluegrid, +/area/ai_server_room) +"Iz" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/airless, +/area/stellardelight/deck3/exterior) +"IC" = ( +/obj/machinery/computer/station_alert/all, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/chief) +"ID" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/landmark/vines, +/turf/simulated/open, +/area/stellardelight/deck2/fore) +"IG" = ( +/obj/structure/cable/blue{ + icon_state = "4-8" + }, +/obj/structure/cable/blue{ + icon_state = "1-8" + }, +/obj/structure/cable/blue{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai_cyborg_station) +"IH" = ( +/obj/structure/lattice, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/open, +/area/stellardelight/deck2/port) +"II" = ( +/obj/structure/sign/nanotrasen{ + pixel_y = 30 + }, +/obj/machinery/camera/network/command, +/obj/structure/flora/pottedplant/stoutbush, +/turf/simulated/floor/tiled/monotile, +/area/stellardelight/deck3/commandhall) +"IK" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck3/exterior) +"IN" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/portaft) +"IO" = ( +/obj/structure/lattice, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/light/small, +/turf/simulated/open, +/area/stellardelight/deck2/port) +"IP" = ( +/obj/structure/table/steel, +/obj/random/contraband, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/portfore) +"IQ" = ( +/obj/machinery/porta_turret/ai_defense, +/turf/simulated/floor/bluegrid, +/area/ai) +"IR" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/portdock) +"IS" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/angled_bay/hatch{ + name = "Clown and Mime Office"; + req_one_access = list(138,136); + stripe_color = "#454545" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor, +/area/stellardelight/deck3/clownmimeoffice) +"IU" = ( +/obj/machinery/hologram/holopad, +/obj/structure/sign/warning/secure_area{ + pixel_y = 32 + }, +/turf/simulated/floor/bluegrid, +/area/ai) +"IV" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/open, +/area/stellardelight/deck2/fore) +"IW" = ( +/obj/machinery/status_display{ + pixel_x = 32 + }, +/obj/structure/closet/emcloset, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/aft) +"IY" = ( +/obj/machinery/airlock_sensor{ + dir = 8; + id_tag = "portmaint_sensor"; + pixel_x = 24; + req_access = list(13) + }, +/turf/simulated/floor/airless, +/area/maintenance/stellardelight/deck3/portcent) +"IZ" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/aft) +"Ja" = ( +/obj/machinery/door/airlock/angled_bay/external/glass{ + frequency = 1379; + id_tag = "starmaint_interior"; + locked = 1; + name = "Exterior Airlock" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1379; + master_tag = "starmaint_airlock"; + name = "interior access button"; + pixel_x = 32; + req_access = null; + req_one_access = list(13) + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled/steel_ridged, +/area/maintenance/stellardelight/deck3/starboardcent) +"Jc" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/landmark{ + name = "morphspawn" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/stellardelight/deck3/foreportroomb) +"Jd" = ( +/obj/structure/closet/lawcloset, +/obj/structure/sign/poster{ + dir = 8 + }, +/obj/machinery/newscaster{ + pixel_y = 28 + }, +/turf/simulated/floor/tiled/dark, +/area/lawoffice) +"Jg" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/bluegrid, +/area/ai) +"Jh" = ( +/turf/space, +/area/space) +"Ji" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/machinery/power/apc/angled{ + dir = 8; + name = "night shift APC"; + nightshift_setting = 2 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/portfore) +"Jj" = ( +/obj/structure/sign/painting/library_secure{ + pixel_x = 30 + }, +/turf/simulated/floor/carpet/tealcarpet, +/area/crew_quarters/heads/cmo) +"Jk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/transitgateway) +"Jm" = ( +/obj/structure/barricade/cutout/clown, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/stellardelight/deck3/clownmimeoffice) +"Jn" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/hatch{ + dir = 4; + name = "maintenance access"; + stripe_color = "#454545" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/maintenance/stellardelight/deck3/foreportrooma) +"Jo" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/starboarddock) +"Js" = ( +/obj/structure/table/darkglass, +/obj/item/device/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 24 + }, +/obj/item/device/flashlight/lamp/green{ + pixel_x = 5; + pixel_y = -5 + }, +/obj/item/weapon/paper_bin, +/obj/item/weapon/pen/blade/red{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/weapon/pen, +/obj/item/weapon/pen/blue{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/lawoffice) +"Ju" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor, +/area/stellardelight/deck2/port) +"Jv" = ( +/obj/machinery/computer/aifixer, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/heads/hor) +"Jx" = ( +/turf/simulated/wall/bay/r_wall/steel, +/area/maintenance/stellardelight/deck3/forestarrooma) +"Jz" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/blue{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/angled_bay/secure{ + name = "AI Core"; + req_access = list(16) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/steel_ridged, +/area/ai) +"JA" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/external/glass{ + frequency = 1380; + id_tag = null; + locked = 1; + name = "Docking Port Airlock" + }, +/obj/effect/map_helper/airlock/door/ext_door, +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1380; + master_tag = "sd_escape_center_left"; + pixel_x = -32; + req_one_access = list(13) + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck3/aft) +"JE" = ( +/obj/machinery/power/apc/angled{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/drinks/glass2/square{ + pixel_x = 8; + pixel_y = 8 + }, +/obj/item/weapon/reagent_containers/food/drinks/glass2/square{ + pixel_x = 8; + pixel_y = 8 + }, +/obj/item/weapon/reagent_containers/food/drinks/glass2/square{ + pixel_x = 8; + pixel_y = 8 + }, +/obj/item/weapon/reagent_containers/glass/rag, +/turf/simulated/floor/lino, +/area/stellardelight/deck3/cafe) +"JJ" = ( +/obj/machinery/computer/aifixer, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai_cyborg_station) +"JK" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/ai_cyborg_station) +"JO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai_cyborg_station) +"JP" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/blue{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/angled_bay/secure{ + name = "AI Upload"; + req_access = list(16) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_ridged, +/area/ai_upload) +"JQ" = ( +/obj/structure/cable/blue{ + icon_state = "1-2" + }, +/obj/machinery/turretid/stun{ + control_area = /area/ai_upload; + name = "AI Upload turret control"; + pixel_x = -32; + pixel_y = 30 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai_upload) +"JR" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/portdock) +"JS" = ( +/obj/machinery/embedded_controller/radio/docking_port_multi{ + child_names_txt = "Port;Center Left;Center Right;Starboard"; + child_tags_txt = "sd_escape_port;sd_escape_center_left;sd_escape_center_right;sd_escape_starboard"; + dir = 1; + frequency = 1380; + id_tag = "escape_dock"; + pixel_y = -18; + req_one_access = list(13) + }, +/obj/effect/landmark/arrivals, +/turf/simulated/floor/glass/reinforced, +/area/stellardelight/deck3/aft) +"JU" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/rcd, +/obj/item/weapon/rcd_ammo, +/obj/item/weapon/rcd_ammo, +/obj/item/weapon/rcd_ammo, +/obj/item/weapon/rcd_ammo, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/chief) +"JW" = ( +/obj/random/trash_pile, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/portaft) +"JY" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/stellardelight/deck3/foreportroomb) +"JZ" = ( +/obj/effect/floor_decal/spline/plain, +/obj/structure/table/bench/marble, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/lino, +/area/stellardelight/deck3/cafe) +"Kb" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/starboarddock) +"Ke" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 6 + }, +/turf/simulated/wall/fancy_shuttle{ + fancy_shuttle_tag = "sdboat" + }, +/area/shuttle/sdboat/aft{ + base_turf = /turf/simulated/floor/reinforced/airless + }) +"Kf" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/machinery/camera/network/halls{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/aft) +"Kg" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/bed/chair/sofa/corp/left{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/portfore) +"Ki" = ( +/obj/machinery/computer/ship/navigation/telescreen{ + pixel_x = 32 + }, +/obj/machinery/power/shield_generator/charged, +/obj/structure/cable, +/turf/simulated/floor, +/area/stellardelight/deck2/central) +"Kj" = ( +/obj/machinery/computer/shuttle_control/explore/sdboat{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/power/apc{ + pixel_y = -28; + req_access = null; + req_one_access = list(11, 67) + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "sdboat" + }, +/turf/simulated/floor/tiled, +/area/shuttle/sdboat/fore{ + base_turf = /turf/simulated/floor/reinforced/airless + }) +"Kk" = ( +/obj/structure/table/steel, +/obj/random/maintenance/clean, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/aftstarroom) +"Ko" = ( +/obj/effect/landmark/tram, +/obj/machinery/camera/network/halls{ + dir = 1 + }, +/turf/simulated/floor/glass/reinforced, +/area/stellardelight/deck3/aft) +"Kq" = ( +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance/engineering, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/starboardfore) +"Kr" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/wall/bay/r_wall/steel, +/area/maintenance/stellardelight/deck3/forestarrooma) +"Ks" = ( +/obj/structure/cable/blue{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor, +/area/stellardelight/deck2/starboard) +"Kt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/starboardaft) +"Kv" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/closet/emergsuit_wall{ + dir = 8; + pixel_x = -27 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/starboarddock) +"Kw" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/dark/gray_platform, +/area/stellardelight/deck3/commandhall) +"Kx" = ( +/obj/structure/cable/blue{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai_cyborg_station) +"Ky" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/machinery/light, +/turf/simulated/floor/glass/reinforced, +/area/stellardelight/deck3/aft) +"Kz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/closet/emcloset, +/obj/random/contraband, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/obj/random/maintenance/cargo, +/obj/random/mre, +/obj/random/mre, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/starboardaft) +"KD" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/starboardaft) +"KF" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/open, +/area/stellardelight/deck2/fore) +"KG" = ( +/obj/structure/table/alien{ + name = "fancy table" + }, +/obj/item/weapon/cartridge/signal/science, +/obj/item/weapon/cartridge/signal/science, +/obj/item/clothing/glasses/welding/superior, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/heads/hor) +"KH" = ( +/obj/structure/cable/blue{ + icon_state = "1-2" + }, +/obj/machinery/camera/network/command{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai) +"KI" = ( +/turf/simulated/floor/wood, +/area/stellardelight/deck3/readingroom) +"KJ" = ( +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/starboardaft) +"KL" = ( +/obj/machinery/power/apc/angled{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/portdock) +"KM" = ( +/obj/machinery/alarm/angled{ + dir = 4 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/ai) +"KQ" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/portfore) +"KS" = ( +/obj/structure/cable/blue{ + icon_state = "4-8" + }, +/obj/structure/cable/blue{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai_upload) +"KT" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/portdock) +"KU" = ( +/obj/machinery/camera/network/command, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai_cyborg_station) +"KV" = ( +/obj/structure/table/steel, +/obj/random/contraband, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/forestarrooma) +"KW" = ( +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/portfore) +"KY" = ( +/obj/structure/cable/blue{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai) +"Lb" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/ai_cyborg_station) +"Ld" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/starboardaft) +"Le" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/flora/pottedplant/minitree, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/aft) +"Lf" = ( +/obj/structure/sign/warning/falling{ + pixel_x = -32 + }, +/turf/simulated/open, +/area/stellardelight/deck2/starboard) +"Lh" = ( +/obj/machinery/hologram/holopad, +/obj/structure/cable/blue{ + icon_state = "4-8" + }, +/obj/structure/cable/blue{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/camera/network/telecom{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tcommsat/computer) +"Lm" = ( +/obj/item/device/paicard, +/obj/structure/table/glass, +/obj/machinery/camera/network/civilian{ + dir = 8 + }, +/obj/random/coin/sometimes, +/turf/simulated/floor/wood, +/area/stellardelight/deck3/readingroom) +"Ln" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/starboardfore) +"Lr" = ( +/obj/effect/shuttle_landmark/premade/sd/deck3/starboardairlock, +/turf/space, +/area/space) +"Lv" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/lawoffice) +"Lw" = ( +/obj/effect/floor_decal/spline/plain, +/obj/structure/table/bench/marble, +/turf/simulated/floor/lino, +/area/stellardelight/deck3/cafe) +"Lx" = ( +/obj/effect/landmark{ + name = "JoinLateCyborg" + }, +/obj/machinery/camera/network/command{ + dir = 10 + }, +/obj/effect/landmark/start/cyborg, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai_cyborg_station) +"Ly" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/starboardaft) +"Lz" = ( +/obj/machinery/newscaster{ + pixel_x = 30 + }, +/turf/simulated/floor/tiled/eris/dark/gray_platform, +/area/stellardelight/deck3/commandhall) +"LC" = ( +/obj/machinery/holoplant, +/obj/structure/sign/warning/secure_area{ + pixel_y = 32 + }, +/obj/machinery/camera/network/command{ + dir = 9 + }, +/turf/simulated/floor/bluegrid, +/area/ai_upload) +"LD" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/portaft) +"LI" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/effect/floor_decal/shuttles, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/starboarddock) +"LJ" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/foreportrooma) +"LK" = ( +/obj/structure/table/bench/padded, +/obj/structure/sign/painting/public{ + pixel_y = -30 + }, +/obj/machinery/alarm/angled{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/stellardelight/deck3/cafe) +"LO" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "sdboat" + }, +/turf/simulated/floor/tiled, +/area/shuttle/sdboat/aft{ + base_turf = /turf/simulated/floor/reinforced/airless + }) +"LP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/aft) +"LQ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/closet/emergsuit_wall{ + dir = 4; + pixel_x = 27 + }, +/obj/effect/landmark/vines, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/starboarddock) +"LR" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1379; + id_tag = "starmaint_airpump" + }, +/turf/simulated/floor/airless, +/area/maintenance/stellardelight/deck3/starboardcent) +"LS" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/hatch{ + name = "maintenance access"; + stripe_color = "#454545" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/holodeck_control) +"LT" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/angled_bay/hatch{ + dir = 4; + name = "maintenance access"; + stripe_color = "#454545" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/maintenance/stellardelight/deck3/portaft) +"LV" = ( +/obj/structure/table/steel, +/obj/machinery/chemical_dispenser/bar_soft/full, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/forestarrooma) +"LW" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck3/exterior) +"LY" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/starboardaft) +"Mc" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/ladder, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/forestarrooma) +"Mg" = ( +/obj/item/device/camera, +/obj/item/device/camera_film, +/obj/item/device/taperecorder, +/obj/item/device/tape/random, +/obj/item/device/tape/random, +/obj/item/weapon/storage/secure/briefcase, +/obj/structure/closet/walllocker_double/west, +/turf/simulated/floor/tiled/dark, +/area/lawoffice) +"Mi" = ( +/obj/effect/floor_decal/corner_techfloor_grid{ + dir = 5 + }, +/obj/effect/floor_decal/corner_techfloor_grid{ + dir = 10 + }, +/obj/machinery/power/apc/angled{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck3/cryo) +"Mk" = ( +/obj/structure/lattice, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/open, +/area/stellardelight/deck2/port) +"Ml" = ( +/obj/structure/table/darkglass, +/obj/item/weapon/stamp/denied{ + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/weapon/stamp/internalaffairs, +/turf/simulated/floor/tiled/dark, +/area/lawoffice) +"Mo" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4; + frequency = 1380; + id_tag = null + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/obj/machinery/airlock_sensor{ + frequency = 1380; + id_tag = null; + pixel_y = -25 + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + frequency = 1380; + id_tag = "sd_port_landing"; + pixel_y = 29 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/portdock) +"Mp" = ( +/obj/machinery/power/breakerbox/activated{ + RCon_tag = "AI/Telecomms Substation Bypass" + }, +/turf/simulated/floor, +/area/ai_cyborg_station) +"Mr" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/clowndouble, +/obj/structure/curtain/black{ + color = "#361447" + }, +/turf/simulated/floor/carpet/gaycarpet, +/area/stellardelight/deck3/clownmimeoffice) +"Ms" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/stamp/hop, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/pen/multi, +/obj/item/device/flashlight/lamp/green{ + pixel_x = 3; + pixel_y = 18 + }, +/obj/item/weapon/book/manual/sd_guide, +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hop) +"Mu" = ( +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/power/apc/angled{ + dir = 4; + name = "night shift APC"; + nightshift_setting = 2 + }, +/obj/structure/table/steel, +/obj/random/maintenance/medical, +/obj/random/maintenance/medical, +/obj/random/maintenance/security, +/obj/random/maintenance/clean, +/obj/random/maintenance, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/starboardfore) +"Mv" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/landmark/vines, +/turf/simulated/open, +/area/stellardelight/deck2/fore) +"Mw" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/turf/simulated/floor/airless, +/area/maintenance/stellardelight/deck3/starboardcent) +"Mx" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/aft) +"My" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/portcent) +"MA" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/simulated/wall/bay/r_wall/blue, +/area/maintenance/stellardelight/deck3/portaft) +"MB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/obj/random/trash_pile, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/starboardaft) +"MC" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/emblem/nt3, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/aft) +"ME" = ( +/obj/structure/sign/poster{ + dir = 1 + }, +/obj/random/vendordrink, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/aft) +"MF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor, +/area/stellardelight/deck2/central) +"MG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/crew_quarters/heads/hor) +"MH" = ( +/obj/structure/table/steel, +/obj/random/maintenance/clean, +/obj/random/snack, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/aftstarroom) +"MI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"MJ" = ( +/obj/machinery/pointdefense_control{ + id_tag = "sd_pd" + }, +/turf/simulated/floor/bluegrid, +/area/ai_server_room) +"MK" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/ai) +"MN" = ( +/obj/structure/closet/secure_closet/hos2, +/obj/item/clothing/accessory/permit/gun, +/obj/item/clothing/accessory/permit/gun, +/obj/item/clothing/accessory/permit/gun, +/obj/item/clothing/accessory/permit/gun, +/obj/item/clothing/accessory/permit/gun, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/item/device/retail_scanner/security, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/hos) +"MO" = ( +/obj/structure/cable/blue{ + icon_state = "4-8" + }, +/turf/simulated/floor/bluegrid{ + name = "Mainframe Base"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"MP" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/foreportrooma) +"MR" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/portcent) +"MU" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/effect/floor_decal/arrivals, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/aft) +"MV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai) +"MW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/starboardaft) +"MX" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "sdboat" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/shuttle/sdboat/aft{ + base_turf = /turf/simulated/floor/reinforced/airless + }) +"MZ" = ( +/obj/machinery/alarm/angled{ + dir = 8 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/foreportroomb) +"Nc" = ( +/obj/effect/floor_decal/corner_techfloor_grid{ + dir = 5 + }, +/obj/effect/floor_decal/corner_techfloor_grid{ + dir = 10 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck3/cryo) +"Nd" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/landmark/vines, +/turf/simulated/open, +/area/stellardelight/deck2/port) +"Ne" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/starboardaft) +"Nf" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/stellardelight/deck3/commandhall) +"Nh" = ( +/obj/structure/cable/blue{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor, +/area/stellardelight/deck2/starboard) +"Ni" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/starboarddock) +"Nj" = ( +/obj/structure/cable/blue{ + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/forestarrooma) +"Nk" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/structure/sign/nanotrasen{ + pixel_x = -32 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/portdock) +"Nm" = ( +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai_server_room) +"Nq" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/portdock) +"Ns" = ( +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/portfore) +"Nx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/camera/network/halls{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/starboarddock) +"Ny" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/starboarddock) +"Nz" = ( +/obj/structure/table/rack, +/obj/random/contraband, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/forestarrooma) +"NE" = ( +/obj/structure/table/rack, +/obj/random/contraband, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/portaft) +"NF" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/open, +/area/crew_quarters/bar) +"NG" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/foreportroomb) +"NI" = ( +/obj/structure/lattice, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/open, +/area/stellardelight/deck2/port) +"NJ" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/standard/color{ + dir = 4; + door_color = "#9c9c9c"; + fill_color = "#5c5c5c"; + id_tag = "readingroom2"; + name = "Room 2"; + stripe_color = "#89bd66" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck3/readingroom) +"NK" = ( +/obj/structure/sign/vacuum, +/turf/simulated/wall/bay/r_wall/steel, +/area/maintenance/stellardelight/deck3/portcent) +"NL" = ( +/turf/simulated/floor/airless, +/area/stellardelight/deck3/exterior) +"NN" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/door/airlock/angled_bay/hatch{ + dir = 4; + name = "maintenance access"; + stripe_color = "#454545" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck3/aft) +"NO" = ( +/obj/structure/table/reinforced, +/obj/item/device/flashlight/lamp, +/obj/item/device/radio/intercom{ + dir = 1; + frequency = 1357; + name = "station intercom (Engineering)"; + pixel_y = 24 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/item/clothing/glasses/welding/superior, +/obj/item/clothing/glasses/meson, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/chief) +"NP" = ( +/obj/machinery/camera/network/command{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai) +"NQ" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1379; + master_tag = "portmaint_airlock"; + name = "exterior access button"; + pixel_y = 32; + req_access = null; + req_one_access = list(13) + }, +/obj/machinery/door/airlock/angled_bay/external/glass{ + dir = 4; + frequency = 1379; + id_tag = "portmaint_exterior"; + locked = 1; + name = "Exterior Airlock" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/maintenance/stellardelight/deck3/portcent) +"NR" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/double{ + name = "maintenance access"; + stripe_color = "#454545" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/portaft) +"NS" = ( +/obj/machinery/atmospherics/unary/engine/fancy_shuttle{ + dir = 1 + }, +/turf/simulated/wall/fancy_shuttle{ + fancy_shuttle_tag = "sdboat" + }, +/area/shuttle/sdboat/aft{ + base_turf = /turf/simulated/floor/reinforced/airless + }) +"NT" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/holodeck_control) +"NU" = ( +/obj/machinery/alarm/angled{ + dir = 4 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/aftstarroom) +"NW" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai_cyborg_station) +"NX" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/access_button{ + command = "cycle_interior"; + dir = 8; + frequency = 1380; + master_tag = "sd_starboard_landing"; + pixel_y = 32; + req_one_access = list(13) + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/angled_bay/external/glass{ + dir = 4; + frequency = 1380; + id_tag = null; + locked = 1; + name = "Docking Port Airlock" + }, +/obj/effect/map_helper/airlock/door/int_door, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck3/starboarddock) +"NZ" = ( +/obj/item/weapon/bedsheet/mimedouble, +/obj/structure/bed/double/padded, +/obj/structure/curtain/black, +/turf/simulated/floor/carpet/bcarpet, +/area/stellardelight/deck3/clownmimeoffice) +"Oa" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/sign/poster{ + dir = 8 + }, +/turf/simulated/floor, +/area/stellardelight/deck2/fore) +"Ob" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 10 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck3/transitgateway) +"Oc" = ( +/obj/structure/sign/warning/docking_area{ + pixel_x = 32 + }, +/turf/simulated/floor/reinforced/airless, +/area/stellardelight/deck3/exterior) +"Od" = ( +/turf/simulated/floor/airless, +/area/maintenance/stellardelight/deck3/portcent) +"Oe" = ( +/obj/machinery/holoplant, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tcommsat/computer) +"Of" = ( +/obj/machinery/status_display{ + pixel_x = -32 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/aft) +"Og" = ( +/obj/machinery/recharge_station, +/obj/structure/closet/emergsuit_wall{ + pixel_y = 29 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/portdock) +"Oj" = ( +/obj/machinery/telecomms/bus/preset_one, +/turf/simulated/floor/tiled/dark{ + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"Ol" = ( +/turf/simulated/wall/durasteel, +/area/ai) +"Oo" = ( +/obj/machinery/alarm/angled{ + dir = 8 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/foreportrooma) +"Op" = ( +/obj/machinery/power/pointdefense{ + id_tag = "sd_pd" + }, +/obj/effect/floor_decal/industrial/warning/full, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck3/exterior) +"Oq" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/simulated/floor/glass/reinforced, +/area/stellardelight/deck3/aft) +"Or" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/portdock) +"Ot" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/effect/landmark/start/rd, +/turf/simulated/floor/carpet/purcarpet, +/area/crew_quarters/heads/hor) +"Ou" = ( +/obj/item/device/radio/beacon, +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/aft) +"Ov" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai_server_room) +"Ow" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/blue{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/angled_bay/secure{ + dir = 4; + name = "Telecoms Access"; + req_one_access = list(10,12,16,17,61) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/ai_server_room) +"Ox" = ( +/obj/structure/cable/blue{ + icon_state = "1-2" + }, +/obj/structure/cable/blue{ + icon_state = "2-8" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck3/exterior) +"Oy" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/door/window{ + req_one_access = list(25) + }, +/turf/simulated/floor/lino, +/area/stellardelight/deck3/cafe) +"Oz" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/structure/low_wall/bay/reinforced/steel, +/turf/simulated/floor, +/area/stellardelight/deck3/cafe) +"OA" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/wall/bay/r_wall/blue, +/area/ai_cyborg_station) +"OC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/door/airlock/angled_bay/hatch{ + frequency = null; + id_tag = null; + locked = 1; + name = "Telecoms Server Access"; + req_access = list(61); + stripe_color = "#ffd863" + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/blue{ + icon_state = "1-2" + }, +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1380; + master_tag = "tcommsairlock"; + pixel_x = 32; + req_one_access = list(61) + }, +/obj/effect/map_helper/airlock/door/int_door, +/turf/simulated/floor/tiled/steel_ridged, +/area/tcommsat/computer) +"OD" = ( +/obj/structure/table/rack/steel, +/obj/machinery/door/window/brigdoor/eastleft{ + dir = 1; + name = "Protosuit Storage"; + req_access = list(58) + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/clothing/mask/breath, +/obj/item/weapon/tank/oxygen, +/obj/item/device/suit_cooling_unit, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/suit/space/void/security/prototype, +/obj/item/clothing/head/helmet/space/void/security/prototype, +/obj/structure/window/reinforced, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/hos) +"OE" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/open, +/area/stellardelight/deck2/starboard) +"OF" = ( +/obj/effect/landmark{ + name = "morphspawn" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/foreportrooma) +"OG" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/starboardcent) +"OI" = ( +/obj/structure/cable/blue{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/blue{ + icon_state = "1-4" + }, +/turf/simulated/floor, +/area/stellardelight/deck2/starboard) +"OJ" = ( +/obj/structure/cable/blue{ + icon_state = "1-4" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck3/exterior) +"OK" = ( +/obj/structure/closet/lawcloset, +/obj/structure/sign/poster{ + dir = 4 + }, +/obj/machinery/newscaster{ + pixel_y = 28 + }, +/turf/simulated/floor/tiled/dark, +/area/lawoffice) +"OM" = ( +/obj/structure/cable/blue{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/table/rack/shelf, +/obj/random/contraband, +/obj/random/maintenance, +/obj/random/maintenance/medical, +/obj/random/maintenance/medical, +/obj/random/maintenance/engineering, +/obj/random/maintenance/security, +/obj/random/maintenance/security, +/obj/random/snack, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/starboardcent) +"ON" = ( +/obj/structure/cable/blue{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/airless, +/area/maintenance/stellardelight/deck3/starboardcent) +"OP" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/open, +/area/crew_quarters/bar) +"OQ" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/open, +/area/crew_quarters/bar) +"OR" = ( +/obj/machinery/power/apc/angled{ + dir = 4; + name = "night shift APC"; + nightshift_setting = 2 + }, +/obj/structure/cable/blue{ + icon_state = "0-8" + }, +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/random/maintenance/engineering, +/obj/random/maintenance/engineering, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/stellardelight/deck3/forestarroomb) +"OS" = ( +/obj/machinery/computer/drone_control{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai_cyborg_station) +"OU" = ( +/turf/simulated/wall/bay/r_wall/steel, +/area/stellardelight/deck3/cryo) +"OV" = ( +/obj/structure/closet/walllocker_double/west, +/turf/simulated/floor/tiled/eris/white/cargo, +/area/crew_quarters/heads/cmo) +"OX" = ( +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/portcent) +"OY" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/landmark/vines, +/turf/simulated/open, +/area/stellardelight/deck2/starboard) +"Pa" = ( +/obj/structure/lattice, +/turf/simulated/open, +/area/stellardelight/deck2/starboard) +"Pc" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/aft) +"Pd" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/blue{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/door/airlock/angled_bay/hatch{ + dir = 4; + name = "maintenance access"; + stripe_color = "#454545" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/maintenance/stellardelight/deck3/starboardcent) +"Pe" = ( +/obj/machinery/keycard_auth{ + pixel_y = 28 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/alarm/angled{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/hos) +"Pj" = ( +/obj/structure/cable/blue{ + icon_state = "1-2" + }, +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai_upload) +"Pl" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass{ + name = "Starstuff Cockpit"; + req_one_access = list(67) + }, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "sdboat" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/shuttle/sdboat/fore{ + base_turf = /turf/simulated/floor/reinforced/airless + }) +"Pm" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor, +/area/stellardelight/deck2/port) +"Po" = ( +/obj/structure/sign/nanotrasen{ + pixel_y = 30 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/lawoffice) +"Pp" = ( +/obj/effect/landmark/start/clown, +/turf/simulated/floor/carpet/gaycarpet, +/area/stellardelight/deck3/clownmimeoffice) +"Pq" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/stellardelight/deck3/foreportrooma) +"Ps" = ( +/obj/machinery/space_heater, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/forestarroomb) +"Px" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/computer/cryopod/gateway{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/transitgateway) +"PA" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/machinery/camera/network/halls{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/aft) +"PB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/wall/fancy_shuttle{ + fancy_shuttle_tag = "sdboat" + }, +/area/shuttle/sdboat/aft{ + base_turf = /turf/simulated/floor/reinforced/airless + }) +"PC" = ( +/obj/machinery/alarm/angled{ + dir = 4 + }, +/obj/structure/cable/blue{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/lawoffice) +"PD" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/portdock) +"PE" = ( +/obj/structure/sign/department/ai{ + pixel_y = 32 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/aft) +"PJ" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/window/northleft{ + dir = 8; + icon_state = "right"; + name = "Reception Window" + }, +/obj/machinery/door/window/brigdoor/eastright{ + name = "Head of Personnel's Desk"; + req_access = list(57) + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "hop_office_desk"; + layer = 3.1; + name = "HoP's Shutters" + }, +/obj/structure/low_wall/bay/reinforced/blue, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"PL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled/monotile, +/area/stellardelight/deck3/commandhall) +"PR" = ( +/obj/structure/table/glass, +/obj/item/device/flashlight/lamp/green{ + pixel_x = -4; + pixel_y = 12 + }, +/obj/item/weapon/stamp/cmo, +/obj/item/weapon/book/manual/sd_guide, +/turf/simulated/floor/carpet/tealcarpet, +/area/crew_quarters/heads/cmo) +"PT" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck3/exterior) +"PV" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/foreportrooma) +"PW" = ( +/obj/effect/landmark{ + name = "JoinLateCyborg" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/landmark/start/cyborg, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai_cyborg_station) +"PX" = ( +/obj/structure/closet/emcloset, +/obj/structure/sign/painting/public{ + pixel_x = 30 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/aft) +"Qe" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/obj/effect/overmap/visitable/ship/landable/sd_boat, +/obj/effect/shuttle_landmark/shuttle_initializer/sdboat, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "sdboat" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/shuttle/sdboat/aft{ + base_turf = /turf/simulated/floor/reinforced/airless + }) +"Qf" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/effect/landmark/start/ce, +/turf/simulated/floor/carpet/oracarpet, +/area/crew_quarters/heads/chief) +"Qh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 5 + }, +/turf/simulated/wall/fancy_shuttle{ + fancy_shuttle_tag = "sdboat" + }, +/area/shuttle/sdboat/aft{ + base_turf = /turf/simulated/floor/reinforced/airless + }) +"Qi" = ( +/obj/structure/sign/painting/public{ + pixel_x = -30 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/stellardelight/deck3/cafe) +"Qm" = ( +/obj/structure/cable/blue{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai_server_room) +"Qn" = ( +/obj/structure/window/reinforced{ + dir = 8; + pixel_x = -4 + }, +/turf/simulated/open, +/area/stellardelight/deck3/aft) +"Qo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light_switch{ + pixel_y = 25 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"Qp" = ( +/turf/simulated/wall/bay/r_wall/steel, +/area/crew_quarters/bar) +"Qs" = ( +/obj/structure/cable/cyan{ + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/bluegrid, +/area/ai) +"Qu" = ( +/obj/structure/sink/kitchen{ + pixel_y = 22 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/alarm/angled{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/holodeck_control) +"Qv" = ( +/obj/structure/table/rack, +/obj/random/contraband, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance/cargo, +/obj/random/maintenance/clean, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/aftstarroom) +"Qx" = ( +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/aft) +"QB" = ( +/obj/structure/railing/grey{ + dir = 8 + }, +/turf/simulated/open, +/area/stellardelight/deck3/commandhall) +"QC" = ( +/obj/machinery/camera/network/telecom, +/turf/simulated/floor/bluegrid{ + name = "Mainframe Base"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"QE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled/monotile, +/area/stellardelight/deck3/commandhall) +"QF" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/open, +/area/stellardelight/deck2/port) +"QG" = ( +/obj/structure/cable/blue{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai) +"QI" = ( +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/bluegrid, +/area/ai_cyborg_station) +"QJ" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/external/glass{ + frequency = 1380; + id_tag = null; + locked = 1; + name = "Docking Port Airlock" + }, +/obj/effect/map_helper/airlock/door/ext_door, +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1380; + master_tag = "sd_escape_center_right"; + pixel_x = 32; + req_one_access = list(13) + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck3/aft) +"QK" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 8 + }, +/obj/machinery/alarm/angled{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/stellardelight/deck3/readingroom) +"QL" = ( +/obj/structure/cable/blue{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai_cyborg_station) +"QP" = ( +/obj/structure/cable/blue{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/blue{ + icon_state = "1-4" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/starboardcent) +"QS" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/turf/simulated/floor/airless, +/area/maintenance/stellardelight/deck3/portcent) +"QT" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/standard/glass{ + door_color = "#323d80"; + name = "Command Offices"; + req_access = null; + req_one_access = list(19,38); + stripe_color = "#f7d35c" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck3/commandhall) +"QV" = ( +/obj/structure/cable/blue{ + icon_state = "2-8" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/starboardfore) +"QW" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/simulated/floor/carpet/gaycarpet, +/area/stellardelight/deck3/clownmimeoffice) +"QZ" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/starboarddock) +"Rc" = ( +/obj/machinery/porta_turret/ai_defense, +/obj/structure/cable/cyan{ + icon_state = "1-2" + }, +/turf/simulated/floor/bluegrid, +/area/ai) +"Rd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 6 + }, +/turf/simulated/floor/bluegrid{ + name = "Mainframe Base"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"Rg" = ( +/obj/structure/lattice, +/turf/simulated/open, +/area/maintenance/stellardelight/deck3/forestarroomb) +"Rh" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/wall/bay/r_wall/steel, +/area/maintenance/stellardelight/deck3/forestarrooma) +"Ri" = ( +/obj/structure/cable/blue{ + icon_state = "1-2" + }, +/obj/random/trash_pile, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/starboardfore) +"Rj" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/angled_bay/standard/glass{ + name = "maintenance access" + }, +/obj/structure/cable/blue{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck2/starboard) +"Rl" = ( +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 4; + name = "Command Offices"; + sortType = "Command Offices" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/tiled/monotile, +/area/stellardelight/deck3/commandhall) +"Rn" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/structure/low_wall/bay/reinforced/blue, +/turf/simulated/floor, +/area/crew_quarters/heads/hop) +"Ro" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/door/airlock/angled_bay/standard/glass/common{ + dir = 4; + name = "Long-Range Teleporter Access" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck3/transitgateway) +"Rq" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/starboardaft) +"Ru" = ( +/obj/machinery/holoplant, +/obj/machinery/camera/network/command{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai_upload) +"Rv" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/aft) +"Rw" = ( +/obj/machinery/door/firedoor/glass/hidden/shuttle, +/obj/structure/window/fancy_shuttle{ + fancy_shuttle_tag = "sdboat" + }, +/turf/simulated/floor/reinforced/airless, +/area/shuttle/sdboat/aft{ + base_turf = /turf/simulated/floor/reinforced/airless + }) +"Rx" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck3/exterior) +"Rz" = ( +/obj/structure/lattice, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/open, +/area/stellardelight/deck2/starboard) +"RE" = ( +/turf/simulated/wall/bay/r_wall/steel, +/area/maintenance/stellardelight/deck3/starboardfore) +"RG" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/open, +/area/stellardelight/deck2/starboard) +"RH" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 1 + }, +/obj/machinery/power/apc/angled{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck3/transitgateway) +"RI" = ( +/turf/simulated/open, +/area/stellardelight/deck3/aft) +"RK" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/starboardfore) +"RL" = ( +/turf/simulated/wall/bay/r_wall/steel, +/area/maintenance/stellardelight/deck3/foreportroomb) +"RM" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/portcent) +"RN" = ( +/obj/structure/sign/directions/evac{ + pixel_x = 32 + }, +/obj/structure/closet/firecloset, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/aft) +"RQ" = ( +/obj/structure/table/standard, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/bluegrid, +/area/ai_cyborg_station) +"RT" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/hatch{ + dir = 4; + door_color = "#e6ab22"; + name = "Shield Generator"; + req_access = null; + req_one_access = list(11,24); + stripe_color = "#e6ab22" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck2/central) +"RW" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/machinery/door/window/southright{ + dir = 1; + req_one_access = list(11,67) + }, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "sdboat" + }, +/turf/simulated/floor/tiled, +/area/shuttle/sdboat/aft{ + base_turf = /turf/simulated/floor/reinforced/airless + }) +"RX" = ( +/turf/simulated/wall/bay/steel, +/area/stellardelight/deck2/central) +"RY" = ( +/obj/structure/bed/chair/shuttle{ + dir = 1 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "sdboat" + }, +/turf/simulated/floor/tiled, +/area/shuttle/sdboat/aft{ + base_turf = /turf/simulated/floor/reinforced/airless + }) +"RZ" = ( +/obj/structure/cable/blue{ + icon_state = "1-2" + }, +/obj/structure/sign/warning/caution{ + desc = "This secure area is guarded by LETHAL LASER TURRETS. Authorized personnel ONLY."; + name = "\improper WARNING: LETHAL TURRETS AHEAD"; + pixel_x = -32 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai_server_room) +"Sb" = ( +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/stellardelight/deck3/forestarrooma) +"Se" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/airless, +/area/stellardelight/deck3/exterior) +"Sf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/aft) +"Sh" = ( +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/foreportrooma) +"Sk" = ( +/obj/structure/table/standard, +/obj/item/weapon/phone{ + pixel_x = 3; + pixel_y = 11 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/alarm/angled{ + dir = 8 + }, +/turf/simulated/floor/bluegrid, +/area/ai_cyborg_station) +"Sl" = ( +/obj/structure/sign/warning/evac{ + pixel_x = -32; + pixel_y = -32 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/aft) +"Sm" = ( +/obj/structure/cable/blue{ + icon_state = "1-2" + }, +/turf/simulated/floor/bluegrid{ + name = "Mainframe Base"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"Sn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/portdock) +"Sp" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/foreportrooma) +"Sw" = ( +/obj/machinery/alarm/angled{ + dir = 8 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/portaft) +"Sz" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/portcent) +"SA" = ( +/obj/structure/table/darkglass, +/obj/machinery/computer/skills{ + dir = 8; + pixel_y = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/lawoffice) +"SB" = ( +/obj/machinery/requests_console/preset/ce{ + pixel_x = -30 + }, +/turf/simulated/floor/carpet/oracarpet, +/area/crew_quarters/heads/chief) +"SC" = ( +/obj/structure/sign/warning/docking_area{ + pixel_y = 32 + }, +/turf/simulated/floor/reinforced/airless, +/area/stellardelight/deck3/exterior) +"SD" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/portcent) +"SE" = ( +/obj/machinery/newscaster{ + layer = 3.3; + pixel_x = 27 + }, +/turf/simulated/floor/tiled/dark, +/area/lawoffice) +"SF" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 24 + }, +/obj/machinery/vending/nifsoft_shop, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/aft) +"SJ" = ( +/obj/machinery/door/firedoor/glass/hidden/shuttle, +/obj/structure/window/fancy_shuttle{ + fancy_shuttle_tag = "sdboat" + }, +/turf/simulated/floor/reinforced/airless, +/area/shuttle/sdboat/fore{ + base_turf = /turf/simulated/floor/reinforced/airless + }) +"SK" = ( +/obj/structure/lattice, +/turf/space, +/area/space) +"SL" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/bluegrid, +/area/ai_cyborg_station) +"SN" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/aft) +"SP" = ( +/obj/structure/table/glass, +/obj/machinery/photocopier/faxmachine{ + department = "CMO's Office" + }, +/turf/simulated/floor/tiled/eris/white/cargo, +/area/crew_quarters/heads/cmo) +"SQ" = ( +/obj/machinery/disposal/wall{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile, +/area/stellardelight/deck3/commandhall) +"SR" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/structure/low_wall/bay/reinforced/steel, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/foreportrooma) +"ST" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/portdock) +"SU" = ( +/obj/structure/table/bench/padded, +/obj/structure/sign/painting/public{ + pixel_y = -30 + }, +/turf/simulated/floor/wood, +/area/stellardelight/deck3/cafe) +"SV" = ( +/obj/structure/cable/blue{ + icon_state = "4-8" + }, +/turf/simulated/floor/airless, +/area/maintenance/stellardelight/deck3/starboardcent) +"SZ" = ( +/obj/machinery/power/apc/angled{ + dir = 4 + }, +/obj/structure/cable/blue{ + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/eris/dark/gray_platform, +/area/stellardelight/deck3/commandhall) +"Ta" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/angled_bay/hatch{ + name = "maintenance access"; + stripe_color = "#454545" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/crew_quarters/bar) +"Tc" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/closet/emergsuit_wall{ + dir = 4; + pixel_x = 27 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/portdock) +"Td" = ( +/obj/structure/table/rack/shelf, +/obj/random/contraband, +/obj/random/contraband, +/obj/random/maintenance, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/forestarroomb) +"Te" = ( +/obj/effect/landmark/map_data/stellar_delight, +/turf/space, +/area/space) +"Tf" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/double/glass{ + name = "glass airlock" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck3/aft) +"Ti" = ( +/obj/structure/cable/blue{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/forestarrooma) +"Tj" = ( +/obj/structure/table/reinforced, +/obj/machinery/button/remote/blast_door{ + desc = "A remote control-switch for shutters."; + dir = 4; + id = "hop_office_desk"; + layer = 3.3; + name = "Desk Privacy Shutter"; + pixel_x = -4; + pixel_y = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"Tk" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/structure/cable/blue{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/low_wall/bay/reinforced/blue, +/turf/simulated/floor, +/area/crew_quarters/heads/hop) +"Tl" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 24 + }, +/obj/effect/landmark/start/hop, +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hop) +"Tm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/monotile, +/area/stellardelight/deck3/commandhall) +"Tn" = ( +/obj/structure/cable/blue{ + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/ai_cyborg_station) +"To" = ( +/obj/machinery/keycard_auth{ + pixel_y = 28 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/alarm/angled{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/white/cargo, +/area/crew_quarters/heads/cmo) +"Tp" = ( +/obj/structure/table/glass, +/obj/machinery/light, +/turf/simulated/floor/tiled/eris/white/cargo, +/area/crew_quarters/heads/cmo) +"Tr" = ( +/obj/machinery/drone_fabricator, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai_cyborg_station) +"Ts" = ( +/obj/structure/cable/blue{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/power/apc/angled{ + cell_type = /obj/item/weapon/cell/super; + dir = 8; + name = "night shift APC"; + nightshift_setting = 2 + }, +/obj/structure/cable/blue, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/starboardcent) +"Tv" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/blue{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/angled_bay/standard/color{ + dir = 4; + door_color = "#9fccc7"; + fill_color = "#333333"; + id_tag = null; + name = "Internal Affairs"; + req_access = list(38); + stripe_color = "#ffffff" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/lawoffice) +"Tx" = ( +/obj/machinery/light/small, +/turf/simulated/open, +/area/stellardelight/deck2/central) +"Ty" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor, +/area/ai_cyborg_station) +"TA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/wall/bay/r_wall/steel, +/area/stellardelight/deck3/aft) +"TB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/aft) +"TE" = ( +/obj/machinery/power/pointdefense{ + id_tag = "sd_pd" + }, +/obj/effect/floor_decal/industrial/warning/full, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck3/exterior) +"TF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile, +/area/stellardelight/deck3/commandhall) +"TI" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai) +"TJ" = ( +/obj/structure/sign/department/telecoms{ + pixel_y = 32 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/aft) +"TK" = ( +/obj/structure/cable/cyan{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/bluegrid, +/area/ai) +"TL" = ( +/turf/simulated/floor/bluegrid, +/area/ai) +"TM" = ( +/obj/machinery/turretid/lethal{ + ailock = 1; + control_area = /area/tcommsat/chamber; + desc = "A firewall prevents AIs from interacting with this device."; + name = "Telecoms lethal turret control"; + pixel_y = 29; + req_access = list(61); + req_one_access = list() + }, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai_server_room) +"TO" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/landmark/vermin, +/turf/simulated/floor/tiled/monotile, +/area/stellardelight/deck3/commandhall) +"TP" = ( +/obj/structure/cable/blue{ + icon_state = "4-8" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/starboardfore) +"TS" = ( +/obj/structure/cable/blue{ + icon_state = "4-8" + }, +/obj/structure/cable/blue{ + icon_state = "2-8" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/forestarroomb) +"TV" = ( +/obj/structure/cable/blue{ + icon_state = "4-8" + }, +/obj/structure/cable/blue{ + icon_state = "1-8" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck3/exterior) +"TW" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central5{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/portdock) +"TY" = ( +/obj/structure/cable/blue{ + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai_server_room) +"Ub" = ( +/obj/machinery/vending/boozeomat{ + req_access = null + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/stellardelight/deck3/forestarroomb) +"Uc" = ( +/obj/structure/frame/computer, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/foreportrooma) +"Ud" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/stamp/ce, +/obj/item/weapon/book/manual/sd_guide, +/turf/simulated/floor/carpet/oracarpet, +/area/crew_quarters/heads/chief) +"Ue" = ( +/obj/structure/table/rack, +/obj/random/contraband, +/obj/random/maintenance, +/obj/random/drinkbottle, +/obj/random/maintenance/engineering, +/obj/random/maintenance/engineering, +/obj/random/mre, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/forestarroomb) +"Uf" = ( +/obj/structure/cable/blue{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tcommsat/computer) +"Ug" = ( +/obj/structure/cable/blue{ + icon_state = "4-8" + }, +/turf/simulated/wall/bay/r_wall/steel, +/area/maintenance/stellardelight/deck3/starboardcent) +"Uj" = ( +/obj/structure/cable/blue, +/obj/structure/cable/blue{ + icon_state = "0-2" + }, +/obj/machinery/power/smes/buildable{ + RCon_tag = "Substation - AI/Telecomms"; + output_attempt = 0 + }, +/turf/simulated/floor, +/area/ai_cyborg_station) +"Uk" = ( +/obj/machinery/computer/card, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"Uq" = ( +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/stellardelight/deck3/foreportrooma) +"Uw" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck3/exterior) +"Uy" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/machinery/station_map{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/aft) +"UA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor, +/area/stellardelight/deck2/fore) +"UB" = ( +/obj/structure/cable/blue{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24; + pixel_y = 24 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/hos) +"UD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/turf/simulated/wall/fancy_shuttle{ + fancy_shuttle_tag = "sdboat" + }, +/area/shuttle/sdboat/aft{ + base_turf = /turf/simulated/floor/reinforced/airless + }) +"UF" = ( +/obj/machinery/light/small, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/forestarroomb) +"UG" = ( +/obj/structure/cable/blue{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/blue{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/eris/dark/gray_platform, +/area/stellardelight/deck3/commandhall) +"UH" = ( +/obj/structure/sign/painting/library_secure{ + pixel_x = -30 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hos) +"UI" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/aft) +"UK" = ( +/obj/machinery/camera/network/telecom{ + dir = 4 + }, +/turf/simulated/floor/bluegrid{ + name = "Mainframe Base"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"UL" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/double{ + name = "maintenance access"; + stripe_color = "#454545" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/portfore) +"UO" = ( +/obj/machinery/recharge_station, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/bluegrid, +/area/ai_upload) +"UQ" = ( +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/starboardaft) +"UR" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck3/exterior) +"US" = ( +/obj/structure/lattice, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/open, +/area/crew_quarters/bar) +"UT" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/device/megaphone, +/obj/item/weapon/pen/multi, +/obj/item/device/radio/intercom/department/security{ + dir = 1; + pixel_y = 24 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/hos) +"UU" = ( +/obj/machinery/alarm/angled{ + dir = 4 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/starboardfore) +"UV" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/closet/emergsuit_wall{ + dir = 8; + pixel_x = -27 + }, +/obj/effect/landmark/vines, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/portdock) +"UX" = ( +/obj/machinery/light/small, +/turf/simulated/open, +/area/crew_quarters/bar) +"Va" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/wall/bay/r_wall/steel, +/area/maintenance/stellardelight/deck3/portfore) +"Vb" = ( +/obj/effect/floor_decal/corner_techfloor_grid{ + dir = 5 + }, +/obj/effect/floor_decal/corner_techfloor_grid{ + dir = 10 + }, +/obj/machinery/light/floortube{ + dir = 8; + pixel_x = -3 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/stellardelight/deck3/cryo) +"Vc" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/portdock) +"Ve" = ( +/obj/structure/cable/blue{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24; + pixel_y = 24 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/chief) +"Vg" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/structure/low_wall/bay/reinforced/steel, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/starboardfore) +"Vh" = ( +/obj/machinery/door/firedoor/glass/hidden/shuttle, +/obj/machinery/door/blast/shuttle/open{ + id = "shuttleshutter" + }, +/obj/structure/window/fancy_shuttle{ + fancy_shuttle_tag = "sdboat" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 6 + }, +/turf/simulated/floor/reinforced/airless, +/area/shuttle/sdboat/aft{ + base_turf = /turf/simulated/floor/reinforced/airless + }) +"Vi" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/closet/crate, +/obj/random/contraband, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/item/device/gps, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/forestarrooma) +"Vk" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/landmark/start/mime, +/turf/simulated/floor/carpet/bcarpet, +/area/stellardelight/deck3/clownmimeoffice) +"Vm" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/open, +/area/crew_quarters/bar) +"Vo" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/external/glass{ + dir = 4; + frequency = 1380; + id_tag = null; + locked = 1; + name = "Docking Port Airlock" + }, +/obj/effect/map_helper/airlock/door/ext_door, +/obj/machinery/access_button{ + command = "cycle_exterior"; + dir = 8; + frequency = 1380; + master_tag = "sd_escape_starboard"; + pixel_y = 32; + req_one_access = list(13) + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck3/starboarddock) +"Vp" = ( +/obj/structure/lattice, +/obj/machinery/light/small, +/turf/simulated/open, +/area/stellardelight/deck2/starboard) +"Vq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/monotile, +/area/stellardelight/deck3/commandhall) +"Vr" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/folder/yellow_ce, +/obj/item/weapon/pen/multi, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/chief) +"Vs" = ( +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai) +"Vt" = ( +/obj/item/device/radio/intercom/locked/ai_private{ + dir = 4; + pixel_x = 32 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ai_cyborg_station) +"Vw" = ( +/obj/structure/bed/chair/shuttle{ + dir = 1 + }, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "sdboat" + }, +/turf/simulated/floor/tiled, +/area/shuttle/sdboat/aft{ + base_turf = /turf/simulated/floor/reinforced/airless + }) +"Vx" = ( +/obj/structure/cable/blue{ + icon_state = "1-4" + }, +/obj/effect/landmark{ + name = "maint_pred" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/stellardelight/deck3/forestarroomb) +"Vz" = ( +/obj/machinery/power/pointdefense{ + id_tag = "sd_pd" + }, +/obj/effect/floor_decal/industrial/warning/full, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck3/exterior) +"VB" = ( +/obj/item/weapon/bedsheet/double, +/obj/structure/bed/double/padded, +/obj/structure/curtain/black{ + color = "#156363" + }, +/obj/effect/landmark/start/cmo, +/turf/simulated/floor/carpet/tealcarpet, +/area/crew_quarters/heads/cmo) +"VC" = ( +/turf/simulated/wall/bay/r_wall/blue, +/area/ai_upload) +"VD" = ( +/obj/structure/table/steel, +/obj/random/drinkbottle, +/obj/machinery/chemical_dispenser/bar_alc/full, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/stellardelight/deck3/foreportroomb) +"VE" = ( +/obj/structure/table/glass, +/obj/item/device/radio/intercom/department/medbay{ + dir = 1; + pixel_y = 24 + }, +/obj/item/weapon/paper_bin{ + pixel_x = 3; + pixel_y = 7 + }, +/obj/item/weapon/pen/multi, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/item/weapon/folder/white_cmo, +/turf/simulated/floor/tiled/eris/white/cargo, +/area/crew_quarters/heads/cmo) +"VG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai) +"VK" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/alarm/angled{ + dir = 4 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/portcent) +"VM" = ( +/obj/machinery/power/pointdefense{ + id_tag = "sd_pd" + }, +/obj/effect/floor_decal/industrial/warning/full, +/obj/structure/cable/green, +/turf/simulated/floor/airless, +/area/stellardelight/deck3/exterior) +"VN" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/aft) +"VQ" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/secure{ + name = "Nuclear Fission Device Storage"; + req_access = list(16) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/steel_ridged, +/area/ai) +"VR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/airless, +/area/maintenance/stellardelight/deck3/portcent) +"VS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/turf/simulated/wall/bay/r_wall/steel, +/area/stellardelight/deck3/aft) +"VW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai_server_room) +"VZ" = ( +/obj/structure/table/rack, +/obj/random/maintenance, +/obj/random/maintenance/clean, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/aftstarroom) +"Wa" = ( +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hop) +"Wd" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck3/exterior) +"Wf" = ( +/obj/machinery/disposal/wall, +/obj/structure/disposalpipe/trunk, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/aft) +"Wg" = ( +/obj/structure/bed/chair/shuttle{ + dir = 1 + }, +/obj/structure/closet/emergsuit_wall{ + dir = 1; + pixel_y = -32 + }, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 24 + }, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "sdboat" + }, +/turf/simulated/floor/tiled, +/area/shuttle/sdboat/aft{ + base_turf = /turf/simulated/floor/reinforced/airless + }) +"Wi" = ( +/obj/structure/closet/secure_closet/personal, +/turf/simulated/floor/bluegrid, +/area/ai) +"Wj" = ( +/obj/machinery/computer/ship/helm/adv, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "sdboat" + }, +/turf/simulated/floor/tiled, +/area/shuttle/sdboat/fore{ + base_turf = /turf/simulated/floor/reinforced/airless + }) +"Wl" = ( +/obj/structure/sign/warning/falling{ + pixel_x = -32 + }, +/turf/simulated/open, +/area/stellardelight/deck2/port) +"Wn" = ( +/obj/machinery/power/smes/buildable{ + charge = 500000 + }, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "sdboat" + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/turf/simulated/floor/tiled, +/area/shuttle/sdboat/aft{ + base_turf = /turf/simulated/floor/reinforced/airless + }) +"Wp" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/open, +/area/stellardelight/deck2/central) +"Wq" = ( +/obj/structure/table/darkglass, +/obj/machinery/computer/skills{ + dir = 4; + pixel_y = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/lawoffice) +"Wr" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/starboardaft) +"Ws" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/table/steel, +/obj/item/weapon/flame/candle, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/portfore) +"Wt" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/spline/plain, +/obj/structure/table/bench/marble, +/turf/simulated/floor/lino, +/area/stellardelight/deck3/cafe) +"Wu" = ( +/obj/structure/sign/warning/docking_area{ + pixel_x = -32 + }, +/turf/simulated/floor/airless, +/area/stellardelight/deck3/exterior) +"Ww" = ( +/obj/structure/handrail{ + dir = 4 + }, +/obj/effect/map_helper/airlock/atmos/pump_out_internal, +/obj/machinery/light, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + frequency = 1380; + id_tag = "sdboat_docker_pump_out_internal" + }, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "sdboat" + }, +/turf/simulated/floor/tiled, +/area/shuttle/sdboat/aft{ + base_turf = /turf/simulated/floor/reinforced/airless + }) +"Wx" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/aft) +"Wy" = ( +/obj/machinery/camera/network/engineering{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/alarm/angled{ + dir = 4 + }, +/obj/structure/table/steel_reinforced, +/obj/item/weapon/paper/sdshield, +/turf/simulated/floor, +/area/stellardelight/deck2/central) +"WA" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/starboardcent) +"WB" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/starboardfore) +"WD" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood, +/area/stellardelight/deck3/cafe) +"WF" = ( +/obj/structure/table/steel, +/obj/random/contraband, +/obj/random/maintenance/security, +/obj/random/maintenance/security, +/obj/random/maintenance/security, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/forestarrooma) +"WG" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/open, +/area/stellardelight/deck2/starboard) +"WH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/monotile, +/area/stellardelight/deck3/commandhall) +"WI" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/stellardelight/deck3/foreportrooma) +"WK" = ( +/turf/simulated/wall/fancy_shuttle{ + fancy_shuttle_tag = "sdboat" + }, +/area/shuttle/sdboat/fore{ + base_turf = /turf/simulated/floor/reinforced/airless + }) +"WL" = ( +/obj/structure/closet/crate, +/obj/random/contraband, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/random/maintenance/cargo, +/obj/random/maintenance/cargo, +/obj/random/drinksoft, +/obj/random/drinksoft, +/obj/random/mre, +/obj/random/mre, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/foreportrooma) +"WM" = ( +/obj/effect/landmark{ + name = "maint_pred" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/foreportrooma) +"WN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/monotile, +/area/stellardelight/deck3/commandhall) +"WO" = ( +/turf/simulated/wall/bay/r_wall/blue, +/area/lawoffice) +"WQ" = ( +/obj/machinery/power/apc/angled{ + cell_type = /obj/item/weapon/cell/super; + dir = 4; + name = "night shift APC"; + nightshift_setting = 2 + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/portcent) +"WU" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/aft) +"WW" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/effect/landmark/start/iaa, +/turf/simulated/floor/tiled/dark, +/area/lawoffice) +"WX" = ( +/obj/machinery/camera/network/command{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai_cyborg_station) +"WZ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/flora/pottedplant/smalltree, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/aft) +"Xa" = ( +/obj/item/device/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 24 + }, +/obj/structure/closet/secure_closet/CMO, +/obj/item/clothing/accessory/stethoscope, +/obj/item/device/flashlight/pen, +/obj/item/weapon/storage/belt/medical, +/obj/item/clothing/glasses/hud/health, +/obj/item/device/defib_kit/compact/combat/loaded, +/obj/item/weapon/cmo_disk_holder, +/obj/item/weapon/storage/secure/briefcase/ml3m_pack_cmo, +/obj/item/weapon/storage/mrebag/pill/sleevingcure, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/item/device/retail_scanner/medical, +/turf/simulated/floor/tiled/eris/white/cargo, +/area/crew_quarters/heads/cmo) +"Xb" = ( +/turf/simulated/floor/carpet/gaycarpet, +/area/stellardelight/deck3/clownmimeoffice) +"Xc" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/landmark/vermin, +/turf/simulated/open, +/area/crew_quarters/bar) +"Xd" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/turf/simulated/floor/airless, +/area/maintenance/stellardelight/deck3/starboardcent) +"Xe" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/open, +/area/stellardelight/deck2/fore) +"Xf" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/open, +/area/stellardelight/deck2/port) +"Xi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/stellardelight/deck3/cafe) +"Xl" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/structure/low_wall/bay/reinforced/steel, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/foreportroomb) +"Xm" = ( +/obj/structure/table/alien{ + name = "fancy table" + }, +/obj/item/device/radio/intercom{ + dir = 1; + frequency = 1351; + name = "station intercom (Science)"; + pixel_y = 24 + }, +/obj/item/device/paicard{ + pixel_x = 4 + }, +/obj/item/weapon/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/weapon/paper/monitorkey, +/obj/item/device/megaphone, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/item/weapon/folder/white_rd, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/heads/hor) +"Xo" = ( +/obj/structure/cable/blue{ + icon_state = "1-4" + }, +/obj/machinery/power/apc/angled{ + dir = 8 + }, +/obj/structure/cable/blue{ + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai_server_room) +"Xr" = ( +/obj/structure/sign/warning/secure_area{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai_cyborg_station) +"Xv" = ( +/obj/structure/frame, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/foreportrooma) +"XA" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/turf/simulated/open, +/area/stellardelight/deck2/central) +"XB" = ( +/turf/simulated/wall/bay/steel, +/area/maintenance/stellardelight/substation/command) +"XC" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/portdock) +"XD" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 1 + }, +/obj/structure/sign/warning/evac{ + pixel_x = -32 + }, +/obj/effect/landmark{ + name = "lightsout" + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/starboarddock) +"XE" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/airlock/angled_bay/standard/glass/common{ + dir = 4; + name = "Cryogenic Storage" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck3/cryo) +"XF" = ( +/obj/structure/lattice, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/open, +/area/stellardelight/deck2/central) +"XG" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/simulated/floor/carpet/tealcarpet, +/area/crew_quarters/heads/cmo) +"XH" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/open, +/area/crew_quarters/bar) +"XI" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/stellardelight/deck3/foreportroomb) +"XJ" = ( +/obj/machinery/power/apc/angled{ + dir = 8 + }, +/obj/structure/cable/blue, +/turf/simulated/floor/tiled/dark, +/area/lawoffice) +"XK" = ( +/turf/simulated/wall/bay/r_wall/blue, +/area/ai_server_room) +"XO" = ( +/obj/machinery/computer/security, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/dark, +/area/crew_quarters/heads/hos) +"XT" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/portfore) +"XV" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/foreportroomb) +"XX" = ( +/obj/machinery/holoplant, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/tcommsat/computer) +"XY" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/frame, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/foreportrooma) +"XZ" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/obj/machinery/door/airlock/angled_bay/external/glass{ + frequency = 1380; + id_tag = null; + locked = 1; + name = "Docking Port Airlock" + }, +/obj/effect/map_helper/airlock/door/int_door, +/obj/machinery/access_button{ + command = "cycle_interior"; + dir = 1; + frequency = 1380; + master_tag = "sd_escape_center_left"; + pixel_x = -32; + req_one_access = list(13) + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/stellardelight/deck3/aft) +"Yb" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4; + frequency = 1379; + id_tag = "portmaint_airpump" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/airless, +/area/maintenance/stellardelight/deck3/portcent) +"Yc" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/aft) +"Yd" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/portaft) +"Yg" = ( +/turf/simulated/wall/bay/r_wall/steel, +/area/maintenance/stellardelight/deck3/portaft) +"Yj" = ( +/obj/structure/girder/displaced, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/stellardelight/deck3/forestarroomb) +"Yl" = ( +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/portfore) +"Ym" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/turf/simulated/floor/airless, +/area/maintenance/stellardelight/deck3/portcent) +"Yo" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/aftstarroom) +"Yp" = ( +/obj/machinery/button/remote/blast_door{ + desc = "A remote control-switch for shutters."; + id = "cafe"; + name = "Cafe Shutters"; + pixel_y = 28; + req_one_access = list(25) + }, +/turf/simulated/floor/lino, +/area/stellardelight/deck3/cafe) +"Ys" = ( +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + dir = 4; + id_tag = "starmaint_airlock"; + pixel_x = -24; + req_access = null; + req_one_access = list(13); + tag_airpump = "starmaint_airpump"; + tag_chamber_sensor = "starmaint_sensor"; + tag_exterior_door = "starmaint_exterior"; + tag_interior_door = "starmaint_interior" + }, +/turf/simulated/floor/airless, +/area/maintenance/stellardelight/deck3/starboardcent) +"Yu" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/closet/crate, +/obj/random/contraband, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/obj/random/maintenance/research, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/mre, +/obj/random/snack, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/portfore) +"Yv" = ( +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -25 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"Yw" = ( +/obj/structure/lattice, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/open, +/area/stellardelight/deck2/port) +"Yx" = ( +/obj/structure/closet/emcloset, +/obj/random/maintenance/cargo, +/obj/random/maintenance/cargo, +/obj/random/maintenance/clean, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/starboardcent) +"Yy" = ( +/obj/structure/lattice, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/open, +/area/stellardelight/deck2/starboard) +"Yz" = ( +/turf/simulated/wall/bay/r_wall/steel, +/area/maintenance/stellardelight/deck3/portcent) +"YA" = ( +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/aft) +"YB" = ( +/obj/structure/cable/blue{ + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/forestarroomb) +"YC" = ( +/obj/item/device/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 24 + }, +/obj/structure/closet/secure_closet/RD, +/obj/item/device/aicard, +/obj/item/clothing/glasses/omnihud/rnd, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/item/device/retail_scanner/science, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/heads/hor) +"YD" = ( +/obj/structure/table/steel, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/portfore) +"YE" = ( +/obj/structure/table/standard, +/obj/random/soap, +/obj/machinery/power/apc/angled{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/holodeck_control) +"YH" = ( +/obj/item/modular_computer/console/preset/command, +/obj/structure/sign/poster{ + dir = 8 + }, +/obj/machinery/newscaster{ + pixel_y = 28 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/chief) +"YJ" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/portaft) +"YK" = ( +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 4 + }, +/turf/simulated/open, +/area/stellardelight/deck3/aft) +"YL" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/folder/blue_hop, +/obj/item/weapon/pen, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"YN" = ( +/turf/simulated/wall/bay/r_wall/steel, +/area/stellardelight/deck3/portdock) +"YO" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/portaft) +"YQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/carpet/tealcarpet, +/area/crew_quarters/heads/cmo) +"YR" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/aft) +"YS" = ( +/obj/structure/table/steel, +/obj/random/coin/sometimes, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/aftstarroom) +"YU" = ( +/obj/structure/lattice, +/turf/simulated/open, +/area/crew_quarters/bar) +"Zd" = ( +/turf/simulated/wall/fancy_shuttle{ + fancy_shuttle_tag = "sdboat" + }, +/area/shuttle/sdboat/aft{ + base_turf = /turf/simulated/floor/reinforced/airless + }) +"Ze" = ( +/turf/simulated/floor/bluegrid{ + name = "Mainframe Base"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"Zf" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/portcent) +"Zi" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/shuttles/right, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/portdock) +"Zj" = ( +/obj/structure/bed/chair, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/aft) +"Zk" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/portfore) +"Zl" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/open, +/area/stellardelight/deck2/port) +"Zm" = ( +/obj/structure/cable/blue{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -24; + pixel_y = 29 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai_cyborg_station) +"Zn" = ( +/obj/structure/bed/chair, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/stellardelight/deck3/foreportrooma) +"Zp" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/portcent) +"Zt" = ( +/obj/structure/lattice, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/open, +/area/stellardelight/deck2/central) +"Zu" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 6 + }, +/obj/structure/table/bench/marble, +/turf/simulated/floor/lino, +/area/stellardelight/deck3/cafe) +"Zw" = ( +/obj/machinery/porta_turret/ai_defense, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/bluegrid, +/area/ai) +"ZB" = ( +/obj/machinery/alarm/angled{ + dir = 4 + }, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/portaft) +"ZC" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/open, +/area/stellardelight/deck2/starboard) +"ZE" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/aft) +"ZF" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/simulated/floor/carpet/oracarpet, +/area/crew_quarters/heads/chief) +"ZH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled, +/area/stellardelight/deck3/starboarddock) +"ZK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/monotile, +/area/stellardelight/deck3/commandhall) +"ZL" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/machinery/door/blast/angled/open{ + dir = 4; + id = "readingroom3" + }, +/obj/structure/low_wall/bay/reinforced/steel, +/turf/simulated/floor, +/area/stellardelight/deck3/readingroom) +"ZM" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/open, +/area/stellardelight/deck2/starboard) +"ZN" = ( +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai) +"ZQ" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/structure/low_wall/bay/reinforced/steel, +/turf/simulated/floor, +/area/maintenance/stellardelight/deck3/forestarrooma) +"ZS" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/open, +/area/stellardelight/deck2/port) +"ZV" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/window/bay/reinforced, +/obj/machinery/door/blast/angled/open{ + dir = 4; + id = "readingroom1" + }, +/obj/structure/low_wall/bay/reinforced/steel, +/turf/simulated/floor, +/area/stellardelight/deck3/readingroom) +"ZX" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/ai_upload) +"ZZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/stellardelight/deck2/fore) + +(1,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +CO +Te +"} +(2,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(3,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(4,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(5,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(6,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(7,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(8,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(9,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(10,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(11,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(12,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(13,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(14,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(15,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(16,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(17,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(18,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(19,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +El +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(20,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(21,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(22,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +mf +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(23,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +El +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(24,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(25,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(26,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(27,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(28,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(29,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +El +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(30,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +El +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +El +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(31,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(32,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(33,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(34,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(35,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +zk +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(36,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +El +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Es +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(37,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(38,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +NL +NL +NL +NL +NL +NL +NL +NL +NL +NL +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +NL +NL +NL +NL +NL +NL +NL +NL +NL +NL +NL +NL +NL +NL +NL +NL +Jh +Jh +NL +NL +NL +NL +NL +NL +NL +NL +NL +NL +NL +Jh +Jh +zk +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(39,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +NL +NL +NL +NL +NL +NL +NL +NL +NL +NL +NL +NL +NL +NL +Jh +Jh +Jh +Jh +Jh +Jh +Jh +NL +NL +NL +NL +TE +NL +NL +NL +NL +NL +NL +NL +TE +NL +NL +NL +NL +NL +SK +SK +NL +NL +TE +NL +NL +NL +NL +NL +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(40,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +FH +af +af +af +yd +NL +NL +NL +NL +NL +NL +NL +NL +NL +NL +NL +NL +NL +NL +NL +NL +NL +NL +NL +NL +NL +Jh +Jh +Jh +NL +NL +NL +NL +NL +Ae +NL +NL +NL +NL +NL +NL +NL +Ae +NL +NL +NL +NL +NL +NL +Jh +Jh +NL +Ae +NL +NL +NL +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(41,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +NL +NL +Ae +NL +TE +NL +NL +NL +NL +NL +NL +NL +TE +NL +NL +NL +NL +NL +NL +NL +NL +TE +NL +SK +SK +SK +NL +NL +NL +NL +NL +NL +Ae +NL +NL +NL +NL +NL +NL +NL +Ae +NL +NL +NL +un +af +af +af +af +af +eX +NL +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(42,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +ko +af +ew +af +af +af +af +af +Rx +af +ew +af +af +af +af +af +af +af +af +ew +af +af +af +af +af +af +af +af +af +af +ew +af +af +af +af +af +af +af +ew +af +af +af +Wd +NL +NL +NL +NL +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(43,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +NL +NL +NL +NL +NL +un +af +af +af +af +af +af +af +af +VM +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +NL +NL +NL +NL +NL +NL +Ae +NL +NL +NL +NL +NL +NL +NL +NL +NL +NL +Jh +Jh +Jh +NL +NL +NL +NL +NL +NL +NL +NL +NL +Se +pT +pT +pT +pT +pT +pT +pT +pT +pT +pT +bp +yW +yW +yW +yW +dB +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(44,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +NL +NL +NL +NL +NL +NL +Ae +NL +NL +NL +NL +NL +NL +NL +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +El +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +NL +NL +NL +NL +Ae +NL +NL +NL +NL +NL +NL +NL +NL +NL +SK +SK +SK +NL +NL +NL +NL +NL +NL +NL +NL +NL +NL +Iz +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +IK +Jh +NL +NL +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(45,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +NL +NL +NL +NL +NL +NL +TE +Ae +NL +NL +NL +NL +NL +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +NL +NL +Ae +NL +NL +NL +NL +NL +NL +NL +NL +NL +SK +SK +NL +NL +NL +NL +NL +NL +NL +NL +NL +NL +NL +Iz +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +IK +SK +NL +NL +NL +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(46,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +NL +NL +NL +NL +NL +NL +NL +Uw +eX +NL +NL +NL +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +NL +Ae +NL +NL +NL +NL +NL +NL +NL +NL +Jh +Jh +Ii +Ii +Ii +Ii +Ii +Ii +Ii +Ii +Ii +Ii +Ii +Ii +Iz +sM +sM +sM +sM +sM +sM +Ia +Zd +Zd +Vh +gi +gi +Qh +hg +sM +IK +SK +NL +NL +NL +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(47,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +FH +gw +af +af +af +af +af +af +Wd +NL +NL +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Ae +SK +NL +NL +NL +Jh +SK +SK +Jh +Jh +Jh +Ii +qz +qz +qz +qz +qz +qz +qz +qz +qz +qz +Ii +hk +eJ +WK +WK +WK +dQ +Zd +Zd +Zd +Wn +BW +lc +ui +EX +NS +sM +IK +Jh +NL +NL +NL +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(48,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Ae +SK +Jh +Jh +Jh +Jh +Jh +Ae +SK +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +SK +Ae +Jh +NL +NL +NL +Jh +Jh +SK +SK +Jh +Jh +Ii +qz +qz +qz +qz +qz +qz +qz +qz +qz +qz +Ii +Iz +WK +WK +Kj +WK +gl +RY +aP +Zd +rX +MX +fg +Zd +Zd +Zd +sM +IK +Jh +NL +NL +NL +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(49,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +kP +mQ +Va +kP +mQ +mQ +kP +kP +kP +Va +kP +mQ +mQ +kP +kP +mQ +mQ +kP +mQ +mQ +kP +mQ +mQ +kP +Yz +Yz +Yz +NL +NL +TE +NL +Yg +Yg +Yg +Yg +ki +ki +Yg +Yg +Yg +Yg +Yg +Yg +vq +Yg +Yg +Yg +Yg +Yg +Yg +Yg +ki +ki +Yg +Ii +qz +qz +qz +qz +qz +qz +qz +qz +qz +qz +Ii +Iz +be +wr +Bb +SJ +Vw +Vw +Vw +Rw +cn +iw +zS +Zd +xL +sM +sM +IK +Jh +NL +NL +NL +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(50,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +kP +kP +Dp +KQ +XT +Kg +iz +Ws +Yu +Zk +Yl +XT +XT +XT +XT +XT +XT +XT +Ji +XT +XT +XT +XT +XT +UL +My +Ei +Yz +NL +NL +Ae +NL +Yg +vA +dE +DT +dM +bd +NE +nV +ZB +dE +NR +dE +hd +dE +dE +dE +dE +dE +fP +HY +ed +Bm +JW +Ii +qz +qz +qz +qz +qz +qz +qz +qz +qz +qz +Ii +Iz +be +Wj +ya +Pl +LO +LO +LO +lB +hR +MX +kZ +wZ +mv +sM +sM +IK +Jh +NL +TE +NL +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(51,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +NL +NL +NL +NL +SK +Jh +Jh +mQ +sX +cK +XT +XT +pf +Ns +Ns +Ns +Ns +Ns +eF +IP +YD +bC +ms +Ns +Ns +Hk +Ns +Ns +Ns +Ns +Ns +KW +OX +Sz +Yz +Yz +NQ +ma +Yz +Yz +YJ +xT +xT +xT +xT +xT +xT +oM +xT +BZ +xT +IN +xi +dE +dE +dE +dE +Sw +dE +dE +dE +dE +LS +qz +qz +qz +qz +qz +qz +qz +qz +qz +qz +Ii +Iz +be +jc +Ex +SJ +Vw +Vw +Vw +Zd +Rw +sa +Zd +PB +xL +sM +sM +IK +Jh +NL +Ae +NL +Jh +Jh +Jh +El +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(52,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +NL +un +VM +un +af +af +af +kQ +kQ +HO +Jn +hD +RL +xI +Xl +RL +RL +RL +RL +RL +Xl +Xl +RL +zX +ZL +ZL +zX +wt +wt +zX +ZV +ZV +zX +Hm +Sz +Yz +Yb +Od +Fy +gc +NK +YO +FG +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +LT +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Yg +Ii +Ii +qz +qz +qz +qz +qz +qz +qz +qz +qz +qz +Ii +hk +WK +WK +mh +WK +gl +Ir +Wg +Zd +ri +vX +Ww +UD +Zd +Zd +sM +IK +Jh +NL +Ae +NL +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(53,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +NL +NL +Uw +af +eX +Jh +Jh +hD +hD +nO +PV +MP +hD +zt +dL +xP +pN +pN +zp +cH +pN +nv +yY +zt +zX +At +qC +zX +At +qC +zX +At +qC +zX +uJ +Sz +yR +Ym +VR +GF +QS +rp +LD +FS +Yg +oW +CS +oW +oW +oW +Nd +oW +oW +oW +Ju +oW +oW +oW +oW +QF +oW +Wl +CS +Ii +Qu +qz +qz +qz +qz +qz +qz +qz +qz +qz +qz +Ii +Iz +mi +WK +WK +WK +dQ +Zd +Zd +Zd +AD +Qe +xf +RW +Ke +NS +sM +Di +af +af +eX +NL +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(54,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +NL +NL +NL +Ae +NL +Jh +Jh +hD +hD +cZ +il +il +Sp +hD +VD +JY +xP +pN +xP +hj +ey +pN +xP +kV +EH +zX +md +QK +zX +Co +QK +zX +he +QK +zX +bl +op +Yz +Fm +zw +IY +EI +Yz +Yd +cp +Yg +CS +Yw +uf +uf +uf +Mk +uf +uf +uf +zH +qP +qP +qP +qP +jL +qP +qP +IH +Ii +Ii +qz +qz +qz +qz +qz +qz +qz +qz +qz +qz +Ii +Iz +sM +sM +sM +sM +sM +sM +Ia +Zd +Zd +kz +gi +gi +vr +Zd +sM +IK +SK +NL +NL +NL +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +El +Jh +Jh +Jh +Jh +Jh +Jh +"} +(55,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +NL +NL +NL +NL +Ae +NL +Jh +hD +hD +FW +DY +XY +XY +LJ +hD +gj +fh +nX +rj +Jc +Ij +XI +pN +xP +xP +yY +zX +uU +zX +zX +NJ +zX +zX +lU +zX +zX +oI +Sz +Yz +yR +Yz +Yz +yR +Yz +GS +nw +Yz +oW +xd +oW +oW +oW +ZS +oW +oW +oW +hG +oW +oW +oW +oW +ZS +oW +Eu +NI +IO +Ii +qz +qz +qz +qz +qz +qz +qz +qz +qz +qz +Ii +dh +PT +PT +PT +PT +PT +PT +PT +et +YN +BA +YN +Hu +PT +PT +PT +En +Jh +NL +NL +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(56,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +NL +un +VM +NL +un +eX +SK +SK +hD +Uc +il +il +WM +OF +il +hD +pN +XV +pN +pN +xP +hj +xP +pN +pN +pN +pN +yZ +KI +KI +GH +KI +oE +KI +KI +qx +zX +tp +eh +gA +sN +MR +VK +Zf +MR +fG +bP +Yz +oW +xd +oW +ad +ad +ad +ad +ad +ad +ad +ad +ad +qq +qq +qq +qq +qq +qq +GV +Ii +qz +qz +qz +qz +qz +qz +qz +qz +qz +qz +Ii +NL +NL +NL +NL +NL +NL +NL +NL +qL +ai +Mo +ai +qL +NL +NL +NL +Ae +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(57,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +El +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Go +af +af +eX +Jh +Jh +Jh +hD +Xv +Uq +og +og +Uq +il +hD +pN +XV +pN +pN +pN +NG +pN +pN +pN +pN +MZ +zX +DO +qg +Lm +Af +Bd +Am +yq +xv +HQ +Zp +My +RM +WQ +OX +Sz +cS +Hm +SD +SD +Yz +oW +xd +oW +ad +qn +bZ +Ze +UK +kw +lx +Oj +Ht +uB +Oe +HX +su +XX +qq +NN +Ii +Ii +Ii +Ii +Ii +Ii +Ii +Ii +eP +Ii +Ii +Ii +YN +ai +ai +YN +ai +ai +ai +YN +YN +YN +ss +YN +YN +NL +NL +NL +Ae +NL +NL +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(58,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Ae +Jh +SK +Jh +Jh +Jh +Jh +SR +WL +Zn +DM +pk +WI +FY +hD +DC +lh +DC +DC +DC +DC +DC +DC +DC +DC +DC +oZ +oZ +oZ +oZ +oZ +oZ +oZ +oZ +oZ +zX +Yz +Yz +Yz +Yz +Yz +Cf +Yz +Yz +Yz +Yz +Yz +Xf +ob +BL +ad +jE +cm +Ze +kc +Ze +lE +hw +sK +zn +kF +Fv +Uf +GD +qq +lv +oV +Of +cu +Hd +HH +lm +Ii +YE +NT +ao +Ii +Og +JR +mX +mX +Nk +XC +Hg +KT +uk +KL +IR +Sn +UV +YN +NL +NL +NL +Ae +TE +NL +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(59,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +NL +ko +yd +NL +Jh +Jh +Jh +SK +SR +Sh +Zn +zQ +DM +WI +il +hD +ne +vF +qF +qF +qF +qF +qF +Cb +qF +qF +qF +qF +Cp +qF +qF +qF +Mv +qF +qF +qF +iQ +wa +oW +QF +oW +dT +hY +Wl +oW +QF +oW +oW +oW +xd +oW +ad +Ze +cW +gU +ks +qn +Ze +Ze +Ee +uB +uB +uB +xz +pW +qq +ck +kr +Rv +Rv +eN +Rv +iW +Tf +im +zI +qN +yF +la +Vc +ST +ST +ST +jV +TW +pC +PD +dw +Or +mb +Eg +hN +yW +yW +yW +tK +tK +yW +yW +yW +yW +yW +yW +dB +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(60,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +NL +NL +Ae +Jh +Jh +Jh +SK +SK +SR +qM +Uq +Pq +Pq +Uq +Xv +hD +zW +lj +qi +qi +qi +qi +qi +Xe +qi +qi +qi +qi +kO +qi +qi +qi +Xe +qi +qi +qi +qi +DD +rS +jT +rS +rS +Ft +Ig +Ig +Mk +Ig +Ig +Ig +Cz +CS +ad +Ze +cY +gW +Dy +gU +lH +qn +sK +zn +tW +zn +xB +pW +qq +Gf +Sf +pc +pc +Wx +Wx +WU +xW +yt +CP +It +oO +Zi +ek +Nq +Nq +BV +YN +qe +YN +vI +Nq +Nq +Nq +Tc +YN +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +IK +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(61,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +NL +Jh +Ae +Jh +Jh +SK +SK +SK +hD +HR +qM +xb +Oo +Xv +Xv +hD +Hf +Ie +tV +qF +qF +qF +qF +sJ +qF +qF +qF +qF +Cp +qF +qF +qF +sJ +qF +qF +qF +qF +wa +oW +ZS +oW +oW +Pm +oW +oW +ZS +oW +oW +oW +Zl +oW +ad +QC +el +Ze +li +rs +mC +Dy +uv +EL +uw +OC +yc +Lh +qq +Cu +pc +pc +ER +ag +Qn +Qn +Ed +jP +pK +Mx +YN +YN +YN +ai +ai +YN +YN +CD +YN +YN +ai +ai +ai +YN +YN +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +IK +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(62,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +SK +Jh +Ae +Jh +SK +SK +SK +Qp +Qp +Qp +Qp +Qp +Qp +Qp +Qp +Qp +qF +gG +qF +cb +cb +cb +cb +cb +cb +cb +zN +zN +zN +zN +zN +zN +WO +WO +WO +WO +WO +WO +nW +Oz +Oz +nW +nj +nW +Oz +Oz +nW +nW +sx +He +sx +ad +Ze +eC +Rd +Dy +ib +nm +qn +kb +zn +Bl +zn +yE +pW +qq +ME +UI +aX +ei +ah +RI +RI +Ed +wP +ZE +Kf +Ed +hf +sM +sM +sM +sM +YN +tR +YN +sM +sM +sM +sM +sM +hf +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +IK +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(63,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +SK +Jh +gJ +af +af +af +eI +Qp +qp +qp +qp +qp +qp +qp +qp +Qp +Cp +CU +Cp +cb +YH +SB +Ha +BM +EE +cb +ub +hc +gL +UH +OD +zN +Jd +Mg +BY +rl +bj +WO +fd +Gg +eU +JZ +pp +Qi +qc +nF +LK +nW +nx +mg +nx +ad +Ze +eK +ib +lo +qQ +Sm +Sm +tL +zn +zn +zn +zY +DP +qq +XK +XK +XK +XK +XK +XK +XK +XK +Wf +tg +Mx +Ed +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +IK +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(64,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +SK +NL +Ae +TE +NL +Jh +fs +Xc +Dd +DH +YU +YU +YU +OP +ca +Qp +qF +gG +qF +cb +IC +Qf +hX +hX +JU +cb +XO +xS +BH +BH +tO +zN +Bq +xM +xY +xY +ka +WO +si +rL +eU +Lw +Bt +xZ +mr +gk +zE +Oz +nx +mg +nx +ad +jE +fk +Ze +lw +MO +nC +px +sK +zn +cc +iL +Aq +dy +oY +zD +RZ +uZ +TY +Xo +dn +CG +XK +cx +pK +Mx +Ed +SC +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +IK +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(65,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +un +af +Hx +eX +Jh +Jh +CA +qp +qp +kU +qp +qp +qp +NF +qp +Qp +qF +gG +qF +cb +NO +Ud +EY +hX +GW +cb +UT +nH +gb +BH +dH +zN +Js +Ml +SA +xY +yI +WO +JE +lD +jm +Wt +hb +xZ +xZ +xZ +nz +Oz +Wp +XA +lY +ad +qn +gh +Ze +eo +qU +oA +pY +sl +zn +cO +vN +AS +dV +qq +TM +VW +nS +Fh +fb +Fh +Dh +XK +nZ +AY +Qx +Ed +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +IK +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(66,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +NL +Ae +SK +Jh +Jh +Jh +Jh +CA +qp +qp +kU +qp +qp +qp +NF +qp +Qp +ba +Ie +tV +cb +gy +ZF +ns +fa +Vr +cb +Et +wq +dD +dY +MN +zN +EO +Lv +hu +hu +bO +WO +Yp +rL +eU +Lw +Xi +xZ +xZ +xZ +xZ +Oz +nx +jY +nx +sc +sc +sc +sc +sc +sc +sc +sc +sc +sc +sc +sc +sc +sc +sc +Bj +xe +Fh +Fh +DL +GU +Ov +XK +Zj +Yc +tG +gM +BB +BB +VS +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +IK +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(67,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +NL +NL +ko +yd +NL +Jh +Jh +Jh +CA +qp +qp +kU +qp +qp +qp +NF +qp +Qp +qF +gG +qF +cb +kl +AP +Ve +ve +vf +cb +Pe +pO +UB +Ba +mD +zN +FC +yC +dZ +jl +at +WO +Oy +bY +eU +Lw +Xi +xZ +zE +WD +nk +nW +nx +jY +Tx +sc +wS +gQ +iK +KH +KY +QG +eg +QG +QG +np +nM +uI +wS +sc +XK +XK +MJ +uQ +Qm +Nm +Iu +XK +lt +wg +Sl +Oq +Oq +Ky +TA +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +IK +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(68,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +NL +NL +FH +ew +yd +NL +SK +SK +Qp +YU +YU +XH +Dd +Dd +Dd +OQ +Dd +Ta +ZZ +mm +sO +cb +Hs +Hs +jn +Hs +Hs +cb +GQ +GQ +Fg +GQ +GQ +zN +DV +dU +Tv +dU +dU +WO +gq +HB +HB +Zu +vh +rg +ea +Cd +SU +nW +zz +sz +RX +sc +bK +gS +iR +Rc +Qs +TK +Ga +eu +xh +kB +rZ +nd +sc +sc +Bk +XK +XK +XK +Ow +XK +XK +XK +CV +pK +Mx +Im +Im +Im +TA +Ed +Ed +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +Vz +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(69,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +NL +NL +NL +Ae +Jh +Jh +Jh +CA +qp +qp +US +qp +qp +qp +Vm +qp +Qp +Hq +bn +tV +rc +po +aQ +BK +aQ +aQ +sf +jO +aQ +BK +aQ +jK +eL +wV +bE +bE +bE +aQ +QT +Gj +xy +Tm +Tm +PL +Gj +ab +QB +QB +QB +rc +aM +Wy +sc +Vs +Vs +Vs +TL +Ol +Ol +qv +Ol +Ol +rN +MV +Cn +sc +AZ +bM +Ru +VC +wA +cw +ZX +UO +VC +TJ +dF +Mx +oq +oq +oq +XZ +BR +JA +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +IK +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(70,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +SK +Jh +Ae +Jh +Jh +Jh +CA +qp +qp +US +qp +qp +qp +Vm +UX +Qp +ne +bI +oX +vO +HW +xw +zb +tT +tT +tT +tT +zB +zb +tT +UG +wQ +EW +bE +bE +bE +aQ +bU +II +iy +Gj +Fr +Rl +Gj +ae +iV +iV +iV +vw +MF +AU +sc +bL +Vs +IQ +TL +Ol +oR +qA +HA +Ol +IU +IQ +gN +Jz +Pj +zi +Gh +JP +JQ +KS +Fe +ht +is +dj +vv +Ou +oq +oq +JS +Ed +Ed +Ed +Cx +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +IK +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(71,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +NL +NL +NL +Ae +Jh +Jh +Jh +CA +qp +qp +US +qp +qp +qp +Vm +qp +Qp +Hf +gO +qF +rc +tJ +aQ +xU +aQ +aQ +Aw +Lz +aQ +BK +aQ +SZ +Kw +iI +bE +bE +bE +aQ +QT +nt +iy +Nf +SQ +TF +Gj +TO +Vq +WH +yb +iE +vt +Ki +sc +Vs +Vs +Vs +TL +Ol +Ol +rB +Ol +Ol +mA +sr +HS +sc +AZ +rb +fv +VC +LC +zg +hK +tz +VC +PE +MC +Mx +oq +oq +oq +os +ou +QJ +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +IK +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(72,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +NL +NL +FH +Rx +eX +NL +SK +SK +Qp +YU +YU +ja +oP +oP +oP +Fb +oP +dN +UA +Fj +sO +EJ +rx +rx +Bz +rx +rx +EJ +nP +nP +ev +nP +nP +uj +DV +dU +Tv +dU +dU +WO +in +bg +in +in +yJ +ZK +ZK +QE +WN +fS +zz +RT +RX +sc +TL +Vs +rZ +IQ +Jg +GP +GP +GP +GP +Zw +TI +lQ +sc +sc +Bs +XK +th +th +ci +th +th +th +pB +pK +Mx +Im +Im +Ko +TA +Ed +Ed +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +gB +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(73,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +NL +NL +un +eX +NL +Jh +Jh +Jh +CA +qp +qp +iN +qp +qp +qp +jC +qp +Qp +qF +mj +qF +EJ +To +pd +mI +OV +SP +EJ +pV +DI +BQ +Fc +Br +uj +PC +XJ +fT +rw +at +WO +AX +cP +Yv +in +xg +Rn +Rn +PJ +Rn +in +nx +XF +Tx +sc +wS +us +VG +NP +bs +Vs +IQ +wG +Vs +tq +ZN +TL +wS +sc +th +th +OS +Tr +Zm +iJ +nN +th +Ff +EF +xA +cs +cs +cA +TA +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +IK +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(74,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +NL +Ae +SK +Jh +Jh +Jh +Jh +CA +qp +qp +iN +qp +qp +qp +jC +qp +Qp +Hf +mp +tV +EJ +Xa +XG +YQ +yB +AE +EJ +YC +sA +MG +bx +KG +uj +Po +zo +hu +hu +bO +WO +CR +An +eD +in +Qo +ye +Uk +ij +Tj +in +nx +XF +nx +sc +sc +sc +sc +sc +sc +sc +sc +sc +sc +sc +sc +sc +sc +sc +SL +Tr +wN +wN +bQ +zM +PW +th +Zj +Yc +tG +gM +BB +BB +yj +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +IK +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(75,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +ko +af +mM +yd +Jh +Jh +CA +qp +qp +iN +qp +qp +qp +jC +qp +Qp +qF +mj +qF +EJ +VE +PR +hp +vi +Tp +EJ +Xm +ol +mO +tZ +Gi +uj +pm +gE +Wq +xY +yI +WO +ky +Ms +kT +yM +MI +iP +rA +DN +YL +in +Wp +HZ +lY +sc +wS +KM +dS +MK +Wi +sc +vT +QI +yV +oN +uc +ty +Az +th +lu +wN +Ds +qK +FU +qd +Lx +th +nZ +oy +Qx +Ed +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +IK +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(76,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +SK +NL +Ae +Op +NL +Jh +Qp +qp +qp +iN +qp +qp +qp +jC +qp +Qp +qF +mj +qF +EJ +lk +Gl +vi +vi +FM +EJ +Jv +Ot +tZ +tZ +uV +uj +Bq +WW +xY +xY +ka +WO +Tl +Wa +wY +in +fO +yo +yo +yo +aK +in +nx +Zt +nx +sc +pA +aj +Dw +Ce +Ce +VQ +an +an +an +kX +eS +QL +eS +sb +oT +HN +Kx +pS +yp +nN +nN +th +ys +pK +Mx +Ed +SC +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +IK +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(77,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +SK +Jh +Ae +NL +NL +NL +Qp +Qp +bV +eV +qp +qp +qp +gg +qp +Qp +Cp +na +Cp +EJ +oD +GR +VB +Jj +FO +EJ +jM +gs +zv +hU +sC +uj +OK +Aj +SE +Hv +bj +WO +jD +kN +jh +in +zm +Il +do +aH +qZ +in +nx +Zt +nx +sc +wS +tn +lP +st +tX +sc +KU +bW +JO +vS +JJ +NW +WX +th +th +th +th +th +th +th +th +th +Hw +pK +Mx +Ed +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +IK +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(78,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +SK +Jh +Ae +Jh +SK +SK +SK +Qp +Jx +am +Jx +Jx +Jx +Jx +Jx +Jx +qF +mj +qF +EJ +EJ +EJ +EJ +EJ +EJ +EJ +uj +uj +uj +uj +uj +uj +WO +WO +WO +WO +WO +WO +in +in +in +in +Tk +Rn +Rn +in +in +in +sx +bT +sx +sc +sc +sc +sc +sc +sc +sc +Xr +sI +wv +CT +RQ +Sk +hF +th +qX +nL +Gv +kt +ak +RI +RI +Ed +Uy +Pc +PA +Ed +Oc +sM +sM +sM +sM +uq +Vo +uq +sM +sM +sM +sM +sM +Oc +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +IK +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(79,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +NL +Jh +Ae +Jh +Jh +SK +SK +SK +Jx +mR +aS +pE +Ib +Sb +WF +Jx +Hf +mp +tV +qF +qF +qF +qF +IV +qF +qF +qF +qF +Oa +qF +qF +qF +IV +qF +qF +qF +qF +aJ +ow +OE +ow +ow +Nh +ow +ow +OE +ow +ow +ow +CJ +ow +th +ep +Mp +Uj +Hc +Tn +qO +HT +lL +HT +IG +Ax +th +th +th +SF +pc +pc +ER +ag +YK +YK +Ed +jP +pK +Mx +uq +uq +uq +jg +jg +uq +uq +rr +uq +uq +jg +jg +jg +uq +uq +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +IK +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(80,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +NL +NL +Ae +Jh +Jh +Jh +SK +SK +ZQ +mR +aS +Sb +eR +Sb +Ay +Jx +zW +Cw +sd +sd +sd +sd +sd +wy +sd +sd +sd +sd +Df +sd +sd +sd +wy +sd +sd +sd +sd +Rj +FL +aN +FL +FL +OI +eY +eY +WG +eY +eY +eY +hP +sn +pX +Lb +JK +fM +Ty +gH +th +Ax +th +th +ct +th +De +Le +TB +IZ +IZ +IZ +IZ +YR +YR +xO +gV +YA +MU +vG +BJ +LI +kW +Kb +Kb +mq +uq +nB +uq +Ni +Kb +Kb +Kb +Kv +uq +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +IK +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(81,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +NL +un +eX +NL +Jh +Jh +Jh +SK +ZQ +mR +aS +Sb +bJ +Sb +aD +Jx +ne +gm +qF +qF +qF +qF +qF +ID +qF +qF +qF +qF +Cp +qF +qF +qF +KF +qF +qF +qF +hC +aJ +ow +wc +ow +yP +Ks +RG +ow +ZC +ow +ow +ow +CJ +ow +Gk +Gk +Gk +Gk +Gk +Gk +Gk +Gk +Gk +sQ +uT +wo +yH +jP +BC +en +en +en +en +cq +lJ +pb +GE +VN +Cy +SN +mo +pG +QZ +fW +fW +fW +ex +Ny +XD +df +sP +ZH +vo +Nx +HP +nh +nh +nh +GT +GT +nh +nh +nh +nh +nh +nh +FI +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(82,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Ae +Jh +SK +Jh +Jh +Jh +Jh +ZQ +Vi +pq +Ai +HV +Sb +aD +Jx +dx +qW +dx +dx +dx +dx +dx +dx +dx +dx +dx +dx +Ec +Ec +Ec +Ec +Ec +XB +XB +XB +Bp +me +me +me +me +me +Pd +me +me +me +me +me +xR +fE +eQ +Gk +dE +dE +dE +dE +dE +dE +dE +Gk +Ge +vb +xj +yH +WZ +LP +zy +PX +IW +RN +sU +EN +dr +Ed +Hi +Be +aG +uq +cy +Jo +vJ +vJ +vP +oU +hZ +xC +pl +lC +Dn +tb +LQ +uq +NL +NL +NL +Ae +Op +NL +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(83,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +vQ +af +af +yd +Jh +Jh +Jh +Jx +qs +aS +Sb +tF +Sb +Nz +Jx +FE +sR +FE +Ef +Ub +Yj +Yj +Ef +FE +Ps +eE +dx +ch +lV +zF +NZ +Ec +hO +Gm +yi +BF +Ev +Io +ut +Ts +Io +QP +xH +OG +mT +Yx +me +ow +CJ +ow +Gk +dE +dE +dE +dE +dE +dE +dE +Gk +tQ +Vt +wd +yH +Ed +Cc +Ed +aA +aA +aA +aA +Ro +OU +OU +OU +XE +OU +OU +OU +uq +jg +jg +uq +jg +jg +jg +uq +uq +uq +NX +uq +uq +NL +NL +NL +Ae +NL +NL +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(84,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +NL +ko +VM +NL +ko +yd +SK +SK +Jx +pL +KV +Sb +tF +Sb +AQ +Jx +FE +sR +FE +Ef +GB +Yj +Yj +Ef +FE +FE +uE +dx +ku +mF +Vk +zC +Ec +hr +al +ii +Bp +OM +bS +DZ +WA +WA +nu +WA +AH +zL +xH +me +ow +CJ +ow +Gk +Gk +Gk +Gk +Gk +Gk +MA +sZ +sZ +OA +OA +OA +cz +ow +ok +ow +aA +yw +bb +Ob +tH +OU +iC +iC +Nc +iC +iC +OU +NL +NL +NL +NL +NL +NL +NL +NL +Wu +jg +wm +jg +Wu +NL +NL +NL +Ae +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(85,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +NL +NL +NL +NL +Ae +NL +Jh +Jx +Jx +LV +Sb +xN +Sb +aS +Jx +Td +TS +YB +hz +hz +Vx +ac +Ef +FE +FE +UF +dx +uM +xp +xo +Jm +Ec +kp +bm +ii +Bp +rH +oC +me +aB +me +Ug +aB +me +hE +yf +me +ow +CJ +ow +ow +ow +OE +ow +ow +Lf +CH +ow +ow +ow +ow +OE +ow +ow +ok +ow +aA +wK +za +fz +jd +OU +rh +rh +uW +rh +rh +OU +Se +pT +pT +pT +pT +pT +pT +pT +iZ +uq +yS +uq +qE +pT +pT +pT +kk +Jh +NL +NL +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(86,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +NL +NL +NL +Ae +NL +Jh +Jh +Jx +Jx +sj +Ti +Nj +GJ +Jx +fD +sR +FE +Ef +Ef +ir +Ef +Ef +FE +Rg +FE +dx +Mr +Pp +ip +fj +Ec +RE +bh +RE +me +br +qf +me +dk +Ys +Hh +eb +tC +Rq +KJ +by +Pa +wR +Yy +Yy +Yy +kj +Yy +Yy +Yy +Ap +mS +mS +mS +mS +db +mS +mS +Rz +Vp +aA +RH +rn +FR +wW +OU +zJ +CY +cI +CY +kY +OU +Iz +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +IK +SK +NL +NL +NL +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(87,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +NL +NL +EV +af +yd +Jh +Jh +Jx +Jx +Mc +aS +em +Jx +Ue +sR +FE +Ef +Yj +OR +lA +Ef +FE +FE +ov +dx +Du +Xb +QW +DW +IS +bB +HL +bB +bB +bB +pt +aB +Mw +hy +ON +Xd +Ja +Ly +KJ +by +ow +Pa +ow +ow +ow +ZC +ow +ow +ow +uX +ow +ow +ow +ow +OY +yP +ow +ZM +ow +aA +ej +za +fz +Jk +OU +rm +uz +Eh +mn +Av +OU +Iz +sM +sM +sM +sM +sM +sM +sM +sM +sM +vE +sM +sM +sM +sM +sM +UR +af +af +yd +NL +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(88,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +NL +ko +VM +ko +af +af +af +Kr +Rh +Jx +du +Jx +EZ +yy +FD +EZ +EZ +EZ +EZ +EZ +EZ +FD +FD +EZ +CC +jy +jy +CC +CC +Vg +Vg +RE +RE +xH +DE +me +od +wM +SV +LR +me +tk +qS +by +by +by +by +by +by +by +by +by +by +Bg +by +by +by +by +by +by +by +ff +by +aA +nr +lT +gR +Px +OU +zr +zr +Vb +zr +zr +OU +hk +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +IK +Jh +NL +Ae +NL +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(89,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +NL +NL +NL +NL +SK +Jh +Jh +Vg +ym +QV +cL +zf +ul +zf +zf +zf +Ri +tc +DQ +DQ +DQ +DQ +DQ +UU +DQ +DQ +DQ +DQ +DQ +DQ +DQ +ez +xH +DE +me +me +xu +nf +me +me +Gq +ET +ET +uY +uY +As +if +mK +if +AT +if +if +Ne +iS +iS +Kz +Dk +qY +AK +Ld +KD +vy +aA +aA +aA +aA +aA +OU +oS +oS +Mi +oS +oS +OU +Iz +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +IK +Jh +NL +Ae +NL +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(90,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +RE +RE +Kq +TP +DQ +DQ +DQ +DQ +DQ +WB +TP +DQ +DQ +DQ +DQ +DQ +DQ +Mu +zA +Ln +Ln +Ln +Ln +Ln +RK +hB +In +me +NL +NL +qy +NL +by +KJ +KJ +le +ww +ww +MB +Kt +iv +KJ +UQ +KJ +HF +nD +BG +LY +LY +LY +Gc +lF +Wr +MW +LY +pz +aw +aw +zV +jp +OU +OU +OU +OU +OU +OU +OU +Iz +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +IK +Jh +NL +Ae +NL +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(91,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +RE +Vg +hT +RE +Vg +Vg +RE +RE +RE +hT +RE +RE +Vg +Vg +RE +RE +RE +RE +RE +RE +Vg +Vg +RE +RE +me +me +me +NL +NL +we +NL +by +by +by +by +CK +CK +by +by +by +by +by +by +ur +by +by +by +by +by +by +by +CK +CK +by +hQ +lq +lq +rq +lq +lq +NU +lq +lq +lq +Kk +hQ +Iz +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +IK +Jh +NL +Op +NL +Jh +Jh +Jh +El +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(92,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +qy +SK +Jh +Jh +Jh +Jh +Jh +qy +SK +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +SK +Ae +Jh +NL +NL +NL +Jh +Jh +SK +SK +Jh +Jh +hQ +lq +lq +rq +lq +aa +Bn +lq +lq +Yo +MH +hQ +Iz +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +IK +Jh +NL +NL +NL +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(93,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +qb +Ox +xm +xm +xm +xm +xm +xm +TV +NL +NL +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Ae +SK +NL +NL +NL +Jh +SK +SK +Jh +Jh +Jh +hQ +uD +Qv +Al +VZ +tu +lq +nT +xE +YS +Ho +hQ +hk +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +IK +Jh +NL +NL +NL +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(94,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +NL +NL +NL +NL +NL +NL +NL +uH +OJ +NL +NL +NL +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +NL +Ae +NL +NL +NL +NL +NL +NL +NL +NL +Jh +Jh +hQ +hQ +hQ +hQ +hQ +hQ +hQ +hQ +hQ +hQ +hQ +hQ +Iz +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +IK +SK +NL +NL +NL +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(95,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +NL +NL +NL +NL +NL +NL +we +qy +NL +NL +NL +NL +NL +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +NL +NL +Ae +NL +NL +NL +NL +NL +NL +NL +NL +NL +SK +SK +NL +NL +NL +NL +NL +NL +NL +NL +NL +NL +NL +Iz +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +IK +SK +NL +NL +NL +Jh +Jh +zk +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(96,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +NL +NL +NL +NL +NL +NL +qy +NL +NL +NL +NL +NL +NL +NL +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +NL +NL +NL +NL +Ae +NL +NL +NL +NL +NL +NL +NL +NL +NL +SK +SK +SK +NL +NL +NL +NL +NL +NL +NL +NL +NL +NL +Iz +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +sM +IK +Jh +NL +NL +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(97,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +NL +NL +NL +NL +NL +EU +xm +xm +xm +xm +xm +xm +xm +xm +iY +Jh +Jh +Jh +Jh +Jh +Jh +El +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +NL +NL +NL +NL +NL +NL +Ae +NL +NL +NL +NL +NL +NL +NL +NL +NL +NL +Jh +Jh +Jh +NL +NL +NL +NL +NL +NL +NL +NL +NL +dh +PT +PT +PT +PT +PT +PT +PT +PT +PT +PT +va +nh +nh +nh +nh +FI +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(98,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +un +af +Rx +af +af +af +af +af +ew +af +Rx +af +af +af +af +af +af +af +af +Rx +af +af +af +af +af +af +af +af +af +af +Rx +af +af +af +af +af +af +af +Rx +af +af +af +LW +NL +NL +NL +NL +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(99,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +zk +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +NL +NL +Ae +NL +Op +NL +NL +NL +NL +NL +NL +NL +Op +NL +NL +NL +NL +NL +NL +NL +NL +Op +NL +SK +SK +SK +NL +NL +NL +NL +NL +NL +Ae +NL +NL +NL +NL +NL +NL +NL +Ae +NL +NL +NL +ko +af +af +af +af +af +yd +NL +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(100,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +FH +af +af +af +eX +NL +NL +NL +NL +NL +NL +NL +NL +NL +NL +NL +NL +NL +NL +NL +NL +NL +NL +NL +NL +NL +Jh +Jh +Jh +NL +NL +NL +NL +NL +Ae +NL +NL +NL +NL +NL +NL +NL +Ae +NL +NL +NL +NL +NL +NL +Jh +Jh +NL +Ae +NL +NL +NL +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(101,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +NL +NL +NL +NL +NL +NL +NL +NL +NL +NL +NL +NL +NL +NL +Jh +Jh +Jh +Jh +Jh +Jh +Jh +NL +NL +NL +NL +Op +NL +NL +NL +NL +NL +NL +NL +Op +NL +NL +NL +NL +NL +SK +SK +NL +NL +Op +NL +NL +NL +NL +NL +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(102,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +NL +NL +NL +NL +NL +NL +NL +NL +NL +NL +Jh +Jh +Jh +Jh +Jh +Jh +zk +Jh +Jh +Jh +NL +NL +NL +NL +NL +NL +NL +NL +NL +NL +NL +NL +NL +NL +NL +NL +Jh +Jh +NL +NL +NL +NL +NL +NL +NL +NL +NL +NL +NL +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(103,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(104,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +sE +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(105,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(106,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +El +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(107,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(108,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(109,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(110,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(111,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +El +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +El +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(112,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +El +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +El +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(113,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(114,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(115,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(116,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +El +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(117,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(118,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(119,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(120,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Lr +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(121,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(122,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(123,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(124,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(125,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(126,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(127,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(128,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(129,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(130,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(131,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(132,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(133,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(134,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(135,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(136,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(137,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(138,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(139,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} +(140,1,1) = {" +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +Jh +"} diff --git a/maps/stellardelight/stellar_delight_areas.dm b/maps/stellardelight/stellar_delight_areas.dm new file mode 100644 index 0000000000..47bb681c0a --- /dev/null +++ b/maps/stellardelight/stellar_delight_areas.dm @@ -0,0 +1,303 @@ +/area/stellardelight + name = "Stellar Delight" + icon = 'icons/turf/areas_vr.dmi' + icon_state = "blublatri" + requires_power = TRUE + dynamic_lighting = TRUE + +/area/maintenance/stellardelight + name = "Maintenance" + icon = 'icons/turf/areas_vr.dmi' + icon_state = "purblasqu" + flags = RAD_SHIELDED + ambience = AMBIENCE_MAINTENANCE + +/area/maintenance/stellardelight/substation/atmospherics + name = "Atmospherics Substation" +/area/maintenance/stellardelight/substation/cargo + name = "Cargo Substation" +/area/maintenance/stellardelight/substation/civilian + name = "Civilian Substation" +/area/maintenance/stellardelight/substation/command + name = "Command Substation" +/area/maintenance/stellardelight/substation/engineering + name = "Engineering Substation" +/area/maintenance/stellardelight/substation/exploration + name = "Exploration Substation" +/area/maintenance/stellardelight/substation/medical + name = "Medical Substation" +/area/maintenance/stellardelight/substation/research + name = "Research Substation" +/area/maintenance/stellardelight/substation/security + name = "Security Substation" + +/area/maintenance/stellardelight/deck1 + icon_state = "deckmaint1" + +/area/maintenance/stellardelight/deck1/portfore + name = "Deck One Port Forward Maintenance" +/area/maintenance/stellardelight/deck1/starboardfore + name = "Deck One Starboard Forward Maintenance" +/area/maintenance/stellardelight/deck1/portcent + name = "Deck One Port Center Maintenance" +/area/maintenance/stellardelight/deck1/starboardcent + name = "Deck One Starboard Center Maintenance" +/area/maintenance/stellardelight/deck1/portaft + name = "Deck One Port Aft Maintenance" +/area/maintenance/stellardelight/deck1/exploration + name = "Exploration Maintenance" +/area/maintenance/stellardelight/deck1/starboardaft + name = "Deck One starboard aft Maintenance" + +/area/maintenance/stellardelight/deck2 + icon_state = "deckmaint2" + +/area/maintenance/stellardelight/deck2/portfore + name = "Deck Two Port Forward Maintenance" +/area/maintenance/stellardelight/deck2/starboardfore + name = "Deck Two Starboard Forward Maintenance" +/area/maintenance/stellardelight/deck2/portaft + name = "Deck Two Port Aft Maintenance" +/area/maintenance/stellardelight/deck2/starboardaft + name = "Deck Two Starboard Aft Maintenance" +/area/maintenance/stellardelight/deck2/portsolars + name = "Deck Two Port Solar Array" +/area/maintenance/stellardelight/deck2/starboardsolars + name = "Deck Two Starboard Solar Array" +/area/maintenance/stellardelight/deck2/atmos + name = "Atmospherics Maintenance" + + +/area/maintenance/stellardelight/deck3 + icon_state = "deckmaint3" + +/area/maintenance/stellardelight/deck3/portfore + name = "Deck Three Port Forward Maintenance" +/area/maintenance/stellardelight/deck3/starboardfore + name = "Deck Three Starboard Forward Maintenance" +/area/maintenance/stellardelight/deck3/portcent + name = "Deck Three Port Central Maintenance" +/area/maintenance/stellardelight/deck3/starboardcent + name = "Deck Three Starboard Central Maintenance" +/area/maintenance/stellardelight/deck3/portaft + name = "Deck Three Port Aft Maintenance" +/area/maintenance/stellardelight/deck3/starboardaft + name = "Deck Three Starboard Aft Maintenance" + +/area/maintenance/stellardelight/deck3/foreportrooma + name = "Deck Three Forward Port Construction A" +/area/maintenance/stellardelight/deck3/foreportroomb + name = "Deck Three Forward Port Construction B" +/area/maintenance/stellardelight/deck3/forestarrooma + name = "Deck Three Forward Starboard Construction A" +/area/maintenance/stellardelight/deck3/forestarroomb + name = "Deck Three Forward Starboard Construction B" +/area/maintenance/stellardelight/deck3/forestarroomc + name = "Deck Three Forward Starboard Construction C" +/area/maintenance/stellardelight/deck3/aftstarroom + name = "Deck Three Aft Starboard Construction" + + +/area/maintenance/stellardelight/deck3/portfore +/area/maintenance/stellardelight/deck3/starboardfore + + +/area/stellardelight/deck1 + name = "Deck One" + icon_state = "deck1" + +/area/stellardelight/deck1/fore + name = "Deck One Fore" + sound_env = LARGE_ENCLOSED + +/area/stellardelight/deck1/port + name = "Deck One Port" + sound_env = LARGE_ENCLOSED + +/area/stellardelight/deck1/starboard + name = "Deck One Starboard" + sound_env = LARGE_ENCLOSED + +/area/stellardelight/deck1/aft + name = "Deck One Aft" + sound_env = LARGE_ENCLOSED + +/area/stellardelight/deck1/dorms + name = "Dormitory" + sound_env = SMALL_SOFTFLOOR + flags = RAD_SHIELDED| BLUE_SHIELDED |AREA_FLAG_IS_NOT_PERSISTENT + soundproofed = TRUE + limit_mob_size = FALSE + block_suit_sensors = TRUE + forbid_events = TRUE + +/area/stellardelight/deck1/dorms/dorm1 + name = "Dormitory One" + icon_state = "dorm1" +/area/stellardelight/deck1/dorms/dorm2 + name = "Dormitory Two" + icon_state = "dorm2" +/area/stellardelight/deck1/dorms/dorm3 + name = "Dormitory Three" + icon_state = "dorm3" +/area/stellardelight/deck1/dorms/dorm4 + name = "Dormitory Four" + icon_state = "dorm4" +/area/stellardelight/deck1/dorms/dorm5 + name = "Dormitory Five" + icon_state = "dorm5" +/area/stellardelight/deck1/dorms/dorm6 + name = "Dormitory Six" + icon_state = "dorm6" +/area/stellardelight/deck1/dorms/dorm7 + name = "Dormitory Seven" + icon_state = "dorm7" +/area/stellardelight/deck1/dorms/dorm8 + name = "Dormitory Eight" + icon_state = "dorm8" + +/area/stellardelight/deck1/researchequip + name = "Research Equipment" +/area/stellardelight/deck1/researchhall + name = "Research Hallway" +/area/stellardelight/deck1/researchserver + name = "Research Server Room" + +/area/stellardelight/deck1/shower + name = "Showers" + +/area/stellardelight/deck1/mining + name = "Mining Hallway" +/area/stellardelight/deck1/oreprocessing + name = "Ore Processing" +/area/stellardelight/deck1/miningequipment + name = "Mining Equipment" + +/area/stellardelight/deck1/shuttlebay + name = "Shuttle Bay" + ambience = AMBIENCE_HANGAR + sound_env = LARGE_ENCLOSED +/area/stellardelight/deck1/miningshuttle + name = "Mining Shuttle" +/area/stellardelight/deck1/exploshuttle + name = "Exploration Shuttle" + +/area/stellardelight/deck1/exploration + name = "Exploration Hallway" +/area/stellardelight/deck1/exploequipment + name = "Exploration Equipment" +/area/stellardelight/deck1/explobriefing + name = "Exploration Briefing" +/area/stellardelight/deck1/pathfinder + name = "Pathfinder" + +/area/stellardelight/deck1/pilot + name = "Pilot Equipment" + +/area/stellardelight/deck1/resleeving + name = "Resleeving Lab" +/area/stellardelight/deck1/paramedic + name = "Paramedic Equipment" +/area/stellardelight/deck1/lowermed + name = "Lower Medical" + + +/area/stellardelight/deck2 + name = "Deck Two" + icon_state = "deck2" + +/area/stellardelight/deck2/fore + name = "Deck Two Fore" + sound_env = LARGE_ENCLOSED + +/area/stellardelight/deck2/port + name = "Deck Two Port" + sound_env = LARGE_ENCLOSED + +/area/stellardelight/deck2/starboard + name = "Deck Two Starboard" + sound_env = LARGE_ENCLOSED + +/area/stellardelight/deck2/aftport + name = "Deck Two Aft Port" + sound_env = LARGE_ENCLOSED + +/area/stellardelight/deck2/aftstarboard + name = "Deck Two Aft Starboard" + sound_env = LARGE_ENCLOSED + +/area/stellardelight/deck2/central + name = "Deck Two Central" + sound_env = LARGE_ENCLOSED + +/area/stellardelight/deck2/barbackroom + name = "Bar Backroom" + sound_env = SMALL_SOFTFLOOR + +/area/stellardelight/deck2/portescape + name = "Port Escape Pod" + requires_power = FALSE +/area/stellardelight/deck2/starboardescape + name = "Starboard Escape Pod" + requires_power = FALSE + +/area/stellardelight/deck2/o2production + name = "O2 Production" + ambience = AMBIENCE_ATMOS +/area/stellardelight/deck2/fuelstorage + name = "Primary Fuel Storage" + ambience = AMBIENCE_ATMOS +/area/stellardelight/deck2/combustionworkshop + name = "Combustion Workshop" + ambience = AMBIENCE_ATMOS + +/area/stellardelight/deck2/triage + name = "Triage" + +/area/stellardelight/deck2/briefingroom + name = "Command Briefing Room" + sound_env = SMALL_SOFTFLOOR + +/area/stellardelight/deck3 + name = "Deck Three" + icon_state = "deck3" + +/area/stellardelight/deck3/aft + name = "Deck Three Aft" + ambience = AMBIENCE_ARRIVALS +/area/stellardelight/deck3/cafe + name = "Cafe" +/area/stellardelight/deck3/commandhall + name = "Command Office Hallway" + +/area/stellardelight/deck3/transitgateway + name = "Transit Gateway" +/area/stellardelight/deck3/cryo + name = "Cryogenic Storage" + +/area/stellardelight/deck3/readingroom + name = "Reading Rooms" + sound_env = SMALL_SOFTFLOOR + flags = RAD_SHIELDED| BLUE_SHIELDED |AREA_FLAG_IS_NOT_PERSISTENT + soundproofed = TRUE + block_suit_sensors = TRUE + forbid_events = TRUE + +/area/stellardelight/deck3/portdock + name = "Port Dock" + ambience = AMBIENCE_ARRIVALS + +/area/stellardelight/deck3/starboarddock + name = "Starboard Dock" + ambience = AMBIENCE_ARRIVALS + +/area/stellardelight/deck3/clownmimeoffice + name = "Clown and Mime Office" + +/area/stellardelight/deck1/exterior + name = "Deck One Exterior" +/area/stellardelight/deck2/exterior + name = "Deck Two Exterior" +/area/stellardelight/deck3/exterior + name = "Deck Three Exterior" + diff --git a/maps/stellardelight/stellar_delight_defines.dm b/maps/stellardelight/stellar_delight_defines.dm new file mode 100644 index 0000000000..3cafb69e00 --- /dev/null +++ b/maps/stellardelight/stellar_delight_defines.dm @@ -0,0 +1,354 @@ +//Normal map defs +#define Z_LEVEL_SHIP_LOW 1 +#define Z_LEVEL_SHIP_MID 2 +#define Z_LEVEL_SHIP_HIGH 3 +#define Z_LEVEL_CENTCOM 4 +#define Z_LEVEL_MISC 5 +#define Z_LEVEL_SPACE_ROCKS 6 +#define Z_LEVEL_BEACH 7 +#define Z_LEVEL_BEACH_CAVE 8 +#define Z_LEVEL_AEROSTAT 9 +#define Z_LEVEL_AEROSTAT_SURFACE 10 +#define Z_LEVEL_DEBRISFIELD 11 +#define Z_LEVEL_FUELDEPOT 12 +#define Z_LEVEL_OVERMAP 13 +#define Z_LEVEL_OFFMAP1 14 +#define Z_LEVEL_GATEWAY 15 +#define Z_LEVEL_OM_ADVENTURE 16 + +//Camera networks +#define NETWORK_HALLS "Halls" + +/datum/map/stellar_delight/New() + ..() + var/choice = pickweight(list( + "logo1" = 50, + "logo2" = 50, + "gateway" = 5, + "youcanttaketheskyfromme" = 200, + "intothedark" = 200 + )) + if(choice) + lobby_screens = list(choice) + +/datum/map/stellar_delight + name = "StellarDelight" + full_name = "NRV Stellar Delight" + path = "stellardelight" + + use_overmap = TRUE + overmap_z = Z_LEVEL_OVERMAP + overmap_size = 99 + overmap_event_areas = 200 + usable_email_tlds = list("virgo.nt") + + zlevel_datum_type = /datum/map_z_level/stellar_delight + + lobby_icon = 'icons/misc/title_vr.dmi' + lobby_screens = list("youcanttaketheskyfromme") + id_hud_icons = 'icons/mob/hud_jobs_vr.dmi' + + + holomap_smoosh = list(list( + Z_LEVEL_SHIP_LOW, + Z_LEVEL_SHIP_MID, + Z_LEVEL_SHIP_HIGH)) + + station_name = "NRV Stellar Delight" + station_short = "Stellar Delight" + facility_type = "ship" + dock_name = "Virgo-3B Colony" + dock_type = "surface" + boss_name = "Central Command" + boss_short = "CentCom" + company_name = "NanoTrasen" + company_short = "NT" + starsys_name = "Virgo-Erigone" + + shuttle_docked_message = "The scheduled shuttle to the %dock_name% has arrived. It will depart in approximately %ETD%." + shuttle_leaving_dock = "The shuttle has departed. Estimate %ETA% until arrival at %dock_name%." + shuttle_called_message = "A scheduled crew transfer to the %dock_name% is occuring. The shuttle will arrive shortly. Those departing should proceed to deck three, aft within %ETA%." + shuttle_recall_message = "The scheduled crew transfer has been cancelled." + shuttle_name = "Crew Transport" + emergency_shuttle_docked_message = "The evacuation shuttle has arrived. You have approximately %ETD% to board the shuttle." + emergency_shuttle_leaving_dock = "The emergency shuttle has departed. Estimate %ETA% until arrival at %dock_name%." + emergency_shuttle_called_message = "An emergency evacuation has begun, and an off-schedule shuttle has been called. It will arrive at deck three, aft in approximately %ETA%." + emergency_shuttle_recall_message = "The evacuation shuttle has been recalled." + + station_networks = list( + NETWORK_CARGO, + NETWORK_CIRCUITS, + NETWORK_CIVILIAN, + NETWORK_COMMAND, + NETWORK_ENGINE, + NETWORK_ENGINEERING, + NETWORK_EXPLORATION, + NETWORK_MEDICAL, + NETWORK_MINE, + NETWORK_RESEARCH, + NETWORK_RESEARCH_OUTPOST, + NETWORK_ROBOTS, + NETWORK_SECURITY, + NETWORK_TELECOM, + NETWORK_HALLS + ) + secondary_networks = list( + NETWORK_ERT, + NETWORK_MERCENARY, + NETWORK_THUNDER, + NETWORK_COMMUNICATORS, + NETWORK_ALARM_ATMOS, + NETWORK_ALARM_POWER, + NETWORK_ALARM_FIRE, + NETWORK_TALON_HELMETS, + NETWORK_TALON_SHIP + ) + + bot_patrolling = FALSE + + allowed_spawns = list("Gateway","Cryogenic Storage","Cyborg Storage","ITV Talon Cryo") + spawnpoint_died = /datum/spawnpoint/cryo + spawnpoint_left = /datum/spawnpoint/gateway + spawnpoint_stayed = /datum/spawnpoint/cryo + + /* + meteor_strike_areas = list(/area/tether/surfacebase/outside/outside3) + */ + + default_skybox = /datum/skybox_settings/stellar_delight + + unit_test_exempt_areas = list( + /area/stellardelight/deck1/exterior, + /area/stellardelight/deck1/exploshuttle, + /area/stellardelight/deck1/miningshuttle + ) + + unit_test_exempt_from_atmos = list() //it maint + + + lateload_z_levels = list( + list("Ship - Central Command"), + list("Ship - Misc"), //Shuttle transit zones, holodeck templates, etc + list("V3b Asteroid Field"), + list("Desert Planet - Z1 Beach","Desert Planet - Z2 Cave"), + list("Remmi Aerostat - Z1 Aerostat","Remmi Aerostat - Z2 Surface"), + list("Debris Field - Z1 Space"), + list("Fuel Depot - Z1 Space"), + list("Overmap"), + list("Offmap Ship - Talon V2") + ) + + lateload_gateway = list( + list("Carp Farm"), + list("Snow Field"), + list("Listening Post"), + list(list("Honleth Highlands A", "Honleth Highlands B")), + list("Arynthi Lake Underground A","Arynthi Lake A"), + list("Arynthi Lake Underground B","Arynthi Lake B"), + list("Eggnog Town Underground","Eggnog Town"), + list("Wild West") + ) + + lateload_overmap = list( + list("Grass Cave") + ) + + ai_shell_restricted = TRUE + ai_shell_allowed_levels = list( + Z_LEVEL_SHIP_LOW, + Z_LEVEL_SHIP_MID, + Z_LEVEL_SHIP_HIGH, + Z_LEVEL_MISC, + Z_LEVEL_BEACH, + Z_LEVEL_AEROSTAT + ) + +/* + belter_docked_z = list(Z_LEVEL_SPACE_LOW) + belter_transit_z = list(Z_LEVEL_MISC) + belter_belt_z = list(Z_LEVEL_ROGUEMINE_1, + Z_LEVEL_ROGUEMINE_2) + + mining_station_z = list(Z_LEVEL_SPACE_LOW) + mining_outpost_z = list(Z_LEVEL_SURFACE_MINE) +*/ + planet_datums_to_make = list(/datum/planet/virgo3b, + /datum/planet/virgo4) + +/datum/map/stellar_delight/get_map_info() + . = list() + . += "The [full_name] is a recently commissioned multi-role starship assigned to patrol the Virgo-Erigone system. Its mission is flexible, being a response vessel, the [station_short] is assigned to respond to emergencies in the system, and to investigate anomalous activities where a more specialized vessel is unavailable.
" + . += "Humanity has spread across the stars and has met many species on similar or even more advanced terms than them - it's a brave new world and many try to find their place in it .
" + . += "Though Virgo-Erigone is not important for the great movers and shakers, it sees itself in the midst of the interests of a reviving alien species of the Zorren, corporate and subversive interests and other exciting dangers the Periphery has to face.
" + . += "As an employee or contractor of NanoTrasen, operators of the Adephagia and one of the galaxy's largest corporations, you're probably just here to do a job." + return jointext(., "
") + + +/datum/map/stellar_delight/perform_map_generation() + + new /datum/random_map/automata/cave_system/no_cracks(null, 1, 1, Z_LEVEL_SPACE_ROCKS, world.maxx, world.maxy) // Create the mining Z-level. + new /datum/random_map/noise/ore(null, 1, 1, Z_LEVEL_SPACE_ROCKS, 64, 64) // Create the mining ore distribution map. + return 1 + + +/datum/skybox_settings/stellar_delight + icon_state = "space5" + use_stars = FALSE + +/datum/planet/virgo3b + expected_z_levels = list(Z_LEVEL_CENTCOM) +/datum/planet/virgo4 + expected_z_levels = list( + Z_LEVEL_BEACH + ) + +/obj/effect/landmark/map_data/stellar_delight + height = 3 + +/obj/effect/overmap/visitable/ship/stellar_delight + name = "NRV Stellar Delight" + icon = 'icons/obj/overmap_vr.dmi' + icon_state = "stellar_delight_g" + desc = "Spacefaring vessel. Friendly IFF detected." + scanner_desc = @{"[i]Registration[/i]: NRV Stellar Delight +[i]Class[/i]: Nanotrasen Response Vessel +[i]Transponder[/i]: Transmitting (CIV), non-hostile" +[b]Notice[/b]: A response vessel registered to Nanotrasen."} + vessel_mass = 25000 + vessel_size = SHIP_SIZE_LARGE + initial_generic_waypoints = list("starboard_shuttlepad","port_shuttlepad","sd-1-23-54","sd-1-67-15","sd-1-70-130","sd-1-115-85","sd-2-25-98","sd-2-117-98","sd-3-22-78","sd-3-36-33","sd-3-104-33","sd-3-120-78") + initial_restricted_waypoints = list("Exploration Shuttle" = list("sd_explo"), "Mining Shuttle" = list("sd_mining")) + levels_for_distress = list(Z_LEVEL_OFFMAP1, Z_LEVEL_BEACH, Z_LEVEL_AEROSTAT, Z_LEVEL_DEBRISFIELD, Z_LEVEL_FUELDEPOT) + unowned_areas = list(/area/shuttle/sdboat) + known = TRUE + start_x = 2 + start_y = 2 + + fore_dir = NORTH + + skybox_icon = 'stelardelightskybox.dmi' + skybox_icon_state = "skybox" + skybox_pixel_x = 450 + skybox_pixel_y = 200 + +/obj/effect/overmap/visitable/ship/stellar_delight/build_skybox_representation() + ..() + if(!cached_skybox_image) + return + cached_skybox_image.add_overlay("glow") + +// For making the 6-in-1 holomap, we calculate some offsets +#define SHIP_MAP_SIZE 140 // Width and height of compiled in tether z levels. +#define SHIP_HOLOMAP_CENTER_GUTTER 40 // 40px central gutter between columns +#define SHIP_HOLOMAP_MARGIN_X ((HOLOMAP_ICON_SIZE - (2*SHIP_MAP_SIZE) - SHIP_HOLOMAP_CENTER_GUTTER) / 2) // 80 +#define SHIP_HOLOMAP_MARGIN_Y ((HOLOMAP_ICON_SIZE - (2*SHIP_MAP_SIZE)) / 2) // 30 + +// We have a bunch of stuff common to the station z levels +/datum/map_z_level/stellar_delight + flags = MAP_LEVEL_STATION|MAP_LEVEL_CONTACT|MAP_LEVEL_PLAYER|MAP_LEVEL_CONSOLES|MAP_LEVEL_XENOARCH_EXEMPT|MAP_LEVEL_PERSIST + holomap_legend_x = 220 + holomap_legend_y = 160 + +/datum/map_z_level/stellar_delight/deck_one + z = Z_LEVEL_SHIP_LOW + name = "Deck 1" + base_turf = /turf/space + transit_chance = 33 + holomap_offset_x = SHIP_HOLOMAP_MARGIN_X + holomap_offset_y = SHIP_HOLOMAP_MARGIN_Y + +/datum/map_z_level/stellar_delight/deck_two + z = Z_LEVEL_SHIP_MID + name = "Deck 2" + base_turf = /turf/simulated/open + transit_chance = 33 + holomap_offset_x = SHIP_HOLOMAP_MARGIN_X + holomap_offset_y = SHIP_HOLOMAP_MARGIN_Y + SHIP_MAP_SIZE + +/datum/map_z_level/stellar_delight/deck_three + z = Z_LEVEL_SHIP_HIGH + name = "Deck 3" + base_turf = /turf/simulated/open + transit_chance = 33 + holomap_offset_x = HOLOMAP_ICON_SIZE - SHIP_HOLOMAP_MARGIN_X - SHIP_MAP_SIZE + holomap_offset_y = SHIP_HOLOMAP_MARGIN_Y + SHIP_MAP_SIZE + +/datum/map_template/ship_lateload + allow_duplicates = FALSE + var/associated_map_datum + +/////STATIC LATELOAD///// + +/datum/map_template/ship_lateload/on_map_loaded(z) + if(!associated_map_datum || !ispath(associated_map_datum)) + log_game("Extra z-level [src] has no associated map datum") + return + + new associated_map_datum(using_map, z) + +/datum/map_template/ship_lateload/ship_centcom + name = "Ship - Central Command" + desc = "Central Command lives here!" + mappath = 'ship_centcom.dmm' + + associated_map_datum = /datum/map_z_level/ship_lateload/ship_centcom + +/datum/map_z_level/ship_lateload/ship_centcom + z = Z_LEVEL_CENTCOM + name = "Centcom" + flags = MAP_LEVEL_ADMIN|MAP_LEVEL_SEALED|MAP_LEVEL_CONTACT|MAP_LEVEL_XENOARCH_EXEMPT + base_turf = /turf/simulated/floor/outdoors/rocks + +/area/centcom //Just to try to make sure there's not space!!! + base_turf = /turf/simulated/floor/outdoors/rocks + +/datum/map_template/ship_lateload/ship_misc + name = "Ship - Misc" + desc = "Misc areas, like some transit areas, holodecks, merc area." + mappath = 'ship_misc.dmm' + + associated_map_datum = /datum/map_z_level/ship_lateload/misc + +/datum/map_z_level/ship_lateload/misc + z = Z_LEVEL_MISC + name = "Misc" + flags = MAP_LEVEL_ADMIN|MAP_LEVEL_SEALED|MAP_LEVEL_CONTACT|MAP_LEVEL_XENOARCH_EXEMPT + +#include "../submaps/space_rocks/space_rocks.dm" +/datum/map_template/ship_lateload/space_rocks + name = "V3b Asteroid Field" + desc = "Space debris is common in V3b's orbit due to the proximity of Virgo 3" + mappath = 'maps/submaps/space_rocks/space_rocks.dmm' + + associated_map_datum = /datum/map_z_level/ship_lateload/space_rocks + +/datum/map_template/ship_lateload/space_rocks/on_map_loaded(z) + . = ..() + seed_submaps(list(Z_LEVEL_SPACE_ROCKS), 60, /area/sdmine/unexplored, /datum/map_template/space_rocks) + new /datum/random_map/automata/cave_system/no_cracks(null, 3, 3, Z_LEVEL_SPACE_ROCKS, world.maxx - 4, world.maxy - 4) + new /datum/random_map/noise/ore/spacerocks(null, 1, 1, Z_LEVEL_SPACE_ROCKS, 64, 64) + +/datum/map_z_level/ship_lateload/space_rocks + z = Z_LEVEL_SPACE_ROCKS + name = "V3b Asteroid Field" + base_turf = /turf/space + flags = MAP_LEVEL_PLAYER|MAP_LEVEL_CONTACT|MAP_LEVEL_CONSOLES + +/datum/map_template/ship_lateload/overmap + name = "Overmap" + desc = "Overmap lives here :3" + mappath = 'overmap.dmm' + + associated_map_datum = /datum/map_z_level/ship_lateload/overmap + +/datum/map_z_level/ship_lateload/overmap + z = Z_LEVEL_OVERMAP + name = "Overmap" + flags = MAP_LEVEL_ADMIN|MAP_LEVEL_SEALED|MAP_LEVEL_CONTACT|MAP_LEVEL_XENOARCH_EXEMPT + +#include "../expedition_vr/aerostat/_aerostat_science_outpost.dm" +/datum/map_template/common_lateload/away_aerostat + name = "Remmi Aerostat - Z1 Aerostat" + desc = "The Virgo 2 Aerostat away mission." + mappath = 'maps/expedition_vr/aerostat/aerostat_science_outpost.dmm' + associated_map_datum = /datum/map_z_level/common_lateload/away_aerostat diff --git a/maps/stellardelight/stellar_delight_jobs.dm b/maps/stellardelight/stellar_delight_jobs.dm new file mode 100644 index 0000000000..2541edfd9c --- /dev/null +++ b/maps/stellardelight/stellar_delight_jobs.dm @@ -0,0 +1,30 @@ +//The pathfinder doesn't have a OM shuttle that they are in charge of, and so, doesn't need pilot access. +//Mostly to prevent explo from just commandeering the Starstuff as the explo shuttle without involving a pilot every round. +/datum/job/pathfinder + access = list(access_eva, access_maint_tunnels, access_external_airlocks, access_explorer, access_gateway, access_pathfinder) + minimal_access = list(access_eva, access_maint_tunnels, access_external_airlocks, access_explorer, access_gateway, access_pathfinder) + +//Same as above, to discorage explo from taking off with the small ship without asking, SAR should not need pilot access. +/datum/job/sar + access = list(access_medical, access_medical_equip, access_morgue, access_surgery, access_chemistry, access_eva, access_maint_tunnels, access_external_airlocks) + minimal_access = list(access_medical, access_medical_equip, access_morgue) + +/datum/job/hop + alt_titles = list("Crew Resources Officer" = /datum/alt_title/cro, "Deputy Manager" = /datum/alt_title/deputy_manager, "Staff Manager" = /datum/alt_title/staff_manager, + "Facility Steward" = /datum/alt_title/facility_steward, "First Mate" = /datum/alt_title/first_mate) + +/datum/alt_title/first_mate + title = "First Mate" + +/datum/job/atmos + alt_titles = list("Atmospheric Engineer" = /datum/alt_title/atmos_engi, "Atmospheric Maintainer" = /datum/alt_title/atmos_maint, "Disposals Technician" = /datum/alt_title/disposals_tech, + "Fuel Technician" = /datum/alt_title/refuel_tech) + +/datum/alt_title/refuel_tech + title = "Fuel Technician" + +/datum/job/warden + alt_titles = list("Brig Sentry" = /datum/alt_title/brig_sentry, "Armory Superintendent" = /datum/alt_title/armory_superintendent, "Master-at-Arms" = /datum/alt_title/master_at_arms) + +/datum/alt_title/master_at_arms + title = "Master-at-Arms" \ No newline at end of file diff --git a/maps/stellardelight/stellar_delight_shuttle_defs.dm b/maps/stellardelight/stellar_delight_shuttle_defs.dm new file mode 100644 index 0000000000..e83c05be9e --- /dev/null +++ b/maps/stellardelight/stellar_delight_shuttle_defs.dm @@ -0,0 +1,287 @@ +////////////////SHUTTLE TIME/////////////////// + +////////////////////////////////////////////////////////////// +// Escape shuttle and pods +/datum/shuttle/autodock/ferry/emergency/escape + name = "Escape" + location = FERRY_LOCATION_OFFSITE + shuttle_area = /area/shuttle/escape + warmup_time = 10 + landmark_offsite = "escape_cc" + landmark_station = "escape_station" + landmark_transition = "escape_transit" + move_time = SHUTTLE_TRANSIT_DURATION_RETURN + move_direction = SOUTH + docking_controller_tag = "escape_shuttle" + +/datum/shuttle/autodock/ferry/escape_pod/portescape + name = "Port Escape Pod" + location = FERRY_LOCATION_STATION + shuttle_area = /area/stellardelight/deck2/portescape + warmup_time = 0 + landmark_station = "port_ship_berth" + landmark_offsite = "port_escape_cc" + landmark_transition = "port_escape_transit" + docking_controller_tag = "port_escape_pod" + move_time = SHUTTLE_TRANSIT_DURATION_RETURN + move_direction = EAST + +/datum/shuttle/autodock/ferry/escape_pod/starboardescape + name = "Starboard Escape Pod" + location = FERRY_LOCATION_STATION + shuttle_area = /area/stellardelight/deck2/starboardescape + warmup_time = 0 + landmark_station = "starboard_ship_berth" + landmark_offsite = "starboard_escape_cc" + landmark_transition = "starboard_escape_transit" + docking_controller_tag = "starboard_escape_pod" + move_time = SHUTTLE_TRANSIT_DURATION_RETURN + move_direction = WEST + + +////////////////////////////////////////////////////////////// +// Supply shuttle +/datum/shuttle/autodock/ferry/supply/cargo + name = "Supply" + location = FERRY_LOCATION_OFFSITE + shuttle_area = /area/shuttle/supply + warmup_time = 10 + landmark_offsite = "supply_cc" + landmark_station = "supply_station" + docking_controller_tag = "supply_shuttle" + flags = SHUTTLE_FLAGS_PROCESS|SHUTTLE_FLAGS_SUPPLY + move_direction = WEST + +/////EXPLORATION SHUTTLE +// The shuttle's 'shuttle' computer +/obj/machinery/computer/shuttle_control/explore/stellardelight/exploration + name = "boat control console" + shuttle_tag = "Exploration Shuttle" + req_one_access = null + +// A shuttle lateloader landmark +/obj/effect/shuttle_landmark/shuttle_initializer/exploration + name = "Exploration Shuttle Landing Pad" + base_area = /area/stellardelight/deck1/shuttlebay + base_turf = /turf/simulated/floor/reinforced + landmark_tag = "sd_explo" + docking_controller = "explodocker_bay" + shuttle_type = /datum/shuttle/autodock/overmap/exboat + +// The 'shuttle' +/datum/shuttle/autodock/overmap/exboat + name = "Exploration Shuttle" + current_location = "sd_explo" + docking_controller_tag = "explodocker" + shuttle_area = /area/stellardelight/deck1/exploshuttle + fuel_consumption = 0 + defer_initialisation = TRUE + range = 1 + +/////MINING SHUTTLE +// The shuttle's 'shuttle' computer +/obj/machinery/computer/shuttle_control/explore/stellardelight/mining + name = "boat control console" + shuttle_tag = "Mining Shuttle" + req_one_access = null + +// A shuttle lateloader landmark +/obj/effect/shuttle_landmark/shuttle_initializer/mining + name = "Mining Shuttle Landing Pad" + base_area = /area/stellardelight/deck1/shuttlebay + base_turf = /turf/simulated/floor/reinforced + landmark_tag = "sd_mining" + docking_controller = "miningdocker_bay" + shuttle_type = /datum/shuttle/autodock/overmap/mineboat + +// The 'shuttle' +/datum/shuttle/autodock/overmap/mineboat + name = "Mining Shuttle" + current_location = "sd_mining" + docking_controller_tag = "miningdocker" + shuttle_area = /area/stellardelight/deck1/miningshuttle + fuel_consumption = 0 + defer_initialisation = TRUE + range = 1 + +/////STARSTUFF///// +// The shuttle's 'shuttle' computer +/obj/machinery/computer/shuttle_control/explore/sdboat + name = "Starstuff control console" + shuttle_tag = "Starstuff" + req_one_access = list(access_pilot) + +/obj/effect/overmap/visitable/ship/landable/sd_boat + name = "NTV Starstuff" + desc = "A small shuttle from the NRV Stellar Delight." + vessel_mass = 2500 + vessel_size = SHIP_SIZE_TINY + shuttle = "Starstuff" + known = TRUE + +// A shuttle lateloader landmark +/obj/effect/shuttle_landmark/shuttle_initializer/sdboat + name = "Port Shuttlepad" + base_area = /area/stellardelight/deck3/exterior + base_turf = /turf/simulated/floor/reinforced/airless + landmark_tag = "port_shuttlepad" + docking_controller = "sd_port_landing" + shuttle_type = /datum/shuttle/autodock/overmap/sdboat + +/datum/shuttle/autodock/overmap/sdboat + name = "Starstuff" + current_location = "port_shuttlepad" + docking_controller_tag = "sdboat_docker" + shuttle_area = list(/area/shuttle/sdboat/fore,/area/shuttle/sdboat/aft) + fuel_consumption = 1 + defer_initialisation = TRUE + +/area/shuttle/sdboat/fore + icon = 'icons/turf/areas_vr.dmi' + icon_state = "yelwhitri" + name = "Starstuff Cockpit" + requires_power = 1 + +/area/shuttle/sdboat/aft + icon = 'icons/turf/areas_vr.dmi' + icon_state = "yelwhitri" + name = "Starstuff Crew Compartment" + requires_power = 1 + +/////Virgo Flyer///// +// The shuttle's 'shuttle' computer +/obj/machinery/computer/shuttle_control/explore/ccboat + name = "Virgo Flyer control console" + shuttle_tag = "Virgo Flyer" + req_one_access = list(access_pilot) + +/obj/effect/overmap/visitable/ship/landable/ccboat + name = "NTV Virgo Flyer" + desc = "A small shuttle from Central Command." + vessel_mass = 1000 + vessel_size = SHIP_SIZE_TINY + shuttle = "Virgo Flyer" + known = TRUE + +// A shuttle lateloader landmark +/obj/effect/shuttle_landmark/shuttle_initializer/ccboat + name = "Central Command Shuttlepad" + base_area = /area/shuttle/centcom/ccbay + base_turf = /turf/simulated/floor/reinforced + landmark_tag = "cc_shuttlepad" + docking_controller = "cc_landing_pad" + shuttle_type = /datum/shuttle/autodock/overmap/ccboat + +/datum/shuttle/autodock/overmap/ccboat + name = "Virgo Flyer" + current_location = "cc_shuttlepad" + docking_controller_tag = "ccboat" + shuttle_area = /area/shuttle/ccboat + fuel_consumption = 0 + defer_initialisation = TRUE + +/area/shuttle/ccboat + icon = 'icons/turf/areas_vr.dmi' + icon_state = "yelwhitri" + name = "Virgo Flyer" + requires_power = 0 + +/area/shuttle/centcom/ccbay + icon = 'icons/turf/areas_vr.dmi' + icon_state = "bluwhisqu" + name = "Central Command Shuttle Bay" + requires_power = 0 + dynamic_lighting = 0 + +/////LANDING LANDMARKS///// +/obj/effect/shuttle_landmark/premade/sd/deck1/portairlock + name = "Near Deck 1 Port Airlock" + landmark_tag = "sd-1-23-54" +/obj/effect/shuttle_landmark/premade/sd/deck1/aft + name = "Near Deck 1 Aft" + landmark_tag = "sd-1-67-15" +/obj/effect/shuttle_landmark/premade/sd/deck1/fore + name = "Near Deck 1 Fore" + landmark_tag = "sd-1-70-130" +/obj/effect/shuttle_landmark/premade/sd/deck1/starboard + name = "Near Deck 1 Starboard" + landmark_tag = "sd-1-115-85" + +/obj/effect/shuttle_landmark/premade/sd/deck2/port + name = "Near Deck 2 Port" + landmark_tag = "sd-2-25-98" +/obj/effect/shuttle_landmark/premade/sd/deck2/starboard + name = "Near Deck 2 Starboard" + landmark_tag = "sd-2-117-98" + +/obj/effect/shuttle_landmark/premade/sd/deck3/portairlock + name = "Near Deck 3 Port Airlock" + landmark_tag = "sd-3-22-78" +/obj/effect/shuttle_landmark/premade/sd/deck3/portlanding + name = "Near Deck 3 Port Landing Pad" + landmark_tag = "sd-3-36-33" +/obj/effect/shuttle_landmark/premade/sd/deck3/starboardlanding + name = "Near Deck 3 Starboard Landing Pad" + landmark_tag = "sd-3-104-33" +/obj/effect/shuttle_landmark/premade/sd/deck3/starboardairlock + name = "Near Deck 3 Starboard Airlock" + landmark_tag = "sd-3-120-78" + +/obj/item/weapon/paper/dockingcodes/sd + name = "Stellar Delight Docking Codes" + codes_from_z = Z_LEVEL_SHIP_LOW + +/////FOR CENTCOMM (at least)///// +/obj/effect/overmap/visitable/sector/virgo3b + name = "Virgo 3B" + desc = "Full of phoron, and home to the NSB Adephagia." + scanner_desc = @{"[i]Registration[/i]: NSB Adephagia +[i]Class[/i]: Installation +[i]Transponder[/i]: Transmitting (CIV), NanoTrasen IFF +[b]Notice[/b]: NanoTrasen Base, authorized personnel only"} + known = TRUE + in_space = TRUE + + icon = 'icons/obj/overmap_vr.dmi' + icon_state = "virgo3b" + + skybox_icon = 'icons/skybox/virgo3b.dmi' + skybox_icon_state = "small" + skybox_pixel_x = 0 + skybox_pixel_y = 0 + + initial_generic_waypoints = list("sr-c","sr-n","sr-s") + initial_restricted_waypoints = list("Central Command Shuttlepad" = list("cc_shuttlepad")) + + extra_z_levels = list(Z_LEVEL_SPACE_ROCKS) + +/////SD Starts at V3b to pick up crew refuel and repair (And to make sure it doesn't spawn on hazards) +/obj/effect/overmap/visitable/sector/virgo3b/Initialize() + . = ..() + for(var/obj/effect/overmap/visitable/ship/stellar_delight/sd in world) + sd.forceMove(loc, SOUTH) + return + +/obj/effect/overmap/visitable/sector/virgo3b/Crossed(var/atom/movable/AM) + . = ..() + announce_atc(AM,going = FALSE) + +/obj/effect/overmap/visitable/sector/virgo3b/Uncrossed(var/atom/movable/AM) + . = ..() + announce_atc(AM,going = TRUE) + +/obj/effect/overmap/visitable/sector/virgo3b/proc/announce_atc(var/atom/movable/AM, var/going = FALSE) + var/message = "Sensor contact for vessel '[AM.name]' has [going ? "left" : "entered"] ATC control area." + //For landables, we need to see if their shuttle is cloaked + if(istype(AM, /obj/effect/overmap/visitable/ship/landable)) + var/obj/effect/overmap/visitable/ship/landable/SL = AM //Phew + var/datum/shuttle/autodock/multi/shuttle = SSshuttles.shuttles[SL.shuttle] + if(!istype(shuttle) || !shuttle.cloaked) //Not a multishuttle (the only kind that can cloak) or not cloaked + atc.msg(message) + + //For ships, it's safe to assume they're big enough to not be sneaky + else if(istype(AM, /obj/effect/overmap/visitable/ship)) + atc.msg(message) + +/obj/effect/overmap/visitable/sector/virgo3b/get_space_zlevels() + return list(Z_LEVEL_SPACE_ROCKS) diff --git a/maps/stellardelight/stellar_delight_telecomms.dm b/maps/stellardelight/stellar_delight_telecomms.dm new file mode 100644 index 0000000000..7ddefa3365 --- /dev/null +++ b/maps/stellardelight/stellar_delight_telecomms.dm @@ -0,0 +1,99 @@ +// ### Preset machines ### + + +// #### Relays #### +// Telecomms doesn't know about connected z-levels, so we need relays even for the other surface levels. +/obj/machinery/telecomms/relay/preset/station + id = "SD Relay" + listening_level = 9 + autolinkers = list("sd_relay") + +// #### Hub #### +/obj/machinery/telecomms/hub/preset/sd + id = "Hub" + network = "tcommsat" + autolinkers = list("hub", + "sd_relay", "c_relay", "m_relay", "r_relay", + "science", "medical", "supply", "service", "common", "command", "engineering", "security", "explorer", "unused", + "hb_relay", "receiverA", "broadcasterA" + ) + +/obj/machinery/telecomms/receiver/preset_right/sd + id = "sd_rx" + freq_listening = list(AI_FREQ, SCI_FREQ, MED_FREQ, SUP_FREQ, SRV_FREQ, COMM_FREQ, ENG_FREQ, SEC_FREQ, ENT_FREQ, EXP_FREQ) + +/obj/machinery/telecomms/broadcaster/preset_right/sd + id = "sd_tx" + +/obj/machinery/telecomms/bus/preset_two/sd + freq_listening = list(SUP_FREQ, SRV_FREQ, EXP_FREQ) + +/obj/machinery/telecomms/server/presets/service/sd + freq_listening = list(SRV_FREQ, EXP_FREQ) + autolinkers = list("service", "explorer") + +// Telecommunications Satellite +/area/sd/surfacebase/tcomms + name = "\improper Telecomms" + ambience = list('sound/ambience/ambisin2.ogg', 'sound/ambience/signal.ogg', 'sound/ambience/signal.ogg') + +/area/sd/surfacebase/tcomms/entrance + name = "\improper Telecomms Teleporter" + icon_state = "tcomsatentrance" + +/area/sd/surfacebase/tcomms/foyer + name = "\improper Telecomms Foyer" + icon_state = "tcomsatfoyer" + +/area/sd/surfacebase/tcomms/storage + name = "\improper Telecomms Storage" + icon_state = "tcomsatwest" + +/area/sd/surfacebase/tcomms/computer + name = "\improper Telecomms Control Room" + icon_state = "tcomsatcomp" + +/area/sd/surfacebase/tcomms/chamber + name = "\improper Telecomms Central Compartment" + icon_state = "tcomsatcham" + flags = BLUE_SHIELDED + +/area/maintenance/substation/tcomms + name = "\improper Telecomms Substation" + +/area/maintenance/station/tcomms + name = "\improper Telecoms Maintenance" + +/datum/map/sd/default_internal_channels() + return list( + num2text(PUB_FREQ) = list(), + num2text(AI_FREQ) = list(access_synth), + num2text(ENT_FREQ) = list(), + num2text(ERT_FREQ) = list(access_cent_specops), + num2text(COMM_FREQ)= list(access_heads), + num2text(ENG_FREQ) = list(access_engine_equip, access_atmospherics), + num2text(MED_FREQ) = list(access_medical_equip), + num2text(MED_I_FREQ)=list(access_medical_equip), + num2text(SEC_FREQ) = list(access_security), + num2text(SEC_I_FREQ)=list(access_security), + num2text(SCI_FREQ) = list(access_tox,access_robotics,access_xenobiology), + num2text(SUP_FREQ) = list(access_cargo), + num2text(SRV_FREQ) = list(access_janitor, access_hydroponics), + num2text(EXP_FREQ) = list(access_explorer) + ) + +/obj/item/device/multitool/sd_buffered + name = "pre-linked multitool (sd hub)" + desc = "This multitool has already been linked to the SD telecomms hub and can be used to configure one (1) relay." + +/obj/item/device/multitool/sd_buffered/Initialize() + . = ..() + buffer = locate(/obj/machinery/telecomms/hub/preset/sd) + +/obj/item/device/bluespaceradio/sd_prelinked + name = "bluespace radio (Stellar Delight)" + handset = /obj/item/device/radio/bluespacehandset/linked/sd_prelinked + +/obj/item/device/radio/bluespacehandset/linked/sd_prelinked + bs_tx_preload_id = "sd_rx" //Transmit to a receiver + bs_rx_preload_id = "sd_tx" //Recveive from a transmitter diff --git a/maps/stellardelight/stellar_delight_things.dm b/maps/stellardelight/stellar_delight_things.dm new file mode 100644 index 0000000000..90c50ddf4f --- /dev/null +++ b/maps/stellardelight/stellar_delight_things.dm @@ -0,0 +1,176 @@ +/obj/machinery/camera/network/halls + network = list(NETWORK_HALLS) + +/area/tether/surfacebase/tram + name = "\improper Tram Station" + icon_state = "dk_yellow" + +/turf/simulated/floor/maglev + name = "maglev track" + desc = "Magnetic levitation tram tracks. Caution! Electrified!" + icon = 'icons/turf/flooring/maglevs.dmi' + icon_state = "maglevup" + + var/area/shock_area = /area/tether/surfacebase/tram + +/turf/simulated/floor/maglev/Initialize() + . = ..() + shock_area = locate(shock_area) + +// Walking on maglev tracks will shock you! Horray! +/turf/simulated/floor/maglev/Entered(var/atom/movable/AM, var/atom/old_loc) + if(isliving(AM) && !(AM.is_incorporeal()) && prob(50)) + track_zap(AM) +/turf/simulated/floor/maglev/attack_hand(var/mob/user) + if(prob(75)) + track_zap(user) +/turf/simulated/floor/maglev/proc/track_zap(var/mob/living/user) + if (!istype(user)) return + if (electrocute_mob(user, shock_area, src)) + var/datum/effect/effect/system/spark_spread/s = new /datum/effect/effect/system/spark_spread + s.set_up(5, 1, src) + s.start() + + +/obj/item/weapon/paper/sdshield + name = "ABOUT THE SHIELD GENERATOR" + info = "

ABOUT THE SHIELD GENERATOR



If you're up here you are more than likely worried about hitting rocks or some other such thing. It is good to worry about such things as that is an inevitability.

The Stellar Delight is a rather compact vessel, so a setting of 55 to the range will just barely cover her aft.

It is recommended that you turn off all of the different protection types except multi dimensional warp and whatever it is you're worried about running into. (probably meteors (hyperkinetic)).

With only those two and all the other default settings, the shield uses more than 6 MW to run, which is more than the ship can ordinarily produce. AS SUCH, it is also recommended that you reduce the input cap to whatever you find reasonable (being as it defaults to 1 MW, which is the entirety of the stock power supply) and activate and configure the shield BEFORE you need it.

The shield takes some time to expand its range to the desired specifications, and on top of that, under the default low power setting, takes around 40 seconds to spool up. Once it is active, the fully charged internal capacitors will last for a few minutes before depleting fully. You can increase the passive energy use to decrease the spool up time, but it also uses the stored energy much faster, so, that is not recommended except in dire emergencies.

So, this shield is not intended to be run indefinitely, unless you seriously beef up the ship's engine and power supply.

Fortunately, if you've got a good pilot, you shouldn't really need the shield generator except in rare cases and only for short distances. Still, it is a good idea to configure the shield to be ready before you need it.

Good luck out there - Budly Gregington" + +/obj/item/weapon/book/manual/sd_guide + name = "Stellar Delight User's Guide" + icon = 'icons/obj/library.dmi' + icon_state ="newscodex" + item_state = "newscodex" + author = "Central Command" // Who wrote the thing, can be changed by pen or PC. It is not automatically assigned + title = "Stellar Delight User's Guide" + +/obj/item/weapon/book/manual/sd_guide/New() + ..() + dat = {" + + + + + +

Stellar Delight Operations

+

+ Welcome to the Stellar Delight! Before you get started there are a few things you ought to know. +

+ The Stellar Delight is a Nanotrasen response vessel operating in the Virgo-Erigone system. It's primary duty is in answering calls for help, investigating anomalies in space around the system, and generally responding to requests from Central Command or whoever else needs the services the vessel can provide. It has fully functioning security, medical, and research facilities, as well as a host of civillian facilities, in addition to the standard things one might expect to find on such a ship. That is to say, the ship doesn't have a highly defined specialization, it is just as capable as a small space station might be. +

+ Notably though, there are some research facilities that are not safe to carry around. There is a refurbished Aerostat that has been set up over Virgo 2 that posesses a number of different, more dangerous research facilities. The command staff of this vessel has access to its docking codes in their offices. +

+ Mining and Exploration will probably also want to disembark to do their respective duties. +

+ The ship is ordinarily protected from many space hazards by an array of point defense turrets, however, it should be noted that this defense network is not infallible. If the ship encounters a dangerous environment, occasionally hazardous material may slip past the network and damage the ship. +


+

Before Moving the Ship

+

+ The ship requires power to fuel and run its engines and sensors. While there may be some charge in the ship at the start of the shift, it is HIGHLY RECOMMENDED that the engine be started before attempting to move the ship. If any of the components responsible for moving the ship lose power (including but not limited to the helm control console and the thrusters), then you will be incapable of adjusting the ship's speed or heading until the problem is resolved. +

+ Additionally, the shield generator should be configured before the ship moves, as it takes time to calibrate before it can be activated. The shield should not be run indefinitely however, as it uses more power than the ship ordinarily generates. You can however activate it for a short time if you know that you need to proceed through a dangerous reigon of space. For more information, see the configuration guide sheet in the shield control room on deck 3, aft of the Command Office section. +


+

Starting and Moving the Ship

+

+ The ship can of course move around on its own, but a few steps need to/should be taken before you can do so. +

+ -FIRST. You should appoint a pilot. If there isn't a pilot, or the pilot isn't responding, you should fax for a pilot. If no pilots respond to the fax within a reasonable timeframe, then, if you are qualified to fly Nanotrasen spacecraft you may fly the ship. Appointing a pilot to the bridge however should always be done even if you know how to fly and have access to the helm control console. Refusing to attempt to appoint a pilot and just flying the ship yourself can be grounds for demotion to pilot. +

+ -SECOND. In order for the ship to move one must start the engines. The ship's fuel pump in Atmospherics must be turned on and configured. Atmospheric technicians may elect to modify the fuel mix to help the ship go faster or make the fuel last longer. Either way, once the fuel pump is on, you may use the engine control console on the bridge to activate the engines. +

+ Once these steps have been taken, the helm control console should respond to input commands from the pilot. +


+

Disembarking

+

+ Being a response vessel, the Stellar Delight has 3 shuttles in total. +

+ The mining and exploration shuttles are located in the aft of deck 1 between their respective departments. Both of these shuttles are short jump shuttles, meaning, they are not suitable for more than ferrying people back and forth between the ship and the present destination. They do have a small range that they can traverse in their bluespace hops, but they must be within one 'grid square' of a suitable landing site to jump. As such, it is recommended that you avoid flying away from wherever either of these shuttles are without establishing a flight plan with the away teams to indicate a time of returning. In cases where the mining team and the exploration team want to go to different places, it may be necessary to fly from one location to the other now and then to facilitate both operations. However, it is recommended that exploration and mining be encouraged to enter the same operations areas, as the mining team is poorly armed, and the exploration team is ideally equipped for offsite defense and support of ship personnel. +

+ There is also the Starstuff, a long range capable shuttle which is ordinarily docked on the port landing pad of deck 3. This shuttle is meant for general crew transport, but does require a pilot to be flown. +

+ In cases where the shuttles will be docking with another facility, such as the Science outpost on the Virgo 2 Aerostat, docking codes may be required in order to be accessed. Anywhere requiring such codes will need to have them entered into the given shuttle's short jump console. It is recommended that anyone operating such a shuttle take note of the Stellar Delight's docking codes, as they will need them to dock with the ship. Any Nanotrasen owned facility that requires them that your ship has authorization to access will have the codes stored in the Command Offices. +

+ A final note on disembarking. While it may not necessarily be their job to do so, it is highly encouraged for the Command staff to attempt to involve volunteers in off ship operations as necessary. Just make sure to let let it be known what kind of operation is happening when you ask. This being a response ship, it is very good to get as much help to handle whatever the issue is as thoroughly as possible. +

+ All that said, have a safe trip. - Central Command Officer Alyssa Trems + + "} + +// ### Wall Machines On Full Windows ### +// To make sure wall-mounted machines placed on full-tile windows are clickable they must be above the window +// +/obj/item/device/radio/intercom + layer = ABOVE_WINDOW_LAYER +/obj/item/weapon/storage/secure/safe + layer = ABOVE_WINDOW_LAYER +/obj/machinery/airlock_sensor + layer = ABOVE_WINDOW_LAYER +/obj/machinery/alarm + layer = ABOVE_WINDOW_LAYER +/obj/machinery/button + layer = ABOVE_WINDOW_LAYER +/obj/machinery/access_button + layer = ABOVE_WINDOW_LAYER +/obj/machinery/computer/guestpass + layer = ABOVE_WINDOW_LAYER +/obj/machinery/computer/security/telescreen + layer = ABOVE_WINDOW_LAYER +/obj/machinery/door_timer + layer = ABOVE_WINDOW_LAYER +/obj/machinery/embedded_controller + layer = ABOVE_WINDOW_LAYER +/obj/machinery/firealarm + layer = ABOVE_WINDOW_LAYER +/obj/machinery/flasher + layer = ABOVE_WINDOW_LAYER +/obj/machinery/keycard_auth + layer = ABOVE_WINDOW_LAYER +/obj/machinery/light_switch + layer = ABOVE_WINDOW_LAYER +/obj/machinery/mineral/processing_unit_console + layer = ABOVE_WINDOW_LAYER +/obj/machinery/mineral/stacking_unit_console + layer = ABOVE_WINDOW_LAYER +/obj/machinery/newscaster + layer = ABOVE_WINDOW_LAYER +/obj/machinery/power/apc + layer = ABOVE_WINDOW_LAYER +/obj/machinery/requests_console + layer = ABOVE_WINDOW_LAYER +/obj/machinery/status_display + layer = ABOVE_WINDOW_LAYER +/obj/machinery/vending/wallmed1 + layer = ABOVE_WINDOW_LAYER +/obj/machinery/vending/wallmed2 + layer = ABOVE_WINDOW_LAYER +/obj/structure/closet/fireaxecabinet + layer = ABOVE_WINDOW_LAYER +/obj/structure/extinguisher_cabinet + layer = ABOVE_WINDOW_LAYER +/obj/structure/mirror + layer = ABOVE_WINDOW_LAYER +/obj/structure/noticeboard + layer = ABOVE_WINDOW_LAYER + +/obj/item/device/multitool/scioutpost + name = "science outpost linked multitool" + desc = "It has the data for the science outpost's quantum pad pre-loaded... assuming you didn't override it." + +/obj/item/device/multitool/scioutpost/Initialize() + . = ..() + for(var/obj/machinery/power/quantumpad/scioutpost/outpost in world) + connectable = outpost + if(connectable) + icon_state = "multitool_red" + return + +/obj/machinery/power/quantumpad/scioutpost + diff --git a/maps/stellardelight/stellar_delight_turfs.dm b/maps/stellardelight/stellar_delight_turfs.dm new file mode 100644 index 0000000000..9e7927efe2 --- /dev/null +++ b/maps/stellardelight/stellar_delight_turfs.dm @@ -0,0 +1,47 @@ +/turf/unsimulated/mineral/virgo3b + blocks_air = TRUE + +/turf/unsimulated/floor/steel + icon = 'icons/turf/flooring/tiles_vr.dmi' + icon_state = "steel" + +// Some turfs to make floors look better in centcom tram station. + +/turf/unsimulated/floor/techfloor_grid + name = "floor" + icon = 'icons/turf/flooring/techfloor.dmi' + icon_state = "techfloor_grid" + +/turf/unsimulated/floor/maglev + name = "maglev track" + desc = "Magnetic levitation tram tracks. Caution! Electrified!" + icon = 'icons/turf/flooring/maglevs.dmi' + icon_state = "maglevup" + +/turf/unsimulated/wall/transit + icon = 'icons/turf/transit_vr.dmi' + +/turf/unsimulated/floor/transit + icon = 'icons/turf/transit_vr.dmi' + +/obj/effect/floor_decal/transit/orange + icon = 'icons/turf/transit_vr.dmi' + icon_state = "transit_techfloororange_edges" + +/obj/effect/transit/light + icon = 'icons/turf/transit_128.dmi' + icon_state = "tube1-2" + +VIRGO3B_TURF_CREATE(/turf/simulated/floor/outdoors/grass/sif) +/turf/simulated/floor/outdoors/grass/sif + turf_layers = list( + /turf/simulated/floor/outdoors/rocks/virgo3b, + /turf/simulated/floor/outdoors/dirt/virgo3b + ) + +VIRGO3B_TURF_CREATE(/turf/simulated/floor/outdoors/dirt) +/turf/simulated/floor/outdoors/dirt/virgo3b + icon = 'icons/turf/flooring/asteroid.dmi' + icon_state = "asteroid" + +VIRGO3B_TURF_CREATE(/turf/simulated/floor/outdoors/rocks) diff --git a/maps/submaps/admin_use_vr/ert.dmm b/maps/submaps/admin_use_vr/ert.dmm index 2e1eb62ece..5660e5c1e5 100644 --- a/maps/submaps/admin_use_vr/ert.dmm +++ b/maps/submaps/admin_use_vr/ert.dmm @@ -132,7 +132,7 @@ /turf/simulated/floor/tiled/techfloor, /area/ship/ert/barracks) "aq" = ( -/obj/machinery/telecomms/relay/preset/tether, +/obj/machinery/telecomms/relay, /turf/simulated/floor/tiled/techfloor, /area/ship/ert/atmos) "ar" = ( @@ -168,6 +168,37 @@ }, /turf/simulated/floor/wood, /area/ship/ert/commander) +"au" = ( +/obj/machinery/light/no_nightshift{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/table/rack/steel, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/item/weapon/rig/ert/medical, +/obj/item/weapon/rig/ert/medical, +/obj/item/weapon/rig/ert/medical, +/obj/item/weapon/rig/ert/medical, +/obj/item/weapon/rig/ert/medical, +/obj/item/weapon/rig/ert/medical, +/obj/item/clothing/suit/armor/vest/ert/medical, +/obj/item/clothing/suit/armor/vest/ert/medical, +/obj/item/clothing/suit/armor/vest/ert/medical, +/obj/item/clothing/suit/armor/vest/ert/medical, +/obj/item/clothing/suit/armor/vest/ert/medical, +/obj/item/clothing/suit/armor/vest/ert/medical, +/obj/item/clothing/head/helmet/ert/medical, +/obj/item/clothing/head/helmet/ert/medical, +/obj/item/clothing/head/helmet/ert/medical, +/obj/item/clothing/head/helmet/ert/medical, +/obj/item/clothing/head/helmet/ert/medical, +/obj/item/clothing/head/helmet/ert/medical, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/barracks) "av" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/structure/cable/yellow{ @@ -177,12 +208,152 @@ }, /turf/simulated/floor/tiled/techfloor, /area/ship/ert/gunnery) +"aw" = ( +/obj/structure/table/rack/steel, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/item/clothing/mask/gas{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/item/clothing/mask/gas{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/clothing/mask/gas{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/clothing/mask/gas{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/clothing/mask/gas/half, +/obj/item/clothing/mask/gas/half, +/obj/item/clothing/mask/gas/half, +/obj/item/clothing/mask/gas/half, +/obj/item/clothing/mask/gas/half, +/obj/item/clothing/mask/gas/half, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/barracks) "ax" = ( /obj/structure/hull_corner{ dir = 8 }, /turf/simulated/shuttle/plating/airless/carry, /area/shuttle/ert_ship_boat) +"ay" = ( +/obj/structure/table/rack/steel, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/item/clothing/mask/gas{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/item/clothing/mask/gas{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/clothing/mask/gas{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/clothing/mask/gas{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/item/clothing/shoes/magboots/adv, +/obj/item/clothing/shoes/magboots/adv, +/obj/item/clothing/shoes/magboots/adv, +/obj/item/clothing/shoes/magboots/adv, +/obj/item/clothing/shoes/magboots/adv, +/obj/item/clothing/shoes/magboots/adv, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/barracks) +"az" = ( +/obj/structure/table/rack/steel, +/obj/item/weapon/storage/backpack/ert/security{ + pixel_y = -3 + }, +/obj/item/weapon/storage/backpack/ert/security, +/obj/item/weapon/storage/backpack/ert/security{ + pixel_y = 3 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/item/weapon/storage/backpack/ert/security{ + pixel_y = 6 + }, +/obj/item/weapon/storage/backpack/ert/security{ + pixel_y = 9 + }, +/obj/item/weapon/storage/backpack/ert/security{ + pixel_y = 12 + }, +/obj/item/clothing/suit/space/void/responseteam/security, +/obj/item/clothing/suit/space/void/responseteam/security, +/obj/item/clothing/suit/space/void/responseteam/security, +/obj/item/clothing/suit/space/void/responseteam/security, +/obj/item/clothing/suit/space/void/responseteam/security, +/obj/item/clothing/suit/space/void/responseteam/security, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/barracks) +"aA" = ( +/obj/structure/table/rack/steel, +/obj/item/weapon/rig/ert/security, +/obj/item/weapon/rig/ert/security, +/obj/item/weapon/rig/ert/security, +/obj/item/weapon/rig/ert/security, +/obj/item/weapon/rig/ert/security, +/obj/item/weapon/rig/ert/security, +/obj/item/clothing/suit/armor/vest/ert/security, +/obj/item/clothing/suit/armor/vest/ert/security, +/obj/item/clothing/suit/armor/vest/ert/security, +/obj/item/clothing/suit/armor/vest/ert/security, +/obj/item/clothing/suit/armor/vest/ert/security, +/obj/item/clothing/suit/armor/vest/ert/security, +/obj/item/clothing/head/helmet/ert/security, +/obj/item/clothing/head/helmet/ert/security, +/obj/item/clothing/head/helmet/ert/security, +/obj/item/clothing/head/helmet/ert/security, +/obj/item/clothing/head/helmet/ert/security, +/obj/item/clothing/head/helmet/ert/security, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/barracks) +"aB" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/table/rack/steel, +/obj/structure/table/rack/steel, +/obj/item/weapon/storage/belt/utility/chief/full{ + pixel_y = -2 + }, +/obj/item/weapon/storage/belt/utility/chief/full, +/obj/item/weapon/storage/belt/utility/chief/full{ + pixel_y = 2 + }, +/obj/item/weapon/storage/belt/utility/chief/full{ + pixel_y = 4 + }, +/obj/item/weapon/storage/belt/utility/chief/full{ + pixel_y = 6 + }, +/obj/item/weapon/tank/emergency/oxygen/double, +/obj/item/weapon/tank/emergency/oxygen/double, +/obj/item/weapon/tank/emergency/oxygen/double, +/obj/item/weapon/tank/emergency/oxygen/double, +/obj/item/weapon/tank/emergency/oxygen/double, +/obj/item/weapon/storage/belt/utility/holding, +/obj/item/weapon/storage/belt/utility/holding, +/obj/item/weapon/storage/belt/utility/holding, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/barracks) "aC" = ( /obj/machinery/power/pointdefense{ id_tag = "vonbraun_pd" @@ -203,10 +374,104 @@ /obj/fiftyspawner/tritium, /turf/simulated/floor/tiled/techfloor, /area/ship/ert/eng_storage) +"aE" = ( +/obj/machinery/alarm/alarms_hidden{ + dir = 1; + pixel_y = -26 + }, +/obj/structure/table/rack/steel, +/obj/item/weapon/rig/ert/engineer, +/obj/item/weapon/rig/ert/engineer, +/obj/item/weapon/rig/ert/engineer, +/obj/item/weapon/rig/ert/engineer, +/obj/item/weapon/rig/ert/engineer, +/obj/item/weapon/rig/ert/engineer, +/obj/item/clothing/suit/armor/vest/ert/engineer, +/obj/item/clothing/suit/armor/vest/ert/engineer, +/obj/item/clothing/suit/armor/vest/ert/engineer, +/obj/item/clothing/suit/armor/vest/ert/engineer, +/obj/item/clothing/suit/armor/vest/ert/engineer, +/obj/item/clothing/suit/armor/vest/ert/engineer, +/obj/item/clothing/head/helmet/ert/engineer, +/obj/item/clothing/head/helmet/ert/engineer, +/obj/item/clothing/head/helmet/ert/engineer, +/obj/item/clothing/head/helmet/ert/engineer, +/obj/item/clothing/head/helmet/ert/engineer, +/obj/item/clothing/head/helmet/ert/engineer, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/barracks) "aF" = ( /obj/machinery/porta_turret/stationary/CIWS, /turf/simulated/floor/reinforced/airless, /area/ship/ert/atmos) +"aG" = ( +/obj/structure/table/rack/steel, +/obj/item/weapon/storage/backpack/ert/medical{ + pixel_y = -3 + }, +/obj/item/weapon/storage/backpack/ert/medical, +/obj/item/weapon/storage/backpack/ert/medical{ + pixel_y = 3 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/machinery/light/no_nightshift, +/obj/item/weapon/storage/backpack/ert/medical{ + pixel_y = 6 + }, +/obj/item/weapon/storage/backpack/ert/medical{ + pixel_y = 9 + }, +/obj/item/weapon/storage/backpack/ert/medical{ + pixel_y = 12 + }, +/obj/item/clothing/suit/space/void/responseteam/medical, +/obj/item/clothing/suit/space/void/responseteam/medical, +/obj/item/clothing/suit/space/void/responseteam/medical, +/obj/item/clothing/suit/space/void/responseteam/medical, +/obj/item/clothing/suit/space/void/responseteam/medical, +/obj/item/clothing/suit/space/void/responseteam/medical, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/barracks) +"aH" = ( +/obj/item/weapon/storage/belt/medical/emt{ + pixel_y = -4 + }, +/obj/item/weapon/storage/belt/medical/emt{ + pixel_y = -2 + }, +/obj/item/weapon/storage/belt/medical/emt, +/obj/item/weapon/storage/belt/medical/emt{ + pixel_y = 2 + }, +/obj/item/weapon/storage/belt/medical/emt{ + pixel_y = 4 + }, +/obj/item/weapon/storage/belt/medical/emt{ + pixel_y = 6 + }, +/obj/item/clothing/accessory/storage/white_vest{ + pixel_y = -4 + }, +/obj/item/clothing/accessory/storage/white_vest{ + pixel_y = -2 + }, +/obj/item/clothing/accessory/storage/white_vest, +/obj/item/clothing/accessory/storage/white_vest{ + pixel_y = 2 + }, +/obj/item/clothing/accessory/storage/white_vest{ + pixel_y = 4 + }, +/obj/item/clothing/accessory/storage/white_vest{ + pixel_y = 6 + }, +/obj/structure/table/rack/steel, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/item/weapon/storage/belt/medical/holding, +/obj/item/weapon/storage/belt/medical/holding, +/obj/item/weapon/storage/belt/medical/holding, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/barracks) "aI" = ( /obj/structure/cable/yellow{ d1 = 1; @@ -226,6 +491,10 @@ }, /turf/simulated/floor/tiled/techmaint, /area/ship/ert/med) +"aJ" = ( +/obj/item/device/multitool/tether_buffered, +/turf/simulated/floor/tiled/techfloor, +/area/ship/ert/atmos) "aK" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -316,19 +585,6 @@ /obj/structure/window/reinforced, /turf/simulated/floor/airless, /area/ship/ert/gunnery) -"bI" = ( -/obj/machinery/light/no_nightshift{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/table/rack/steel, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/barracks) "bJ" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 8 @@ -530,32 +786,6 @@ }, /turf/simulated/floor/tiled/techfloor, /area/ship/ert/dock_port) -"do" = ( -/obj/structure/table/rack/steel, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/item/clothing/mask/gas{ - pixel_x = -4; - pixel_y = -4 - }, -/obj/item/clothing/mask/gas{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/clothing/mask/gas{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/clothing/mask/gas{ - pixel_x = 6; - pixel_y = 6 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/barracks) "dp" = ( /obj/structure/table/rack/steel, /obj/item/weapon/rig/ert/assetprotection{ @@ -1060,43 +1290,6 @@ }, /turf/simulated/floor/tiled/techfloor, /area/ship/ert/mech_bay) -"fJ" = ( -/obj/item/weapon/storage/belt/medical/emt{ - pixel_y = -4 - }, -/obj/item/weapon/storage/belt/medical/emt{ - pixel_y = -2 - }, -/obj/item/weapon/storage/belt/medical/emt, -/obj/item/weapon/storage/belt/medical/emt{ - pixel_y = 2 - }, -/obj/item/weapon/storage/belt/medical/emt{ - pixel_y = 4 - }, -/obj/item/weapon/storage/belt/medical/emt{ - pixel_y = 6 - }, -/obj/item/clothing/accessory/storage/white_vest{ - pixel_y = -4 - }, -/obj/item/clothing/accessory/storage/white_vest{ - pixel_y = -2 - }, -/obj/item/clothing/accessory/storage/white_vest, -/obj/item/clothing/accessory/storage/white_vest{ - pixel_y = 2 - }, -/obj/item/clothing/accessory/storage/white_vest{ - pixel_y = 4 - }, -/obj/item/clothing/accessory/storage/white_vest{ - pixel_y = 6 - }, -/obj/structure/table/rack/steel, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/barracks) "fP" = ( /obj/structure/table/steel_reinforced, /obj/item/rig_module/chem_dispenser/combat, @@ -2658,30 +2851,6 @@ }, /turf/simulated/floor/tiled/techfloor, /area/ship/ert/barracks) -"pa" = ( -/obj/structure/table/steel_reinforced, -/obj/item/device/mapping_unit/ert{ - pixel_x = -6; - pixel_y = -6 - }, -/obj/item/device/mapping_unit/ert{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/device/mapping_unit/ert{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/device/mapping_unit/ert{ - pixel_x = 6; - pixel_y = -6 - }, -/obj/machinery/alarm/alarms_hidden{ - dir = 1; - pixel_y = -26 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/barracks) "pb" = ( /obj/structure/medical_stand, /obj/structure/sink{ @@ -2691,28 +2860,6 @@ }, /turf/simulated/floor/tiled/white, /area/ship/ert/med_surg) -"pd" = ( -/obj/structure/table/rack/steel, -/obj/item/weapon/storage/backpack/ert/medical{ - pixel_y = -3 - }, -/obj/item/weapon/storage/backpack/ert/medical, -/obj/item/weapon/storage/backpack/ert/medical{ - pixel_y = 3 - }, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/machinery/light/no_nightshift, -/obj/item/weapon/storage/backpack/ert/medical{ - pixel_y = 6 - }, -/obj/item/weapon/storage/backpack/ert/medical{ - pixel_y = 9 - }, -/obj/item/weapon/storage/backpack/ert/medical{ - pixel_y = 12 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/barracks) "pf" = ( /obj/effect/landmark/map_data/ert_ship, /turf/space, @@ -2729,25 +2876,6 @@ }, /turf/simulated/floor/tiled/techmaint, /area/ship/ert/med) -"pn" = ( -/obj/effect/floor_decal/industrial/outline/grey, -/obj/structure/table/rack/steel, -/obj/structure/table/rack/steel, -/obj/item/weapon/storage/belt/utility/chief/full{ - pixel_y = -2 - }, -/obj/item/weapon/storage/belt/utility/chief/full, -/obj/item/weapon/storage/belt/utility/chief/full{ - pixel_y = 2 - }, -/obj/item/weapon/storage/belt/utility/chief/full{ - pixel_y = 4 - }, -/obj/item/weapon/storage/belt/utility/chief/full{ - pixel_y = 6 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/barracks) "po" = ( /obj/machinery/door/airlock/glass_medical{ name = "Medical Bay"; @@ -5256,27 +5384,6 @@ "DS" = ( /turf/simulated/wall/rshull, /area/ship/ert/hallways_aft) -"Ec" = ( -/obj/structure/table/rack/steel, -/obj/item/weapon/storage/backpack/ert/security{ - pixel_y = -3 - }, -/obj/item/weapon/storage/backpack/ert/security, -/obj/item/weapon/storage/backpack/ert/security{ - pixel_y = 3 - }, -/obj/effect/floor_decal/industrial/outline/grey, -/obj/item/weapon/storage/backpack/ert/security{ - pixel_y = 6 - }, -/obj/item/weapon/storage/backpack/ert/security{ - pixel_y = 9 - }, -/obj/item/weapon/storage/backpack/ert/security{ - pixel_y = 12 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/barracks) "Ed" = ( /obj/machinery/light/no_nightshift{ dir = 4 @@ -6995,26 +7102,6 @@ /obj/structure/window/reinforced, /turf/simulated/floor/tiled/techmaint, /area/shuttle/ert_ship_boat) -"MX" = ( -/obj/structure/table/steel_reinforced, -/obj/item/device/mapping_unit/ert{ - pixel_x = -6; - pixel_y = -6 - }, -/obj/item/device/mapping_unit/ert{ - pixel_x = 6; - pixel_y = 6 - }, -/obj/item/device/mapping_unit/ert{ - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/device/mapping_unit/ert{ - pixel_x = 6; - pixel_y = -6 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ship/ert/barracks) "MZ" = ( /turf/simulated/wall/rshull, /area/ship/ert/med_surg) @@ -15392,7 +15479,7 @@ kP kP rS aq -gA +aJ CT qR pV @@ -19507,7 +19594,7 @@ xA xA Jd mF -Ec +az tH gx SF @@ -19791,7 +19878,7 @@ WH Rw Jd mF -MX +aA tH xg SF @@ -20075,7 +20162,7 @@ WH eX iX mT -pn +aB tH xi BF @@ -20217,7 +20304,7 @@ WH ff ip mV -pa +aE tH qJ BU @@ -20354,12 +20441,12 @@ yz yz ab nq -bI +au Wo Wo AX eG -pd +aG tH xt BU @@ -20497,11 +20584,11 @@ yz cu Zo Zo -do -do +aw +ay ip mV -fJ +aH tH xv Ce diff --git a/maps/submaps/admin_use_vr/fun.dm b/maps/submaps/admin_use_vr/fun.dm index 4544fb187c..05df720d4e 100644 --- a/maps/submaps/admin_use_vr/fun.dm +++ b/maps/submaps/admin_use_vr/fun.dm @@ -212,6 +212,45 @@ . = ..() message_admins("An uploaded sector [ADMIN_JMP(src)][ADMIN_VV(src)] has been placed on the overmap. Don't forget to rename and set cool scanner info on it!") +/obj/effect/overmap/visitable/admin_use/dark + + skybox_icon = 'icons/skybox/anomaly.dmi' + skybox_icon_state = "dark" + skybox_pixel_x = 0 + skybox_pixel_y = 0 + +/obj/effect/overmap/visitable/admin_use/dark_star + + skybox_icon = 'icons/skybox/anomaly.dmi' + skybox_icon_state = "dark_star" + skybox_pixel_x = 0 + skybox_pixel_y = 0 + +/obj/effect/overmap/visitable/admin_use/seven + + skybox_icon = 'icons/skybox/anomaly.dmi' + skybox_icon_state = "seven" + skybox_pixel_x = 0 + skybox_pixel_y = 0 + + +/obj/effect/overmap/visitable/admin_use/bluespace_shimmer + + name = "Bluespace Shimmer" + skybox_icon = 'icons/skybox/anomaly.dmi' + skybox_icon_state = "shimmer_b" + skybox_pixel_x = 0 + skybox_pixel_y = 0 + +/obj/effect/overmap/visitable/admin_use/redspace_shimmer + + name = "Redspace Shimmer" + skybox_icon = 'icons/skybox/anomaly.dmi' + skybox_icon_state = "shimmer_r" + skybox_pixel_x = 0 + skybox_pixel_y = 0 + + // This is the same, but makes a whole spaceship! /obj/effect/overmap/visitable/ship/admin_use name = "REPLACE ME" @@ -232,6 +271,25 @@ . = ..() message_admins("An uploaded ship [ADMIN_JMP(src)][ADMIN_VV(src)] has been placed on the overmap. Don't forget to rename and set cool scanner info on it!") +/obj/effect/overmap/visitable/ship/admin_use/space_dog + skybox_icon = 'icons/skybox/anomaly.dmi' + skybox_icon_state = "space_dog" + skybox_pixel_x = 0 + skybox_pixel_y = 0 + +/obj/effect/overmap/visitable/ship/admin_use/space_dog/Crossed(var/obj/effect/overmap/visitable/ship/enterer) + . = ..() + if(istype(enterer)) + for(var/mob/potential_mob as anything in player_list) + if(potential_mob.z in enterer.map_z) + SEND_SOUND(potential_mob, 'sound/ambience/boy.ogg') + +/obj/effect/overmap/visitable/ship/admin_use/space_whale + skybox_icon = 'icons/skybox/anomaly.dmi' + skybox_icon_state = "space_whale" + skybox_pixel_x = 0 + skybox_pixel_y = 0 + // These landmarks, placed in any map that is being represented by an overmap sector, will add themselves to landable destinations in that map! // Note the names, pick whichever makes the most sense for your map. No need to use them in any particular order or use any/all of them. /obj/effect/shuttle_landmark/automatic/admin_use1 diff --git a/maps/submaps/depreciated_vr/talon.dm b/maps/submaps/depreciated_vr/talon.dm index 3493a45ed0..70355b0d97 100644 --- a/maps/submaps/depreciated_vr/talon.dm +++ b/maps/submaps/depreciated_vr/talon.dm @@ -240,6 +240,12 @@ Once in open space, consider disabling nonessential power-consuming electronics /obj/item/clothing/suit/space/void/pilot/talon name = "talon pilot's voidsuit" +/obj/item/clothing/head/helmet/space/void/mining/talon + name = "talon miner's voidsuit helmet" + camera_networks = list(NETWORK_TALON_HELMETS) +/obj/item/clothing/suit/space/void/mining/talon + name = "talon miner's voidsuit" + /obj/item/device/gps/command/taloncap gps_tag = "TALC" /obj/item/device/gps/security/talonguard @@ -250,6 +256,8 @@ Once in open space, consider disabling nonessential power-consuming electronics gps_tag = "TALE" /obj/item/device/gps/explorer/talonpilot gps_tag = "TALP" +/obj/item/device/gps/mining/talonminer + gps_tag = "TALM" /obj/structure/closet/secure_closet/talon_captain name = "talon captain's locker" @@ -365,6 +373,29 @@ Once in open space, consider disabling nonessential power-consuming electronics /obj/item/device/gps/explorer/talonpilot ) +/obj/structure/closet/secure_closet/talon_miner + name = "talon miner's locker" + req_access = list(access_talon) + closet_appearance = /decl/closet_appearance/secure_closet/talon/miner + + starts_with = list( + /obj/item/device/radio/headset/talon, + /obj/item/clothing/head/helmet/space/void/refurb/mining/talon, + /obj/item/clothing/suit/space/void/refurb/mining/talon, + /obj/item/weapon/tank/oxygen, + /obj/item/device/suit_cooling_unit, + /obj/item/device/gps/mining/talonminer, + /obj/item/clothing/gloves/black, + /obj/item/device/analyzer, + /obj/item/weapon/storage/bag/ore, + /obj/item/device/flashlight/lantern, + /obj/item/weapon/shovel, + /obj/item/weapon/pickaxe, + /obj/item/weapon/mining_scanner, + /obj/item/clothing/glasses/material, + /obj/item/clothing/glasses/meson + ) + /obj/machinery/vending/medical_talon //Not a subtype for *reasons* name = "NanoMed Plus" desc = "Medical drug dispenser." @@ -468,6 +499,13 @@ Once in open space, consider disabling nonessential power-consuming electronics hard_drive.store_file(new/datum/computer_file/program/camera_monitor/talon_helmet()) set_autorun("tsensormonitor") +/obj/item/modular_computer/laptop/preset/custom_loadout/standard/talon/miner + name = "miner's laptop" + +/obj/item/modular_computer/laptop/preset/custom_loadout/standard/talon/miner/install_default_programs() + ..() + hard_drive.store_file(new/datum/computer_file/program/ship_nav()) + //Generic modular consoles scattered around /obj/item/modular_computer/console/preset/talon name = "talon modular computer" diff --git a/maps/submaps/engine_submaps/engine.dm b/maps/submaps/engine_submaps/engine.dm index 74db547fb2..63a0552c6d 100644 --- a/maps/submaps/engine_submaps/engine.dm +++ b/maps/submaps/engine_submaps/engine.dm @@ -4,6 +4,9 @@ var/clean_turfs // A list of lists, where each list is (x, ) /obj/effect/landmark/engine_loader/New() +INITIALIZE_IMMEDIATE(/obj/effect/landmark/engine_loader) + +/obj/effect/landmark/engine_loader/Initialize() if(SSmapping.engine_loader) warning("Duplicate engine_loader landmarks: [log_info_line(src)] and [log_info_line(SSmapping.engine_loader)]") delete_me = TRUE diff --git a/maps/submaps/pois_vr/debris_field/debris14.dmm b/maps/submaps/pois_vr/debris_field/debris14.dmm index 91a5ef114a..6a346d6692 100644 --- a/maps/submaps/pois_vr/debris_field/debris14.dmm +++ b/maps/submaps/pois_vr/debris_field/debris14.dmm @@ -32,7 +32,6 @@ /area/tether_away/debrisfield/shuttle_buffer) "h" = ( /obj/structure/lattice, -/obj/structure/lattice, /turf/space, /area/tether_away/debrisfield/shuttle_buffer) "i" = ( diff --git a/maps/submaps/pois_vr/debris_field/mining_drones.dmm b/maps/submaps/pois_vr/debris_field/mining_drones.dmm index c94ba77182..cff4af2101 100644 --- a/maps/submaps/pois_vr/debris_field/mining_drones.dmm +++ b/maps/submaps/pois_vr/debris_field/mining_drones.dmm @@ -95,13 +95,6 @@ }, /turf/simulated/floor/airless, /area/submap/debrisfield/mining_outpost) -"r" = ( -/obj/random/multiple/underdark/ores, -/obj/structure/closet/syndicate/resources{ - name = "storage locker" - }, -/turf/simulated/floor/tiled/airless, -/area/submap/debrisfield/mining_outpost) "s" = ( /obj/structure/bed/chair{ dir = 4 @@ -303,7 +296,7 @@ d h m z -r +H g S g diff --git a/maps/submaps/pois_vr/debris_field/new_escapepod_xeno.dmm b/maps/submaps/pois_vr/debris_field/new_escapepod_xeno.dmm index 5042974f3c..cacdec03ca 100644 --- a/maps/submaps/pois_vr/debris_field/new_escapepod_xeno.dmm +++ b/maps/submaps/pois_vr/debris_field/new_escapepod_xeno.dmm @@ -5,11 +5,11 @@ "f" = ( /obj/structure/grille/broken, /obj/effect/alien/weeds, -/obj/effect/alien/resin/membrane, +/obj/structure/alien/membrane, /turf/simulated/floor/airless, /area/submap/debrisfield/misc_debris) "h" = ( -/obj/effect/alien/resin/wall, +/obj/structure/alien/wall, /obj/effect/alien/weeds, /turf/space, /area/submap/debrisfield/misc_debris) @@ -24,7 +24,7 @@ dir = 4 }, /obj/effect/alien/weeds, -/obj/effect/alien/resin/membrane, +/obj/structure/alien/membrane, /turf/simulated/floor/airless, /area/submap/debrisfield/misc_debris) "t" = ( @@ -48,7 +48,7 @@ /area/submap/debrisfield/misc_debris) "D" = ( /obj/effect/alien/weeds, -/obj/effect/alien/resin/wall, +/obj/structure/alien/wall, /turf/simulated/wall/rshull, /area/submap/debrisfield/misc_debris) "T" = ( @@ -57,7 +57,7 @@ dir = 8 }, /obj/effect/alien/weeds, -/obj/effect/alien/resin/membrane, +/obj/structure/alien/membrane, /turf/simulated/floor/airless, /area/submap/debrisfield/misc_debris) "U" = ( diff --git a/maps/submaps/space_rocks/bittynest1.dmm b/maps/submaps/space_rocks/bittynest1.dmm new file mode 100644 index 0000000000..9d73c9b765 --- /dev/null +++ b/maps/submaps/space_rocks/bittynest1.dmm @@ -0,0 +1,145 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/template_noop, +/area/template_noop) +"L" = ( +/obj/random/underdark/uncertain, +/turf/simulated/mineral/floor/vacuum{ + ignore_cavegen = 1 + }, +/area/submap/space_rocks/bittynest1) +"P" = ( +/turf/simulated/mineral/vacuum/sdmine, +/area/submap/space_rocks/bittynest1) +"W" = ( +/turf/simulated/mineral/floor/vacuum{ + ignore_cavegen = 1 + }, +/area/submap/space_rocks/bittynest1) +"Y" = ( +/obj/tether_away_spawner/asteroidbaddies, +/turf/simulated/mineral/floor/vacuum{ + ignore_cavegen = 1 + }, +/area/submap/space_rocks/bittynest1) + +(1,1,1) = {" +a +a +a +a +P +P +a +a +a +a +"} +(2,1,1) = {" +a +a +a +P +P +P +P +W +a +a +"} +(3,1,1) = {" +a +a +P +P +W +W +W +W +P +a +"} +(4,1,1) = {" +a +P +P +W +W +P +P +P +P +a +"} +(5,1,1) = {" +P +P +W +W +W +W +W +Y +P +P +"} +(6,1,1) = {" +P +P +W +W +W +L +W +W +W +P +"} +(7,1,1) = {" +P +P +W +W +W +W +W +W +W +P +"} +(8,1,1) = {" +a +P +P +Y +W +W +W +W +P +P +"} +(9,1,1) = {" +a +a +P +P +P +P +P +P +P +a +"} +(10,1,1) = {" +a +a +a +a +a +P +P +a +a +a +"} diff --git a/maps/submaps/space_rocks/bittynest2.dmm b/maps/submaps/space_rocks/bittynest2.dmm new file mode 100644 index 0000000000..cb840bd5a4 --- /dev/null +++ b/maps/submaps/space_rocks/bittynest2.dmm @@ -0,0 +1,145 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/template_noop, +/area/template_noop) +"v" = ( +/turf/simulated/mineral/vacuum/sdmine, +/area/submap/space_rocks/bittynest2) +"B" = ( +/obj/tether_away_spawner/asteroidbaddies, +/turf/simulated/mineral/floor/vacuum{ + ignore_cavegen = 1 + }, +/area/submap/space_rocks/bittynest2) +"R" = ( +/obj/random/underdark/uncertain, +/turf/simulated/mineral/floor/vacuum{ + ignore_cavegen = 1 + }, +/area/submap/space_rocks/bittynest2) +"W" = ( +/turf/simulated/mineral/floor/vacuum{ + ignore_cavegen = 1 + }, +/area/submap/space_rocks/bittynest2) + +(1,1,1) = {" +a +a +a +a +v +v +a +v +v +a +"} +(2,1,1) = {" +a +a +v +v +v +v +v +v +v +a +"} +(3,1,1) = {" +a +v +v +v +v +W +R +v +v +v +"} +(4,1,1) = {" +a +v +v +v +W +W +B +W +v +v +"} +(5,1,1) = {" +v +v +v +W +W +W +W +W +v +a +"} +(6,1,1) = {" +v +v +W +W +W +W +W +v +v +v +"} +(7,1,1) = {" +v +v +R +B +W +W +W +W +v +a +"} +(8,1,1) = {" +v +v +v +W +W +v +v +W +a +a +"} +(9,1,1) = {" +a +v +v +v +v +v +v +W +a +a +"} +(10,1,1) = {" +a +a +a +v +v +a +a +a +a +a +"} diff --git a/maps/submaps/space_rocks/bittynest3.dmm b/maps/submaps/space_rocks/bittynest3.dmm new file mode 100644 index 0000000000..7f845fd0c9 --- /dev/null +++ b/maps/submaps/space_rocks/bittynest3.dmm @@ -0,0 +1,145 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/template_noop, +/area/template_noop) +"p" = ( +/obj/tether_away_spawner/asteroidbaddies, +/turf/simulated/mineral/floor/vacuum{ + ignore_cavegen = 1 + }, +/area/submap/space_rocks/bittynest3) +"N" = ( +/obj/random/underdark/uncertain, +/turf/simulated/mineral/floor/vacuum{ + ignore_cavegen = 1 + }, +/area/submap/space_rocks/bittynest3) +"Q" = ( +/turf/simulated/mineral/floor/vacuum{ + ignore_cavegen = 1 + }, +/area/submap/space_rocks/bittynest3) +"Z" = ( +/turf/simulated/mineral/vacuum/sdmine, +/area/submap/space_rocks/bittynest3) + +(1,1,1) = {" +a +a +Q +a +Z +Z +Z +Z +a +a +"} +(2,1,1) = {" +a +Z +Q +Q +Q +Z +Z +Z +Z +a +"} +(3,1,1) = {" +a +Z +Z +Q +Q +p +Q +Z +Z +Z +"} +(4,1,1) = {" +Z +Z +Z +Z +Z +Q +Q +Q +Z +Z +"} +(5,1,1) = {" +Z +Z +Z +p +Q +Z +Q +Q +Z +a +"} +(6,1,1) = {" +Z +Z +Q +Q +Q +Q +Q +Z +Z +a +"} +(7,1,1) = {" +Z +Z +Q +N +Q +Q +Q +Z +Z +a +"} +(8,1,1) = {" +a +Z +Z +Q +Q +Z +Z +Z +Z +a +"} +(9,1,1) = {" +a +a +Z +Z +Z +Z +Z +Z +a +a +"} +(10,1,1) = {" +a +a +a +Z +Z +Z +a +a +a +a +"} diff --git a/maps/submaps/space_rocks/bittynest4.dmm b/maps/submaps/space_rocks/bittynest4.dmm new file mode 100644 index 0000000000..2c4f133951 --- /dev/null +++ b/maps/submaps/space_rocks/bittynest4.dmm @@ -0,0 +1,145 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/template_noop, +/area/template_noop) +"m" = ( +/obj/tether_away_spawner/asteroidbaddies, +/turf/simulated/mineral/floor/vacuum{ + ignore_cavegen = 1 + }, +/area/submap/space_rocks/bittynest4) +"x" = ( +/obj/random/underdark/uncertain, +/turf/simulated/mineral/floor/vacuum{ + ignore_cavegen = 1 + }, +/area/submap/space_rocks/bittynest4) +"P" = ( +/turf/simulated/mineral/floor/vacuum{ + ignore_cavegen = 1 + }, +/area/submap/space_rocks/bittynest4) +"V" = ( +/turf/simulated/mineral/vacuum/sdmine, +/area/submap/space_rocks/bittynest4) + +(1,1,1) = {" +a +a +V +V +V +P +V +V +a +a +"} +(2,1,1) = {" +a +V +V +V +P +P +P +V +V +a +"} +(3,1,1) = {" +V +V +P +P +P +x +V +V +V +V +"} +(4,1,1) = {" +V +V +P +P +V +V +V +V +V +V +"} +(5,1,1) = {" +a +V +P +V +V +m +P +x +V +V +"} +(6,1,1) = {" +V +V +P +V +P +P +P +P +P +V +"} +(7,1,1) = {" +V +V +P +P +P +P +V +V +P +V +"} +(8,1,1) = {" +V +V +V +P +V +V +V +P +P +V +"} +(9,1,1) = {" +a +V +V +V +V +V +P +m +V +V +"} +(10,1,1) = {" +a +a +V +V +V +P +P +V +V +a +"} diff --git a/maps/submaps/space_rocks/clearing.dmm b/maps/submaps/space_rocks/clearing.dmm new file mode 100644 index 0000000000..3ffa6ed085 --- /dev/null +++ b/maps/submaps/space_rocks/clearing.dmm @@ -0,0 +1,148 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/template_noop, +/area/template_noop) +"v" = ( +/turf/simulated/mineral/floor/vacuum{ + ignore_cavegen = 1 + }, +/area/submap/space_rocks/clearing) +"y" = ( +/obj/random/contraband/nofail, +/turf/simulated/mineral/floor/vacuum{ + ignore_cavegen = 1 + }, +/area/submap/space_rocks/clearing) +"P" = ( +/obj/random/underdark/uncertain, +/turf/simulated/mineral/floor/vacuum{ + ignore_cavegen = 1 + }, +/area/submap/space_rocks/clearing) +"W" = ( +/obj/tether_away_spawner/asteroidbaddies, +/turf/simulated/mineral/floor/vacuum{ + ignore_cavegen = 1 + }, +/area/submap/space_rocks/clearing) + +(1,1,1) = {" +a +a +a +a +v +v +a +a +a +a +"} +(2,1,1) = {" +a +a +v +v +v +v +v +v +a +a +"} +(3,1,1) = {" +a +v +v +v +v +v +v +v +v +a +"} +(4,1,1) = {" +a +v +v +v +v +v +v +v +v +a +"} +(5,1,1) = {" +v +v +v +v +P +v +v +v +v +v +"} +(6,1,1) = {" +v +v +v +W +v +y +v +v +v +v +"} +(7,1,1) = {" +a +v +v +v +v +v +v +v +v +a +"} +(8,1,1) = {" +a +v +v +v +v +v +v +v +v +a +"} +(9,1,1) = {" +a +a +v +v +v +v +v +v +a +a +"} +(10,1,1) = {" +a +a +a +a +v +v +a +a +a +a +"} diff --git a/maps/submaps/space_rocks/seventemple.dmm b/maps/submaps/space_rocks/seventemple.dmm new file mode 100644 index 0000000000..1c5162c676 --- /dev/null +++ b/maps/submaps/space_rocks/seventemple.dmm @@ -0,0 +1,498 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/template_noop, +/area/template_noop) +"b" = ( +/obj/structure/loot_pile/surface/alien/medical, +/turf/simulated/shuttle/floor/alienplating/vacuum, +/area/submap/space_rocks/seventemple) +"f" = ( +/turf/simulated/mineral/floor/vacuum{ + ignore_cavegen = 1 + }, +/area/submap/space_rocks/seventemple) +"h" = ( +/obj/structure/loot_pile/surface/alien/end, +/turf/simulated/shuttle/floor/alienplating/vacuum, +/area/submap/space_rocks/seventemple) +"m" = ( +/turf/simulated/shuttle/floor/alien, +/area/submap/space_rocks/seventemple) +"p" = ( +/obj/structure/loot_pile/surface/bones, +/turf/simulated/shuttle/floor/alien/blue, +/area/submap/space_rocks/seventemple) +"q" = ( +/obj/random/underdark/uncertain, +/turf/simulated/mineral/floor/vacuum{ + ignore_cavegen = 1 + }, +/area/submap/space_rocks/seventemple) +"t" = ( +/turf/simulated/shuttle/floor/alienplating/vacuum, +/area/submap/space_rocks/seventemple) +"w" = ( +/obj/structure/loot_pile/surface/alien/security, +/turf/simulated/shuttle/floor/alienplating/vacuum, +/area/submap/space_rocks/seventemple) +"y" = ( +/obj/structure/loot_pile/surface/drone, +/turf/simulated/shuttle/floor/alienplating/vacuum, +/area/submap/space_rocks/seventemple) +"F" = ( +/turf/simulated/shuttle/floor/alien/blue, +/area/submap/space_rocks/seventemple) +"J" = ( +/turf/simulated/wall/eris/r_wall, +/area/submap/space_rocks/seventemple) +"R" = ( +/obj/tether_away_spawner/asteroidbaddies, +/turf/simulated/mineral/floor/vacuum{ + ignore_cavegen = 1 + }, +/area/submap/space_rocks/seventemple) +"Y" = ( +/obj/structure/loot_pile/surface/alien/engineering, +/turf/simulated/shuttle/floor/alienplating/vacuum, +/area/submap/space_rocks/seventemple) + +(1,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(2,1,1) = {" +a +a +J +a +a +a +a +f +J +J +J +f +a +a +a +a +J +a +a +a +"} +(3,1,1) = {" +a +J +J +J +a +a +f +J +J +t +J +J +f +a +a +J +J +J +a +a +"} +(4,1,1) = {" +a +a +J +f +f +f +f +J +Y +t +t +J +f +f +f +f +J +a +a +a +"} +(5,1,1) = {" +a +a +a +f +R +f +f +J +t +t +t +J +f +f +f +f +a +a +a +a +"} +(6,1,1) = {" +a +a +f +f +f +f +f +J +t +y +t +J +f +f +R +f +f +a +a +a +"} +(7,1,1) = {" +a +f +f +f +f +f +J +J +t +m +t +J +J +f +f +f +f +f +a +a +"} +(8,1,1) = {" +a +f +f +f +f +J +J +m +t +t +t +m +J +J +f +f +f +f +a +a +"} +(9,1,1) = {" +a +f +q +f +J +J +t +t +t +F +t +t +t +J +J +f +f +f +a +a +"} +(10,1,1) = {" +J +f +f +f +J +w +t +t +F +p +F +t +t +h +J +f +f +f +J +a +"} +(11,1,1) = {" +a +f +f +f +J +J +t +t +t +F +t +t +t +J +J +f +f +f +a +a +"} +(12,1,1) = {" +a +f +f +f +f +J +J +m +t +t +t +m +J +J +f +f +f +f +a +a +"} +(13,1,1) = {" +a +f +f +f +f +f +J +J +t +m +t +J +J +f +f +f +q +f +a +a +"} +(14,1,1) = {" +a +a +f +f +f +f +f +J +t +y +t +J +f +f +f +f +f +a +a +a +"} +(15,1,1) = {" +a +a +a +f +R +f +f +J +t +t +t +J +f +f +R +f +a +a +a +a +"} +(16,1,1) = {" +a +a +J +f +f +f +f +J +b +t +t +J +f +f +f +f +J +a +a +a +"} +(17,1,1) = {" +a +J +J +J +a +a +f +J +J +t +J +J +f +a +a +J +J +J +a +a +"} +(18,1,1) = {" +a +a +J +a +a +a +a +f +J +J +J +f +a +a +a +a +J +a +a +a +"} +(19,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(20,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} diff --git a/maps/submaps/space_rocks/space_rocks.dm b/maps/submaps/space_rocks/space_rocks.dm new file mode 100644 index 0000000000..3951d51171 --- /dev/null +++ b/maps/submaps/space_rocks/space_rocks.dm @@ -0,0 +1,61 @@ +#include "space_rocks_pois.dm" +#include "space_rocks_stuff.dm" + +/turf/simulated/mineral/vacuum/sdmine/make_ore(var/rare_ore) + if(mineral) + return + var/mineral_name + if(rare_ore) + mineral_name = pickweight(list( + "marble" = 3, + "uranium" = 10, + "platinum" = 10, + "hematite" = 20, + "carbon" = 5, + "diamond" = 1, + "gold" = 8, + "silver" = 8, + "phoron" = 18, + "lead" = 2, + "verdantium" = 1)) + else + mineral_name = pickweight(list( + "marble" = 2, + "uranium" = 5, + "platinum" = 5, + "hematite" = 35, + "carbon" = 5, + "gold" = 3, + "silver" = 3, + "phoron" = 25, + "lead" = 1)) + + if(mineral_name && (mineral_name in GLOB.ore_data)) + mineral = GLOB.ore_data[mineral_name] + UpdateMineral() + update_icon() + +/datum/random_map/noise/ore/spacerocks + descriptor = "asteroid field ore distribution map" + deep_val = 0.2 + rare_val = 0.1 + +/datum/random_map/noise/ore/spacerocks/check_map_sanity() + return 1 //Totally random, but probably beneficial. + +/area/sdmine/ + ambience = list('sound/ambience/ambimine.ogg', 'sound/ambience/song_game.ogg') + base_turf = /turf/simulated/mineral/floor/vacuum +/area/sdmine/unexplored + name = "asteroid field" + icon_state = "unexplored" +/area/sdmine/explored + name = "asteroid field" + icon_state = "explored" + + +/obj/effect/overmap/visitable/sector/virgo3b/generate_skybox(zlevel) + var/static/image/smallone = image(icon = 'icons/skybox/virgo3b.dmi', icon_state = "small") + + if(zlevel == Z_LEVEL_SPACE_ROCKS) + return smallone \ No newline at end of file diff --git a/maps/submaps/space_rocks/space_rocks.dmm b/maps/submaps/space_rocks/space_rocks.dmm new file mode 100644 index 0000000000..13f3f7d605 --- /dev/null +++ b/maps/submaps/space_rocks/space_rocks.dmm @@ -0,0 +1,19911 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/space, +/area/space) +"b" = ( +/obj/effect/shuttle_landmark/premade/spacerocks/north, +/turf/simulated/mineral/floor/vacuum{ + ignore_cavegen = 1 + }, +/area/sdmine/explored) +"v" = ( +/obj/effect/shuttle_landmark/premade/spacerocks/south, +/turf/simulated/mineral/floor/vacuum{ + ignore_cavegen = 1 + }, +/area/sdmine/explored) +"y" = ( +/obj/effect/shuttle_landmark/premade/spacerocks/center, +/turf/simulated/mineral/floor/vacuum{ + ignore_cavegen = 1 + }, +/area/sdmine/explored) +"D" = ( +/turf/simulated/mineral/floor/vacuum{ + ignore_cavegen = 1 + }, +/area/sdmine/explored) +"J" = ( +/turf/simulated/mineral/vacuum/sdmine, +/area/sdmine/unexplored) + +(1,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(2,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(3,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(4,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(5,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(6,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(7,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(8,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(9,1,1) = {" +a +a +a +a +a +a +a +a +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(10,1,1) = {" +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +J +J +J +J +a +a +a +a +a +a +a +a +a +"} +(11,1,1) = {" +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +"} +(12,1,1) = {" +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +"} +(13,1,1) = {" +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +"} +(14,1,1) = {" +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +"} +(15,1,1) = {" +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +"} +(16,1,1) = {" +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +"} +(17,1,1) = {" +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +"} +(18,1,1) = {" +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +"} +(19,1,1) = {" +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +J +J +J +J +J +J +J +J +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +"} +(20,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +J +J +J +J +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +J +J +J +J +J +J +a +a +a +a +a +a +a +a +"} +(21,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +J +J +J +J +a +a +a +a +a +a +a +a +a +"} +(22,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(23,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(24,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(25,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +"} +(26,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +"} +(27,1,1) = {" +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +"} +(28,1,1) = {" +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +J +a +J +J +J +J +a +J +J +J +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +"} +(29,1,1) = {" +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +"} +(30,1,1) = {" +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +"} +(31,1,1) = {" +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +"} +(32,1,1) = {" +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +"} +(33,1,1) = {" +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +"} +(34,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +"} +(35,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +"} +(36,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +"} +(37,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +D +a +a +a +a +a +a +"} +(38,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +D +a +a +a +a +a +a +"} +(39,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +D +D +D +D +J +J +J +J +J +J +J +J +J +D +D +a +a +a +a +a +a +"} +(40,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +D +D +a +a +D +D +D +D +D +D +D +D +J +J +J +J +J +D +D +D +D +a +a +a +a +a +a +"} +(41,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +a +a +a +a +a +a +a +"} +(42,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +a +a +a +a +a +a +a +"} +(43,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +a +a +a +a +a +a +a +"} +(44,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +a +a +a +a +a +a +a +"} +(45,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +a +a +a +a +a +a +a +"} +(46,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +a +a +a +a +a +a +a +a +"} +(47,1,1) = {" +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +a +a +a +a +a +a +a +a +"} +(48,1,1) = {" +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +a +a +a +a +a +a +a +a +"} +(49,1,1) = {" +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +a +a +a +a +a +a +a +a +"} +(50,1,1) = {" +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +a +a +a +a +a +a +a +a +"} +(51,1,1) = {" +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +D +D +D +D +D +D +D +D +D +D +D +D +v +D +D +D +D +D +D +a +a +a +a +a +a +a +a +"} +(52,1,1) = {" +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +a +a +a +a +a +a +a +"} +(53,1,1) = {" +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +a +a +a +a +a +a +a +"} +(54,1,1) = {" +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +a +a +a +a +a +a +a +"} +(55,1,1) = {" +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +a +a +a +a +a +a +"} +(56,1,1) = {" +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +a +a +a +a +a +a +"} +(57,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +a +a +a +a +a +"} +(58,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +D +D +D +D +D +D +D +D +D +D +D +D +D +D +J +J +J +J +J +J +J +J +D +D +D +a +a +a +a +a +"} +(59,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +D +D +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +D +D +a +a +a +D +D +D +D +D +D +J +J +J +J +J +J +J +J +J +J +J +J +J +D +a +a +a +a +a +"} +(60,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +D +D +D +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +D +D +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +D +D +D +J +J +J +J +J +J +J +J +J +J +J +J +J +J +D +a +a +a +a +a +"} +(61,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +D +D +D +D +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +D +D +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +D +D +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +"} +(62,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +D +D +D +D +D +D +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +D +D +D +D +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +"} +(63,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +D +D +D +D +D +D +D +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +"} +(64,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +D +D +D +D +D +D +D +D +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +"} +(65,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +D +D +D +D +D +D +D +D +D +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +"} +(66,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +D +D +D +D +D +D +D +D +D +D +D +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +"} +(67,1,1) = {" +a +a +a +a +a +a +a +a +a +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +"} +(68,1,1) = {" +a +a +a +a +a +a +a +a +a +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +"} +(69,1,1) = {" +a +a +a +a +a +a +a +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +"} +(70,1,1) = {" +a +a +a +a +a +a +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +"} +(71,1,1) = {" +a +a +a +a +a +a +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +"} +(72,1,1) = {" +a +a +a +a +a +a +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +"} +(73,1,1) = {" +a +a +a +a +a +a +a +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +"} +(74,1,1) = {" +a +a +a +a +a +a +a +a +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +"} +(75,1,1) = {" +a +a +a +a +a +a +a +a +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +"} +(76,1,1) = {" +a +a +a +a +a +a +a +a +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +"} +(77,1,1) = {" +a +a +a +a +a +a +a +a +a +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +"} +(78,1,1) = {" +a +a +a +a +a +a +a +a +a +a +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +"} +(79,1,1) = {" +a +a +a +a +a +a +a +a +a +a +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +"} +(80,1,1) = {" +a +a +a +a +a +a +a +a +a +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +"} +(81,1,1) = {" +a +a +a +a +a +a +a +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +D +D +D +D +D +D +D +D +D +D +D +D +D +y +D +D +D +D +D +D +D +D +D +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +"} +(82,1,1) = {" +a +a +a +a +a +a +a +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +"} +(83,1,1) = {" +a +a +a +a +a +a +a +D +D +D +D +D +D +D +D +D +D +b +D +D +D +D +D +D +D +D +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +"} +(84,1,1) = {" +a +a +a +a +a +a +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +J +J +J +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +"} +(85,1,1) = {" +a +a +a +a +a +a +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +J +J +J +J +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +"} +(86,1,1) = {" +a +a +a +a +a +a +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +D +D +D +D +D +D +D +D +D +D +D +D +D +J +J +J +J +J +J +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +"} +(87,1,1) = {" +a +a +a +a +a +a +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +D +D +D +D +D +D +D +D +D +D +J +J +J +J +J +J +J +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +"} +(88,1,1) = {" +a +a +a +a +a +a +a +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +D +D +D +D +D +D +D +J +J +J +J +J +J +J +J +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +"} +(89,1,1) = {" +a +a +a +a +a +a +a +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +D +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +D +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +"} +(90,1,1) = {" +a +a +a +a +a +a +a +a +D +D +D +D +J +J +J +J +J +J +J +D +D +D +D +D +D +D +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +"} +(91,1,1) = {" +a +a +a +a +a +a +a +a +D +D +D +J +J +J +J +J +J +J +J +J +J +J +D +D +D +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +"} +(92,1,1) = {" +a +a +a +a +a +a +a +a +D +D +J +J +J +J +J +J +J +J +J +J +J +J +J +J +D +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +"} +(93,1,1) = {" +a +a +a +a +a +a +a +a +a +D +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +"} +(94,1,1) = {" +a +a +a +a +a +a +a +a +D +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +"} +(95,1,1) = {" +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +"} +(96,1,1) = {" +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +"} +(97,1,1) = {" +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +"} +(98,1,1) = {" +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +"} +(99,1,1) = {" +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +"} +(100,1,1) = {" +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +"} +(101,1,1) = {" +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +"} +(102,1,1) = {" +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +"} +(103,1,1) = {" +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +"} +(104,1,1) = {" +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +"} +(105,1,1) = {" +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +"} +(106,1,1) = {" +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +"} +(107,1,1) = {" +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +"} +(108,1,1) = {" +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +"} +(109,1,1) = {" +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +"} +(110,1,1) = {" +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +"} +(111,1,1) = {" +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +"} +(112,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +"} +(113,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +"} +(114,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +"} +(115,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +"} +(116,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +"} +(117,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +a +"} +(118,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +a +"} +(119,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +a +a +"} +(120,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +a +a +"} +(121,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +J +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(122,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(123,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +J +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +J +J +J +J +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(124,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(125,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +J +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(126,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +J +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(127,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +J +J +a +J +J +a +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(128,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(129,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(130,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(131,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(132,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(133,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +J +J +J +J +J +J +J +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(134,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(135,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(136,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(137,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(138,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(139,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(140,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} diff --git a/maps/submaps/space_rocks/space_rocks_pois.dm b/maps/submaps/space_rocks/space_rocks_pois.dm new file mode 100644 index 0000000000..3c42dc57d6 --- /dev/null +++ b/maps/submaps/space_rocks/space_rocks_pois.dm @@ -0,0 +1,96 @@ +#if MAP_TEST +#include "bittynest1.dmm" +#include "bittynest2.dmm" +#include "bittynest3.dmm" +#include "bittynest4.dmm" +#include "clearing.dmm" +#include "seventemple.dmm" +#include "spacecrystals.dmm" +#include "tunnel1.dmm" +#include "tunnel2.dmm" +#endif + +/area/submap/space_rocks + name = "POI - Space Rocks" + ambience = AMBIENCE_FOREBODING + +/area/submap/space_rocks/bittynest1 + name = "POI - Bittynest1" + +/datum/map_template/space_rocks/bittynest1 + name = "Bittynest1" + desc = "A smol nest for smol badguys" + mappath = 'bittynest1.dmm' + cost = 5 + +/area/submap/space_rocks/bittynest2 + name = "POI - Bittynest2" + +/datum/map_template/space_rocks/bittynest2 + name = "Bittynest2" + desc = "A smol nest for smol badguys" + mappath = 'bittynest2.dmm' + cost = 5 + +/area/submap/space_rocks/bittynest3 + name = "POI - Bittynest3" + +/datum/map_template/space_rocks/bittynest3 + name = "Bittynest3" + desc = "A smol nest for smol badguys" + mappath = 'bittynest3.dmm' + cost = 5 + +/area/submap/space_rocks/bittynest4 + name = "POI - Bittynest4" + +/datum/map_template/space_rocks/bittynest4 + name = "Bittynest4" + desc = "A smol nest for smol badguys" + mappath = 'bittynest4.dmm' + cost = 5 + +/area/submap/space_rocks/tunnel1 + name = "POI - Tunnel1" + +/datum/map_template/space_rocks/tunnel1 + name = "Tunnel1" + desc = "A tunnel left behind!" + mappath = 'tunnel1.dmm' + cost = 10 + +/area/submap/space_rocks/tunnel2 + name = "POI - Tunnel2" + +/datum/map_template/space_rocks/tunnel2 + name = "Tunnel2" + desc = "A tunnel left behind!" + mappath = 'tunnel2.dmm' + cost = 10 + +/area/submap/space_rocks/spacecrystals + name = "POI - Space Crystals" + +/datum/map_template/space_rocks/tunnel2 + name = "Space Crystals" + desc = "Some crystals living in space!" + mappath = 'spacecrystals.dmm' + cost = 10 + +/area/submap/space_rocks/clearing + name = "POI - Clearing" + +/datum/map_template/space_rocks/clearing + name = "Clearing" + desc = "A clear spot for mischief to happen." + mappath = 'clearing.dmm' + cost = 10 + +/area/submap/space_rocks/seventemple + name = "POI - Temple of the Seven" + +/datum/map_template/space_rocks/seventemple + name = "Temple of the Seven" + desc = "A mysterious space!" + mappath = 'seventemple.dmm' + cost = 25 diff --git a/maps/submaps/space_rocks/space_rocks_stuff.dm b/maps/submaps/space_rocks/space_rocks_stuff.dm new file mode 100644 index 0000000000..cacb70e387 --- /dev/null +++ b/maps/submaps/space_rocks/space_rocks_stuff.dm @@ -0,0 +1,30 @@ +/////LANDING LANDMARKS +/obj/effect/shuttle_landmark/premade/spacerocks/center + name = "asteroid field center" + landmark_tag = "sr-c" + +/obj/effect/shuttle_landmark/premade/spacerocks/north + name = "asteroid field north" + landmark_tag = "sr-n" + +/obj/effect/shuttle_landmark/premade/spacerocks/south + name = "asteroid field south" + landmark_tag = "sr-s" + +/obj/tether_away_spawner/asteroidbaddies + name = "Asteroid Mob Spawner" + faction = "space_rock" + atmos_comp = TRUE + prob_spawn = 100 + prob_fall = 40 + //guard = 20 + mobs_to_pick_from = list( + /mob/living/simple_mob/animal/space/bats = 10, + /mob/living/simple_mob/vore/alienanimals/space_jellyfish = 15, + /mob/living/simple_mob/vore/alienanimals/startreader = 15, + /mob/living/simple_mob/vore/alienanimals/space_ghost = 6, + /mob/living/simple_mob/vore/oregrub = 1, + /mob/living/simple_mob/animal/space/carp = 3, + /mob/living/simple_mob/animal/space/carp/large = 1, + /mob/living/simple_mob/animal/space/carp/large/huge = 1 + ) diff --git a/maps/submaps/space_rocks/spacecrystals.dmm b/maps/submaps/space_rocks/spacecrystals.dmm new file mode 100644 index 0000000000..6d799f7a1c --- /dev/null +++ b/maps/submaps/space_rocks/spacecrystals.dmm @@ -0,0 +1,471 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/template_noop, +/area/template_noop) +"c" = ( +/turf/simulated/mineral/floor/vacuum{ + ignore_cavegen = 1 + }, +/area/submap/space_rocks/spacecrystals) +"j" = ( +/obj/random/underdark/uncertain, +/turf/simulated/mineral/floor/vacuum{ + ignore_cavegen = 1 + }, +/area/submap/space_rocks/spacecrystals) +"W" = ( +/turf/simulated/mineral/vacuum/sdmine, +/area/submap/space_rocks/spacecrystals) +"X" = ( +/obj/tether_away_spawner/asteroidbaddies, +/turf/simulated/mineral/floor/vacuum{ + ignore_cavegen = 1 + }, +/area/submap/space_rocks/spacecrystals) +"Z" = ( +/obj/machinery/crystal, +/turf/simulated/mineral/floor/vacuum{ + ignore_cavegen = 1 + }, +/area/submap/space_rocks/spacecrystals) + +(1,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(2,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(3,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(4,1,1) = {" +a +a +a +a +W +W +W +W +W +W +a +a +a +a +a +a +a +a +a +a +"} +(5,1,1) = {" +a +a +a +W +W +c +c +c +c +W +W +a +a +a +a +a +a +a +a +a +"} +(6,1,1) = {" +a +a +a +W +c +c +c +c +c +c +W +a +a +a +a +a +a +a +a +a +"} +(7,1,1) = {" +a +a +W +W +X +j +c +c +c +c +W +W +W +W +W +W +a +a +a +a +"} +(8,1,1) = {" +a +a +W +c +c +c +c +c +c +Z +c +c +c +c +W +W +a +a +a +a +"} +(9,1,1) = {" +a +a +W +c +c +c +c +Z +c +c +c +Z +c +c +c +W +W +a +a +a +"} +(10,1,1) = {" +a +a +W +W +c +c +c +c +c +c +c +c +c +j +c +c +W +a +a +a +"} +(11,1,1) = {" +a +a +a +W +W +W +c +c +c +Z +c +c +c +c +c +c +W +a +a +a +"} +(12,1,1) = {" +a +a +a +a +a +W +c +c +c +c +c +c +c +c +c +c +W +a +a +a +"} +(13,1,1) = {" +a +a +a +a +W +W +c +Z +c +c +c +Z +c +c +X +W +W +a +a +a +"} +(14,1,1) = {" +a +a +a +W +W +c +c +c +c +Z +c +c +W +W +W +W +a +a +a +a +"} +(15,1,1) = {" +a +a +a +W +c +c +j +X +c +c +c +W +W +a +a +a +a +a +a +a +"} +(16,1,1) = {" +a +a +a +W +c +c +c +c +c +c +W +W +a +a +a +a +a +a +a +a +"} +(17,1,1) = {" +a +a +a +W +c +c +c +c +c +W +W +a +a +a +a +a +a +a +a +a +"} +(18,1,1) = {" +a +a +a +W +W +c +W +c +W +W +a +a +a +a +a +a +a +a +a +a +"} +(19,1,1) = {" +a +a +a +a +W +W +W +W +W +a +a +a +a +a +a +a +a +a +a +a +"} +(20,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} diff --git a/maps/submaps/space_rocks/tunnel1.dmm b/maps/submaps/space_rocks/tunnel1.dmm new file mode 100644 index 0000000000..ac611ad185 --- /dev/null +++ b/maps/submaps/space_rocks/tunnel1.dmm @@ -0,0 +1,251 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/simulated/mineral/vacuum/sdmine, +/area/template_noop) +"b" = ( +/turf/simulated/floor/airless, +/area/submap/space_rocks/tunnel1) +"k" = ( +/obj/tether_away_spawner/asteroidbaddies, +/turf/simulated/mineral/floor/vacuum{ + ignore_cavegen = 1 + }, +/area/submap/space_rocks/tunnel1) +"l" = ( +/turf/simulated/wall, +/area/submap/space_rocks/tunnel1) +"x" = ( +/turf/simulated/mineral/floor/vacuum{ + ignore_cavegen = 1 + }, +/area/submap/space_rocks/tunnel1) +"L" = ( +/turf/simulated/mineral/vacuum/sdmine, +/area/submap/space_rocks/tunnel1) +"Z" = ( +/obj/random/underdark/uncertain, +/turf/simulated/mineral/floor/vacuum{ + ignore_cavegen = 1 + }, +/area/submap/space_rocks/tunnel1) + +(1,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(2,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(3,1,1) = {" +L +l +L +L +L +L +l +x +L +L +L +L +l +x +x +L +L +L +l +L +"} +(4,1,1) = {" +L +b +L +L +Z +L +b +x +x +L +L +x +b +L +x +x +x +x +b +L +"} +(5,1,1) = {" +x +b +b +x +k +x +b +b +x +x +x +x +b +b +x +x +L +x +b +b +"} +(6,1,1) = {" +x +b +b +x +x +x +b +b +x +x +x +x +b +b +x +Z +k +x +b +b +"} +(7,1,1) = {" +L +b +L +k +x +L +b +x +x +x +x +x +b +x +x +L +x +x +b +L +"} +(8,1,1) = {" +L +l +x +x +L +L +l +L +x +x +L +L +l +L +L +L +L +L +l +L +"} +(9,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(10,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} diff --git a/maps/submaps/space_rocks/tunnel2.dmm b/maps/submaps/space_rocks/tunnel2.dmm new file mode 100644 index 0000000000..9de921541c --- /dev/null +++ b/maps/submaps/space_rocks/tunnel2.dmm @@ -0,0 +1,275 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/simulated/mineral/vacuum/sdmine, +/area/template_noop) +"f" = ( +/obj/tether_away_spawner/asteroidbaddies, +/turf/simulated/floor/airless, +/area/submap/space_rocks/tunnel2) +"i" = ( +/turf/simulated/floor/airless, +/area/submap/space_rocks/tunnel2) +"l" = ( +/obj/random/underdark/uncertain, +/turf/simulated/mineral/floor/vacuum{ + ignore_cavegen = 1 + }, +/area/submap/space_rocks/tunnel2) +"q" = ( +/turf/simulated/wall, +/area/submap/space_rocks/tunnel2) +"z" = ( +/obj/tether_away_spawner/asteroidbaddies, +/turf/simulated/mineral/floor/vacuum{ + ignore_cavegen = 1 + }, +/area/submap/space_rocks/tunnel2) +"C" = ( +/turf/simulated/mineral/floor/vacuum{ + ignore_cavegen = 1 + }, +/area/submap/space_rocks/tunnel2) +"L" = ( +/turf/simulated/mineral/vacuum/sdmine, +/area/submap/space_rocks/tunnel2) + +(1,1,1) = {" +a +a +L +L +C +C +L +L +a +a +"} +(2,1,1) = {" +a +a +q +i +i +i +i +q +a +a +"} +(3,1,1) = {" +a +a +L +C +f +i +L +L +a +a +"} +(4,1,1) = {" +a +a +L +C +C +C +L +L +a +a +"} +(5,1,1) = {" +a +a +L +C +C +C +L +L +a +a +"} +(6,1,1) = {" +a +a +L +L +L +C +l +L +a +a +"} +(7,1,1) = {" +a +a +q +i +i +i +i +q +a +a +"} +(8,1,1) = {" +a +a +L +C +i +i +L +L +a +a +"} +(9,1,1) = {" +a +a +L +C +C +C +C +L +a +a +"} +(10,1,1) = {" +a +a +C +C +C +C +L +L +a +a +"} +(11,1,1) = {" +a +a +C +C +C +C +C +L +a +a +"} +(12,1,1) = {" +a +a +L +C +C +L +C +L +a +a +"} +(13,1,1) = {" +a +a +q +i +i +i +i +q +a +a +"} +(14,1,1) = {" +a +a +L +L +i +i +L +L +a +a +"} +(15,1,1) = {" +a +a +L +L +C +C +C +L +a +a +"} +(16,1,1) = {" +a +a +L +l +C +C +C +L +a +a +"} +(17,1,1) = {" +a +a +L +z +C +C +C +L +a +a +"} +(18,1,1) = {" +a +a +L +L +L +C +C +L +a +a +"} +(19,1,1) = {" +a +a +q +i +i +i +i +q +a +a +"} +(20,1,1) = {" +a +a +L +L +i +i +L +L +a +a +"} diff --git a/maps/submaps/surface_submaps/mountains/temple.dmm b/maps/submaps/surface_submaps/mountains/temple.dmm index 136074820e..229045614f 100644 --- a/maps/submaps/surface_submaps/mountains/temple.dmm +++ b/maps/submaps/surface_submaps/mountains/temple.dmm @@ -3,7 +3,7 @@ /turf/template_noop, /area/submap/AbandonedTemple) "b" = ( -/turf/simulated/mineral/floor, +/turf/simulated/mineral/floor/cave, /area/submap/AbandonedTemple) "c" = ( /turf/simulated/floor/tiled/asteroid_steel, @@ -206,7 +206,7 @@ /area/submap/AbandonedTemple) "O" = ( /obj/effect/decal/cleanable/blood, -/turf/simulated/mineral/floor, +/turf/simulated/mineral/floor/cave, /area/submap/AbandonedTemple) (1,1,1) = {" diff --git a/maps/submaps/surface_submaps/mountains/vault4.dmm b/maps/submaps/surface_submaps/mountains/vault4.dmm index 83843d7f68..ed602dd3c4 100644 --- a/maps/submaps/surface_submaps/mountains/vault4.dmm +++ b/maps/submaps/surface_submaps/mountains/vault4.dmm @@ -1,5 +1,5 @@ "a" = (/turf/template_noop,/area/template_noop) -"b" = (/obj/effect/alien/resin/wall,/turf/simulated/mineral/floor/ignore_mapgen,/area/submap/cave/vault4) +"b" = (/obj/structure/alien/wall,/turf/simulated/mineral/floor/ignore_mapgen,/area/submap/cave/vault4) "c" = (/obj/structure/simple_door/resin,/obj/effect/alien/weeds,/turf/simulated/mineral/floor/ignore_mapgen,/area/submap/cave/vault4) "d" = (/obj/effect/alien/weeds,/obj/structure/bed/nest,/turf/simulated/mineral/floor/ignore_mapgen,/area/submap/cave/vault4) "e" = (/obj/effect/alien/weeds,/turf/simulated/mineral/floor/ignore_mapgen,/area/submap/cave/vault4) diff --git a/maps/submaps/surface_submaps/mountains/vault5.dmm b/maps/submaps/surface_submaps/mountains/vault5.dmm index 24110c815e..89dcbf1bdf 100644 --- a/maps/submaps/surface_submaps/mountains/vault5.dmm +++ b/maps/submaps/surface_submaps/mountains/vault5.dmm @@ -1,5 +1,5 @@ "a" = (/turf/template_noop,/area/template_noop) -"b" = (/obj/effect/alien/resin/wall,/turf/simulated/mineral/floor/ignore_mapgen,/area/submap/cave/vault5) +"b" = (/obj/structure/alien/wall,/turf/simulated/mineral/floor/ignore_mapgen,/area/submap/cave/vault5) "c" = (/obj/structure/simple_door/resin,/obj/effect/alien/weeds,/turf/simulated/mineral/floor/ignore_mapgen,/area/submap/cave/vault5) "d" = (/obj/effect/alien/weeds,/obj/structure/bed/nest,/obj/item/weapon/gun/projectile/p92x/large,/turf/simulated/mineral/floor/ignore_mapgen,/area/submap/cave/vault5) "e" = (/obj/effect/alien/weeds,/turf/simulated/mineral/floor/ignore_mapgen,/area/submap/cave/vault5) diff --git a/maps/submaps/surface_submaps/plains/Boathouse_vr.dmm b/maps/submaps/surface_submaps/plains/Boathouse_vr.dmm index 18b91f368a..062bb10591 100644 --- a/maps/submaps/surface_submaps/plains/Boathouse_vr.dmm +++ b/maps/submaps/surface_submaps/plains/Boathouse_vr.dmm @@ -6,13 +6,13 @@ /turf/template_noop, /area/submap/Boathouse) "ac" = ( -/turf/simulated/floor/outdoors/rocks, +/turf/simulated/floor/outdoors/rocks/virgo3b, /area/submap/Boathouse) "ad" = ( -/turf/simulated/floor/water, +/turf/simulated/floor/water/virgo3b, /area/submap/Boathouse) "ae" = ( -/turf/simulated/floor/water/deep, +/turf/simulated/floor/water/deep/virgo3b, /area/submap/Boathouse) "af" = ( /obj/structure/flora/tree/sif, @@ -51,18 +51,18 @@ "an" = ( /obj/structure/table/woodentable, /obj/item/weapon/storage/toolbox/mechanical, -/turf/simulated/floor/wood, +/turf/simulated/floor/wood/virgo3b, /area/submap/Boathouse) "ao" = ( /obj/structure/railing{ dir = 8 }, /obj/structure/railing, -/turf/simulated/floor/water, +/turf/simulated/floor/water/virgo3b, /area/submap/Boathouse) "ap" = ( /obj/structure/railing, -/turf/simulated/floor/water, +/turf/simulated/floor/water/virgo3b, /area/submap/Boathouse) "aq" = ( /obj/item/weapon/stool/padded, @@ -81,22 +81,17 @@ "at" = ( /obj/structure/table/woodentable, /obj/item/trash/candle, -/turf/simulated/floor/wood, +/turf/simulated/floor/wood/virgo3b, /area/submap/Boathouse) "au" = ( /obj/item/weapon/stool, -/turf/simulated/floor/wood, -/area/submap/Boathouse) -"av" = ( -/turf/simulated/floor/wood{ - icon_state = "wood_broken6" - }, +/turf/simulated/floor/wood/virgo3b, /area/submap/Boathouse) "aw" = ( /obj/structure/railing{ dir = 8 }, -/turf/simulated/floor/water, +/turf/simulated/floor/water/virgo3b, /area/submap/Boathouse) "ax" = ( /obj/structure/table/woodentable, @@ -112,7 +107,7 @@ /obj/structure/table/woodentable, /obj/item/weapon/tape_roll, /obj/random/firstaid, -/turf/simulated/floor/wood, +/turf/simulated/floor/wood/virgo3b, /area/submap/Boathouse) "aA" = ( /obj/structure/table/woodentable, @@ -121,31 +116,15 @@ /obj/item/weapon/reagent_containers/food/drinks/glass2/shot, /turf/simulated/floor/carpet/turcarpet, /area/submap/Boathouse) -"aB" = ( -/turf/simulated/floor/wood{ - icon_state = "wood_broken2" - }, -/area/submap/Boathouse) -"aC" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/railing{ - icon_state = "railing0"; - dir = 1 - }, -/turf/simulated/floor/water, -/area/submap/Boathouse) "aD" = ( /obj/structure/railing{ - icon_state = "railing0"; dir = 1 }, -/turf/simulated/floor/water, +/turf/simulated/floor/water/virgo3b, /area/submap/Boathouse) "aE" = ( /obj/vehicle/boat/sifwood, -/turf/simulated/floor/water, +/turf/simulated/floor/water/virgo3b, /area/submap/Boathouse) "aF" = ( /obj/structure/window/reinforced/full, @@ -155,35 +134,24 @@ /obj/structure/table/woodentable, /obj/item/weapon/oar, /obj/item/weapon/oar, -/turf/simulated/floor/wood, -/area/submap/Boathouse) -"aH" = ( -/obj/structure/railing{ - icon_state = "railing0"; - dir = 8 - }, -/turf/simulated/floor/water, +/turf/simulated/floor/wood/virgo3b, /area/submap/Boathouse) "aI" = ( /obj/structure/table/woodentable, /obj/random/powercell, -/turf/simulated/floor/wood, +/turf/simulated/floor/wood/virgo3b, /area/submap/Boathouse) "aJ" = ( -/turf/simulated/floor/wood{ - icon_state = "wood_broken4" - }, +/turf/simulated/floor/wood/virgo3b, /area/submap/Boathouse) "aK" = ( /obj/structure/railing{ - icon_state = "railing0"; dir = 8 }, /obj/structure/railing{ - icon_state = "railing0"; dir = 1 }, -/turf/simulated/floor/water, +/turf/simulated/floor/water/virgo3b, /area/submap/Boathouse) "aL" = ( /obj/structure/simple_door/wood, @@ -268,7 +236,7 @@ /turf/simulated/floor/carpet/bcarpet, /area/submap/Boathouse) "bb" = ( -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/Boathouse) "LX" = ( /obj/machinery/portable_atmospherics/canister/air, @@ -809,16 +777,16 @@ ab ab ai ai -ak +aJ an at az -ak -ak +aJ +aJ aG at aI -ak +aJ ai aM ai @@ -871,16 +839,16 @@ ac ab ai ai -ak -ak +aJ +aJ au -ak -ak -ak -ak +aJ +aJ +aJ +aJ au -ak -ak +aJ +aJ aL ak aL @@ -933,16 +901,16 @@ ac ac ac ai -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ ai ai ai @@ -995,18 +963,18 @@ ad ad ac ai -ak -ak -ak -ak -aB -ak -ak -ak -ak -ak -ak -ak +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ +aJ ai ak ak @@ -1059,16 +1027,16 @@ ad ai ai ao -ak -ak -aC +aJ +aJ +aK aw ao -ak -ak +aJ +aJ aK -aH -aH +aw +aw ai aL ai @@ -1121,13 +1089,13 @@ ad ai ai ap -av -ak +aJ +aJ aD ad ap -ak -ak +aJ +aJ aD ad ad @@ -1183,12 +1151,12 @@ ad ai ai ap -ak -ak +aJ +aJ aE ad ad -ak +aJ aJ aD ad @@ -1245,13 +1213,13 @@ ad ai ai ap -ak -ak +aJ +aJ aD ad ap -ak -ak +aJ +aJ aD ad ad @@ -1312,8 +1280,8 @@ aw ad ad ad -aH -aH +aw +aw ad ad ad diff --git a/maps/submaps/surface_submaps/plains/Diner_vr.dmm b/maps/submaps/surface_submaps/plains/Diner_vr.dmm index 7264e054dd..1ef47715cb 100644 --- a/maps/submaps/surface_submaps/plains/Diner_vr.dmm +++ b/maps/submaps/surface_submaps/plains/Diner_vr.dmm @@ -6,7 +6,7 @@ /turf/template_noop, /area/submap/Diner) "ac" = ( -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/Diner) "ad" = ( /turf/simulated/wall, @@ -85,16 +85,13 @@ /obj/structure/table/standard, /obj/item/weapon/reagent_containers/food/condiment/small/peppermill, /obj/machinery/light{ - icon_state = "tube1"; dir = 4 }, /turf/simulated/floor/tiled/white, /area/submap/Diner) "at" = ( /obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 + dir = 8 }, /turf/simulated/floor/tiled/white, /area/submap/Diner) @@ -111,7 +108,6 @@ "aw" = ( /obj/machinery/appliance/mixer/cereal, /obj/machinery/light{ - icon_state = "tube1"; dir = 4 }, /turf/simulated/floor/tiled/white, @@ -198,7 +194,6 @@ "aK" = ( /obj/effect/floor_decal/corner/red/diagonal, /obj/machinery/light{ - icon_state = "tube1"; dir = 4 }, /turf/simulated/floor/tiled/white, @@ -297,14 +292,12 @@ /obj/machinery/light/small{ dir = 4 }, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/Diner) "ba" = ( /obj/effect/floor_decal/corner/red/diagonal, /obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 + dir = 8 }, /turf/simulated/floor/tiled/white, /area/submap/Diner) @@ -325,7 +318,6 @@ /area/submap/Diner) "be" = ( /obj/machinery/light{ - icon_state = "tube1"; dir = 4 }, /turf/simulated/floor/tiled/white, @@ -401,7 +393,6 @@ "br" = ( /obj/effect/floor_decal/corner/red/diagonal, /obj/structure/windoor_assembly{ - icon_state = "l_windoor_assembly01"; dir = 2 }, /turf/simulated/floor/tiled/white, @@ -418,7 +409,6 @@ /area/submap/Diner) "bu" = ( /obj/structure/sink{ - icon_state = "sink"; dir = 8; pixel_x = -12; pixel_y = 2 @@ -453,8 +443,7 @@ "bA" = ( /obj/structure/mirror{ dir = 4; - pixel_x = -32; - pixel_y = 0 + pixel_x = -32 }, /turf/simulated/floor/tiled/hydro, /area/submap/Diner) diff --git a/maps/submaps/surface_submaps/plains/Epod.dmm b/maps/submaps/surface_submaps/plains/Epod.dmm index 23ad06ceb5..b53f094c59 100644 --- a/maps/submaps/surface_submaps/plains/Epod.dmm +++ b/maps/submaps/surface_submaps/plains/Epod.dmm @@ -1,27 +1,259 @@ -"a" = (/turf/template_noop,/area/template_noop) -"b" = (/turf/template_noop,/area/submap/Epod1) -"c" = (/obj/item/weapon/airlock_electronics,/turf/template_noop,/area/submap/Epod1) -"d" = (/obj/structure/door_assembly/door_assembly_ext,/turf/template_noop,/area/submap/Epod1) -"e" = (/obj/structure/flora/tree/sif,/turf/template_noop,/area/submap/Epod1) -"f" = (/obj/structure/shuttle/engine/propulsion/burst{dir = 1},/turf/simulated/shuttle/wall,/area/submap/Epod1) -"g" = (/turf/simulated/shuttle/floor,/area/submap/Epod1) -"h" = (/turf/simulated/shuttle/wall,/area/submap/Epod1) -"i" = (/obj/structure/bed/chair,/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -28},/obj/structure/closet/walllocker/emerglocker{pixel_x = 28},/obj/item/weapon/weldingtool,/turf/simulated/shuttle/floor,/area/submap/Epod1) -"j" = (/turf/simulated/floor/outdoors/dirt,/area/submap/Epod1) -"k" = (/obj/structure/bed/chair,/obj/machinery/vending/wallmed1{layer = 3.3; name = "Emergency NanoMed"; pixel_x = 28; pixel_y = 0},/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/shuttle/floor,/area/submap/Epod1) -"l" = (/obj/structure/bed/chair,/obj/machinery/status_display{density = 0; layer = 4; pixel_x = -32; pixel_y = 0},/obj/item/weapon/storage/backpack/satchel,/obj/item/weapon/spacecash/c100,/turf/simulated/shuttle/floor,/area/submap/Epod1) -"m" = (/obj/structure/shuttle/window,/obj/structure/grille,/turf/simulated/shuttle/plating,/area/submap/Epod1) -"n" = (/obj/structure/flora/tree/dead,/turf/simulated/floor/outdoors/dirt,/area/submap/Epod1) +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/template_noop, +/area/template_noop) +"b" = ( +/turf/template_noop, +/area/submap/Epod1) +"c" = ( +/obj/item/weapon/airlock_electronics, +/turf/template_noop, +/area/submap/Epod1) +"d" = ( +/obj/structure/door_assembly/door_assembly_ext, +/turf/template_noop, +/area/submap/Epod1) +"e" = ( +/obj/structure/flora/tree/sif, +/turf/template_noop, +/area/submap/Epod1) +"f" = ( +/obj/structure/shuttle/engine/propulsion/burst{ + dir = 1 + }, +/turf/simulated/shuttle/wall, +/area/submap/Epod1) +"g" = ( +/turf/simulated/shuttle/floor/virgo3b, +/area/submap/Epod1) +"h" = ( +/turf/simulated/shuttle/wall, +/area/submap/Epod1) +"i" = ( +/obj/structure/bed/chair, +/obj/item/device/radio/intercom{ + dir = 8; + name = "Station Intercom (General)"; + pixel_x = -28 + }, +/obj/structure/closet/walllocker/emerglocker{ + pixel_x = 28 + }, +/obj/item/weapon/weldingtool, +/turf/simulated/shuttle/floor/virgo3b, +/area/submap/Epod1) +"j" = ( +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/Epod1) +"k" = ( +/obj/structure/bed/chair, +/obj/machinery/vending/wallmed1{ + layer = 3.3; + name = "Emergency NanoMed"; + pixel_x = 28 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/shuttle/floor/virgo3b, +/area/submap/Epod1) +"l" = ( +/obj/structure/bed/chair, +/obj/machinery/status_display{ + layer = 4; + pixel_x = -32 + }, +/obj/item/weapon/storage/backpack/satchel, +/obj/item/weapon/spacecash/c100, +/turf/simulated/shuttle/floor/virgo3b, +/area/submap/Epod1) +"m" = ( +/obj/structure/shuttle/window, +/obj/structure/grille, +/turf/simulated/shuttle/floor/virgo3b, +/area/submap/Epod1) +"n" = ( +/obj/structure/flora/tree/dead, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/Epod1) (1,1,1) = {" -aaaaaaaaaaaaaaa -abbbbbbbbbbcdba -abebbbbbbfgfbba -abbbbbbbbhihbea -abbbebbjjhkhjja -abbbbbejjhlhjja -abbbbbbjjhmhjja -abbbbbbjjjjnjba -abebbbbbbejjbea -aaaaaaaaaaaaaaa +a +a +a +a +a +a +a +a +a +a +"} +(2,1,1) = {" +a +b +b +b +b +b +b +b +b +a +"} +(3,1,1) = {" +a +b +e +b +b +b +b +b +e +a +"} +(4,1,1) = {" +a +b +b +b +b +b +b +b +b +a +"} +(5,1,1) = {" +a +b +b +b +e +b +b +b +b +a +"} +(6,1,1) = {" +a +b +b +b +b +b +b +b +b +a +"} +(7,1,1) = {" +a +b +b +b +b +e +b +b +b +a +"} +(8,1,1) = {" +a +b +b +b +j +j +j +j +b +a +"} +(9,1,1) = {" +a +b +b +b +j +j +j +j +b +a +"} +(10,1,1) = {" +a +b +f +h +h +h +h +j +e +a +"} +(11,1,1) = {" +a +b +g +i +k +l +m +j +j +a +"} +(12,1,1) = {" +a +c +f +h +h +h +h +n +j +a +"} +(13,1,1) = {" +a +d +b +b +j +j +j +j +b +a +"} +(14,1,1) = {" +a +b +b +e +j +j +j +b +e +a +"} +(15,1,1) = {" +a +a +a +a +a +a +a +a +a +a "} diff --git a/maps/submaps/surface_submaps/plains/Epod2.dmm b/maps/submaps/surface_submaps/plains/Epod2.dmm index db809d4c7b..fc7437ebce 100644 --- a/maps/submaps/surface_submaps/plains/Epod2.dmm +++ b/maps/submaps/surface_submaps/plains/Epod2.dmm @@ -1,30 +1,306 @@ -"a" = (/turf/template_noop,/area/template_noop) -"b" = (/turf/template_noop,/area/submap/Epod2) -"c" = (/turf/simulated/floor/outdoors/rocks,/area/submap/Epod2) -"d" = (/turf/simulated/floor/outdoors/dirt,/area/submap/Epod2) -"e" = (/obj/structure/boulder{icon_state = "boulder3"},/turf/simulated/floor/outdoors/dirt,/area/submap/Epod2) -"f" = (/obj/structure/boulder{icon_state = "boulder2"},/turf/simulated/floor/outdoors/dirt,/area/submap/Epod2) -"g" = (/obj/structure/boulder{icon_state = "boulder3"},/turf/simulated/floor/outdoors/rocks,/area/submap/Epod2) -"h" = (/turf/simulated/shuttle/wall,/area/submap/Epod2) -"i" = (/obj/structure/shuttle/engine/propulsion/burst{icon_state = "propulsion"; dir = 4},/turf/simulated/shuttle/wall,/area/submap/Epod2) -"j" = (/obj/structure/boulder,/turf/simulated/floor/outdoors/rocks,/area/submap/Epod2) -"k" = (/obj/structure/grille{density = 0; icon_state = "brokengrille"},/obj/structure/window/reinforced{dir = 1; health = 1e+006},/obj/structure/window/reinforced,/obj/item/stack/rods,/obj/item/weapon/material/shard,/obj/item/weapon/material/shard{icon_state = "medium"},/turf/simulated/shuttle/plating,/area/submap/Epod2) -"l" = (/obj/structure/bed/chair{icon_state = "chair_preview"; dir = 8},/obj/structure/loot_pile/surface/bones,/obj/effect/decal/cleanable/blood,/obj/effect/decal/cleanable/dirt,/obj/machinery/status_display{pixel_y = -32},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/shuttle/floor,/area/submap/Epod2) -"m" = (/obj/structure/bed/chair{icon_state = "chair_preview"; dir = 8},/obj/structure/loot_pile/surface/medicine_cabinet{pixel_y = 28},/obj/machinery/light,/obj/effect/decal/cleanable/vomit,/obj/effect/decal/cleanable/blood/drip,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/blood/drip,/obj/item/weapon/reagent_containers/hypospray/autoinjector/empty,/turf/simulated/shuttle/floor,/area/submap/Epod2) -"n" = (/obj/structure/bed/chair{icon_state = "chair_preview"; dir = 8},/obj/structure/closet/walllocker/emerglocker{pixel_y = 28},/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/blood/drip,/turf/simulated/shuttle/floor,/area/submap/Epod2) -"o" = (/obj/effect/decal/cleanable/blood/drip,/obj/machinery/door/airlock/external{icon_state = "door_locked"; locked = 1; name = "Escape Pod Hatch"},/turf/simulated/shuttle/floor,/area/submap/Epod2) -"p" = (/obj/structure/boulder{icon_state = "boulder4"},/turf/simulated/floor/outdoors/dirt,/area/submap/Epod2) -"q" = (/obj/structure/boulder{icon_state = "boulder2"},/turf/simulated/floor/outdoors/rocks,/area/submap/Epod2) +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/template_noop, +/area/template_noop) +"b" = ( +/turf/template_noop, +/area/submap/Epod2) +"c" = ( +/turf/simulated/floor/outdoors/rocks/virgo3b, +/area/submap/Epod2) +"d" = ( +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/Epod2) +"e" = ( +/obj/structure/boulder{ + icon_state = "boulder3" + }, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/Epod2) +"f" = ( +/obj/structure/boulder{ + icon_state = "boulder2" + }, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/Epod2) +"g" = ( +/obj/structure/boulder{ + icon_state = "boulder3" + }, +/turf/simulated/floor/outdoors/rocks/virgo3b, +/area/submap/Epod2) +"h" = ( +/turf/simulated/shuttle/wall, +/area/submap/Epod2) +"i" = ( +/obj/structure/shuttle/engine/propulsion/burst{ + dir = 4 + }, +/turf/simulated/shuttle/wall, +/area/submap/Epod2) +"j" = ( +/obj/structure/boulder, +/turf/simulated/floor/outdoors/rocks/virgo3b, +/area/submap/Epod2) +"k" = ( +/obj/structure/grille{ + density = 0; + icon_state = "brokengrille" + }, +/obj/structure/window/reinforced{ + dir = 1; + health = 1e+006 + }, +/obj/structure/window/reinforced, +/obj/item/stack/rods, +/obj/item/weapon/material/shard, +/obj/item/weapon/material/shard{ + icon_state = "medium" + }, +/turf/simulated/shuttle/floor/virgo3b, +/area/submap/Epod2) +"l" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/loot_pile/surface/bones, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/status_display{ + pixel_y = -32 + }, +/obj/item/device/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/turf/simulated/shuttle/floor/virgo3b, +/area/submap/Epod2) +"m" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/loot_pile/surface/medicine_cabinet{ + pixel_y = 28 + }, +/obj/machinery/light, +/obj/effect/decal/cleanable/vomit, +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/drip, +/obj/item/weapon/reagent_containers/hypospray/autoinjector/empty, +/turf/simulated/shuttle/floor/virgo3b, +/area/submap/Epod2) +"n" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/closet/walllocker/emerglocker{ + pixel_y = 28 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/drip, +/turf/simulated/shuttle/floor/virgo3b, +/area/submap/Epod2) +"o" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/machinery/door/airlock/external{ + icon_state = "door_locked"; + locked = 1; + name = "Escape Pod Hatch" + }, +/turf/simulated/shuttle/floor/virgo3b, +/area/submap/Epod2) +"p" = ( +/obj/structure/boulder{ + icon_state = "boulder4" + }, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/Epod2) +"q" = ( +/obj/structure/boulder{ + icon_state = "boulder2" + }, +/turf/simulated/floor/outdoors/rocks/virgo3b, +/area/submap/Epod2) (1,1,1) = {" -aaaaaaaaaaaaaaa -abbcdbbbbbbbbba -abdefdcddbbbbba -adghhhhicdddbba -afjklmnoccccdda -apbhhhhicccdcca -abqdpddcddcccca -abbbbbcdbcddcda -abbbbbbbbbdbdda -aaaaaaaaaaaaaaa +a +a +a +a +a +a +a +a +a +a +"} +(2,1,1) = {" +a +b +b +d +f +p +b +b +b +a +"} +(3,1,1) = {" +a +b +d +g +j +b +q +b +b +a +"} +(4,1,1) = {" +a +c +e +h +k +h +d +b +b +a +"} +(5,1,1) = {" +a +d +f +h +l +h +p +b +b +a +"} +(6,1,1) = {" +a +b +d +h +m +h +d +b +b +a +"} +(7,1,1) = {" +a +b +c +h +n +h +d +c +b +a +"} +(8,1,1) = {" +a +b +d +i +o +i +c +d +b +a +"} +(9,1,1) = {" +a +b +d +c +c +c +d +b +b +a +"} +(10,1,1) = {" +a +b +b +d +c +c +d +c +b +a +"} +(11,1,1) = {" +a +b +b +d +c +c +c +d +d +a +"} +(12,1,1) = {" +a +b +b +d +c +d +c +d +b +a +"} +(13,1,1) = {" +a +b +b +b +d +c +c +c +d +a +"} +(14,1,1) = {" +a +b +b +b +d +c +c +d +d +a +"} +(15,1,1) = {" +a +a +a +a +a +a +a +a +a +a "} diff --git a/maps/submaps/surface_submaps/plains/Field1.dmm b/maps/submaps/surface_submaps/plains/Field1.dmm index 9dcafe0400..ca0e54188b 100644 --- a/maps/submaps/surface_submaps/plains/Field1.dmm +++ b/maps/submaps/surface_submaps/plains/Field1.dmm @@ -1,42 +1,995 @@ -"a" = (/turf/template_noop,/area/template_noop) -"b" = (/turf/template_noop,/area/submap/Field1) -"c" = (/obj/structure/flora/tree/sif,/turf/template_noop,/area/submap/Field1) -"d" = (/turf/simulated/floor/outdoors/dirt,/area/submap/Field1) -"e" = (/obj/structure/ore_box,/turf/simulated/floor/outdoors/dirt,/area/submap/Field1) -"f" = (/obj/item/device/radio,/turf/simulated/floor/outdoors/dirt,/area/submap/Field1) -"g" = (/obj/vehicle/train/trolley,/turf/simulated/floor/outdoors/dirt,/area/submap/Field1) -"h" = (/obj/vehicle/train/engine,/turf/simulated/floor/outdoors/dirt,/area/submap/Field1) -"i" = (/obj/item/device/flashlight,/turf/simulated/floor/outdoors/dirt,/area/submap/Field1) +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/template_noop, +/area/template_noop) +"b" = ( +/turf/template_noop, +/area/submap/Field1) +"c" = ( +/obj/structure/flora/tree/sif, +/turf/template_noop, +/area/submap/Field1) +"d" = ( +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/Field1) +"e" = ( +/obj/structure/ore_box, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/Field1) +"f" = ( +/obj/item/device/radio, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/Field1) +"g" = ( +/obj/vehicle/train/trolley, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/Field1) +"h" = ( +/obj/vehicle/train/engine, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/Field1) +"i" = ( +/obj/item/device/flashlight, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/Field1) (1,1,1) = {" -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaabbbbbbbbbbbbbbba -abbaaaaaaaaaabbbbbbbbbbbbbbbaa -abbaaaaaabbbbbbcbbbbbbbbbcbbaa -abbbaaabbbbbbbbbbbbbbbbbbbbaaa -abbbbbbbbbbbbbbbbbbcbbbbbbbaaa -abbbbbbbbbbbbbbbbbbbbbbbbbbaaa -abbbbbbbbbbbbbbbbbbbbbbbbbaaaa -abbbcbbbbbbbbbbbbbbbbbbbbbaaaa -aabbbbbbbbbbbbbbbbbbbbbbbbaaaa -aabbbbbbbbbbbbbbbbbbbbbbbbbaaa -aaabbbbbbbbbbbdddbbbbbbbbbbaaa -aaabbbbbbbbbddddddddddbbbbbbba -aaaabbbbbbbddddddddddddbbbbbba -aaaabbbbbbbddddddddddddbbbbcba -aaaabbbbbbbdddedfddddbbbbbbbba -aaabbbbbbbbbdegghdddbbbbbbbbba -aaabbbbbbbbbbbdibdbbbbbbbbbbba -aabbbbbbbbbbbbbbbbbbbbbbbcbbba -abbbcbbbbbbbbbbbbbbbbbbbbbbbba -abbbbbbbbbbbbbbbbbbbbbbbbbbbba -abbbbbbbbbbbbbbbbbbbbbbbbbbbba -abbbbbbbbbbbbbbbbbbbbbbbbbbbba -abbbbbbbcbbbbbbbbbbbbbbbbbbbba -abbbbbbbbbbbbbbbbbbbbbbbbbbbba -abbbbbbbbbbbbbbbbbbbbbbbcbbbba -aabbbbbbcbbbbaaaabaaabbbbbbcba -aaaaaaabbbbbaaaaaaaaaabbbbbbba -aaaaaaaaabbaaaaaaaaaaabbbbbbba -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(2,1,1) = {" +a +a +b +b +b +b +b +b +b +a +a +a +a +a +a +a +a +a +a +b +b +b +b +b +b +b +a +a +a +a +"} +(3,1,1) = {" +a +a +b +b +b +b +b +b +b +b +b +a +a +a +a +a +a +a +b +b +b +b +b +b +b +b +b +a +a +a +"} +(4,1,1) = {" +a +a +a +a +b +b +b +b +b +b +b +b +b +a +a +a +b +b +b +b +b +b +b +b +b +b +b +a +a +a +"} +(5,1,1) = {" +a +a +a +a +a +b +b +b +c +b +b +b +b +b +b +b +b +b +b +c +b +b +b +b +b +b +b +a +a +a +"} +(6,1,1) = {" +a +a +a +a +a +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +a +a +a +"} +(7,1,1) = {" +a +a +a +a +a +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +a +a +a +"} +(8,1,1) = {" +a +a +a +a +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +a +a +"} +(9,1,1) = {" +a +a +a +a +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +c +b +b +c +b +a +a +"} +(10,1,1) = {" +a +a +a +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +a +"} +(11,1,1) = {" +a +a +a +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +a +"} +(12,1,1) = {" +a +a +a +b +b +b +b +b +b +b +b +b +b +d +d +d +b +b +b +b +b +b +b +b +b +b +b +b +a +a +"} +(13,1,1) = {" +a +a +a +b +b +b +b +b +b +b +b +b +d +d +d +d +d +b +b +b +b +b +b +b +b +b +b +a +a +a +"} +(14,1,1) = {" +a +a +b +b +b +b +b +b +b +b +b +b +d +d +d +d +e +b +b +b +b +b +b +b +b +b +a +a +a +a +"} +(15,1,1) = {" +a +b +b +b +b +b +b +b +b +b +b +d +d +d +d +e +g +d +b +b +b +b +b +b +b +b +a +a +a +a +"} +(16,1,1) = {" +a +b +b +c +b +b +b +b +b +b +b +d +d +d +d +d +g +i +b +b +b +b +b +b +b +b +a +a +a +a +"} +(17,1,1) = {" +a +b +b +b +b +b +b +b +b +b +b +d +d +d +d +f +h +b +b +b +b +b +b +b +b +b +a +a +a +a +"} +(18,1,1) = {" +a +b +b +b +b +b +b +b +b +b +b +b +d +d +d +d +d +d +b +b +b +b +b +b +b +b +b +a +a +a +"} +(19,1,1) = {" +a +b +b +b +b +b +b +b +b +b +b +b +d +d +d +d +d +b +b +b +b +b +b +b +b +b +a +a +a +a +"} +(20,1,1) = {" +a +b +b +b +b +c +b +b +b +b +b +b +d +d +d +d +d +b +b +b +b +b +b +b +b +b +a +a +a +a +"} +(21,1,1) = {" +a +b +b +b +b +b +b +b +b +b +b +b +d +d +d +d +b +b +b +b +b +b +b +b +b +b +a +a +a +a +"} +(22,1,1) = {" +a +b +b +b +b +b +b +b +b +b +b +b +d +d +d +b +b +b +b +b +b +b +b +b +b +b +b +a +a +a +"} +(23,1,1) = {" +a +b +b +b +b +b +b +b +b +b +b +b +b +d +d +b +b +b +b +b +b +b +b +b +b +b +b +b +b +a +"} +(24,1,1) = {" +a +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +a +"} +(25,1,1) = {" +a +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +c +b +b +b +a +"} +(26,1,1) = {" +a +b +b +c +b +b +b +b +b +b +b +b +b +b +b +b +b +b +c +b +b +b +b +b +b +b +b +b +b +a +"} +(27,1,1) = {" +a +b +b +b +b +b +b +a +a +a +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +a +"} +(28,1,1) = {" +a +b +b +b +a +a +a +a +a +a +a +a +b +b +c +b +b +b +b +b +b +b +b +b +b +b +c +b +b +a +"} +(29,1,1) = {" +a +b +a +a +a +a +a +a +a +a +a +a +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +a +"} +(30,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a "} diff --git a/maps/submaps/surface_submaps/plains/Mechpt.dmm b/maps/submaps/surface_submaps/plains/Mechpt.dmm index ad39aa84df..63b2f66dd4 100644 --- a/maps/submaps/surface_submaps/plains/Mechpt.dmm +++ b/maps/submaps/surface_submaps/plains/Mechpt.dmm @@ -1,45 +1,779 @@ -"a" = (/turf/template_noop,/area/template_noop) -"b" = (/turf/template_noop,/area/submap/Mechpt) -"c" = (/obj/item/trash/chips,/turf/template_noop,/area/submap/Mechpt) -"d" = (/obj/structure/railing,/turf/template_noop,/area/submap/Mechpt) -"e" = (/obj/structure/railing,/obj/structure/table/woodentable,/obj/item/weapon/reagent_containers/food/snacks/chips,/turf/template_noop,/area/submap/Mechpt) -"f" = (/obj/structure/railing,/obj/structure/table/woodentable,/obj/item/weapon/cell/high,/obj/item/weapon/cell/high,/turf/template_noop,/area/submap/Mechpt) -"g" = (/obj/structure/railing,/obj/structure/table/woodentable,/turf/template_noop,/area/submap/Mechpt) -"h" = (/obj/structure/railing,/obj/structure/table/woodentable,/obj/item/weapon/spacecash/c10,/obj/item/weapon/spacecash/c10,/turf/template_noop,/area/submap/Mechpt) -"i" = (/obj/structure/railing{ icon_state = "railing0"; dir = 4},/turf/template_noop,/area/submap/Mechpt) -"j" = (/turf/simulated/floor/outdoors/dirt,/area/submap/Mechpt) -"k" = (/obj/structure/railing{ icon_state = "railing0"; dir = 8},/turf/template_noop,/area/submap/Mechpt) -"l" = (/obj/item/stack/rods,/turf/simulated/floor/outdoors/dirt,/area/submap/Mechpt) -"m" = (/obj/effect/decal/cleanable/blood/oil,/turf/simulated/floor/outdoors/dirt,/area/submap/Mechpt) -"n" = (/obj/effect/decal/cleanable/blood/oil/streak,/turf/simulated/floor/outdoors/dirt,/area/submap/Mechpt) -"o" = (/obj/effect/decal/mecha_wreckage/ripley/deathripley,/turf/simulated/floor/outdoors/dirt,/area/submap/Mechpt) -"p" = (/obj/effect/decal/mecha_wreckage/ripley/firefighter,/turf/simulated/floor/outdoors/dirt,/area/submap/Mechpt) -"q" = (/obj/item/stack/cable_coil,/turf/simulated/floor/outdoors/dirt,/area/submap/Mechpt) -"r" = (/obj/structure/railing{ icon_state = "railing0"; dir = 1},/turf/template_noop,/area/submap/Mechpt) -"s" = (/obj/structure/railing{ icon_state = "railing0"; dir = 1},/obj/structure/table/woodentable,/obj/structure/reagent_dispensers/beerkeg,/turf/template_noop,/area/submap/Mechpt) -"t" = (/obj/structure/railing{ icon_state = "railing0"; dir = 1},/obj/structure/table/woodentable,/obj/item/weapon/spacecash/c50,/turf/template_noop,/area/submap/Mechpt) -"u" = (/obj/structure/railing{ icon_state = "railing0"; dir = 1},/obj/structure/table/woodentable,/obj/item/weapon/cell/high,/obj/item/weapon/cell/device/weapon,/turf/template_noop,/area/submap/Mechpt) -"v" = (/obj/structure/railing{ icon_state = "railing0"; dir = 1},/obj/structure/table/woodentable,/obj/item/weapon/reagent_containers/food/drinks/bottle/small/beer,/turf/template_noop,/area/submap/Mechpt) +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/template_noop, +/area/template_noop) +"b" = ( +/turf/template_noop, +/area/submap/Mechpt) +"c" = ( +/obj/item/trash/chips, +/turf/template_noop, +/area/submap/Mechpt) +"d" = ( +/obj/structure/railing, +/turf/template_noop, +/area/submap/Mechpt) +"e" = ( +/obj/structure/railing, +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/snacks/chips, +/turf/template_noop, +/area/submap/Mechpt) +"f" = ( +/obj/structure/railing, +/obj/structure/table/woodentable, +/obj/item/weapon/cell/high, +/obj/item/weapon/cell/high, +/turf/template_noop, +/area/submap/Mechpt) +"g" = ( +/obj/structure/railing, +/obj/structure/table/woodentable, +/turf/template_noop, +/area/submap/Mechpt) +"h" = ( +/obj/structure/railing, +/obj/structure/table/woodentable, +/obj/item/weapon/spacecash/c10, +/obj/item/weapon/spacecash/c10, +/turf/template_noop, +/area/submap/Mechpt) +"i" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/template_noop, +/area/submap/Mechpt) +"j" = ( +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/Mechpt) +"k" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/template_noop, +/area/submap/Mechpt) +"l" = ( +/obj/item/stack/rods, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/Mechpt) +"m" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/Mechpt) +"n" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/Mechpt) +"o" = ( +/obj/effect/decal/mecha_wreckage/ripley/deathripley, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/Mechpt) +"p" = ( +/obj/effect/decal/mecha_wreckage/ripley/firefighter, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/Mechpt) +"q" = ( +/obj/item/stack/cable_coil, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/Mechpt) +"r" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/template_noop, +/area/submap/Mechpt) +"s" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/table/woodentable, +/obj/structure/reagent_dispensers/beerkeg, +/turf/template_noop, +/area/submap/Mechpt) +"t" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/table/woodentable, +/obj/item/weapon/spacecash/c50, +/turf/template_noop, +/area/submap/Mechpt) +"u" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/table/woodentable, +/obj/item/weapon/cell/high, +/obj/item/weapon/cell/device/weapon, +/turf/template_noop, +/area/submap/Mechpt) +"v" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/drinks/bottle/small/beer, +/turf/template_noop, +/area/submap/Mechpt) (1,1,1) = {" -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -abbbbbbbbbbbbbbbbbbbbbbbbbbbba -abbbbbbbbbcbbbbbbbbbbbbbbbbbba -abbdddddddddefghgdddddddddddba -abijjjjjjjjjjjjjjjjjjjjjjjjjka -abijjjjjjjjjjjjjjjjjjjjjjjjjka -abijjjljjjjjjjjjjjjmjjjnjjjjka -abijjjjjmjjjjjjjjjjjjjjjjjjjka -ajjjjjjjjjjojjjjjjjjjjjjjjjjja -abjjjjjjjjjjjjjjjjjjjjjjjjjjja -abijjjjjjjjjjjpjjjmjjjjjjjjjka -abijjjjjjjjjjjjjjjjjjjjjjjjjka -abijjjjjjjmjjqjjjjjjjjjjjjjjka -abijnjjjjjjjjjjjjjjjjjjjjjjjka -abijjjjjjjjjjjjjjjjjjjjjjjjjka -abbrrrrrrrrrstutvrrrrrrrrrrrba -abbbbbbbbbbbbbbbbbbbbbbbbbbbba -abbbbbbbbbbbbbbbbbbbbbbbbbbbba -abbbbbbbbbbbbbbbbbbbbbbbbbbbba -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(2,1,1) = {" +a +b +b +b +b +b +b +b +j +b +b +b +b +b +b +b +b +b +b +a +"} +(3,1,1) = {" +a +b +b +b +i +i +i +i +j +j +i +i +i +i +i +b +b +b +b +a +"} +(4,1,1) = {" +a +b +b +d +j +j +j +j +j +j +j +j +j +j +j +r +b +b +b +a +"} +(5,1,1) = {" +a +b +b +d +j +j +j +j +j +j +j +j +j +n +j +r +b +b +b +a +"} +(6,1,1) = {" +a +b +b +d +j +j +j +j +j +j +j +j +j +j +j +r +b +b +b +a +"} +(7,1,1) = {" +a +b +b +d +j +j +l +j +j +j +j +j +j +j +j +r +b +b +b +a +"} +(8,1,1) = {" +a +b +b +d +j +j +j +j +j +j +j +j +j +j +j +r +b +b +b +a +"} +(9,1,1) = {" +a +b +b +d +j +j +j +m +j +j +j +j +j +j +j +r +b +b +b +a +"} +(10,1,1) = {" +a +b +b +d +j +j +j +j +j +j +j +j +j +j +j +r +b +b +b +a +"} +(11,1,1) = {" +a +b +c +d +j +j +j +j +j +j +j +j +m +j +j +r +b +b +b +a +"} +(12,1,1) = {" +a +b +b +d +j +j +j +j +o +j +j +j +j +j +j +r +b +b +b +a +"} +(13,1,1) = {" +a +b +b +e +j +j +j +j +j +j +j +j +j +j +j +s +b +b +b +a +"} +(14,1,1) = {" +a +b +b +f +j +j +j +j +j +j +j +j +q +j +j +t +b +b +b +a +"} +(15,1,1) = {" +a +b +b +g +j +j +j +j +j +j +p +j +j +j +j +u +b +b +b +a +"} +(16,1,1) = {" +a +b +b +h +j +j +j +j +j +j +j +j +j +j +j +t +b +b +b +a +"} +(17,1,1) = {" +a +b +b +g +j +j +j +j +j +j +j +j +j +j +j +v +b +b +b +a +"} +(18,1,1) = {" +a +b +b +d +j +j +j +j +j +j +j +j +j +j +j +r +b +b +b +a +"} +(19,1,1) = {" +a +b +b +d +j +j +j +j +j +j +m +j +j +j +j +r +b +b +b +a +"} +(20,1,1) = {" +a +b +b +d +j +j +m +j +j +j +j +j +j +j +j +r +b +b +b +a +"} +(21,1,1) = {" +a +b +b +d +j +j +j +j +j +j +j +j +j +j +j +r +b +b +b +a +"} +(22,1,1) = {" +a +b +b +d +j +j +j +j +j +j +j +j +j +j +j +r +b +b +b +a +"} +(23,1,1) = {" +a +b +b +d +j +j +j +j +j +j +j +j +j +j +j +r +b +b +b +a +"} +(24,1,1) = {" +a +b +b +d +j +j +n +j +j +j +j +j +j +j +j +r +b +b +b +a +"} +(25,1,1) = {" +a +b +b +d +j +j +j +j +j +j +j +j +j +j +j +r +b +b +b +a +"} +(26,1,1) = {" +a +b +b +d +j +j +j +j +j +j +j +j +j +j +j +r +b +b +b +a +"} +(27,1,1) = {" +a +b +b +d +j +j +j +j +j +j +j +j +j +j +j +r +b +b +b +a +"} +(28,1,1) = {" +a +b +b +d +j +j +j +j +j +j +j +j +j +j +j +r +b +b +b +a +"} +(29,1,1) = {" +a +b +b +b +k +k +k +k +j +j +k +k +k +k +k +b +b +b +b +a +"} +(30,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a "} diff --git a/maps/submaps/surface_submaps/plains/PascalB.dmm b/maps/submaps/surface_submaps/plains/PascalB.dmm index 8a1f4a1a9f..d912dddce6 100644 --- a/maps/submaps/surface_submaps/plains/PascalB.dmm +++ b/maps/submaps/surface_submaps/plains/PascalB.dmm @@ -1,15 +1,81 @@ -"a" = (/turf/template_noop,/area/template_noop) -"b" = (/turf/template_noop,/area/submap/PascalB) -"c" = (/turf/simulated/floor/outdoors/dirt,/area/submap/PascalB) -"d" = (/turf/simulated/floor/outdoors/rocks,/area/submap/PascalB) -"e" = (/obj/item/poi/pascalb,/turf/simulated/floor/outdoors/rocks,/area/submap/PascalB) +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/template_noop, +/area/template_noop) +"b" = ( +/turf/template_noop, +/area/submap/PascalB) +"c" = ( +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/PascalB) +"d" = ( +/turf/simulated/floor/outdoors/rocks/virgo3b, +/area/submap/PascalB) +"e" = ( +/obj/item/poi/pascalb, +/turf/simulated/floor/outdoors/rocks/virgo3b, +/area/submap/PascalB) (1,1,1) = {" -aaaaaaa -abbcbca -accdcca -acdedca -accdcca -abccbca -aaaaaaa +a +a +a +a +a +a +a +"} +(2,1,1) = {" +a +b +c +c +c +b +a +"} +(3,1,1) = {" +a +b +c +d +c +c +a +"} +(4,1,1) = {" +a +c +d +e +d +c +a +"} +(5,1,1) = {" +a +b +c +d +c +b +a +"} +(6,1,1) = {" +a +c +c +c +c +c +a +"} +(7,1,1) = {" +a +a +a +a +a +a +a "} diff --git a/maps/submaps/surface_submaps/plains/Peninsula.dmm b/maps/submaps/surface_submaps/plains/Peninsula.dmm index 4823fb8dab..b33fee45bb 100644 --- a/maps/submaps/surface_submaps/plains/Peninsula.dmm +++ b/maps/submaps/surface_submaps/plains/Peninsula.dmm @@ -1,43 +1,1000 @@ -"a" = (/turf/template_noop,/area/template_noop) -"b" = (/turf/template_noop,/area/submap/Peninsula) -"c" = (/turf/simulated/floor/outdoors/rocks,/area/submap/Peninsula) -"d" = (/turf/simulated/floor/water,/area/submap/Peninsula) -"e" = (/obj/structure/flora/tree/sif,/turf/template_noop,/area/submap/Peninsula) -"f" = (/turf/simulated/mineral/ignore_mapgen,/area/submap/Peninsula) -"g" = (/obj/structure/table/woodentable,/obj/item/device/flashlight,/turf/template_noop,/area/submap/Peninsula) -"h" = (/obj/structure/table/woodentable,/obj/item/weapon/cell/device,/obj/item/weapon/cell/device,/turf/template_noop,/area/submap/Peninsula) -"i" = (/obj/structure/bonfire,/turf/template_noop,/area/submap/Peninsula) -"j" = (/obj/structure/flora/tree/sif,/turf/template_noop,/area/template_noop) +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/template_noop, +/area/template_noop) +"b" = ( +/turf/template_noop, +/area/submap/Peninsula) +"c" = ( +/turf/simulated/floor/outdoors/rocks/virgo3b, +/area/submap/Peninsula) +"d" = ( +/turf/simulated/floor/water/virgo3b, +/area/submap/Peninsula) +"e" = ( +/obj/structure/flora/tree/sif, +/turf/template_noop, +/area/submap/Peninsula) +"f" = ( +/turf/simulated/mineral/ignore_mapgen, +/area/submap/Peninsula) +"g" = ( +/obj/structure/table/woodentable, +/obj/item/device/flashlight, +/turf/template_noop, +/area/submap/Peninsula) +"h" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/cell/device, +/obj/item/weapon/cell/device, +/turf/template_noop, +/area/submap/Peninsula) +"i" = ( +/obj/structure/bonfire, +/turf/template_noop, +/area/submap/Peninsula) +"j" = ( +/obj/structure/flora/tree/sif, +/turf/template_noop, +/area/template_noop) (1,1,1) = {" -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -abbbbbbbbbcccccccccccccccbbbba -abbbcccccccdddddddddddddccccea -aecccddddddddddddddddddddddcba -abcddddddddddddddddddddddddcba -abcddddddddddddddddddddddddcba -abcddddddddddddddddddddddddcca -abcdddddddddddddddddddddddddca -abcdddddddddddddddddddddddddca -abccdddddddcccccccddddddddddca -abbcddddddccbbbbbccddccdddddca -abbcdddddccbbffbbecccccdddddca -abbcdddddcbbfffbbbbbebccdddcca -abbcdddddcbbfffgbbbbbbbccdddca -abbcdddddcbbfffhbbibbbbbcdddca -jbbccddddcbbbfbbebbbbbbccdddca -abbbcddddccebbbbbbbbbbccdddcca -abbccdddddcbbbbbbbbebccddddcba -abbccdddddcbbbbbbbbbbcdddddcba -aebcddddddccbbbbbbbbbcdddddcba -abbccddddddcbbbbbbbbbcdddddcba -abbcdddddddcbbbbbbbbbcdddddcba -abbcdddddddcbbebbbbbbcdddddcba -abbcdddddddcbbbbbbbbbcdddddcba -abbcdddddddcbbbbbbbbbcdddddcba -abbcdddddddcbbbbbbbbccdddddcba -abccccddddccbbbbbbbbcddddddcba -abcbbccccccbbbbbbbbbbcdcccccba -abbbbbbbbbbebbbbbbbebccccbbbea -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +j +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(2,1,1) = {" +a +b +b +e +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +e +b +b +b +b +b +b +b +b +b +a +"} +(3,1,1) = {" +a +b +b +c +c +c +c +c +c +c +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +c +c +b +a +"} +(4,1,1) = {" +a +b +b +c +d +d +d +d +d +c +c +c +c +c +c +c +b +c +c +c +c +c +c +c +c +c +c +b +b +a +"} +(5,1,1) = {" +a +b +c +c +d +d +d +d +d +d +d +d +d +d +d +c +c +c +c +d +c +d +d +d +d +d +c +b +b +a +"} +(6,1,1) = {" +a +b +c +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +c +c +b +a +"} +(7,1,1) = {" +a +b +c +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +c +b +a +"} +(8,1,1) = {" +a +b +c +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +c +b +a +"} +(9,1,1) = {" +a +b +c +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +c +b +a +"} +(10,1,1) = {" +a +b +c +d +d +d +d +d +d +d +d +c +c +c +c +c +c +d +d +d +d +d +d +d +d +d +d +c +b +a +"} +(11,1,1) = {" +a +c +c +d +d +d +d +d +d +d +c +c +b +b +b +b +c +c +c +c +d +d +d +d +d +d +c +c +b +a +"} +(12,1,1) = {" +a +c +d +d +d +d +d +d +d +c +c +b +b +b +b +b +e +b +b +c +c +c +c +c +c +c +c +b +e +a +"} +(13,1,1) = {" +a +c +d +d +d +d +d +d +d +c +b +b +f +f +f +b +b +b +b +b +b +b +b +b +b +b +b +b +b +a +"} +(14,1,1) = {" +a +c +d +d +d +d +d +d +d +c +b +f +f +f +f +f +b +b +b +b +b +b +b +b +b +b +b +b +b +a +"} +(15,1,1) = {" +a +c +d +d +d +d +d +d +d +c +b +f +f +f +f +b +b +b +b +b +b +b +e +b +b +b +b +b +b +a +"} +(16,1,1) = {" +a +c +d +d +d +d +d +d +d +c +b +b +b +g +h +b +b +b +b +b +b +b +b +b +b +b +b +b +b +a +"} +(17,1,1) = {" +a +c +d +d +d +d +d +d +d +c +b +b +b +b +b +e +b +b +b +b +b +b +b +b +b +b +b +b +b +a +"} +(18,1,1) = {" +a +c +d +d +d +d +d +d +d +c +c +e +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +a +"} +(19,1,1) = {" +a +c +d +d +d +d +d +d +d +d +c +c +b +b +i +b +b +b +b +b +b +b +b +b +b +b +b +b +b +a +"} +(20,1,1) = {" +a +c +d +d +d +d +d +d +d +d +d +c +b +b +b +b +b +e +b +b +b +b +b +b +b +b +b +b +e +a +"} +(21,1,1) = {" +a +c +d +d +d +d +d +d +d +d +d +c +e +b +b +b +b +b +b +b +b +b +b +b +b +c +c +b +b +a +"} +(22,1,1) = {" +a +c +d +d +d +d +d +d +d +d +c +c +b +b +b +b +b +c +c +c +c +c +c +c +c +c +d +c +c +a +"} +(23,1,1) = {" +a +c +d +d +d +d +d +d +d +d +c +c +c +b +b +b +c +c +d +d +d +d +d +d +d +d +d +d +c +a +"} +(24,1,1) = {" +a +c +d +d +d +d +d +d +d +d +d +d +c +c +b +c +c +d +d +d +d +d +d +d +d +d +d +c +c +a +"} +(25,1,1) = {" +a +c +c +d +d +d +d +d +d +d +d +d +d +c +c +c +d +d +d +d +d +d +d +d +d +d +d +c +c +a +"} +(26,1,1) = {" +a +b +c +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +c +b +a +"} +(27,1,1) = {" +a +b +c +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +d +c +b +a +"} +(28,1,1) = {" +a +b +c +c +c +c +c +d +d +d +d +d +c +d +d +d +c +c +c +c +c +c +c +c +c +c +c +c +b +a +"} +(29,1,1) = {" +a +b +e +b +b +b +c +c +c +c +c +c +c +c +c +c +c +b +b +b +b +b +b +b +b +b +b +b +e +a +"} +(30,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a "} diff --git a/maps/submaps/surface_submaps/plains/PlainsKururak.dmm b/maps/submaps/surface_submaps/plains/PlainsKururak.dmm index f3a43e4c91..335f6fc907 100644 --- a/maps/submaps/surface_submaps/plains/PlainsKururak.dmm +++ b/maps/submaps/surface_submaps/plains/PlainsKururak.dmm @@ -1,26 +1,189 @@ -"a" = (/turf/template_noop,/area/template_noop) -"b" = (/turf/simulated/mineral/ignore_mapgen,/area/submap/PlainsKururak) -"c" = (/obj/random/trash,/turf/simulated/mineral/floor/ignore_mapgen,/area/submap/PlainsKururak) -"d" = (/obj/random/firstaid,/turf/simulated/mineral/floor/ignore_mapgen,/area/submap/PlainsKururak) -"e" = (/turf/simulated/mineral/floor/ignore_mapgen,/area/submap/PlainsKururak) -"f" = (/obj/random/projectile/sec,/turf/simulated/mineral/floor/ignore_mapgen,/area/submap/PlainsKururak) -"g" = (/obj/random/tech_supply,/obj/random/tech_supply,/turf/simulated/mineral/floor/ignore_mapgen,/area/submap/PlainsKururak) -"h" = (/mob/living/simple_mob/animal/sif/kururak,/turf/simulated/mineral/floor/ignore_mapgen,/area/submap/PlainsKururak) -"i" = (/obj/random/outcrop,/turf/simulated/mineral/floor/ignore_mapgen,/area/submap/PlainsKururak) -"j" = (/obj/random/contraband,/turf/simulated/mineral/floor/ignore_mapgen,/area/submap/PlainsKururak) -"k" = (/mob/living/simple_mob/animal/sif/diyaab,/turf/simulated/mineral/floor/ignore_mapgen,/area/submap/PlainsKururak) -"l" = (/obj/random/trash,/turf/template_noop,/area/submap/PlainsKururak) -"m" = (/turf/template_noop,/area/submap/PlainsKururak) +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/template_noop, +/area/template_noop) +"b" = ( +/turf/simulated/mineral/ignore_mapgen, +/area/submap/PlainsKururak) +"c" = ( +/obj/random/trash, +/turf/simulated/floor/outdoors/dirt/virgo3b{ + outdoors = 0 + }, +/area/submap/PlainsKururak) +"d" = ( +/obj/random/firstaid, +/turf/simulated/floor/outdoors/dirt/virgo3b{ + outdoors = 0 + }, +/area/submap/PlainsKururak) +"e" = ( +/turf/simulated/floor/outdoors/dirt/virgo3b{ + outdoors = 0 + }, +/area/submap/PlainsKururak) +"f" = ( +/obj/random/projectile/sec, +/turf/simulated/floor/outdoors/dirt/virgo3b{ + outdoors = 0 + }, +/area/submap/PlainsKururak) +"g" = ( +/obj/random/tech_supply, +/obj/random/tech_supply, +/turf/simulated/floor/outdoors/dirt/virgo3b{ + outdoors = 0 + }, +/area/submap/PlainsKururak) +"h" = ( +/mob/living/simple_mob/animal/sif/kururak, +/turf/simulated/floor/outdoors/dirt/virgo3b{ + outdoors = 0 + }, +/area/submap/PlainsKururak) +"i" = ( +/obj/random/outcrop, +/turf/simulated/floor/outdoors/dirt/virgo3b{ + outdoors = 0 + }, +/area/submap/PlainsKururak) +"j" = ( +/obj/random/contraband, +/turf/simulated/floor/outdoors/dirt/virgo3b{ + outdoors = 0 + }, +/area/submap/PlainsKururak) +"k" = ( +/mob/living/simple_mob/animal/sif/diyaab, +/turf/simulated/floor/outdoors/dirt/virgo3b{ + outdoors = 0 + }, +/area/submap/PlainsKururak) +"l" = ( +/obj/random/trash, +/turf/template_noop, +/area/submap/PlainsKururak) +"m" = ( +/turf/template_noop, +/area/submap/PlainsKururak) (1,1,1) = {" -aaaaaaaaaa -abbbbbbbaa -bbbcdefbaa -bbgeehibba -bbieebbbba -bbbjebklma -abbbckkbba -aabbbbibba -aaaabbbbaa -aaaaaaaaaa +a +a +b +b +b +b +a +a +a +a +"} +(2,1,1) = {" +a +b +b +b +b +b +b +a +a +a +"} +(3,1,1) = {" +a +b +b +g +i +b +b +b +a +a +"} +(4,1,1) = {" +a +b +c +e +e +j +b +b +a +a +"} +(5,1,1) = {" +a +b +d +e +e +e +c +b +b +a +"} +(6,1,1) = {" +a +b +e +h +b +b +k +b +b +a +"} +(7,1,1) = {" +a +b +f +i +b +k +k +i +b +a +"} +(8,1,1) = {" +a +b +b +b +b +l +b +b +b +a +"} +(9,1,1) = {" +a +a +a +b +b +m +b +b +a +a +"} +(10,1,1) = {" +a +a +a +a +a +a +a +a +a +a "} diff --git a/maps/submaps/surface_submaps/plains/PooledR_vr.dmm b/maps/submaps/surface_submaps/plains/PooledR_vr.dmm index 99dfa31789..be2aac0d21 100644 --- a/maps/submaps/surface_submaps/plains/PooledR_vr.dmm +++ b/maps/submaps/surface_submaps/plains/PooledR_vr.dmm @@ -37,21 +37,21 @@ /turf/template_noop, /area/submap/PooledR) "j" = ( -/turf/simulated/floor/outdoors/rocks, +/turf/simulated/floor/outdoors/rocks/virgo3b, /area/submap/PooledR) "k" = ( /obj/structure/flora/ausbushes, /turf/template_noop, /area/submap/PooledR) "l" = ( -/turf/simulated/floor/water, +/turf/simulated/floor/water/virgo3b, /area/submap/PooledR) "m" = ( /obj/structure/flora/ausbushes/grassybush, /turf/template_noop, /area/submap/PooledR) "n" = ( -/turf/simulated/floor/water/deep, +/turf/simulated/floor/water/deep/virgo3b, /area/submap/PooledR) (1,1,1) = {" diff --git a/maps/submaps/surface_submaps/plains/RationCache.dmm b/maps/submaps/surface_submaps/plains/RationCache.dmm index 0ddb58dd6f..1f3ef37551 100644 --- a/maps/submaps/surface_submaps/plains/RationCache.dmm +++ b/maps/submaps/surface_submaps/plains/RationCache.dmm @@ -1,20 +1,152 @@ -"a" = (/turf/template_noop,/area/template_noop) -"b" = (/turf/simulated/floor/outdoors/snow,/area/submap/RationCache) -"c" = (/mob/living/simple_mob/animal/sif/diyaab,/turf/simulated/floor/outdoors/snow,/area/submap/RationCache) -"d" = (/mob/living/simple_mob/animal/sif/diyaab,/turf/simulated/floor/outdoors/dirt,/area/submap/RationCache) -"e" = (/turf/simulated/floor/outdoors/dirt,/area/submap/RationCache) -"f" = (/obj/item/trash/liquidfood,/obj/item/trash/liquidfood,/obj/item/trash/liquidfood,/obj/item/trash/liquidfood,/obj/item/trash/liquidfood,/obj/item/trash/liquidfood,/turf/simulated/mineral/floor/ignore_mapgen,/area/submap/RationCache) -"g" = (/obj/machinery/portable_atmospherics/hydroponics/soil,/turf/simulated/floor/outdoors/dirt,/area/submap/RationCache) +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/template_noop, +/area/template_noop) +"b" = ( +/turf/simulated/floor/outdoors/snow/virgo3b, +/area/submap/RationCache) +"c" = ( +/mob/living/simple_mob/animal/sif/diyaab, +/turf/simulated/floor/outdoors/snow/virgo3b, +/area/submap/RationCache) +"d" = ( +/mob/living/simple_mob/animal/sif/diyaab, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/RationCache) +"e" = ( +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/RationCache) +"f" = ( +/obj/item/trash/liquidfood, +/obj/item/trash/liquidfood, +/obj/item/trash/liquidfood, +/obj/item/trash/liquidfood, +/obj/item/trash/liquidfood, +/obj/item/trash/liquidfood, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/RationCache) +"g" = ( +/obj/machinery/portable_atmospherics/hydroponics/soil, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/RationCache) (1,1,1) = {" -aaaabbbaaa -aabbbbbbaa -abbbbcbbbb -abbbdbbcbb -bbcefebbbb -bbbegebbbb -bbbbebcbbb -bbbbbbbbaa -aabbcbbaaa -aabbbaaaaa +a +a +a +a +b +b +b +b +a +a +"} +(2,1,1) = {" +a +a +b +b +b +b +b +b +a +a +"} +(3,1,1) = {" +a +b +b +b +c +b +b +b +b +b +"} +(4,1,1) = {" +a +b +b +b +e +e +b +b +b +b +"} +(5,1,1) = {" +b +b +b +d +f +g +e +b +c +b +"} +(6,1,1) = {" +b +b +c +b +e +e +b +b +b +a +"} +(7,1,1) = {" +b +b +b +b +b +b +c +b +b +a +"} +(8,1,1) = {" +a +b +b +c +b +b +b +b +a +a +"} +(9,1,1) = {" +a +a +b +b +b +b +b +a +a +a +"} +(10,1,1) = {" +a +a +b +b +b +b +b +a +a +a "} diff --git a/maps/submaps/surface_submaps/plains/RationCache_vr.dmm b/maps/submaps/surface_submaps/plains/RationCache_vr.dmm index e955b83f15..497ed3b803 100644 --- a/maps/submaps/surface_submaps/plains/RationCache_vr.dmm +++ b/maps/submaps/surface_submaps/plains/RationCache_vr.dmm @@ -3,10 +3,10 @@ /turf/template_noop, /area/template_noop) "b" = ( -/turf/simulated/floor/outdoors/snow, +/turf/simulated/floor/outdoors/snow/virgo3b, /area/submap/RationCache) "d" = ( -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/RationCache) "e" = ( /obj/item/trash/liquidfood, @@ -15,15 +15,15 @@ /obj/item/trash/liquidfood, /obj/item/trash/liquidfood, /obj/item/trash/liquidfood, -/turf/simulated/mineral/floor/ignore_mapgen, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/RationCache) "f" = ( /obj/machinery/portable_atmospherics/hydroponics/soil, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/RationCache) "x" = ( /mob/living/simple_mob/vore/aggressive/dino, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/RationCache) (1,1,1) = {" diff --git a/maps/submaps/surface_submaps/plains/Rocky2.dmm b/maps/submaps/surface_submaps/plains/Rocky2.dmm index eaa06c481a..757d48e6b5 100644 --- a/maps/submaps/surface_submaps/plains/Rocky2.dmm +++ b/maps/submaps/surface_submaps/plains/Rocky2.dmm @@ -1,40 +1,721 @@ -"a" = (/turf/template_noop,/area/template_noop) -"b" = (/turf/template_noop,/area/submap/Rocky2) -"c" = (/turf/simulated/mineral/ignore_mapgen,/area/submap/Rocky2) -"d" = (/obj/structure/flora/tree/sif,/turf/template_noop,/area/submap/Rocky2) -"e" = (/turf/simulated/floor/outdoors/dirt,/area/submap/Rocky2) -"f" = (/obj/structure/flora/tree/pine,/turf/template_noop,/area/submap/Rocky2) -"g" = (/obj/structure/flora/ausbushes/grassybush,/turf/template_noop,/area/submap/Rocky2) -"h" = (/obj/structure/flora/ausbushes/fullgrass,/turf/template_noop,/area/submap/Rocky2) -"i" = (/obj/structure/flora/ausbushes/sparsegrass,/turf/template_noop,/area/submap/Rocky2) -"j" = (/obj/structure/flora/ausbushes/sunnybush,/turf/template_noop,/area/submap/Rocky2) -"k" = (/obj/structure/flora/ausbushes/stalkybush,/turf/template_noop,/area/submap/Rocky2) -"l" = (/obj/structure/flora/tree/dead,/turf/template_noop,/area/submap/Rocky2) +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/template_noop, +/area/template_noop) +"b" = ( +/turf/template_noop, +/area/submap/Rocky2) +"c" = ( +/turf/simulated/mineral/ignore_mapgen, +/area/submap/Rocky2) +"d" = ( +/obj/structure/flora/tree/sif, +/turf/template_noop, +/area/submap/Rocky2) +"e" = ( +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/Rocky2) +"f" = ( +/obj/structure/flora/tree/pine, +/turf/template_noop, +/area/submap/Rocky2) +"g" = ( +/obj/structure/flora/ausbushes/grassybush, +/turf/template_noop, +/area/submap/Rocky2) +"h" = ( +/obj/structure/flora/ausbushes/fullgrass, +/turf/template_noop, +/area/submap/Rocky2) +"i" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/turf/template_noop, +/area/submap/Rocky2) +"j" = ( +/obj/structure/flora/ausbushes/sunnybush, +/turf/template_noop, +/area/submap/Rocky2) +"k" = ( +/obj/structure/flora/ausbushes/stalkybush, +/turf/template_noop, +/area/submap/Rocky2) +"l" = ( +/obj/structure/flora/tree/dead, +/turf/template_noop, +/area/submap/Rocky2) (1,1,1) = {" -aaaaaaaaaaaaaaaaaaaaaaaaa -abbbbbbbbbbbbbbbbbccbbbba -abbbbbbbcccccccccbcccbbda -abbbbbbccccccccbbbccccbba -abbbeecccccccccbbcccccbba -afbbecccccccbccbcccccccba -abbbecccccccgbbbcccccccba -abbbbccccccbbbbbcccccceba -abbbbcccccbhbfbbbcccceeea -abbbbbbcccbbbbbbicccceeea -abbbbbbcccbdbbhbbcccceeea -abdbbbccccbbbbbbbbccceeea -abbbbccccbbhbbbbbbcceeeea -abbbccccccfbbbdbbbcccceea -abbeccccccbbbbbbficccceea -abbeccccccbgbhbbbbccccbba -abbeecccccbbbbbbbbcccccba -abbeecccccjbdbbbhbcccccba -abbbecccccbbbbbbbccccccba -abbbeccceebbkbbbbccccccba -abbbbccceeccbbfbcccccbbba -abbbbccceeeccccccccccbbba -ablbbcccbeccccccbbbcbblba -abbbbbbbbbbbcccbbbbbbbbba -aaaaaaaaaaaaaaaaaaaaaaaaa +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(2,1,1) = {" +a +b +b +b +b +f +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +a +"} +(3,1,1) = {" +a +b +b +b +b +b +b +b +b +b +b +d +b +b +b +b +b +b +b +b +b +b +l +b +a +"} +(4,1,1) = {" +a +b +b +b +b +b +b +b +b +b +b +b +b +b +e +e +e +e +b +b +b +b +b +b +a +"} +(5,1,1) = {" +a +b +b +b +e +e +e +b +b +b +b +b +b +c +c +c +e +e +e +e +b +b +b +b +a +"} +(6,1,1) = {" +a +b +b +b +e +c +c +c +c +b +b +b +c +c +c +c +c +c +c +c +c +c +c +b +a +"} +(7,1,1) = {" +a +b +b +b +c +c +c +c +c +b +b +c +c +c +c +c +c +c +c +c +c +c +c +b +a +"} +(8,1,1) = {" +a +b +b +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +b +a +"} +(9,1,1) = {" +a +b +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +e +e +e +b +b +a +"} +(10,1,1) = {" +a +b +c +c +c +c +c +c +c +c +c +c +b +c +c +c +c +c +c +e +e +e +e +b +a +"} +(11,1,1) = {" +a +b +c +c +c +c +c +c +b +b +b +b +b +f +b +b +b +j +b +b +c +e +c +b +a +"} +(12,1,1) = {" +a +b +c +c +c +c +c +b +h +b +d +b +h +b +b +g +b +b +b +b +c +c +c +b +a +"} +(13,1,1) = {" +a +b +c +c +c +b +g +b +b +b +b +b +b +b +b +b +b +d +b +k +b +c +c +c +a +"} +(14,1,1) = {" +a +b +c +c +c +c +b +b +f +b +b +b +b +b +b +h +b +b +b +b +b +c +c +c +a +"} +(15,1,1) = {" +a +b +c +c +c +c +b +b +b +b +h +b +b +d +b +b +b +b +b +b +f +c +c +c +a +"} +(16,1,1) = {" +a +b +c +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +c +c +b +a +"} +(17,1,1) = {" +a +b +c +b +b +c +c +c +b +i +b +b +b +b +f +b +b +h +b +b +c +c +b +b +a +"} +(18,1,1) = {" +a +b +b +b +c +c +c +c +c +c +c +b +b +b +i +b +b +b +c +c +c +c +b +b +a +"} +(19,1,1) = {" +a +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +b +b +a +"} +(20,1,1) = {" +a +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +c +b +a +"} +(21,1,1) = {" +a +b +c +c +c +c +c +c +c +c +c +c +e +c +c +c +c +c +c +c +c +c +b +b +a +"} +(22,1,1) = {" +a +b +b +c +c +c +c +c +e +e +e +e +e +c +c +c +c +c +c +c +b +b +b +b +a +"} +(23,1,1) = {" +a +b +b +b +b +c +c +e +e +e +e +e +e +e +e +b +c +c +c +c +b +b +l +b +a +"} +(24,1,1) = {" +a +b +d +b +b +b +b +b +e +e +e +e +e +e +e +b +b +b +b +b +b +b +b +b +a +"} +(25,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a "} diff --git a/maps/submaps/surface_submaps/plains/Shakden_vr.dmm b/maps/submaps/surface_submaps/plains/Shakden_vr.dmm index 4d78fcdde2..3676259c87 100644 --- a/maps/submaps/surface_submaps/plains/Shakden_vr.dmm +++ b/maps/submaps/surface_submaps/plains/Shakden_vr.dmm @@ -8,14 +8,9 @@ "c" = ( /turf/simulated/mineral/ignore_mapgen, /area/submap/Shakden) -"d" = ( -/turf/simulated/floor/outdoors/dirt{ - outdoors = 0 - }, -/area/submap/Shakden) "e" = ( /obj/effect/decal/remains/mouse, -/turf/simulated/floor/outdoors/dirt{ +/turf/simulated/floor/outdoors/dirt/virgo3b{ outdoors = 0 }, /area/submap/Shakden) @@ -25,7 +20,7 @@ /obj/item/weapon/reagent_containers/food/snacks/meat, /obj/item/weapon/reagent_containers/food/snacks/meat, /obj/item/weapon/reagent_containers/food/snacks/meat, -/turf/simulated/floor/outdoors/dirt{ +/turf/simulated/floor/outdoors/dirt/virgo3b{ outdoors = 0 }, /area/submap/Shakden) @@ -33,22 +28,24 @@ /obj/item/weapon/reagent_containers/food/snacks/meat, /obj/item/weapon/reagent_containers/food/snacks/meat, /obj/item/weapon/reagent_containers/food/snacks/meat, -/turf/simulated/floor/outdoors/dirt{ +/turf/simulated/floor/outdoors/dirt/virgo3b{ outdoors = 0 }, /area/submap/Shakden) "h" = ( /mob/living/simple_mob/vore/aggressive/dragon/virgo3b, -/turf/simulated/floor/outdoors/dirt{ +/turf/simulated/floor/outdoors/dirt/virgo3b{ outdoors = 0 }, /area/submap/Shakden) "i" = ( -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b{ + outdoors = 0 + }, /area/submap/Shakden) "j" = ( /obj/item/weapon/reagent_containers/food/snacks/meat, -/turf/simulated/floor/outdoors/dirt{ +/turf/simulated/floor/outdoors/dirt/virgo3b{ outdoors = 0 }, /area/submap/Shakden) @@ -58,7 +55,7 @@ /obj/item/weapon/reagent_containers/food/snacks/meat, /obj/item/weapon/reagent_containers/food/snacks/meat, /obj/item/weapon/material/knife/hook, -/turf/simulated/floor/outdoors/dirt{ +/turf/simulated/floor/outdoors/dirt/virgo3b{ outdoors = 0 }, /area/submap/Shakden) @@ -137,12 +134,12 @@ c c c c -d -d +i +i c c e -d +i c c c @@ -158,15 +155,15 @@ c c c g -d -d -d -d -d -d -d -d -d +i +i +i +i +i +i +i +i +i c c c @@ -179,17 +176,17 @@ c c c e -d -d -d -d -d -d -d -d -d -d -d +i +i +i +i +i +i +i +i +i +i +i c c c @@ -199,20 +196,20 @@ a a c c -d -d -d -d -d -d -d -d -d -d -d -d -d -d +i +i +i +i +i +i +i +i +i +i +i +i +i +i c c a @@ -221,20 +218,20 @@ a a c c -d -d -d -d +i +i +i +i c c g -d -d -d +i +i +i h -d -d -d +i +i +i c c a @@ -243,20 +240,20 @@ a a c c -d -d -d -d -c -c -c -d -d -d -d -d i -d +i +i +i +c +c +c +i +i +i +i +i +i +i c c a @@ -266,19 +263,19 @@ a c c e -d -d +i +i c c c c -d -d -d -d -d +i +i +i +i +i j -d +i c b a @@ -287,17 +284,17 @@ a a c c -d -d -d +i +i +i c c c e -d -d -d -d +i +i +i +i f k e @@ -310,15 +307,15 @@ a c c f -d -d -d +i +i +i c c -d -d -d -d +i +i +i +i c c c @@ -332,14 +329,14 @@ a c c c -d -d -d -d -d -d -d -d +i +i +i +i +i +i +i +i c c c @@ -354,12 +351,12 @@ a c c c -d -d -d -d -d -d +i +i +i +i +i +i c c c @@ -376,19 +373,19 @@ a c c c -d -d -d -d -d -d +i +i +i +i +i +i c c c -d -d -d -d +i +i +i +i c c a @@ -400,17 +397,17 @@ c c c c -d -d -d -d +i +i +i +i c c -d -d -d -d -d +i +i +i +i +i c c a @@ -423,14 +420,14 @@ c c c c -d -d -d +i +i +i c -d -d -d -d +i +i +i +i c c c @@ -449,8 +446,8 @@ c c c c -d -d +i +i b b b diff --git a/maps/submaps/surface_submaps/plains/Smol3.dmm b/maps/submaps/surface_submaps/plains/Smol3.dmm index 0f80ad07fb..4008262f5d 100644 --- a/maps/submaps/surface_submaps/plains/Smol3.dmm +++ b/maps/submaps/surface_submaps/plains/Smol3.dmm @@ -10,10 +10,10 @@ /area/submap/Smol3) "d" = ( /obj/structure/simple_door/wood, -/turf/template_noop, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/Smol3) "e" = ( -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/Smol3) "f" = ( /obj/structure/closet/crate/freezer, @@ -24,7 +24,7 @@ /obj/item/weapon/reagent_containers/food/snacks/meat, /obj/item/weapon/reagent_containers/food/snacks/meat, /obj/item/weapon/reagent_containers/food/snacks/meat, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/Smol3) "g" = ( /obj/structure/closet/crate/freezer, @@ -36,23 +36,23 @@ /obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle, /obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle, /obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/Smol3) "h" = ( /obj/structure/table/woodentable, /obj/item/weapon/paper{ desc = "Lamen's Hunter Shack! Selling freshly hunted meat for six thalers a slab. Support Locale hunters! Also selling Getmore Products for 3 thalers a bag, or 2 thalers for a bottle of water. Please place all payments into the nearbye bag." }, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/Smol3) "i" = ( /obj/structure/table/woodentable, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/Smol3) "j" = ( /obj/structure/table/woodentable, /obj/item/weapon/spacecash/c200, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/Smol3) (1,1,1) = {" diff --git a/maps/submaps/surface_submaps/plains/SupplyDrop2.dmm b/maps/submaps/surface_submaps/plains/SupplyDrop2.dmm index 7afbe010ab..6375aedaa5 100644 --- a/maps/submaps/surface_submaps/plains/SupplyDrop2.dmm +++ b/maps/submaps/surface_submaps/plains/SupplyDrop2.dmm @@ -1,23 +1,126 @@ -"a" = (/turf/template_noop,/area/template_noop) -"b" = (/turf/template_noop,/area/submap/SupplyDrop2) -"c" = (/turf/simulated/floor/plating,/area/submap/SupplyDrop2) -"d" = (/obj/structure/girder/displaced,/turf/template_noop,/area/submap/SupplyDrop2) -"e" = (/turf/simulated/wall/titanium,/area/submap/SupplyDrop2) -"f" = (/turf/simulated/floor/reinforced,/area/submap/SupplyDrop2) -"g" = (/obj/structure/loot_pile/maint/junk,/turf/simulated/floor/reinforced,/area/submap/SupplyDrop2) -"h" = (/obj/item/device/flashlight,/turf/simulated/floor/reinforced,/area/submap/SupplyDrop2) -"i" = (/obj/structure/loot_pile/maint/technical,/obj/item/device/gps/internal/poi,/obj/item/weapon/cell/device/weapon/empty,/obj/item/weapon/cell/device/weapon/empty,/turf/simulated/floor/plating,/area/submap/SupplyDrop2) -"j" = (/obj/structure/loot_pile/maint/technical,/turf/simulated/floor/reinforced,/area/submap/SupplyDrop2) -"k" = (/obj/structure/girder,/turf/template_noop,/area/submap/SupplyDrop2) -"l" = (/obj/structure/loot_pile/maint/trash,/turf/simulated/floor/reinforced,/area/submap/SupplyDrop2) -"m" = (/obj/structure/loot_pile/maint/trash,/turf/simulated/floor/plating,/area/submap/SupplyDrop2) +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/template_noop, +/area/template_noop) +"b" = ( +/turf/template_noop, +/area/submap/SupplyDrop2) +"d" = ( +/obj/structure/girder/displaced, +/turf/template_noop, +/area/submap/SupplyDrop2) +"e" = ( +/turf/simulated/wall/titanium, +/area/submap/SupplyDrop2) +"f" = ( +/turf/simulated/floor/reinforced/virgo3b, +/area/submap/SupplyDrop2) +"g" = ( +/obj/structure/loot_pile/maint/junk, +/turf/simulated/floor/reinforced/virgo3b, +/area/submap/SupplyDrop2) +"h" = ( +/obj/item/device/flashlight, +/turf/simulated/floor/reinforced/virgo3b, +/area/submap/SupplyDrop2) +"i" = ( +/obj/structure/loot_pile/maint/technical, +/obj/item/device/gps/internal/poi, +/obj/item/weapon/cell/device/weapon/empty, +/obj/item/weapon/cell/device/weapon/empty, +/turf/simulated/floor/reinforced/virgo3b, +/area/submap/SupplyDrop2) +"j" = ( +/obj/structure/loot_pile/maint/technical, +/turf/simulated/floor/reinforced/virgo3b, +/area/submap/SupplyDrop2) +"k" = ( +/obj/structure/girder, +/turf/template_noop, +/area/submap/SupplyDrop2) +"m" = ( +/obj/structure/loot_pile/maint/trash, +/turf/simulated/floor/reinforced/virgo3b, +/area/submap/SupplyDrop2) (1,1,1) = {" -aabbcdaaa -abbefbbbb -bbeegeebb -bffhijfff -bbekcekbb -bbbkldbba -abbbmbbba +a +a +b +b +b +b +a +"} +(2,1,1) = {" +a +b +b +f +b +b +b +"} +(3,1,1) = {" +b +b +e +f +e +b +b +"} +(4,1,1) = {" +b +e +e +h +k +k +b +"} +(5,1,1) = {" +f +f +g +i +f +m +m +"} +(6,1,1) = {" +d +b +e +j +e +d +b +"} +(7,1,1) = {" +a +b +e +f +k +b +b +"} +(8,1,1) = {" +a +b +b +f +b +b +b +"} +(9,1,1) = {" +a +b +b +f +b +a +a "} diff --git a/maps/submaps/surface_submaps/plains/Thiefc_vr.dmm b/maps/submaps/surface_submaps/plains/Thiefc_vr.dmm index 412b6c8739..599d352155 100644 --- a/maps/submaps/surface_submaps/plains/Thiefc_vr.dmm +++ b/maps/submaps/surface_submaps/plains/Thiefc_vr.dmm @@ -15,7 +15,7 @@ /obj/item/weapon/ore/coal, /obj/item/weapon/ore/coal, /obj/item/weapon/ore/coal, -/turf/simulated/floor/outdoors/dirt{ +/turf/simulated/floor/outdoors/dirt/virgo3b{ outdoors = 0 }, /area/submap/Thiefc) @@ -24,13 +24,13 @@ /obj/item/weapon/extinguisher, /obj/item/weapon/extinguisher, /obj/item/weapon/extinguisher, -/turf/simulated/floor/outdoors/dirt{ +/turf/simulated/floor/outdoors/dirt/virgo3b{ outdoors = 0 }, /area/submap/Thiefc) "f" = ( /obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor/outdoors/dirt{ +/turf/simulated/floor/outdoors/dirt/virgo3b{ outdoors = 0 }, /area/submap/Thiefc) @@ -43,12 +43,12 @@ /obj/item/weapon/ore/coal, /obj/item/weapon/ore/coal, /obj/item/weapon/ore/coal, -/turf/simulated/floor/outdoors/dirt{ +/turf/simulated/floor/outdoors/dirt/virgo3b{ outdoors = 0 }, /area/submap/Thiefc) "h" = ( -/turf/simulated/floor/outdoors/dirt{ +/turf/simulated/floor/outdoors/dirt/virgo3b{ outdoors = 0 }, /area/submap/Thiefc) @@ -57,7 +57,7 @@ /obj/item/weapon/lipstick, /obj/item/weapon/lipstick/black, /obj/item/weapon/lipstick/random, -/turf/simulated/floor/outdoors/dirt{ +/turf/simulated/floor/outdoors/dirt/virgo3b{ outdoors = 0 }, /area/submap/Thiefc) @@ -65,7 +65,7 @@ /obj/structure/table/steel, /obj/item/weapon/beartrap, /obj/item/device/survivalcapsule, -/turf/simulated/floor/outdoors/dirt{ +/turf/simulated/floor/outdoors/dirt/virgo3b{ outdoors = 0 }, /area/submap/Thiefc) @@ -75,7 +75,7 @@ /obj/random/firstaid, /obj/random/firstaid, /obj/random/firstaid, -/turf/simulated/floor/outdoors/dirt{ +/turf/simulated/floor/outdoors/dirt/virgo3b{ outdoors = 0 }, /area/submap/Thiefc) @@ -84,7 +84,7 @@ /obj/item/device/nif, /obj/item/device/nif/bad, /obj/item/device/nif/bad, -/turf/simulated/floor/outdoors/dirt{ +/turf/simulated/floor/outdoors/dirt/virgo3b{ outdoors = 0 }, /area/submap/Thiefc) @@ -94,7 +94,7 @@ desc = "This is some bullshit. First chance we got to knick something that looks half decent turns out to be mostly junk. And now we're getting calls that the other stash we've got has got a spider problem. Fuck this, Between the shitty weather, The pissed of bugs, And now apparently some NT goon running around in the area there's hardly enough reason to stick around. I'm telling Carl I'm out tommorow."; name = "Note" }, -/turf/simulated/floor/outdoors/dirt{ +/turf/simulated/floor/outdoors/dirt/virgo3b{ outdoors = 0 }, /area/submap/Thiefc) @@ -102,7 +102,7 @@ /obj/vehicle/train/trolley, /obj/random/multiple/voidsuit, /obj/random/multiple/voidsuit, -/turf/simulated/floor/outdoors/dirt{ +/turf/simulated/floor/outdoors/dirt/virgo3b{ outdoors = 0 }, /area/submap/Thiefc) @@ -113,26 +113,26 @@ /obj/item/weapon/cell/device/weapon, /obj/item/weapon/cell/device/weapon, /obj/item/device/perfect_tele/one_beacon, -/turf/simulated/floor/outdoors/dirt{ +/turf/simulated/floor/outdoors/dirt/virgo3b{ outdoors = 0 }, /area/submap/Thiefc) "p" = ( /obj/structure/closet/crate, /obj/item/weapon/storage/box/practiceshells, -/turf/simulated/floor/outdoors/dirt{ +/turf/simulated/floor/outdoors/dirt/virgo3b{ outdoors = 0 }, /area/submap/Thiefc) "B" = ( /mob/living/simple_mob/animal/giant_spider/phorogenic, -/turf/simulated/floor/outdoors/dirt{ +/turf/simulated/floor/outdoors/dirt/virgo3b{ outdoors = 0 }, /area/submap/Thiefc) "P" = ( /obj/machinery/door/airlock, -/turf/simulated/floor/outdoors/dirt{ +/turf/simulated/floor/outdoors/dirt/virgo3b{ outdoors = 0 }, /area/submap/Thiefc) diff --git a/maps/submaps/surface_submaps/plains/VRDen.dmm b/maps/submaps/surface_submaps/plains/VRDen.dmm index a5340c7461..c5eb9884b7 100644 --- a/maps/submaps/surface_submaps/plains/VRDen.dmm +++ b/maps/submaps/surface_submaps/plains/VRDen.dmm @@ -1,72 +1,712 @@ -"a" = (/turf/template_noop,/area/template_noop) -"b" = (/turf/template_noop,/area/submap/VRDen) -"c" = (/turf/simulated/wall,/area/submap/VRDen) -"d" = (/obj/structure/extinguisher_cabinet{pixel_y = 28},/turf/simulated/floor/tiled/steel,/area/submap/VRDen) -"e" = (/obj/machinery/power/apc{dir = 1; name = "north bump"; operating = 0; pixel_x = 0; pixel_y = 24},/obj/effect/decal/cleanable/dirt,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor,/area/submap/VRDen) -"f" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/light{icon_state = "tube1"; dir = 1},/turf/simulated/floor/tiled/steel,/area/submap/VRDen) -"g" = (/obj/machinery/power/port_gen/pacman,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/turf/simulated/floor,/area/submap/VRDen) -"h" = (/obj/effect/decal/cleanable/dirt,/obj/fiftyspawner/phoron,/turf/simulated/floor,/area/submap/VRDen) -"i" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/item/integrated_circuit/memory,/obj/item/weapon/paper{info = "To: Whoever reads it\[br]From: Simulant\[br]Went away to grab some spare parts, won't return for couple weeks. Can't support larger scale sims without machines I lost yesterday. Please don't touch my stuff, while I'm gone."; name = "note"},/turf/simulated/floor/tiled/steel,/area/submap/VRDen) -"j" = (/turf/simulated/floor,/area/submap/VRDen) -"k" = (/obj/effect/decal/cleanable/blood/oil,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/steel,/area/submap/VRDen) -"l" = (/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/steel_dirty,/area/submap/VRDen) -"m" = (/obj/machinery/power/smes/buildable/point_of_interest,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/tiled/steel_dirty,/area/submap/VRDen) -"n" = (/obj/effect/decal/cleanable/blood/oil,/turf/simulated/floor/greengrid,/area/submap/VRDen) -"o" = (/obj/machinery/vr_sleeper,/turf/simulated/floor/greengrid,/area/submap/VRDen) -"p" = (/obj/structure/cryofeed,/turf/simulated/floor/greengrid,/area/submap/VRDen) -"q" = (/obj/effect/decal/cleanable/dirt,/obj/structure/bed/chair{dir = 4},/obj/machinery/light/small{brightness_color = "#DA0205"; brightness_power = 1; brightness_range = 5; dir = 8},/turf/simulated/floor/tiled/steel,/area/submap/VRDen) -"r" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/item/weapon/paper{info = "your maps suck"; name = "dissatisfied letter"},/turf/simulated/floor/tiled/steel_dirty,/area/submap/VRDen) -"s" = (/obj/effect/decal/cleanable/dirt,/obj/item/integrated_circuit/logic/binary,/turf/simulated/floor/tiled/steel,/area/submap/VRDen) -"t" = (/turf/simulated/floor/tiled/steel,/area/submap/VRDen) -"u" = (/turf/simulated/floor/tiled/steel_dirty,/area/submap/VRDen) -"v" = (/obj/structure/loot_pile/maint/technical,/turf/simulated/floor/tiled/steel,/area/submap/VRDen) -"w" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/greengrid,/area/submap/VRDen) -"x" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/steel_dirty,/area/submap/VRDen) -"y" = (/obj/structure/table/standard{name = "plastic table frame"},/obj/item/broken_device/random,/turf/simulated/floor/tiled/steel,/area/submap/VRDen) -"z" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/steel,/area/submap/VRDen) -"A" = (/turf/simulated/floor/greengrid,/area/submap/VRDen) -"B" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/greengrid,/area/submap/VRDen) -"C" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/submap/VRDen) -"D" = (/obj/effect/decal/cleanable/dirt,/obj/item/frame,/obj/item/integrated_circuit/logic/unary/not,/turf/simulated/floor/tiled/steel,/area/submap/VRDen) -"E" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/telecomms/server{name = "Server"},/obj/item/device/gps/internal/poi,/turf/simulated/floor/tiled/steel,/area/submap/VRDen) -"F" = (/obj/item/integrated_circuit/logic/binary,/turf/simulated/floor/tiled/steel,/area/submap/VRDen) -"G" = (/obj/machinery/light/small/flicker,/turf/simulated/floor/tiled/steel_dirty,/area/submap/VRDen) -"H" = (/obj/machinery/telecomms/processor,/turf/simulated/floor/tiled/steel,/area/submap/VRDen) -"I" = (/obj/effect/decal/cleanable/blood/oil/streak,/turf/simulated/floor/tiled/steel,/area/submap/VRDen) -"J" = (/obj/machinery/door/airlock/glass,/turf/simulated/floor/tiled/steel,/area/submap/VRDen) -"K" = (/obj/effect/decal/remains/posi,/obj/item/weapon/paper{info = "pain sim on your hardware is top-notch, 10/10, would be burned alive again"; name = "satisfied letter"},/obj/machinery/light/small,/turf/simulated/floor,/area/submap/VRDen) -"L" = (/obj/structure/closet/toolcloset,/turf/simulated/floor,/area/submap/VRDen) -"M" = (/obj/item/integrated_circuit/smart/basic_pathfinder,/turf/simulated/floor/tiled/steel_dirty,/area/submap/VRDen) -"N" = (/obj/structure/girder/displaced,/turf/simulated/floor/tiled/steel_dirty,/area/submap/VRDen) -"O" = (/obj/structure/loot_pile/maint/technical,/turf/simulated/floor,/area/submap/VRDen) -"P" = (/obj/effect/decal/cleanable/blood/oil,/turf/simulated/floor/tiled/steel,/area/submap/VRDen) -"Q" = (/obj/machinery/light/small{dir = 4; pixel_y = 0},/turf/simulated/floor/tiled/steel_dirty,/area/submap/VRDen) -"R" = (/obj/structure/loot_pile/maint/junk,/turf/template_noop,/area/submap/VRDen) -"S" = (/obj/machinery/door/airlock,/turf/simulated/floor,/area/submap/VRDen) -"T" = (/obj/structure/toilet{dir = 8},/obj/item/device/integrated_electronics/debugger,/obj/machinery/light{icon_state = "tube1"; dir = 1},/turf/simulated/floor,/area/submap/VRDen) -"U" = (/obj/machinery/door/airlock,/turf/simulated/floor/tiled/steel_dirty,/area/submap/VRDen) -"V" = (/obj/effect/decal/remains/robot,/turf/template_noop,/area/submap/VRDen) -"W" = (/obj/machinery/light{icon_state = "tube1"; dir = 1},/turf/template_noop,/area/submap/VRDen) +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/template_noop, +/area/template_noop) +"b" = ( +/turf/template_noop, +/area/submap/VRDen) +"c" = ( +/turf/simulated/wall, +/area/submap/VRDen) +"d" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 28 + }, +/turf/simulated/floor/tiled/virgo3b, +/area/submap/VRDen) +"e" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + operating = 0; + pixel_y = 24 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/virgo3b, +/area/submap/VRDen) +"f" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/virgo3b, +/area/submap/VRDen) +"g" = ( +/obj/machinery/power/port_gen/pacman, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/virgo3b, +/area/submap/VRDen) +"h" = ( +/obj/effect/decal/cleanable/dirt, +/obj/fiftyspawner/phoron, +/turf/simulated/floor/tiled/virgo3b, +/area/submap/VRDen) +"i" = ( +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/obj/item/integrated_circuit/memory, +/obj/item/weapon/paper{ + info = "To: Whoever reads it\[br]From: Simulant\[br]Went away to grab some spare parts, won't return for couple weeks. Can't support larger scale sims without machines I lost yesterday. Please don't touch my stuff, while I'm gone."; + name = "note" + }, +/turf/simulated/floor/tiled/virgo3b, +/area/submap/VRDen) +"k" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/virgo3b, +/area/submap/VRDen) +"l" = ( +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/virgo3b, +/area/submap/VRDen) +"m" = ( +/obj/machinery/power/smes/buildable/point_of_interest, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/virgo3b, +/area/submap/VRDen) +"n" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/simulated/floor/greengrid/virgo3b, +/area/submap/VRDen) +"o" = ( +/obj/machinery/vr_sleeper, +/turf/simulated/floor/greengrid/virgo3b, +/area/submap/VRDen) +"p" = ( +/obj/structure/cryofeed, +/turf/simulated/floor/greengrid/virgo3b, +/area/submap/VRDen) +"q" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/machinery/light/small{ + brightness_color = "#DA0205"; + brightness_power = 1; + brightness_range = 5; + dir = 8 + }, +/turf/simulated/floor/tiled/virgo3b, +/area/submap/VRDen) +"r" = ( +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/obj/item/weapon/paper{ + info = "your maps suck"; + name = "dissatisfied letter" + }, +/turf/simulated/floor/tiled/virgo3b, +/area/submap/VRDen) +"s" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/integrated_circuit/logic/binary, +/turf/simulated/floor/tiled/virgo3b, +/area/submap/VRDen) +"t" = ( +/turf/simulated/floor/tiled/steel, +/area/submap/VRDen) +"u" = ( +/turf/simulated/floor/tiled/virgo3b, +/area/submap/VRDen) +"w" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/greengrid/virgo3b, +/area/submap/VRDen) +"y" = ( +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/obj/item/broken_device/random, +/turf/simulated/floor/tiled/virgo3b, +/area/submap/VRDen) +"z" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/steel, +/area/submap/VRDen) +"A" = ( +/turf/simulated/floor/greengrid/virgo3b, +/area/submap/VRDen) +"B" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/greengrid/virgo3b, +/area/submap/VRDen) +"C" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/virgo3b, +/area/submap/VRDen) +"D" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/frame, +/obj/item/integrated_circuit/logic/unary/not, +/turf/simulated/floor/tiled/virgo3b, +/area/submap/VRDen) +"E" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/telecomms/server{ + name = "Server" + }, +/obj/item/device/gps/internal/poi, +/turf/simulated/floor/tiled/virgo3b, +/area/submap/VRDen) +"F" = ( +/obj/item/integrated_circuit/logic/binary, +/turf/simulated/floor/tiled/virgo3b, +/area/submap/VRDen) +"G" = ( +/obj/machinery/light/small/flicker, +/turf/simulated/floor/tiled/virgo3b, +/area/submap/VRDen) +"H" = ( +/obj/machinery/telecomms/processor, +/turf/simulated/floor/tiled/virgo3b, +/area/submap/VRDen) +"I" = ( +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/simulated/floor/tiled/virgo3b, +/area/submap/VRDen) +"J" = ( +/obj/machinery/door/airlock/glass, +/turf/simulated/floor/tiled/steel, +/area/submap/VRDen) +"K" = ( +/obj/effect/decal/remains/posi, +/obj/item/weapon/paper{ + info = "pain sim on your hardware is top-notch, 10/10, would be burned alive again"; + name = "satisfied letter" + }, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/virgo3b, +/area/submap/VRDen) +"L" = ( +/obj/structure/closet/toolcloset, +/turf/simulated/floor/tiled/virgo3b, +/area/submap/VRDen) +"M" = ( +/obj/item/integrated_circuit/smart/basic_pathfinder, +/turf/simulated/floor/tiled/steel_dirty, +/area/submap/VRDen) +"N" = ( +/obj/structure/girder/displaced, +/turf/simulated/floor/tiled/virgo3b, +/area/submap/VRDen) +"O" = ( +/obj/structure/loot_pile/maint/technical, +/turf/simulated/floor/tiled/virgo3b, +/area/submap/VRDen) +"P" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/simulated/floor/tiled/virgo3b, +/area/submap/VRDen) +"Q" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/virgo3b, +/area/submap/VRDen) +"R" = ( +/obj/structure/loot_pile/maint/junk, +/turf/template_noop, +/area/submap/VRDen) +"T" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/item/device/integrated_electronics/debugger, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/virgo3b, +/area/submap/VRDen) +"U" = ( +/obj/machinery/door/airlock, +/turf/simulated/floor/tiled/virgo3b, +/area/submap/VRDen) +"V" = ( +/obj/effect/decal/remains/robot, +/turf/template_noop, +/area/submap/VRDen) +"W" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/template_noop, +/area/submap/VRDen) (1,1,1) = {" -aaaaaaaaaaaaaaaaaaaa -abbbbbbbbbbbbbbbbbba -abbbbbbbbbbbbbbbbbba -abbbbbccccccccbbbbba -abbbcccdefgcccccbbba -abbbchijklmcnopcbbba -abbbcqrstuvcwopcbbba -abbbcxyzutuzAopcbbba -abbbczxtuxttBopcbbba -abbbcCuDuuEcAopcbbba -abbbcjFtGuHcAopcbbba -abbbcIcccJccwopcbbba -abbbcKcLttMNBopcbbba -abbbcccOPQccccccbbba -abbbbRccjCSTccbbbbba -abbbbbbccUcccbbVbbba -abbbbbbbWbWbbbbbbbba -abbbbbbbbbbbbbbbbbba -abbbbbbbbbbbbbbbbbba -aaaaaaaaaaaaaaaaaaaa +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(2,1,1) = {" +a +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +a +"} +(3,1,1) = {" +a +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +a +"} +(4,1,1) = {" +a +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +a +"} +(5,1,1) = {" +a +b +b +b +c +c +c +c +c +c +c +c +c +c +b +b +b +b +b +a +"} +(6,1,1) = {" +a +b +b +b +c +h +q +C +C +C +u +I +K +c +R +b +b +b +b +a +"} +(7,1,1) = {" +a +b +b +c +c +i +r +y +C +u +F +c +c +c +c +b +b +b +b +a +"} +(8,1,1) = {" +a +b +b +c +d +u +s +C +u +D +u +c +L +O +c +c +b +b +b +a +"} +(9,1,1) = {" +a +b +b +c +e +k +u +u +u +u +G +c +u +P +u +c +W +b +b +a +"} +(10,1,1) = {" +a +b +b +c +f +l +u +u +C +u +u +J +u +Q +C +U +b +b +b +a +"} +(11,1,1) = {" +a +b +b +c +g +m +O +u +u +E +H +c +M +c +U +c +W +b +b +a +"} +(12,1,1) = {" +a +b +b +c +c +c +c +z +t +c +c +c +N +c +T +c +b +b +b +a +"} +(13,1,1) = {" +a +b +b +c +c +n +w +A +B +A +A +w +B +c +c +c +b +b +b +a +"} +(14,1,1) = {" +a +b +b +c +c +o +o +o +o +o +o +o +o +c +c +b +b +b +b +a +"} +(15,1,1) = {" +a +b +b +b +c +p +p +p +p +p +p +p +p +c +b +b +b +b +b +a +"} +(16,1,1) = {" +a +b +b +b +c +c +c +c +c +c +c +c +c +c +b +V +b +b +b +a +"} +(17,1,1) = {" +a +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +a +"} +(18,1,1) = {" +a +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +a +"} +(19,1,1) = {" +a +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +a +"} +(20,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a "} diff --git a/maps/submaps/surface_submaps/plains/bonfire.dmm b/maps/submaps/surface_submaps/plains/bonfire.dmm index c2789d46ee..de4bb23141 100644 --- a/maps/submaps/surface_submaps/plains/bonfire.dmm +++ b/maps/submaps/surface_submaps/plains/bonfire.dmm @@ -1,23 +1,160 @@ -"a" = (/turf/template_noop,/area/submap/bonfire) -"b" = (/obj/item/stack/material/log/sif,/turf/template_noop,/area/submap/bonfire) -"c" = (/turf/simulated/floor/outdoors/dirt,/area/submap/bonfire) -"d" = (/obj/item/weapon/flame/lighter/random,/turf/template_noop,/area/submap/bonfire) -"e" = (/obj/item/weapon/reagent_containers/food/drinks/bottle/orangejuice,/turf/simulated/floor/outdoors/dirt,/area/submap/bonfire) -"f" = (/obj/item/weapon/stool/padded,/turf/simulated/floor/outdoors/dirt,/area/submap/bonfire) -"g" = (/obj/structure/bonfire/sifwood,/turf/simulated/floor/outdoors/dirt,/area/submap/bonfire) -"h" = (/obj/item/weapon/material/knife/machete,/turf/simulated/floor/outdoors/dirt,/area/submap/bonfire) -"i" = (/obj/item/clothing/head/helmet/material/makeshift,/turf/simulated/floor/outdoors/dirt,/area/submap/bonfire) -"j" = (/obj/item/stack/material/log/sif,/turf/simulated/floor/outdoors/dirt,/area/submap/bonfire) +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/template_noop, +/area/submap/bonfire) +"b" = ( +/obj/item/stack/material/log/sif, +/turf/template_noop, +/area/submap/bonfire) +"c" = ( +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/bonfire) +"d" = ( +/obj/item/weapon/flame/lighter/random, +/turf/template_noop, +/area/submap/bonfire) +"e" = ( +/obj/item/weapon/reagent_containers/food/drinks/bottle/orangejuice, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/bonfire) +"f" = ( +/obj/item/weapon/stool/padded, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/bonfire) +"g" = ( +/obj/structure/bonfire/sifwood, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/bonfire) +"h" = ( +/obj/item/weapon/material/knife/machete, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/bonfire) +"i" = ( +/obj/item/clothing/head/helmet/material/makeshift, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/bonfire) +"j" = ( +/obj/item/stack/material/log/sif, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/bonfire) (1,1,1) = {" -aaaaaaaaaa -aaaaaaaaaa -aabaaaaaaa -aaaacdaaaa -aaaefcaaaa -aaccghaaaa -aaaicjcaaa -aabcaaaaaa -aaaaaaaaaa -aaaaaaaaaa +a +a +a +a +a +a +a +a +a +a +"} +(2,1,1) = {" +a +a +a +a +a +a +a +a +a +a +"} +(3,1,1) = {" +a +a +b +a +a +c +a +b +a +a +"} +(4,1,1) = {" +a +a +a +a +e +c +i +c +a +a +"} +(5,1,1) = {" +a +a +a +c +f +g +c +a +a +a +"} +(6,1,1) = {" +a +a +a +d +c +h +j +a +a +a +"} +(7,1,1) = {" +a +a +a +a +a +a +c +a +a +a +"} +(8,1,1) = {" +a +a +a +a +a +a +a +a +a +a +"} +(9,1,1) = {" +a +a +a +a +a +a +a +a +a +a +"} +(10,1,1) = {" +a +a +a +a +a +a +a +a +a +a "} diff --git a/maps/submaps/surface_submaps/plains/camp1.dmm b/maps/submaps/surface_submaps/plains/camp1.dmm index 08263431ad..8fefe80261 100644 --- a/maps/submaps/surface_submaps/plains/camp1.dmm +++ b/maps/submaps/surface_submaps/plains/camp1.dmm @@ -1,28 +1,199 @@ -"a" = (/turf/template_noop,/area/template_noop) -"b" = (/turf/simulated/wall/log_sif,/area/submap/camp1) -"c" = (/obj/structure/grille/rustic,/obj/structure/window/reinforced/full,/turf/simulated/floor/plating,/area/submap/camp1) -"d" = (/obj/structure/bed/padded,/turf/simulated/floor/outdoors/dirt{outdoors = 0},/area/submap/camp1) -"e" = (/obj/item/device/flashlight/lantern,/turf/simulated/floor/outdoors/dirt{outdoors = 0},/area/submap/camp1) -"f" = (/turf/simulated/floor/outdoors/dirt{outdoors = 0},/area/submap/camp1) -"g" = (/obj/machinery/space_heater,/turf/simulated/floor/outdoors/dirt{outdoors = 0},/area/submap/camp1) -"h" = (/obj/structure/simple_door/sifwood,/turf/simulated/floor/outdoors/dirt{outdoors = 0},/area/submap/camp1) -"i" = (/obj/structure/table/rack,/obj/item/weapon/gun/launcher/crossbow,/obj/item/stack/rods{amount = 17},/turf/simulated/floor/outdoors/dirt{outdoors = 0},/area/submap/camp1) -"j" = (/obj/item/stack/material/log/sif{amount = 25},/turf/template_noop,/area/template_noop) -"k" = (/obj/structure/table/bench/wooden,/turf/simulated/floor/outdoors/dirt,/area/submap/camp1) -"l" = (/turf/simulated/floor/outdoors/dirt,/area/submap/camp1) -"m" = (/obj/item/weapon/material/knife/machete/hatchet,/turf/template_noop,/area/template_noop) -"n" = (/obj/structure/bonfire/sifwood,/turf/simulated/floor/outdoors/dirt,/area/submap/camp1) -"o" = (/obj/item/weapon/flame/lighter,/turf/simulated/floor/outdoors/dirt,/area/submap/camp1) +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/template_noop, +/area/template_noop) +"b" = ( +/turf/simulated/wall/log_sif, +/area/submap/camp1) +"c" = ( +/obj/structure/grille/rustic, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/outdoors/dirt/virgo3b{ + outdoors = 0 + }, +/area/submap/camp1) +"d" = ( +/obj/structure/bed/padded, +/turf/simulated/floor/outdoors/dirt/virgo3b{ + outdoors = 0 + }, +/area/submap/camp1) +"e" = ( +/obj/item/device/flashlight/lantern, +/turf/simulated/floor/outdoors/dirt/virgo3b{ + outdoors = 0 + }, +/area/submap/camp1) +"f" = ( +/turf/simulated/floor/outdoors/dirt/virgo3b{ + outdoors = 0 + }, +/area/submap/camp1) +"g" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/outdoors/dirt/virgo3b{ + outdoors = 0 + }, +/area/submap/camp1) +"h" = ( +/obj/structure/simple_door/sifwood, +/turf/simulated/floor/outdoors/dirt/virgo3b{ + outdoors = 0 + }, +/area/submap/camp1) +"i" = ( +/obj/structure/table/rack, +/obj/item/weapon/gun/launcher/crossbow, +/obj/item/stack/rods{ + amount = 17 + }, +/turf/simulated/floor/outdoors/dirt/virgo3b{ + outdoors = 0 + }, +/area/submap/camp1) +"j" = ( +/obj/item/stack/material/log/sif{ + amount = 25 + }, +/turf/template_noop, +/area/template_noop) +"k" = ( +/obj/structure/table/bench/wooden, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/camp1) +"l" = ( +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/camp1) +"m" = ( +/obj/item/weapon/material/knife/machete/hatchet, +/turf/template_noop, +/area/template_noop) +"n" = ( +/obj/structure/bonfire/sifwood, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/camp1) +"o" = ( +/obj/item/weapon/flame/lighter, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/camp1) (1,1,1) = {" -abbbcbbbaa -abddeddbaa -acfffffcaa -abgbhbibaa -abbbfbbbaa -aaabhbjaaa -aaklllkmaa -aaklnlkaaa -aaklllkaaa -aaaollaaaa +a +a +a +a +a +a +a +a +a +a +"} +(2,1,1) = {" +b +b +c +b +b +a +a +a +a +a +"} +(3,1,1) = {" +b +d +f +g +b +a +k +k +k +a +"} +(4,1,1) = {" +b +d +f +b +b +b +l +l +l +o +"} +(5,1,1) = {" +c +e +f +h +f +h +l +n +l +l +"} +(6,1,1) = {" +b +d +f +b +b +b +l +l +l +l +"} +(7,1,1) = {" +b +d +f +i +b +j +k +k +k +a +"} +(8,1,1) = {" +b +b +c +b +b +a +m +a +a +a +"} +(9,1,1) = {" +a +a +a +a +a +a +a +a +a +a +"} +(10,1,1) = {" +a +a +a +a +a +a +a +a +a +a "} diff --git a/maps/submaps/surface_submaps/plains/camp1_vr.dmm b/maps/submaps/surface_submaps/plains/camp1_vr.dmm index 4a7c740be5..498b5fae0a 100644 --- a/maps/submaps/surface_submaps/plains/camp1_vr.dmm +++ b/maps/submaps/surface_submaps/plains/camp1_vr.dmm @@ -8,34 +8,36 @@ "c" = ( /obj/structure/grille/rustic, /obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, +/turf/simulated/floor/outdoors/dirt/virgo3b{ + outdoors = 0 + }, /area/submap/camp1) "d" = ( /obj/structure/bed/padded, -/turf/simulated/floor/outdoors/dirt{ +/turf/simulated/floor/outdoors/dirt/virgo3b{ outdoors = 0 }, /area/submap/camp1) "e" = ( /obj/item/device/flashlight/lantern, -/turf/simulated/floor/outdoors/dirt{ +/turf/simulated/floor/outdoors/dirt/virgo3b{ outdoors = 0 }, /area/submap/camp1) "f" = ( -/turf/simulated/floor/outdoors/dirt{ +/turf/simulated/floor/outdoors/dirt/virgo3b{ outdoors = 0 }, /area/submap/camp1) "g" = ( /obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary/tram, -/turf/simulated/floor/outdoors/dirt{ +/turf/simulated/floor/outdoors/dirt/virgo3b{ outdoors = 0 }, /area/submap/camp1) "h" = ( /obj/structure/simple_door/sifwood, -/turf/simulated/floor/outdoors/dirt{ +/turf/simulated/floor/outdoors/dirt/virgo3b{ outdoors = 0 }, /area/submap/camp1) @@ -45,7 +47,7 @@ /obj/item/stack/rods{ amount = 17 }, -/turf/simulated/floor/outdoors/dirt{ +/turf/simulated/floor/outdoors/dirt/virgo3b{ outdoors = 0 }, /area/submap/camp1) @@ -57,10 +59,10 @@ /area/template_noop) "k" = ( /obj/structure/table/bench/wooden, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/camp1) "l" = ( -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/camp1) "m" = ( /obj/item/weapon/material/knife/machete/hatchet, @@ -68,11 +70,11 @@ /area/template_noop) "n" = ( /obj/item/weapon/flame/lighter, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/camp1) "y" = ( /obj/machinery/portable_atmospherics/canister/air, -/turf/simulated/floor/outdoors/dirt{ +/turf/simulated/floor/outdoors/dirt/virgo3b{ outdoors = 0 }, /area/submap/camp1) diff --git a/maps/submaps/surface_submaps/plains/chemspill1_vr.dmm b/maps/submaps/surface_submaps/plains/chemspill1_vr.dmm index 0f94d96d3f..628214ca0b 100644 --- a/maps/submaps/surface_submaps/plains/chemspill1_vr.dmm +++ b/maps/submaps/surface_submaps/plains/chemspill1_vr.dmm @@ -3,42 +3,42 @@ /turf/template_noop, /area/template_noop) "b" = ( -/turf/simulated/floor/outdoors/snow, +/turf/simulated/floor/outdoors/snow/virgo3b, /area/template_noop) "e" = ( -/turf/simulated/floor/outdoors/snow, +/turf/simulated/floor/outdoors/snow/virgo3b, /area/submap/ChemSpill1) "f" = ( /obj/effect/decal/remains/deer, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/ChemSpill1) "g" = ( -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/ChemSpill1) "h" = ( -/turf/simulated/floor/outdoors/mud, +/turf/simulated/floor/outdoors/mud/virgo3b, /area/submap/ChemSpill1) "i" = ( -/turf/simulated/floor/water/contaminated, +/turf/simulated/floor/water/contaminated/virgo3b, /area/submap/ChemSpill1) "j" = ( /obj/structure/prop/poicanister, -/turf/simulated/floor/water/contaminated, +/turf/simulated/floor/water/contaminated/virgo3b, /area/submap/ChemSpill1) "k" = ( /obj/effect/decal/remains/mouse, -/turf/simulated/floor/water/contaminated, +/turf/simulated/floor/water/contaminated/virgo3b, /area/submap/ChemSpill1) "l" = ( -/turf/simulated/floor/outdoors/rocks, +/turf/simulated/floor/outdoors/rocks/virgo3b, /area/submap/ChemSpill1) "m" = ( /obj/effect/decal/remains/ribcage, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/ChemSpill1) "n" = ( /obj/effect/decal/remains/lizard, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/ChemSpill1) (1,1,1) = {" diff --git a/maps/submaps/surface_submaps/plains/construction1.dmm b/maps/submaps/surface_submaps/plains/construction1.dmm index 23577514ee..e04528b196 100644 --- a/maps/submaps/surface_submaps/plains/construction1.dmm +++ b/maps/submaps/surface_submaps/plains/construction1.dmm @@ -1,51 +1,414 @@ -"a" = (/turf/template_noop,/area/template_noop) -"b" = (/obj/structure/lattice,/turf/template_noop,/area/template_noop) -"c" = (/turf/simulated/floor/outdoors/rocks,/area/template_noop) -"d" = (/obj/structure/grille,/turf/simulated/floor/plating/external,/area/submap/construction1) -"e" = (/obj/structure/firedoor_assembly,/turf/simulated/floor/plating/external,/area/submap/construction1) -"f" = (/obj/structure/lattice,/turf/simulated/floor/outdoors/rocks,/area/template_noop) -"g" = (/turf/simulated/floor/plating/external,/area/submap/construction1) -"h" = (/obj/structure/firedoor_assembly,/obj/structure/grille,/turf/simulated/floor/plating/external,/area/submap/construction1) -"i" = (/obj/item/clothing/gloves/black,/turf/simulated/floor/outdoors/rocks,/area/template_noop) -"j" = (/turf/simulated/floor/tiled/external,/area/submap/construction1) -"k" = (/obj/item/weapon/tool/wrench,/turf/simulated/floor/plating/external,/area/submap/construction1) -"l" = (/turf/simulated/wall,/area/submap/construction1) -"m" = (/obj/structure/loot_pile/maint/technical,/turf/simulated/floor/plating/external,/area/submap/construction1) -"n" = (/obj/item/weapon/pickaxe/drill,/turf/simulated/floor/outdoors/rocks,/area/template_noop) -"o" = (/obj/structure/girder,/turf/simulated/floor/plating/external,/area/submap/construction1) -"p" = (/obj/item/clothing/head/hardhat,/turf/simulated/floor/plating/external,/area/submap/construction1) -"q" = (/obj/item/frame,/turf/simulated/floor/tiled/external,/area/submap/construction1) -"r" = (/obj/item/clothing/head/orangebandana,/turf/template_noop,/area/template_noop) -"s" = (/obj/item/clothing/head/welding/engie,/turf/simulated/floor/plating/external,/area/submap/construction1) -"t" = (/obj/structure/door_assembly/door_assembly_mai,/turf/simulated/floor/plating/external,/area/submap/construction1) -"u" = (/obj/item/weapon/storage/toolbox/electrical,/turf/simulated/floor/plating/external,/area/submap/construction1) -"v" = (/obj/item/weapon/airlock_electronics,/turf/simulated/floor/tiled/external,/area/submap/construction1) -"w" = (/obj/item/clothing/suit/storage/hazardvest,/turf/template_noop,/area/template_noop) -"x" = (/obj/structure/windoor_assembly,/turf/simulated/floor/tiled/external,/area/submap/construction1) -"y" = (/obj/item/weapon/storage/toolbox/mechanical,/turf/simulated/floor/plating/external,/area/submap/construction1) -"z" = (/obj/structure/loot_pile/maint/technical,/turf/simulated/floor/tiled/external,/area/submap/construction1) -"A" = (/obj/item/weapon/shovel,/turf/simulated/floor/plating/external,/area/submap/construction1) -"B" = (/obj/item/weapon/airlock_electronics,/turf/simulated/floor/plating/external,/area/submap/construction1) -"C" = (/obj/item/weapon/weldingtool/largetank,/turf/simulated/floor/tiled/external,/area/submap/construction1) -"D" = (/obj/item/weapon/tool/crowbar,/turf/simulated/floor/plating/external,/area/submap/construction1) -"E" = (/obj/item/clothing/glasses/welding,/turf/simulated/floor/plating/external,/area/submap/construction1) -"F" = (/obj/item/clothing/suit/storage/hazardvest,/turf/simulated/floor/plating/external,/area/submap/construction1) +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/template_noop, +/area/template_noop) +"b" = ( +/obj/structure/lattice, +/turf/template_noop, +/area/template_noop) +"c" = ( +/turf/simulated/floor/outdoors/rocks/virgo3b, +/area/template_noop) +"d" = ( +/obj/structure/grille, +/turf/simulated/floor/plating/external/virgo3b, +/area/submap/construction1) +"e" = ( +/obj/structure/firedoor_assembly, +/turf/simulated/floor/plating/external/virgo3b, +/area/submap/construction1) +"f" = ( +/obj/structure/lattice, +/turf/simulated/floor/outdoors/rocks/virgo3b, +/area/template_noop) +"g" = ( +/turf/simulated/floor/plating/external/virgo3b, +/area/submap/construction1) +"h" = ( +/obj/structure/firedoor_assembly, +/obj/structure/grille, +/turf/simulated/floor/plating/external/virgo3b, +/area/submap/construction1) +"i" = ( +/obj/item/clothing/gloves/black, +/turf/simulated/floor/outdoors/rocks/virgo3b, +/area/template_noop) +"j" = ( +/turf/simulated/floor/tiled/external/virgo3b, +/area/submap/construction1) +"k" = ( +/obj/item/weapon/tool/wrench, +/turf/simulated/floor/plating/external/virgo3b, +/area/submap/construction1) +"l" = ( +/turf/simulated/wall, +/area/submap/construction1) +"m" = ( +/obj/structure/loot_pile/maint/technical, +/turf/simulated/floor/plating/external/virgo3b, +/area/submap/construction1) +"n" = ( +/obj/item/weapon/pickaxe/drill, +/turf/simulated/floor/outdoors/rocks/virgo3b, +/area/template_noop) +"o" = ( +/obj/structure/girder, +/turf/simulated/floor/plating/external/virgo3b, +/area/submap/construction1) +"p" = ( +/obj/item/clothing/head/hardhat, +/turf/simulated/floor/plating/external/virgo3b, +/area/submap/construction1) +"q" = ( +/obj/item/frame, +/turf/simulated/floor/tiled/external/virgo3b, +/area/submap/construction1) +"r" = ( +/obj/item/clothing/head/orangebandana, +/turf/template_noop, +/area/template_noop) +"s" = ( +/obj/item/clothing/head/welding/engie, +/turf/simulated/floor/plating/external/virgo3b, +/area/submap/construction1) +"t" = ( +/obj/structure/door_assembly/door_assembly_mai, +/turf/simulated/floor/plating/external/virgo3b, +/area/submap/construction1) +"u" = ( +/obj/item/weapon/storage/toolbox/electrical, +/turf/simulated/floor/plating/external/virgo3b, +/area/submap/construction1) +"v" = ( +/obj/item/weapon/airlock_electronics, +/turf/simulated/floor/tiled/external/virgo3b, +/area/submap/construction1) +"w" = ( +/obj/item/clothing/suit/storage/hazardvest, +/turf/template_noop, +/area/template_noop) +"x" = ( +/obj/structure/windoor_assembly, +/turf/simulated/floor/tiled/external/virgo3b, +/area/submap/construction1) +"y" = ( +/obj/item/weapon/storage/toolbox/mechanical, +/turf/simulated/floor/plating/external/virgo3b, +/area/submap/construction1) +"z" = ( +/obj/structure/loot_pile/maint/technical, +/turf/simulated/floor/tiled/external/virgo3b, +/area/submap/construction1) +"A" = ( +/obj/item/weapon/shovel, +/turf/simulated/floor/plating/external/virgo3b, +/area/submap/construction1) +"B" = ( +/obj/item/weapon/airlock_electronics, +/turf/simulated/floor/plating/external/virgo3b, +/area/submap/construction1) +"C" = ( +/obj/item/weapon/weldingtool/largetank, +/turf/simulated/floor/tiled/external/virgo3b, +/area/submap/construction1) +"D" = ( +/obj/item/weapon/tool/crowbar, +/turf/simulated/floor/plating/external/virgo3b, +/area/submap/construction1) +"E" = ( +/obj/item/clothing/glasses/welding, +/turf/simulated/floor/plating/external/virgo3b, +/area/submap/construction1) +"F" = ( +/obj/item/clothing/suit/storage/hazardvest, +/turf/simulated/floor/plating/external/virgo3b, +/area/submap/construction1) (1,1,1) = {" -aaaaaaaaaaaaaaaa -aaaaaaaaaaaabaaa -aaaacdecffccfgba -aaaachgggficffaa -aaacchgjkfccccaa -aaccclmjgfcnccaa -aalloojjgpfccaaa -aalggljqgefccraa -aalsgtjjuffcaaaa -aalgglvjgffcwaaa -aalllllxlgfcaaaa -acyjjzjjjAfcaaaa -acgBjjjCggfcaaaa -acddDpggEgfcaaaa -aacccdeFfffaaaaa -aaaaaaaaaaaaaaaa +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(2,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +c +c +c +a +a +"} +(3,1,1) = {" +a +a +a +a +a +c +l +l +l +l +l +y +g +d +c +a +"} +(4,1,1) = {" +a +a +a +a +c +c +l +g +s +g +l +j +B +d +c +a +"} +(5,1,1) = {" +a +a +c +c +c +c +o +g +g +g +l +j +j +D +c +a +"} +(6,1,1) = {" +a +a +d +h +h +l +o +l +t +l +l +z +j +p +d +a +"} +(7,1,1) = {" +a +a +e +g +g +m +j +j +j +v +l +j +j +g +e +a +"} +(8,1,1) = {" +a +a +c +g +j +j +j +q +j +j +x +j +C +g +F +a +"} +(9,1,1) = {" +a +a +f +g +k +g +g +g +u +g +l +j +g +E +f +a +"} +(10,1,1) = {" +a +a +f +f +f +f +p +e +f +f +g +A +g +g +f +a +"} +(11,1,1) = {" +a +a +c +i +c +c +f +f +f +f +f +f +f +f +f +a +"} +(12,1,1) = {" +a +a +c +c +c +n +c +c +c +c +c +c +c +c +a +a +"} +(13,1,1) = {" +a +b +f +f +c +c +c +c +a +w +a +a +a +a +a +a +"} +(14,1,1) = {" +a +a +g +f +c +c +a +r +a +a +a +a +a +a +a +a +"} +(15,1,1) = {" +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(16,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a "} diff --git a/maps/submaps/surface_submaps/plains/dogbase.dmm b/maps/submaps/surface_submaps/plains/dogbase.dmm index 10ad93f5ef..5505dac01e 100644 --- a/maps/submaps/surface_submaps/plains/dogbase.dmm +++ b/maps/submaps/surface_submaps/plains/dogbase.dmm @@ -19,7 +19,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/DogBase) "ay" = ( /obj/structure/dogbed, @@ -27,7 +27,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/remains/tajaran, /obj/random/maintenance/medical, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/DogBase) "aF" = ( /obj/structure/sign/securearea, @@ -41,7 +41,7 @@ /obj/effect/decal/cleanable/dirt, /obj/item/weapon/bone, /obj/random/maintenance/security, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/DogBase) "bl" = ( /obj/machinery/light{ @@ -50,7 +50,7 @@ /obj/effect/floor_decal/industrial/danger{ dir = 1 }, -/turf/simulated/floor, +/turf/simulated/floor/plating/external/virgo3b, /area/submap/DogBase) "bw" = ( /obj/item/weapon/storage/belt/janitor, @@ -86,13 +86,12 @@ /obj/effect/floor_decal/borderfloor{ dir = 5 }, +/obj/machinery/vending/cola, /turf/simulated/floor/tiled/dark, /area/submap/DogBase) "eA" = ( -/obj/machinery/vending/cola, -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, +/obj/machinery/light, +/obj/effect/floor_decal/borderfloor, /turf/simulated/floor/tiled/dark, /area/submap/DogBase) "eI" = ( @@ -122,7 +121,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/random/maintenance/cargo, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/DogBase) "hl" = ( /obj/effect/floor_decal/borderfloor/corner, @@ -159,13 +158,10 @@ /obj/effect/decal/cleanable/dirt, /obj/item/weapon/bone/ribs, /obj/random/maintenance/research, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/DogBase) "jz" = ( -/obj/machinery/vending/cigarette, -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, +/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary/phoronlock, /turf/simulated/floor/tiled/dark, /area/submap/DogBase) "jD" = ( @@ -183,14 +179,14 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/random/maintenance/security, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/DogBase) "kl" = ( /obj/effect/decal/remains/human, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/random/maintenance/cargo, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/DogBase) "km" = ( /obj/effect/decal/remains/human, @@ -221,7 +217,7 @@ "lk" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/DogBase) "lm" = ( /obj/structure/table/woodentable, @@ -234,13 +230,13 @@ /obj/effect/floor_decal/industrial/danger{ dir = 1 }, -/turf/simulated/floor, +/turf/simulated/floor/plating/external/virgo3b, /area/submap/DogBase) "lN" = ( /obj/machinery/porta_turret/poi{ faction = "syndicate" }, -/turf/simulated/floor, +/turf/simulated/floor/plating/external/virgo3b, /area/submap/DogBase) "lX" = ( /obj/effect/floor_decal/borderfloor, @@ -261,7 +257,7 @@ "oW" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/template_noop) "pR" = ( /obj/structure/bed, @@ -295,7 +291,7 @@ /obj/effect/decal/cleanable/dirt, /obj/item/weapon/bone, /obj/random/maintenance/security, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/DogBase) "qO" = ( /obj/structure/bed, @@ -336,7 +332,7 @@ /area/submap/DogBase) "tp" = ( /obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, +/turf/simulated/floor/plating/external/virgo3b, /area/submap/DogBase) "tt" = ( /obj/machinery/power/smes/buildable/point_of_interest, @@ -428,7 +424,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/remains/human, /obj/random/contraband/nofail, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/DogBase) "yl" = ( /obj/structure/dogbed, @@ -436,7 +432,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/random/contraband/nofail, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/DogBase) "yx" = ( /obj/machinery/door/airlock/external, @@ -453,7 +449,7 @@ "Am" = ( /obj/machinery/door/blast/gate/thin, /obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/DogBase) "AJ" = ( /obj/machinery/door/airlock/engineering, @@ -486,11 +482,6 @@ /obj/random/cash/big, /turf/simulated/floor/tiled/dark, /area/submap/DogBase) -"BY" = ( -/obj/machinery/light, -/obj/effect/floor_decal/borderfloor, -/turf/simulated/floor/tiled/dark, -/area/submap/DogBase) "Ce" = ( /obj/structure/janitorialcart, /obj/item/weapon/storage/bag/trash, @@ -509,7 +500,7 @@ /obj/effect/decal/cleanable/dirt, /obj/item/weapon/bone, /obj/random/contraband/nofail, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/DogBase) "Dt" = ( /obj/effect/floor_decal/borderfloor{ @@ -542,7 +533,7 @@ "FD" = ( /obj/structure/fence, /obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/DogBase) "FO" = ( /obj/machinery/light{ @@ -567,14 +558,14 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/random/maintenance/cargo, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/DogBase) "GB" = ( /obj/structure/fence{ dir = 4 }, /obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/DogBase) "GJ" = ( /obj/structure/closet/secure_closet/guncabinet, @@ -587,7 +578,7 @@ /turf/simulated/floor/tiled/dark, /area/submap/DogBase) "Hl" = ( -/turf/simulated/floor, +/turf/simulated/floor/plating/external/virgo3b, /area/submap/DogBase) "HF" = ( /obj/random/mob/merc/all, @@ -608,7 +599,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/random/maintenance/research, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/DogBase) "Ki" = ( /obj/machinery/power/port_gen/pacman, @@ -691,7 +682,7 @@ max_tox = 0; name = "syndicate guard dog" }, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/DogBase) "OR" = ( /mob/living/simple_mob/animal/wolf/direwolf/dog/sec{ @@ -704,7 +695,7 @@ /obj/effect/floor_decal/industrial/danger{ dir = 1 }, -/turf/simulated/floor, +/turf/simulated/floor/plating/external/virgo3b, /area/submap/DogBase) "OS" = ( /obj/effect/floor_decal/corner/red/border, @@ -714,6 +705,7 @@ /obj/effect/floor_decal/borderfloor{ dir = 9 }, +/obj/machinery/vending/cigarette, /turf/simulated/floor/tiled/dark, /area/submap/DogBase) "PB" = ( @@ -758,7 +750,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/template_noop) "Rz" = ( /obj/structure/table/woodentable, @@ -776,14 +768,14 @@ /turf/simulated/floor/tiled/dark, /area/submap/DogBase) "SW" = ( -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/template_noop) "To" = ( /obj/structure/fence/corner{ dir = 1 }, /obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/DogBase) "UW" = ( /obj/effect/floor_decal/borderfloor{ @@ -796,7 +788,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/random/maintenance/security, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/DogBase) "Vm" = ( /obj/structure/loot_pile/maint/technical, @@ -807,7 +799,7 @@ /obj/effect/decal/remains/unathi, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/DogBase) "VG" = ( /obj/structure/bed/chair, @@ -848,7 +840,7 @@ /area/submap/DogBase) "Xz" = ( /obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/template_noop) "Ya" = ( /mob/living/simple_mob/animal/wolf/direwolf/dog/sec{ @@ -876,7 +868,7 @@ /area/submap/DogBase) "YJ" = ( /obj/random/mob/merc/all, -/turf/simulated/floor, +/turf/simulated/floor/plating/external/virgo3b, /area/submap/DogBase) "YX" = ( /obj/structure/dogbed, @@ -884,7 +876,7 @@ /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/random/maintenance/medical, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/DogBase) "ZK" = ( /obj/machinery/power/apc{ @@ -1275,9 +1267,9 @@ Wq lX Bk eZ -Wq -Wq -lX +hl +se +UW Bk lr Hl @@ -1307,9 +1299,9 @@ Wq Ni RW PB -hl -se -jz +eA +Bk +Bk Bk OR Hl @@ -1339,9 +1331,9 @@ Wq hl se WH -BY -Bk +lX Bk +jz aF bl Hl @@ -1403,9 +1395,9 @@ Wq Ni tN PB -BY -Bk +lX Bk +jz aF bl Hl @@ -1435,10 +1427,10 @@ lb hl jD WH -Ni -tN eA Bk +Bk +Bk OR Hl SW @@ -1467,9 +1459,9 @@ Wq lX Bk Yr -Wq -Wq -lX +Ni +tN +vq Bk lr Hl diff --git a/maps/submaps/surface_submaps/plains/drgnplateu.dmm b/maps/submaps/surface_submaps/plains/drgnplateu.dmm index 5538111691..817f04be5c 100644 --- a/maps/submaps/surface_submaps/plains/drgnplateu.dmm +++ b/maps/submaps/surface_submaps/plains/drgnplateu.dmm @@ -1,11 +1,11 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "ag" = ( /obj/structure/outcrop/gold, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/drgnplateu) "be" = ( /mob/living/simple_mob/vore/bigdragon, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/drgnplateu) "bN" = ( /turf/simulated/floor/outdoors/grass/sif/forest, @@ -14,7 +14,7 @@ /obj/structure/cliff/automatic{ dir = 10 }, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/drgnplateu) "cV" = ( /obj/item/weapon/digestion_remains/skull/tajaran, @@ -28,7 +28,7 @@ }, /obj/item/weapon/digestion_remains, /obj/item/clothing/accessory/collar/holo/indigestible, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/drgnplateu) "dO" = ( /obj/structure/flora/grass/brown{ @@ -56,7 +56,7 @@ pixel_y = 1 }, /obj/effect/decal/cleanable/filth, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/drgnplateu) "fj" = ( /obj/item/weapon/digestion_remains/ribcage, @@ -65,19 +65,19 @@ pixel_y = 7 }, /obj/effect/decal/cleanable/filth, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/drgnplateu) "fk" = ( /obj/structure/cliff/automatic/corner{ dir = 9 }, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/drgnplateu) "ga" = ( /obj/structure/cliff/automatic{ dir = 6 }, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/drgnplateu) "gy" = ( /obj/structure/flora/grass/brown{ @@ -106,12 +106,12 @@ /obj/structure/cliff/automatic/corner{ dir = 10 }, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/drgnplateu) "js" = ( /obj/effect/decal/cleanable/molten_item, /obj/effect/decal/cleanable/filth, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/drgnplateu) "mn" = ( /obj/structure/flora/grass/brown{ @@ -131,7 +131,7 @@ /area/submap/drgnplateu) "mw" = ( /obj/effect/decal/cleanable/blood, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/drgnplateu) "mB" = ( /obj/item/weapon/material/twohanded/baseballbat/gold, @@ -156,35 +156,35 @@ pixel_y = 1 }, /obj/effect/decal/cleanable/blood, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/drgnplateu) "nh" = ( /obj/item/clothing/accessory/collar/fluff/goldenstring, /obj/effect/decal/cleanable/liquid_fuel, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/drgnplateu) "ni" = ( /obj/item/weapon/digestion_remains/skull/unknown/anthro, /obj/item/weapon/digestion_remains/ribcage, /obj/effect/decal/cleanable/liquid_fuel, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/drgnplateu) "no" = ( /obj/effect/decal/cleanable/ash, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/drgnplateu) "oy" = ( -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/template_noop) "pk" = ( /obj/structure/cliff/automatic/corner{ dir = 6 }, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/drgnplateu) "rV" = ( /obj/structure/cliff/automatic, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/drgnplateu) "vx" = ( /obj/effect/gibspawner/human, @@ -194,35 +194,35 @@ "xd" = ( /obj/item/weapon/digestion_remains/skull/nevrean, /obj/effect/decal/cleanable/filth, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/drgnplateu) "yx" = ( /obj/structure/cliff/automatic{ dir = 2 }, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/drgnplateu) "zl" = ( /obj/item/weapon/digestion_remains/skull/akula, /obj/effect/decal/cleanable/liquid_fuel, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/drgnplateu) "zm" = ( /obj/item/weapon/digestion_remains, /obj/effect/decal/cleanable/filth, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/drgnplateu) "Ab" = ( /obj/structure/cliff/automatic/ramp{ dir = 9 }, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/drgnplateu) "BA" = ( /obj/effect/decal/remains, /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/ash, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/drgnplateu) "Cu" = ( /obj/item/weapon/digestion_remains{ @@ -237,7 +237,7 @@ pixel_y = 1 }, /obj/effect/decal/cleanable/filth, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/drgnplateu) "FT" = ( /obj/item/weapon/digestion_remains/ribcage, @@ -245,26 +245,26 @@ pixel_x = 9; pixel_y = 14 }, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/drgnplateu) "Gp" = ( /obj/effect/landmark/loot_spawn, /obj/effect/decal/cleanable/blood, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/drgnplateu) "IL" = ( /obj/effect/decal/remains, /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/filth, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/drgnplateu) "IS" = ( /obj/effect/decal/cleanable/filth, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/drgnplateu) "Jz" = ( /obj/item/weapon/digestion_remains/skull/unknown/anthro, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/drgnplateu) "JJ" = ( /obj/structure/flora/grass/brown{ @@ -282,21 +282,21 @@ /area/submap/drgnplateu) "LN" = ( /obj/effect/decal/cleanable/liquid_fuel, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/drgnplateu) "Mf" = ( /obj/effect/landmark/loot_spawn, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/drgnplateu) "MU" = ( /obj/structure/cliff/automatic/ramp, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/drgnplateu) "Na" = ( /obj/structure/cliff/automatic{ dir = 4 }, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/drgnplateu) "Nj" = ( /obj/item/weapon/digestion_remains/skull/unathi, @@ -306,42 +306,42 @@ pixel_y = 7 }, /obj/effect/decal/cleanable/filth, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/drgnplateu) "Of" = ( /obj/structure/cliff/automatic{ dir = 9 }, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/drgnplateu) "Ok" = ( /obj/effect/landmark/loot_spawn/low, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/drgnplateu) "Qc" = ( /obj/structure/cliff/automatic/corner, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/drgnplateu) "Ra" = ( /obj/item/weapon/digestion_remains/skull/zorren, /obj/item/clothing/accessory/collar/holo/indigestible, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/drgnplateu) "Rl" = ( /obj/structure/cliff/automatic{ dir = 8 }, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/drgnplateu) "SC" = ( /obj/structure/table/gold, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/drgnplateu) "SI" = ( /obj/structure/cliff/automatic{ dir = 5 }, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/drgnplateu) "Vj" = ( /turf/template_noop, @@ -355,7 +355,7 @@ icon = 'icons/effects/blood.dmi'; icon_state = "tracks" }, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/drgnplateu) "Wr" = ( /obj/effect/decal/cleanable/blood, @@ -366,10 +366,10 @@ /area/submap/drgnplateu) "Ze" = ( /obj/effect/gibspawner/human, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/drgnplateu) "ZD" = ( -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/drgnplateu) (1,1,1) = {" diff --git a/maps/submaps/surface_submaps/plains/emptycabin.dmm b/maps/submaps/surface_submaps/plains/emptycabin.dmm index 25396ef3c8..35cbfa4e1b 100644 --- a/maps/submaps/surface_submaps/plains/emptycabin.dmm +++ b/maps/submaps/surface_submaps/plains/emptycabin.dmm @@ -6,19 +6,19 @@ /obj/effect/decal/cleanable/filth, /obj/item/weapon/bone/arm, /obj/item/weapon/bone/skull/unathi, -/turf/simulated/floor/wood/sif, +/turf/simulated/floor/wood/sif/virgo3b, /area/submap/EmptyCabin) "c" = ( /obj/structure/curtain/black, /obj/structure/simple_door/sifwood, -/turf/simulated/floor/wood/sif, +/turf/simulated/floor/wood/sif/virgo3b, /area/submap/EmptyCabin) "d" = ( /obj/structure/closet/wardrobe, /obj/item/weapon/material/fishing_rod/modern, /obj/item/weapon/storage/toolbox/mechanical, /obj/item/weapon/storage/toolbox/lunchbox/nymph/filled, -/turf/simulated/floor/wood/sif, +/turf/simulated/floor/wood/sif/virgo3b, /area/submap/EmptyCabin) "e" = ( /turf/simulated/wall/sifwood, @@ -27,18 +27,18 @@ /obj/structure/railing/grey{ dir = 1 }, -/turf/simulated/floor/wood/sif, +/turf/simulated/floor/wood/sif/virgo3b, /area/submap/EmptyCabin) "g" = ( /obj/structure/bed/double/padded, /obj/item/weapon/bedsheet/purpledouble, -/turf/simulated/floor/wood/sif, +/turf/simulated/floor/wood/sif/virgo3b, /area/submap/EmptyCabin) "i" = ( /obj/structure/bed/chair/sofa/blue/left{ dir = 1 }, -/turf/simulated/floor/wood/sif, +/turf/simulated/floor/wood/sif/virgo3b, /area/submap/EmptyCabin) "k" = ( /obj/structure/railing/grey{ @@ -47,7 +47,7 @@ /obj/structure/bed/chair/sofa/left{ dir = 8 }, -/turf/simulated/floor/wood/sif, +/turf/simulated/floor/wood/sif/virgo3b, /area/submap/EmptyCabin) "l" = ( /obj/structure/railing/grey{ @@ -56,7 +56,7 @@ /obj/structure/bed/chair/sofa{ dir = 8 }, -/turf/simulated/floor/wood/sif, +/turf/simulated/floor/wood/sif/virgo3b, /area/submap/EmptyCabin) "n" = ( /obj/structure/table/sifwoodentable, @@ -64,7 +64,7 @@ /obj/item/weapon/paper/crumpled/bloody{ info = "I found an otie while picking flowers today. He's so cute! I took him back home, and he seemed quite happy to share food with me. He really likes fish. Though, he never really seems to not be hungry..." }, -/turf/simulated/floor/wood/sif, +/turf/simulated/floor/wood/sif/virgo3b, /area/submap/EmptyCabin) "q" = ( /obj/structure/railing/grey{ @@ -74,11 +74,11 @@ /area/submap/EmptyCabin) "r" = ( /obj/effect/landmark/loot_spawn/low, -/turf/simulated/floor/wood/sif, +/turf/simulated/floor/wood/sif/virgo3b, /area/submap/EmptyCabin) "t" = ( /obj/structure/railing/grey, -/turf/simulated/floor/wood/sif, +/turf/simulated/floor/wood/sif/virgo3b, /area/submap/EmptyCabin) "y" = ( /obj/structure/window/reinforced{ @@ -86,20 +86,20 @@ }, /obj/structure/curtain/black, /obj/structure/grille/rustic, -/turf/simulated/floor/plating, +/turf/simulated/floor/wood/sif/virgo3b, /area/submap/EmptyCabin) "z" = ( /obj/effect/decal/cleanable/blood/drip{ icon_state = "4" }, -/turf/simulated/floor/wood/sif, +/turf/simulated/floor/wood/sif/virgo3b, /area/submap/EmptyCabin) "A" = ( /obj/structure/bonfire/permanent/sifwood, /obj/structure/railing/grey{ dir = 8 }, -/turf/simulated/floor/tiled/eris/steel/techfloor, +/turf/simulated/floor/virgo3b_indoors, /area/submap/EmptyCabin) "B" = ( /turf/template_noop, @@ -108,10 +108,10 @@ /obj/structure/railing/grey{ dir = 8 }, -/turf/simulated/floor/wood/sif, +/turf/simulated/floor/wood/sif/virgo3b, /area/submap/EmptyCabin) "D" = ( -/turf/simulated/floor/wood/sif, +/turf/simulated/floor/wood/sif/virgo3b, /area/submap/EmptyCabin) "F" = ( /mob/living/simple_mob/otie/friendly/chubby{ @@ -121,33 +121,33 @@ max_tox = 0 }, /obj/effect/decal/cleanable/blood, -/turf/simulated/floor/wood/sif, +/turf/simulated/floor/wood/sif/virgo3b, /area/submap/EmptyCabin) "G" = ( /obj/structure/bed/chair/sofa/blue{ dir = 1 }, -/turf/simulated/floor/wood/sif, +/turf/simulated/floor/wood/sif/virgo3b, /area/submap/EmptyCabin) "I" = ( /obj/structure/table/sifwoodentable, /obj/item/pizzabox/meat, -/turf/simulated/floor/wood/sif, +/turf/simulated/floor/wood/sif/virgo3b, /area/submap/EmptyCabin) "J" = ( /obj/structure/bed/chair/sofa/blue/right{ dir = 1 }, -/turf/simulated/floor/wood/sif, +/turf/simulated/floor/wood/sif/virgo3b, /area/submap/EmptyCabin) "L" = ( /obj/structure/table/sifwoodentable, /obj/item/weapon/flame/candle/candelabra, -/turf/simulated/floor/wood/sif, +/turf/simulated/floor/wood/sif/virgo3b, /area/submap/EmptyCabin) "M" = ( /obj/item/weapon/bone/leg, -/turf/simulated/floor/wood/sif, +/turf/simulated/floor/wood/sif/virgo3b, /area/submap/EmptyCabin) "O" = ( /obj/structure/railing/grey{ @@ -156,7 +156,7 @@ /obj/structure/bed/chair/sofa/right{ dir = 8 }, -/turf/simulated/floor/wood/sif, +/turf/simulated/floor/wood/sif/virgo3b, /area/submap/EmptyCabin) "Q" = ( /obj/effect/decal/cleanable/blood/drip{ @@ -170,7 +170,7 @@ icon_state = "3" }, /obj/effect/decal/cleanable/blood, -/turf/simulated/floor/wood/sif, +/turf/simulated/floor/wood/sif/virgo3b, /area/submap/EmptyCabin) "R" = ( /obj/structure/loot_pile/surface, @@ -186,24 +186,24 @@ /obj/effect/decal/cleanable/blood/drip{ icon_state = "5" }, -/turf/simulated/floor/wood/sif, +/turf/simulated/floor/wood/sif/virgo3b, /area/submap/EmptyCabin) "W" = ( /obj/effect/decal/cleanable/blood/drip, /obj/effect/decal/cleanable/blood/drip{ icon_state = "2" }, -/turf/simulated/floor/wood/sif, +/turf/simulated/floor/wood/sif/virgo3b, /area/submap/EmptyCabin) "X" = ( /obj/item/weapon/bone, -/turf/simulated/floor/wood/sif, +/turf/simulated/floor/wood/sif/virgo3b, /area/submap/EmptyCabin) "Z" = ( /obj/effect/decal/cleanable/blood/drip{ icon_state = "3" }, -/turf/simulated/floor/wood/sif, +/turf/simulated/floor/wood/sif/virgo3b, /area/submap/EmptyCabin) (1,1,1) = {" diff --git a/maps/submaps/surface_submaps/plains/farm1_vr.dmm b/maps/submaps/surface_submaps/plains/farm1_vr.dmm index 69e5005030..cd3ed606cd 100644 --- a/maps/submaps/surface_submaps/plains/farm1_vr.dmm +++ b/maps/submaps/surface_submaps/plains/farm1_vr.dmm @@ -3,28 +3,26 @@ /turf/template_noop, /area/template_noop) "b" = ( -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/farm1) "c" = ( /obj/structure/railing, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/farm1) "d" = ( /obj/structure/railing{ - icon_state = "railing0"; dir = 4 }, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/farm1) "e" = ( -/turf/simulated/floor/outdoors/grass/sif, +/turf/simulated/floor/outdoors/grass/sif/virgo3b, /area/submap/farm1) "f" = ( /obj/structure/railing{ - icon_state = "railing0"; dir = 8 }, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/farm1) "g" = ( /turf/simulated/wall/wood, @@ -58,12 +56,7 @@ "n" = ( /obj/machinery/portable_atmospherics/hydroponics/soil, /obj/item/seeds/cornseed, -/turf/simulated/floor/outdoors/dirt{ - outdoors = 0 - }, -/area/submap/farm1) -"o" = ( -/turf/simulated/floor/outdoors/dirt{ +/turf/simulated/floor/outdoors/dirt/virgo3b{ outdoors = 0 }, /area/submap/farm1) @@ -85,19 +78,19 @@ "r" = ( /obj/machinery/portable_atmospherics/hydroponics/soil, /obj/item/seeds/bluetomatoseed, -/turf/simulated/floor/outdoors/dirt{ +/turf/simulated/floor/outdoors/dirt/virgo3b{ outdoors = 0 }, /area/submap/farm1) "s" = ( -/turf/simulated/floor/outdoors/mud{ +/turf/simulated/floor/outdoors/mud/virgo3b{ outdoors = 0 }, /area/submap/farm1) "t" = ( /obj/machinery/portable_atmospherics/hydroponics/soil, /obj/item/seeds/icepepperseed, -/turf/simulated/floor/outdoors/dirt{ +/turf/simulated/floor/outdoors/dirt/virgo3b{ outdoors = 0 }, /area/submap/farm1) @@ -108,23 +101,23 @@ "v" = ( /obj/machinery/door/window/eastleft, /obj/machinery/door/window/westleft, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/farm1) "w" = ( /mob/living/bot/farmbot, -/turf/simulated/floor/outdoors/dirt{ +/turf/simulated/floor/outdoors/dirt/virgo3b{ outdoors = 0 }, /area/submap/farm1) "x" = ( /obj/structure/sink/puddle, -/turf/simulated/floor/outdoors/mud{ +/turf/simulated/floor/outdoors/mud/virgo3b{ outdoors = 0 }, /area/submap/farm1) "y" = ( /obj/item/weapon/material/knife/machete/hatchet, -/turf/simulated/floor/outdoors/mud{ +/turf/simulated/floor/outdoors/mud/virgo3b{ outdoors = 0 }, /area/submap/farm1) @@ -145,7 +138,6 @@ /area/submap/farm1) "C" = ( /obj/structure/bed/chair/wood{ - icon_state = "wooden_chair"; dir = 8 }, /turf/simulated/floor/wood, @@ -162,7 +154,7 @@ "F" = ( /obj/machinery/portable_atmospherics/hydroponics/soil, /obj/item/seeds/wheatseed, -/turf/simulated/floor/outdoors/dirt{ +/turf/simulated/floor/outdoors/dirt/virgo3b{ outdoors = 0 }, /area/submap/farm1) @@ -190,41 +182,59 @@ /turf/simulated/floor/wood, /area/submap/farm1) "L" = ( -/turf/simulated/floor/outdoors/rocks, +/turf/simulated/floor/outdoors/rocks/virgo3b, /area/submap/farm1) "M" = ( -/turf/simulated/floor/plating, +/turf/simulated/floor/outdoors/dirt/virgo3b{ + outdoors = 0 + }, /area/submap/farm1) "N" = ( -/turf/simulated/floor/water, +/turf/simulated/floor/water/virgo3b, /area/submap/farm1) "O" = ( /obj/structure/loot_pile/maint/technical, -/turf/simulated/floor/plating, +/turf/simulated/floor/outdoors/dirt/virgo3b{ + outdoors = 0 + }, /area/submap/farm1) "P" = ( /obj/machinery/power/port_gen/pacman, -/turf/simulated/floor/plating, +/turf/simulated/floor/outdoors/dirt/virgo3b{ + outdoors = 0 + }, /area/submap/farm1) "Q" = ( /obj/structure/closet/crate/hydroponics/prespawned, -/turf/simulated/floor/plating, +/turf/simulated/floor/outdoors/dirt/virgo3b{ + outdoors = 0 + }, /area/submap/farm1) "R" = ( /obj/structure/table/steel, /obj/machinery/cell_charger, -/turf/simulated/floor/plating, +/turf/simulated/floor/outdoors/dirt/virgo3b{ + outdoors = 0 + }, /area/submap/farm1) "S" = ( /obj/structure/table/steel, -/turf/simulated/floor/plating, +/turf/simulated/floor/outdoors/dirt/virgo3b{ + outdoors = 0 + }, /area/submap/farm1) "T" = ( /obj/structure/railing{ - icon_state = "railing0"; dir = 1 }, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/farm1) +"V" = ( +/obj/structure/grille/rustic, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/outdoors/dirt/virgo3b{ + outdoors = 0 + }, /area/submap/farm1) (1,1,1) = {" @@ -745,11 +755,11 @@ e e i n -o +M r w r -o +M F i e @@ -779,11 +789,11 @@ e e i n -o +M r -o +M r -o +M F i e @@ -793,9 +803,9 @@ e e g g -h -h -h +V +V +V g g e @@ -813,11 +823,11 @@ e e i n -o +M r -o +M r -o +M F i e @@ -847,11 +857,11 @@ e e i n -o +M s s s -o +M F i e @@ -881,11 +891,11 @@ e e i n -o +M s x s -o +M F i e @@ -915,11 +925,11 @@ e e i n -o +M s y s -o +M F i e @@ -949,11 +959,11 @@ e e i n -o +M t -o +M t -o +M F i e @@ -983,11 +993,11 @@ e e i n -o +M t -o +M t -o +M F i e @@ -1017,11 +1027,11 @@ e e i n -o +M t -o +M t -o +M F i e @@ -1065,9 +1075,9 @@ b e g g -h -h -h +V +V +V g g e diff --git a/maps/submaps/surface_submaps/plains/greatwolfden.dmm b/maps/submaps/surface_submaps/plains/greatwolfden.dmm index 7716fcc8fc..e7d296f24d 100644 --- a/maps/submaps/surface_submaps/plains/greatwolfden.dmm +++ b/maps/submaps/surface_submaps/plains/greatwolfden.dmm @@ -9,62 +9,66 @@ max_tox = 0; min_oxy = 0 }, -/turf/simulated/mineral/floor/ignore_mapgen, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/GreatWolfDen) "bp" = ( /obj/structure/cliff/automatic/corner{ dir = 6 }, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/template_noop) "bz" = ( /obj/structure/flora/bboulder1, -/turf/simulated/mineral/floor/ignore_mapgen, +/turf/simulated/floor/outdoors/dirt/virgo3b{ + outdoors = 0 + }, /area/submap/GreatWolfDen) "bI" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/blood/drip, -/turf/simulated/mineral/floor/ignore_mapgen, +/turf/simulated/floor/outdoors/dirt/virgo3b{ + outdoors = 0 + }, /area/submap/GreatWolfDen) "bY" = ( -/turf/simulated/floor/outdoors/snow, +/turf/simulated/floor/outdoors/snow/virgo3b, /area/submap/GreatWolfDen) "dM" = ( /obj/structure/flora/bboulder2, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/template_noop) "dX" = ( /obj/structure/cliff/automatic{ dir = 4 }, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/template_noop) "eq" = ( /obj/structure/flora/ausbushes/ppflowers, -/turf/simulated/floor/outdoors/snow, +/turf/simulated/floor/outdoors/snow/virgo3b, /area/submap/GreatWolfDen) "fh" = ( /obj/structure/cliff/automatic{ dir = 2 }, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/template_noop) "fX" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/flora/rocks2, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/template_noop) "ge" = ( /obj/structure/flora/sif/subterranean{ icon_state = "frostbelle" }, -/turf/simulated/mineral/floor/ignore_mapgen, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/GreatWolfDen) "hJ" = ( /obj/structure/cliff/automatic{ dir = 9 }, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/template_noop) "iX" = ( /obj/effect/decal/cleanable/blood/drip, @@ -72,14 +76,14 @@ /obj/effect/decal/cleanable/blood/drip{ icon_state = "2" }, -/turf/simulated/mineral/floor/ignore_mapgen, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/GreatWolfDen) "jg" = ( /obj/effect/decal/cleanable/cobweb, /obj/item/ammo_casing/a10mm{ dir = 8 }, -/turf/simulated/mineral/floor/ignore_mapgen, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/GreatWolfDen) "ju" = ( /obj/item/weapon/reagent_containers/food/snacks/meat/human, @@ -87,42 +91,40 @@ /obj/item/weapon/reagent_containers/food/snacks/meat/human, /obj/item/weapon/reagent_containers/food/snacks/meat/human, /obj/item/weapon/reagent_containers/food/snacks/meat/human, -/turf/simulated/mineral/floor/ignore_mapgen, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/GreatWolfDen) "kg" = ( /obj/item/weapon/bone/skull/unathi, -/turf/simulated/mineral/floor/ignore_mapgen, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/GreatWolfDen) "kk" = ( /obj/effect/decal/cleanable/blood/gibs{ color = "red"; icon_state = "gib2_flesh" }, -/turf/simulated/mineral/floor/ignore_mapgen, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/GreatWolfDen) "kL" = ( /obj/structure/flora/sif/subterranean{ icon_state = "grass3" }, -/turf/simulated/floor/outdoors/grass/sif/forest{ - outdoors = 0 - }, +/turf/simulated/floor/outdoors/grass/sif/virgo3b, /area/submap/GreatWolfDen) "lu" = ( /obj/effect/decal/cleanable/dirt, /obj/item/ammo_casing/a10mm, -/turf/simulated/mineral/floor/ignore_mapgen, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/GreatWolfDen) "lL" = ( /obj/structure/loot_pile/surface/bones, /obj/effect/landmark/loot_spawn/low, /obj/random/projectile/scrapped_gun, -/turf/simulated/mineral/floor/ignore_mapgen, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/GreatWolfDen) "lQ" = ( /obj/effect/decal/cleanable/filth, /obj/item/weapon/card/emag_broken, -/turf/simulated/mineral/floor/ignore_mapgen, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/GreatWolfDen) "mk" = ( /obj/effect/decal/cleanable/dirt, @@ -133,16 +135,18 @@ /obj/item/ammo_casing/a10mm{ dir = 8 }, -/turf/simulated/mineral/floor/ignore_mapgen, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/GreatWolfDen) "mm" = ( /obj/random/trash_pile, -/turf/simulated/mineral/floor/ignore_mapgen, +/turf/simulated/floor/outdoors/dirt/virgo3b{ + outdoors = 0 + }, /area/submap/GreatWolfDen) "nd" = ( /obj/structure/flora/rocks2, /obj/effect/decal/remains/lizard, -/turf/simulated/mineral/floor/ignore_mapgen, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/GreatWolfDen) "nv" = ( /mob/living/simple_mob/vore/greatwolf{ @@ -150,41 +154,39 @@ max_co2 = 0; min_oxy = 0 }, -/turf/simulated/floor/outdoors/grass/sif/forest{ - outdoors = 0 - }, +/turf/simulated/floor/outdoors/grass/sif/virgo3b, /area/submap/GreatWolfDen) "pS" = ( /turf/template_noop, /area/template_noop) "qb" = ( /obj/effect/decal/cleanable/blood/drip, -/turf/simulated/mineral/floor/ignore_mapgen, +/turf/simulated/floor/outdoors/dirt/virgo3b{ + outdoors = 0 + }, /area/submap/GreatWolfDen) "rn" = ( /obj/structure/loot_pile/mecha/gygax/dark/adv, /obj/effect/decal/cleanable/blood/gibs/robot/down, /obj/effect/decal/cleanable/dirt, -/turf/simulated/mineral/floor/ignore_mapgen, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/GreatWolfDen) "rM" = ( /obj/structure/flora/sif/subterranean{ icon_state = "eyeplant2" }, -/turf/simulated/floor/outdoors/grass/sif/forest{ - outdoors = 0 - }, +/turf/simulated/floor/outdoors/grass/sif/virgo3b, /area/submap/GreatWolfDen) "tb" = ( /obj/structure/flora/smallbould, -/turf/simulated/mineral/floor/ignore_mapgen, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/GreatWolfDen) "tm" = ( /turf/simulated/mineral/ignore_mapgen, /area/submap/GreatWolfDen) "tC" = ( /obj/effect/decal/remains/mouse, -/turf/simulated/mineral/floor/ignore_mapgen, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/GreatWolfDen) "uz" = ( /mob/living/simple_mob/animal/wolf/direwolf{ @@ -195,45 +197,50 @@ max_tox = 0; min_oxy = 0 }, -/turf/simulated/mineral/floor/ignore_mapgen, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/GreatWolfDen) "uY" = ( /obj/item/ammo_casing/a10mm, -/turf/simulated/mineral/floor/ignore_mapgen, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/GreatWolfDen) "vu" = ( /obj/item/weapon/bone/skull/tajaran, -/turf/simulated/mineral/floor/ignore_mapgen, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/GreatWolfDen) "wc" = ( /obj/item/weapon/bone/skull/unathi, /obj/effect/decal/cleanable/dirt, -/turf/simulated/mineral/floor/ignore_mapgen, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/GreatWolfDen) "xt" = ( /obj/effect/landmark/loot_spawn/low, -/turf/simulated/mineral/floor/ignore_mapgen, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/GreatWolfDen) +"xu" = ( +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/GreatWolfDen) "xK" = ( /obj/effect/decal/remains/human, /obj/item/clothing/under/syndicate, /obj/random/projectile/scrapped_gun, -/turf/simulated/mineral/floor/ignore_mapgen, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/GreatWolfDen) "yi" = ( /obj/structure/flora/sif/subterranean{ icon_state = "frostbelle2" }, -/turf/simulated/mineral/floor/ignore_mapgen, +/turf/simulated/floor/outdoors/dirt/virgo3b{ + outdoors = 0 + }, /area/submap/GreatWolfDen) "yF" = ( /obj/structure/flora/smallbould, /obj/effect/decal/cleanable/cobweb, -/turf/simulated/mineral/floor/ignore_mapgen, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/GreatWolfDen) "yG" = ( /obj/structure/flora/ausbushes/ywflowers, -/turf/simulated/floor/outdoors/snow, +/turf/simulated/floor/outdoors/snow/virgo3b, /area/submap/GreatWolfDen) "yH" = ( /obj/effect/decal/cleanable/blood/drip, @@ -242,22 +249,22 @@ /obj/effect/decal/cleanable/blood/drip{ icon_state = "3" }, -/turf/simulated/mineral/floor/ignore_mapgen, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/GreatWolfDen) "zl" = ( /obj/structure/flora/bboulder1, /obj/effect/decal/cleanable/cobweb2, -/turf/simulated/mineral/floor/ignore_mapgen, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/GreatWolfDen) "zs" = ( /obj/structure/flora/bboulder2, -/turf/simulated/mineral/floor/ignore_mapgen, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/GreatWolfDen) "zV" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/structure/ledge/ledge_stairs, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/template_noop) "AG" = ( /obj/effect/decal/cleanable/dirt, @@ -265,14 +272,20 @@ /obj/effect/decal/cleanable/dirt, /obj/structure/flora/rocks2, /obj/structure/ledge/ledge_stairs, -/turf/simulated/floor/outdoors/rocks, +/turf/simulated/floor/outdoors/rocks/virgo3b, /area/submap/GreatWolfDen) "AK" = ( /obj/structure/cliff/automatic/ramp{ dir = 9 }, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/template_noop) +"BR" = ( +/obj/structure/flora/sif/subterranean{ + icon_state = "frostbelle2" + }, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/GreatWolfDen) "Cd" = ( /mob/living/simple_mob/otie/feral/chubby{ ai_holder_type = /datum/ai_holder/simple_mob/retaliate; @@ -280,45 +293,51 @@ faction = "sif"; minbodytemp = 0 }, -/turf/simulated/mineral/floor/ignore_mapgen, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/GreatWolfDen) "CR" = ( /obj/effect/decal/cleanable/dirt, -/turf/simulated/mineral/floor/ignore_mapgen, +/turf/simulated/floor/outdoors/dirt/virgo3b{ + outdoors = 0 + }, /area/submap/GreatWolfDen) "Dj" = ( /obj/structure/cliff/automatic/corner, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/template_noop) "DV" = ( /obj/effect/decal/cleanable/dirt, /obj/random/outcrop, -/turf/simulated/mineral/floor/ignore_mapgen, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/GreatWolfDen) "EU" = ( /obj/structure/flora/rocks1, -/turf/simulated/mineral/floor/ignore_mapgen, +/turf/simulated/floor/outdoors/dirt/virgo3b{ + outdoors = 0 + }, /area/submap/GreatWolfDen) "Fy" = ( /obj/structure/flora/sif/subterranean{ icon_state = "eyeplant1" }, -/turf/simulated/floor/outdoors/grass/sif/forest{ - outdoors = 0 - }, +/turf/simulated/floor/outdoors/grass/sif/virgo3b, +/area/submap/GreatWolfDen) +"GZ" = ( +/obj/structure/flora/rocks1, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/GreatWolfDen) "Hb" = ( /obj/structure/closet/crate/secure/loot, -/turf/simulated/mineral/floor/ignore_mapgen, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/GreatWolfDen) "HC" = ( /obj/random/outcrop, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/template_noop) "Ic" = ( /obj/effect/decal/remains/deer, /obj/effect/decal/cleanable/blood/drip, -/turf/simulated/mineral/floor/ignore_mapgen, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/GreatWolfDen) "Id" = ( /obj/effect/decal/cleanable/dirt, @@ -326,17 +345,17 @@ /area/template_noop) "If" = ( /obj/effect/decal/cleanable/blood/gibs/robot/limb, -/turf/simulated/mineral/floor/ignore_mapgen, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/GreatWolfDen) "Iw" = ( /obj/effect/decal/remains/deer, -/turf/simulated/mineral/floor/ignore_mapgen, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/GreatWolfDen) "Kb" = ( /obj/item/ammo_casing/a10mm{ dir = 8 }, -/turf/simulated/mineral/floor/ignore_mapgen, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/GreatWolfDen) "Ko" = ( /obj/effect/decal/cleanable/blood/gibs{ @@ -344,39 +363,41 @@ icon_state = "gibdown1_flesh" }, /obj/effect/decal/cleanable/dirt, -/turf/simulated/mineral/floor/ignore_mapgen, +/turf/simulated/floor/outdoors/dirt/virgo3b{ + outdoors = 0 + }, /area/submap/GreatWolfDen) "Kp" = ( /obj/structure/flora/ausbushes/brflowers, -/turf/simulated/floor/outdoors/snow, +/turf/simulated/floor/outdoors/snow/virgo3b, /area/submap/GreatWolfDen) "KU" = ( /obj/structure/flora/sif/subterranean{ icon_state = "grass3" }, -/turf/simulated/floor/outdoors/snow, +/turf/simulated/floor/outdoors/snow/virgo3b, /area/submap/GreatWolfDen) "Lx" = ( /obj/structure/cliff/automatic{ dir = 8 }, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/template_noop) "Lz" = ( /obj/effect/decal/cleanable/blood/gibs{ color = "red"; icon_state = "gib1_flesh" }, -/turf/simulated/floor/outdoors/grass/sif/forest{ - outdoors = 0 - }, +/turf/simulated/floor/outdoors/grass/sif/virgo3b, /area/submap/GreatWolfDen) "LJ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/flora/sif/subterranean{ icon_state = "glowplant2" }, -/turf/simulated/mineral/floor/ignore_mapgen, +/turf/simulated/floor/outdoors/dirt/virgo3b{ + outdoors = 0 + }, /area/submap/GreatWolfDen) "LP" = ( /obj/effect/decal/cleanable/dirt, @@ -384,74 +405,80 @@ /obj/effect/decal/cleanable/dirt, /obj/structure/flora/rocks2, /obj/structure/ledge/ledge_stairs, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/template_noop) "LT" = ( /obj/structure/cliff/automatic/corner{ dir = 10 }, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/template_noop) "Mc" = ( /obj/effect/decal/cleanable/ash, -/turf/simulated/mineral/floor/ignore_mapgen, +/turf/simulated/floor/outdoors/dirt/virgo3b{ + outdoors = 0 + }, /area/submap/GreatWolfDen) "Mv" = ( /obj/random/outcrop, -/turf/simulated/mineral/floor/ignore_mapgen, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/GreatWolfDen) "MD" = ( /obj/structure/flora/tree/sif{ icon_state = "tree_sif4" }, -/turf/simulated/floor/outdoors/snow, +/turf/simulated/floor/outdoors/snow/virgo3b, /area/submap/GreatWolfDen) "OB" = ( /obj/item/stack/material/log{ amount = 25 }, /obj/effect/decal/cleanable/dirt, -/turf/simulated/mineral/floor/ignore_mapgen, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/GreatWolfDen) "OL" = ( /obj/structure/cliff/automatic, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/template_noop) "OV" = ( /obj/structure/cliff/automatic{ dir = 6 }, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/template_noop) "OW" = ( /obj/structure/cliff/automatic{ dir = 5 }, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/template_noop) "Pa" = ( /obj/structure/cliff/automatic/ramp, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/template_noop) "Pf" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/simulated/mineral/floor/ignore_mapgen, +/turf/simulated/floor/outdoors/dirt/virgo3b{ + outdoors = 0 + }, /area/submap/GreatWolfDen) "Pl" = ( /obj/effect/decal/remains/lizard, /obj/effect/decal/cleanable/dirt, -/turf/simulated/mineral/floor/ignore_mapgen, +/turf/simulated/floor/outdoors/dirt/virgo3b{ + outdoors = 0 + }, /area/submap/GreatWolfDen) "PC" = ( /obj/structure/closet/crate/secure/loot, /obj/effect/decal/cleanable/cobweb2, -/turf/simulated/mineral/floor/ignore_mapgen, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/GreatWolfDen) "PX" = ( /obj/effect/decal/cleanable/blood/drip, /obj/effect/decal/cleanable/dirt, -/turf/simulated/mineral/floor/ignore_mapgen, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/GreatWolfDen) "Qb" = ( /obj/effect/decal/cleanable/dirt, @@ -459,19 +486,21 @@ /obj/effect/decal/cleanable/dirt, /obj/structure/flora/rocks1, /obj/structure/ledge/ledge_stairs, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/template_noop) "Qv" = ( -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/template_noop) "QA" = ( /obj/structure/flora/sif/subterranean{ icon_state = "grass2" }, -/turf/simulated/floor/outdoors/snow, +/turf/simulated/floor/outdoors/snow/virgo3b, /area/submap/GreatWolfDen) "QJ" = ( -/turf/simulated/mineral/floor/ignore_mapgen, +/turf/simulated/floor/outdoors/dirt/virgo3b{ + outdoors = 0 + }, /area/submap/GreatWolfDen) "QM" = ( /obj/effect/decal/cleanable/dirt, @@ -479,12 +508,14 @@ /obj/effect/decal/cleanable/blood/drip{ icon_state = "2" }, -/turf/simulated/mineral/floor/ignore_mapgen, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/GreatWolfDen) "Rb" = ( /obj/item/weapon/bone/leg, /obj/effect/decal/cleanable/dirt, -/turf/simulated/mineral/floor/ignore_mapgen, +/turf/simulated/floor/outdoors/dirt/virgo3b{ + outdoors = 0 + }, /area/submap/GreatWolfDen) "Rf" = ( /obj/structure/loot_pile/surface/bones, @@ -492,29 +523,29 @@ icon_state = "frostbelle" }, /obj/item/weapon/gun/projectile/pistol, -/turf/simulated/mineral/floor/ignore_mapgen, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/GreatWolfDen) "Rj" = ( /obj/structure/flora/grass/both, -/turf/simulated/floor/outdoors/snow, +/turf/simulated/floor/outdoors/snow/virgo3b, /area/submap/GreatWolfDen) "Rx" = ( /obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/template_noop) "RW" = ( /obj/structure/flora/rocks2, -/turf/simulated/mineral/floor/ignore_mapgen, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/GreatWolfDen) "SO" = ( /obj/item/weapon/telecube/mated, -/turf/simulated/mineral/floor/ignore_mapgen, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/GreatWolfDen) "SQ" = ( /obj/structure/cliff/automatic/corner{ dir = 9 }, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/template_noop) "Tf" = ( /obj/item/weapon/paper/card/heart{ @@ -525,81 +556,83 @@ info = "The wolves dragged me back to their den when they found me incapacitated, and nursed me back to health, instead of eating me. I don't know why. Anyway, they're a bunch of goodboyes. Don't let the bones strewn about their den frighten you. Just be nice to them and they won't hurt you."; name = "survivor's note" }, -/turf/simulated/mineral/floor/ignore_mapgen, -/area/submap/GreatWolfDen) -"Tn" = ( -/obj/structure/bonfire, -/turf/simulated/floor/outdoors/grass/sif/forest{ +/turf/simulated/floor/outdoors/dirt/virgo3b{ outdoors = 0 }, /area/submap/GreatWolfDen) +"Tn" = ( +/obj/structure/bonfire, +/turf/simulated/floor/outdoors/grass/sif/virgo3b, +/area/submap/GreatWolfDen) "Ty" = ( /obj/random/trash_pile, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/template_noop) "UV" = ( /obj/structure/cliff/automatic{ dir = 10 }, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/template_noop) "Vq" = ( /obj/structure/loot_pile/surface/bones, /obj/random/projectile/scrapped_gun, -/turf/simulated/mineral/floor/ignore_mapgen, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/GreatWolfDen) "WH" = ( /obj/structure/loot_pile/surface/bones, /obj/item/weapon/storage/toolbox/syndicate, /obj/random/projectile/scrapped_gun, -/turf/simulated/mineral/floor/ignore_mapgen, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/GreatWolfDen) "WR" = ( /obj/structure/flora/sif/subterranean{ icon_state = "glowplant1" }, /obj/effect/decal/cleanable/blood/drip, -/turf/simulated/mineral/floor/ignore_mapgen, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/GreatWolfDen) "WY" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/structure/flora/rocks1, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/template_noop) "Xx" = ( /obj/structure/flora/sif/subterranean{ icon_state = "grass1" }, -/turf/simulated/floor/outdoors/snow, +/turf/simulated/floor/outdoors/snow/virgo3b, /area/submap/GreatWolfDen) "Xy" = ( /obj/item/weapon/bone/ribs, /obj/effect/landmark/loot_spawn/low, -/turf/simulated/mineral/floor/ignore_mapgen, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/GreatWolfDen) "Yw" = ( /obj/structure/loot_pile/surface/bones, /obj/effect/landmark/loot_spawn/low, -/turf/simulated/mineral/floor/ignore_mapgen, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/GreatWolfDen) +"Yy" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/GreatWolfDen) "Zj" = ( -/turf/simulated/floor/outdoors/grass/sif/forest{ - outdoors = 0 - }, +/turf/simulated/floor/outdoors/grass/sif/virgo3b, /area/submap/GreatWolfDen) "Zk" = ( /obj/structure/flora/sif/subterranean{ icon_state = "glowplant2" }, -/turf/simulated/mineral/floor/ignore_mapgen, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/GreatWolfDen) "Zu" = ( /obj/structure/loot_pile/surface/bones, /obj/effect/landmark/loot_spawn/low, /obj/effect/decal/cleanable/dirt, /obj/random/projectile/scrapped_gun, -/turf/simulated/mineral/floor/ignore_mapgen, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/GreatWolfDen) (1,1,1) = {" @@ -808,7 +841,7 @@ tm tm tm jg -yi +BR Mv tm tm @@ -841,11 +874,11 @@ yi CR xK uY -QJ +xu Zu zs -QJ -QJ +xu +xu Mv tm tm @@ -874,12 +907,12 @@ qb lu mk uY -QJ -QJ +xu +xu kk -QJ -QJ -QJ +xu +xu +xu tb tm tm @@ -904,15 +937,15 @@ mm Rb EU lQ -yi +BR Kb QM Iw -QJ +xu RW Zk -QJ -QJ +xu +xu tm tm tm @@ -938,13 +971,13 @@ bI DV tm wc -QJ -QJ -QJ -QJ -QJ +xu +xu +xu +xu +xu Cd -QJ +xu kg tm tm @@ -975,9 +1008,9 @@ Tn Zj Zj uz -QJ -QJ -yi +xu +xu +BR tm tm tm @@ -1008,8 +1041,8 @@ Xx rM Zj Iw -QJ -QJ +xu +xu tm tm tm @@ -1033,14 +1066,14 @@ CR CR tm yF -qb +Yy Fy Zj Rj Kp Lz Zj -QJ +xu uz Xy tm @@ -1072,9 +1105,9 @@ bY MD yG Zj -QJ +xu If -QJ +xu tm tm OL @@ -1105,7 +1138,7 @@ QA Zj kL uz -QJ +xu Mv tm tm @@ -1130,15 +1163,15 @@ tm tm vu WR -EU +GZ nv KU Rj Zj -QJ -QJ -QJ -QJ +xu +xu +xu +xu tm tm OL @@ -1160,7 +1193,7 @@ tm tm tm zs -QJ +xu xK Ic Zj @@ -1168,8 +1201,8 @@ Zj bY Zj nd -QJ -QJ +xu +xu lL tm tm @@ -1193,13 +1226,13 @@ tm tm tm Hb -QJ +xu uz -QJ +xu Zj Zj Zj -QJ +xu uz xt tm @@ -1225,12 +1258,12 @@ tm tm tm PC -QJ -qb +xu +Yy kk Ic uz -QJ +xu Vq xt Rf @@ -1257,12 +1290,12 @@ tm tm tm tm -QJ +xu WH iX yH -qb -QJ +Yy +xu Vq Yw tm @@ -1290,10 +1323,10 @@ tm tm tm zl -yi -QJ +BR +xu ge -QJ +xu Vq xt tm diff --git a/maps/submaps/surface_submaps/plains/hotspring.dmm b/maps/submaps/surface_submaps/plains/hotspring.dmm index 70f5fe2d85..f1fd605644 100644 --- a/maps/submaps/surface_submaps/plains/hotspring.dmm +++ b/maps/submaps/surface_submaps/plains/hotspring.dmm @@ -1,61 +1,416 @@ -"a" = (/turf/template_noop,/area/submap/hotspring) -"c" = (/obj/structure/bonfire/sifwood,/turf/simulated/floor/outdoors/dirt,/area/submap/hotspring) -"d" = (/obj/effect/effect/steam,/turf/simulated/floor/water/shoreline/corner{dir = 4},/area/submap/hotspring) -"e" = (/obj/structure/window/reinforced{dir = 8; health = 1e+006},/obj/structure/loot_pile/maint/trash,/turf/simulated/floor/outdoors/grass/sif,/area/submap/hotspring) -"f" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/wood/sif,/area/submap/hotspring) -"g" = (/turf/simulated/floor/outdoors/mud,/area/submap/hotspring) -"h" = (/obj/structure/window/reinforced{dir = 8; health = 1e+006},/turf/simulated/floor/outdoors/grass/sif,/area/submap/hotspring) -"i" = (/obj/random/trash,/turf/simulated/floor/outdoors/grass/sif,/area/submap/hotspring) -"j" = (/obj/structure/table/rack,/obj/item/weapon/storage/fancy/candle_box,/obj/item/weapon/flame/lighter/random{pixel_x = 7},/obj/item/weapon/storage/fancy/candle_box{pixel_x = -6},/obj/item/weapon/storage/firstaid{pixel_x = 4; pixel_y = -6},/obj/item/weapon/wrapping_paper,/turf/simulated/floor/wood/sif,/area/submap/hotspring) -"k" = (/obj/effect/effect/steam,/obj/effect/map_effect/interval/effect_emitter/steam,/turf/simulated/floor/water,/area/submap/hotspring) -"m" = (/obj/effect/effect/steam,/turf/simulated/floor/water/shoreline/corner,/area/submap/hotspring) -"n" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/wood/sif,/area/submap/hotspring) -"o" = (/obj/structure/table/woodentable,/obj/item/weapon/material/harpoon,/obj/item/pizzabox/vegetable,/turf/simulated/floor/wood/sif,/area/submap/hotspring) -"p" = (/obj/effect/effect/steam,/turf/simulated/floor/water/shoreline{dir = 1},/area/submap/hotspring) -"r" = (/obj/item/weapon/material/shard,/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/wood/sif,/area/submap/hotspring) -"s" = (/obj/random/junk,/turf/simulated/floor/outdoors/dirt,/area/submap/hotspring) -"t" = (/obj/structure/table/bench/wooden,/turf/simulated/floor/outdoors/dirt,/area/submap/hotspring) -"u" = (/obj/random/junk,/turf/simulated/floor/outdoors/mud,/area/submap/hotspring) -"v" = (/obj/effect/effect/steam,/turf/simulated/floor/water/shoreline/corner{dir = 1},/area/submap/hotspring) -"w" = (/obj/structure/closet/crate/bin,/turf/simulated/floor/wood/sif/broken,/area/submap/hotspring) -"x" = (/obj/structure/table/woodentable,/obj/item/trash/candle,/turf/simulated/floor/wood/sif,/area/submap/hotspring) -"z" = (/obj/effect/effect/steam,/turf/simulated/floor/water/shoreline/corner{dir = 8},/area/submap/hotspring) -"A" = (/obj/item/weapon/material/shard,/turf/template_noop,/area/submap/hotspring) -"C" = (/obj/effect/effect/steam,/turf/simulated/floor/water/shoreline{dir = 8},/area/submap/hotspring) -"D" = (/obj/structure/window/reinforced{dir = 4; health = 1e+006},/turf/template_noop,/area/submap/hotspring) -"E" = (/obj/effect/effect/steam,/turf/simulated/floor/water/shoreline,/area/submap/hotspring) -"F" = (/turf/simulated/floor/outdoors/dirt,/area/submap/hotspring) -"H" = (/obj/random/trash,/turf/simulated/floor/outdoors/mud,/area/submap/hotspring) -"I" = (/obj/effect/effect/steam,/turf/simulated/floor/water/shoreline{dir = 9},/area/submap/hotspring) -"J" = (/obj/structure/simple_door/sifwood,/turf/simulated/floor/wood/sif,/area/submap/hotspring) -"K" = (/turf/simulated/floor/outdoors/grass/sif,/area/submap/hotspring) -"L" = (/obj/item/weapon/inflatable_duck,/obj/effect/effect/steam,/turf/simulated/floor/water/shoreline,/area/submap/hotspring) -"M" = (/obj/random/junk,/obj/random/junk,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/wood/sif/broken,/area/submap/hotspring) -"N" = (/turf/simulated/floor/outdoors/rocks,/area/submap/hotspring) -"O" = (/obj/structure/loot_pile/maint/trash,/turf/template_noop,/area/submap/hotspring) -"P" = (/obj/structure/window/reinforced{dir = 4; health = 1e+006},/obj/item/weapon/material/shard{pixel_x = 4; pixel_y = 7},/turf/template_noop,/area/submap/hotspring) -"R" = (/obj/structure/window/reinforced{dir = 8; health = 1e+006},/obj/item/weapon/material/shard,/obj/structure/loot_pile/maint/trash,/turf/template_noop,/area/submap/hotspring) -"T" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/wood/sif/broken,/area/submap/hotspring) -"U" = (/obj/structure/table/rack,/obj/item/clothing/under/swimsuit/striped,/obj/item/clothing/under/swimsuit/stripper/stripper_pink,/turf/simulated/floor/wood/sif,/area/submap/hotspring) -"V" = (/obj/effect/effect/steam,/turf/simulated/floor/water/shoreline{dir = 6},/area/submap/hotspring) -"X" = (/obj/random/junk,/obj/random/junk,/turf/simulated/floor/outdoors/dirt,/area/submap/hotspring) -"Y" = (/turf/simulated/wall/log_sif,/area/submap/hotspring) -"Z" = (/obj/item/weapon/material/shard,/obj/item/weapon/material/shard{pixel_x = 5},/turf/template_noop,/area/submap/hotspring) +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/template_noop, +/area/submap/hotspring) +"c" = ( +/obj/structure/bonfire/sifwood, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/hotspring) +"e" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 1e+006 + }, +/obj/structure/loot_pile/maint/trash, +/turf/simulated/floor/outdoors/grass/sif/virgo3b, +/area/submap/hotspring) +"g" = ( +/turf/simulated/floor/outdoors/mud/virgo3b, +/area/submap/hotspring) +"h" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 1e+006 + }, +/turf/simulated/floor/outdoors/grass/sif/virgo3b, +/area/submap/hotspring) +"i" = ( +/obj/random/trash, +/turf/simulated/floor/outdoors/grass/sif/virgo3b, +/area/submap/hotspring) +"j" = ( +/obj/structure/table/rack, +/obj/item/weapon/storage/fancy/candle_box, +/obj/item/weapon/flame/lighter/random{ + pixel_x = 7 + }, +/obj/item/weapon/storage/fancy/candle_box{ + pixel_x = -6 + }, +/obj/item/weapon/storage/firstaid{ + pixel_x = 4; + pixel_y = -6 + }, +/obj/item/weapon/wrapping_paper, +/turf/simulated/floor/wood/sif/virgo3b, +/area/submap/hotspring) +"k" = ( +/obj/effect/effect/steam, +/obj/effect/map_effect/interval/effect_emitter/steam, +/turf/simulated/floor/water/virgo3b, +/area/submap/hotspring) +"o" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/material/harpoon, +/obj/item/pizzabox/vegetable, +/turf/simulated/floor/wood/sif/virgo3b, +/area/submap/hotspring) +"r" = ( +/obj/item/weapon/material/shard, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/floor/wood/sif/virgo3b, +/area/submap/hotspring) +"s" = ( +/obj/random/junk, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/hotspring) +"t" = ( +/obj/structure/table/bench/wooden, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/hotspring) +"u" = ( +/obj/random/junk, +/turf/simulated/floor/outdoors/mud/virgo3b, +/area/submap/hotspring) +"w" = ( +/obj/structure/closet/crate/bin, +/turf/simulated/floor/wood/sif/virgo3b, +/area/submap/hotspring) +"x" = ( +/obj/structure/table/woodentable, +/obj/item/trash/candle, +/turf/simulated/floor/wood/sif/virgo3b, +/area/submap/hotspring) +"D" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 1e+006 + }, +/turf/template_noop, +/area/submap/hotspring) +"F" = ( +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/hotspring) +"H" = ( +/obj/random/trash, +/turf/simulated/floor/outdoors/mud/virgo3b, +/area/submap/hotspring) +"J" = ( +/obj/structure/simple_door/sifwood, +/turf/simulated/floor/wood/sif/virgo3b, +/area/submap/hotspring) +"K" = ( +/turf/simulated/floor/outdoors/grass/sif/virgo3b, +/area/submap/hotspring) +"L" = ( +/obj/item/weapon/inflatable_duck, +/obj/effect/effect/steam, +/turf/simulated/floor/water/virgo3b, +/area/submap/hotspring) +"M" = ( +/obj/random/junk, +/obj/random/junk, +/turf/simulated/floor/wood/sif/virgo3b, +/area/submap/hotspring) +"N" = ( +/turf/simulated/floor/outdoors/rocks/virgo3b, +/area/submap/hotspring) +"O" = ( +/obj/structure/loot_pile/maint/trash, +/turf/template_noop, +/area/submap/hotspring) +"R" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 1e+006 + }, +/obj/item/weapon/material/shard, +/obj/structure/loot_pile/maint/trash, +/turf/template_noop, +/area/submap/hotspring) +"T" = ( +/turf/simulated/floor/wood/sif/virgo3b, +/area/submap/hotspring) +"U" = ( +/obj/structure/table/rack, +/obj/item/clothing/under/swimsuit/striped, +/obj/item/clothing/under/swimsuit/stripper/stripper_pink, +/turf/simulated/floor/wood/sif/virgo3b, +/area/submap/hotspring) +"V" = ( +/obj/effect/effect/steam, +/turf/simulated/floor/water/virgo3b, +/area/submap/hotspring) +"X" = ( +/obj/random/junk, +/obj/random/junk, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/hotspring) +"Y" = ( +/turf/simulated/wall/log_sif, +/area/submap/hotspring) +"Z" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 1e+006 + }, +/turf/template_noop, +/area/submap/hotspring) (1,1,1) = {" -DYYYYYRaaaaFaaa -DoxwjUZaaaKFaga -ArMnfTeKKKFKKKa -PYYYJYhtttuFFKa -aOKXggFggHgNgFK -aaKKFggNmEvggKa -aatKsgmLVIdgsKa -aFcFggCkIdNFKia -aatKFgzpdgFKKKa -aaKFugNgggsKKFg -aaKKFtttFgFKFKa -aaKKiKKKKFKKFKa -aaKKFKFKKKKFKKa -aKgFaagFaaaaaKa -aaaaaaaaaaaaaaa +D +D +D +D +a +a +a +a +a +a +a +a +a +a +a +"} +(2,1,1) = {" +Y +o +r +Y +O +a +a +F +a +a +a +a +a +K +a +"} +(3,1,1) = {" +Y +x +M +Y +K +K +t +c +t +K +K +K +K +g +a +"} +(4,1,1) = {" +Y +w +T +Y +X +K +K +F +K +F +K +K +K +F +a +"} +(5,1,1) = {" +Y +j +T +J +g +F +s +g +F +u +F +i +F +a +a +"} +(6,1,1) = {" +Y +U +T +Y +g +g +g +g +g +g +t +K +K +a +a +"} +(7,1,1) = {" +R +Z +e +h +F +g +V +V +V +N +t +K +F +g +a +"} +(8,1,1) = {" +a +a +K +t +g +N +L +k +V +g +t +K +K +F +a +"} +(9,1,1) = {" +a +a +K +t +g +V +V +V +V +g +F +K +K +a +a +"} +(10,1,1) = {" +a +a +K +t +H +V +V +V +g +g +g +F +K +a +a +"} +(11,1,1) = {" +a +K +F +u +g +V +V +N +F +s +F +K +K +a +a +"} +(12,1,1) = {" +F +F +K +F +N +g +g +F +K +K +K +K +F +a +a +"} +(13,1,1) = {" +a +a +K +F +g +g +s +K +K +K +F +F +K +a +a +"} +(14,1,1) = {" +a +g +K +K +F +K +K +i +K +F +K +K +K +K +a +"} +(15,1,1) = {" +a +a +a +a +K +a +a +a +a +g +a +a +a +a +a "} diff --git a/maps/submaps/surface_submaps/plains/house1_arealess.dmm b/maps/submaps/surface_submaps/plains/house1_arealess.dmm deleted file mode 100644 index 9edae2528a..0000000000 --- a/maps/submaps/surface_submaps/plains/house1_arealess.dmm +++ /dev/null @@ -1,80 +0,0 @@ -"aa" = (/turf/template_noop,/area/template_noop) -"ab" = (/obj/structure/railing,/turf/template_noop,/area/template_noop) -"ac" = (/obj/structure/railing{dir = 4},/turf/template_noop,/area/template_noop) -"ad" = (/turf/simulated/floor/outdoors/grass/sif,/area/template_noop) -"ae" = (/obj/structure/railing{dir = 8},/turf/template_noop,/area/template_noop) -"af" = (/obj/structure/railing{dir = 4},/turf/simulated/floor/outdoors/grass/sif,/area/template_noop) -"ag" = (/turf/simulated/floor/outdoors/dirt,/area/template_noop) -"ah" = (/obj/structure/table/bench/wooden,/turf/simulated/floor/outdoors/dirt,/area/template_noop) -"ai" = (/obj/structure/railing{dir = 8},/turf/simulated/floor/outdoors/grass/sif,/area/template_noop) -"aj" = (/obj/structure/target_stake,/turf/simulated/floor/outdoors/dirt,/area/template_noop) -"ak" = (/obj/structure/bonfire/sifwood,/turf/simulated/floor/outdoors/dirt,/area/template_noop) -"al" = (/obj/item/target,/turf/simulated/floor/outdoors/grass/sif,/area/template_noop) -"am" = (/obj/item/target/syndicate,/turf/simulated/floor/outdoors/grass/sif,/area/template_noop) -"an" = (/turf/simulated/wall/wood,/area/template_noop) -"ao" = (/obj/structure/simple_door/wood,/turf/simulated/floor/wood,/area/template_noop) -"ap" = (/obj/structure/table/marble,/obj/item/weapon/material/kitchen/rollingpin,/turf/simulated/floor/tiled,/area/template_noop) -"aq" = (/obj/structure/table/marble,/obj/item/weapon/material/knife,/turf/simulated/floor/tiled,/area/template_noop) -"ar" = (/obj/structure/grille/rustic,/obj/structure/window/reinforced/full,/turf/simulated/floor/plating,/area/template_noop) -"as" = (/turf/simulated/floor/wood,/area/template_noop) -"at" = (/obj/structure/table/standard,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/brute,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/burn,/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/purity,/turf/simulated/floor/tiled/freezer,/area/template_noop) -"au" = (/obj/structure/toilet,/turf/simulated/floor/tiled/freezer,/area/template_noop) -"av" = (/obj/structure/table/marble,/obj/random/drinkbottle,/turf/simulated/floor/tiled,/area/template_noop) -"aw" = (/obj/item/device/flashlight/lantern,/turf/simulated/floor/tiled,/area/template_noop) -"ax" = (/obj/structure/table/glass,/obj/structure/window/reinforced,/obj/item/weapon/coin/phoron,/turf/simulated/floor/wood,/area/template_noop) -"ay" = (/obj/item/clothing/head/bearpelt{pixel_y = 6},/obj/structure/table/glass,/obj/structure/window/reinforced,/turf/simulated/floor/wood,/area/template_noop) -"az" = (/obj/item/weapon/material/harpoon,/obj/structure/table/glass,/obj/structure/window/reinforced,/turf/simulated/floor/wood,/area/template_noop) -"aA" = (/obj/structure/table/glass,/obj/structure/window/reinforced,/obj/item/clothing/accessory/medal/conduct{pixel_y = 6},/turf/simulated/floor/wood,/area/template_noop) -"aB" = (/obj/structure/sink{icon_state = "sink"; dir = 8; pixel_x = -12; pixel_y = 2},/obj/structure/mirror{dir = 4; pixel_x = -28; pixel_y = 0},/turf/simulated/floor/tiled/freezer,/area/template_noop) -"aC" = (/obj/item/weapon/towel,/turf/simulated/floor/tiled/freezer,/area/template_noop) -"aD" = (/obj/structure/closet/secure_closet/freezer/fridge,/turf/simulated/floor/tiled,/area/template_noop) -"aE" = (/turf/simulated/floor/tiled,/area/template_noop) -"aF" = (/obj/structure/simple_door/wood,/turf/simulated/floor/tiled,/area/template_noop) -"aG" = (/obj/structure/simple_door/wood,/turf/simulated/floor/tiled/freezer,/area/template_noop) -"aH" = (/obj/item/device/flashlight/lantern,/turf/simulated/floor/tiled/freezer,/area/template_noop) -"aI" = (/obj/structure/window/reinforced/tinted{dir = 8; icon_state = "twindow"},/obj/machinery/shower{dir = 1},/obj/random/soap,/turf/simulated/floor/tiled/freezer,/area/template_noop) -"aJ" = (/turf/simulated/floor/carpet/turcarpet,/area/template_noop) -"aK" = (/obj/structure/bed/chair/wood,/turf/simulated/floor/carpet/turcarpet,/area/template_noop) -"aL" = (/obj/structure/bed/chair/wood{dir = 4},/turf/simulated/floor/carpet/turcarpet,/area/template_noop) -"aM" = (/obj/structure/table/wooden_reinforced,/obj/item/weapon/storage/fancy/candle_box,/turf/simulated/floor/carpet/turcarpet,/area/template_noop) -"aN" = (/obj/structure/table/wooden_reinforced,/obj/item/device/binoculars/spyglass,/turf/simulated/floor/carpet/turcarpet,/area/template_noop) -"aO" = (/obj/structure/table/wooden_reinforced,/obj/item/device/flashlight/lantern,/turf/simulated/floor/carpet/turcarpet,/area/template_noop) -"aP" = (/obj/structure/bed/chair/wood{dir = 1},/turf/simulated/floor/carpet/turcarpet,/area/template_noop) -"aQ" = (/obj/structure/table/rack,/obj/item/device/gps/explorer,/obj/item/device/radio/headset/explorer,/turf/simulated/floor/wood,/area/template_noop) -"aR" = (/obj/structure/simple_door/wood,/turf/simulated/floor/carpet/sblucarpet,/area/template_noop) -"aS" = (/turf/simulated/floor/carpet/sblucarpet,/area/template_noop) -"aT" = (/obj/machinery/space_heater,/turf/simulated/floor/carpet/sblucarpet,/area/template_noop) -"aU" = (/obj/structure/table/rack,/obj/item/clothing/under/explorer,/obj/item/weapon/cell/device,/obj/item/weapon/cell/device,/obj/item/weapon/cell/device,/turf/simulated/floor/wood,/area/template_noop) -"aV" = (/obj/item/device/flashlight/lantern,/turf/simulated/floor/wood,/area/template_noop) -"aW" = (/obj/machinery/space_heater,/turf/simulated/floor/wood,/area/template_noop) -"aX" = (/obj/structure/coatrack,/turf/simulated/floor/wood,/area/template_noop) -"aY" = (/obj/structure/table/rack,/obj/item/clothing/suit/storage/hooded/explorer,/obj/item/clothing/mask/gas/explorer,/obj/item/weapon/material/knife/tacknife/survival,/turf/simulated/floor/wood,/area/template_noop) -"aZ" = (/obj/item/clothing/shoes/boots/winter/explorer,/turf/simulated/floor/wood,/area/template_noop) -"ba" = (/obj/structure/table/woodentable,/obj/random/action_figure,/obj/item/device/flashlight/lantern,/turf/simulated/floor/carpet/sblucarpet,/area/template_noop) -"bb" = (/obj/item/weapon/bedsheet/hopdouble,/obj/structure/bed/double/padded,/turf/simulated/floor/carpet/sblucarpet,/area/template_noop) -"bc" = (/obj/structure/sign/kiddieplaque{desc = "To anyone reading this, you'll note that I'm not home right now, and unfortunately due to reassignment, I won't be for a very long time. Exploring somewhere really far and dangerous now. You can stay if you want, but please try to keep my home in good condition."; name = "read me visitors"},/turf/simulated/wall/wood,/area/template_noop) -"bd" = (/obj/structure/loot_pile/maint/trash,/turf/simulated/floor/outdoors/grass/sif,/area/template_noop) -"be" = (/obj/structure/loot_pile/maint/junk,/turf/simulated/floor/outdoors/grass/sif,/area/template_noop) - -(1,1,1) = {" -aaabababababababababababababababaa -acadadadadadadadadadadadadadadadae -afadagagagagagagagagagahahahagadai -afagajagagagagagagagagagakagagagai -afadagagagagagagagagagahahahagadai -afalamaladadadagagagadadadadadadai -adananananadadanaoanadadananananad -adanapaqanarananasananaranatauanad -adaravawanaxayanaoanazaAanaBaCanad -adanaDaEaFasasasasasasasaGaHaIanad -adananananasaJaKaKaKaJasananananad -adadadadanasaLaMaNaOaPasanadadadad -adananananasaJaPaPaPaJasananananad -adanaQasaoasasasasasasasaRaSaTanad -adaraUaVanasaWanaoanaXasanaSaSarad -adanaYaZanarananasananaranbabbanad -adananananadadanaobcadadananananad -adbdbdbdbeadadadagadadadadadadadad -adagagagagagagagagagagagagagagagad -adagagagagagagagagagagagagagagagad -"} diff --git a/maps/submaps/surface_submaps/plains/house1_arealess_vr.dmm b/maps/submaps/surface_submaps/plains/house1_arealess_vr.dmm deleted file mode 100644 index 2da3c52a43..0000000000 --- a/maps/submaps/surface_submaps/plains/house1_arealess_vr.dmm +++ /dev/null @@ -1,666 +0,0 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aa" = ( -/turf/template_noop, -/area/template_noop) -"ab" = ( -/obj/structure/railing, -/turf/template_noop, -/area/template_noop) -"ac" = ( -/obj/structure/railing{ - dir = 4 - }, -/turf/template_noop, -/area/template_noop) -"ad" = ( -/turf/simulated/floor/outdoors/grass/sif, -/area/template_noop) -"ae" = ( -/obj/structure/railing{ - dir = 8 - }, -/turf/template_noop, -/area/template_noop) -"af" = ( -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/outdoors/grass/sif, -/area/template_noop) -"ag" = ( -/turf/simulated/floor/outdoors/dirt, -/area/template_noop) -"ah" = ( -/obj/structure/table/bench/wooden, -/turf/simulated/floor/outdoors/dirt, -/area/template_noop) -"ai" = ( -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor/outdoors/grass/sif, -/area/template_noop) -"aj" = ( -/obj/structure/target_stake, -/turf/simulated/floor/outdoors/dirt, -/area/template_noop) -"ak" = ( -/obj/item/target, -/turf/simulated/floor/outdoors/grass/sif, -/area/template_noop) -"al" = ( -/obj/item/target/syndicate, -/turf/simulated/floor/outdoors/grass/sif, -/area/template_noop) -"am" = ( -/turf/simulated/wall/wood, -/area/template_noop) -"an" = ( -/obj/structure/simple_door/wood, -/turf/simulated/floor/wood, -/area/template_noop) -"ao" = ( -/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary/tram, -/turf/simulated/floor/wood, -/area/template_noop) -"ap" = ( -/turf/simulated/floor/wood, -/area/template_noop) -"aq" = ( -/obj/structure/table/marble, -/obj/item/weapon/material/kitchen/rollingpin, -/turf/simulated/floor/tiled, -/area/template_noop) -"ar" = ( -/obj/structure/table/marble, -/obj/item/weapon/material/knife, -/turf/simulated/floor/tiled, -/area/template_noop) -"as" = ( -/obj/structure/grille/rustic, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, -/area/template_noop) -"at" = ( -/obj/structure/table/standard, -/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/brute, -/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/burn, -/obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/purity, -/turf/simulated/floor/tiled/freezer, -/area/template_noop) -"au" = ( -/obj/structure/toilet, -/turf/simulated/floor/tiled/freezer, -/area/template_noop) -"av" = ( -/obj/structure/table/marble, -/obj/random/drinkbottle, -/turf/simulated/floor/tiled, -/area/template_noop) -"aw" = ( -/obj/item/device/flashlight/lantern, -/turf/simulated/floor/tiled, -/area/template_noop) -"ax" = ( -/obj/structure/table/glass, -/obj/structure/window/reinforced, -/obj/item/weapon/coin/phoron, -/turf/simulated/floor/wood, -/area/template_noop) -"ay" = ( -/obj/item/clothing/head/bearpelt{ - pixel_y = 6 - }, -/obj/structure/table/glass, -/obj/structure/window/reinforced, -/turf/simulated/floor/wood, -/area/template_noop) -"az" = ( -/obj/item/weapon/material/harpoon, -/obj/structure/table/glass, -/obj/structure/window/reinforced, -/turf/simulated/floor/wood, -/area/template_noop) -"aA" = ( -/obj/structure/table/glass, -/obj/structure/window/reinforced, -/obj/item/clothing/accessory/medal/conduct{ - pixel_y = 6 - }, -/turf/simulated/floor/wood, -/area/template_noop) -"aB" = ( -/obj/structure/sink{ - icon_state = "sink"; - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/mirror{ - dir = 4; - pixel_x = -28; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/freezer, -/area/template_noop) -"aC" = ( -/obj/item/weapon/towel, -/turf/simulated/floor/tiled/freezer, -/area/template_noop) -"aD" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/turf/simulated/floor/tiled, -/area/template_noop) -"aE" = ( -/turf/simulated/floor/tiled, -/area/template_noop) -"aF" = ( -/obj/structure/simple_door/wood, -/turf/simulated/floor/tiled, -/area/template_noop) -"aG" = ( -/obj/structure/simple_door/wood, -/turf/simulated/floor/tiled/freezer, -/area/template_noop) -"aH" = ( -/obj/item/device/flashlight/lantern, -/turf/simulated/floor/tiled/freezer, -/area/template_noop) -"aI" = ( -/obj/structure/window/reinforced/tinted{ - dir = 8; - icon_state = "twindow" - }, -/obj/machinery/shower{ - dir = 1 - }, -/obj/random/soap, -/turf/simulated/floor/tiled/freezer, -/area/template_noop) -"aJ" = ( -/turf/simulated/floor/carpet/turcarpet, -/area/template_noop) -"aK" = ( -/obj/structure/bed/chair/wood, -/turf/simulated/floor/carpet/turcarpet, -/area/template_noop) -"aL" = ( -/obj/structure/bed/chair/wood{ - dir = 4 - }, -/turf/simulated/floor/carpet/turcarpet, -/area/template_noop) -"aM" = ( -/obj/structure/table/wooden_reinforced, -/obj/item/weapon/storage/fancy/candle_box, -/turf/simulated/floor/carpet/turcarpet, -/area/template_noop) -"aN" = ( -/obj/structure/table/wooden_reinforced, -/obj/item/device/binoculars/spyglass, -/turf/simulated/floor/carpet/turcarpet, -/area/template_noop) -"aO" = ( -/obj/structure/table/wooden_reinforced, -/obj/item/device/flashlight/lantern, -/turf/simulated/floor/carpet/turcarpet, -/area/template_noop) -"aP" = ( -/obj/structure/bed/chair/wood{ - dir = 1 - }, -/turf/simulated/floor/carpet/turcarpet, -/area/template_noop) -"aQ" = ( -/obj/structure/table/rack, -/obj/item/device/gps/explorer, -/obj/item/device/radio/headset/explorer, -/turf/simulated/floor/wood, -/area/template_noop) -"aR" = ( -/obj/structure/simple_door/wood, -/turf/simulated/floor/carpet/sblucarpet, -/area/template_noop) -"aS" = ( -/turf/simulated/floor/carpet/sblucarpet, -/area/template_noop) -"aT" = ( -/obj/machinery/space_heater, -/turf/simulated/floor/carpet/sblucarpet, -/area/template_noop) -"aU" = ( -/obj/structure/table/rack, -/obj/item/clothing/under/explorer, -/obj/item/weapon/cell/device, -/obj/item/weapon/cell/device, -/obj/item/weapon/cell/device, -/turf/simulated/floor/wood, -/area/template_noop) -"aV" = ( -/obj/item/device/flashlight/lantern, -/turf/simulated/floor/wood, -/area/template_noop) -"aW" = ( -/obj/machinery/space_heater, -/turf/simulated/floor/wood, -/area/template_noop) -"aX" = ( -/obj/structure/coatrack, -/turf/simulated/floor/wood, -/area/template_noop) -"aY" = ( -/obj/structure/table/rack, -/obj/item/clothing/suit/storage/hooded/explorer, -/obj/item/clothing/mask/gas/explorer, -/obj/item/weapon/material/knife/tacknife/survival, -/turf/simulated/floor/wood, -/area/template_noop) -"aZ" = ( -/obj/item/clothing/shoes/boots/winter/explorer, -/turf/simulated/floor/wood, -/area/template_noop) -"ba" = ( -/obj/structure/table/woodentable, -/obj/random/action_figure, -/obj/item/device/flashlight/lantern, -/turf/simulated/floor/carpet/sblucarpet, -/area/template_noop) -"bb" = ( -/obj/item/weapon/bedsheet/hopdouble, -/obj/structure/bed/double/padded, -/turf/simulated/floor/carpet/sblucarpet, -/area/template_noop) -"bc" = ( -/obj/structure/loot_pile/maint/trash, -/turf/simulated/floor/outdoors/grass/sif, -/area/template_noop) -"bd" = ( -/obj/structure/loot_pile/maint/junk, -/turf/simulated/floor/outdoors/grass/sif, -/area/template_noop) -"be" = ( -/obj/structure/sign/kiddieplaque{ - desc = "To anyone reading this, you'll note that I'm not home right now, and unfortunately due to reassignment, I won't be for a very long time. Exploring somewhere really far and dangerous now. You can stay if you want, but please try to keep my home in good condition."; - name = "read me visitors" - }, -/turf/simulated/wall/wood, -/area/template_noop) -"zt" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/simulated/floor/wood, -/area/template_noop) - -(1,1,1) = {" -aa -ac -af -af -af -af -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -"} -(2,1,1) = {" -ab -ad -ad -ag -ad -ak -am -am -as -am -am -ad -am -am -as -am -am -bc -ag -ag -"} -(3,1,1) = {" -ab -ad -ag -aj -ag -al -am -aq -av -aD -am -ad -am -aQ -aU -aY -am -bc -ag -ag -"} -(4,1,1) = {" -ab -ad -ag -ag -ag -ak -am -ar -aw -aE -am -ad -am -ap -aV -aZ -am -bc -ag -ag -"} -(5,1,1) = {" -ab -ad -ag -ag -ag -ad -am -am -am -aF -am -am -am -an -am -am -am -bd -ag -ag -"} -(6,1,1) = {" -ab -ad -ag -ag -ag -ad -ad -as -ax -ap -ap -zt -ap -ap -ap -as -ad -ad -ag -ag -"} -(7,1,1) = {" -ab -ad -ag -ag -ag -am -am -am -ay -ap -aJ -aL -aJ -ap -aW -am -am -am -ag -ag -"} -(8,1,1) = {" -ab -ad -ag -ag -ag -am -ao -am -am -ap -aK -aM -aP -ap -am -am -ao -am -ag -ag -"} -(9,1,1) = {" -ab -ad -ag -ag -ag -an -ap -ap -an -ap -aK -aN -aP -ap -an -ap -ap -an -ag -ag -"} -(10,1,1) = {" -ab -ad -ag -ag -ag -am -ao -am -am -ap -aK -aO -aP -ap -am -am -ao -be -ag -ag -"} -(11,1,1) = {" -ab -ad -ag -ag -ag -am -am -am -az -ap -aJ -aP -aJ -ap -aX -am -am -am -ag -ag -"} -(12,1,1) = {" -ab -ad -ah -ag -ah -ad -ad -as -aA -ap -ap -ap -ap -ap -ap -as -ad -ad -ag -ag -"} -(13,1,1) = {" -ab -ad -ah -ag -ah -ad -am -am -am -aG -am -am -am -aR -am -am -am -ad -ag -ag -"} -(14,1,1) = {" -ab -ad -ah -ag -ah -ad -am -at -aB -aH -am -ad -am -aS -aS -ba -am -ad -ag -ag -"} -(15,1,1) = {" -ab -ad -ag -ag -ag -ad -am -au -aC -aI -am -ad -am -aT -aS -bb -am -ad -ag -ag -"} -(16,1,1) = {" -ab -ad -ad -ag -ad -ad -am -am -am -am -am -ad -am -am -as -am -am -ad -ag -ag -"} -(17,1,1) = {" -aa -ae -ai -ai -ai -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -"} diff --git a/maps/submaps/surface_submaps/plains/house1_vr.dmm b/maps/submaps/surface_submaps/plains/house1_vr.dmm index e34e005ff0..2cbbee99d1 100644 --- a/maps/submaps/surface_submaps/plains/house1_vr.dmm +++ b/maps/submaps/surface_submaps/plains/house1_vr.dmm @@ -13,7 +13,7 @@ /turf/template_noop, /area/submap/house1) "ad" = ( -/turf/simulated/floor/outdoors/grass/sif, +/turf/simulated/floor/outdoors/grass/sif/virgo3b, /area/submap/house1) "ae" = ( /obj/structure/railing{ @@ -25,32 +25,32 @@ /obj/structure/railing{ dir = 4 }, -/turf/simulated/floor/outdoors/grass/sif, +/turf/simulated/floor/outdoors/grass/sif/virgo3b, /area/submap/house1) "ag" = ( -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/house1) "ah" = ( /obj/structure/table/bench/wooden, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/house1) "ai" = ( /obj/structure/railing{ dir = 8 }, -/turf/simulated/floor/outdoors/grass/sif, +/turf/simulated/floor/outdoors/grass/sif/virgo3b, /area/submap/house1) "aj" = ( /obj/structure/target_stake, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/house1) "ak" = ( /obj/item/target, -/turf/simulated/floor/outdoors/grass/sif, +/turf/simulated/floor/outdoors/grass/sif/virgo3b, /area/submap/house1) "al" = ( /obj/item/target/syndicate, -/turf/simulated/floor/outdoors/grass/sif, +/turf/simulated/floor/outdoors/grass/sif/virgo3b, /area/submap/house1) "am" = ( /turf/simulated/wall/wood, @@ -131,15 +131,13 @@ /area/submap/house1) "aB" = ( /obj/structure/sink{ - icon_state = "sink"; dir = 8; pixel_x = -12; pixel_y = 2 }, /obj/structure/mirror{ dir = 4; - pixel_x = -28; - pixel_y = 0 + pixel_x = -28 }, /turf/simulated/floor/tiled/freezer, /area/submap/house1) @@ -168,8 +166,7 @@ /area/submap/house1) "aI" = ( /obj/structure/window/reinforced/tinted{ - dir = 8; - icon_state = "twindow" + dir = 8 }, /obj/machinery/shower{ dir = 1 @@ -271,11 +268,11 @@ /area/submap/house1) "bc" = ( /obj/structure/loot_pile/maint/trash, -/turf/simulated/floor/outdoors/grass/sif, +/turf/simulated/floor/outdoors/grass/sif/virgo3b, /area/submap/house1) "bd" = ( /obj/structure/loot_pile/maint/junk, -/turf/simulated/floor/outdoors/grass/sif, +/turf/simulated/floor/outdoors/grass/sif/virgo3b, /area/submap/house1) "be" = ( /obj/structure/sign/kiddieplaque{ diff --git a/maps/submaps/surface_submaps/plains/leopardmanderden.dmm b/maps/submaps/surface_submaps/plains/leopardmanderden.dmm index ca40db08d6..a2aecaad21 100644 --- a/maps/submaps/surface_submaps/plains/leopardmanderden.dmm +++ b/maps/submaps/surface_submaps/plains/leopardmanderden.dmm @@ -2,7 +2,7 @@ "aK" = ( /obj/item/weapon/ore/silver, /obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/grass/sif/forest{ +/turf/simulated/floor/outdoors/grass/sif/forest/virgo3b{ outdoors = 0 }, /area/submap/LeopardmanderDen) @@ -15,27 +15,31 @@ min_oxy = 0; minbodytemp = 0 }, -/turf/simulated/floor/outdoors/grass/sif/forest{ +/turf/simulated/floor/outdoors/grass/sif/forest/virgo3b{ outdoors = 0 }, /area/submap/LeopardmanderDen) "bj" = ( /obj/item/weapon/ore/bluespace_crystal, -/turf/simulated/floor/outdoors/grass/sif, +/turf/simulated/floor/outdoors/grass/sif/virgo3b{ + outdoors = 0 + }, /area/submap/LeopardmanderDen) "bO" = ( /obj/item/stack/material/gold, -/turf/simulated/floor/outdoors/grass/sif, +/turf/simulated/floor/outdoors/grass/sif/virgo3b{ + outdoors = 0 + }, /area/submap/LeopardmanderDen) "cu" = ( -/turf/simulated/floor/outdoors/rocks{ +/turf/simulated/floor/outdoors/rocks/virgo3b{ outdoors = 0 }, /area/submap/LeopardmanderDen) "dA" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/simple_door/sifwood, -/turf/simulated/floor/outdoors/rocks{ +/turf/simulated/floor/outdoors/rocks/virgo3b{ outdoors = 0 }, /area/submap/LeopardmanderDen) @@ -43,51 +47,49 @@ /obj/structure/railing/grey{ dir = 4 }, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/template_noop) "eF" = ( /obj/structure/ledge/ledge_stairs, -/turf/simulated/floor/outdoors/rocks{ - outdoors = 0 - }, +/turf/simulated/floor/outdoors/rocks/virgo3b, /area/template_noop) "fe" = ( /obj/item/weapon/coin/diamond, /obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/grass/sif/forest{ +/turf/simulated/floor/outdoors/grass/sif/forest/virgo3b{ outdoors = 0 }, /area/submap/LeopardmanderDen) "fQ" = ( /obj/effect/landmark/loot_spawn/low, /obj/item/weapon/ore/gold, -/turf/simulated/floor/outdoors/grass/sif/forest{ +/turf/simulated/floor/outdoors/grass/sif/forest/virgo3b{ outdoors = 0 }, /area/submap/LeopardmanderDen) "gg" = ( /obj/random/obstruction, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/template_noop) "gC" = ( /obj/item/weapon/flame/lighter/zippo/gold, -/turf/simulated/floor/outdoors/grass/sif/forest{ +/turf/simulated/floor/outdoors/grass/sif/forest/virgo3b{ outdoors = 0 }, /area/submap/LeopardmanderDen) "gD" = ( /obj/structure/flora/smallbould, -/turf/simulated/floor/outdoors/rocks{ +/turf/simulated/floor/outdoors/rocks/virgo3b{ outdoors = 0 }, /area/submap/LeopardmanderDen) "gP" = ( /obj/structure/cliff/automatic, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/template_noop) "gU" = ( /obj/item/weapon/coin/gold, -/turf/simulated/floor/outdoors/grass/sif/forest{ +/turf/simulated/floor/outdoors/grass/sif/forest/virgo3b{ outdoors = 0 }, /area/submap/LeopardmanderDen) @@ -97,7 +99,7 @@ /area/submap/LeopardmanderDen) "hr" = ( /obj/structure/flora/rocks1, -/turf/simulated/floor/outdoors/grass/sif/forest{ +/turf/simulated/floor/outdoors/grass/sif/forest/virgo3b{ outdoors = 0 }, /area/submap/LeopardmanderDen) @@ -108,13 +110,13 @@ /obj/structure/railing/grey{ dir = 1 }, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/template_noop) "iV" = ( /obj/structure/cliff/automatic/corner{ dir = 6 }, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/template_noop) "jb" = ( /obj/machinery/crystal/ice, @@ -124,18 +126,18 @@ /obj/structure/cliff/automatic{ dir = 8 }, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/template_noop) "ki" = ( /obj/structure/table/bench/sifwooden/padded, /obj/item/clothing/head/pin/flower/violet, -/turf/simulated/floor/outdoors/grass/sif/forest{ +/turf/simulated/floor/outdoors/grass/sif/forest/virgo3b{ outdoors = 0 }, /area/submap/LeopardmanderDen) "kx" = ( /obj/item/stack/material/gold, -/turf/simulated/floor/outdoors/grass/sif/forest{ +/turf/simulated/floor/outdoors/grass/sif/forest/virgo3b{ outdoors = 0 }, /area/submap/LeopardmanderDen) @@ -143,19 +145,19 @@ /obj/structure/cliff/automatic{ dir = 6 }, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/template_noop) "lb" = ( /obj/structure/cliff/automatic{ dir = 10 }, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/template_noop) "ll" = ( /obj/structure/cliff/automatic/corner{ dir = 10 }, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/template_noop) "mi" = ( /obj/structure/cliff/automatic/ramp{ @@ -164,11 +166,11 @@ /obj/structure/railing/grey{ dir = 8 }, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/template_noop) "mu" = ( /obj/structure/flora/rocks2, -/turf/simulated/floor/outdoors/grass/sif/forest{ +/turf/simulated/floor/outdoors/grass/sif/forest/virgo3b{ outdoors = 0 }, /area/submap/LeopardmanderDen) @@ -177,43 +179,42 @@ /obj/structure/railing/grey{ dir = 4 }, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/template_noop) -"nw" = ( -/turf/simulated/floor/water/ocean{ - outdoors = 0 - }, -/area/submap/LeopardmanderDen) "nG" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/grass/sif/forest{ +/turf/simulated/floor/outdoors/grass/sif/forest/virgo3b{ outdoors = 0 }, /area/submap/LeopardmanderDen) "nR" = ( /mob/living/simple_mob/animal/sif/sakimm, -/turf/simulated/floor/outdoors/grass/sif/forest{ +/turf/simulated/floor/outdoors/grass/sif/forest/virgo3b{ outdoors = 0 }, /area/submap/LeopardmanderDen) "oD" = ( /obj/fiftyspawner/silver, -/turf/simulated/floor/outdoors/grass/sif, +/turf/simulated/floor/outdoors/grass/sif/virgo3b{ + outdoors = 0 + }, /area/submap/LeopardmanderDen) "pQ" = ( /obj/structure/cliff/automatic/corner, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/template_noop) "qa" = ( /obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/grass/sif, +/turf/simulated/floor/outdoors/grass/sif/virgo3b{ + outdoors = 0 + }, /area/submap/LeopardmanderDen) "qg" = ( /obj/structure/bed/chair/sofa/right{ dir = 8 }, -/turf/simulated/floor/outdoors/rocks{ +/turf/simulated/floor/outdoors/rocks/virgo3b{ outdoors = 0 }, /area/submap/LeopardmanderDen) @@ -222,19 +223,19 @@ /area/template_noop) "ro" = ( /obj/structure/flora/lily3, -/turf/simulated/floor/water/ocean{ +/turf/simulated/floor/water/virgo3b{ outdoors = 0 }, /area/submap/LeopardmanderDen) "rD" = ( /obj/structure/flora/ausbushes/brflowers, -/turf/simulated/floor/outdoors/grass/sif/forest{ +/turf/simulated/floor/outdoors/grass/sif/forest/virgo3b{ outdoors = 0 }, /area/submap/LeopardmanderDen) "rG" = ( /obj/structure/flora/pottedplant/flower, -/turf/simulated/floor/outdoors/grass/sif/forest{ +/turf/simulated/floor/outdoors/grass/sif/forest/virgo3b{ outdoors = 0 }, /area/submap/LeopardmanderDen) @@ -243,14 +244,14 @@ /obj/structure/railing/grey{ dir = 4 }, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/template_noop) "sN" = ( /mob/living/simple_mob/otie/red/chubby{ desc = "Seems this ominous looking longdog has been infused with wicked infernal forces. What an absolute unit. It has a collar around one of its ankles that reads 'Tawny'."; name = "Tawny" }, -/turf/simulated/floor/outdoors/grass/sif/forest{ +/turf/simulated/floor/outdoors/grass/sif/forest/virgo3b{ outdoors = 0 }, /area/submap/LeopardmanderDen) @@ -264,6 +265,12 @@ }, /turf/template_noop, /area/template_noop) +"tC" = ( +/obj/item/weapon/ore/diamond, +/turf/simulated/floor/outdoors/grass/sif/forest/virgo3b{ + outdoors = 0 + }, +/area/submap/LeopardmanderDen) "tP" = ( /mob/living/simple_mob/animal/sif/sakimm{ faction = "neutral"; @@ -272,15 +279,13 @@ min_oxy = 0; minbodytemp = 0 }, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/template_noop) "uw" = ( /obj/structure/ledge/ledge_stairs{ dir = 4 }, -/turf/simulated/floor/outdoors/rocks{ - outdoors = 0 - }, +/turf/simulated/floor/outdoors/rocks/virgo3b, /area/template_noop) "uz" = ( /obj/structure/cliff/automatic{ @@ -289,32 +294,28 @@ /obj/structure/railing/grey{ dir = 8 }, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/template_noop) "xf" = ( -/turf/simulated/floor/outdoors/grass/sif, +/turf/simulated/floor/outdoors/grass/sif/virgo3b{ + outdoors = 0 + }, /area/submap/LeopardmanderDen) "xg" = ( /obj/item/weapon/ore/silver, -/turf/simulated/floor/outdoors/grass/sif/forest{ +/turf/simulated/floor/outdoors/grass/sif/forest/virgo3b{ outdoors = 0 }, /area/submap/LeopardmanderDen) "xL" = ( /obj/random/outcrop, -/turf/simulated/floor/outdoors/rocks{ +/turf/simulated/floor/outdoors/rocks/virgo3b{ outdoors = 0 }, /area/submap/LeopardmanderDen) "yl" = ( /turf/simulated/wall/golddiamond, /area/submap/LeopardmanderDen) -"yz" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/water/ocean{ - outdoors = 0 - }, -/area/submap/LeopardmanderDen) "zJ" = ( /mob/living/simple_mob/animal/sif/siffet{ faction = "neutral"; @@ -323,67 +324,71 @@ min_oxy = 0; minbodytemp = 0 }, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/template_noop) "zW" = ( /obj/structure/cliff/automatic/corner{ dir = 9 }, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/template_noop) "Ah" = ( /obj/structure/flora/grass/green, -/turf/simulated/floor/outdoors/grass/sif/forest{ +/turf/simulated/floor/outdoors/grass/sif/forest/virgo3b{ outdoors = 0 }, /area/submap/LeopardmanderDen) "AF" = ( -/turf/simulated/floor/water/ocean, +/turf/simulated/floor/water/virgo3b{ + outdoors = 0 + }, /area/submap/LeopardmanderDen) "AP" = ( /obj/structure/bed/chair/sofa/right{ dir = 4 }, -/turf/simulated/floor/outdoors/rocks{ +/turf/simulated/floor/outdoors/rocks/virgo3b{ outdoors = 0 }, /area/submap/LeopardmanderDen) "BE" = ( /obj/item/stack/material/diamond, /obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/grass/sif, +/turf/simulated/floor/outdoors/grass/sif/virgo3b{ + outdoors = 0 + }, /area/submap/LeopardmanderDen) "DI" = ( -/turf/simulated/floor/outdoors/grass/sif/forest{ +/turf/simulated/floor/outdoors/grass/sif/forest/virgo3b{ outdoors = 0 }, /area/submap/LeopardmanderDen) "DJ" = ( /obj/structure/flora/log1, -/turf/simulated/floor/water/ocean{ +/turf/simulated/floor/water/virgo3b{ outdoors = 0 }, /area/submap/LeopardmanderDen) "Ez" = ( /obj/structure/flora/bboulder2, -/turf/simulated/floor/outdoors/grass/sif/forest{ +/turf/simulated/floor/outdoors/grass/sif/forest/virgo3b{ outdoors = 0 }, /area/submap/LeopardmanderDen) "EH" = ( /obj/structure/ledge/ledge_stairs, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/template_noop) "Gl" = ( /obj/structure/cliff/automatic{ dir = 9 }, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/template_noop) "Gw" = ( /obj/item/weapon/ore/gold, /obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/grass/sif/forest{ +/turf/simulated/floor/outdoors/grass/sif/forest/virgo3b{ outdoors = 0 }, /area/submap/LeopardmanderDen) @@ -395,7 +400,7 @@ /obj/structure/bed/chair/sofa/left{ dir = 4 }, -/turf/simulated/floor/outdoors/rocks{ +/turf/simulated/floor/outdoors/rocks/virgo3b{ outdoors = 0 }, /area/submap/LeopardmanderDen) @@ -407,16 +412,14 @@ /turf/simulated/mineral/ignore_mapgen, /area/submap/LeopardmanderDen) "Jk" = ( -/turf/simulated/floor/outdoors/rocks{ - outdoors = 0 - }, +/turf/simulated/floor/outdoors/rocks/virgo3b, /area/template_noop) "Kd" = ( /obj/structure/cliff/automatic, /obj/structure/railing/grey{ dir = 1 }, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/template_noop) "Kv" = ( /obj/random/outcrop, @@ -425,81 +428,87 @@ "KT" = ( /obj/structure/flora/ausbushes/brflowers, /obj/structure/flora/tree/bigtree, -/turf/simulated/floor/outdoors/grass/sif/forest, +/turf/simulated/floor/outdoors/grass/sif/forest/virgo3b{ + outdoors = 0 + }, /area/submap/LeopardmanderDen) "Lb" = ( /obj/structure/cliff/automatic{ dir = 5 }, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/template_noop) "Ls" = ( /obj/structure/cliff/automatic{ dir = 2 }, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/template_noop) "MQ" = ( /obj/machinery/crystal/ice, /obj/structure/railing/grey{ dir = 8 }, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/template_noop) "NS" = ( /obj/structure/cliff/automatic{ dir = 10 }, /obj/structure/railing/grey, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/template_noop) "Pc" = ( /obj/item/stack/material/diamond, -/turf/simulated/floor/outdoors/grass/sif, +/turf/simulated/floor/outdoors/grass/sif/virgo3b{ + outdoors = 0 + }, /area/submap/LeopardmanderDen) "PO" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/flora/rocks2, -/turf/simulated/floor/outdoors/grass/sif/forest{ +/turf/simulated/floor/outdoors/grass/sif/forest/virgo3b{ outdoors = 0 }, /area/submap/LeopardmanderDen) "Qa" = ( /obj/machinery/crystal/ice, -/turf/simulated/floor/outdoors/rocks{ +/turf/simulated/floor/outdoors/rocks/virgo3b{ outdoors = 0 }, /area/submap/LeopardmanderDen) "QQ" = ( /obj/item/stack/material/gold, /obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/grass/sif/forest{ +/turf/simulated/floor/outdoors/grass/sif/forest/virgo3b{ outdoors = 0 }, /area/submap/LeopardmanderDen) "RA" = ( /obj/fiftyspawner/gold, -/turf/simulated/floor/outdoors/grass/sif, +/turf/simulated/floor/outdoors/grass/sif/virgo3b{ + outdoors = 0 + }, /area/submap/LeopardmanderDen) "Sk" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/flora/rocks1, -/turf/simulated/floor/outdoors/grass/sif/forest{ +/turf/simulated/floor/outdoors/grass/sif/forest/virgo3b{ outdoors = 0 }, /area/submap/LeopardmanderDen) "Sm" = ( -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/template_noop) "SM" = ( /obj/structure/flora/log2, -/turf/simulated/floor/water/ocean{ +/turf/simulated/floor/water/virgo3b{ outdoors = 0 }, /area/submap/LeopardmanderDen) "Te" = ( /obj/item/weapon/coin/silver, -/turf/simulated/floor/outdoors/grass/sif/forest{ +/turf/simulated/floor/outdoors/grass/sif/forest/virgo3b{ outdoors = 0 }, /area/submap/LeopardmanderDen) @@ -511,12 +520,12 @@ min_oxy = 0; minbodytemp = 0 }, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/template_noop) "Tt" = ( /obj/structure/flora/ausbushes/brflowers, /obj/item/weapon/coin/iron, -/turf/simulated/floor/outdoors/grass/sif/forest{ +/turf/simulated/floor/outdoors/grass/sif/forest/virgo3b{ outdoors = 0 }, /area/submap/LeopardmanderDen) @@ -524,34 +533,32 @@ /obj/structure/bed/chair/sofa/left{ dir = 8 }, -/turf/simulated/floor/outdoors/rocks{ +/turf/simulated/floor/outdoors/rocks/virgo3b{ outdoors = 0 }, /area/submap/LeopardmanderDen) "Uc" = ( /obj/item/weapon/ore/diamond, -/turf/simulated/floor/outdoors/grass/sif, +/turf/simulated/floor/outdoors/grass/sif/virgo3b{ + outdoors = 0 + }, /area/submap/LeopardmanderDen) "Ul" = ( /obj/item/weapon/ore/gold, -/turf/simulated/floor/outdoors/grass/sif, +/turf/simulated/floor/outdoors/grass/sif/virgo3b{ + outdoors = 0 + }, /area/submap/LeopardmanderDen) "UA" = ( /obj/structure/flora/ausbushes/brflowers, /obj/item/weapon/coin/gold, -/turf/simulated/floor/outdoors/grass/sif/forest{ +/turf/simulated/floor/outdoors/grass/sif/forest/virgo3b{ outdoors = 0 }, /area/submap/LeopardmanderDen) "Vi" = ( /obj/structure/flora/lily2, -/turf/simulated/floor/water/ocean{ - outdoors = 0 - }, -/area/submap/LeopardmanderDen) -"Vp" = ( -/obj/effect/map_effect/interval/effect_emitter/steam, -/turf/simulated/floor/water/ocean{ +/turf/simulated/floor/water/virgo3b{ outdoors = 0 }, /area/submap/LeopardmanderDen) @@ -560,13 +567,13 @@ /area/submap/LeopardmanderDen) "VV" = ( /obj/structure/flora/lily1, -/turf/simulated/floor/water/ocean{ +/turf/simulated/floor/water/virgo3b{ outdoors = 0 }, /area/submap/LeopardmanderDen) "WB" = ( /obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/outdoors/rocks{ +/turf/simulated/floor/outdoors/rocks/virgo3b{ outdoors = 0 }, /area/submap/LeopardmanderDen) @@ -575,19 +582,21 @@ max_co2 = 0; min_oxy = 0 }, -/turf/simulated/floor/outdoors/grass/sif/forest{ +/turf/simulated/floor/outdoors/grass/sif/forest/virgo3b{ outdoors = 0 }, /area/submap/LeopardmanderDen) "XR" = ( /obj/effect/map_effect/interval/effect_emitter/steam, -/turf/simulated/floor/water/ocean, +/turf/simulated/floor/water/virgo3b{ + outdoors = 0 + }, /area/submap/LeopardmanderDen) "Yq" = ( /obj/structure/cliff/automatic{ dir = 4 }, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/template_noop) "YJ" = ( /obj/item/weapon/ore/diamond, @@ -599,7 +608,9 @@ /mob/living/simple_mob/animal/sif/tymisian{ faction = "neutral" }, -/turf/simulated/floor/outdoors/grass/sif, +/turf/simulated/floor/outdoors/grass/sif/virgo3b{ + outdoors = 0 + }, /area/submap/LeopardmanderDen) (1,1,1) = {" @@ -719,10 +730,10 @@ IQ xf fe Xt -nw +AF Vi YJ -yz +AF Ah xg Zj @@ -740,12 +751,12 @@ IQ IQ RA DI -nw +AF SM -nw -nw +AF +AF ro -nw +AF nR DI Pc @@ -762,15 +773,15 @@ IQ cu xf mu -nw -nw +AF +AF AF UA XR -nw +AF DJ hr -YJ +tC Uc IQ Qa @@ -784,13 +795,13 @@ IQ IQ IQ QQ -nw -nw +AF +AF rD KT Tt -nw -nw +AF +AF AF fQ xf @@ -807,12 +818,12 @@ IQ cu gC nG -nw -Vp +AF +XR Ez VV AF -nw +AF ki Gw bO @@ -831,10 +842,10 @@ xL DI DI AF -nw -nw -nw -nw +AF +AF +AF +AF aT Ul qa diff --git a/maps/submaps/surface_submaps/plains/lonehome_vr.dmm b/maps/submaps/surface_submaps/plains/lonehome_vr.dmm index 673b4e1d5c..117d531273 100644 --- a/maps/submaps/surface_submaps/plains/lonehome_vr.dmm +++ b/maps/submaps/surface_submaps/plains/lonehome_vr.dmm @@ -3,7 +3,7 @@ /turf/template_noop, /area/submap/lonehome) "ab" = ( -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/lonehome) "ac" = ( /obj/structure/flora/tree/sif, @@ -33,7 +33,7 @@ "ai" = ( /obj/structure/coatrack, /obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood, +/turf/simulated/floor/wood/virgo3b, /area/submap/lonehome) "aj" = ( /obj/effect/decal/cleanable/dirt, @@ -41,7 +41,7 @@ /area/submap/lonehome) "ak" = ( /obj/machinery/space_heater, -/turf/simulated/floor/wood, +/turf/simulated/floor/wood/virgo3b, /area/submap/lonehome) "al" = ( /obj/structure/closet/secure_closet/freezer/fridge, @@ -50,11 +50,11 @@ /obj/random/meat, /obj/random/meat, /obj/random/meat, -/turf/simulated/floor/tiled/white, +/turf/simulated/floor/tiled/white/virgo3b, /area/submap/lonehome) "am" = ( /obj/machinery/appliance/cooker/oven, -/turf/simulated/floor/tiled/white, +/turf/simulated/floor/tiled/white/virgo3b, /area/submap/lonehome) "an" = ( /obj/structure/table/marble, @@ -62,12 +62,12 @@ dir = 1 }, /obj/machinery/microwave, -/turf/simulated/floor/tiled/white, +/turf/simulated/floor/tiled/white/virgo3b, /area/submap/lonehome) "ao" = ( /obj/structure/table/marble, /obj/machinery/chemical_dispenser/bar_alc/full, -/turf/simulated/floor/tiled/white, +/turf/simulated/floor/tiled/white/virgo3b, /area/submap/lonehome) "ap" = ( /obj/structure/table/bench/marble, @@ -75,27 +75,24 @@ dir = 8; id = "h_living" }, -/turf/simulated/floor/wood, +/turf/simulated/floor/wood/virgo3b, /area/submap/lonehome) "aq" = ( /obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood, +/turf/simulated/floor/wood/virgo3b, /area/submap/lonehome) "ar" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood, +/turf/simulated/floor/wood/virgo3b, /area/submap/lonehome) "as" = ( /turf/simulated/floor/wood/broken, /area/submap/lonehome) -"at" = ( -/turf/simulated/floor/wood, -/area/submap/lonehome) "au" = ( /obj/item/device/tape, /obj/structure/table/wooden_reinforced, -/turf/simulated/floor/wood, +/turf/simulated/floor/wood/virgo3b, /area/submap/lonehome) "av" = ( /obj/item/weapon/extinguisher{ @@ -125,17 +122,17 @@ /area/submap/lonehome) "aw" = ( /obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/white, +/turf/simulated/floor/tiled/white/virgo3b, /area/submap/lonehome) "ax" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/white, +/turf/simulated/floor/tiled/white/virgo3b, /area/submap/lonehome) "ay" = ( /obj/item/clothing/suit/storage/apron/white, /obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/white, +/turf/simulated/floor/tiled/white/virgo3b, /area/submap/lonehome) "az" = ( /obj/structure/window/reinforced/tinted/frosted{ @@ -161,7 +158,7 @@ pixel_x = 2 }, /obj/structure/table/rack, -/turf/simulated/floor/tiled/white, +/turf/simulated/floor/wood/virgo3b, /area/submap/lonehome) "aA" = ( /obj/machinery/button/windowtint{ @@ -176,7 +173,7 @@ dir = 4; id = "h_kitchen" }, -/turf/simulated/floor/tiled/white, +/turf/simulated/floor/wood/virgo3b, /area/submap/lonehome) "aB" = ( /obj/structure/window/reinforced{ @@ -193,39 +190,39 @@ /obj/structure/bed/chair/sofa/black/corner{ dir = 1 }, -/turf/simulated/floor/wood, +/turf/simulated/floor/wood/virgo3b, /area/submap/lonehome) "aD" = ( /obj/structure/bed/chair/sofa/black, -/turf/simulated/floor/wood, +/turf/simulated/floor/wood/virgo3b, /area/submap/lonehome) "aE" = ( /obj/structure/bed/chair/sofa/black/left, -/turf/simulated/floor/wood, +/turf/simulated/floor/wood/virgo3b, /area/submap/lonehome) "aF" = ( /obj/random/trash, -/turf/simulated/floor/wood, +/turf/simulated/floor/wood/virgo3b, /area/submap/lonehome) "aG" = ( /obj/structure/table/marble, /obj/item/weapon/material/knife/butch, /obj/item/weapon/material/kitchen/rollingpin, -/turf/simulated/floor/tiled/white, +/turf/simulated/floor/tiled/white/virgo3b, /area/submap/lonehome) "aH" = ( /obj/structure/table/marble, /obj/item/weapon/material/kitchen/utensil/spoon, -/turf/simulated/floor/tiled/white, +/turf/simulated/floor/tiled/white/virgo3b, /area/submap/lonehome) "aI" = ( /obj/structure/table/marble, /obj/item/weapon/material/sharpeningkit, /obj/item/weapon/reagent_containers/dropper, -/turf/simulated/floor/tiled/white, +/turf/simulated/floor/tiled/white/virgo3b, /area/submap/lonehome) "aJ" = ( -/turf/simulated/floor/tiled/white, +/turf/simulated/floor/wood/virgo3b, /area/submap/lonehome) "aK" = ( /obj/machinery/button/windowtint{ @@ -236,7 +233,7 @@ dir = 4; id = "h_kitchen" }, -/turf/simulated/floor/tiled/white, +/turf/simulated/floor/wood/virgo3b, /area/submap/lonehome) "aL" = ( /obj/structure/window/reinforced{ @@ -244,7 +241,7 @@ health = 1e+006 }, /obj/item/weapon/material/shard, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/lonehome) "aM" = ( /obj/item/weapon/material/shard, @@ -256,7 +253,7 @@ pixel_x = 5; pixel_y = 3 }, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/lonehome) "aO" = ( /obj/structure/window/reinforced/polarized{ @@ -266,32 +263,32 @@ /obj/structure/bed/chair/sofa/black{ dir = 4 }, -/turf/simulated/floor/wood, +/turf/simulated/floor/wood/virgo3b, /area/submap/lonehome) "aP" = ( /obj/structure/table/bench/glass, -/turf/simulated/floor/carpet/sblucarpet, +/turf/simulated/floor/carpet/sblucarpet/virgo3b, /area/submap/lonehome) "aQ" = ( -/turf/simulated/floor/carpet/sblucarpet, +/turf/simulated/floor/carpet/sblucarpet/virgo3b, /area/submap/lonehome) "aR" = ( /obj/random/junk, -/turf/simulated/floor/carpet/sblucarpet, +/turf/simulated/floor/carpet/sblucarpet/virgo3b, /area/submap/lonehome) "aS" = ( /obj/random/junk, /obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood, +/turf/simulated/floor/wood/virgo3b, /area/submap/lonehome) "aT" = ( /obj/item/weapon/material/kitchen/utensil/fork, /obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood, +/turf/simulated/floor/wood/virgo3b, /area/submap/lonehome) "aU" = ( /obj/structure/bed/chair/wood, -/turf/simulated/floor/wood, +/turf/simulated/floor/wood/virgo3b, /area/submap/lonehome) "aV" = ( /obj/structure/bed/chair/wood, @@ -302,41 +299,41 @@ dir = 4; id = "h_kitchen" }, -/turf/simulated/floor/wood, +/turf/simulated/floor/wood/virgo3b, /area/submap/lonehome) "aW" = ( /obj/item/weapon/material/shard{ pixel_x = 6 }, /obj/item/weapon/material/shard, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/lonehome) "aX" = ( /obj/item/weapon/material/shard, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/lonehome) "aY" = ( /obj/structure/window/reinforced{ dir = 4; health = 1e+006 }, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/lonehome) "aZ" = ( /obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/carpet/sblucarpet, +/turf/simulated/floor/carpet/sblucarpet/virgo3b, /area/submap/lonehome) "ba" = ( /obj/machinery/light{ dir = 4 }, -/turf/simulated/floor/wood, +/turf/simulated/floor/wood/virgo3b, /area/submap/lonehome) "bb" = ( /obj/machinery/light{ dir = 8 }, -/turf/simulated/floor/wood, +/turf/simulated/floor/wood/virgo3b, /area/submap/lonehome) "bc" = ( /obj/item/stack/cable_coil, @@ -346,7 +343,7 @@ /obj/item/trash/plate, /obj/item/weapon/reagent_containers/food/condiment/small/saltshaker, /obj/structure/table/sifwooden_reinforced, -/turf/simulated/floor/wood, +/turf/simulated/floor/wood/virgo3b, /area/submap/lonehome) "be" = ( /obj/machinery/button/windowtint{ @@ -360,14 +357,14 @@ dir = 4; id = "h_kitchen" }, -/turf/simulated/floor/wood, +/turf/simulated/floor/wood/virgo3b, /area/submap/lonehome) "bf" = ( /obj/structure/window/reinforced{ dir = 8; health = 1e+006 }, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/lonehome) "bg" = ( /obj/structure/window/reinforced/polarized{ @@ -377,31 +374,31 @@ /obj/structure/bed/chair/sofa/black/corner{ dir = 4 }, -/turf/simulated/floor/wood, +/turf/simulated/floor/wood/virgo3b, /area/submap/lonehome) "bh" = ( /obj/structure/bed/chair/sofa/black{ dir = 1 }, -/turf/simulated/floor/wood, +/turf/simulated/floor/wood/virgo3b, /area/submap/lonehome) "bi" = ( /obj/structure/bed/chair/sofa/black/right{ dir = 1 }, -/turf/simulated/floor/wood, +/turf/simulated/floor/wood/virgo3b, /area/submap/lonehome) "bj" = ( /obj/item/weapon/module/power_control, /obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood, +/turf/simulated/floor/wood/virgo3b, /area/submap/lonehome) "bk" = ( /obj/structure/flora/pottedplant/bamboo{ pixel_y = 12 }, /obj/structure/table/bench/wooden, -/turf/simulated/floor/wood, +/turf/simulated/floor/wood/virgo3b, /area/submap/lonehome) "bl" = ( /obj/item/weapon/material/shard, @@ -411,7 +408,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood, +/turf/simulated/floor/wood/virgo3b, /area/submap/lonehome) "bm" = ( /obj/structure/window/reinforced{ @@ -423,7 +420,7 @@ }, /obj/structure/table/bench/wooden, /obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood, +/turf/simulated/floor/wood/virgo3b, /area/submap/lonehome) "bn" = ( /obj/item/weapon/reagent_containers/food/condiment/small/sugar, @@ -433,12 +430,12 @@ "bo" = ( /obj/item/weapon/material/kitchen/utensil/fork, /obj/random/trash, -/turf/simulated/floor/wood, +/turf/simulated/floor/wood/virgo3b, /area/submap/lonehome) "bp" = ( /obj/item/weapon/reagent_containers/food/snacks/ghostmuffin/poison, /obj/structure/table/sifwooden_reinforced, -/turf/simulated/floor/wood, +/turf/simulated/floor/wood/virgo3b, /area/submap/lonehome) "bq" = ( /obj/machinery/button/windowtint{ @@ -450,7 +447,7 @@ dir = 4; id = "h_kitchen" }, -/turf/simulated/floor/wood, +/turf/simulated/floor/wood/virgo3b, /area/submap/lonehome) "br" = ( /obj/effect/decal/cleanable/dirt, @@ -459,24 +456,24 @@ /area/submap/lonehome) "bs" = ( /obj/item/weapon/pen, -/turf/simulated/floor/wood, +/turf/simulated/floor/wood/virgo3b, /area/submap/lonehome) "bt" = ( /obj/item/weapon/material/kitchen/utensil/spoon{ pixel_x = 2 }, -/turf/simulated/floor/wood, +/turf/simulated/floor/wood/virgo3b, /area/submap/lonehome) "bu" = ( /obj/item/weapon/reagent_containers/food/condiment/small/peppermill, /obj/item/weapon/pen, -/turf/simulated/floor/wood, +/turf/simulated/floor/wood/virgo3b, /area/submap/lonehome) "bv" = ( /obj/structure/bed/chair/wood{ dir = 1 }, -/turf/simulated/floor/wood, +/turf/simulated/floor/wood/virgo3b, /area/submap/lonehome) "bw" = ( /obj/structure/bed/chair/wood{ @@ -486,7 +483,7 @@ dir = 4; id = "h_kitchen" }, -/turf/simulated/floor/wood, +/turf/simulated/floor/wood/virgo3b, /area/submap/lonehome) "bx" = ( /obj/structure/window/reinforced{ @@ -499,7 +496,7 @@ /obj/structure/table/rack, /obj/item/weapon/makeover, /obj/structure/curtain/open/bed, -/turf/simulated/floor/wood, +/turf/simulated/floor/wood/virgo3b, /area/submap/lonehome) "bz" = ( /obj/structure/table/rack, @@ -508,7 +505,7 @@ /obj/item/clothing/under/suit_jacket/really_black, /obj/item/clothing/under/suit_jacket/navy, /obj/item/clothing/head/soft/solgov/veteranhat, -/turf/simulated/floor/wood, +/turf/simulated/floor/wood/virgo3b, /area/submap/lonehome) "bA" = ( /obj/structure/window/reinforced/tinted/frosted{ @@ -516,7 +513,7 @@ }, /obj/structure/table/wooden_reinforced, /obj/item/weapon/book/tome, -/turf/simulated/floor/wood, +/turf/simulated/floor/wood/virgo3b, /area/submap/lonehome) "bB" = ( /obj/item/weapon/paper{ @@ -536,13 +533,13 @@ /obj/item/seeds/random, /obj/item/seeds/random, /obj/machinery/space_heater, -/turf/simulated/floor/wood, +/turf/simulated/floor/wood/virgo3b, /area/submap/lonehome) "bE" = ( /obj/item/seeds/random, /obj/item/weapon/reagent_containers/spray/cleaner, /obj/structure/table/wooden_reinforced, -/turf/simulated/floor/wood, +/turf/simulated/floor/wood/virgo3b, /area/submap/lonehome) "bF" = ( /obj/machinery/light/small, @@ -553,13 +550,13 @@ pixel_y = -32 }, /obj/structure/table/wooden_reinforced, -/turf/simulated/floor/wood, +/turf/simulated/floor/wood/virgo3b, /area/submap/lonehome) "bG" = ( /obj/item/weapon/reagent_containers/glass/rag, /obj/item/clothing/gloves/ring/engagement, /obj/structure/table/wooden_reinforced, -/turf/simulated/floor/wood, +/turf/simulated/floor/wood/virgo3b, /area/submap/lonehome) "bH" = ( /obj/machinery/button/windowtint{ @@ -578,25 +575,25 @@ /obj/random/maintenance/medical, /obj/random/maintenance/medical, /obj/random/maintenance/medical, -/turf/simulated/floor/wood, +/turf/simulated/floor/wood/virgo3b, /area/submap/lonehome) "bJ" = ( /obj/item/weapon/paper{ info = "Seems to be filled with odd runes drawn with blood"; name = "Blood stained paper" }, -/turf/simulated/floor/wood, +/turf/simulated/floor/wood/virgo3b, /area/submap/lonehome) "bK" = ( /obj/item/weapon/cell/high/empty, -/turf/simulated/floor/carpet/sblucarpet, +/turf/simulated/floor/carpet/sblucarpet/virgo3b, /area/submap/lonehome) "bL" = ( /obj/structure/bed/chair/wood/wings{ dir = 1 }, /obj/effect/gibspawner/human, -/turf/simulated/floor/carpet/sblucarpet, +/turf/simulated/floor/carpet/sblucarpet/virgo3b, /area/submap/lonehome) "bM" = ( /obj/item/weapon/paper{ @@ -605,20 +602,20 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/carpet/sblucarpet, +/turf/simulated/floor/carpet/sblucarpet/virgo3b, /area/submap/lonehome) "bN" = ( /obj/machinery/light/small{ dir = 8 }, /obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood, +/turf/simulated/floor/wood/virgo3b, /area/submap/lonehome) "bO" = ( /obj/effect/decal/cleanable/blood/gibs, /obj/structure/kitchenspike, /obj/effect/rune, -/turf/simulated/floor, +/turf/simulated/floor/plating/external/virgo3b, /area/submap/lonehome) "bP" = ( /obj/machinery/light{ @@ -628,29 +625,29 @@ /obj/item/weapon/paper/courtroom, /obj/item/weapon/paper_bin, /obj/structure/table/wooden_reinforced, -/turf/simulated/floor/wood, +/turf/simulated/floor/wood/virgo3b, /area/submap/lonehome) "bQ" = ( /obj/item/weapon/pen/fountain, -/turf/simulated/floor/wood, +/turf/simulated/floor/wood/virgo3b, /area/submap/lonehome) "bR" = ( /obj/item/weapon/paper{ info = "Seems to be filled with odd runes drawn with blood"; name = "Blood stained paper" }, -/turf/simulated/floor/carpet/sblucarpet, +/turf/simulated/floor/carpet/sblucarpet/virgo3b, /area/submap/lonehome) "bS" = ( /obj/random/trash, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/carpet/sblucarpet, +/turf/simulated/floor/carpet/sblucarpet/virgo3b, /area/submap/lonehome) "bT" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/carpet/sblucarpet, +/turf/simulated/floor/carpet/sblucarpet/virgo3b, /area/submap/lonehome) "bU" = ( /obj/item/weapon/photo, @@ -658,19 +655,19 @@ pixel_x = 4 }, /obj/structure/table/bench/wooden, -/turf/simulated/floor/wood, +/turf/simulated/floor/wood/virgo3b, /area/submap/lonehome) "bV" = ( /obj/item/weapon/storage/box/characters, /obj/structure/curtain/open/bed, /obj/structure/table/rack, -/turf/simulated/floor/wood, +/turf/simulated/floor/wood/virgo3b, /area/submap/lonehome) "bW" = ( /obj/structure/window/reinforced/tinted/frosted{ dir = 8 }, -/turf/simulated/floor/wood, +/turf/simulated/floor/wood/virgo3b, /area/submap/lonehome) "bX" = ( /obj/machinery/light/small{ @@ -679,7 +676,7 @@ /obj/structure/bed/padded, /obj/item/weapon/book/custom_library/fiction/truelovehathmyheart, /obj/item/weapon/bedsheet/clown, -/turf/simulated/floor/wood, +/turf/simulated/floor/wood/virgo3b, /area/submap/lonehome) "bY" = ( /obj/structure/closet/cabinet, @@ -692,17 +689,17 @@ /obj/random/toy, /obj/item/weapon/storage/mre/random, /obj/item/weapon/storage/mre/random, -/turf/simulated/floor/wood, +/turf/simulated/floor/wood/virgo3b, /area/submap/lonehome) "bZ" = ( /obj/item/clothing/suit/straight_jacket, -/turf/simulated/floor, +/turf/simulated/floor/plating/external/virgo3b, /area/submap/lonehome) "ca" = ( /obj/machinery/gibber/autogibber{ emagged = 1 }, -/turf/simulated/floor, +/turf/simulated/floor/plating/external/virgo3b, /area/submap/lonehome) "cb" = ( /obj/structure/closet/cabinet, @@ -716,7 +713,7 @@ /obj/random/maintenance/security, /obj/random/maintenance/medical, /obj/random/maintenance/medical, -/turf/simulated/floor/wood, +/turf/simulated/floor/wood/virgo3b, /area/submap/lonehome) "cc" = ( /obj/effect/decal/cleanable/dirt, @@ -724,14 +721,14 @@ desc = "A very odd behaved cat, their scratched name tag reads 'Felix'. They look very malnourished."; name = "Felix" }, -/turf/simulated/floor/wood, +/turf/simulated/floor/wood/virgo3b, /area/submap/lonehome) "cd" = ( /obj/structure/bed/double/padded, /obj/machinery/light/small{ dir = 4 }, -/turf/simulated/floor/wood, +/turf/simulated/floor/wood/virgo3b, /area/submap/lonehome) "ce" = ( /obj/effect/decal/cleanable/dirt, @@ -747,12 +744,12 @@ /obj/item/weapon/pack/cardemon, /obj/item/weapon/deck/tarot, /obj/structure/table/wooden_reinforced, -/turf/simulated/floor/wood, +/turf/simulated/floor/wood/virgo3b, /area/submap/lonehome) "ch" = ( /obj/item/organ/internal/liver, /obj/random/trash, -/turf/simulated/floor, +/turf/simulated/floor/plating/external/virgo3b, /area/submap/lonehome) "ci" = ( /obj/effect/decal/cleanable/blood/gibs, @@ -764,7 +761,7 @@ pixel_x = 4; pixel_y = 6 }, -/turf/simulated/floor, +/turf/simulated/floor/plating/external/virgo3b, /area/submap/lonehome) "cj" = ( /obj/structure/sign/periodic, @@ -772,7 +769,7 @@ /area/submap/lonehome) "ck" = ( /obj/item/weapon/bedsheet/rddouble, -/turf/simulated/floor/wood, +/turf/simulated/floor/wood/virgo3b, /area/submap/lonehome) "cl" = ( /obj/item/weapon/phone, @@ -781,11 +778,11 @@ info = "Seems to be filled with odd runes drawn with blood"; name = "Blood stained paper" }, -/turf/simulated/floor/wood, +/turf/simulated/floor/wood/virgo3b, /area/submap/lonehome) "cm" = ( /obj/item/weapon/pack/cardemon, -/turf/simulated/floor/wood, +/turf/simulated/floor/wood/virgo3b, /area/submap/lonehome) "cn" = ( /obj/structure/bed/padded, @@ -799,7 +796,7 @@ /obj/random/junk, /obj/random/junk, /obj/item/weapon/bedsheet/ian, -/turf/simulated/floor/wood, +/turf/simulated/floor/wood/virgo3b, /area/submap/lonehome) "co" = ( /obj/structure/closet/cabinet, @@ -810,18 +807,18 @@ /obj/random/tech_supply/component, /obj/random/toolbox, /obj/random/toolbox, -/turf/simulated/floor/wood, +/turf/simulated/floor/wood/virgo3b, /area/submap/lonehome) "cp" = ( /obj/item/clothing/mask/muzzle, /obj/random/trash, -/turf/simulated/floor, +/turf/simulated/floor/plating/external/virgo3b, /area/submap/lonehome) "cq" = ( /obj/structure/table/marble, /obj/item/organ/internal/brain/grey, /obj/item/weapon/material/knife/plastic, -/turf/simulated/floor, +/turf/simulated/floor/plating/external/virgo3b, /area/submap/lonehome) "cr" = ( /obj/structure/table/bench/marble, @@ -831,7 +828,7 @@ /obj/structure/flora/pottedplant/overgrown{ pixel_y = 7 }, -/turf/simulated/floor/wood, +/turf/simulated/floor/wood/virgo3b, /area/submap/lonehome) "cs" = ( /obj/structure/table/bench/marble, @@ -841,7 +838,7 @@ /obj/structure/flora/pottedplant/bamboo{ pixel_y = 7 }, -/turf/simulated/floor/wood, +/turf/simulated/floor/wood/virgo3b, /area/submap/lonehome) "ct" = ( /obj/structure/table/bench/marble, @@ -851,7 +848,7 @@ /obj/structure/flora/pottedplant/dead{ pixel_y = 7 }, -/turf/simulated/floor/wood, +/turf/simulated/floor/wood/virgo3b, /area/submap/lonehome) "cu" = ( /obj/machinery/button/windowtint{ @@ -861,41 +858,41 @@ /area/submap/lonehome) "cv" = ( /obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, +/turf/simulated/floor/plating/external/virgo3b, /area/submap/lonehome) "cw" = ( /obj/effect/decal/cleanable/blood/gibs, /obj/item/clothing/gloves/yellow, -/turf/simulated/floor, +/turf/simulated/floor/plating/external/virgo3b, /area/submap/lonehome) "cx" = ( /obj/structure/table/marble, /obj/item/weapon/material/knife/hook, -/turf/simulated/floor, +/turf/simulated/floor/plating/external/virgo3b, /area/submap/lonehome) "cy" = ( -/turf/simulated/floor/outdoors/grass/heavy, +/turf/simulated/floor/outdoors/grass/sif/forest/virgo3b, /area/submap/lonehome) "cz" = ( /obj/machinery/portable_atmospherics/hydroponics/soil, /obj/item/weapon/material/shard, -/turf/simulated/floor/outdoors/grass/heavy, +/turf/simulated/floor/outdoors/grass/sif/forest/virgo3b, /area/submap/lonehome) "cA" = ( /obj/structure/window/reinforced{ dir = 1 }, /obj/machinery/portable_atmospherics/hydroponics/soil, -/turf/simulated/floor/outdoors/grass/heavy, +/turf/simulated/floor/outdoors/grass/sif/forest/virgo3b, /area/submap/lonehome) "cB" = ( /obj/machinery/portable_atmospherics/hydroponics/soil, -/turf/simulated/floor/outdoors/grass/heavy, +/turf/simulated/floor/outdoors/grass/sif/forest/virgo3b, /area/submap/lonehome) "cC" = ( /obj/machinery/power/port_gen/pacman, /obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, +/turf/simulated/floor/plating/external/virgo3b, /area/submap/lonehome) "cD" = ( /obj/item/frame/apc, @@ -904,7 +901,7 @@ pixel_y = 22 }, /obj/random/junk, -/turf/simulated/floor, +/turf/simulated/floor/plating/external/virgo3b, /area/submap/lonehome) "cE" = ( /obj/structure/table/steel, @@ -916,7 +913,7 @@ }, /obj/fiftyspawner/wood, /obj/fiftyspawner/steel, -/turf/simulated/floor, +/turf/simulated/floor/plating/external/virgo3b, /area/submap/lonehome) "cF" = ( /obj/item/weapon/chainsaw, @@ -924,11 +921,11 @@ /obj/item/weapon/extinguisher, /obj/item/weapon/storage/toolbox/mechanical, /obj/structure/table/rack, -/turf/simulated/floor, +/turf/simulated/floor/plating/external/virgo3b, /area/submap/lonehome) "cG" = ( /obj/effect/decal/cleanable/blood/gibs, -/turf/simulated/floor, +/turf/simulated/floor/plating/external/virgo3b, /area/submap/lonehome) "cH" = ( /obj/structure/table/marble, @@ -937,28 +934,28 @@ pixel_y = 8 }, /obj/item/organ/internal/lungs, -/turf/simulated/floor, +/turf/simulated/floor/plating/external/virgo3b, /area/submap/lonehome) "cI" = ( /obj/structure/fence, -/turf/simulated/floor/outdoors/grass/heavy, +/turf/simulated/floor/outdoors/grass/sif/forest/virgo3b, /area/submap/lonehome) "cJ" = ( /obj/item/weapon/material/shard, -/turf/simulated/floor/outdoors/grass/heavy, +/turf/simulated/floor/outdoors/grass/sif/forest/virgo3b, /area/submap/lonehome) "cK" = ( /obj/item/weapon/material/minihoe, -/turf/simulated/floor/outdoors/grass/heavy, +/turf/simulated/floor/outdoors/grass/sif/forest/virgo3b, /area/submap/lonehome) "cL" = ( /obj/structure/simple_door/wood, -/turf/simulated/floor, +/turf/simulated/floor/plating/external/virgo3b, /area/submap/lonehome) "cM" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, +/turf/simulated/floor/plating/external/virgo3b, /area/submap/lonehome) "cN" = ( /obj/item/device/flashlight{ @@ -967,7 +964,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, +/turf/simulated/floor/plating/external/virgo3b, /area/submap/lonehome) "cO" = ( /obj/machinery/light/small{ @@ -975,7 +972,7 @@ }, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, +/turf/simulated/floor/plating/external/virgo3b, /area/submap/lonehome) "cP" = ( /obj/item/organ/internal/lungs/vox, @@ -987,21 +984,21 @@ /obj/random/junk, /obj/random/junk, /obj/random/junk, -/turf/simulated/floor, +/turf/simulated/floor/plating/external/virgo3b, /area/submap/lonehome) "cQ" = ( /obj/structure/fence/cut/medium, -/turf/simulated/floor/outdoors/grass/heavy, +/turf/simulated/floor/outdoors/grass/sif/forest/virgo3b, /area/submap/lonehome) "cR" = ( /obj/structure/loot_pile/maint/trash, -/turf/simulated/floor/outdoors/grass/heavy, +/turf/simulated/floor/outdoors/grass/sif/forest/virgo3b, /area/submap/lonehome) "cS" = ( /obj/structure/fence/corner{ dir = 8 }, -/turf/simulated/floor/outdoors/grass/heavy, +/turf/simulated/floor/outdoors/grass/sif/forest/virgo3b, /area/submap/lonehome) "cT" = ( /obj/structure/fence{ @@ -1019,13 +1016,13 @@ /obj/structure/fence/cut/medium{ dir = 4 }, -/turf/simulated/floor/outdoors/grass/heavy, +/turf/simulated/floor/outdoors/grass/sif/forest/virgo3b, /area/submap/lonehome) "cW" = ( /obj/structure/fence{ dir = 4 }, -/turf/simulated/floor/outdoors/grass/heavy, +/turf/simulated/floor/outdoors/grass/sif/forest/virgo3b, /area/submap/lonehome) "cX" = ( /obj/structure/fence/door/opened, @@ -1041,12 +1038,20 @@ /obj/structure/fence/cut/large{ dir = 8 }, -/turf/simulated/floor/outdoors/grass/heavy, +/turf/simulated/floor/outdoors/grass/sif/forest/virgo3b, /area/submap/lonehome) "da" = ( /obj/structure/fence/corner, /turf/template_noop, /area/submap/lonehome) +"mx" = ( +/obj/structure/girder, +/turf/simulated/floor/plating/external/virgo3b, +/area/submap/lonehome) +"ES" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/wood/virgo3b, +/area/submap/lonehome) (1,1,1) = {" aa @@ -1087,7 +1092,7 @@ aB aN aY aY -ag +mx ad ad ad @@ -1194,13 +1199,13 @@ as aj aQ aZ -at +aJ ad bA bL bS aQ -at +aJ cs cz cJ @@ -1216,8 +1221,8 @@ ab aa aa ad -ag -at +mx +aJ as aR aZ @@ -1246,7 +1251,7 @@ af ad au aF -at +aJ ba bj ad @@ -1272,12 +1277,12 @@ aa aa ad ad -ag -ae +mx +ES ad bk ad -ae +ES ad ad ad @@ -1299,7 +1304,7 @@ aa af ad av -ae +ES ar ar bl @@ -1310,7 +1315,7 @@ ar ar aq as -ae +ES cy cR cy @@ -1327,14 +1332,14 @@ ad ad ad ad -ae +ES ad bm -ag +mx ad ad ad -ae +ES ad ad ad @@ -1354,7 +1359,7 @@ ad al aw aG -at +aJ bb aq bs @@ -1386,7 +1391,7 @@ bc aq bt bE -ag +mx bW ce cm @@ -1411,7 +1416,7 @@ aI aS as bn -at +aJ bF ad bX @@ -1420,7 +1425,7 @@ cn ad cE cN -ag +mx cy cY aa @@ -1473,7 +1478,7 @@ ad ad ad ad -ag +mx ad cy cT @@ -1501,7 +1506,7 @@ cp cw cG cP -ag +mx cy cZ aa diff --git a/maps/submaps/surface_submaps/plains/lonewolf.dmm b/maps/submaps/surface_submaps/plains/lonewolf.dmm index 83b02be35b..c5a950512c 100644 --- a/maps/submaps/surface_submaps/plains/lonewolf.dmm +++ b/maps/submaps/surface_submaps/plains/lonewolf.dmm @@ -4,39 +4,39 @@ /area/submap/lonewolf) "e" = ( /obj/structure/flora/rocks2, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/lonewolf) "f" = ( /obj/effect/decal/remains/ribcage, /obj/random/contraband/nofail, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/lonewolf) "g" = ( /obj/structure/flora/rocks1, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/lonewolf) "j" = ( /obj/effect/decal/remains/tajaran, /obj/random/contraband/nofail, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/lonewolf) "l" = ( /obj/structure/flora/bboulder2, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/lonewolf) "o" = ( /obj/effect/decal/remains/posi, /obj/random/powercell, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/lonewolf) "q" = ( /obj/structure/cliff/automatic{ dir = 8 }, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/lonewolf) "s" = ( -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/lonewolf) "w" = ( /mob/living/simple_mob/vore/greatwolf/black{ @@ -45,41 +45,41 @@ max_co2 = 0; resting = 1 }, -/turf/simulated/floor/outdoors/rocks, +/turf/simulated/floor/outdoors/rocks/virgo3b, /area/submap/lonewolf) "y" = ( /obj/structure/cliff/automatic/ramp, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/lonewolf) "z" = ( /obj/structure/cliff/automatic/corner, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/lonewolf) "B" = ( /obj/structure/closet/grave, /obj/structure/gravemarker{ dir = 1 }, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/lonewolf) "F" = ( /obj/structure/ledge/ledge_stairs, -/turf/simulated/floor/outdoors/rocks, +/turf/simulated/floor/outdoors/rocks/virgo3b, /area/submap/lonewolf) "H" = ( /obj/structure/cliff/automatic/ramp{ dir = 9 }, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/lonewolf) "J" = ( /obj/effect/decal/remains/deer, /obj/random/grenade, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/lonewolf) "M" = ( /obj/structure/bonfire/permanent/sifwood, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/lonewolf) "O" = ( /turf/simulated/mineral/ignore_mapgen, @@ -90,33 +90,33 @@ force = 10; name = "old greatsword" }, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/lonewolf) "Q" = ( /obj/structure/flora/rocks1, /obj/effect/decal/remains/human, /obj/random/energy, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/lonewolf) "S" = ( /obj/structure/cliff/automatic/corner{ dir = 9 }, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/lonewolf) "T" = ( /obj/structure/flora/bboulder1, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/lonewolf) "V" = ( /obj/structure/cliff/automatic, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/lonewolf) "Z" = ( /obj/structure/cliff/automatic{ dir = 4 }, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/lonewolf) (1,1,1) = {" diff --git a/maps/submaps/surface_submaps/plains/methlab.dmm b/maps/submaps/surface_submaps/plains/methlab.dmm index b419e7655d..5af4b3eee3 100644 --- a/maps/submaps/surface_submaps/plains/methlab.dmm +++ b/maps/submaps/surface_submaps/plains/methlab.dmm @@ -1,141 +1,1122 @@ -"ai" = (/obj/structure/table/steel_reinforced,/obj/item/weapon/paper_bin,/obj/item/weapon/pen/fountain,/turf/simulated/floor/tiled/steel_dirty,/area/submap/methlab) -"as" = (/obj/machinery/door/airlock,/turf/simulated/floor/tiled/steel_grid,/area/submap/methlab) -"aY" = (/obj/item/weapon/material/shard{pixel_x = 5; pixel_y = 3},/obj/item/weapon/material/shard{pixel_x = 9},/turf/template_noop,/area/submap/methlab) -"bn" = (/obj/structure/fence/cut/medium,/turf/template_noop,/area/submap/methlab) -"bA" = (/obj/item/weapon/cell/hyper,/turf/simulated/floor/tiled/steel_dirty,/area/submap/methlab) -"bJ" = (/obj/effect/floor_decal/rust,/obj/random/maintenance,/turf/simulated/floor/tiled/steel_dirty,/area/submap/methlab) -"bQ" = (/obj/item/weapon/material/shard{icon_state = "medium"},/obj/item/weapon/material/shard{pixel_x = 9},/obj/item/weapon/material/shard{pixel_x = 5},/turf/template_noop,/area/submap/methlab) -"cg" = (/obj/structure/table/steel_reinforced,/obj/item/device/radio{anchored = 1; canhear_range = 1; frequency = 1487; icon = 'icons/obj/items.dmi'; icon_state = "red_phone"; name = "Reception Emergency Phone"},/turf/simulated/floor/tiled/steel_dirty,/area/submap/methlab) -"ck" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/item/seeds/ambrosiadeusseed,/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/old_tile/white,/area/submap/methlab) -"dy" = (/obj/effect/floor_decal/industrial/warning/corner,/obj/effect/floor_decal/rust,/obj/random/maintenance,/turf/simulated/floor/tiled/steel_dirty,/area/submap/methlab) -"fr" = (/obj/structure/fence,/turf/template_noop,/area/submap/methlab) -"fD" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/submap/methlab) -"fY" = (/obj/item/stack/cable_coil,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/submap/methlab) -"hf" = (/turf/simulated/floor,/area/submap/methlab) -"hj" = (/obj/machinery/power/port_gen/pacman,/turf/simulated/floor,/area/submap/methlab) -"hE" = (/obj/machinery/door/airlock/vault/bolted,/turf/simulated/floor/tiled/techfloor/grid,/area/submap/methlab) -"hQ" = (/turf/simulated/floor/tiled/steel_dirty,/area/submap/methlab) -"ic" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/machinery/light{dir = 8},/obj/item/seeds/ambrosiavulgarisseed,/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/old_tile/white,/area/submap/methlab) -"iz" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/submap/methlab) -"iN" = (/obj/structure/table/steel_reinforced,/obj/item/weapon/reagent_containers/dropper,/turf/simulated/floor/tiled/steel_dirty,/area/submap/methlab) -"jm" = (/obj/structure/fence{dir = 4},/turf/simulated/floor/outdoors/dirt,/area/submap/methlab) -"jo" = (/obj/machinery/vending/hydronutrients,/turf/simulated/floor/tiled/old_tile/white,/area/submap/methlab) -"kp" = (/obj/effect/floor_decal/rust/mono_rusted3,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/old_tile/green,/area/submap/methlab) -"lb" = (/obj/machinery/biogenerator,/turf/simulated/floor/tiled/old_tile/white,/area/submap/methlab) -"lt" = (/obj/item/frame/apc,/obj/structure/table/steel,/obj/machinery/light_switch{pixel_x = 11; pixel_y = 22},/turf/simulated/floor,/area/submap/methlab) -"lx" = (/turf/simulated/floor/outdoors/dirt,/area/submap/methlab) -"lJ" = (/obj/structure/fence/corner,/turf/template_noop,/area/submap/methlab) -"lN" = (/obj/structure/barricade,/obj/effect/floor_decal/steeldecal/steel_decals_central5,/turf/simulated/floor/tiled/steel_dirty,/area/submap/methlab) -"me" = (/obj/structure/salvageable/data,/turf/simulated/floor/tiled/steel_dirty,/area/submap/methlab) -"mi" = (/obj/effect/floor_decal/sign,/turf/simulated/wall,/area/submap/methlab) -"mw" = (/obj/structure/table/steel_reinforced,/obj/item/weapon/storage/toolbox/syndicate,/turf/simulated/floor/tiled/steel_dirty,/area/submap/methlab) -"nq" = (/obj/random/junk,/turf/simulated/floor,/area/submap/methlab) -"oo" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/item/seeds/ambrosiainfernusseed,/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/old_tile/white,/area/submap/methlab) -"oF" = (/obj/structure/fence/cut/large,/turf/template_noop,/area/submap/methlab) -"oN" = (/turf/simulated/wall/r_wall,/area/submap/methlab) -"pq" = (/obj/structure/bed/chair{dir = 8},/obj/random/junk,/turf/simulated/floor/tiled/steel_dirty,/area/submap/methlab) -"ps" = (/turf/template_noop,/area/submap/methlab) -"rK" = (/obj/item/weapon/reagent_containers/glass/beaker/large,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/submap/methlab) -"rU" = (/obj/item/clothing/under/suit_jacket,/obj/item/clothing/shoes/dress{pixel_y = -9},/obj/item/clothing/mask/demon,/obj/structure/curtain/black,/turf/simulated/floor/tiled/techfloor,/area/submap/methlab) -"sI" = (/obj/machinery/light,/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/obj/random/maintenance,/turf/simulated/floor/tiled/steel_dirty,/area/submap/methlab) -"sW" = (/obj/item/weapon/material/shard{pixel_x = 9},/turf/template_noop,/area/submap/methlab) -"tt" = (/obj/structure/table/steel_reinforced,/obj/structure/salvageable/personal,/turf/simulated/floor/tiled/steel_dirty,/area/submap/methlab) -"tz" = (/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/tiled/techfloor,/area/submap/methlab) -"tL" = (/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/steel_dirty,/area/submap/methlab) -"tQ" = (/obj/structure/girder,/turf/simulated/floor,/area/submap/methlab) -"uA" = (/obj/structure/fence/cut/large{dir = 8},/turf/template_noop,/area/submap/methlab) -"uY" = (/obj/random/trash,/turf/simulated/floor/tiled/steel_dirty,/area/submap/methlab) -"wd" = (/turf/simulated/floor/tiled/old_tile/green,/area/submap/methlab) -"wI" = (/obj/item/weapon/reagent_containers/dropper,/obj/random/junk,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/steel_dirty,/area/submap/methlab) -"wQ" = (/obj/machinery/light{dir = 8},/turf/template_noop,/area/submap/methlab) -"xM" = (/obj/machinery/door/airlock,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/steel_grid,/area/submap/methlab) -"xR" = (/obj/structure/loot_pile/maint/technical,/turf/template_noop,/area/submap/methlab) -"yr" = (/obj/random/trash,/turf/simulated/floor,/area/submap/methlab) -"yM" = (/obj/item/clothing/under/suit_jacket/really_black,/obj/item/clothing/shoes/dress{pixel_y = -9},/obj/item/clothing/mask/luchador,/obj/structure/curtain/black,/turf/simulated/floor/tiled/techfloor,/area/submap/methlab) -"yY" = (/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/steel_dirty,/area/submap/methlab) -"zu" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/old_tile/green,/area/submap/methlab) -"zG" = (/obj/random/junk,/turf/template_noop,/area/submap/methlab) -"zH" = (/obj/machinery/light{dir = 4},/turf/template_noop,/area/submap/methlab) -"zZ" = (/obj/structure/fence/corner{dir = 4},/turf/template_noop,/area/submap/methlab) -"AB" = (/obj/structure/table/steel_reinforced,/obj/item/weapon/reagent_containers/glass/beaker/large,/turf/simulated/floor/tiled/steel_dirty,/area/submap/methlab) -"AM" = (/mob/living/simple_mob/humanoid/merc/melee/poi,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/steel_dirty,/area/submap/methlab) -"AW" = (/obj/random/junk,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/steel_dirty,/area/submap/methlab) -"BP" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/steel_dirty,/area/submap/methlab) -"BR" = (/obj/structure/table/steel_reinforced,/obj/item/weapon/reagent_containers/glass/bucket,/obj/item/weapon/reagent_containers/glass/bucket,/turf/simulated/floor/tiled/steel_dirty,/area/submap/methlab) -"BT" = (/obj/structure/safe/floor,/obj/item/weapon/reagent_containers/food/snacks/grown/ambrosiavulgaris,/obj/item/weapon/reagent_containers/food/snacks/grown/ambrosiavulgaris,/obj/item/weapon/reagent_containers/food/snacks/grown/ambrosiavulgaris,/obj/item/weapon/reagent_containers/food/snacks/grown/ambrosiavulgaris,/obj/item/weapon/reagent_containers/food/snacks/grown/ambrosiavulgaris,/obj/item/weapon/reagent_containers/food/snacks/grown/ambrosiavulgaris,/obj/item/weapon/reagent_containers/food/snacks/grown/ambrosiavulgaris,/obj/item/weapon/reagent_containers/food/snacks/grown/ambrosiavulgaris,/obj/item/weapon/reagent_containers/food/snacks/grown/ambrosiavulgaris,/obj/item/weapon/reagent_containers/food/snacks/grown/ambrosiavulgaris,/obj/item/weapon/storage/bag/cash,/obj/item/weapon/storage/bag/cash,/turf/simulated/floor,/area/submap/methlab) -"CH" = (/obj/item/seeds/ambrosiavulgarisseed,/obj/item/seeds/ambrosiavulgarisseed,/obj/item/seeds/ambrosiavulgarisseed,/obj/item/seeds/ambrosiainfernusseed,/obj/item/seeds/ambrosiainfernusseed,/obj/item/seeds/ambrosiainfernusseed,/obj/item/seeds/ambrosiadeusseed,/obj/item/seeds/ambrosiadeusseed,/obj/item/seeds/ambrosiadeusseed,/obj/structure/table/rack,/turf/simulated/floor/tiled/old_tile/white,/area/submap/methlab) -"CL" = (/obj/structure/grille/rustic,/obj/item/weapon/material/shard{icon_state = "medium"},/turf/simulated/floor/tiled/old_tile/green,/area/submap/methlab) -"CW" = (/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/submap/methlab) -"DG" = (/obj/structure/fence,/turf/simulated/floor/outdoors/dirt,/area/submap/methlab) -"DP" = (/obj/item/weapon/reagent_containers/dropper,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/steel_dirty,/area/submap/methlab) -"Eb" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/item/seeds/ambrosiadeusseed,/obj/effect/floor_decal/rust,/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/old_tile/white,/area/submap/methlab) -"EW" = (/obj/item/weapon/stool,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/submap/methlab) -"Fg" = (/obj/machinery/door/airlock,/turf/simulated/floor,/area/submap/methlab) -"Gs" = (/obj/structure/table/steel_reinforced,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/steel_dirty,/area/submap/methlab) -"GP" = (/obj/structure/flora/tree/sif,/turf/template_noop,/area/submap/methlab) -"HA" = (/obj/structure/window/reinforced/full,/obj/structure/grille/rustic,/turf/simulated/floor/tiled/old_tile/green,/area/submap/methlab) -"HN" = (/obj/machinery/porta_turret/lasertag/red{name = "REAL turret"},/turf/simulated/floor,/area/submap/methlab) -"HX" = (/obj/machinery/light,/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/obj/structure/barricade,/turf/simulated/floor/tiled/steel_dirty,/area/submap/methlab) -"Ih" = (/obj/structure/sign/warning/lethal_turrets,/turf/simulated/wall,/area/submap/methlab) -"IH" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/old_tile/green,/area/submap/methlab) -"IQ" = (/obj/item/clothing/accessory/stethoscope,/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor,/area/submap/methlab) -"JQ" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/effect/floor_decal/rust,/obj/effect/floor_decal/steeldecal/steel_decals3,/turf/simulated/floor/tiled/steel_dirty,/area/submap/methlab) -"Kg" = (/obj/structure/fence/cut/medium{dir = 4},/turf/simulated/floor/outdoors/dirt,/area/submap/methlab) -"KK" = (/obj/machinery/chem_master,/obj/effect/floor_decal/rust/color_rustedfull,/turf/simulated/floor/tiled/steel_dirty,/area/submap/methlab) -"Lh" = (/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/steel_dirty,/area/submap/methlab) -"LM" = (/obj/random/trash,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/steel_dirty,/area/submap/methlab) -"LX" = (/obj/item/weapon/stool,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/steel_dirty,/area/submap/methlab) -"Mn" = (/obj/structure/barricade,/turf/simulated/floor,/area/submap/methlab) -"Of" = (/obj/effect/wingrille_spawn/reinforced,/obj/structure/barricade,/turf/simulated/floor/tiled/techfloor,/area/submap/methlab) -"Ol" = (/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/old_tile/green,/area/submap/methlab) -"Oq" = (/obj/structure/fence{dir = 4},/turf/template_noop,/area/submap/methlab) -"Py" = (/obj/random/trash,/turf/simulated/floor/outdoors/dirt,/area/submap/methlab) -"PH" = (/obj/machinery/seed_extractor,/turf/simulated/floor/tiled/old_tile/white,/area/submap/methlab) -"PO" = (/obj/structure/table/steel_reinforced,/obj/item/weapon/module/power_control,/turf/simulated/floor/tiled/steel_dirty,/area/submap/methlab) -"PZ" = (/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/old_tile/green,/area/submap/methlab) -"QP" = (/obj/structure/table/steel_reinforced,/turf/simulated/floor/tiled/steel_dirty,/area/submap/methlab) -"QW" = (/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/old_tile/green,/area/submap/methlab) -"Sn" = (/obj/structure/barricade,/obj/effect/floor_decal/steeldecal/steel_decals_central5,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/steel_dirty,/area/submap/methlab) -"St" = (/obj/structure/salvageable/implant_container,/turf/simulated/floor/tiled/steel_dirty,/area/submap/methlab) -"Ti" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/machinery/light{dir = 4},/obj/item/seeds/ambrosiadeusseed,/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/old_tile/white,/area/submap/methlab) -"Tr" = (/obj/item/weapon/stool,/obj/effect/floor_decal/rust,/obj/random/maintenance/engineering,/turf/simulated/floor/tiled/steel_dirty,/area/submap/methlab) -"Ts" = (/obj/random/maintenance,/turf/simulated/floor/tiled/steel_dirty,/area/submap/methlab) -"Ty" = (/obj/item/clothing/under/suit_jacket/burgundy,/obj/item/clothing/shoes/dress{pixel_y = -9},/obj/item/clothing/mask/dolphin,/obj/structure/curtain/black,/turf/simulated/floor/tiled/techfloor,/area/submap/methlab) -"TU" = (/obj/structure/safe/floor,/obj/item/weapon/reagent_containers/food/snacks/grown/ambrosiadeus,/obj/item/weapon/reagent_containers/food/snacks/grown/ambrosiadeus,/obj/item/weapon/reagent_containers/food/snacks/grown/ambrosiadeus,/obj/item/weapon/reagent_containers/food/snacks/grown/ambrosiadeus,/obj/item/weapon/reagent_containers/food/snacks/grown/ambrosiadeus,/obj/item/weapon/reagent_containers/food/snacks/grown/ambrosiadeus,/obj/item/weapon/reagent_containers/food/snacks/grown/ambrosiadeus,/obj/item/weapon/reagent_containers/food/snacks/grown/ambrosiadeus,/obj/item/weapon/reagent_containers/food/snacks/grown/ambrosiadeus,/obj/item/weapon/reagent_containers/food/snacks/grown/ambrosiadeus,/obj/item/weapon/storage/bag/cash,/obj/item/weapon/storage/bag/cash,/turf/simulated/floor,/area/submap/methlab) -"Uy" = (/obj/structure/fence/corner{dir = 8},/turf/template_noop,/area/submap/methlab) -"UD" = (/obj/item/clothing/under/suit_jacket/red,/obj/item/clothing/shoes/dress{pixel_y = -9},/obj/item/clothing/mask/goblin,/obj/structure/curtain/black,/turf/simulated/floor/tiled/techfloor,/area/submap/methlab) -"UO" = (/obj/item/weapon/material/shard{icon_state = "medium"},/turf/template_noop,/area/submap/methlab) -"Vf" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/obj/random/maintenance/cargo,/turf/simulated/floor/tiled/old_tile/green,/area/submap/methlab) -"Vu" = (/obj/structure/fence/cut/medium{dir = 4},/turf/template_noop,/area/submap/methlab) -"Vw" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/obj/random/maintenance,/turf/simulated/floor/tiled/steel_dirty,/area/submap/methlab) -"VV" = (/obj/structure/fence/corner{dir = 10},/turf/template_noop,/area/submap/methlab) -"Wp" = (/obj/structure/loot_pile/maint/trash,/turf/template_noop,/area/submap/methlab) -"Xi" = (/turf/simulated/wall,/area/submap/methlab) -"Xo" = (/obj/effect/floor_decal/rust,/obj/random/maintenance/engineering,/turf/simulated/floor/tiled/old_tile/green,/area/submap/methlab) -"Xr" = (/obj/item/stack/material/phoron{amount = 5},/obj/item/stack/material/phoron{amount = 5},/obj/item/weapon/extinguisher,/obj/item/weapon/storage/box/lights/mixed,/turf/simulated/floor,/area/submap/methlab) -"Yz" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/item/seeds/ambrosiavulgarisseed,/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/old_tile/white,/area/submap/methlab) -"Zp" = (/obj/structure/grille/rustic,/obj/item/weapon/material/shard{pixel_x = 5; pixel_y = 3},/turf/simulated/floor/tiled/old_tile/green,/area/submap/methlab) -"Zt" = (/obj/structure/salvageable/autolathe,/obj/effect/floor_decal/rust/color_rustedfull,/turf/simulated/floor/tiled/steel_dirty,/area/submap/methlab) +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ai" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/paper_bin, +/obj/item/weapon/pen/fountain, +/turf/simulated/floor/tiled/steel_dirty, +/area/submap/methlab) +"as" = ( +/obj/machinery/door/airlock, +/turf/simulated/floor/tiled/steel_grid, +/area/submap/methlab) +"aY" = ( +/obj/item/weapon/material/shard{ + pixel_x = 5; + pixel_y = 3 + }, +/obj/item/weapon/material/shard{ + pixel_x = 9 + }, +/turf/template_noop, +/area/submap/methlab) +"bn" = ( +/obj/structure/fence/cut/medium, +/turf/template_noop, +/area/submap/methlab) +"bA" = ( +/obj/item/weapon/cell/hyper, +/turf/simulated/floor/tiled/steel_dirty, +/area/submap/methlab) +"bJ" = ( +/obj/effect/floor_decal/rust, +/obj/random/maintenance, +/turf/simulated/floor/tiled/steel_dirty, +/area/submap/methlab) +"bQ" = ( +/obj/item/weapon/material/shard{ + icon_state = "medium" + }, +/obj/item/weapon/material/shard{ + pixel_x = 9 + }, +/obj/item/weapon/material/shard{ + pixel_x = 5 + }, +/turf/template_noop, +/area/submap/methlab) +"cg" = ( +/obj/structure/table/steel_reinforced, +/obj/item/device/radio{ + anchored = 1; + canhear_range = 1; + frequency = 1487; + icon = 'icons/obj/items.dmi'; + icon_state = "red_phone"; + name = "Reception Emergency Phone" + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/submap/methlab) +"ck" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/item/seeds/ambrosiadeusseed, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/old_tile/white/virgo3b, +/area/submap/methlab) +"dy" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/obj/effect/floor_decal/rust, +/obj/random/maintenance, +/turf/simulated/floor/tiled/steel_dirty, +/area/submap/methlab) +"fr" = ( +/obj/structure/fence, +/turf/template_noop, +/area/submap/methlab) +"fD" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/submap/methlab) +"fY" = ( +/obj/item/stack/cable_coil, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating/external/virgo3b, +/area/submap/methlab) +"hf" = ( +/turf/simulated/floor/plating/external/virgo3b, +/area/submap/methlab) +"hj" = ( +/obj/machinery/power/port_gen/pacman, +/turf/simulated/floor/plating/external/virgo3b, +/area/submap/methlab) +"hE" = ( +/obj/machinery/door/airlock/vault/bolted, +/turf/simulated/floor/tiled/techfloor/grid, +/area/submap/methlab) +"hQ" = ( +/turf/simulated/floor/tiled/steel_dirty, +/area/submap/methlab) +"ic" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/machinery/light{ + dir = 8 + }, +/obj/item/seeds/ambrosiavulgarisseed, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/old_tile/white/virgo3b, +/area/submap/methlab) +"iz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating/external/virgo3b, +/area/submap/methlab) +"iN" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/reagent_containers/dropper, +/turf/simulated/floor/tiled/steel_dirty, +/area/submap/methlab) +"jm" = ( +/obj/structure/fence{ + dir = 4 + }, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/methlab) +"jo" = ( +/obj/machinery/vending/hydronutrients, +/turf/simulated/floor/tiled/old_tile/white/virgo3b, +/area/submap/methlab) +"kp" = ( +/obj/effect/floor_decal/rust/mono_rusted3, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/old_tile/green/virgo3b, +/area/submap/methlab) +"lb" = ( +/obj/machinery/biogenerator, +/turf/simulated/floor/tiled/old_tile/white/virgo3b, +/area/submap/methlab) +"lt" = ( +/obj/item/frame/apc, +/obj/structure/table/steel, +/obj/machinery/light_switch{ + pixel_x = 11; + pixel_y = 22 + }, +/turf/simulated/floor/plating/external/virgo3b, +/area/submap/methlab) +"lx" = ( +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/methlab) +"lJ" = ( +/obj/structure/fence/corner, +/turf/template_noop, +/area/submap/methlab) +"lN" = ( +/obj/structure/barricade, +/obj/effect/floor_decal/steeldecal/steel_decals_central5, +/turf/simulated/floor/tiled/steel_dirty, +/area/submap/methlab) +"me" = ( +/obj/structure/salvageable/data, +/turf/simulated/floor/tiled/steel_dirty, +/area/submap/methlab) +"mi" = ( +/obj/effect/floor_decal/sign, +/turf/simulated/wall, +/area/submap/methlab) +"mw" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/storage/toolbox/syndicate, +/turf/simulated/floor/tiled/steel_dirty, +/area/submap/methlab) +"nq" = ( +/obj/random/junk, +/turf/simulated/floor/plating/external/virgo3b, +/area/submap/methlab) +"oo" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/item/seeds/ambrosiainfernusseed, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/old_tile/white/virgo3b, +/area/submap/methlab) +"oF" = ( +/obj/structure/fence/cut/large, +/turf/template_noop, +/area/submap/methlab) +"oN" = ( +/turf/simulated/wall/r_wall, +/area/submap/methlab) +"pq" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/random/junk, +/turf/simulated/floor/tiled/steel_dirty, +/area/submap/methlab) +"ps" = ( +/turf/template_noop, +/area/submap/methlab) +"rK" = ( +/obj/item/weapon/reagent_containers/glass/beaker/large, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating/external/virgo3b, +/area/submap/methlab) +"rU" = ( +/obj/item/clothing/under/suit_jacket, +/obj/item/clothing/shoes/dress{ + pixel_y = -9 + }, +/obj/item/clothing/mask/demon, +/obj/structure/curtain/black, +/turf/simulated/floor/tiled/techfloor, +/area/submap/methlab) +"sI" = ( +/obj/machinery/light, +/obj/effect/floor_decal/rust, +/obj/effect/decal/cleanable/dirt, +/obj/random/maintenance, +/turf/simulated/floor/tiled/steel_dirty, +/area/submap/methlab) +"sW" = ( +/obj/item/weapon/material/shard{ + pixel_x = 9 + }, +/turf/template_noop, +/area/submap/methlab) +"tt" = ( +/obj/structure/table/steel_reinforced, +/obj/structure/salvageable/personal, +/turf/simulated/floor/tiled/steel_dirty, +/area/submap/methlab) +"tz" = ( +/obj/effect/wingrille_spawn/reinforced, +/turf/simulated/floor/tiled/techfloor, +/area/submap/methlab) +"tL" = ( +/obj/effect/floor_decal/rust, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/steel_dirty, +/area/submap/methlab) +"tQ" = ( +/obj/structure/girder, +/turf/simulated/floor/plating/external/virgo3b, +/area/submap/methlab) +"uA" = ( +/obj/structure/fence/cut/large{ + dir = 8 + }, +/turf/template_noop, +/area/submap/methlab) +"uY" = ( +/obj/random/trash, +/turf/simulated/floor/tiled/steel_dirty, +/area/submap/methlab) +"wd" = ( +/turf/simulated/floor/tiled/old_tile/green/virgo3b, +/area/submap/methlab) +"wI" = ( +/obj/item/weapon/reagent_containers/dropper, +/obj/random/junk, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/steel_dirty, +/area/submap/methlab) +"wQ" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/template_noop, +/area/submap/methlab) +"xM" = ( +/obj/machinery/door/airlock, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/steel_grid, +/area/submap/methlab) +"xR" = ( +/obj/structure/loot_pile/maint/technical, +/turf/template_noop, +/area/submap/methlab) +"yr" = ( +/obj/random/trash, +/turf/simulated/floor/plating/external/virgo3b, +/area/submap/methlab) +"yM" = ( +/obj/item/clothing/under/suit_jacket/really_black, +/obj/item/clothing/shoes/dress{ + pixel_y = -9 + }, +/obj/item/clothing/mask/luchador, +/obj/structure/curtain/black, +/turf/simulated/floor/tiled/techfloor, +/area/submap/methlab) +"yY" = ( +/obj/effect/floor_decal/rust, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/steel_dirty, +/area/submap/methlab) +"zu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/old_tile/green/virgo3b, +/area/submap/methlab) +"zG" = ( +/obj/random/junk, +/turf/template_noop, +/area/submap/methlab) +"zH" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/template_noop, +/area/submap/methlab) +"zZ" = ( +/obj/structure/fence/corner{ + dir = 4 + }, +/turf/template_noop, +/area/submap/methlab) +"AB" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/reagent_containers/glass/beaker/large, +/turf/simulated/floor/tiled/steel_dirty, +/area/submap/methlab) +"AM" = ( +/mob/living/simple_mob/humanoid/merc/melee/poi, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/steel_dirty, +/area/submap/methlab) +"AW" = ( +/obj/random/junk, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/steel_dirty, +/area/submap/methlab) +"BP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/steel_dirty, +/area/submap/methlab) +"BR" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/reagent_containers/glass/bucket, +/obj/item/weapon/reagent_containers/glass/bucket, +/turf/simulated/floor/tiled/steel_dirty, +/area/submap/methlab) +"BT" = ( +/obj/structure/safe/floor, +/obj/item/weapon/reagent_containers/food/snacks/grown/ambrosiavulgaris, +/obj/item/weapon/reagent_containers/food/snacks/grown/ambrosiavulgaris, +/obj/item/weapon/reagent_containers/food/snacks/grown/ambrosiavulgaris, +/obj/item/weapon/reagent_containers/food/snacks/grown/ambrosiavulgaris, +/obj/item/weapon/reagent_containers/food/snacks/grown/ambrosiavulgaris, +/obj/item/weapon/reagent_containers/food/snacks/grown/ambrosiavulgaris, +/obj/item/weapon/reagent_containers/food/snacks/grown/ambrosiavulgaris, +/obj/item/weapon/reagent_containers/food/snacks/grown/ambrosiavulgaris, +/obj/item/weapon/reagent_containers/food/snacks/grown/ambrosiavulgaris, +/obj/item/weapon/reagent_containers/food/snacks/grown/ambrosiavulgaris, +/obj/item/weapon/storage/bag/cash, +/obj/item/weapon/storage/bag/cash, +/turf/simulated/floor/plating/external/virgo3b, +/area/submap/methlab) +"CH" = ( +/obj/item/seeds/ambrosiavulgarisseed, +/obj/item/seeds/ambrosiavulgarisseed, +/obj/item/seeds/ambrosiavulgarisseed, +/obj/item/seeds/ambrosiainfernusseed, +/obj/item/seeds/ambrosiainfernusseed, +/obj/item/seeds/ambrosiainfernusseed, +/obj/item/seeds/ambrosiadeusseed, +/obj/item/seeds/ambrosiadeusseed, +/obj/item/seeds/ambrosiadeusseed, +/obj/structure/table/rack, +/turf/simulated/floor/tiled/old_tile/white/virgo3b, +/area/submap/methlab) +"CL" = ( +/obj/structure/grille/rustic, +/obj/item/weapon/material/shard{ + icon_state = "medium" + }, +/turf/simulated/floor/tiled/old_tile/green/virgo3b, +/area/submap/methlab) +"CW" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/submap/methlab) +"DG" = ( +/obj/structure/fence, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/methlab) +"DP" = ( +/obj/item/weapon/reagent_containers/dropper, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/steel_dirty, +/area/submap/methlab) +"Eb" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/item/seeds/ambrosiadeusseed, +/obj/effect/floor_decal/rust, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/old_tile/white/virgo3b, +/area/submap/methlab) +"EW" = ( +/obj/item/weapon/stool, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating/external/virgo3b, +/area/submap/methlab) +"Fg" = ( +/obj/machinery/door/airlock, +/turf/simulated/floor/plating/external/virgo3b, +/area/submap/methlab) +"Gs" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/submap/methlab) +"GP" = ( +/obj/structure/flora/tree/sif, +/turf/template_noop, +/area/submap/methlab) +"HA" = ( +/obj/structure/window/reinforced/full, +/obj/structure/grille/rustic, +/turf/simulated/floor/tiled/old_tile/green/virgo3b, +/area/submap/methlab) +"HN" = ( +/obj/machinery/porta_turret/lasertag/red{ + name = "REAL turret" + }, +/turf/simulated/floor/plating/external/virgo3b, +/area/submap/methlab) +"HX" = ( +/obj/machinery/light, +/obj/effect/floor_decal/rust, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade, +/turf/simulated/floor/tiled/steel_dirty, +/area/submap/methlab) +"Ih" = ( +/obj/structure/sign/warning/lethal_turrets, +/turf/simulated/wall, +/area/submap/methlab) +"IH" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/old_tile/green/virgo3b, +/area/submap/methlab) +"IQ" = ( +/obj/item/clothing/accessory/stethoscope, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating/external/virgo3b, +/area/submap/methlab) +"JQ" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/effect/floor_decal/rust, +/obj/effect/floor_decal/steeldecal/steel_decals3, +/turf/simulated/floor/tiled/steel_dirty, +/area/submap/methlab) +"Kg" = ( +/obj/structure/fence/cut/medium{ + dir = 4 + }, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/methlab) +"KK" = ( +/obj/machinery/chem_master, +/obj/effect/floor_decal/rust/color_rustedfull, +/turf/simulated/floor/tiled/steel_dirty, +/area/submap/methlab) +"Lh" = ( +/obj/effect/floor_decal/rust, +/turf/simulated/floor/tiled/steel_dirty, +/area/submap/methlab) +"LM" = ( +/obj/random/trash, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/steel_dirty, +/area/submap/methlab) +"LX" = ( +/obj/item/weapon/stool, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/steel_dirty, +/area/submap/methlab) +"Mn" = ( +/obj/structure/barricade, +/turf/simulated/floor/plating/external/virgo3b, +/area/submap/methlab) +"Of" = ( +/obj/effect/wingrille_spawn/reinforced, +/obj/structure/barricade, +/turf/simulated/floor/tiled/techfloor, +/area/submap/methlab) +"Ol" = ( +/obj/effect/floor_decal/rust, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/old_tile/green/virgo3b, +/area/submap/methlab) +"Oq" = ( +/obj/structure/fence{ + dir = 4 + }, +/turf/template_noop, +/area/submap/methlab) +"Py" = ( +/obj/random/trash, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/methlab) +"PH" = ( +/obj/machinery/seed_extractor, +/turf/simulated/floor/tiled/old_tile/white/virgo3b, +/area/submap/methlab) +"PO" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/module/power_control, +/turf/simulated/floor/tiled/steel_dirty, +/area/submap/methlab) +"PZ" = ( +/obj/effect/floor_decal/rust, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/old_tile/green/virgo3b, +/area/submap/methlab) +"QP" = ( +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled/steel_dirty, +/area/submap/methlab) +"QW" = ( +/obj/effect/floor_decal/rust, +/turf/simulated/floor/tiled/old_tile/green/virgo3b, +/area/submap/methlab) +"Sn" = ( +/obj/structure/barricade, +/obj/effect/floor_decal/steeldecal/steel_decals_central5, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/steel_dirty, +/area/submap/methlab) +"St" = ( +/obj/structure/salvageable/implant_container, +/turf/simulated/floor/tiled/steel_dirty, +/area/submap/methlab) +"Ti" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/machinery/light{ + dir = 4 + }, +/obj/item/seeds/ambrosiadeusseed, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/old_tile/white/virgo3b, +/area/submap/methlab) +"Tr" = ( +/obj/item/weapon/stool, +/obj/effect/floor_decal/rust, +/obj/random/maintenance/engineering, +/turf/simulated/floor/tiled/steel_dirty, +/area/submap/methlab) +"Ts" = ( +/obj/random/maintenance, +/turf/simulated/floor/tiled/steel_dirty, +/area/submap/methlab) +"Ty" = ( +/obj/item/clothing/under/suit_jacket/burgundy, +/obj/item/clothing/shoes/dress{ + pixel_y = -9 + }, +/obj/item/clothing/mask/dolphin, +/obj/structure/curtain/black, +/turf/simulated/floor/tiled/techfloor, +/area/submap/methlab) +"TU" = ( +/obj/structure/safe/floor, +/obj/item/weapon/reagent_containers/food/snacks/grown/ambrosiadeus, +/obj/item/weapon/reagent_containers/food/snacks/grown/ambrosiadeus, +/obj/item/weapon/reagent_containers/food/snacks/grown/ambrosiadeus, +/obj/item/weapon/reagent_containers/food/snacks/grown/ambrosiadeus, +/obj/item/weapon/reagent_containers/food/snacks/grown/ambrosiadeus, +/obj/item/weapon/reagent_containers/food/snacks/grown/ambrosiadeus, +/obj/item/weapon/reagent_containers/food/snacks/grown/ambrosiadeus, +/obj/item/weapon/reagent_containers/food/snacks/grown/ambrosiadeus, +/obj/item/weapon/reagent_containers/food/snacks/grown/ambrosiadeus, +/obj/item/weapon/reagent_containers/food/snacks/grown/ambrosiadeus, +/obj/item/weapon/storage/bag/cash, +/obj/item/weapon/storage/bag/cash, +/turf/simulated/floor/plating/external/virgo3b, +/area/submap/methlab) +"Uy" = ( +/obj/structure/fence/corner{ + dir = 8 + }, +/turf/template_noop, +/area/submap/methlab) +"UD" = ( +/obj/item/clothing/under/suit_jacket/red, +/obj/item/clothing/shoes/dress{ + pixel_y = -9 + }, +/obj/item/clothing/mask/goblin, +/obj/structure/curtain/black, +/turf/simulated/floor/tiled/techfloor, +/area/submap/methlab) +"UO" = ( +/obj/item/weapon/material/shard{ + icon_state = "medium" + }, +/turf/template_noop, +/area/submap/methlab) +"Vf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/random/maintenance/cargo, +/turf/simulated/floor/tiled/old_tile/green/virgo3b, +/area/submap/methlab) +"Vu" = ( +/obj/structure/fence/cut/medium{ + dir = 4 + }, +/turf/template_noop, +/area/submap/methlab) +"Vw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/random/maintenance, +/turf/simulated/floor/tiled/steel_dirty, +/area/submap/methlab) +"VV" = ( +/obj/structure/fence/corner{ + dir = 10 + }, +/turf/template_noop, +/area/submap/methlab) +"Wp" = ( +/obj/structure/loot_pile/maint/trash, +/turf/template_noop, +/area/submap/methlab) +"Xi" = ( +/turf/simulated/wall, +/area/submap/methlab) +"Xo" = ( +/obj/effect/floor_decal/rust, +/obj/random/maintenance/engineering, +/turf/simulated/floor/tiled/old_tile/green/virgo3b, +/area/submap/methlab) +"Xr" = ( +/obj/item/stack/material/phoron{ + amount = 5 + }, +/obj/item/stack/material/phoron{ + amount = 5 + }, +/obj/item/weapon/extinguisher, +/obj/item/weapon/storage/box/lights/mixed, +/turf/simulated/floor/plating/external/virgo3b, +/area/submap/methlab) +"Yz" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/item/seeds/ambrosiavulgarisseed, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/old_tile/white/virgo3b, +/area/submap/methlab) +"Zp" = ( +/obj/structure/grille/rustic, +/obj/item/weapon/material/shard{ + pixel_x = 5; + pixel_y = 3 + }, +/turf/simulated/floor/tiled/old_tile/green/virgo3b, +/area/submap/methlab) +"Zt" = ( +/obj/structure/salvageable/autolathe, +/obj/effect/floor_decal/rust/color_rustedfull, +/turf/simulated/floor/tiled/steel_dirty, +/area/submap/methlab) (1,1,1) = {" -UyOqOqVuOqOqOqVuOqOqOqjmjmOqOqOqVuOqOqzZ -frpspspspspspspspspsXitzOfOfIhpspspspsfr -frpspsHNpspsGPpspsXiXiKKGsQPXiXipsGPpsoF -oFpspshfpspslxpspsXibArKDPTrmetQWppspsps -pspspshfpszGPylxWptQKKABiNuYmeoNoNoNoNfr -pspspsIhXiOfOftzXiXibJEWyYfYdyoNBTBToNfr -frpsXiXiZtcgttaiStStKKPOABuYIQhEfDCWoNfr -frlxtzmwhfTsLhpqhQAMwItLLXAWJQoNTUTUoNoF -DGpsOfBRLhuYhfsIizLMVwBPHXSnlNoNoNoNoNfr -frWpXitQXixMXiXirUTyyMUDXiasasXihjltXifr -pspspspsHAkpHAXiXiXiXiXiXihfhfXiyrXrXifr -oFpsHAHAHAOlHAHAHAxRxRWpXiMnMnXiFgXiXifr -oFbQCLYzPZVfzuEbHApspspsXiasasXinqyrhfoF -pssWHAYzPZPHOlckHApspszHmiyrhfIhwQpspsps -pspsHAicwdjoVfTiHApspspspsPylxhfpspspsfr -bnpsHAooXolbIHckHAUOpszGpslxpsHNpspspsfr -frpsHAoowdCHQWckZpaYzGpspspslxpspsGPpsfr -pspsHAHAHAHAHAHAHApspspspslxpspspspspsfr -frpspspspspspspspspspspspspspspspspspsfr -VVOqOqOqOqOquApsOqVuOqOqOqOqKgpsuAOquAlJ +Uy +fr +fr +oF +ps +ps +fr +fr +DG +fr +ps +oF +oF +ps +ps +bn +fr +ps +fr +VV +"} +(2,1,1) = {" +Oq +ps +ps +ps +ps +ps +ps +lx +ps +Wp +ps +ps +bQ +sW +ps +ps +ps +ps +ps +Oq +"} +(3,1,1) = {" +Oq +ps +ps +ps +ps +ps +Xi +tz +Of +Xi +ps +HA +CL +HA +HA +HA +HA +HA +ps +Oq +"} +(4,1,1) = {" +Vu +ps +HN +hf +hf +Ih +Xi +mw +BR +tQ +ps +HA +Yz +Yz +ic +oo +oo +HA +ps +Oq +"} +(5,1,1) = {" +Oq +ps +ps +ps +ps +Xi +Zt +hf +Lh +Xi +HA +HA +PZ +PZ +wd +Xo +wd +HA +ps +Oq +"} +(6,1,1) = {" +Oq +ps +ps +ps +zG +Of +cg +Ts +uY +xM +kp +Ol +Vf +PH +jo +lb +CH +HA +ps +Oq +"} +(7,1,1) = {" +Oq +ps +GP +lx +Py +Of +tt +Lh +hf +Xi +HA +HA +zu +Ol +Vf +IH +QW +HA +ps +uA +"} +(8,1,1) = {" +Vu +ps +ps +ps +lx +tz +ai +pq +sI +Xi +Xi +HA +Eb +ck +Ti +ck +ck +HA +ps +ps +"} +(9,1,1) = {" +Oq +ps +ps +ps +Wp +Xi +St +hQ +iz +rU +Xi +HA +HA +HA +HA +HA +Zp +HA +ps +Oq +"} +(10,1,1) = {" +Oq +ps +Xi +Xi +tQ +Xi +St +AM +LM +Ty +Xi +xR +ps +ps +ps +UO +aY +ps +ps +Vu +"} +(11,1,1) = {" +Oq +Xi +Xi +bA +KK +bJ +KK +wI +Vw +yM +Xi +xR +ps +ps +ps +ps +zG +ps +ps +Oq +"} +(12,1,1) = {" +jm +tz +KK +rK +AB +EW +PO +tL +BP +UD +Xi +Wp +ps +zH +ps +zG +ps +ps +ps +Oq +"} +(13,1,1) = {" +jm +Of +Gs +DP +iN +yY +AB +LX +HX +Xi +Xi +Xi +Xi +mi +ps +ps +ps +ps +ps +Oq +"} +(14,1,1) = {" +Oq +Of +QP +Tr +uY +fY +uY +AW +Sn +as +hf +Mn +as +yr +Py +lx +ps +lx +ps +Oq +"} +(15,1,1) = {" +Oq +Ih +Xi +me +me +dy +IQ +JQ +lN +as +hf +Mn +as +hf +lx +ps +lx +ps +ps +Kg +"} +(16,1,1) = {" +Oq +ps +Xi +tQ +oN +oN +hE +oN +oN +Xi +Xi +Xi +Xi +Ih +hf +HN +ps +ps +ps +ps +"} +(17,1,1) = {" +Vu +ps +ps +Wp +oN +BT +fD +TU +oN +hj +yr +Fg +nq +wQ +ps +ps +ps +ps +ps +uA +"} +(18,1,1) = {" +Oq +ps +GP +ps +oN +BT +CW +TU +oN +lt +Xr +Xi +yr +ps +ps +ps +GP +ps +ps +Oq +"} +(19,1,1) = {" +Oq +ps +ps +ps +oN +oN +oN +oN +oN +Xi +Xi +Xi +hf +ps +ps +ps +ps +ps +ps +uA +"} +(20,1,1) = {" +zZ +fr +oF +ps +fr +fr +fr +oF +fr +fr +fr +fr +oF +ps +fr +fr +fr +fr +fr +lJ "} diff --git a/maps/submaps/surface_submaps/plains/oldhotel.dmm b/maps/submaps/surface_submaps/plains/oldhotel.dmm index 57ba1213bb..febe52a0ce 100644 --- a/maps/submaps/surface_submaps/plains/oldhotel.dmm +++ b/maps/submaps/surface_submaps/plains/oldhotel.dmm @@ -1,153 +1,1346 @@ -"ai" = (/obj/random/trash,/turf/simulated/floor/carpet/purcarpet,/area/submap/oldhotel) -"aJ" = (/obj/item/weapon/towel/random,/obj/item/weapon/towel/random,/obj/structure/table/standard,/obj/item/weapon/storage/firstaid,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldhotel) -"bb" = (/obj/machinery/light/small{dir = 4},/obj/item/device/multitool,/turf/simulated/floor/wood,/area/submap/oldhotel) -"bQ" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldhotel) -"bW" = (/obj/item/weapon/material/shard,/turf/template_noop,/area/submap/oldhotel) -"cA" = (/obj/structure/sink/kitchen,/turf/simulated/wall/wood,/area/submap/oldhotel) -"cZ" = (/obj/effect/decal/cleanable/dirt,/obj/random/junk,/turf/simulated/floor/carpet/oracarpet,/area/submap/oldhotel) -"da" = (/obj/structure/bed/chair/sofa/teal/right,/turf/simulated/floor/carpet/blue,/area/submap/oldhotel) -"dc" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/carpet/oracarpet,/area/submap/oldhotel) -"dn" = (/obj/structure/table/woodentable,/obj/item/weapon/flame/candle/everburn,/turf/simulated/floor/wood,/area/submap/oldhotel) -"dr" = (/obj/item/stack/material/log/sif,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldhotel) -"dz" = (/obj/structure/sink{dir = 8; pixel_x = -12; pixel_y = 2},/obj/structure/mirror{dir = 4; pixel_x = -28},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldhotel) -"dL" = (/obj/structure/window/reinforced/full,/obj/structure/grille/rustic,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldhotel) -"eK" = (/obj/structure/bonfire/sifwood,/obj/structure/grille/rustic,/turf/simulated/floor/outdoors/dirt,/area/submap/oldhotel) -"go" = (/obj/structure/simple_door/iron,/turf/simulated/floor/wood,/area/submap/oldhotel) -"gA" = (/turf/template_noop,/area/template_noop) -"gM" = (/obj/machinery/appliance/cooker/oven,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldhotel) -"hc" = (/obj/random/trash,/turf/simulated/floor/wood,/area/submap/oldhotel) -"hp" = (/obj/random/junk,/turf/simulated/floor/carpet/sblucarpet,/area/submap/oldhotel) -"hQ" = (/turf/simulated/wall/wood,/area/submap/oldhotel) -"if" = (/obj/structure/bed/chair/sofa/teal/left{dir = 8},/turf/simulated/floor/carpet/blue,/area/submap/oldhotel) -"iU" = (/obj/structure/table/woodentable,/obj/item/trash/tray,/turf/simulated/floor/wood,/area/submap/oldhotel) -"ja" = (/obj/effect/decal/cleanable/dirt,/obj/random/junk,/turf/simulated/floor/carpet/purcarpet,/area/submap/oldhotel) -"je" = (/obj/structure/closet/cabinet,/obj/item/device/binoculars/spyglass,/obj/random/contraband,/obj/random/contraband,/obj/random/maintenance/medical,/obj/random/cash,/obj/random/drinkbottle,/obj/random/junk,/obj/random/junk,/obj/random/maintenance,/obj/random/maintenance,/turf/simulated/floor/wood,/area/submap/oldhotel) -"jO" = (/obj/structure/bed/chair/sofa/teal,/turf/simulated/floor/carpet/blue,/area/submap/oldhotel) -"jS" = (/obj/structure/closet/cabinet,/obj/random/maintenance/medical,/obj/random/cash,/obj/random/cigarettes,/obj/random/firstaid,/obj/random/junk,/obj/random/junk,/obj/random/junk,/obj/random/maintenance,/turf/simulated/floor/wood,/area/submap/oldhotel) -"kh" = (/turf/simulated/floor/carpet/blue,/area/submap/oldhotel) -"kw" = (/obj/structure/lightpost,/turf/template_noop,/area/submap/oldhotel) -"kI" = (/turf/simulated/floor/carpet/sblucarpet,/area/submap/oldhotel) -"kW" = (/obj/structure/table/woodentable,/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker,/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{pixel_x = 3},/turf/simulated/floor/wood,/area/submap/oldhotel) -"lj" = (/obj/structure/table/wooden_reinforced,/obj/item/weapon/material/kitchen/rollingpin,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldhotel) -"ly" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/mimedouble,/turf/simulated/floor/wood,/area/submap/oldhotel) -"lZ" = (/obj/structure/table/woodentable,/obj/item/trash/tray,/turf/simulated/floor/carpet/blue,/area/submap/oldhotel) -"mr" = (/obj/structure/table/woodentable,/obj/item/weapon/cell/hyper,/turf/simulated/floor/wood,/area/submap/oldhotel) -"mR" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/outdoors/dirt,/area/submap/oldhotel) -"nD" = (/turf/simulated/floor,/area/submap/oldhotel) -"nG" = (/obj/item/weapon/material/shard,/turf/simulated/floor/outdoors/dirt,/area/submap/oldhotel) -"nZ" = (/obj/fiftyspawner/wood,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldhotel) -"op" = (/obj/structure/table/woodentable,/obj/random/cigarettes,/turf/simulated/floor/carpet/blue,/area/submap/oldhotel) -"pi" = (/obj/item/weapon/material/shard,/obj/item/weapon/material/shard{icon_state = "medium"; pixel_x = 12; pixel_y = 7},/turf/template_noop,/area/submap/oldhotel) -"pn" = (/obj/item/weapon/material/shard,/obj/item/weapon/material/shard{pixel_x = 7},/turf/template_noop,/area/submap/oldhotel) -"qg" = (/turf/simulated/floor/wood,/area/submap/oldhotel) -"qY" = (/obj/effect/decal/cleanable/dirt,/obj/random/junk,/turf/simulated/floor/wood,/area/submap/oldhotel) -"rb" = (/obj/item/weapon/module/power_control,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldhotel) -"rK" = (/obj/structure/table/woodentable,/obj/item/trash/candle,/turf/simulated/floor/wood,/area/submap/oldhotel) -"rZ" = (/obj/item/weapon/material/shard{icon_state = "medium"},/turf/template_noop,/area/submap/oldhotel) -"sd" = (/obj/structure/toilet,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldhotel) -"sV" = (/obj/structure/table/woodentable,/obj/random/contraband,/turf/simulated/floor/wood,/area/submap/oldhotel) -"tn" = (/obj/structure/simple_door/wood,/turf/simulated/floor/wood,/area/submap/oldhotel) -"tz" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/rddouble,/turf/simulated/floor/wood,/area/submap/oldhotel) -"tE" = (/obj/structure/table/woodentable,/obj/random/coin,/obj/item/weapon/reagent_containers/glass/rag,/turf/simulated/floor/carpet/blue,/area/submap/oldhotel) -"tV" = (/obj/structure/bed/chair/wood{dir = 1},/obj/item/weapon/material/shard,/turf/simulated/floor/wood,/area/submap/oldhotel) -"uF" = (/obj/fiftyspawner/steel,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldhotel) -"uU" = (/obj/structure/closet/cabinet,/obj/random/maintenance/medical,/obj/random/carp_plushie,/obj/random/cigarettes,/obj/random/drinkbottle,/obj/random/junk,/obj/random/junk,/obj/random/junk,/obj/random/maintenance,/turf/simulated/floor/wood,/area/submap/oldhotel) -"vh" = (/obj/structure/bed/chair/sofa/teal/corner,/turf/simulated/floor/carpet/blue,/area/submap/oldhotel) -"vA" = (/obj/structure/table/woodentable,/obj/item/weapon/telecube/randomized{name = "Odd artifact"},/turf/simulated/floor/wood,/area/submap/oldhotel) -"vM" = (/obj/item/weapon/material/shard,/obj/item/weapon/material/shard{pixel_y = -6},/obj/item/weapon/material/shard{pixel_x = 9},/obj/structure/grille/broken/rustic,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldhotel) -"vN" = (/obj/random/humanoidremains,/obj/random/humanoidremains,/turf/simulated/floor/wood/broken,/area/submap/oldhotel) -"vR" = (/obj/structure/table/woodentable,/obj/item/weapon/flame/candle/candelabra,/turf/simulated/floor/carpet/blue,/area/submap/oldhotel) -"wm" = (/obj/random/trash,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/outdoors/dirt,/area/submap/oldhotel) -"wK" = (/obj/item/weapon/material/shard,/obj/item/weapon/material/shard,/obj/item/weapon/material/shard{icon_state = "medium"; pixel_x = 12; pixel_y = 7},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldhotel) -"wV" = (/obj/structure/table/wooden_reinforced,/obj/item/weapon/reagent_containers/glass/beaker,/obj/item/weapon/reagent_containers/food/condiment/enzyme,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldhotel) -"wX" = (/obj/item/weapon/material/shard,/obj/item/weapon/material/shard{icon_state = "medium"; pixel_x = 12; pixel_y = 7},/turf/simulated/floor/outdoors/dirt,/area/submap/oldhotel) -"yj" = (/obj/random/mob/sif/peaceful,/turf/simulated/floor/outdoors/dirt,/area/submap/oldhotel) -"yM" = (/obj/item/stack/cable_coil,/turf/simulated/floor/carpet/purcarpet,/area/submap/oldhotel) -"zs" = (/obj/effect/decal/cleanable/dirt,/obj/random/junk,/turf/simulated/floor/outdoors/dirt,/area/submap/oldhotel) -"zt" = (/obj/structure/noticeboard,/turf/simulated/wall/wood,/area/submap/oldhotel) -"zO" = (/obj/item/weapon/material/shard,/obj/structure/grille/broken/rustic,/obj/item/weapon/material/shard{icon_state = "medium"; pixel_x = 12; pixel_y = 7},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldhotel) -"zP" = (/obj/random/plushie,/turf/simulated/floor/wood,/area/submap/oldhotel) -"Ac" = (/obj/structure/table/wooden_reinforced,/obj/item/weapon/material/knife/butch,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldhotel) -"AO" = (/obj/structure/railing,/turf/simulated/floor/outdoors/dirt,/area/submap/oldhotel) -"AU" = (/obj/structure/table/woodentable,/obj/item/device/tape,/turf/simulated/floor/wood,/area/submap/oldhotel) -"AZ" = (/obj/structure/table/woodentable,/obj/item/trash/candle,/obj/item/weapon/paper{info = "This is a stupid tresure hunt task, that thing is not taking us anywhere. Go on and have fun finding a waste of time."; name = "Wrinkled sheet of paper"},/turf/simulated/floor/wood,/area/submap/oldhotel) -"Bt" = (/obj/structure/closet/cabinet,/obj/item/clothing/gloves/yellow,/obj/random/projectile/scrapped_pistol,/obj/random/junk,/obj/random/junk,/obj/random/junk,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/turf/simulated/floor/wood,/area/submap/oldhotel) -"Cx" = (/turf/simulated/floor/outdoors/dirt,/area/submap/oldhotel) -"CS" = (/obj/item/weapon/storage/toolbox/mechanical,/turf/simulated/floor/wood,/area/submap/oldhotel) -"Di" = (/obj/structure/table/wooden_reinforced,/obj/machinery/microwave,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldhotel) -"Dx" = (/obj/structure/table/wooden_reinforced,/obj/random/medical,/obj/random/medical,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldhotel) -"DN" = (/obj/structure/bed/chair/wood,/turf/simulated/floor/wood,/area/submap/oldhotel) -"Es" = (/obj/random/junk,/turf/simulated/floor/outdoors/dirt,/area/submap/oldhotel) -"ES" = (/obj/random/trash,/turf/simulated/floor/carpet/oracarpet,/area/submap/oldhotel) -"Gk" = (/obj/structure/bed/chair/wood{dir = 1},/turf/simulated/floor/wood,/area/submap/oldhotel) -"Gr" = (/obj/item/frame/apc,/turf/simulated/floor/wood,/area/submap/oldhotel) -"Gz" = (/obj/structure/window/reinforced/tinted{dir = 8},/obj/machinery/shower{dir = 1},/obj/structure/curtain/open/shower/medical,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldhotel) -"GC" = (/obj/random/trash,/obj/random/trash,/turf/simulated/floor/outdoors/dirt,/area/submap/oldhotel) -"GN" = (/obj/structure/flora/tree/sif,/turf/template_noop,/area/submap/oldhotel) -"GV" = (/obj/structure/table/woodentable,/obj/item/weapon/storage/fancy/candle_box,/obj/item/weapon/storage/fancy/candle_box,/obj/item/weapon/storage/fancy/candle_box,/obj/item/weapon/flame/lighter/random,/obj/item/weapon/flame/lighter/random,/obj/item/weapon/melee/umbrella/random,/turf/simulated/floor/wood,/area/submap/oldhotel) -"Ik" = (/obj/item/weapon/material/shard,/obj/item/weapon/material/shard{icon_state = "medium"},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldhotel) -"Il" = (/obj/structure/closet/secure_closet/freezer/kitchen{locked = 0},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldhotel) -"IQ" = (/obj/structure/railing,/obj/structure/closet/crate/bin,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldhotel) -"Jq" = (/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldhotel) -"JT" = (/obj/random/junk,/turf/simulated/floor/wood,/area/submap/oldhotel) -"JV" = (/obj/structure/table/bench/sifwooden,/turf/simulated/floor/outdoors/dirt,/area/submap/oldhotel) -"Lg" = (/obj/item/weapon/material/shard,/obj/structure/grille/broken/rustic,/obj/item/weapon/material/shard{icon_state = "medium"},/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldhotel) -"Mk" = (/obj/structure/closet/crate,/obj/random/action_figure,/obj/random/action_figure,/obj/random/action_figure,/obj/random/action_figure,/turf/simulated/floor/wood,/area/submap/oldhotel) -"Mo" = (/obj/structure/railing,/turf/template_noop,/area/submap/oldhotel) -"Mq" = (/obj/structure/closet/crate,/obj/random/firstaid,/turf/simulated/floor/wood,/area/submap/oldhotel) -"MD" = (/obj/effect/decal/cleanable/dirt,/obj/structure/simple_door/wood,/turf/simulated/floor/wood,/area/submap/oldhotel) -"MU" = (/turf/template_noop,/area/submap/oldhotel) -"Nu" = (/obj/random/soap,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldhotel) -"OQ" = (/obj/structure/closet/crate,/obj/random/cash,/turf/simulated/floor/wood,/area/submap/oldhotel) -"Pd" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/carpet/sblucarpet,/area/submap/oldhotel) -"PO" = (/obj/machinery/space_heater,/turf/simulated/floor/wood/broken,/area/submap/oldhotel) -"Qv" = (/obj/structure/table/woodentable,/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/obj/item/weapon/pen,/obj/item/weapon/pen,/turf/simulated/floor/wood,/area/submap/oldhotel) -"Qw" = (/obj/item/weapon/stool,/obj/random/cash,/obj/machinery/light/small,/turf/simulated/floor/wood,/area/submap/oldhotel) -"QG" = (/obj/structure/bed/chair/sofa/teal{dir = 8},/turf/simulated/floor/carpet/blue,/area/submap/oldhotel) -"RM" = (/obj/machinery/space_heater,/turf/simulated/floor/wood,/area/submap/oldhotel) -"RQ" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/wood/broken,/area/submap/oldhotel) -"Sf" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/yellowdouble,/turf/simulated/floor/wood,/area/submap/oldhotel) -"Sy" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldhotel) -"SG" = (/turf/simulated/floor/carpet/purcarpet,/area/submap/oldhotel) -"SL" = (/obj/item/weapon/material/shard,/obj/item/weapon/material/shard,/obj/item/weapon/material/shard{icon_state = "medium"; pixel_x = 12; pixel_y = 7},/turf/simulated/floor,/area/submap/oldhotel) -"SZ" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/wood,/area/submap/oldhotel) -"TU" = (/turf/simulated/floor/wood/broken,/area/submap/oldhotel) -"Ut" = (/obj/structure/kitchenspike,/turf/simulated/floor/outdoors/dirt,/area/submap/oldhotel) -"Uw" = (/obj/structure/table/wooden_reinforced,/obj/item/weapon/book/manual/chef_recipes,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldhotel) -"UU" = (/obj/structure/table/woodentable,/obj/item/weapon/flame/lighter/zippo/royal,/obj/item/weapon/lipstick/random,/turf/simulated/floor/wood,/area/submap/oldhotel) -"Vf" = (/obj/structure/window/reinforced/tinted{dir = 4},/obj/machinery/shower{dir = 1},/obj/structure/curtain/open/shower/medical,/obj/random/soap,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldhotel) -"Vj" = (/turf/simulated/floor/carpet/oracarpet,/area/submap/oldhotel) -"Wy" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/wood,/area/submap/oldhotel) -"WD" = (/obj/structure/closet/secure_closet/freezer/fridge,/obj/random/meat,/obj/random/meat,/obj/random/meat,/obj/random/meat,/obj/random/meat,/obj/random/meat,/obj/random/meat,/obj/machinery/light/small{dir = 8},/obj/random/meat,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldhotel) -"WH" = (/obj/item/device/flashlight{pixel_x = 2; pixel_y = 2},/turf/simulated/floor/wood,/area/submap/oldhotel) -"YI" = (/obj/structure/coatrack,/turf/simulated/floor/wood,/area/submap/oldhotel) -"YQ" = (/obj/item/weapon/material/shard,/obj/structure/grille/broken/rustic,/turf/simulated/floor/tiled/asteroid_steel,/area/submap/oldhotel) -"ZG" = (/obj/structure/girder,/turf/simulated/floor,/area/submap/oldhotel) +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ai" = ( +/obj/random/trash, +/turf/simulated/floor/carpet/purcarpet, +/area/submap/oldhotel) +"aJ" = ( +/obj/item/weapon/towel/random, +/obj/item/weapon/towel/random, +/obj/structure/table/standard, +/obj/item/weapon/storage/firstaid, +/turf/simulated/floor/tiled/old_tile/white/virgo3b, +/area/submap/oldhotel) +"bb" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/item/device/multitool, +/turf/simulated/floor/wood/virgo3b, +/area/submap/oldhotel) +"bQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/old_tile/white/virgo3b, +/area/submap/oldhotel) +"bW" = ( +/obj/item/weapon/material/shard, +/turf/template_noop, +/area/submap/oldhotel) +"cA" = ( +/obj/structure/sink/kitchen, +/turf/simulated/wall/wood, +/area/submap/oldhotel) +"cZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/random/junk, +/turf/simulated/floor/carpet/sblucarpet/virgo3b, +/area/submap/oldhotel) +"da" = ( +/obj/structure/bed/chair/sofa/teal/right, +/turf/simulated/floor/carpet/sblucarpet/virgo3b, +/area/submap/oldhotel) +"dn" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/flame/candle/everburn, +/turf/simulated/floor/wood/virgo3b, +/area/submap/oldhotel) +"dr" = ( +/obj/item/stack/material/log/sif, +/turf/simulated/floor/tiled/old_tile/white/virgo3b, +/area/submap/oldhotel) +"dz" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/mirror{ + dir = 4; + pixel_x = -28 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/old_tile/white/virgo3b, +/area/submap/oldhotel) +"dL" = ( +/obj/structure/window/reinforced/full, +/obj/structure/grille/rustic, +/turf/simulated/floor/tiled/old_tile/white/virgo3b, +/area/submap/oldhotel) +"eK" = ( +/obj/structure/bonfire/sifwood, +/obj/structure/grille/rustic, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/oldhotel) +"go" = ( +/obj/structure/simple_door/iron, +/turf/simulated/floor/wood/virgo3b, +/area/submap/oldhotel) +"gA" = ( +/turf/template_noop, +/area/template_noop) +"gM" = ( +/obj/machinery/appliance/cooker/oven, +/turf/simulated/floor/tiled/old_tile/white/virgo3b, +/area/submap/oldhotel) +"hc" = ( +/obj/random/trash, +/turf/simulated/floor/wood/virgo3b, +/area/submap/oldhotel) +"hp" = ( +/obj/random/junk, +/turf/simulated/floor/carpet/sblucarpet/virgo3b, +/area/submap/oldhotel) +"hQ" = ( +/turf/simulated/wall/wood, +/area/submap/oldhotel) +"if" = ( +/obj/structure/bed/chair/sofa/teal/left{ + dir = 8 + }, +/turf/simulated/floor/carpet/sblucarpet/virgo3b, +/area/submap/oldhotel) +"iU" = ( +/obj/structure/table/woodentable, +/obj/item/trash/tray, +/turf/simulated/floor/wood/virgo3b, +/area/submap/oldhotel) +"ja" = ( +/obj/effect/decal/cleanable/dirt, +/obj/random/junk, +/turf/simulated/floor/carpet/purcarpet, +/area/submap/oldhotel) +"je" = ( +/obj/structure/closet/cabinet, +/obj/item/device/binoculars/spyglass, +/obj/random/contraband, +/obj/random/contraband, +/obj/random/maintenance/medical, +/obj/random/cash, +/obj/random/drinkbottle, +/obj/random/junk, +/obj/random/junk, +/obj/random/maintenance, +/obj/random/maintenance, +/turf/simulated/floor/wood/virgo3b, +/area/submap/oldhotel) +"jO" = ( +/obj/structure/bed/chair/sofa/teal, +/turf/simulated/floor/carpet/sblucarpet/virgo3b, +/area/submap/oldhotel) +"jS" = ( +/obj/structure/closet/cabinet, +/obj/random/maintenance/medical, +/obj/random/cash, +/obj/random/cigarettes, +/obj/random/firstaid, +/obj/random/junk, +/obj/random/junk, +/obj/random/junk, +/obj/random/maintenance, +/turf/simulated/floor/wood/virgo3b, +/area/submap/oldhotel) +"kw" = ( +/obj/structure/lightpost, +/turf/template_noop, +/area/submap/oldhotel) +"kW" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker, +/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{ + pixel_x = 3 + }, +/turf/simulated/floor/wood/virgo3b, +/area/submap/oldhotel) +"lj" = ( +/obj/structure/table/wooden_reinforced, +/obj/item/weapon/material/kitchen/rollingpin, +/turf/simulated/floor/tiled/old_tile/white/virgo3b, +/area/submap/oldhotel) +"ly" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/mimedouble, +/turf/simulated/floor/wood/virgo3b, +/area/submap/oldhotel) +"lZ" = ( +/obj/structure/table/woodentable, +/obj/item/trash/tray, +/turf/simulated/floor/carpet/sblucarpet/virgo3b, +/area/submap/oldhotel) +"mr" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/cell/hyper, +/turf/simulated/floor/wood/virgo3b, +/area/submap/oldhotel) +"mR" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/oldhotel) +"nD" = ( +/turf/simulated/floor/plating/external/virgo3b, +/area/submap/oldhotel) +"nG" = ( +/obj/item/weapon/material/shard, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/oldhotel) +"nZ" = ( +/obj/fiftyspawner/wood, +/turf/simulated/floor/tiled/old_tile/white/virgo3b, +/area/submap/oldhotel) +"op" = ( +/obj/structure/table/woodentable, +/obj/random/cigarettes, +/turf/simulated/floor/carpet/sblucarpet/virgo3b, +/area/submap/oldhotel) +"pi" = ( +/obj/item/weapon/material/shard, +/obj/item/weapon/material/shard{ + icon_state = "medium"; + pixel_x = 12; + pixel_y = 7 + }, +/turf/template_noop, +/area/submap/oldhotel) +"pn" = ( +/obj/item/weapon/material/shard, +/obj/item/weapon/material/shard{ + pixel_x = 7 + }, +/turf/template_noop, +/area/submap/oldhotel) +"qY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/random/junk, +/turf/simulated/floor/wood/virgo3b, +/area/submap/oldhotel) +"rb" = ( +/obj/item/weapon/module/power_control, +/turf/simulated/floor/tiled/old_tile/white/virgo3b, +/area/submap/oldhotel) +"rK" = ( +/obj/structure/table/woodentable, +/obj/item/trash/candle, +/turf/simulated/floor/wood/virgo3b, +/area/submap/oldhotel) +"rZ" = ( +/obj/item/weapon/material/shard{ + icon_state = "medium" + }, +/turf/template_noop, +/area/submap/oldhotel) +"sd" = ( +/obj/structure/toilet, +/turf/simulated/floor/tiled/old_tile/white/virgo3b, +/area/submap/oldhotel) +"sV" = ( +/obj/structure/table/woodentable, +/obj/random/contraband, +/turf/simulated/floor/wood/virgo3b, +/area/submap/oldhotel) +"tn" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/wood/virgo3b, +/area/submap/oldhotel) +"tz" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/rddouble, +/turf/simulated/floor/wood/virgo3b, +/area/submap/oldhotel) +"tE" = ( +/obj/structure/table/woodentable, +/obj/random/coin, +/obj/item/weapon/reagent_containers/glass/rag, +/turf/simulated/floor/carpet/sblucarpet/virgo3b, +/area/submap/oldhotel) +"tV" = ( +/obj/structure/bed/chair/wood{ + dir = 1 + }, +/obj/item/weapon/material/shard, +/turf/simulated/floor/wood/virgo3b, +/area/submap/oldhotel) +"uF" = ( +/obj/fiftyspawner/steel, +/turf/simulated/floor/tiled/old_tile/white/virgo3b, +/area/submap/oldhotel) +"uU" = ( +/obj/structure/closet/cabinet, +/obj/random/maintenance/medical, +/obj/random/carp_plushie, +/obj/random/cigarettes, +/obj/random/drinkbottle, +/obj/random/junk, +/obj/random/junk, +/obj/random/junk, +/obj/random/maintenance, +/turf/simulated/floor/wood/virgo3b, +/area/submap/oldhotel) +"vh" = ( +/obj/structure/bed/chair/sofa/teal/corner, +/turf/simulated/floor/carpet/sblucarpet/virgo3b, +/area/submap/oldhotel) +"vA" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/telecube/randomized{ + name = "Odd artifact" + }, +/turf/simulated/floor/wood/virgo3b, +/area/submap/oldhotel) +"vM" = ( +/obj/item/weapon/material/shard, +/obj/item/weapon/material/shard{ + pixel_y = -6 + }, +/obj/item/weapon/material/shard{ + pixel_x = 9 + }, +/obj/structure/grille/broken/rustic, +/turf/simulated/floor/tiled/old_tile/white/virgo3b, +/area/submap/oldhotel) +"vN" = ( +/obj/random/humanoidremains, +/obj/random/humanoidremains, +/turf/simulated/floor/wood/virgo3b, +/area/submap/oldhotel) +"vR" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/flame/candle/candelabra, +/turf/simulated/floor/carpet/sblucarpet/virgo3b, +/area/submap/oldhotel) +"wm" = ( +/obj/random/trash, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/oldhotel) +"wK" = ( +/obj/item/weapon/material/shard, +/obj/item/weapon/material/shard, +/obj/item/weapon/material/shard{ + icon_state = "medium"; + pixel_x = 12; + pixel_y = 7 + }, +/turf/simulated/floor/tiled/old_tile/white/virgo3b, +/area/submap/oldhotel) +"wV" = ( +/obj/structure/table/wooden_reinforced, +/obj/item/weapon/reagent_containers/glass/beaker, +/obj/item/weapon/reagent_containers/food/condiment/enzyme, +/turf/simulated/floor/tiled/old_tile/white/virgo3b, +/area/submap/oldhotel) +"wX" = ( +/obj/item/weapon/material/shard, +/obj/item/weapon/material/shard{ + icon_state = "medium"; + pixel_x = 12; + pixel_y = 7 + }, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/oldhotel) +"yj" = ( +/obj/random/mob/sif/peaceful, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/oldhotel) +"yM" = ( +/obj/item/stack/cable_coil, +/turf/simulated/floor/carpet/purcarpet, +/area/submap/oldhotel) +"zs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/random/junk, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/oldhotel) +"zt" = ( +/obj/structure/noticeboard, +/turf/simulated/wall/wood, +/area/submap/oldhotel) +"zO" = ( +/obj/item/weapon/material/shard, +/obj/structure/grille/broken/rustic, +/obj/item/weapon/material/shard{ + icon_state = "medium"; + pixel_x = 12; + pixel_y = 7 + }, +/turf/simulated/floor/tiled/old_tile/white/virgo3b, +/area/submap/oldhotel) +"zP" = ( +/obj/random/plushie, +/turf/simulated/floor/wood/virgo3b, +/area/submap/oldhotel) +"Ac" = ( +/obj/structure/table/wooden_reinforced, +/obj/item/weapon/material/knife/butch, +/turf/simulated/floor/tiled/old_tile/white/virgo3b, +/area/submap/oldhotel) +"AO" = ( +/obj/structure/railing, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/oldhotel) +"AU" = ( +/obj/structure/table/woodentable, +/obj/item/device/tape, +/turf/simulated/floor/wood/virgo3b, +/area/submap/oldhotel) +"AZ" = ( +/obj/structure/table/woodentable, +/obj/item/trash/candle, +/obj/item/weapon/paper{ + info = "This is a stupid tresure hunt task, that thing is not taking us anywhere. Go on and have fun finding a waste of time."; + name = "Wrinkled sheet of paper" + }, +/turf/simulated/floor/wood/virgo3b, +/area/submap/oldhotel) +"Bt" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/gloves/yellow, +/obj/random/projectile/scrapped_pistol, +/obj/random/junk, +/obj/random/junk, +/obj/random/junk, +/obj/random/maintenance, +/obj/random/maintenance, +/obj/random/maintenance, +/turf/simulated/floor/wood/virgo3b, +/area/submap/oldhotel) +"Cx" = ( +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/oldhotel) +"CS" = ( +/obj/item/weapon/storage/toolbox/mechanical, +/turf/simulated/floor/wood/virgo3b, +/area/submap/oldhotel) +"Di" = ( +/obj/structure/table/wooden_reinforced, +/obj/machinery/microwave, +/turf/simulated/floor/tiled/old_tile/white/virgo3b, +/area/submap/oldhotel) +"Dx" = ( +/obj/structure/table/wooden_reinforced, +/obj/random/medical, +/obj/random/medical, +/turf/simulated/floor/tiled/old_tile/white/virgo3b, +/area/submap/oldhotel) +"DN" = ( +/obj/structure/bed/chair/wood, +/turf/simulated/floor/wood/virgo3b, +/area/submap/oldhotel) +"Es" = ( +/obj/random/junk, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/oldhotel) +"ES" = ( +/obj/random/trash, +/turf/simulated/floor/carpet/sblucarpet/virgo3b, +/area/submap/oldhotel) +"Gk" = ( +/obj/structure/bed/chair/wood{ + dir = 1 + }, +/turf/simulated/floor/wood/virgo3b, +/area/submap/oldhotel) +"Gr" = ( +/obj/item/frame/apc, +/turf/simulated/floor/wood/virgo3b, +/area/submap/oldhotel) +"Gz" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8 + }, +/obj/machinery/shower{ + dir = 1 + }, +/obj/structure/curtain/open/shower/medical, +/turf/simulated/floor/tiled/old_tile/white/virgo3b, +/area/submap/oldhotel) +"GC" = ( +/obj/random/trash, +/obj/random/trash, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/oldhotel) +"GN" = ( +/obj/structure/flora/tree/sif, +/turf/template_noop, +/area/submap/oldhotel) +"GV" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/storage/fancy/candle_box, +/obj/item/weapon/storage/fancy/candle_box, +/obj/item/weapon/storage/fancy/candle_box, +/obj/item/weapon/flame/lighter/random, +/obj/item/weapon/flame/lighter/random, +/obj/item/weapon/melee/umbrella/random, +/turf/simulated/floor/wood/virgo3b, +/area/submap/oldhotel) +"Ik" = ( +/obj/item/weapon/material/shard, +/obj/item/weapon/material/shard{ + icon_state = "medium" + }, +/turf/simulated/floor/tiled/old_tile/white/virgo3b, +/area/submap/oldhotel) +"Il" = ( +/obj/structure/closet/secure_closet/freezer/kitchen{ + locked = 0 + }, +/turf/simulated/floor/tiled/old_tile/white/virgo3b, +/area/submap/oldhotel) +"IQ" = ( +/obj/structure/railing, +/obj/structure/closet/crate/bin, +/turf/simulated/floor/tiled/old_tile/white/virgo3b, +/area/submap/oldhotel) +"Jq" = ( +/turf/simulated/floor/tiled/old_tile/white/virgo3b, +/area/submap/oldhotel) +"JT" = ( +/obj/random/junk, +/turf/simulated/floor/wood/virgo3b, +/area/submap/oldhotel) +"JV" = ( +/obj/structure/table/bench/sifwooden, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/oldhotel) +"Lg" = ( +/obj/item/weapon/material/shard, +/obj/structure/grille/broken/rustic, +/obj/item/weapon/material/shard{ + icon_state = "medium" + }, +/turf/simulated/floor/tiled/old_tile/white/virgo3b, +/area/submap/oldhotel) +"Mk" = ( +/obj/structure/closet/crate, +/obj/random/action_figure, +/obj/random/action_figure, +/obj/random/action_figure, +/obj/random/action_figure, +/turf/simulated/floor/wood/virgo3b, +/area/submap/oldhotel) +"Mo" = ( +/obj/structure/railing, +/turf/template_noop, +/area/submap/oldhotel) +"Mq" = ( +/obj/structure/closet/crate, +/obj/random/firstaid, +/turf/simulated/floor/wood/virgo3b, +/area/submap/oldhotel) +"MD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/simple_door/wood, +/turf/simulated/floor/wood/virgo3b, +/area/submap/oldhotel) +"MU" = ( +/turf/template_noop, +/area/submap/oldhotel) +"Nu" = ( +/obj/random/soap, +/turf/simulated/floor/tiled/old_tile/white/virgo3b, +/area/submap/oldhotel) +"OQ" = ( +/obj/structure/closet/crate, +/obj/random/cash, +/turf/simulated/floor/wood/virgo3b, +/area/submap/oldhotel) +"Pd" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/carpet/sblucarpet/virgo3b, +/area/submap/oldhotel) +"Qv" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/paper_bin, +/obj/item/weapon/pen, +/obj/item/weapon/pen, +/obj/item/weapon/pen, +/turf/simulated/floor/wood/virgo3b, +/area/submap/oldhotel) +"Qw" = ( +/obj/item/weapon/stool, +/obj/random/cash, +/obj/machinery/light/small, +/turf/simulated/floor/wood/virgo3b, +/area/submap/oldhotel) +"QG" = ( +/obj/structure/bed/chair/sofa/teal{ + dir = 8 + }, +/turf/simulated/floor/carpet/sblucarpet/virgo3b, +/area/submap/oldhotel) +"RM" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/wood/virgo3b, +/area/submap/oldhotel) +"Sf" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/yellowdouble, +/turf/simulated/floor/wood/virgo3b, +/area/submap/oldhotel) +"Sy" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/old_tile/white/virgo3b, +/area/submap/oldhotel) +"SG" = ( +/turf/simulated/floor/carpet/purcarpet, +/area/submap/oldhotel) +"SL" = ( +/obj/item/weapon/material/shard, +/obj/item/weapon/material/shard, +/obj/item/weapon/material/shard{ + icon_state = "medium"; + pixel_x = 12; + pixel_y = 7 + }, +/turf/simulated/floor/plating/external/virgo3b, +/area/submap/oldhotel) +"SZ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/virgo3b, +/area/submap/oldhotel) +"TU" = ( +/turf/simulated/floor/wood/virgo3b, +/area/submap/oldhotel) +"Ut" = ( +/obj/structure/kitchenspike, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/oldhotel) +"Uw" = ( +/obj/structure/table/wooden_reinforced, +/obj/item/weapon/book/manual/chef_recipes, +/turf/simulated/floor/tiled/old_tile/white/virgo3b, +/area/submap/oldhotel) +"UU" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/flame/lighter/zippo/royal, +/obj/item/weapon/lipstick/random, +/turf/simulated/floor/wood/virgo3b, +/area/submap/oldhotel) +"Vf" = ( +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/machinery/shower{ + dir = 1 + }, +/obj/structure/curtain/open/shower/medical, +/obj/random/soap, +/turf/simulated/floor/tiled/old_tile/white/virgo3b, +/area/submap/oldhotel) +"Vj" = ( +/turf/simulated/floor/carpet/sblucarpet/virgo3b, +/area/submap/oldhotel) +"Wy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood/virgo3b, +/area/submap/oldhotel) +"WD" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/random/meat, +/obj/random/meat, +/obj/random/meat, +/obj/random/meat, +/obj/random/meat, +/obj/random/meat, +/obj/random/meat, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/random/meat, +/turf/simulated/floor/tiled/old_tile/white/virgo3b, +/area/submap/oldhotel) +"WH" = ( +/obj/item/device/flashlight{ + pixel_x = 2; + pixel_y = 2 + }, +/turf/simulated/floor/wood/virgo3b, +/area/submap/oldhotel) +"YI" = ( +/obj/structure/coatrack, +/turf/simulated/floor/wood/virgo3b, +/area/submap/oldhotel) +"YQ" = ( +/obj/item/weapon/material/shard, +/obj/structure/grille/broken/rustic, +/turf/simulated/floor/tiled/old_tile/white/virgo3b, +/area/submap/oldhotel) +"ZG" = ( +/obj/structure/girder, +/turf/simulated/floor/plating/external/virgo3b, +/area/submap/oldhotel) (1,1,1) = {" -gAgAgAgAgAgAgAgAgAgAgAgAgAgAgAgAgAgAgAgAgAgAgAgAgA -gAMUMUMUmRMUMUMUMUMUMUMUMUMUMUMUMUMUMUMUMUMUMUMUgA -gAMUkwhQmRhQwXMUpiZGnDMUwXMUhQZGhQMUMUMUMUGNMUMUgA -gAMUhQhQgoztvMdLwKhQhQdLzOdLhQhQhQhQZGMUMUMUMUMUgA -gAMUhQBtTUSZqgqYJTzPqgqgJTqgmrZGaJsdhQMUMUMUMUMUgA -gAMUZGYITUQvrKUUAUTUqgdajOvhTUhQdzSyZGMUMUMUMUMUgA -gAMUZGGVWHSZQwGrqgqgSZopvRQGhcMDSyNuSLMUMUMUMUMUgA -gAMUhQhQhQhQhQZGnDhQqglZtEQGSZhQVfGzhQMUMUMUMUMUgA -gAMUMUhQhQDNTURMrKhQSZkhkhifqghQnDhQhQMUMUMUMUMUgA -gAMUMUrZdLsVESdctzhQJTSZqgSZTUhQdrdrZGMUCxMUMUMUgA -gAMUMUnGYQtVVjcZuUhQtntnhQgogocAuFnZhQCxMUMUMUMUgA -gAMUMUhQhQMqSZSZqgtnqgSZZGJqJqSyJqbQUtCxMUMUMUMUgA -gAMUMUnDZGnDhQhQhQhQhcDNhQrbCxmREsCxJqCxMUCxMUMUgA -gAMUMUhQhQDNRMTUrKhQSZdnnDljJqEsCxCxCxMUMUCxMUGNgA -gAMUMUCxIkiUaiSGSfZGqgkWZGAcCxmRyjMUMUCxMUMUMUMUgA -gAMUbWpnLgGkjayMjShQSZGkhQUwJqCxCxJVMUMUMUMUMUMUgA -gAMUMUnDZGOQqgWySZtnRQbbhQWDSywmCxeKCxCxMUCxMUMUgA -gAMUMUhQZGhQhQZGhQhQSZDNhQwVJqCxCxJVMUMUMUMUMUMUgA -gAMUMUhQhQMkPOvNJTtnSZkWhQDxmRmREsMUMUMUMUMUMUMUgA -gAMUMUCxdLDNPdkIjehQSZdnhQDiSyzsCxCxMUMUMUMUMUMUgA -gAMUMUCxdLvAhpPdlynDCSGkhQgMCxGCyjMUMUMUMUMUMUMUgA -gAMUMUhQhQGkqgqgAZhQdLdLZGIlJqCxCxMUMUMUMUMUMUMUgA -gAMUMUhQhQhQZGhQhQhQMUMUnDIQCxAOAOMUMoMUGNMUMUMUgA -gAMUMUMUMUMUMUMUMUMUMUMUMUMUMUMUMUMUMUMUMUMUMUMUgA -gAgAgAgAgAgAgAgAgAgAgAgAgAgAgAgAgAgAgAgAgAgAgAgAgA +gA +gA +gA +gA +gA +gA +gA +gA +gA +gA +gA +gA +gA +gA +gA +gA +gA +gA +gA +gA +gA +gA +gA +gA +gA +"} +(2,1,1) = {" +gA +MU +MU +MU +MU +MU +MU +MU +MU +MU +MU +MU +MU +MU +MU +MU +MU +MU +MU +MU +MU +MU +MU +MU +gA +"} +(3,1,1) = {" +gA +MU +kw +hQ +hQ +ZG +ZG +hQ +MU +MU +MU +MU +MU +MU +MU +bW +MU +MU +MU +MU +MU +MU +MU +MU +gA +"} +(4,1,1) = {" +gA +MU +hQ +hQ +Bt +YI +GV +hQ +hQ +rZ +nG +hQ +nD +hQ +Cx +pn +nD +hQ +hQ +Cx +Cx +hQ +hQ +MU +gA +"} +(5,1,1) = {" +gA +mR +mR +go +TU +TU +WH +hQ +hQ +dL +YQ +hQ +ZG +hQ +Ik +Lg +ZG +ZG +hQ +dL +dL +hQ +hQ +MU +gA +"} +(6,1,1) = {" +gA +MU +hQ +zt +SZ +Qv +SZ +hQ +DN +sV +tV +Mq +nD +DN +iU +Gk +OQ +hQ +Mk +DN +vA +Gk +hQ +MU +gA +"} +(7,1,1) = {" +gA +MU +wX +vM +TU +rK +Qw +hQ +TU +ES +Vj +SZ +hQ +RM +ai +ja +TU +hQ +RM +Pd +hp +TU +ZG +MU +gA +"} +(8,1,1) = {" +gA +MU +MU +dL +qY +UU +Gr +ZG +RM +Pd +cZ +SZ +hQ +TU +SG +yM +Wy +ZG +vN +Vj +Pd +TU +hQ +MU +gA +"} +(9,1,1) = {" +gA +MU +pi +wK +JT +AU +TU +nD +rK +tz +uU +TU +hQ +rK +Sf +jS +SZ +hQ +JT +je +ly +AZ +hQ +MU +gA +"} +(10,1,1) = {" +gA +MU +ZG +hQ +zP +TU +TU +hQ +hQ +hQ +hQ +tn +hQ +hQ +ZG +hQ +tn +hQ +tn +hQ +nD +hQ +hQ +MU +gA +"} +(11,1,1) = {" +gA +MU +nD +hQ +TU +TU +SZ +TU +SZ +JT +tn +TU +hc +SZ +TU +SZ +SZ +SZ +SZ +SZ +CS +dL +MU +MU +gA +"} +(12,1,1) = {" +gA +MU +MU +dL +TU +da +op +lZ +Vj +SZ +tn +SZ +DN +dn +kW +Gk +bb +DN +kW +dn +Gk +dL +MU +MU +gA +"} +(13,1,1) = {" +gA +MU +wX +zO +JT +jO +vR +tE +Vj +TU +hQ +ZG +hQ +nD +ZG +hQ +hQ +hQ +hQ +hQ +hQ +ZG +nD +MU +gA +"} +(14,1,1) = {" +gA +MU +MU +dL +TU +vh +QG +QG +if +SZ +go +Jq +rb +lj +Ac +Uw +WD +wV +Dx +Di +gM +Il +IQ +MU +gA +"} +(15,1,1) = {" +gA +MU +hQ +hQ +mr +TU +hc +SZ +TU +TU +go +Jq +Cx +Jq +Cx +Jq +Sy +Jq +mR +Sy +Cx +Jq +Cx +MU +gA +"} +(16,1,1) = {" +gA +MU +ZG +hQ +ZG +hQ +MD +hQ +hQ +hQ +cA +Sy +mR +Es +mR +Cx +wm +Cx +mR +zs +GC +Cx +AO +MU +gA +"} +(17,1,1) = {" +gA +MU +hQ +hQ +aJ +dz +Sy +Vf +nD +dr +uF +Jq +Es +Cx +yj +Cx +Cx +Cx +Es +Cx +yj +Cx +AO +MU +gA +"} +(18,1,1) = {" +gA +MU +MU +hQ +sd +Sy +Nu +Gz +hQ +dr +nZ +bQ +Cx +Cx +MU +JV +eK +JV +MU +Cx +MU +MU +MU +MU +gA +"} +(19,1,1) = {" +gA +MU +MU +ZG +hQ +ZG +SL +hQ +hQ +ZG +hQ +Ut +Jq +Cx +MU +MU +Cx +MU +MU +MU +MU +MU +Mo +MU +gA +"} +(20,1,1) = {" +gA +MU +MU +MU +MU +MU +MU +MU +MU +MU +Cx +Cx +Cx +MU +Cx +MU +Cx +MU +MU +MU +MU +MU +MU +MU +gA +"} +(21,1,1) = {" +gA +MU +MU +MU +MU +MU +MU +MU +MU +Cx +MU +MU +MU +MU +MU +MU +MU +MU +MU +MU +MU +MU +GN +MU +gA +"} +(22,1,1) = {" +gA +MU +GN +MU +MU +MU +MU +MU +MU +MU +MU +MU +Cx +Cx +MU +MU +Cx +MU +MU +MU +MU +MU +MU +MU +gA +"} +(23,1,1) = {" +gA +MU +MU +MU +MU +MU +MU +MU +MU +MU +MU +MU +MU +MU +MU +MU +MU +MU +MU +MU +MU +MU +MU +MU +gA +"} +(24,1,1) = {" +gA +MU +MU +MU +MU +MU +MU +MU +MU +MU +MU +MU +MU +GN +MU +MU +MU +MU +MU +MU +MU +MU +MU +MU +gA +"} +(25,1,1) = {" +gA +gA +gA +gA +gA +gA +gA +gA +gA +gA +gA +gA +gA +gA +gA +gA +gA +gA +gA +gA +gA +gA +gA +gA +gA "} diff --git a/maps/submaps/surface_submaps/plains/otieshelter.dmm b/maps/submaps/surface_submaps/plains/otieshelter.dmm index d02f852ba2..3ceb662091 100644 --- a/maps/submaps/surface_submaps/plains/otieshelter.dmm +++ b/maps/submaps/surface_submaps/plains/otieshelter.dmm @@ -6,7 +6,7 @@ /obj/effect/decal/cleanable/blood/drip{ icon_state = "5" }, -/turf/simulated/floor/tiled, +/turf/simulated/floor/tiled/virgo3b, /area/submap/OtieShelter) "aj" = ( /obj/effect/decal/cleanable/blood/drip{ @@ -15,20 +15,20 @@ /obj/effect/floor_decal/industrial/warning{ dir = 1 }, -/turf/simulated/floor/plating, +/turf/simulated/floor/plating/external/virgo3b, /area/submap/OtieShelter) "ar" = ( /obj/structure/closet/secure_closet/medical_wall/anesthetics, /obj/effect/floor_decal/industrial/warning{ dir = 8 }, -/turf/simulated/floor/tiled, +/turf/simulated/floor/tiled/virgo3b, /area/submap/OtieShelter) "cq" = ( /obj/structure/bed/chair/office/light{ dir = 1 }, -/turf/simulated/floor/carpet/turcarpet, +/turf/simulated/floor/carpet/turcarpet/virgo3b, /area/submap/OtieShelter) "cU" = ( /obj/machinery/power/port_gen/pacman, @@ -57,7 +57,7 @@ /obj/effect/floor_decal/industrial/warning{ dir = 1 }, -/turf/simulated/floor/plating, +/turf/simulated/floor/plating/external/virgo3b, /area/submap/OtieShelter) "gN" = ( /obj/structure/undies_wardrobe, @@ -84,12 +84,12 @@ /area/submap/OtieShelter) "hD" = ( /obj/effect/decal/cleanable/filth, -/turf/simulated/floor/tiled, +/turf/simulated/floor/tiled/virgo3b, /area/submap/OtieShelter) "iv" = ( /obj/structure/table/glass, /obj/item/weapon/storage/firstaid/surgery, -/turf/simulated/floor/tiled, +/turf/simulated/floor/tiled/virgo3b, /area/submap/OtieShelter) "iC" = ( /obj/effect/decal/cleanable/blood, @@ -103,21 +103,21 @@ dir = 1 }, /obj/item/trash/bowl, -/turf/simulated/floor/tiled, +/turf/simulated/floor/tiled/virgo3b, /area/submap/OtieShelter) "jc" = ( /obj/machinery/optable, -/turf/simulated/floor/tiled, +/turf/simulated/floor/tiled/virgo3b, /area/submap/OtieShelter) "jo" = ( /obj/machinery/light{ dir = 1 }, -/turf/simulated/floor/tiled, +/turf/simulated/floor/tiled/virgo3b, /area/submap/OtieShelter) "jy" = ( /obj/effect/decal/cleanable/blood/drip, -/turf/simulated/floor/carpet/turcarpet, +/turf/simulated/floor/carpet/turcarpet/virgo3b, /area/submap/OtieShelter) "jI" = ( /obj/item/weapon/material/shard{ @@ -130,7 +130,7 @@ icon = 'icons/effects/blood.dmi'; icon_state = "tracks" }, -/turf/simulated/floor/tiled, +/turf/simulated/floor/tiled/virgo3b, /area/submap/OtieShelter) "kF" = ( /obj/structure/window/phoronreinforced{ @@ -143,11 +143,11 @@ /obj/effect/floor_decal/industrial/warning/corner{ dir = 4 }, -/turf/simulated/floor/tiled, +/turf/simulated/floor/tiled/virgo3b, /area/submap/OtieShelter) "lv" = ( /obj/structure/door_assembly, -/turf/simulated/floor/tiled/techfloor/grid, +/turf/simulated/floor/tiled/virgo3b, /area/submap/OtieShelter) "lP" = ( /obj/effect/decal/cleanable/blood/drip{ @@ -157,7 +157,7 @@ icon_state = "2" }, /obj/effect/decal/cleanable/blood, -/turf/simulated/floor/tiled, +/turf/simulated/floor/tiled/virgo3b, /area/submap/OtieShelter) "lQ" = ( /obj/structure/window/phoronreinforced{ @@ -170,7 +170,7 @@ /obj/effect/decal/cleanable/blood/drip{ icon_state = "4" }, -/turf/simulated/floor/tiled, +/turf/simulated/floor/tiled/virgo3b, /area/submap/OtieShelter) "mu" = ( /obj/structure/window/phoronreinforced{ @@ -188,7 +188,7 @@ /obj/structure/extinguisher_cabinet{ pixel_x = -28 }, -/turf/simulated/floor/tiled, +/turf/simulated/floor/tiled/virgo3b, /area/submap/OtieShelter) "mJ" = ( /obj/structure/sign/warning/secure_area, @@ -201,13 +201,13 @@ /obj/effect/decal/cleanable/blood/drip{ icon_state = "4" }, -/turf/simulated/floor/tiled, +/turf/simulated/floor/tiled/virgo3b, /area/submap/OtieShelter) "nR" = ( /obj/structure/table/marble, /obj/item/weapon/newspaper, /obj/item/weapon/paper/card/heart, -/turf/simulated/floor/carpet/turcarpet, +/turf/simulated/floor/carpet/turcarpet/virgo3b, /area/submap/OtieShelter) "ob" = ( /obj/structure/grille/rustic, @@ -226,7 +226,7 @@ /obj/effect/decal/cleanable/blood/drip{ icon_state = "4" }, -/turf/simulated/floor/plating, +/turf/simulated/floor/plating/external/virgo3b, /area/submap/OtieShelter) "pa" = ( /obj/structure/loot_pile/surface/bones, @@ -234,13 +234,13 @@ /obj/effect/decal/cleanable/filth, /obj/effect/decal/cleanable/filth, /obj/random/handgun/sec, -/turf/simulated/floor/tiled, +/turf/simulated/floor/tiled/virgo3b, /area/submap/OtieShelter) "pd" = ( /obj/effect/decal/cleanable/blood/drip{ icon_state = "5" }, -/turf/simulated/floor/tiled, +/turf/simulated/floor/tiled/virgo3b, /area/submap/OtieShelter) "rb" = ( /obj/machinery/light{ @@ -249,7 +249,7 @@ /obj/effect/floor_decal/industrial/warning{ dir = 1 }, -/turf/simulated/floor/plating, +/turf/simulated/floor/plating/external/virgo3b, /area/submap/OtieShelter) "sJ" = ( /obj/structure/grille/rustic, @@ -273,7 +273,7 @@ /obj/effect/decal/cleanable/blood/drip{ icon_state = "2" }, -/turf/simulated/floor/carpet/turcarpet, +/turf/simulated/floor/carpet/turcarpet/virgo3b, /area/submap/OtieShelter) "tP" = ( /obj/structure/window/phoronreinforced{ @@ -286,9 +286,16 @@ /obj/item/weapon/reagent_containers/food/snacks/meat/human, /turf/simulated/floor/tiled, /area/submap/OtieShelter) +"uw" = ( +/obj/structure/window/phoronreinforced{ + dir = 1 + }, +/obj/structure/dogbed, +/turf/simulated/floor/tiled/virgo3b, +/area/submap/OtieShelter) "uD" = ( /obj/machinery/light, -/turf/simulated/floor/tiled, +/turf/simulated/floor/tiled/virgo3b, /area/submap/OtieShelter) "uS" = ( /obj/machinery/light{ @@ -298,7 +305,7 @@ /area/submap/OtieShelter) "vA" = ( /obj/item/weapon/bone, -/turf/simulated/floor/tiled, +/turf/simulated/floor/tiled/virgo3b, /area/submap/OtieShelter) "vB" = ( /obj/machinery/door/window{ @@ -311,6 +318,9 @@ /obj/structure/table/woodentable, /turf/simulated/floor/carpet/turcarpet, /area/submap/OtieShelter) +"wg" = ( +/turf/simulated/floor/carpet/turcarpet/virgo3b, +/area/submap/OtieShelter) "wO" = ( /obj/structure/dogbed, /turf/simulated/floor/tiled, @@ -323,12 +333,12 @@ /obj/effect/floor_decal/industrial/warning{ dir = 1 }, -/turf/simulated/floor/tiled, +/turf/simulated/floor/tiled/virgo3b, /area/submap/OtieShelter) "xj" = ( /obj/structure/table/marble, /obj/item/modular_computer/laptop/preset/custom_loadout/cheap, -/turf/simulated/floor/carpet/turcarpet, +/turf/simulated/floor/carpet/turcarpet/virgo3b, /area/submap/OtieShelter) "xI" = ( /obj/structure/window/phoronreinforced{ @@ -341,7 +351,7 @@ "yD" = ( /obj/structure/table/glass, /obj/item/weapon/storage/firstaid/adv, -/turf/simulated/floor/tiled, +/turf/simulated/floor/tiled/virgo3b, /area/submap/OtieShelter) "Aa" = ( /obj/structure/window/phoronreinforced{ @@ -354,11 +364,14 @@ /obj/structure/table/marble, /obj/item/weapon/paper_bin, /obj/item/weapon/pen, -/turf/simulated/floor/carpet/turcarpet, +/turf/simulated/floor/carpet/turcarpet/virgo3b, /area/submap/OtieShelter) "AO" = ( /obj/structure/table/glass, -/turf/simulated/floor/tiled, +/turf/simulated/floor/tiled/virgo3b, +/area/submap/OtieShelter) +"AQ" = ( +/turf/simulated/floor/tiled/virgo3b, /area/submap/OtieShelter) "BM" = ( /obj/item/weapon/melee/baton/cattleprod, @@ -373,12 +386,12 @@ /obj/effect/floor_decal/industrial/warning{ dir = 4 }, -/turf/simulated/floor/tiled, +/turf/simulated/floor/tiled/virgo3b, /area/submap/OtieShelter) "Cw" = ( /obj/structure/table/glass, /obj/item/weapon/storage/firstaid, -/turf/simulated/floor/tiled, +/turf/simulated/floor/tiled/virgo3b, /area/submap/OtieShelter) "CM" = ( /obj/structure/closet/wardrobe, @@ -393,7 +406,7 @@ icon_state = "2" }, /obj/effect/decal/cleanable/blood/drip, -/turf/simulated/floor/tiled, +/turf/simulated/floor/tiled/virgo3b, /area/submap/OtieShelter) "Hk" = ( /obj/machinery/door/window, @@ -403,7 +416,7 @@ /obj/structure/extinguisher_cabinet{ pixel_y = 30 }, -/turf/simulated/floor/tiled, +/turf/simulated/floor/tiled/virgo3b, /area/submap/OtieShelter) "Ih" = ( /obj/item/weapon/reagent_containers/food/snacks/meat/human, @@ -420,7 +433,7 @@ /turf/simulated/floor/tiled, /area/submap/OtieShelter) "JY" = ( -/turf/simulated/floor/plating, +/turf/simulated/floor/plating/external/virgo3b, /area/submap/OtieShelter) "KJ" = ( /obj/structure/window/phoronreinforced{ @@ -430,24 +443,24 @@ dir = 1 }, /obj/structure/closet/secure_closet/freezer/meat, -/turf/simulated/floor/tiled, +/turf/simulated/floor/tiled/virgo3b, /area/submap/OtieShelter) "Lr" = ( /obj/structure/door_assembly, -/turf/simulated/floor/plating, +/turf/simulated/floor/plating/external/virgo3b, /area/submap/OtieShelter) "LF" = ( /obj/structure/ghost_pod/manual/lost_drone/dogborg, /obj/effect/floor_decal/industrial/warning{ dir = 4 }, -/turf/simulated/floor/tiled, +/turf/simulated/floor/tiled/virgo3b, /area/submap/OtieShelter) "Mc" = ( /obj/structure/fireaxecabinet{ pixel_y = 29 }, -/turf/simulated/floor/tiled, +/turf/simulated/floor/tiled/virgo3b, /area/submap/OtieShelter) "Mg" = ( /obj/structure/window/phoronreinforced{ @@ -456,7 +469,7 @@ /obj/structure/window/phoronreinforced{ dir = 8 }, -/turf/simulated/floor/tiled, +/turf/simulated/floor/tiled/virgo3b, /area/submap/OtieShelter) "Mn" = ( /mob/living/simple_mob/otie/red/chubby, @@ -475,7 +488,7 @@ /obj/structure/table/marble, /obj/structure/table/marble, /obj/item/device/radio/phone, -/turf/simulated/floor/carpet/turcarpet, +/turf/simulated/floor/carpet/turcarpet/virgo3b, /area/submap/OtieShelter) "Nh" = ( /obj/item/weapon/bedsheet/browndouble, @@ -515,7 +528,7 @@ icon_state = "paw1" }, /obj/item/ammo_casing/spent, -/turf/simulated/floor/tiled, +/turf/simulated/floor/tiled/virgo3b, /area/submap/OtieShelter) "Pn" = ( /obj/structure/window/phoronreinforced{ @@ -532,7 +545,7 @@ /obj/effect/floor_decal/industrial/warning{ dir = 8 }, -/turf/simulated/floor/tiled, +/turf/simulated/floor/tiled/virgo3b, /area/submap/OtieShelter) "Qr" = ( /turf/template_noop, @@ -552,6 +565,18 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/submap/OtieShelter) +"Sn" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/carpet/turcarpet/virgo3b, +/area/submap/OtieShelter) +"SD" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/virgo3b, +/area/submap/OtieShelter) "TP" = ( /obj/machinery/power/smes/buildable/point_of_interest, /obj/structure/cable/green{ @@ -564,7 +589,7 @@ /obj/effect/floor_decal/industrial/warning{ dir = 4 }, -/turf/simulated/floor/tiled, +/turf/simulated/floor/tiled/virgo3b, /area/submap/OtieShelter) "UH" = ( /obj/structure/window/phoronreinforced{ @@ -581,7 +606,7 @@ /obj/effect/decal/cleanable/blood/tracks/paw{ icon_state = "paw1" }, -/turf/simulated/floor/carpet/turcarpet, +/turf/simulated/floor/carpet/turcarpet/virgo3b, /area/submap/OtieShelter) "VL" = ( /obj/structure/extinguisher_cabinet{ @@ -591,7 +616,7 @@ icon_state = "2" }, /obj/effect/decal/cleanable/blood/drip, -/turf/simulated/floor/carpet/turcarpet, +/turf/simulated/floor/carpet/turcarpet/virgo3b, /area/submap/OtieShelter) "VY" = ( /mob/living/simple_mob/otie/cotie/chubby, @@ -603,11 +628,11 @@ /obj/structure/windoor_assembly{ dir = 2 }, -/turf/simulated/floor/tiled/techfloor/grid, +/turf/simulated/floor/virgo3b_indoors, /area/submap/OtieShelter) "WY" = ( /obj/machinery/oxygen_pump/mobile/anesthetic, -/turf/simulated/floor/tiled, +/turf/simulated/floor/tiled/virgo3b, /area/submap/OtieShelter) "XB" = ( /obj/structure/window/phoronreinforced{ @@ -618,7 +643,7 @@ /obj/effect/floor_decal/industrial/warning{ dir = 1 }, -/turf/simulated/floor/tiled, +/turf/simulated/floor/tiled/virgo3b, /area/submap/OtieShelter) "XG" = ( /obj/structure/window/phoronreinforced{ @@ -786,20 +811,20 @@ Qr Qr Mz jo -IF -IF -IF -IF -IF -IF -IF -IF -IF +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ +AQ fw mC nK ag -IF +AQ aj op iC @@ -808,14 +833,14 @@ iC Qr Mz Mc -IF -IF +AQ +AQ AO Cw yD AO -IF -IF +AQ +AQ uD Mz Mz @@ -838,11 +863,11 @@ AO AO vA hD -IF +AQ sJ -MK +Sn tz -Ro +wg Mz gr Qr @@ -852,15 +877,15 @@ Qr Qr Mz jo -IF -IF -IF -IF -IF +AQ +AQ +AQ +AQ +AQ hD pa OJ -IF +AQ ob jy Nd @@ -884,7 +909,7 @@ BM kX EI hk -Ro +wg xj cq Mz @@ -908,7 +933,7 @@ lY Mz VL At -Ro +wg Mz Qr Qr @@ -929,8 +954,8 @@ XB pd Wl VE -Ro -Ro +wg +wg Mz Qr Qr @@ -945,14 +970,14 @@ kF uS kF uS -kF -uS +uw +SD KJ -IF +AQ Mz -Ro -Ro -Ro +wg +wg +wg Mz Qr Qr diff --git a/maps/submaps/surface_submaps/plains/plains_turfs.dm b/maps/submaps/surface_submaps/plains/plains_turfs.dm new file mode 100644 index 0000000000..9833832306 --- /dev/null +++ b/maps/submaps/surface_submaps/plains/plains_turfs.dm @@ -0,0 +1,18 @@ +VIRGO3B_TURF_CREATE(/turf/simulated/floor/outdoors/rocks) +VIRGO3B_TURF_CREATE(/turf/simulated/floor/outdoors/mud) +VIRGO3B_TURF_CREATE(/turf/simulated/floor/outdoors/snow) +VIRGO3B_TURF_CREATE(/turf/simulated/floor/water) +VIRGO3B_TURF_CREATE(/turf/simulated/floor/water/contaminated) +VIRGO3B_TURF_CREATE(/turf/simulated/floor/water/deep) +VIRGO3B_TURF_CREATE(/turf/simulated/floor/wood) +VIRGO3B_TURF_CREATE(/turf/simulated/floor/plating/external) +VIRGO3B_TURF_CREATE(/turf/simulated/floor/tiled/external) +VIRGO3B_TURF_CREATE(/turf/simulated/shuttle/floor) +VIRGO3B_TURF_CREATE(/turf/simulated/floor/outdoors/grass/sif/forest) +VIRGO3B_TURF_CREATE(/turf/simulated/floor/tiled/white) +VIRGO3B_TURF_CREATE(/turf/simulated/floor/carpet/sblucarpet) +VIRGO3B_TURF_CREATE(/turf/simulated/floor/tiled/old_tile/green) +VIRGO3B_TURF_CREATE(/turf/simulated/floor/tiled/old_tile/white) +VIRGO3B_TURF_CREATE(/turf/simulated/floor/tiled) +VIRGO3B_TURF_CREATE(/turf/simulated/floor/carpet/turcarpet) +VIRGO3B_TURF_CREATE(/turf/simulated/floor/greengrid) \ No newline at end of file diff --git a/maps/submaps/surface_submaps/plains/plains_vr.dm b/maps/submaps/surface_submaps/plains/plains_vr.dm new file mode 100644 index 0000000000..851c72322e --- /dev/null +++ b/maps/submaps/surface_submaps/plains/plains_vr.dm @@ -0,0 +1,348 @@ +// This causes PoI maps to get 'checked' and compiled, when undergoing a unit test. +// This is so CI can validate PoIs, and ensure future changes don't break PoIs, as PoIs are loaded at runtime and the compiler can't catch errors. +// When adding a new PoI, please add it to this list. +#if MAP_TEST +#include "farm1.dmm" +#include "construction1.dmm" +#include "camp1.dmm" +#include "house1.dmm" +#include "beacons.dmm" +#include "Epod.dmm" +#include "Epod2.dmm" +#include "PascalB.dmm" +#include "bonfire.dmm" +#include "Rocky5.dmm" +#include "Field1.dmm" +#include "Thiefc.dmm" +#include "smol2.dmm" +#include "Mechpt.dmm" +#include "Boathouse.dmm" +#include "PooledR.dmm" +#include "Smol3.dmm" +#include "Diner.dmm" +#include "Snow1.dmm" +#include "Snow2.dmm" +#include "Snow3.dmm" +#include "Snow4.dmm" +#include "Snow5.dmm" +#include "SupplyDrop2.dmm" +#include "RationCache.dmm" +#include "Oldhouse.dmm" +#include "PlainsKururak.dmm" +#include "BuriedTreasure.dmm" +#include "BuriedTreasure2.dmm" +#include "BuriedTreasure3.dmm" +#include "methlab.dmm" +#include "hotspring.dmm" +#include "lonehome.dmm" +#include "priderock.dmm" +#include "oldhotel.dmm" +#include "VRDen.dmm" +#include "leopardmanderden.dmm" +#include "greatwolfden.dmm" +#include "syndisniper.dmm" +#include "otieshelter.dmm" +#include "lonewolf.dmm" +#include "emptycabin.dmm" +#include "dogbase.dmm" +#include "drgnplateu.dmm" +#endif + + +// The 'plains' is the area outside the immediate perimeter of the big outpost. +// POIs here should not be dangerous, be mundane, and be somewhat conversative on the loot. Some of the loot can be useful, but it shouldn't trivialize the Wilderness. + +/datum/map_template/surface/plains + name = "Surface Content - Plains" + desc = "Used to make the surface outside the outpost be 16% less boring." + +// To be added: Templates for surface exploration when they are made. + +/datum/map_template/surface/plains/farm1 + name = "Farm 1" + desc = "A small farm tended by a farmbot." + mappath = 'maps/submaps/surface_submaps/plains/farm1_vr.dmm' //VOREStation Edit + cost = 10 + +/datum/map_template/surface/plains/construction1 + name = "Construction Site 1" + desc = "A structure being built. It seems laziness is not limited to engineers." + mappath = 'maps/submaps/surface_submaps/plains/construction1.dmm' + cost = 10 + +/datum/map_template/surface/plains/camp1 + name = "Camp Site 1" + desc = "A small campsite, complete with housing and bonfire." + mappath = 'maps/submaps/surface_submaps/plains/camp1_vr.dmm' //VOREStation Edit + cost = 10 + +/datum/map_template/surface/plains/house1 + name = "House 1" + desc = "A fair sized house out in the frontier, that belonged to a well-traveled explorer." + mappath = 'maps/submaps/surface_submaps/plains/house1_vr.dmm' //VOREStation Edit + cost = 10 + +/datum/map_template/surface/plains/beacons + name = "Collection of Marker Beacons" + desc = "A bunch of marker beacons, scattered in a strange pattern." + mappath = 'maps/submaps/surface_submaps/plains/beacons.dmm' + cost = 5 + fixed_orientation = TRUE + +/datum/map_template/surface/plains/Epod + name = "Emergency Pod" + desc = "A vacant Emergency pod in the middle of nowhere." + mappath = 'maps/submaps/surface_submaps/plains/Epod.dmm' + cost = 5 + +/datum/map_template/surface/plains/Epod2 + name = "Emergency Pod 2" + desc = "A locked Emergency pod in the middle of nowhere." + mappath = 'maps/submaps/surface_submaps/plains/Epod2.dmm' + cost = 5 + +/datum/map_template/surface/plains/normal/Rocky2 + name = "Rocky 2" + desc = "More rocks." + mappath = 'maps/submaps/surface_submaps/plains/Rocky2.dmm' + allow_duplicates = TRUE + cost = 5 + +/datum/map_template/surface/plains/PascalB + name = "Irradiated Manhole Cover" + desc = "How did this old thing get all the way out here?" + mappath = 'maps/submaps/surface_submaps/plains/PascalB.dmm' + cost = 5 + +/datum/map_template/surface/plains/bonfire + name = "Abandoned Bonfire" + desc = "Someone seems to enjoy orange juice a bit too much." + mappath = 'maps/submaps/surface_submaps/plains/bonfire.dmm' + cost = 5 + +/datum/map_template/surface/plains/Rocky5 + name = "Rocky 5" + desc = "More rocks, Less Stalone" + mappath = 'maps/submaps/surface_submaps/plains/Rocky5.dmm' + cost = 5 + +/datum/map_template/surface/plains/Shakden + name = "Shantak Den" + desc = "Not to be confused with Shaq Den" + mappath = 'maps/submaps/surface_submaps/plains/Shakden_vr.dmm' //VOREStation Edit + cost = 10 + +/datum/map_template/surface/plains/Field1 + name = "Field 1" + desc = "A regular field with a tug on it" + mappath = 'maps/submaps/surface_submaps/plains/Field1.dmm' + cost = 20 + +/datum/map_template/surface/plains/Thiefc + name = "Thieves Cave" + desc = "A thieves stash" + mappath = 'maps/submaps/surface_submaps/plains/Thiefc_vr.dmm' //VOREStation Edit + cost = 20 + +/datum/map_template/surface/plains/smol2 + name = "Small 2" + desc = "A small formation of mishaped surgery" + mappath = 'maps/submaps/surface_submaps/plains/smol2.dmm' + cost = 10 + +/datum/map_template/surface/plains/Mechpt + name = "Mechpit" + desc = "A illmade Mech brawling ring" + mappath = 'maps/submaps/surface_submaps/plains/Mechpt.dmm' + cost = 15 + +/datum/map_template/surface/plains/Boathouse + name = "Boathouse" + desc = "A fance house on a lake." + mappath = 'maps/submaps/surface_submaps/plains/Boathouse_vr.dmm' //VOREStation Edit + cost = 30 + +/datum/map_template/surface/plains/PooledR + name = "Pooled Rocks" + desc = "An intresting rocky location" + mappath = 'maps/submaps/surface_submaps/plains/PooledR_vr.dmm' //VOREStation Edit + cost = 15 + +/datum/map_template/surface/plains/Smol3 + name = "Small 3" + desc = "A small stand" + mappath = 'maps/submaps/surface_submaps/plains/Smol3.dmm' + cost = 10 + +/datum/map_template/surface/plains/Diner + name = "Diner" + desc = "Old Timey Tasty" + mappath = 'maps/submaps/surface_submaps/plains/Diner_vr.dmm' //VOREStation Edit + cost = 25 + +/datum/map_template/surface/plains/snow1 + name = "Snow 1" + desc = "Snow" + mappath = 'maps/submaps/surface_submaps/plains/snow1.dmm' + cost = 5 + +/datum/map_template/surface/plains/snow2 + name = "Snow 2" + desc = "More snow" + mappath = 'maps/submaps/surface_submaps/plains/snow2.dmm' + cost = 5 + +/datum/map_template/surface/plains/snow3 + name = "Snow 3" + desc = "Snow Snow Snow" + mappath = 'maps/submaps/surface_submaps/plains/snow3.dmm' + cost = 5 + +/datum/map_template/surface/plains/snow4 + name = "Snow 4" + desc = "Too much snow" + mappath = 'maps/submaps/surface_submaps/plains/snow4.dmm' + cost = 5 + +/datum/map_template/surface/plains/snow5 + name = "Snow 5" + desc = "Please stop the snow" + mappath = 'maps/submaps/surface_submaps/plains/snow5.dmm' + cost = 5 + +/datum/map_template/surface/plains/RationCache + name = "Ration Cache" + desc = "A forgotten cache of emergency rations." + mappath = 'maps/submaps/surface_submaps/plains/RationCache_vr.dmm' //VOREStation Edit + cost = 5 + +/datum/map_template/surface/plains/SupplyDrop2 + name = "Old Supply Drop" + desc = "A drop pod that's clearly been here a while, most of the things inside are rusted and worthless." + mappath = 'maps/submaps/surface_submaps/plains/SupplyDrop2.dmm' + cost = 8 + +/datum/map_template/surface/plains/Oldhouse + name = "Old House" + desc = "Someones old library it seems.." + mappath = 'maps/submaps/surface_submaps/plains/Oldhouse_vr.dmm' //VOREStation Edit + cost = 15 + +/datum/map_template/surface/plains/ChemSpill1 + name = "Ruptured Canister" + desc = "A dumped chemical canister. Looks dangerous." + mappath = 'maps/submaps/surface_submaps/plains/chemspill1_vr.dmm' //VOREStation Edit + cost = 10 + +/datum/map_template/surface/plains/PlainsKururak + name = "Lone Kururak" + desc = "A lone Kururak's den." + mappath = 'maps/submaps/surface_submaps/plains/PlainsKururak.dmm' + cost = 10 + +/datum/map_template/surface/plains/BuriedTreasure1 + name = "Buried Treasure 1" + desc = "A hole in the ground, who knows what might be inside!" + mappath = 'maps/submaps/surface_submaps/plains/BuriedTreasure.dmm' + cost = 10 + template_group = "Shallow Grave" + +/datum/map_template/surface/plains/BuriedTreasure2 + name = "Buried Treasure 2" + desc = "A hole in the ground, who knows what might be inside!" + mappath = 'maps/submaps/surface_submaps/plains/BuriedTreasure2.dmm' + cost = 10 + template_group = "Shallow Grave" + +/datum/map_template/surface/plains/BuriedTreasure3 + name = "Buried Treasure 3" + desc = "A hole in the ground, who knows what might be inside!" + mappath = 'maps/submaps/surface_submaps/plains/BuriedTreasure3.dmm' + cost = 10 + template_group = "Shallow Grave" + +/datum/map_template/surface/plains/oldhotel + name = "Old Hotel" + desc = "A abandoned hotel of sort, wonder why it was left behind." + mappath = 'maps/submaps/surface_submaps/plains/oldhotel.dmm' + cost = 15 + +/datum/map_template/surface/plains/priderock + name = "Pride Rock" + desc = "A quite steep petruding rock from the earth, looks like a good hike." + mappath = 'maps/submaps/surface_submaps/plains/priderock.dmm' + cost = 10 + +/datum/map_template/surface/plains/lonehome + name = "Lone Home" + desc = "A quite inoffensive looking home, damaged but still holding up." + mappath = 'maps/submaps/surface_submaps/plains/lonehome_vr.dmm' //VOREStation Edit + cost = 15 + +/datum/map_template/surface/plains/hotspring + name = "Hot Spring" + desc = "Wait what, a hotspring in a frost planet?" + mappath = 'maps/submaps/surface_submaps/plains/hotspring.dmm' + cost = 5 + +/datum/map_template/surface/plains/methlab + name = "Meth Lab" + desc = "A broken down greenhouse lab?, this does not look safe." + mappath = 'maps/submaps/surface_submaps/plains/methlab.dmm' + cost = 15 + +/datum/map_template/surface/plains/VRDen + name = "VR Den" + desc = "A temporarily abandoned VR den, still functional." + mappath = 'maps/submaps/surface_submaps/plains/VRDen.dmm' + cost = 10 +/datum/map_template/surface/plains/leopardmanderden + name = "Leopardmander Den" + desc = "Den of a voracious but very rare beast." + mappath = 'maps/submaps/surface_submaps/plains/leopardmanderden.dmm' + cost = 10 + +/datum/map_template/surface/plains/greatwolfden + name = "Great Wolf Den" + desc = "Den hosted by the biggest alpha wolf of the wilderness" + mappath = 'maps/submaps/surface_submaps/plains/greatwolfden.dmm' + cost = 15 +/* +/datum/map_template/surface/plains/dogbase + name = "Dog Base" + desc = "A highly secured base with hungry trained canines" + mappath = 'maps/submaps/surface_submaps/plains/dogbase.dmm' + cost = 20 + allow_duplicates = FALSE +*/ +/datum/map_template/surface/plains/emptycabin + name = "Empty Cabin" + desc = "An inconspicuous looking den hosted by a hungry otie" + mappath = 'maps/submaps/surface_submaps/plains/emptycabin.dmm' + cost = 10 + +/datum/map_template/surface/plains/lonewolf + name = "Lone Wolf" + desc = "A large oppressing wolf, supervising from above its cliff" + mappath = 'maps/submaps/surface_submaps/plains/lonewolf.dmm' + cost = 5 +/* +/datum/map_template/surface/plains/otieshelter + name = "Otie Shelter" + desc = "A experimental lab of various breeds of oties" + mappath = 'maps/submaps/surface_submaps/plains/otieshelter.dmm' + cost = 15 + +/datum/map_template/surface/plains/syndisniper + name = "Syndi Sniper" + desc = "Syndicate watch tower, deadly but secluded" + mappath = 'maps/submaps/surface_submaps/plains/syndisniper.dmm' + + cost = 5 +*/ +/datum/map_template/surface/plains/drgnplateu + name = "Dragon Plateu" + desc = "A dangerous plateu of cliffs home to a rampant gold hoarding dragon" + mappath = 'maps/submaps/surface_submaps/plains/drgnplateu.dmm' + cost = 15 + allow_duplicates = FALSE diff --git a/maps/submaps/surface_submaps/plains/priderock.dmm b/maps/submaps/surface_submaps/plains/priderock.dmm index 5f8f432b60..371656b0aa 100644 --- a/maps/submaps/surface_submaps/plains/priderock.dmm +++ b/maps/submaps/surface_submaps/plains/priderock.dmm @@ -1,88 +1,717 @@ -"ae" = (/obj/structure/railing,/obj/item/weapon/bone,/turf/simulated/floor/outdoors/dirt,/area/submap/priderock) -"cR" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/outdoors/dirt,/area/submap/priderock) -"dq" = (/obj/effect/decal/cleanable/dirt,/obj/structure/bonfire/sifwood,/turf/simulated/floor/outdoors/grass/sif,/area/submap/priderock) -"dD" = (/obj/random/junk,/turf/simulated/floor/outdoors/dirt,/area/submap/priderock) -"fL" = (/obj/structure/railing{dir = 8},/obj/structure/cliff/automatic{dir = 8},/turf/simulated/floor/outdoors/dirt,/area/submap/priderock) -"hI" = (/obj/structure/table/woodentable,/turf/simulated/floor/outdoors/grass/sif,/area/submap/priderock) -"ik" = (/obj/random/trash,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/outdoors/dirt,/area/submap/priderock) -"jM" = (/obj/random/maintenance/medical,/obj/random/maintenance/medical,/obj/random/maintenance/medical,/obj/item/weapon/towel/random,/turf/simulated/floor/outdoors/dirt,/area/submap/priderock) -"md" = (/obj/random/trash,/turf/template_noop,/area/submap/priderock) -"nG" = (/obj/structure/railing,/obj/random/junk,/obj/item/weapon/bone/ribs,/obj/item/weapon/bone/skull,/turf/simulated/floor/outdoors/dirt,/area/submap/priderock) -"nV" = (/obj/item/stack/material/log/sif,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/outdoors/dirt,/area/submap/priderock) -"qh" = (/obj/structure/cliff/automatic{dir = 8},/turf/simulated/floor/outdoors/dirt,/area/submap/priderock) -"qP" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/outdoors/dirt,/area/submap/priderock) -"qY" = (/obj/structure/cliff/automatic{dir = 9},/obj/structure/railing{dir = 1},/obj/structure/railing{dir = 8},/turf/simulated/floor/outdoors/dirt,/area/submap/priderock) -"sr" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/outdoors/grass/sif,/area/submap/priderock) -"uv" = (/obj/structure/cliff/automatic/ramp,/obj/structure/railing{dir = 4},/turf/simulated/floor/outdoors/dirt,/area/submap/priderock) -"uG" = (/obj/structure/ledge/ledge_stairs,/turf/simulated/floor/outdoors/rocks,/area/submap/priderock) -"wU" = (/obj/structure/ledge/ledge_stairs{dir = 8},/turf/simulated/floor/outdoors/dirt,/area/submap/priderock) -"xE" = (/obj/structure/closet/crate/bin,/obj/random/junk,/obj/random/junk,/obj/random/junk,/obj/random/junk,/obj/random/junk,/obj/random/junk,/obj/random/junk,/turf/simulated/floor/outdoors/dirt,/area/submap/priderock) -"yi" = (/obj/structure/cliff/automatic/ramp{dir = 9},/obj/structure/railing{dir = 8},/turf/simulated/floor/outdoors/dirt,/area/submap/priderock) -"yI" = (/obj/structure/cliff/automatic{dir = 4},/turf/simulated/floor/outdoors/dirt,/area/submap/priderock) -"An" = (/obj/structure/railing,/obj/random/humanoidremains,/obj/random/humanoidremains,/turf/simulated/floor/outdoors/dirt,/area/submap/priderock) -"As" = (/obj/structure/closet/crate,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/cargo,/obj/random/maintenance/medical,/obj/random/maintenance/medical,/turf/simulated/floor/outdoors/dirt,/area/submap/priderock) -"Bf" = (/obj/random/trash,/obj/random/trash,/turf/simulated/floor/outdoors/dirt,/area/submap/priderock) -"Bv" = (/obj/structure/loot_pile/maint/trash,/turf/simulated/floor/outdoors/dirt,/area/submap/priderock) -"BB" = (/obj/structure/flora/tree/sif,/turf/template_noop,/area/submap/priderock) -"Dg" = (/obj/effect/decal/cleanable/dirt,/obj/structure/ledge/ledge_stairs{dir = 8},/turf/simulated/floor/outdoors/dirt,/area/submap/priderock) -"Dx" = (/obj/structure/cliff/automatic/corner{dir = 9},/turf/simulated/floor/outdoors/dirt,/area/submap/priderock) -"DU" = (/obj/structure/cliff/automatic/corner,/turf/simulated/floor/outdoors/dirt,/area/submap/priderock) -"Ff" = (/obj/structure/cliff/automatic{dir = 8},/obj/structure/railing{dir = 8},/turf/simulated/floor/outdoors/dirt,/area/submap/priderock) -"Fg" = (/obj/effect/decal/cleanable/dirt,/obj/structure/ledge/ledge_stairs,/turf/simulated/floor/outdoors/dirt,/area/submap/priderock) -"Fo" = (/obj/structure/cliff/automatic{dir = 4},/obj/structure/railing{dir = 4},/turf/simulated/floor/outdoors/dirt,/area/submap/priderock) -"FO" = (/obj/random/junk,/turf/simulated/floor/outdoors/grass/sif,/area/submap/priderock) -"Gk" = (/obj/effect/decal/cleanable/dirt,/obj/structure/table/bench/wooden,/turf/simulated/floor/outdoors/grass/sif,/area/submap/priderock) -"Hw" = (/obj/random/trash,/turf/simulated/floor/outdoors/dirt,/area/submap/priderock) -"If" = (/obj/structure/bed/chair,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/outdoors/dirt,/area/submap/priderock) -"Ix" = (/obj/structure/cliff/automatic{dir = 10},/obj/structure/railing{dir = 8},/turf/simulated/floor/outdoors/dirt,/area/submap/priderock) -"Jk" = (/turf/simulated/floor/outdoors/grass/sif,/area/submap/priderock) -"Lm" = (/obj/random/junk,/obj/random/junk,/obj/random/junk,/obj/item/weapon/bone/skull/tajaran,/turf/simulated/floor/outdoors/dirt,/area/submap/priderock) -"Lo" = (/obj/structure/cliff/automatic{dir = 2},/obj/structure/railing,/turf/simulated/floor/outdoors/dirt,/area/submap/priderock) -"LK" = (/obj/structure/cliff/automatic,/turf/simulated/floor/outdoors/dirt,/area/submap/priderock) -"Mg" = (/obj/structure/cliff/automatic{dir = 2},/turf/simulated/floor/outdoors/dirt,/area/submap/priderock) -"Oc" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/outdoors/dirt,/area/submap/priderock) -"Od" = (/obj/structure/cliff/automatic/corner{dir = 10},/turf/simulated/floor/outdoors/dirt,/area/submap/priderock) -"Pb" = (/obj/item/weapon/storage/backpack/dufflebag/syndie/med,/turf/simulated/floor/outdoors/dirt,/area/submap/priderock) -"Pn" = (/obj/structure/table/bench/wooden,/turf/simulated/floor/outdoors/dirt,/area/submap/priderock) -"PW" = (/obj/random/tool,/obj/random/tool,/turf/simulated/floor/outdoors/dirt,/area/submap/priderock) -"Si" = (/obj/structure/cliff/automatic{dir = 6},/obj/structure/railing{dir = 4},/obj/structure/railing,/turf/simulated/floor/outdoors/dirt,/area/submap/priderock) -"SE" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/outdoors/rocks,/area/submap/priderock) -"Tb" = (/obj/structure/railing,/turf/simulated/floor/outdoors/dirt,/area/submap/priderock) -"Td" = (/obj/structure/cliff/automatic{dir = 10},/obj/structure/railing,/obj/structure/railing{dir = 8},/turf/simulated/floor/outdoors/dirt,/area/submap/priderock) -"Ud" = (/obj/effect/decal/cleanable/dirt,/obj/random/junk,/turf/simulated/floor/outdoors/dirt,/area/submap/priderock) -"UG" = (/obj/vehicle/train/engine/quadbike/random{desc = "A rideable electric ATV designed for all terrain. Looks very worn down."; locked = 0; name = "Old looking ATV"},/turf/simulated/floor/outdoors/dirt,/area/submap/priderock) -"VF" = (/obj/structure/cliff/automatic{dir = 5},/obj/structure/railing{dir = 1},/obj/structure/railing{dir = 4},/turf/simulated/floor/outdoors/dirt,/area/submap/priderock) -"VM" = (/obj/structure/loot_pile/maint/trash,/turf/template_noop,/area/submap/priderock) -"Wk" = (/turf/simulated/floor/outdoors/dirt,/area/submap/priderock) -"Xd" = (/obj/structure/cliff/automatic,/obj/structure/railing{dir = 1},/turf/simulated/floor/outdoors/dirt,/area/submap/priderock) -"XN" = (/obj/item/clothing/head/bearpelt,/obj/item/device/binoculars/spyglass,/turf/simulated/floor/outdoors/rocks,/area/submap/priderock) -"Yd" = (/obj/effect/decal/cleanable/dirt,/obj/structure/ledge/ledge_stairs{dir = 4},/turf/simulated/floor/outdoors/dirt,/area/submap/priderock) -"YP" = (/turf/simulated/floor/outdoors/rocks,/area/submap/priderock) -"Zc" = (/obj/random/trash,/obj/effect/decal/cleanable/dirt,/obj/structure/ledge/ledge_stairs{dir = 8},/turf/simulated/floor/outdoors/dirt,/area/submap/priderock) -"Zm" = (/turf/template_noop,/area/submap/priderock) -"ZA" = (/obj/random/trash,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/outdoors/grass/sif,/area/submap/priderock) -"ZJ" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/outdoors/grass/sif,/area/submap/priderock) -"ZO" = (/obj/structure/table/woodentable,/obj/random/plushie,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/outdoors/grass/sif,/area/submap/priderock) +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ae" = ( +/obj/structure/railing, +/obj/item/weapon/bone, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/priderock) +"cR" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/priderock) +"dq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bonfire/sifwood, +/turf/simulated/floor/outdoors/grass/sif/virgo3b, +/area/submap/priderock) +"dD" = ( +/obj/random/junk, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/priderock) +"fL" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/cliff/automatic{ + dir = 8 + }, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/priderock) +"hI" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/outdoors/grass/sif/virgo3b, +/area/submap/priderock) +"ik" = ( +/obj/random/trash, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/priderock) +"jM" = ( +/obj/random/maintenance/medical, +/obj/random/maintenance/medical, +/obj/random/maintenance/medical, +/obj/item/weapon/towel/random, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/priderock) +"md" = ( +/obj/random/trash, +/turf/template_noop, +/area/submap/priderock) +"nG" = ( +/obj/structure/railing, +/obj/random/junk, +/obj/item/weapon/bone/ribs, +/obj/item/weapon/bone/skull, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/priderock) +"nV" = ( +/obj/item/stack/material/log/sif, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/priderock) +"qh" = ( +/obj/structure/cliff/automatic{ + dir = 8 + }, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/priderock) +"qP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/priderock) +"qY" = ( +/obj/structure/cliff/automatic{ + dir = 9 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/priderock) +"sr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/outdoors/grass/sif/virgo3b, +/area/submap/priderock) +"uv" = ( +/obj/structure/cliff/automatic/ramp, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/priderock) +"uG" = ( +/obj/structure/ledge/ledge_stairs, +/turf/simulated/floor/outdoors/rocks/virgo3b, +/area/submap/priderock) +"wU" = ( +/obj/structure/ledge/ledge_stairs{ + dir = 8 + }, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/priderock) +"xE" = ( +/obj/structure/closet/crate/bin, +/obj/random/junk, +/obj/random/junk, +/obj/random/junk, +/obj/random/junk, +/obj/random/junk, +/obj/random/junk, +/obj/random/junk, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/priderock) +"yi" = ( +/obj/structure/cliff/automatic/ramp{ + dir = 9 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/priderock) +"yI" = ( +/obj/structure/cliff/automatic{ + dir = 4 + }, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/priderock) +"An" = ( +/obj/structure/railing, +/obj/random/humanoidremains, +/obj/random/humanoidremains, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/priderock) +"As" = ( +/obj/structure/closet/crate, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/random/maintenance/cargo, +/obj/random/maintenance/medical, +/obj/random/maintenance/medical, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/priderock) +"Bf" = ( +/obj/random/trash, +/obj/random/trash, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/priderock) +"Bv" = ( +/obj/structure/loot_pile/maint/trash, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/priderock) +"BB" = ( +/obj/structure/flora/tree/sif, +/turf/template_noop, +/area/submap/priderock) +"Dg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/ledge/ledge_stairs{ + dir = 8 + }, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/priderock) +"Dx" = ( +/obj/structure/cliff/automatic/corner{ + dir = 9 + }, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/priderock) +"DU" = ( +/obj/structure/cliff/automatic/corner, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/priderock) +"Ff" = ( +/obj/structure/cliff/automatic{ + dir = 8 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/priderock) +"Fg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/ledge/ledge_stairs, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/priderock) +"Fo" = ( +/obj/structure/cliff/automatic{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/priderock) +"FO" = ( +/obj/random/junk, +/turf/simulated/floor/outdoors/grass/sif/virgo3b, +/area/submap/priderock) +"Gk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table/bench/wooden, +/turf/simulated/floor/outdoors/grass/sif/virgo3b, +/area/submap/priderock) +"Hw" = ( +/obj/random/trash, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/priderock) +"If" = ( +/obj/structure/bed/chair, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/priderock) +"Ix" = ( +/obj/structure/cliff/automatic{ + dir = 10 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/priderock) +"Jk" = ( +/turf/simulated/floor/outdoors/grass/sif/virgo3b, +/area/submap/priderock) +"Lm" = ( +/obj/random/junk, +/obj/random/junk, +/obj/random/junk, +/obj/item/weapon/bone/skull/tajaran, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/priderock) +"Lo" = ( +/obj/structure/cliff/automatic{ + dir = 2 + }, +/obj/structure/railing, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/priderock) +"LK" = ( +/obj/structure/cliff/automatic, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/priderock) +"Mg" = ( +/obj/structure/cliff/automatic{ + dir = 2 + }, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/priderock) +"Oc" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/priderock) +"Od" = ( +/obj/structure/cliff/automatic/corner{ + dir = 10 + }, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/priderock) +"Pb" = ( +/obj/item/weapon/storage/backpack/dufflebag/syndie/med, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/priderock) +"Pn" = ( +/obj/structure/table/bench/wooden, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/priderock) +"PW" = ( +/obj/random/tool, +/obj/random/tool, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/priderock) +"Si" = ( +/obj/structure/cliff/automatic{ + dir = 6 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/priderock) +"SE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/outdoors/rocks/virgo3b, +/area/submap/priderock) +"Tb" = ( +/obj/structure/railing, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/priderock) +"Td" = ( +/obj/structure/cliff/automatic{ + dir = 10 + }, +/obj/structure/railing, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/priderock) +"Ud" = ( +/obj/effect/decal/cleanable/dirt, +/obj/random/junk, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/priderock) +"UG" = ( +/obj/vehicle/train/engine/quadbike/random{ + desc = "A rideable electric ATV designed for all terrain. Looks very worn down."; + name = "Old looking ATV" + }, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/priderock) +"VF" = ( +/obj/structure/cliff/automatic{ + dir = 5 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/priderock) +"VM" = ( +/obj/structure/loot_pile/maint/trash, +/turf/template_noop, +/area/submap/priderock) +"Wk" = ( +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/priderock) +"Xd" = ( +/obj/structure/cliff/automatic, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/priderock) +"XN" = ( +/obj/item/clothing/head/bearpelt, +/obj/item/device/binoculars/spyglass, +/turf/simulated/floor/outdoors/rocks/virgo3b, +/area/submap/priderock) +"Yd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/ledge/ledge_stairs{ + dir = 4 + }, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/priderock) +"YP" = ( +/turf/simulated/floor/outdoors/rocks/virgo3b, +/area/submap/priderock) +"Zc" = ( +/obj/random/trash, +/obj/effect/decal/cleanable/dirt, +/obj/structure/ledge/ledge_stairs{ + dir = 8 + }, +/turf/simulated/floor/outdoors/dirt/virgo3b, +/area/submap/priderock) +"Zm" = ( +/turf/template_noop, +/area/submap/priderock) +"ZA" = ( +/obj/random/trash, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/outdoors/grass/sif/virgo3b, +/area/submap/priderock) +"ZJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/outdoors/grass/sif/virgo3b, +/area/submap/priderock) +"ZO" = ( +/obj/structure/table/woodentable, +/obj/random/plushie, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/outdoors/grass/sif/virgo3b, +/area/submap/priderock) (1,1,1) = {" -ZmZmZmZmqPZmZmZmZmZmZmZmZmZmZm -ZmZmZmWksrWkWkZmZmOcZmWkZmZmZm -ZmZmOcuvqPZJyiBfZmZmZmZmBvZmZm -WkBBWkFoFgFgIxLoLoMgLoMgLoLoOd -WkZmZmFoZJqPZJOcOcZJqPZJPnPWFf -ZmWkUGDUXdLKLKXdVFOcZAUddqWkqh -ZmWkWkYPWkYPYPYPyIWkOcOcGkOcFf -ZmWkTbTbTbTbTbTbSinVZJZJOcJkFf -ZmFoPbFOwUYPJkwUJkZJZJZAZJxEFf -HwFoFOSEZcZJSEDgikZJOcIfIfJkFf -ZmFoYPqYXdLKXdXdVFWkFOhIZOjMFf -ZmFoWkfLYPWkYPYPFoJkJkcRcRdDqh -ZmyISETdaenGAnLmFoAsWkWkJkWkFf -WkFoOcSEYdYPWkFfDUXdLKXdXdXdDx -ZmDUXdXdXdVFYPqhZmZmWkZmWkZmWk -ZmWkWkWkZmyIuGFfHwHwVMZmVMZmZm -ZmmdmdVMWkFoXNFfZmWkZmWkBBZmZm -ZmZmZmZmWkDULKDxWkZmZmZmZmZmZm -ZmZmZmZmZmWkWkWkZmZmZmZmZmZmZm -ZmZmZmZmZmZmZmWkZmZmZmZmZmZmZm +Zm +Zm +Zm +Wk +Wk +Zm +Zm +Zm +Zm +Hw +Zm +Zm +Zm +Wk +Zm +Zm +Zm +Zm +Zm +Zm +"} +(2,1,1) = {" +Zm +Zm +Zm +BB +Zm +Wk +Wk +Wk +Fo +Fo +Fo +Fo +yI +Fo +DU +Wk +md +Zm +Zm +Zm +"} +(3,1,1) = {" +Zm +Zm +Oc +Wk +Zm +UG +Wk +Tb +Pb +FO +YP +Wk +SE +Oc +Xd +Wk +md +Zm +Zm +Zm +"} +(4,1,1) = {" +Zm +Wk +uv +Fo +Fo +DU +YP +Tb +FO +SE +qY +fL +Td +SE +Xd +Wk +VM +Zm +Zm +Zm +"} +(5,1,1) = {" +qP +sr +qP +Fg +ZJ +Xd +Wk +Tb +wU +Zc +Xd +YP +ae +Yd +Xd +Zm +Wk +Wk +Zm +Zm +"} +(6,1,1) = {" +Zm +Wk +ZJ +Fg +qP +LK +YP +Tb +YP +ZJ +LK +Wk +nG +YP +VF +yI +Fo +DU +Wk +Zm +"} +(7,1,1) = {" +Zm +Wk +yi +Ix +ZJ +LK +YP +Tb +Jk +SE +Xd +YP +An +Wk +YP +uG +XN +LK +Wk +Zm +"} +(8,1,1) = {" +Zm +Zm +Bf +Lo +Oc +Xd +YP +Tb +wU +Dg +Xd +YP +Lm +Ff +qh +Ff +Ff +Dx +Wk +Wk +"} +(9,1,1) = {" +Zm +Zm +Zm +Lo +Oc +VF +yI +Si +Jk +ik +VF +Fo +Fo +DU +Zm +Hw +Zm +Wk +Zm +Zm +"} +(10,1,1) = {" +Zm +Oc +Zm +Mg +ZJ +Oc +Wk +nV +ZJ +ZJ +Wk +Jk +As +Xd +Zm +Hw +Wk +Zm +Zm +Zm +"} +(11,1,1) = {" +Zm +Zm +Zm +Lo +qP +ZA +Oc +ZJ +ZJ +Oc +FO +Jk +Wk +LK +Wk +VM +Zm +Zm +Zm +Zm +"} +(12,1,1) = {" +Zm +Wk +Zm +Mg +ZJ +Ud +Oc +ZJ +ZA +If +hI +cR +Wk +Xd +Zm +Zm +Wk +Zm +Zm +Zm +"} +(13,1,1) = {" +Zm +Zm +Bv +Lo +Pn +dq +Gk +Oc +ZJ +If +ZO +cR +Jk +Xd +Wk +VM +BB +Zm +Zm +Zm +"} +(14,1,1) = {" +Zm +Zm +Zm +Lo +PW +Wk +Oc +Jk +xE +Jk +jM +dD +Wk +Xd +Zm +Zm +Zm +Zm +Zm +Zm +"} +(15,1,1) = {" +Zm +Zm +Zm +Od +Ff +qh +Ff +Ff +Ff +Ff +Ff +qh +Ff +Dx +Wk +Zm +Zm +Zm +Zm +Zm "} diff --git a/maps/submaps/surface_submaps/plains/snow1.dmm b/maps/submaps/surface_submaps/plains/snow1.dmm index ec5c8ea00c..a90c99bb1a 100644 --- a/maps/submaps/surface_submaps/plains/snow1.dmm +++ b/maps/submaps/surface_submaps/plains/snow1.dmm @@ -1,16 +1,131 @@ -"a" = (/turf/template_noop,/area/template_noop) -"b" = (/turf/template_noop,/area/submap/snow1) -"c" = (/turf/simulated/floor/outdoors/snow,/area/submap/snow1) +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/template_noop, +/area/template_noop) +"b" = ( +/turf/template_noop, +/area/submap/snow1) +"c" = ( +/turf/simulated/floor/outdoors/snow/virgo3b, +/area/submap/snow1) (1,1,1) = {" -aaaaaaaaaa -abbbcccbba -abbcccccba -abccccccba -abccccccca -acccccccba -accccccbba -abcccccbba -abbbbbbbba -aaaaaaaaaa +a +a +a +a +a +a +a +a +a +a +"} +(2,1,1) = {" +a +b +b +b +b +c +c +b +b +a +"} +(3,1,1) = {" +a +b +b +c +c +c +c +c +b +a +"} +(4,1,1) = {" +a +b +c +c +c +c +c +c +b +a +"} +(5,1,1) = {" +a +c +c +c +c +c +c +c +b +a +"} +(6,1,1) = {" +a +c +c +c +c +c +c +c +b +a +"} +(7,1,1) = {" +a +c +c +c +c +c +c +c +b +a +"} +(8,1,1) = {" +a +b +c +c +c +c +b +b +b +a +"} +(9,1,1) = {" +a +b +b +b +c +b +b +b +b +a +"} +(10,1,1) = {" +a +a +a +a +a +a +a +a +a +a "} diff --git a/maps/submaps/surface_submaps/plains/snow2.dmm b/maps/submaps/surface_submaps/plains/snow2.dmm index bedbb62d51..c69e63d355 100644 --- a/maps/submaps/surface_submaps/plains/snow2.dmm +++ b/maps/submaps/surface_submaps/plains/snow2.dmm @@ -1,26 +1,341 @@ -"a" = (/turf/template_noop,/area/template_noop) -"b" = (/turf/template_noop,/area/submap/smol2) -"c" = (/turf/simulated/floor/outdoors/snow,/area/submap/smol2) +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/template_noop, +/area/template_noop) +"b" = ( +/turf/template_noop, +/area/submap/smol2) +"c" = ( +/turf/simulated/floor/outdoors/snow/virgo3b, +/area/submap/smol2) (1,1,1) = {" -aaaaaaaaaaaaaaa -abbbbbbbbbcbbba -abbbbbbbbcccbba -abbbbbbcccccbba -abbbbbccccccbba -abbbbccccccbbba -abbbbccccccbbba -abbbbccccccbbba -abbbcccccccbbba -abbbcccccccbbba -abbbcccccccbbba -abbbccccccbbbba -abbcccccccbbbba -abbccccccbbbbba -abbcccccbbbbbba -abbccccbbbbbbba -abccccbbbbbbbba -abccbcbbbbbbbba -abbbbbbbbbbbbba -aaaaaaaaaaaaaaa +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(2,1,1) = {" +a +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +a +"} +(3,1,1) = {" +a +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +c +c +b +a +"} +(4,1,1) = {" +a +b +b +b +b +b +b +b +b +b +b +b +c +c +c +c +c +c +b +a +"} +(5,1,1) = {" +a +b +b +b +b +b +b +b +c +c +c +c +c +c +c +c +c +b +b +a +"} +(6,1,1) = {" +a +b +b +b +b +c +c +c +c +c +c +c +c +c +c +c +c +c +b +a +"} +(7,1,1) = {" +a +b +b +b +c +c +c +c +c +c +c +c +c +c +c +c +b +b +b +a +"} +(8,1,1) = {" +a +b +b +c +c +c +c +c +c +c +c +c +c +c +c +b +b +b +b +a +"} +(9,1,1) = {" +a +b +b +c +c +c +c +c +c +c +c +c +c +c +b +b +b +b +b +a +"} +(10,1,1) = {" +a +b +c +c +c +c +c +c +c +c +c +c +c +b +b +b +b +b +b +a +"} +(11,1,1) = {" +a +c +c +c +c +c +c +c +c +c +c +b +b +b +b +b +b +b +b +a +"} +(12,1,1) = {" +a +b +c +c +c +b +b +b +b +b +b +b +b +b +b +b +b +b +b +a +"} +(13,1,1) = {" +a +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +a +"} +(14,1,1) = {" +a +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +a +"} +(15,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a "} diff --git a/maps/submaps/surface_submaps/plains/snow3.dmm b/maps/submaps/surface_submaps/plains/snow3.dmm index 56e9a78878..ed732ffe79 100644 --- a/maps/submaps/surface_submaps/plains/snow3.dmm +++ b/maps/submaps/surface_submaps/plains/snow3.dmm @@ -1,16 +1,251 @@ -"a" = (/turf/template_noop,/area/template_noop) -"b" = (/turf/template_noop,/area/submap/snow3) -"c" = (/turf/simulated/floor/outdoors/snow,/area/submap/snow3) +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/template_noop, +/area/template_noop) +"b" = ( +/turf/template_noop, +/area/submap/snow3) +"c" = ( +/turf/simulated/floor/outdoors/snow/virgo3b, +/area/submap/snow3) (1,1,1) = {" -aaaaaaaaaaaaaaaaaaaa -abbbbccccccbbbbbbbba -abbcccccccccccccbbba -abccccccccccccccccca -abccccccccccccccccca -abccccccccccccccccba -abccccccccccccccbbba -abbbcccccccccccbbbba -abbbbbbbcccbbbbbbbba -aaaaaaaaaaaaaaaaaaaa +a +a +a +a +a +a +a +a +a +a +"} +(2,1,1) = {" +a +b +b +b +b +b +b +b +b +a +"} +(3,1,1) = {" +a +b +b +c +c +c +c +b +b +a +"} +(4,1,1) = {" +a +b +c +c +c +c +c +b +b +a +"} +(5,1,1) = {" +a +b +c +c +c +c +c +c +b +a +"} +(6,1,1) = {" +a +c +c +c +c +c +c +c +b +a +"} +(7,1,1) = {" +a +c +c +c +c +c +c +c +b +a +"} +(8,1,1) = {" +a +c +c +c +c +c +c +c +b +a +"} +(9,1,1) = {" +a +c +c +c +c +c +c +c +c +a +"} +(10,1,1) = {" +a +c +c +c +c +c +c +c +c +a +"} +(11,1,1) = {" +a +c +c +c +c +c +c +c +c +a +"} +(12,1,1) = {" +a +b +c +c +c +c +c +c +b +a +"} +(13,1,1) = {" +a +b +c +c +c +c +c +c +b +a +"} +(14,1,1) = {" +a +b +c +c +c +c +c +c +b +a +"} +(15,1,1) = {" +a +b +c +c +c +c +c +c +b +a +"} +(16,1,1) = {" +a +b +c +c +c +c +c +b +b +a +"} +(17,1,1) = {" +a +b +b +c +c +c +b +b +b +a +"} +(18,1,1) = {" +a +b +b +c +c +c +b +b +b +a +"} +(19,1,1) = {" +a +b +b +c +c +b +b +b +b +a +"} +(20,1,1) = {" +a +a +a +a +a +a +a +a +a +a "} diff --git a/maps/submaps/surface_submaps/plains/snow4.dmm b/maps/submaps/surface_submaps/plains/snow4.dmm index 4d766fcf82..72b0880f82 100644 --- a/maps/submaps/surface_submaps/plains/snow4.dmm +++ b/maps/submaps/surface_submaps/plains/snow4.dmm @@ -1,16 +1,131 @@ -"a" = (/turf/template_noop,/area/template_noop) -"b" = (/turf/template_noop,/area/submap/snow4) -"c" = (/turf/simulated/floor/outdoors/snow,/area/submap/snow4) +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/template_noop, +/area/template_noop) +"b" = ( +/turf/template_noop, +/area/submap/snow4) +"c" = ( +/turf/simulated/floor/outdoors/snow/virgo3b, +/area/submap/snow4) (1,1,1) = {" -aaaaaaaaaa -abbcbbbbba -abcccbcbba -abccccccba -abbccccbba -abcccccbba -acccccccba -acccbcccba -abcbbbccba -aaaaaaaaaa +a +a +a +a +a +a +a +a +a +a +"} +(2,1,1) = {" +a +b +b +b +b +b +c +c +b +a +"} +(3,1,1) = {" +a +b +c +c +b +c +c +c +c +a +"} +(4,1,1) = {" +a +c +c +c +c +c +c +c +b +a +"} +(5,1,1) = {" +a +b +c +c +c +c +c +b +b +a +"} +(6,1,1) = {" +a +b +b +c +c +c +c +c +b +a +"} +(7,1,1) = {" +a +b +c +c +c +c +c +c +c +a +"} +(8,1,1) = {" +a +b +b +c +b +b +c +c +c +a +"} +(9,1,1) = {" +a +b +b +b +b +b +b +b +b +a +"} +(10,1,1) = {" +a +a +a +a +a +a +a +a +a +a "} diff --git a/maps/submaps/surface_submaps/plains/snow5.dmm b/maps/submaps/surface_submaps/plains/snow5.dmm index d14b78e01e..e1e877a9d4 100644 --- a/maps/submaps/surface_submaps/plains/snow5.dmm +++ b/maps/submaps/surface_submaps/plains/snow5.dmm @@ -1,22 +1,227 @@ -"a" = (/turf/template_noop,/area/template_noop) -"b" = (/turf/template_noop,/area/submap/snow5) -"c" = (/turf/simulated/floor/outdoors/snow,/area/submap/snow5) +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/template_noop, +/area/template_noop) +"b" = ( +/turf/template_noop, +/area/submap/snow5) +"c" = ( +/turf/simulated/floor/outdoors/snow/virgo3b, +/area/submap/snow5) (1,1,1) = {" -aaaaaaaaaaaa -abbcccccbbba -abcccccccbba -abcccccccbba -abbcccccccba -abbcccccccba -abbbcccccbba -abbbccccccba -abbbbcccccba -abbbbcccccba -abbbbccccbba -abbbcccccbba -abbbccccbbba -abbbcccbbbba -abbcccbbbbba -aaaaaaaaaaaa +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(2,1,1) = {" +a +b +b +b +b +b +b +b +b +b +b +b +b +b +b +a +"} +(3,1,1) = {" +a +b +c +c +b +b +b +b +b +b +b +b +b +b +b +a +"} +(4,1,1) = {" +a +c +c +c +c +c +b +b +b +b +b +b +b +b +c +a +"} +(5,1,1) = {" +a +c +c +c +c +c +c +c +b +b +b +c +c +c +c +a +"} +(6,1,1) = {" +a +c +c +c +c +c +c +c +c +c +c +c +c +c +c +a +"} +(7,1,1) = {" +a +c +c +c +c +c +c +c +c +c +c +c +c +c +b +a +"} +(8,1,1) = {" +a +c +c +c +c +c +c +c +c +c +c +c +c +b +b +a +"} +(9,1,1) = {" +a +b +c +c +c +c +c +c +c +c +c +c +b +b +b +a +"} +(10,1,1) = {" +a +b +b +b +c +c +b +c +c +c +b +b +b +b +b +a +"} +(11,1,1) = {" +a +b +b +b +b +b +b +b +b +b +b +b +b +b +b +a +"} +(12,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a "} diff --git a/maps/submaps/surface_submaps/plains/syndisniper.dmm b/maps/submaps/surface_submaps/plains/syndisniper.dmm index d209ca0a5e..002cbac1b7 100644 --- a/maps/submaps/surface_submaps/plains/syndisniper.dmm +++ b/maps/submaps/surface_submaps/plains/syndisniper.dmm @@ -7,40 +7,40 @@ /obj/structure/railing/grey{ dir = 1 }, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/SyndiSniper) "c" = ( /obj/structure/cliff/automatic/corner{ dir = 9 }, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/SyndiSniper) "d" = ( -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/SyndiSniper) "j" = ( -/turf/simulated/floor/outdoors/rocks, +/turf/simulated/floor/outdoors/rocks/virgo3b, /area/submap/SyndiSniper) "m" = ( /obj/structure/cliff/automatic/corner{ dir = 6 }, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/SyndiSniper) "p" = ( /obj/structure/cliff/automatic/corner, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/SyndiSniper) "w" = ( /obj/structure/table/sifwooden_reinforced, /obj/item/weapon/storage/mre/random, /obj/item/device/binoculars, /obj/item/device/radio/bluespacehandset/linked/talon_prelinked, -/turf/simulated/floor/outdoors/rocks, +/turf/simulated/floor/outdoors/rocks/virgo3b, /area/submap/SyndiSniper) "B" = ( /obj/structure/ledge/ledge_stairs, -/turf/simulated/floor/outdoors/rocks, +/turf/simulated/floor/outdoors/rocks/virgo3b, /area/submap/SyndiSniper) "F" = ( /mob/living/simple_mob/humanoid/merc/ranged/sniper{ @@ -48,7 +48,7 @@ max_tox = 0; min_oxy = 0 }, -/turf/simulated/floor/outdoors/rocks, +/turf/simulated/floor/outdoors/rocks/virgo3b, /area/submap/SyndiSniper) "J" = ( /obj/structure/cliff/automatic{ @@ -57,7 +57,7 @@ /obj/structure/railing/grey{ dir = 8 }, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/SyndiSniper) "L" = ( /obj/structure/cliff/automatic{ @@ -67,7 +67,7 @@ dir = 4 }, /obj/structure/railing/grey, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/SyndiSniper) "M" = ( /obj/structure/cliff/automatic/ramp{ @@ -76,7 +76,7 @@ /obj/structure/railing/grey{ dir = 8 }, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/SyndiSniper) "O" = ( /obj/structure/cliff/automatic{ @@ -85,7 +85,7 @@ /obj/structure/railing/grey{ dir = 4 }, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/SyndiSniper) "T" = ( /obj/structure/bed/chair, @@ -94,24 +94,24 @@ max_tox = 0; min_oxy = 0 }, -/turf/simulated/floor/outdoors/rocks, +/turf/simulated/floor/outdoors/rocks/virgo3b, /area/submap/SyndiSniper) "V" = ( /obj/structure/ledge/ledge_stairs, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/SyndiSniper) "Y" = ( /obj/structure/cliff/automatic/ramp, /obj/structure/railing/grey{ dir = 4 }, -/turf/simulated/floor/outdoors/dirt, +/turf/simulated/floor/outdoors/dirt/virgo3b, /area/submap/SyndiSniper) "Z" = ( /obj/structure/ledge/ledge_stairs, /obj/structure/ledge/ledge_stairs, /obj/structure/barricade, -/turf/simulated/floor/outdoors/rocks, +/turf/simulated/floor/outdoors/rocks/virgo3b, /area/submap/SyndiSniper) (1,1,1) = {" diff --git a/maps/submaps/surface_submaps/wilderness/borglab.dmm b/maps/submaps/surface_submaps/wilderness/borglab.dmm index cb572dcfbe..b2865e495d 100644 --- a/maps/submaps/surface_submaps/wilderness/borglab.dmm +++ b/maps/submaps/surface_submaps/wilderness/borglab.dmm @@ -1,5 +1,15 @@ -"ac" = (/obj/machinery/light_construct{dir = 1},/mob/living/simple_mob/humanoid/merc/ranged{health = 15; maxHealth = 15},/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/submap/BorgLab) +"aa" = (/obj/effect/floor_decal/techfloor/orange{dir = 1},/obj/random/maintenance,/turf/simulated/floor/reinforced,/area/submap/BorgLab) +"ab" = (/obj/effect/floor_decal/industrial/warning,/obj/effect/floor_decal/rust,/obj/random/energy,/turf/simulated/floor/plating,/area/submap/BorgLab) +"ac" = (/obj/machinery/light_construct{dir = 1},/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/mob/living/simple_mob/humanoid/merc/ranged{health = 15; maxHealth = 15},/turf/simulated/floor/plating,/area/submap/BorgLab) "ad" = (/obj/effect/floor_decal/sign/c,/turf/simulated/wall/r_wall,/area/submap/BorgLab) +"ae" = (/obj/effect/floor_decal/rust/mono_rusted3,/obj/random/maintenance/research,/mob/living/simple_mob/humanoid/merc/ranged/ionrifle{health = 15; maxHealth = 15},/turf/simulated/floor/tiled,/area/submap/BorgLab) +"af" = (/obj/effect/floor_decal/rust,/obj/effect/floor_decal/rust/mono_rusted3,/obj/effect/decal/cleanable/generic,/mob/living/simple_mob/mechanical/combat_drone/lesser{faction = "corrupt"},/turf/simulated/floor/tiled,/area/submap/BorgLab) +"ag" = (/obj/effect/floor_decal/industrial/warning,/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/mob/living/simple_mob/humanoid/merc/melee/sword/poi{health = 15; maxHealth = 15},/turf/simulated/floor/tiled,/area/submap/BorgLab) +"ah" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/light/small/emergency/flicker,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/obj/random/contraband,/turf/simulated/floor/tiled,/area/submap/BorgLab) +"ai" = (/obj/effect/floor_decal/industrial/warning,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/mob/living/simple_mob/humanoid/merc/ranged{health = 15; maxHealth = 15},/turf/simulated/floor/tiled,/area/submap/BorgLab) +"aj" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/random/energy/highend,/turf/simulated/floor/reinforced,/area/submap/BorgLab) +"ak" = (/obj/effect/floor_decal/techfloor/orange,/turf/simulated/floor/reinforced,/area/submap/BorgLab) +"al" = (/obj/effect/floor_decal/techfloor/orange,/obj/random/contraband,/turf/simulated/floor/reinforced,/area/submap/BorgLab) "bj" = (/obj/structure/bed/padded,/obj/item/weapon/bedsheet/brown,/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/generic,/turf/simulated/floor/tiled,/area/submap/BorgLab) "bz" = (/obj/random/trash,/turf/simulated/floor/reinforced,/area/submap/BorgLab) "bE" = (/obj/structure/closet/secure_closet/chemical{locked = 0},/obj/item/weapon/storage/box/pillbottles,/obj/item/weapon/storage/box/syringes,/obj/item/weapon/tool/screwdriver,/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/submap/BorgLab) @@ -22,7 +32,6 @@ "gf" = (/obj/structure/table/standard,/obj/item/weapon/reagent_containers/food/snacks/burrito_cheese,/obj/effect/floor_decal/rust,/obj/effect/floor_decal/rust,/obj/item/weapon/cell/super/empty,/turf/simulated/floor/tiled,/area/submap/BorgLab) "gh" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/light_construct{dir = 1},/turf/simulated/floor/tiled,/area/submap/BorgLab) "gN" = (/obj/structure/window/reinforced/tinted/frosted{dir = 4},/obj/random/junk,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/generic,/turf/simulated/floor/plating,/area/submap/BorgLab) -"gS" = (/obj/effect/floor_decal/rust/mono_rusted3,/mob/living/simple_mob/humanoid/merc/ranged/ionrifle{health = 15; maxHealth = 15},/obj/random/maintenance/research,/turf/simulated/floor/tiled,/area/submap/BorgLab) "he" = (/obj/structure/window/reinforced{dir = 4; health = 1e+006},/obj/structure/window/reinforced{dir = 8; health = 1e+006},/obj/item/weapon/material/shard{pixel_x = 6; pixel_y = -6},/obj/machinery/door/blast/regular{dir = 8; id = "borg"; layer = 3.3; name = "Containment Door"},/turf/simulated/floor/plating,/area/submap/BorgLab) "hW" = (/obj/machinery/door/airlock/maintenance/common,/turf/simulated/floor/tiled/techmaint,/area/submap/BorgLab) "ic" = (/obj/structure/window/reinforced/tinted/frosted{dir = 4},/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/submap/BorgLab) @@ -39,7 +48,6 @@ "lz" = (/obj/machinery/light_switch,/turf/simulated/wall/r_wall,/area/submap/BorgLab) "lJ" = (/obj/effect/floor_decal/rust,/obj/structure/sink{dir = 4; pixel_x = 11},/obj/machinery/light/small/emergency/flicker{dir = 1},/turf/simulated/floor/plating,/area/submap/BorgLab) "lU" = (/obj/machinery/chem_master,/obj/effect/floor_decal/rust/mono_rusted3,/turf/simulated/floor/tiled,/area/submap/BorgLab) -"lZ" = (/obj/effect/floor_decal/industrial/warning,/obj/effect/floor_decal/rust,/mob/living/simple_mob/humanoid/merc/melee/sword/poi{health = 15; maxHealth = 15},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/submap/BorgLab) "ma" = (/obj/effect/floor_decal/sign/b,/turf/simulated/wall/r_wall,/area/submap/BorgLab) "mf" = (/obj/machinery/door/airlock/maintenance/common,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/techmaint,/area/submap/BorgLab) "mi" = (/obj/structure/closet/radiation,/obj/random/maintenance,/obj/random/maintenance,/obj/random/maintenance,/obj/effect/floor_decal/rust/color_rustedcee,/turf/simulated/floor/tiled,/area/submap/BorgLab) @@ -51,7 +59,6 @@ "ne" = (/obj/machinery/door/window/brigdoor/westright{dir = 1; name = "Containment Pen"; req_one_access = list(43,1)},/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/door/blast/regular{dir = 8; id = "borg"; layer = 3.3; name = "Containment Door"},/turf/simulated/floor/plating,/area/submap/BorgLab) "nk" = (/obj/effect/floor_decal/rust,/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/generic,/turf/simulated/floor/plating,/area/submap/BorgLab) "ny" = (/obj/structure/curtain/open/shower,/obj/effect/floor_decal/borderfloor/cee{dir = 4},/obj/effect/floor_decal/rust,/obj/machinery/shower{dir = 4; pixel_x = 5},/turf/simulated/floor/tiled,/area/submap/BorgLab) -"nV" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/light/small/emergency/flicker,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/submap/BorgLab) "nW" = (/obj/effect/floor_decal/rust,/obj/structure/table,/obj/effect/floor_decal/rust/mono_rusted3,/turf/simulated/floor/tiled,/area/submap/BorgLab) "oa" = (/obj/effect/floor_decal/industrial/warning,/obj/item/weapon/material/shard{pixel_x = 6; pixel_y = -6},/turf/simulated/floor/tiled,/area/submap/BorgLab) "op" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/effect/decal/cleanable/generic,/turf/simulated/floor/reinforced,/area/submap/BorgLab) @@ -113,7 +120,6 @@ "GA" = (/obj/machinery/door/airlock/maintenance/common,/turf/simulated/floor/plating,/area/submap/BorgLab) "GC" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/submap/BorgLab) "GS" = (/obj/item/stack/material/gold{amount = 25},/turf/simulated/floor/reinforced,/area/submap/BorgLab) -"HA" = (/obj/effect/floor_decal/techfloor/orange,/obj/random/single,/turf/simulated/floor/reinforced,/area/submap/BorgLab) "Ic" = (/obj/random/trash,/mob/living/simple_mob/mechanical/mecha/ripley/deathripley,/turf/simulated/floor/reinforced,/area/submap/BorgLab) "Jd" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/reinforced,/area/submap/BorgLab) "Jh" = (/obj/effect/floor_decal/rust,/obj/item/weapon/material/shard,/obj/effect/floor_decal/rust/mono_rusted3,/obj/random/trash,/turf/simulated/floor/tiled,/area/submap/BorgLab) @@ -123,12 +129,10 @@ "Jr" = (/obj/effect/floor_decal/techfloor/orange{dir = 1},/mob/living/simple_mob/mechanical/viscerator/mercenary,/mob/living/simple_mob/mechanical/viscerator/mercenary,/turf/simulated/floor/reinforced,/area/submap/BorgLab) "JZ" = (/obj/effect/floor_decal/industrial/warning/corner,/obj/structure/railing{dir = 1},/turf/simulated/floor/tiled,/area/submap/BorgLab) "KH" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4; health = 1e+006},/obj/item/weapon/material/shard{pixel_y = 10},/obj/item/weapon/material/shard{pixel_x = 6; pixel_y = -6},/obj/effect/decal/cleanable/generic,/obj/machinery/door/blast/regular/open{dir = 4},/turf/simulated/floor/plating,/area/submap/BorgLab) -"KX" = (/obj/effect/floor_decal/techfloor/orange{dir = 1},/obj/random/single,/turf/simulated/floor/reinforced,/area/submap/BorgLab) "Lr" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/obj/structure/grille/broken,/obj/item/weapon/material/shard{pixel_x = -3; pixel_y = -6},/obj/item/weapon/material/shard{pixel_y = 10},/obj/machinery/door/blast/regular{dir = 8; id = "borg"; layer = 3.3; name = "Containment Door"},/turf/simulated/floor/plating,/area/submap/BorgLab) "Lz" = (/obj/structure/table/standard,/obj/effect/floor_decal/rust,/obj/effect/floor_decal/rust,/obj/random/trash,/obj/random/maintenance/research,/turf/simulated/floor/tiled,/area/submap/BorgLab) "LB" = (/obj/item/stack/material/phoron{amount = 10},/obj/random/toolbox,/obj/random/toolbox,/obj/item/weapon/storage/box/lights/mixed,/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/random/maintenance/research,/obj/item/stack/material/phoron{amount = 10},/obj/structure/table/rack,/turf/simulated/floor/plating,/area/submap/BorgLab) "LC" = (/obj/effect/gibspawner/human,/mob/living/simple_mob/mechanical/mecha/odysseus/murdysseus{faction = "corrupt"},/turf/simulated/floor/reinforced,/area/submap/BorgLab) -"LL" = (/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/obj/random/single,/turf/simulated/floor/plating,/area/submap/BorgLab) "MT" = (/obj/machinery/space_heater,/obj/effect/floor_decal/rust,/obj/machinery/light/small/emergency/flicker{dir = 4},/turf/simulated/floor/tiled,/area/submap/BorgLab) "Nb" = (/obj/effect/floor_decal/industrial/warning,/obj/effect/decal/cleanable/generic,/turf/simulated/floor/tiled,/area/submap/BorgLab) "Nj" = (/obj/effect/floor_decal/rust,/turf/simulated/floor/plating,/area/submap/BorgLab) @@ -144,8 +148,6 @@ "OH" = (/obj/effect/wingrille_spawn/reinforced,/obj/machinery/door/blast/regular/open{dir = 4},/turf/simulated/floor/plating,/area/submap/BorgLab) "OW" = (/obj/structure/table/standard,/obj/item/device/flashlight/lamp,/obj/effect/floor_decal/techfloor/orange{dir = 1},/obj/item/weapon/broken_gun/laserrifle,/turf/simulated/floor/reinforced,/area/submap/BorgLab) "Pf" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/effect/decal/cleanable/generic,/turf/simulated/floor/tiled,/area/submap/BorgLab) -"Pk" = (/obj/effect/floor_decal/industrial/warning,/obj/effect/floor_decal/rust,/obj/random/single,/turf/simulated/floor/plating,/area/submap/BorgLab) -"PW" = (/obj/effect/floor_decal/industrial/warning,/mob/living/simple_mob/humanoid/merc/ranged{health = 15; maxHealth = 15},/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/submap/BorgLab) "Qe" = (/obj/effect/map_effect/interval/sound_emitter/energy_gunfight,/turf/simulated/floor/plating,/area/submap/BorgLab) "Qg" = (/turf/simulated/mineral/ignore_mapgen,/area/template_noop) "Qn" = (/obj/structure/window/reinforced/tinted/frosted{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/submap/BorgLab) @@ -162,7 +164,6 @@ "SZ" = (/obj/effect/floor_decal/techfloor/orange,/obj/structure/loot_pile/surface/bones,/turf/simulated/floor/reinforced,/area/submap/BorgLab) "Tj" = (/obj/structure/table/standard,/obj/machinery/chemical_dispenser/full,/turf/simulated/floor/tiled,/area/submap/BorgLab) "Tp" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/effect/floor_decal/rust,/obj/effect/decal/cleanable/generic,/turf/simulated/floor/plating,/area/submap/BorgLab) -"Tt" = (/mob/living/simple_mob/mechanical/combat_drone/lesser{faction = "corrupt"},/obj/effect/floor_decal/rust,/obj/effect/floor_decal/rust/mono_rusted3,/obj/effect/decal/cleanable/generic,/turf/simulated/floor/tiled,/area/submap/BorgLab) "Tv" = (/obj/effect/floor_decal/sign/a,/turf/simulated/wall/r_wall,/area/submap/BorgLab) "TD" = (/obj/effect/floor_decal/techfloor/orange{dir = 1},/turf/simulated/floor/reinforced,/area/submap/BorgLab) "TN" = (/obj/structure/closet/l3closet/virology,/obj/effect/floor_decal/rust,/turf/simulated/floor/plating,/area/submap/BorgLab) @@ -184,7 +185,6 @@ "WK" = (/obj/effect/floor_decal/rust,/obj/effect/floor_decal/rust,/obj/item/weapon/broken_gun/laser_retro,/mob/living/simple_mob/mechanical/viscerator/mercenary,/mob/living/simple_mob/mechanical/viscerator/mercenary,/turf/simulated/floor/plating,/area/submap/BorgLab) "WQ" = (/turf/simulated/wall/r_wall,/area/submap/BorgLab) "WR" = (/obj/effect/floor_decal/rust,/obj/effect/floor_decal/industrial/warning/cee{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled,/area/submap/BorgLab) -"XD" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/random/single,/turf/simulated/floor/reinforced,/area/submap/BorgLab) "XG" = (/obj/effect/floor_decal/rust,/obj/effect/floor_decal/rust/mono_rusted3,/obj/effect/gibspawner/human,/obj/effect/decal/cleanable/generic,/turf/simulated/floor/tiled,/area/submap/BorgLab) "Yk" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/submap/BorgLab) "Yy" = (/obj/structure/table/steel,/obj/item/weapon/coin/phoron,/obj/item/weapon/storage/toolbox/syndicate/powertools,/obj/effect/floor_decal/rust,/obj/effect/floor_decal/rust,/obj/random/maintenance/research,/obj/random/maintenance/research,/turf/simulated/floor/plating,/area/submap/BorgLab) @@ -206,17 +206,17 @@ DFDFsrQgWQWQWQWQWQWQQgQgQgQgQgDFQgQgQgDFQgQgQgiYbLbLbLRPDqsrDFDF DFDFsrQgWQpYtrYyLBWQQgQgQgQgQgQgQgQgQgQgQgQgQgRGRGRGDqDqDqDFDFDF DFsrQgQgWQVHTUOqCzWQWQWQWQWQWQWQWQWQWQWQWQWQWQWQWQRGRGDqRPDFDFDF DFDFQgWQWQWQWQGAWQWQWQWQWQWQWQWQWQWQWQWQWQWQWQWQWQWQRGRGDqDFDFDF -DFDFQgWQmiUjQWQnDvWQKXxzOWWQuXTDNjWQmwTDbYWQpeWKJrWQWQRGRGDFDFDF +DFDFQgWQmiUjQWQnDvWQaaxzOWWQuXTDNjWQmwTDbYWQpeWKJrWQWQRGRGDFDFDF DFQgQgWQrPZayISycCWQjfLCnkWQTWGzuQWQTUyBtxWQWhxOWqWQWQWQRGQgDFDF -srQgQgWQtagfbjicUzWQVcJpPkWQUVVcUMWQVcODVcWQyzububWQsKWQWQQgDFDF +srQgQgWQtagfbjicUzWQVcJpabWQUVVcUMWQVcODVcWQyzububWQsKWQWQQgDFDF DFQgQgWQNsZOCAgNWQWQbIugOHWQYDwtyqWQYDmBYDWQJomBYDlzWQWQWQWQWQDF srQgWQWQZtmfNCWQWQeVRLejPfghyRrarOiiAsAsifacGCVriSNtWQnylJWQZcsr -QgQgWQTjlUCANqOzhWzkNjXGnWLzFvgSJhTttyCSCXththBlYkNvkIYZWRmsQesr -QgQgWQDjkjktdTUyZtJZlZnbLLnVFtJmYkPWddoaNbQsFjqWVhSGWQTNDsWQgcDF +QgQgWQTjlUCANqOzhWzkNjXGnWLzFvaeJhaftyCSCXththBlYkNvkIYZWRmsQesr +QgQgWQDjkjktdTUyZtJZagnbYZahFtJmYkaiddoaNbQsFjqWVhSGWQTNDsWQgcDF QgWQxkCfYkfhGyMTWQWQYDneYDcALrneheadUWdKOHmaKHZqtXTvWQWQWQWQWQDF -QgWQjzRtFuZyDWxUqaWQJdXDVUWQJdRLopWQgaTpopWQNBopJdWQqWWQWQQgDFDF +QgWQjzRtFuZyDWxUqaWQJdajVUWQJdRLopWQgaTpopWQNBopJdWQqWWQWQQgDFDF QgWQxkxubNdebEZnwqWQtxIctxWQGSBqtxWQbzAItxWQNjxhtxWQWQWQQgDFDFDF -QgQgWQWQWQWQWQWQWQWQSuNjjRWQSZNjcZWQHANjmEWQQzSZHAWQWQRGQgDFDFDF +QgQgWQWQWQWQWQWQWQWQSuNjjRWQSZNjcZWQakNjmEWQQzSZalWQWQRGQgDFDFDF DFQgQgRGRGRGRGRGRGWQWQWQWQWQWQWQWQWQWQWQWQWQWQWQWQWQRGRGDFsrDFDF DFsrQgRGRGRGRGRGRGRGWQWQWQWQWQWQWQWQWQWQWQWQWQWQWQRGRGRGRPDFsrDF DFDFDFRGRGRGiYbLRGRGRGRGRGRGRGRGRGRGRGRGRGRGRGRGRGRGzebLRPDFDFDF diff --git a/maps/submaps/surface_submaps/wilderness/emptycabin.dmm b/maps/submaps/surface_submaps/wilderness/emptycabin.dmm index 25396ef3c8..734f328ca2 100644 --- a/maps/submaps/surface_submaps/wilderness/emptycabin.dmm +++ b/maps/submaps/surface_submaps/wilderness/emptycabin.dmm @@ -1,328 +1,328 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"a" = ( -/turf/template_noop, -/area/template_noop) -"b" = ( -/obj/effect/decal/cleanable/filth, -/obj/item/weapon/bone/arm, -/obj/item/weapon/bone/skull/unathi, -/turf/simulated/floor/wood/sif, -/area/submap/EmptyCabin) -"c" = ( -/obj/structure/curtain/black, -/obj/structure/simple_door/sifwood, -/turf/simulated/floor/wood/sif, -/area/submap/EmptyCabin) -"d" = ( -/obj/structure/closet/wardrobe, -/obj/item/weapon/material/fishing_rod/modern, -/obj/item/weapon/storage/toolbox/mechanical, -/obj/item/weapon/storage/toolbox/lunchbox/nymph/filled, -/turf/simulated/floor/wood/sif, -/area/submap/EmptyCabin) -"e" = ( -/turf/simulated/wall/sifwood, -/area/submap/EmptyCabin) -"f" = ( -/obj/structure/railing/grey{ - dir = 1 - }, -/turf/simulated/floor/wood/sif, -/area/submap/EmptyCabin) -"g" = ( -/obj/structure/bed/double/padded, -/obj/item/weapon/bedsheet/purpledouble, -/turf/simulated/floor/wood/sif, -/area/submap/EmptyCabin) -"i" = ( -/obj/structure/bed/chair/sofa/blue/left{ - dir = 1 - }, -/turf/simulated/floor/wood/sif, -/area/submap/EmptyCabin) -"k" = ( -/obj/structure/railing/grey{ - dir = 8 - }, -/obj/structure/bed/chair/sofa/left{ - dir = 8 - }, -/turf/simulated/floor/wood/sif, -/area/submap/EmptyCabin) -"l" = ( -/obj/structure/railing/grey{ - dir = 8 - }, -/obj/structure/bed/chair/sofa{ - dir = 8 - }, -/turf/simulated/floor/wood/sif, -/area/submap/EmptyCabin) -"n" = ( -/obj/structure/table/sifwoodentable, -/obj/item/weapon/storage/fancy/candle_box, -/obj/item/weapon/paper/crumpled/bloody{ - info = "I found an otie while picking flowers today. He's so cute! I took him back home, and he seemed quite happy to share food with me. He really likes fish. Though, he never really seems to not be hungry..." - }, -/turf/simulated/floor/wood/sif, -/area/submap/EmptyCabin) -"q" = ( -/obj/structure/railing/grey{ - dir = 4 - }, -/turf/template_noop, -/area/submap/EmptyCabin) -"r" = ( -/obj/effect/landmark/loot_spawn/low, -/turf/simulated/floor/wood/sif, -/area/submap/EmptyCabin) -"t" = ( -/obj/structure/railing/grey, -/turf/simulated/floor/wood/sif, -/area/submap/EmptyCabin) -"y" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/curtain/black, -/obj/structure/grille/rustic, -/turf/simulated/floor/plating, -/area/submap/EmptyCabin) -"z" = ( -/obj/effect/decal/cleanable/blood/drip{ - icon_state = "4" - }, -/turf/simulated/floor/wood/sif, -/area/submap/EmptyCabin) -"A" = ( -/obj/structure/bonfire/permanent/sifwood, -/obj/structure/railing/grey{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/steel/techfloor, -/area/submap/EmptyCabin) -"B" = ( -/turf/template_noop, -/area/submap/EmptyCabin) -"C" = ( -/obj/structure/railing/grey{ - dir = 8 - }, -/turf/simulated/floor/wood/sif, -/area/submap/EmptyCabin) -"D" = ( -/turf/simulated/floor/wood/sif, -/area/submap/EmptyCabin) -"F" = ( -/mob/living/simple_mob/otie/friendly/chubby{ - desc = "The classic bioengineered longdog. This one still probably won't tolerate you. What an absolute unit"; - faction = "spiders"; - max_co2 = 0; - max_tox = 0 - }, -/obj/effect/decal/cleanable/blood, -/turf/simulated/floor/wood/sif, -/area/submap/EmptyCabin) -"G" = ( -/obj/structure/bed/chair/sofa/blue{ - dir = 1 - }, -/turf/simulated/floor/wood/sif, -/area/submap/EmptyCabin) -"I" = ( -/obj/structure/table/sifwoodentable, -/obj/item/pizzabox/meat, -/turf/simulated/floor/wood/sif, -/area/submap/EmptyCabin) -"J" = ( -/obj/structure/bed/chair/sofa/blue/right{ - dir = 1 - }, -/turf/simulated/floor/wood/sif, -/area/submap/EmptyCabin) -"L" = ( -/obj/structure/table/sifwoodentable, -/obj/item/weapon/flame/candle/candelabra, -/turf/simulated/floor/wood/sif, -/area/submap/EmptyCabin) -"M" = ( -/obj/item/weapon/bone/leg, -/turf/simulated/floor/wood/sif, -/area/submap/EmptyCabin) -"O" = ( -/obj/structure/railing/grey{ - dir = 8 - }, -/obj/structure/bed/chair/sofa/right{ - dir = 8 - }, -/turf/simulated/floor/wood/sif, -/area/submap/EmptyCabin) -"Q" = ( -/obj/effect/decal/cleanable/blood/drip{ - icon_state = "5" - }, -/obj/effect/decal/cleanable/blood/drip{ - icon_state = "2" - }, -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/decal/cleanable/blood/drip{ - icon_state = "3" - }, -/obj/effect/decal/cleanable/blood, -/turf/simulated/floor/wood/sif, -/area/submap/EmptyCabin) -"R" = ( -/obj/structure/loot_pile/surface, -/turf/template_noop, -/area/template_noop) -"T" = ( -/obj/structure/railing/grey{ - dir = 8 - }, -/turf/template_noop, -/area/submap/EmptyCabin) -"V" = ( -/obj/effect/decal/cleanable/blood/drip{ - icon_state = "5" - }, -/turf/simulated/floor/wood/sif, -/area/submap/EmptyCabin) -"W" = ( -/obj/effect/decal/cleanable/blood/drip, -/obj/effect/decal/cleanable/blood/drip{ - icon_state = "2" - }, -/turf/simulated/floor/wood/sif, -/area/submap/EmptyCabin) -"X" = ( -/obj/item/weapon/bone, -/turf/simulated/floor/wood/sif, -/area/submap/EmptyCabin) -"Z" = ( -/obj/effect/decal/cleanable/blood/drip{ - icon_state = "3" - }, -/turf/simulated/floor/wood/sif, -/area/submap/EmptyCabin) - -(1,1,1) = {" -a -q -e -k -l -l -O -C -e -a -"} -(2,1,1) = {" -a -B -D -D -D -D -D -D -t -a -"} -(3,1,1) = {" -a -T -f -e -e -c -e -e -t -a -"} -(4,1,1) = {" -a -a -e -e -b -M -D -e -e -a -"} -(5,1,1) = {" -a -a -e -g -F -X -L -i -e -a -"} -(6,1,1) = {" -a -a -y -n -W -D -I -G -e -a -"} -(7,1,1) = {" -a -a -e -d -Z -r -D -J -e -a -"} -(8,1,1) = {" -a -a -e -e -z -V -Q -e -e -a -"} -(9,1,1) = {" -a -a -R -e -e -A -e -e -a -a -"} -(10,1,1) = {" -a -a -a -R -e -e -e -a -a -a -"} +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/template_noop, +/area/template_noop) +"b" = ( +/obj/effect/decal/cleanable/filth, +/obj/item/weapon/bone/arm, +/obj/item/weapon/bone/skull/unathi, +/turf/simulated/floor/wood/sif, +/area/submap/EmptyCabin) +"c" = ( +/obj/structure/curtain/black, +/obj/structure/simple_door/sifwood, +/turf/simulated/floor/wood/sif, +/area/submap/EmptyCabin) +"d" = ( +/obj/structure/closet/wardrobe, +/obj/item/weapon/material/fishing_rod/modern, +/obj/item/weapon/storage/toolbox/mechanical, +/obj/item/weapon/storage/toolbox/lunchbox/nymph/filled, +/turf/simulated/floor/wood/sif, +/area/submap/EmptyCabin) +"e" = ( +/turf/simulated/wall/sifwood, +/area/submap/EmptyCabin) +"f" = ( +/obj/structure/railing/grey{ + dir = 1 + }, +/turf/simulated/floor/wood/sif, +/area/submap/EmptyCabin) +"g" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/purpledouble, +/turf/simulated/floor/wood/sif, +/area/submap/EmptyCabin) +"i" = ( +/obj/structure/bed/chair/sofa/left/blue{ + dir = 1 + }, +/turf/simulated/floor/wood/sif, +/area/submap/EmptyCabin) +"k" = ( +/obj/structure/railing/grey{ + dir = 8 + }, +/obj/structure/bed/chair/sofa/left{ + dir = 8 + }, +/turf/simulated/floor/wood/sif, +/area/submap/EmptyCabin) +"l" = ( +/obj/structure/railing/grey{ + dir = 8 + }, +/obj/structure/bed/chair/sofa{ + dir = 8 + }, +/turf/simulated/floor/wood/sif, +/area/submap/EmptyCabin) +"n" = ( +/obj/structure/table/sifwoodentable, +/obj/item/weapon/storage/fancy/candle_box, +/obj/item/weapon/paper/crumpled/bloody{ + info = "I found an otie while picking flowers today. He's so cute! I took him back home, and he seemed quite happy to share food with me. He really likes fish. Though, he never really seems to not be hungry..." + }, +/turf/simulated/floor/wood/sif, +/area/submap/EmptyCabin) +"q" = ( +/obj/structure/railing/grey{ + dir = 4 + }, +/turf/template_noop, +/area/submap/EmptyCabin) +"r" = ( +/obj/effect/landmark/loot_spawn/low, +/turf/simulated/floor/wood/sif, +/area/submap/EmptyCabin) +"t" = ( +/obj/structure/railing/grey, +/turf/simulated/floor/wood/sif, +/area/submap/EmptyCabin) +"y" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/curtain/black, +/obj/structure/grille/rustic, +/turf/simulated/floor/plating, +/area/submap/EmptyCabin) +"z" = ( +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "4" + }, +/turf/simulated/floor/wood/sif, +/area/submap/EmptyCabin) +"A" = ( +/obj/structure/bonfire/permanent/sifwood, +/obj/structure/railing/grey{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/steel/techfloor, +/area/submap/EmptyCabin) +"B" = ( +/turf/template_noop, +/area/submap/EmptyCabin) +"C" = ( +/obj/structure/railing/grey{ + dir = 8 + }, +/turf/simulated/floor/wood/sif, +/area/submap/EmptyCabin) +"D" = ( +/turf/simulated/floor/wood/sif, +/area/submap/EmptyCabin) +"F" = ( +/mob/living/simple_mob/otie/friendly/chubby{ + desc = "The classic bioengineered longdog. This one still probably won't tolerate you. What an absolute unit"; + faction = "spiders"; + max_co2 = 0; + max_tox = 0 + }, +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/wood/sif, +/area/submap/EmptyCabin) +"G" = ( +/obj/structure/bed/chair/sofa/blue{ + dir = 1 + }, +/turf/simulated/floor/wood/sif, +/area/submap/EmptyCabin) +"I" = ( +/obj/structure/table/sifwoodentable, +/obj/item/pizzabox/meat, +/turf/simulated/floor/wood/sif, +/area/submap/EmptyCabin) +"J" = ( +/obj/structure/bed/chair/sofa/right/blue{ + dir = 1 + }, +/turf/simulated/floor/wood/sif, +/area/submap/EmptyCabin) +"L" = ( +/obj/structure/table/sifwoodentable, +/obj/item/weapon/flame/candle/candelabra, +/turf/simulated/floor/wood/sif, +/area/submap/EmptyCabin) +"M" = ( +/obj/item/weapon/bone/leg, +/turf/simulated/floor/wood/sif, +/area/submap/EmptyCabin) +"O" = ( +/obj/structure/railing/grey{ + dir = 8 + }, +/obj/structure/bed/chair/sofa/right{ + dir = 8 + }, +/turf/simulated/floor/wood/sif, +/area/submap/EmptyCabin) +"Q" = ( +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "5" + }, +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "2" + }, +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "3" + }, +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/wood/sif, +/area/submap/EmptyCabin) +"R" = ( +/obj/structure/loot_pile/surface, +/turf/template_noop, +/area/template_noop) +"T" = ( +/obj/structure/railing/grey{ + dir = 8 + }, +/turf/template_noop, +/area/submap/EmptyCabin) +"V" = ( +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "5" + }, +/turf/simulated/floor/wood/sif, +/area/submap/EmptyCabin) +"W" = ( +/obj/effect/decal/cleanable/blood/drip, +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "2" + }, +/turf/simulated/floor/wood/sif, +/area/submap/EmptyCabin) +"X" = ( +/obj/item/weapon/bone, +/turf/simulated/floor/wood/sif, +/area/submap/EmptyCabin) +"Z" = ( +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "3" + }, +/turf/simulated/floor/wood/sif, +/area/submap/EmptyCabin) + +(1,1,1) = {" +a +q +e +k +l +l +O +C +e +a +"} +(2,1,1) = {" +a +B +D +D +D +D +D +D +t +a +"} +(3,1,1) = {" +a +T +f +e +e +c +e +e +t +a +"} +(4,1,1) = {" +a +a +e +e +b +M +D +e +e +a +"} +(5,1,1) = {" +a +a +e +g +F +X +L +i +e +a +"} +(6,1,1) = {" +a +a +y +n +W +D +I +G +e +a +"} +(7,1,1) = {" +a +a +e +d +Z +r +D +J +e +a +"} +(8,1,1) = {" +a +a +e +e +z +V +Q +e +e +a +"} +(9,1,1) = {" +a +a +R +e +e +A +e +e +a +a +"} +(10,1,1) = {" +a +a +a +R +e +e +e +a +a +a +"} diff --git a/maps/submaps/surface_submaps/wilderness/xenohive.dmm b/maps/submaps/surface_submaps/wilderness/xenohive.dmm index 901e79b762..ca3d798f12 100644 --- a/maps/submaps/surface_submaps/wilderness/xenohive.dmm +++ b/maps/submaps/surface_submaps/wilderness/xenohive.dmm @@ -11,7 +11,7 @@ "fG" = (/obj/effect/alien/weeds,/turf/simulated/floor/tiled/steel_dirty,/area/submap/XenoHive) "fW" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/obj/effect/map_effect/interval/sound_emitter/ballistic_gunfight,/turf/simulated/floor/outdoors/dirt,/area/submap/XenoHive) "gO" = (/obj/effect/alien/weeds,/obj/item/organ/internal/heart,/obj/item/organ/internal/kidneys/vox,/obj/structure/safe,/obj/random/multiple/gun/projectile/shotgun,/obj/random/contraband,/turf/simulated/floor,/area/submap/XenoHive) -"gS" = (/obj/effect/alien/resin/wall,/turf/simulated/mineral/ignore_mapgen,/area/template_noop) +"gS" = (/obj/structure/alien/wall,/turf/simulated/mineral/ignore_mapgen,/area/template_noop) "hx" = (/obj/effect/alien/weeds,/obj/machinery/telecomms/broadcaster,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/submap/XenoHive) "im" = (/obj/item/stack/animalhide/xeno,/obj/effect/alien/weeds,/obj/structure/table/rack,/turf/simulated/floor/outdoors/rocks{outdoors = 0},/area/submap/XenoHive) "iF" = (/obj/structure/bed/chair{dir = 8},/obj/effect/alien/weeds,/obj/effect/gibspawner/human,/turf/simulated/floor/tiled/steel_dirty,/area/submap/XenoHive) @@ -41,19 +41,19 @@ "yx" = (/mob/living/simple_mob/animal/space/alien/sentinel,/obj/effect/alien/weeds,/obj/effect/alien/weeds,/turf/simulated/floor/outdoors/dirt,/area/submap/XenoHive) "yS" = (/obj/structure/table/steel_reinforced,/obj/effect/alien/weeds,/obj/item/toy/plushie/face_hugger,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/submap/XenoHive) "zU" = (/obj/structure/salvageable/autolathe,/obj/effect/alien/weeds,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/tiled/steel_dirty,/area/submap/XenoHive) -"AA" = (/obj/effect/alien/resin/wall,/obj/effect/alien/weeds,/turf/simulated/mineral/ignore_mapgen,/area/submap/XenoHive) -"AB" = (/obj/effect/alien/resin/wall,/turf/simulated/mineral/ignore_mapgen,/area/submap/XenoHive) -"BD" = (/obj/effect/alien/resin/membrane,/obj/effect/alien/weeds,/turf/simulated/floor/outdoors/dirt{outdoors = 0},/area/submap/XenoHive) +"AA" = (/obj/structure/alien/wall,/obj/effect/alien/weeds,/turf/simulated/mineral/ignore_mapgen,/area/submap/XenoHive) +"AB" = (/obj/structure/alien/wall,/turf/simulated/mineral/ignore_mapgen,/area/submap/XenoHive) +"BD" = (/obj/structure/alien/membrane,/obj/effect/alien/weeds,/turf/simulated/floor/outdoors/dirt{outdoors = 0},/area/submap/XenoHive) "Cb" = (/obj/structure/bed/chair,/obj/effect/alien/weeds,/obj/effect/gibspawner/human,/turf/simulated/floor/tiled/steel_dirty,/area/submap/XenoHive) "Ce" = (/obj/effect/alien/weeds,/obj/random/maintenance/security,/obj/random/maintenance/security,/obj/random/maintenance/security,/obj/item/organ/internal/eyes/replicant,/obj/structure/safe,/obj/random/multiple/gun/projectile/rifle,/obj/random/contraband,/turf/simulated/floor,/area/submap/XenoHive) -"CR" = (/obj/effect/alien/resin/wall,/turf/simulated/floor/outdoors/dirt,/area/template_noop) +"CR" = (/obj/structure/alien/wall,/turf/simulated/floor/outdoors/dirt,/area/template_noop) "De" = (/obj/effect/alien/weeds,/obj/effect/gibspawner/human,/turf/simulated/floor/outdoors/dirt{outdoors = 0},/area/submap/XenoHive) "Dh" = (/mob/living/simple_mob/animal/space/alien/sentinel,/obj/effect/alien/weeds,/turf/simulated/floor/outdoors/dirt{outdoors = 0},/area/submap/XenoHive) "Et" = (/turf/simulated/mineral/ignore_mapgen,/area/submap/XenoHive) "FE" = (/mob/living/simple_mob/animal/space/alien/drone,/obj/effect/alien/weeds,/turf/simulated/floor,/area/submap/XenoHive) "Gw" = (/obj/structure/table,/obj/effect/alien/weeds,/obj/item/stack/material/phoron{amount = 10},/turf/simulated/floor,/area/submap/XenoHive) "Gy" = (/mob/living/simple_mob/animal/space/alien/sentinel,/obj/effect/alien/weeds,/turf/simulated/floor/tiled/steel_dirty,/area/submap/XenoHive) -"GN" = (/obj/effect/alien/weeds,/obj/effect/alien/resin/membrane,/turf/simulated/floor/outdoors/dirt{outdoors = 0},/area/submap/XenoHive) +"GN" = (/obj/effect/alien/weeds,/obj/structure/alien/membrane,/turf/simulated/floor/outdoors/dirt{outdoors = 0},/area/submap/XenoHive) "Hr" = (/turf/simulated/floor/outdoors/dirt,/area/template_noop) "Hu" = (/obj/effect/alien/weeds,/turf/simulated/floor,/area/submap/XenoHive) "Hx" = (/obj/item/weapon/portable_destructive_analyzer,/obj/effect/alien/weeds,/turf/simulated/floor/outdoors/dirt{outdoors = 0},/area/submap/XenoHive) diff --git a/maps/tether/submaps/_tether_submaps.dm b/maps/tether/submaps/_tether_submaps.dm index ebd65a7dfd..4173ca91f0 100644 --- a/maps/tether/submaps/_tether_submaps.dm +++ b/maps/tether/submaps/_tether_submaps.dm @@ -3,6 +3,20 @@ ////////////////////////////////////////////////////////////////////////////// /// Static Load + +/datum/map_template/tether_lateload/tether_centcom + name = "Tether - Centcom" + desc = "Central Command lives here!" + mappath = 'tether_centcom.dmm' + + associated_map_datum = /datum/map_z_level/tether_lateload/centcom + +/datum/map_z_level/tether_lateload/centcom + z = Z_LEVEL_CENTCOM + name = "Centcom" + flags = MAP_LEVEL_ADMIN|MAP_LEVEL_SEALED|MAP_LEVEL_CONTACT|MAP_LEVEL_XENOARCH_EXEMPT + base_turf = /turf/simulated/floor/outdoors/rocks + /datum/map_template/tether_lateload/tether_misc name = "Tether - Misc" desc = "Misc areas, like some transit areas, holodecks, merc area." @@ -11,6 +25,7 @@ associated_map_datum = /datum/map_z_level/tether_lateload/misc /datum/map_z_level/tether_lateload/misc + z = Z_LEVEL_MISC name = "Misc" flags = MAP_LEVEL_ADMIN|MAP_LEVEL_SEALED|MAP_LEVEL_CONTACT|MAP_LEVEL_XENOARCH_EXEMPT @@ -35,7 +50,9 @@ new /datum/random_map/automata/cave_system/no_cracks(null, 3, 3, Z_LEVEL_UNDERDARK, world.maxx - 4, world.maxy - 4) // Create the mining Z-level. new /datum/random_map/noise/ore(null, 1, 1, Z_LEVEL_UNDERDARK, 64, 64) // Create the mining ore distribution map. - +#include "../../submaps/surface_submaps/plains/plains_vr.dm" +#include "../../submaps/surface_submaps/plains/plains_areas.dm" +#include "../../submaps/surface_submaps/plains/plains_turfs.dm" /datum/map_template/tether_lateload/tether_plains name = "Tether - Plains" desc = "The Virgo 3B away mission." @@ -126,254 +143,6 @@ flags = MAP_LEVEL_CONTACT|MAP_LEVEL_PLAYER z = Z_LEVEL_ROGUEMINE_2 -////////////////////////////////////////////////////////////////////////////// -/// Away Missions -#if AWAY_MISSION_TEST -#include "../../expedition_vr/beach/beach.dmm" -#include "../../expedition_vr/beach/cave.dmm" -#include "../../expedition_vr/alienship/alienship.dmm" -#include "../../expedition_vr/aerostat/aerostat.dmm" -#include "../../expedition_vr/aerostat/surface.dmm" -#include "../../expedition_vr/space/debrisfield.dmm" -#include "../../expedition_vr/space/fueldepot.dmm" -#endif - -#include "../../expedition_vr/beach/_beach.dm" -/datum/map_template/tether_lateload/away_beach - name = "Desert Planet - Z1 Beach" - desc = "The beach away mission." - mappath = 'maps/expedition_vr/beach/beach.dmm' - associated_map_datum = /datum/map_z_level/tether_lateload/away_beach - -/datum/map_z_level/tether_lateload/away_beach - name = "Away Mission - Desert Beach" - z = Z_LEVEL_BEACH - base_turf = /turf/simulated/floor/outdoors/rocks/caves - -/datum/map_template/tether_lateload/away_beach_cave - name = "Desert Planet - Z2 Cave" - desc = "The beach away mission's cave." - mappath = 'maps/expedition_vr/beach/cave.dmm' - associated_map_datum = /datum/map_z_level/tether_lateload/away_beach_cave - -/datum/map_template/tether_lateload/away_beach_cave/on_map_loaded(z) - . = ..() - seed_submaps(list(Z_LEVEL_BEACH_CAVE), 120, /area/tether_away/cave/unexplored/normal, /datum/map_template/surface/mountains/normal) - //seed_submaps(list(Z_LEVEL_BEACH_CAVE), 70, /area/tether_away/cave/unexplored/normal, /datum/map_template/surface/mountains/deep) - - // Now for the tunnels. - new /datum/random_map/automata/cave_system/no_cracks(null, 3, 3, Z_LEVEL_BEACH_CAVE, world.maxx - 4, world.maxy - 4) - new /datum/random_map/noise/ore/beachmine(null, 1, 1, Z_LEVEL_BEACH_CAVE, 64, 64) - -/datum/map_z_level/tether_lateload/away_beach_cave - name = "Away Mission - Desert Cave" - z = Z_LEVEL_BEACH_CAVE - base_turf = /turf/simulated/floor/outdoors/rocks/caves - -/obj/effect/step_trigger/zlevel_fall/beach - var/static/target_z - - -#include "../../expedition_vr/alienship/_alienship.dm" -/datum/map_template/tether_lateload/away_alienship - name = "Alien Ship - Z1 Ship" - desc = "The alien ship away mission." - mappath = 'maps/expedition_vr/alienship/alienship.dmm' - associated_map_datum = /datum/map_z_level/tether_lateload/away_alienship - -/datum/map_z_level/tether_lateload/away_alienship - name = "Away Mission - Alien Ship" - - -#include "../../expedition_vr/aerostat/_aerostat.dm" -/datum/map_template/tether_lateload/away_aerostat - name = "Remmi Aerostat - Z1 Aerostat" - desc = "The Virgo 2 Aerostat away mission." - mappath = 'maps/expedition_vr/aerostat/aerostat.dmm' - associated_map_datum = /datum/map_z_level/tether_lateload/away_aerostat - -/datum/map_z_level/tether_lateload/away_aerostat - name = "Away Mission - Aerostat" - z = Z_LEVEL_AEROSTAT - base_turf = /turf/unsimulated/floor/sky/virgo2_sky - -/datum/map_template/tether_lateload/away_aerostat_surface - name = "Remmi Aerostat - Z2 Surface" - desc = "The surface from the Virgo 2 Aerostat." - mappath = 'maps/expedition_vr/aerostat/surface.dmm' - associated_map_datum = /datum/map_z_level/tether_lateload/away_aerostat_surface - -/datum/map_template/tether_lateload/away_aerostat_surface/on_map_loaded(z) - . = ..() - seed_submaps(list(Z_LEVEL_AEROSTAT_SURFACE), 120, /area/tether_away/aerostat/surface/unexplored, /datum/map_template/virgo2) - new /datum/random_map/automata/cave_system/no_cracks(null, 3, 3, Z_LEVEL_AEROSTAT_SURFACE, world.maxx - 4, world.maxy - 4) - new /datum/random_map/noise/ore/virgo2(null, 1, 1, Z_LEVEL_AEROSTAT_SURFACE, 64, 64) - -/datum/map_z_level/tether_lateload/away_aerostat_surface - name = "Away Mission - Aerostat Surface" - z = Z_LEVEL_AEROSTAT_SURFACE - base_turf = /turf/simulated/mineral/floor/ignore_mapgen/virgo2 - - -#include "../../expedition_vr/space/_debrisfield.dm" -#include "../../expedition_vr/space/_fueldepot.dm" -#include "../../submaps/pois_vr/debris_field/_templates.dm" -#include "../../submaps/pois_vr/debris_field/debrisfield_things.dm" -/datum/map_template/tether_lateload/away_debrisfield - name = "Debris Field - Z1 Space" - desc = "The Virgo 3 Debris Field away mission." - mappath = 'maps/expedition_vr/space/debrisfield.dmm' - associated_map_datum = /datum/map_z_level/tether_lateload/away_debrisfield - -/datum/map_template/tether_lateload/away_debrisfield/on_map_loaded(z) - . = ..() - //Commented out until we actually get POIs - seed_submaps(list(Z_LEVEL_DEBRISFIELD), 400, /area/space, /datum/map_template/debrisfield) - -/datum/map_z_level/tether_lateload/away_debrisfield - name = "Away Mission - Debris Field" - z = Z_LEVEL_DEBRISFIELD - -/datum/map_template/tether_lateload/away_fueldepot - name = "Fuel Depot - Z1 Space" - desc = "An unmanned fuel depot floating in space." - mappath = 'maps/expedition_vr/space/fueldepot.dmm' - associated_map_datum = /datum/map_z_level/tether_lateload/away_fueldepot - -/datum/map_z_level/tether_lateload/away_fueldepot - name = "Away Mission - Fuel Depot" - z = Z_LEVEL_FUELDEPOT - -////////////////////////////////////////////////////////////////////////////////////// -// Gateway submaps go here - -/obj/effect/overmap/visitable/sector/tether_gateway - name = "Unknown" - desc = "Approach and perform a scan to obtain further information." - icon_state = "object" //or "globe" for planetary stuff - known = FALSE - -/datum/map_template/tether_lateload/gateway - name = "Gateway Submap" - desc = "Please do not use this." - mappath = null - associated_map_datum = null - -/datum/map_z_level/tether_lateload/gateway_destination - name = "Gateway Destination" - z = Z_LEVEL_GATEWAY -/* // Removed due to heavy merc presence -#include "../../gateway_vr/snow_outpost.dm" -/datum/map_template/tether_lateload/gateway/snow_outpost - name = "Snow Outpost" - desc = "Big snowy area with various outposts." - mappath = 'maps/gateway_vr/snow_outpost.dmm' - associated_map_datum = /datum/map_z_level/tether_lateload/gateway_destination -*/ -#include "../../gateway_vr/zoo.dm" -/datum/map_template/tether_lateload/gateway/zoo - name = "Zoo" - desc = "Gigantic space zoo" - mappath = 'maps/gateway_vr/zoo.dmm' - associated_map_datum = /datum/map_z_level/tether_lateload/gateway_destination - -#include "../../gateway_vr/carpfarm.dm" -/datum/map_template/tether_lateload/gateway/carpfarm - name = "Carp Farm" - desc = "Asteroid base surrounded by carp" - mappath = 'maps/gateway_vr/carpfarm.dmm' - associated_map_datum = /datum/map_z_level/tether_lateload/gateway_destination - -#include "../../gateway_vr/snowfield.dm" -/datum/map_template/tether_lateload/gateway/snowfield - name = "Snow Field" - desc = "An old base in middle of snowy wasteland" - mappath = 'maps/gateway_vr/snowfield.dmm' - associated_map_datum = /datum/map_z_level/tether_lateload/gateway_destination - -#include "../../gateway_vr/listeningpost.dm" -/datum/map_template/tether_lateload/gateway/listeningpost - name = "Listening Post" - desc = "Asteroid-bound mercenary listening post" - mappath = 'maps/gateway_vr/listeningpost.dmm' - associated_map_datum = /datum/map_z_level/tether_lateload/gateway_destination - -#include "../../gateway_vr/variable/honlethhighlands.dm" -/datum/map_template/tether_lateload/gateway/honlethhighlands_a - name = "Honleth Highlands A" - desc = "The cold surface of some planet." - mappath = 'maps/gateway_vr/variable/honlethhighlands_a.dmm' - associated_map_datum = /datum/map_z_level/tether_lateload/gateway_destination - -/datum/map_template/tether_lateload/gateway/honlethhighlands_b - name = "Honleth Highlands B" - desc = "The cold surface of some planet." - mappath = 'maps/gateway_vr/variable/honlethhighlands_b.dmm' - associated_map_datum = /datum/map_z_level/tether_lateload/gateway_destination - - -#include "../../gateway_vr/variable/arynthilake.dm" -/datum/map_template/tether_lateload/gateway/arynthilake - name = "Arynthi Lake A" - desc = "A grassy surface with some abandoned structures." - mappath = 'maps/gateway_vr/variable/arynthilake_a.dmm' - associated_map_datum = /datum/map_z_level/tether_lateload/gateway_destination - -/datum/map_template/tether_lateload/gateway/arynthilakeunderground - name = "Arynthi Lake Underground A" - desc = "A grassy surface with some abandoned structures." - mappath = 'maps/gateway_vr/variable/arynthilakeunderground_a.dmm' - associated_map_datum = /datum/map_z_level/tether_lateload/gateway_destination - -/datum/map_template/tether_lateload/gateway/arynthilake_b - name = "Arynthi Lake B" - desc = "A grassy surface with some abandoned structures." - mappath = 'maps/gateway_vr/variable/arynthilake_b.dmm' - associated_map_datum = /datum/map_z_level/tether_lateload/gateway_destination - -/datum/map_template/tether_lateload/gateway/arynthilakeunderground_b - name = "Arynthi Lake Underground B" - desc = "A grassy surface with some abandoned structures." - mappath = 'maps/gateway_vr/variable/arynthilakeunderground_b.dmm' - associated_map_datum = /datum/map_z_level/tether_lateload/gateway_destination - -#include "../../gateway_vr/eggnogtown.dm" -/datum/map_template/tether_lateload/gateway/eggnogtown - name = "Eggnog Town" - desc = "A comfortable snowy town." - mappath = 'maps/gateway_vr/eggnogtown.dmm' - associated_map_datum = /datum/map_z_level/tether_lateload/gateway_destination - -/datum/map_template/tether_lateload/gateway/eggnogtownunderground - name = "Eggnog Town Underground" - desc = "A comfortable snowy town." - mappath = 'maps/gateway_vr/eggnogtownunderground.dmm' - associated_map_datum = /datum/map_z_level/tether_lateload/gateway_destination - -#include "../../gateway_vr/wildwest.dm" -/datum/map_template/tether_lateload/gateway/wildwest - name = "Wild West" - desc = "A classic." - mappath = 'maps/gateway_vr/wildwest.dmm' - associated_map_datum = /datum/map_z_level/tether_lateload/gateway_destination - -////////////////////////////////////////////////////////////////////////////////////// -// Admin-use z-levels for loading whenever an admin feels like -#if AWAY_MISSION_TEST -#include "../../submaps/admin_use_vr/spa.dmm" -#endif -#include "../../submaps/admin_use_vr/fun.dm" -/datum/map_template/tether_lateload/fun/spa - name = "Space Spa" - desc = "A pleasant spa located in a spaceship." - mappath = 'maps/submaps/admin_use_vr/spa.dmm' - - associated_map_datum = /datum/map_z_level/tether_lateload/fun/spa - -/datum/map_z_level/tether_lateload/fun/spa - name = "Spa" - flags = MAP_LEVEL_PLAYER|MAP_LEVEL_SEALED - ////////////////////////////////////////////////////////////////////////////////////// // Code Shenanigans for Tether lateload maps /datum/map_template/tether_lateload @@ -433,155 +202,31 @@ var/mob/living/L = A L.fall_impact(T, 42, 90, FALSE, TRUE) //You will not be defibbed from this. -///////////////////////////// -/obj/tether_away_spawner - name = "RENAME ME, JERK" - desc = "Spawns the mobs!" - icon = 'icons/mob/screen1.dmi' - icon_state = "x" - invisibility = 101 - mouse_opacity = 0 - density = 0 - anchored = 1 +#include "../../expedition_vr/aerostat/_aerostat.dm" +/datum/map_template/tether_lateload/away_aerostat + name = "Remmi Aerostat - Z1 Aerostat" + desc = "The Virgo 2 Aerostat away mission." + mappath = 'maps/expedition_vr/aerostat/aerostat.dmm' + associated_map_datum = /datum/map_z_level/tether_lateload/away_aerostat - //Weighted with values (not %chance, but relative weight) - //Can be left value-less for all equally likely - var/list/mobs_to_pick_from +/datum/map_z_level/tether_lateload/away_aerostat + name = "Away Mission - Aerostat" + z = Z_LEVEL_AEROSTAT + base_turf = /turf/unsimulated/floor/sky/virgo2_sky - //When the below chance fails, the spawner is marked as depleted and stops spawning - var/prob_spawn = 100 //Chance of spawning a mob whenever they don't have one - var/prob_fall = 5 //Above decreases by this much each time one spawns +/datum/map_template/tether_lateload/away_aerostat_surface + name = "Remmi Aerostat - Z2 Surface" + desc = "The surface from the Virgo 2 Aerostat." + mappath = 'maps/expedition_vr/aerostat/surface.dmm' + associated_map_datum = /datum/map_z_level/tether_lateload/away_aerostat_surface - //Settings to help mappers/coders have their mobs do what they want in this case - var/faction //To prevent infighting if it spawns various mobs, set a faction - var/atmos_comp //TRUE will set all their survivability to be within 20% of the current air - //var/guard //# will set the mobs to remain nearby their spawn point within this dist - - //Internal use only - var/mob/living/simple_mob/my_mob - var/depleted = FALSE - -/obj/tether_away_spawner/Initialize() +/datum/map_template/tether_lateload/away_aerostat_surface/on_map_loaded(z) . = ..() + seed_submaps(list(Z_LEVEL_AEROSTAT_SURFACE), 120, /area/offmap/aerostat/surface/unexplored, /datum/map_template/virgo2) + new /datum/random_map/automata/cave_system/no_cracks(null, 3, 3, Z_LEVEL_AEROSTAT_SURFACE, world.maxx - 4, world.maxy - 4) + new /datum/random_map/noise/ore/virgo2(null, 1, 1, Z_LEVEL_AEROSTAT_SURFACE, 64, 64) - if(!LAZYLEN(mobs_to_pick_from)) - error("Mob spawner at [x],[y],[z] ([get_area(src)]) had no mobs_to_pick_from set on it!") - initialized = TRUE - return INITIALIZE_HINT_QDEL - START_PROCESSING(SSobj, src) - -/obj/tether_away_spawner/process() - if(my_mob && my_mob.stat != DEAD) - return //No need - - for(var/mob/living/L in view(src,world.view)) - if(L.client) - return //I'll wait. - - if(prob(prob_spawn)) - prob_spawn -= prob_fall - var/picked_type = pickweight(mobs_to_pick_from) - my_mob = new picked_type(get_turf(src)) - my_mob.low_priority = TRUE - - if(faction) - my_mob.faction = faction - - if(atmos_comp) - var/turf/T = get_turf(src) - var/datum/gas_mixture/env = T.return_air() - if(env) - if(my_mob.minbodytemp > env.temperature) - my_mob.minbodytemp = env.temperature * 0.8 - if(my_mob.maxbodytemp < env.temperature) - my_mob.maxbodytemp = env.temperature * 1.2 - - var/list/gaslist = env.gas - if(my_mob.min_oxy) - my_mob.min_oxy = gaslist["oxygen"] * 0.8 - if(my_mob.min_tox) - my_mob.min_tox = gaslist["phoron"] * 0.8 - if(my_mob.min_n2) - my_mob.min_n2 = gaslist["nitrogen"] * 0.8 - if(my_mob.min_co2) - my_mob.min_co2 = gaslist["carbon_dioxide"] * 0.8 - if(my_mob.max_oxy) - my_mob.max_oxy = gaslist["oxygen"] * 1.2 - if(my_mob.max_tox) - my_mob.max_tox = gaslist["phoron"] * 1.2 - if(my_mob.max_n2) - my_mob.max_n2 = gaslist["nitrogen"] * 1.2 - if(my_mob.max_co2) - my_mob.max_co2 = gaslist["carbon_dioxide"] * 1.2 -/* //VORESTATION AI TEMPORARY REMOVAL - if(guard) - my_mob.returns_home = TRUE - my_mob.wander_distance = guard -*/ - return - else - STOP_PROCESSING(SSobj, src) - depleted = TRUE - return - -//Shadekin spawner. Could have them show up on any mission, so it's here. -//Make sure to put them away from others, so they don't get demolished by rude mobs. -/obj/tether_away_spawner/shadekin - name = "Shadekin Spawner" - icon = 'icons/mob/vore_shadekin.dmi' - icon_state = "spawner" - - faction = "shadekin" - prob_spawn = 1 - prob_fall = 1 - //guard = 10 //Don't wander too far, to stay alive. - mobs_to_pick_from = list( - /mob/living/simple_mob/shadekin - ) - -////////////////////////////////////////////////////////////////////////////// -//Overmap ship spawns - -#include "../../offmap_vr/om_ships/hybridshuttle.dm" -#include "../../offmap_vr/om_ships/screebarge.dm" -#include "../../offmap_vr/om_ships/aro.dm" -#include "../../offmap_vr/om_ships/aro2.dm" -#include "../../offmap_vr/om_ships/aro3.dm" -#include "../../offmap_vr/om_ships/bearcat.dm" -#include "../../offmap_vr/om_ships/cruiser.dm" -#include "../../offmap_vr/om_ships/vespa.dm" -#include "../../offmap_vr/om_ships/generic_shuttle.dm" -#include "../../offmap_vr/om_ships/salamander.dm" -#include "../../offmap_vr/om_ships/geckos.dm" -#include "../../offmap_vr/om_ships/mackerels.dm" -#include "../../offmap_vr/om_ships/mercenarybase.dm" -#include "../../offmap_vr/om_ships/mercship.dm" -#include "../../offmap_vr/om_ships/curashuttle.dm" -#include "../../offmap_vr/om_ships/itglight.dm" -#include "../../offmap_vr/om_ships/abductor.dm" - -////////////////////////////////////////////////////////////////////////////// -//Capsule deployed ships -#include "../../offmap_vr/om_ships/shelter_5.dm" -#include "../../offmap_vr/om_ships/shelter_6.dm" - -////////////////////////////////////////////////////////////////////////////// -//Offmap Spawn Locations -#include "../../offmap_vr/talon/talon_v2.dm" -#include "../../offmap_vr/talon/talon_v2_areas.dm" - -#if MAP_TEST -#include "../../offmap_vr/talon/talon_v2.dmm" -#endif - -/datum/map_template/tether_lateload/offmap/talon_v2 - name = "Offmap Ship - Talon V2" - desc = "Offmap spawn ship, the Talon." - mappath = 'maps/offmap_vr/talon/talon_v2.dmm' - associated_map_datum = /datum/map_z_level/tether_lateload/talon_v2 - -/datum/map_z_level/tether_lateload/talon_v2 - name = "Talon" - flags = MAP_LEVEL_PLAYER|MAP_LEVEL_PERSIST|MAP_LEVEL_MAPPABLE - base_turf = /turf/space - z = Z_LEVEL_OFFMAP1 \ No newline at end of file +/datum/map_z_level/tether_lateload/away_aerostat_surface + name = "Away Mission - Aerostat Surface" + z = Z_LEVEL_AEROSTAT_SURFACE + base_turf = /turf/simulated/mineral/floor/ignore_mapgen/virgo2 diff --git a/maps/tether/submaps/tether_centcom.dmm b/maps/tether/submaps/tether_centcom.dmm new file mode 100644 index 0000000000..fd39fa6cc8 --- /dev/null +++ b/maps/tether/submaps/tether_centcom.dmm @@ -0,0 +1,35560 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/turf/unsimulated/wall/planetary/virgo3b, +/area/centcom) +"ab" = ( +/obj/structure/table/rack, +/obj/item/weapon/gun/energy/lasercannon, +/obj/item/weapon/gun/energy/lasercannon, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"ac" = ( +/turf/simulated/wall/r_wall, +/area/shuttle/centcom/ccbay) +"ad" = ( +/obj/structure/table/rack, +/obj/item/weapon/gun/energy/xray, +/obj/item/weapon/gun/energy/xray, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"ae" = ( +/obj/structure/sign/nanotrasen, +/turf/unsimulated/wall, +/area/centcom/specops) +"af" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/weapon/gun/energy/ionrifle/pistol, +/obj/item/weapon/gun/energy/ionrifle/pistol, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"ag" = ( +/obj/structure/table/rack, +/obj/item/weapon/gun/projectile/heavysniper, +/obj/item/weapon/storage/box/sniperammo, +/obj/item/weapon/storage/box/sniperammo, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"ah" = ( +/turf/simulated/wall/r_wall, +/area/centcom/main_hall) +"ai" = ( +/obj/structure/table/rack, +/obj/item/weapon/gun/projectile/automatic/z8, +/obj/item/weapon/gun/projectile/automatic/z8, +/obj/item/ammo_magazine/m762, +/obj/item/ammo_magazine/m762, +/obj/item/ammo_magazine/m762, +/obj/item/ammo_magazine/m762, +/obj/item/ammo_magazine/m762, +/obj/item/ammo_magazine/m762, +/obj/item/ammo_magazine/m762/ap, +/obj/item/ammo_magazine/m762/ap, +/obj/item/ammo_magazine/m762/ap, +/obj/item/ammo_magazine/m762/ap, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"aj" = ( +/turf/simulated/wall/r_wall, +/area/centcom/control) +"ak" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/folder/red, +/turf/simulated/floor/tiled, +/area/centcom/security) +"al" = ( +/turf/unsimulated/wall, +/area/tdome/tdomeadmin) +"am" = ( +/obj/structure/table/rack, +/obj/item/weapon/gun/launcher/rocket, +/obj/item/weapon/gun/launcher/rocket, +/obj/item/ammo_casing/rocket, +/obj/item/ammo_casing/rocket, +/obj/item/ammo_casing/rocket, +/obj/item/ammo_casing/rocket, +/obj/item/ammo_casing/rocket, +/obj/item/ammo_casing/rocket, +/obj/item/ammo_casing/rocket, +/obj/item/ammo_casing/rocket, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"an" = ( +/turf/simulated/floor/tiled, +/area/centcom/holding) +"ao" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/armor/swat, +/obj/item/clothing/suit/armor/swat, +/obj/item/clothing/suit/armor/swat, +/obj/item/clothing/suit/armor/swat, +/obj/item/clothing/suit/armor/swat, +/obj/item/clothing/mask/gas/commando{ + name = "Commando Mask" + }, +/obj/item/clothing/mask/gas/commando{ + name = "Commando Mask" + }, +/obj/item/clothing/mask/gas/commando{ + name = "Commando Mask" + }, +/obj/item/clothing/mask/gas/commando{ + name = "Commando Mask" + }, +/obj/item/clothing/mask/gas/commando{ + name = "Commando Mask" + }, +/obj/item/clothing/head/helmet/space/deathsquad{ + name = "swat helmet" + }, +/obj/item/clothing/head/helmet/space/deathsquad{ + name = "swat helmet" + }, +/obj/item/clothing/head/helmet/space/deathsquad{ + name = "swat helmet" + }, +/obj/item/clothing/head/helmet/space/deathsquad{ + name = "swat helmet" + }, +/obj/item/clothing/head/helmet/space/deathsquad{ + name = "swat helmet" + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"ap" = ( +/obj/structure/sign/science, +/turf/simulated/wall/r_wall, +/area/centcom/control) +"aq" = ( +/obj/structure/sign/department/armory, +/turf/simulated/wall/r_wall, +/area/centcom/control) +"ar" = ( +/obj/structure/sign/nanotrasen, +/turf/simulated/wall/r_wall, +/area/centcom/control) +"as" = ( +/turf/simulated/wall/r_wall, +/area/centcom/security) +"at" = ( +/obj/structure/sign/department/armory, +/turf/simulated/wall/r_wall, +/area/centcom/security) +"au" = ( +/obj/structure/closet/crate/medical, +/obj/item/weapon/storage/mre/menu11, +/obj/item/weapon/storage/mre/menu11, +/obj/item/weapon/storage/mre/menu11, +/obj/item/weapon/storage/mre/menu11, +/obj/item/weapon/storage/mre/menu11, +/obj/item/weapon/storage/mre/menu11, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"av" = ( +/obj/structure/table/rack, +/obj/item/weapon/gun/projectile/automatic/l6_saw, +/obj/item/weapon/gun/projectile/automatic/l6_saw, +/obj/item/ammo_magazine/m545saw, +/obj/item/ammo_magazine/m545saw, +/obj/item/ammo_magazine/m545saw, +/obj/item/ammo_magazine/m545saw, +/obj/item/ammo_magazine/m545saw, +/obj/item/ammo_magazine/m545saw, +/obj/item/ammo_magazine/m545saw/ap, +/obj/item/ammo_magazine/m545saw/ap, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"aw" = ( +/turf/simulated/wall/r_wall, +/area/centcom/medical) +"ax" = ( +/obj/structure/sign/securearea, +/turf/simulated/wall/r_wall, +/area/centcom/control) +"ay" = ( +/obj/structure/sign/nosmoking_2, +/turf/simulated/wall/r_wall, +/area/centcom/control) +"az" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/reagent_containers/glass/beaker/large, +/obj/item/weapon/reagent_containers/glass/beaker/large, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"aA" = ( +/obj/structure/sign/department/eva, +/turf/simulated/wall/r_wall, +/area/centcom/security) +"aB" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table/rack, +/obj/item/weapon/gun/energy/ionrifle, +/obj/item/weapon/gun/energy/ionrifle, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"aC" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/weapon/gun/energy/ionrifle/pistol, +/obj/item/weapon/gun/energy/ionrifle/pistol, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"aD" = ( +/obj/structure/sign/nanotrasen, +/turf/simulated/wall/r_wall, +/area/centcom/main_hall) +"aE" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table/rack, +/obj/item/weapon/gun/energy/netgun, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"aF" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/green/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"aG" = ( +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"aH" = ( +/turf/simulated/wall/r_wall, +/area/centcom) +"aI" = ( +/turf/simulated/wall/r_wall, +/area/centcom/command) +"aJ" = ( +/obj/structure/sign/department/commander, +/turf/simulated/wall/r_wall, +/area/centcom/security) +"aK" = ( +/turf/simulated/wall/r_wall, +/area/centcom/holding) +"aL" = ( +/obj/structure/sign/department/operational, +/turf/simulated/wall/r_wall, +/area/centcom/medical) +"aM" = ( +/turf/simulated/wall/r_wall, +/area/centcom/bathroom) +"aN" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/steel_grid, +/area/centcom/terminal) +"aO" = ( +/obj/structure/table/marble, +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/bar) +"aP" = ( +/obj/structure/sign/nanotrasen, +/turf/simulated/wall/r_wall, +/area/centcom/security) +"aQ" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/item/weapon/storage/briefcase{ + pixel_x = 3; + pixel_y = 5 + }, +/turf/simulated/floor/carpet, +/area/centcom/command) +"aR" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table/rack, +/obj/item/weapon/gun/energy/laser, +/obj/item/weapon/gun/energy/laser, +/obj/item/weapon/gun/energy/laser, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"aS" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/weapon/gun/energy/gun/nuclear, +/obj/item/weapon/gun/energy/gun/nuclear, +/obj/item/weapon/gun/energy/gun/nuclear, +/obj/item/weapon/gun/energy/gun/nuclear, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"aT" = ( +/obj/structure/flora/ausbushes/ywflowers, +/turf/simulated/floor/grass, +/area/centcom/main_hall) +"aU" = ( +/obj/machinery/vending/medical, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"aV" = ( +/obj/structure/table/rack, +/obj/item/weapon/extinguisher/mini, +/obj/item/weapon/extinguisher/mini, +/obj/item/weapon/extinguisher/mini, +/obj/item/weapon/extinguisher/mini, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"aW" = ( +/obj/structure/table/reinforced, +/obj/machinery/computer/skills, +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Residential Security" + }) +"aX" = ( +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"aY" = ( +/obj/structure/sign/department/prison, +/turf/simulated/wall/r_wall, +/area/centcom/security) +"aZ" = ( +/obj/structure/sign/greencross, +/turf/simulated/wall/r_wall, +/area/centcom/medical) +"ba" = ( +/obj/structure/sign/nanotrasen, +/turf/simulated/wall/r_wall, +/area/centcom/command) +"bb" = ( +/obj/structure/table/rack, +/obj/item/weapon/rig/ert/assetprotection, +/obj/item/weapon/rig/ert/assetprotection, +/obj/item/weapon/rig/ert/assetprotection, +/obj/item/weapon/rig/ert/assetprotection, +/obj/item/weapon/rig/ert/assetprotection, +/obj/item/clothing/glasses/thermal, +/obj/item/clothing/glasses/thermal, +/obj/item/clothing/glasses/thermal, +/obj/item/clothing/glasses/thermal, +/obj/item/clothing/glasses/thermal, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"bc" = ( +/obj/structure/table/rack, +/obj/item/weapon/storage/pill_bottle/iron, +/obj/item/weapon/storage/pill_bottle/iron, +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/fitnessflask/glucose, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"bd" = ( +/obj/structure/closet/crate/medical, +/obj/item/stack/nanopaste/advanced, +/obj/item/weapon/tank/anesthetic, +/obj/item/clothing/mask/breath/medical, +/obj/item/clothing/mask/surgical, +/obj/item/clothing/mask/surgical, +/obj/item/stack/nanopaste/advanced, +/obj/item/stack/nanopaste/advanced, +/obj/item/weapon/storage/firstaid/surgery, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"be" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/reagent_containers/hypospray, +/obj/item/weapon/reagent_containers/hypospray, +/obj/item/weapon/reagent_containers/hypospray, +/obj/item/weapon/reagent_containers/hypospray, +/obj/item/weapon/reagent_containers/hypospray, +/obj/item/weapon/reagent_containers/hypospray, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"bf" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/firstaid/clotting, +/obj/item/weapon/storage/firstaid/bonemed, +/obj/item/weapon/storage/pill_bottle/sleevingcure/full, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"bg" = ( +/obj/machinery/chemical_dispenser/ert, +/obj/item/weapon/reagent_containers/glass/beaker/large, +/obj/structure/table/reinforced, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"bh" = ( +/turf/simulated/wall/r_wall, +/area/centcom/living) +"bi" = ( +/obj/structure/table/rack, +/obj/item/device/defib_kit/compact/combat/loaded, +/obj/item/device/defib_kit/compact/combat/loaded, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"bj" = ( +/obj/effect/floor_decal/derelict/d3, +/turf/simulated/floor/tiled, +/area/centcom/terminal) +"bk" = ( +/turf/simulated/wall/r_wall, +/area/centcom/security{ + name = "\improper CentCom Security Arrivals" + }) +"bl" = ( +/turf/simulated/wall/r_wall, +/area/centcom/restaurant) +"bm" = ( +/obj/machinery/status_display/supply_display, +/turf/simulated/wall/r_wall, +/area/centcom) +"bo" = ( +/obj/structure/sign/department/bar, +/turf/simulated/wall/r_wall, +/area/centcom/restaurant) +"bp" = ( +/turf/simulated/wall/r_wall, +/area/centcom/bar) +"bq" = ( +/turf/simulated/wall/r_wall, +/area/centcom/security{ + name = "\improper CentCom Residential Security" + }) +"br" = ( +/obj/structure/sign/warning/docking_area, +/turf/simulated/wall/r_wall, +/area/centcom/terminal) +"bs" = ( +/obj/machinery/chem_master, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"bt" = ( +/obj/machinery/door/blast/regular{ + dir = 4 + }, +/turf/simulated/wall/r_wall, +/area/centcom/terminal) +"bu" = ( +/obj/structure/sign/warning{ + name = "\improper STAND AWAY FROM TRACK EDGE" + }, +/turf/simulated/wall/r_wall, +/area/centcom/terminal) +"bv" = ( +/obj/structure/table/reinforced, +/obj/machinery/chemical_dispenser/biochemistry/full, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"bw" = ( +/turf/simulated/wall/r_wall, +/area/centcom/terminal) +"bx" = ( +/obj/structure/sign/warning/nosmoking_2, +/turf/simulated/wall/r_wall, +/area/centcom/terminal) +"bz" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'HIGH VOLTAGE'"; + icon_state = "shock"; + name = "HIGH VOLTAGE" + }, +/turf/simulated/wall/r_wall, +/area/centcom/terminal) +"bA" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/centcom/control) +"bB" = ( +/obj/machinery/door/airlock/glass_external{ + frequency = 1380; + icon_state = "door_locked"; + id_tag = "supply_shuttle_hatch"; + locked = 1; + name = "Shuttle Hatch" + }, +/turf/simulated/shuttle/floor, +/area/shuttle/supply) +"bE" = ( +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tram" + }, +/obj/structure/closet/walllocker/medical/east, +/turf/simulated/floor/tiled, +/area/shuttle/escape{ + base_turf = /turf/simulated/floor/tiled/techfloor/grid + }) +"bJ" = ( +/obj/structure/table/rack, +/obj/item/weapon/storage/box/pillbottles, +/obj/item/weapon/storage/box/gloves, +/obj/item/weapon/storage/box/beakers, +/obj/item/weapon/storage/box/autoinjectors, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"bK" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OMinus, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"bL" = ( +/obj/structure/table/rack, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_drop_pouches, +/obj/item/clothing/accessory/storage/black_drop_pouches, +/obj/item/clothing/accessory/storage/black_drop_pouches, +/obj/item/clothing/accessory/storage/black_drop_pouches, +/obj/item/clothing/accessory/storage/black_drop_pouches, +/obj/item/clothing/accessory/storage/black_drop_pouches, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"bM" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/firstaid/fire{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/firstaid/fire, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"bP" = ( +/turf/simulated/floor/tiled/eris/dark/cargo, +/area/shuttle/ccboat) +"bQ" = ( +/obj/structure/bed/chair/shuttle, +/turf/simulated/shuttle/floor, +/area/centcom/terminal/shuttlefluff) +"bS" = ( +/obj/machinery/door/blast/regular{ + dir = 4; + name = "When Everything else fails." + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"bT" = ( +/obj/structure/table/rack, +/obj/item/weapon/rig/ert/medical, +/obj/item/weapon/rig/ert/medical, +/obj/item/weapon/rig/ert/medical, +/obj/item/clothing/accessory/storage/white_vest, +/obj/item/clothing/accessory/storage/white_vest, +/obj/item/clothing/accessory/storage/white_vest, +/obj/item/clothing/accessory/storage/white_vest, +/obj/item/clothing/accessory/storage/white_vest, +/obj/item/clothing/accessory/storage/white_vest, +/obj/item/clothing/accessory/storage/white_drop_pouches, +/obj/item/clothing/accessory/storage/white_drop_pouches, +/obj/item/clothing/accessory/storage/white_drop_pouches, +/obj/item/clothing/accessory/storage/white_drop_pouches, +/obj/item/clothing/accessory/storage/white_drop_pouches, +/obj/item/clothing/accessory/storage/white_drop_pouches, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"bV" = ( +/obj/effect/floor_decal/corner/white{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"bW" = ( +/obj/machinery/vending/security, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"bY" = ( +/turf/unsimulated/wall, +/area/centcom/specops) +"bZ" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced, +/obj/item/weapon/storage/box/shotgunammo, +/obj/item/weapon/storage/box/shotgunammo, +/obj/item/weapon/storage/box/shotgunshells, +/obj/item/weapon/storage/box/shotgunshells, +/obj/item/weapon/storage/box/shotgunshells, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"ca" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced, +/obj/item/weapon/gun/projectile/automatic/advanced_smg, +/obj/item/ammo_magazine/m9mmAdvanced, +/obj/item/ammo_magazine/m9mmAdvanced, +/obj/item/ammo_magazine/m9mmAdvanced, +/obj/item/ammo_magazine/m9mmAdvanced, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"cb" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced, +/obj/item/weapon/gun/energy/sniperrifle, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"cc" = ( +/obj/structure/medical_stand, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"cd" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/weapon/gun/energy/gun, +/obj/item/weapon/gun/energy/gun, +/obj/item/weapon/gun/energy/gun, +/obj/item/weapon/gun/energy/gun, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"cf" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/firstaid/regular, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"ck" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark/cargo, +/area/shuttle/ccboat) +"cl" = ( +/obj/structure/bed/chair/shuttle{ + dir = 1 + }, +/obj/effect/floor_decal/emblem/stellardelight{ + dir = 9 + }, +/turf/simulated/shuttle/floor/white, +/area/centcom/terminal/shuttlefluff) +"cm" = ( +/obj/machinery/computer/shuttle_control/emergency{ + dir = 1 + }, +/turf/simulated/shuttle/floor, +/area/centcom/terminal/shuttlefluff) +"cn" = ( +/obj/effect/floor_decal/corner/yellow{ + dir = 5 + }, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"co" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/ammo_magazine/m545/ap, +/obj/item/ammo_magazine/m545/ap, +/obj/item/ammo_magazine/m545, +/obj/item/ammo_magazine/m545, +/obj/item/ammo_magazine/m545, +/obj/item/ammo_magazine/m545, +/obj/item/ammo_magazine/m545, +/obj/item/ammo_magazine/m545, +/obj/item/weapon/gun/projectile/automatic/sts35, +/obj/item/weapon/gun/projectile/automatic/sts35, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"cu" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/ammo_magazine/m545/ap, +/obj/item/ammo_magazine/m545/ap, +/obj/item/ammo_magazine/m545, +/obj/item/ammo_magazine/m545, +/obj/item/ammo_magazine/m545, +/obj/item/ammo_magazine/m545, +/obj/item/ammo_magazine/m545, +/obj/item/ammo_magazine/m545, +/obj/item/weapon/gun/projectile/automatic/sts35, +/obj/item/weapon/gun/projectile/automatic/sts35, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"cv" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/smes_coil, +/obj/item/weapon/smes_coil, +/obj/item/device/t_scanner/advanced, +/obj/item/device/t_scanner/advanced, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"cD" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/weapon/gun/energy/taser, +/obj/item/weapon/gun/energy/taser, +/obj/item/weapon/gun/energy/taser, +/obj/item/weapon/gun/energy/taser, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"cE" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/box/survival/comp{ + starts_with = list(/obj/item/weapon/tool/prybar/red,/obj/item/clothing/glasses/goggles,/obj/item/weapon/reagent_containers/hypospray/autoinjector,/obj/item/stack/medical/bruise_pack,/obj/item/device/flashlight/glowstick,/obj/item/weapon/reagent_containers/food/snacks/candy/proteinbar,/obj/item/clothing/mask/breath,/obj/item/weapon/tank/emergency/oxygen/engi) + }, +/obj/item/weapon/storage/box/survival/comp{ + starts_with = list(/obj/item/weapon/tool/prybar/red,/obj/item/clothing/glasses/goggles,/obj/item/weapon/reagent_containers/hypospray/autoinjector,/obj/item/stack/medical/bruise_pack,/obj/item/device/flashlight/glowstick,/obj/item/weapon/reagent_containers/food/snacks/candy/proteinbar,/obj/item/clothing/mask/breath,/obj/item/weapon/tank/emergency/oxygen/engi) + }, +/obj/item/weapon/storage/box/survival/comp{ + starts_with = list(/obj/item/weapon/tool/prybar/red,/obj/item/clothing/glasses/goggles,/obj/item/weapon/reagent_containers/hypospray/autoinjector,/obj/item/stack/medical/bruise_pack,/obj/item/device/flashlight/glowstick,/obj/item/weapon/reagent_containers/food/snacks/candy/proteinbar,/obj/item/clothing/mask/breath,/obj/item/weapon/tank/emergency/oxygen/engi) + }, +/obj/item/weapon/storage/box/survival/comp{ + starts_with = list(/obj/item/weapon/tool/prybar/red,/obj/item/clothing/glasses/goggles,/obj/item/weapon/reagent_containers/hypospray/autoinjector,/obj/item/stack/medical/bruise_pack,/obj/item/device/flashlight/glowstick,/obj/item/weapon/reagent_containers/food/snacks/candy/proteinbar,/obj/item/clothing/mask/breath,/obj/item/weapon/tank/emergency/oxygen/engi) + }, +/obj/item/weapon/storage/box/survival/comp{ + starts_with = list(/obj/item/weapon/tool/prybar/red,/obj/item/clothing/glasses/goggles,/obj/item/weapon/reagent_containers/hypospray/autoinjector,/obj/item/stack/medical/bruise_pack,/obj/item/device/flashlight/glowstick,/obj/item/weapon/reagent_containers/food/snacks/candy/proteinbar,/obj/item/clothing/mask/breath,/obj/item/weapon/tank/emergency/oxygen/engi) + }, +/obj/item/weapon/storage/box/survival/comp{ + starts_with = list(/obj/item/weapon/tool/prybar/red,/obj/item/clothing/glasses/goggles,/obj/item/weapon/reagent_containers/hypospray/autoinjector,/obj/item/stack/medical/bruise_pack,/obj/item/device/flashlight/glowstick,/obj/item/weapon/reagent_containers/food/snacks/candy/proteinbar,/obj/item/clothing/mask/breath,/obj/item/weapon/tank/emergency/oxygen/engi) + }, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"cF" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/glasses/hud/health{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/clothing/glasses/hud/health{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/obj/item/clothing/glasses/hud/health, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"cH" = ( +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tram" + }, +/obj/structure/closet/walllocker/medical/west, +/turf/simulated/floor/tiled, +/area/shuttle/escape{ + base_turf = /turf/simulated/floor/tiled/techfloor/grid + }) +"cI" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "TelelockdownC"; + name = "Security Doors"; + opacity = 0 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/living) +"cJ" = ( +/obj/machinery/computer/security{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/effect/floor_decal/borderfloorblack{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"cK" = ( +/obj/structure/morgue{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/medical) +"cL" = ( +/obj/structure/table/reinforced, +/obj/item/device/healthanalyzer/advanced, +/obj/item/device/healthanalyzer/advanced, +/obj/item/device/healthanalyzer/advanced, +/obj/item/device/healthanalyzer/advanced, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"cO" = ( +/obj/structure/table/rack, +/obj/item/weapon/shield/energy, +/obj/item/weapon/shield/energy, +/obj/item/weapon/shield/energy, +/obj/item/weapon/shield/energy, +/obj/item/weapon/shield/energy, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/weapon/melee/energy/sword/blue, +/obj/item/weapon/melee/energy/sword/blue, +/obj/item/weapon/melee/energy/sword/blue, +/obj/item/weapon/melee/energy/sword/blue, +/obj/item/weapon/melee/energy/sword/blue, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"cR" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/firstaid/toxin{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/firstaid/toxin, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"cT" = ( +/obj/effect/floor_decal/industrial/outline, +/turf/simulated/floor/tiled, +/area/centcom/living) +"cX" = ( +/obj/structure/bed/chair/bay/shuttle{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_x = -32; + pixel_y = 24 + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/shuttle/ccboat) +"cY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/turf/simulated/wall/rshull, +/area/shuttle/ccboat) +"cZ" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/weapon/gun/energy/stunrevolver, +/obj/item/weapon/gun/energy/stunrevolver, +/obj/item/weapon/gun/energy/stunrevolver, +/obj/item/weapon/gun/energy/stunrevolver, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"da" = ( +/obj/structure/table/rack, +/obj/item/weapon/storage/box/flashbangs, +/obj/item/weapon/storage/box/flashbangs, +/obj/item/weapon/storage/box/emps{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/weapon/storage/box/smokes, +/obj/item/weapon/storage/box/smokes, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"db" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/box/handcuffs{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/storage/box/handcuffs, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"dc" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/material/knife/tacknife/combatknife, +/obj/item/weapon/material/knife/tacknife/combatknife, +/obj/item/weapon/material/knife/tacknife/combatknife, +/obj/item/weapon/material/knife/tacknife/combatknife, +/obj/item/weapon/material/knife/tacknife/combatknife, +/obj/item/weapon/material/knife/tacknife/combatknife, +/obj/item/weapon/melee/baton/loaded, +/obj/item/weapon/melee/baton/loaded, +/obj/item/weapon/melee/baton/loaded, +/obj/item/weapon/melee/baton/loaded, +/obj/item/weapon/melee/baton/loaded, +/obj/item/weapon/melee/baton/loaded, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"dd" = ( +/obj/structure/table/reinforced, +/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/item/weapon/cell/device/weapon, +/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/item/weapon/cell/device/weapon, +/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/item/weapon/cell/device/weapon, +/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/item/weapon/cell/device/weapon, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"df" = ( +/obj/machinery/atmospherics/unary/engine{ + dir = 1 + }, +/turf/simulated/floor/airless, +/area/shuttle/ccboat) +"dh" = ( +/turf/simulated/floor/tiled/white, +/area/centcom/bar) +"di" = ( +/obj/structure/table/rack, +/obj/item/rig_module/device/rcd, +/obj/item/rig_module/device/rcd, +/obj/item/rig_module/device/plasmacutter, +/obj/item/rig_module/device/plasmacutter, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"dj" = ( +/obj/structure/shuttle/engine/heater{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/centcom) +"dk" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/shuttle/engine/heater, +/obj/structure/kitchenspike{ + desc = "Lifts engines! You could probably also impale people and monkeys on it... but why would you do that, weirdo?"; + name = "engine lift" + }, +/turf/simulated/floor/tiled/steel, +/area/centcom) +"dl" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/belt/security/tactical, +/obj/item/weapon/storage/belt/security/tactical, +/obj/item/weapon/storage/belt/security/tactical, +/obj/item/weapon/storage/belt/security/tactical, +/obj/item/weapon/storage/belt/security/tactical, +/obj/item/weapon/storage/belt/security/tactical, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"dm" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + dir = 8; + frequency = 1380; + id_tag = "cc_landing_pad"; + name = "docking port controller"; + pixel_x = 24; + req_one_access = list(13) + }, +/turf/simulated/floor/tiled, +/area/shuttle/centcom/ccbay) +"dn" = ( +/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{ + pixel_x = 2; + pixel_y = 6 + }, +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/yellow/diagonal, +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/centcom/control) +"dr" = ( +/obj/structure/table/rack, +/obj/item/weapon/gun/energy/gun/burst, +/obj/item/weapon/gun/energy/gun/burst, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"ds" = ( +/obj/structure/table/rack, +/obj/item/bodybag/cryobag, +/obj/item/bodybag/cryobag, +/obj/item/bodybag/cryobag, +/obj/item/bodybag/cryobag, +/obj/item/bodybag/cryobag, +/obj/item/bodybag/cryobag, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"du" = ( +/obj/structure/table/rack, +/obj/item/weapon/plastique, +/obj/item/weapon/plastique, +/obj/item/weapon/plastique, +/obj/item/weapon/plastique, +/obj/item/weapon/plastique, +/obj/item/weapon/plastique, +/obj/item/weapon/plastique, +/obj/item/weapon/plastique, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"dv" = ( +/obj/structure/table/rack, +/obj/item/weapon/gun/energy/gun/martin, +/obj/item/weapon/gun/energy/gun/martin, +/obj/item/device/flash, +/obj/item/device/flash, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"dw" = ( +/obj/structure/table/rack, +/obj/item/weapon/gun/launcher/grenade, +/obj/item/weapon/gun/launcher/grenade, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"dx" = ( +/obj/structure/table/rack, +/obj/item/weapon/storage/box/frags, +/obj/item/weapon/storage/box/frags, +/obj/item/weapon/storage/box/teargas, +/obj/item/weapon/storage/box/teargas, +/obj/item/weapon/storage/box/empslite, +/obj/item/weapon/storage/box/empslite, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"dy" = ( +/obj/structure/table/rack, +/obj/item/weapon/gun/energy/pulse_rifle, +/obj/item/weapon/gun/energy/pulse_rifle, +/obj/item/weapon/gun/energy/pulse_rifle, +/obj/item/weapon/gun/energy/pulse_rifle, +/obj/item/weapon/gun/energy/pulse_rifle, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"dz" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/firstaid/combat{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/firstaid/combat, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"dA" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/box/bodybags{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/box/bodybags, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"dB" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/belt/medical/emt, +/obj/item/weapon/storage/belt/medical/emt, +/obj/item/weapon/storage/belt/medical/emt, +/obj/item/weapon/storage/belt/medical/emt, +/obj/item/weapon/storage/belt/medical/emt, +/obj/item/weapon/storage/belt/medical/emt, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"dC" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced, +/obj/item/weapon/gun/projectile/shotgun/pump/combat, +/obj/item/weapon/gun/projectile/shotgun/pump/combat, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"dD" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced, +/obj/item/weapon/gun/projectile/revolver/detective45, +/obj/item/weapon/gun/projectile/revolver/detective45, +/obj/item/ammo_magazine/s45, +/obj/item/ammo_magazine/s45, +/obj/item/ammo_magazine/s45, +/obj/item/ammo_magazine/s45, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"dG" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad2" + }, +/turf/simulated/shuttle/floor, +/area/shuttle/supply) +"dM" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/control) +"dN" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/weapon/gun/projectile/p92x, +/obj/item/weapon/gun/projectile/p92x, +/obj/item/weapon/gun/projectile/p92x, +/obj/item/weapon/gun/projectile/p92x, +/obj/item/ammo_magazine/m9mm/large/preban, +/obj/item/ammo_magazine/m9mm/large/preban, +/obj/item/ammo_magazine/m9mm/large/preban, +/obj/item/ammo_magazine/m9mm/large/preban, +/obj/item/ammo_magazine/m9mm/large/preban, +/obj/item/ammo_magazine/m9mm/large/preban, +/obj/item/ammo_magazine/m9mm/large/preban, +/obj/item/ammo_magazine/m9mm/large/preban, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"dU" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/firstaid/o2{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/firstaid/o2, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"dV" = ( +/obj/structure/table/rack, +/obj/item/rig_module/mounted, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_vest, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"dW" = ( +/obj/machinery/vending/snack{ + name = "hacked Getmore Chocolate Corp"; + prices = list() + }, +/turf/simulated/floor/wood, +/area/centcom/specops) +"dY" = ( +/obj/structure/sign/painting/public{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"dZ" = ( +/turf/simulated/floor/tiled, +/area/centcom/specops) +"ea" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/floor/wood, +/area/centcom/specops) +"eb" = ( +/obj/machinery/portable_atmospherics/powered/scrubber, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/control) +"ec" = ( +/obj/machinery/shieldwallgen, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/control) +"ef" = ( +/obj/structure/bed/chair, +/obj/item/weapon/handcuffs, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/control) +"eh" = ( +/obj/effect/floor_decal/corner/yellow/diagonal, +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/obj/structure/flora/pottedplant{ + icon_state = "plant-06" + }, +/turf/simulated/floor/tiled, +/area/centcom/control) +"ej" = ( +/obj/structure/table/reinforced, +/obj/item/device/megaphone, +/obj/item/weapon/storage/box/trackimp, +/obj/item/weapon/storage/box/cdeathalarm_kit, +/turf/simulated/floor/wood, +/area/centcom/specops) +"ek" = ( +/obj/structure/table/rack, +/obj/item/taperoll/police, +/obj/item/taperoll/police, +/obj/item/taperoll/police, +/obj/item/taperoll/police, +/obj/item/taperoll/police, +/obj/item/taperoll/police, +/obj/item/device/flash, +/obj/item/device/flash, +/obj/item/device/flash, +/obj/item/device/flash, +/obj/item/device/flash, +/obj/item/device/flash, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"el" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/armor/vest/ert/command, +/obj/item/clothing/head/helmet/ert/command, +/obj/item/weapon/storage/backpack/ert/commander, +/turf/simulated/floor/wood, +/area/centcom/specops) +"em" = ( +/turf/simulated/floor/tiled, +/area/centcom/control) +"en" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/secure/briefcase/nsfw_pack_hybrid, +/turf/simulated/floor/wood, +/area/centcom/specops) +"ep" = ( +/obj/structure/sign/redcross{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"er" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-22" + }, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"et" = ( +/obj/machinery/door/airlock/glass_external{ + frequency = 1380; + icon_state = "door_locked"; + id_tag = "supply_shuttle_hatch"; + locked = 1; + name = "Shuttle Hatch" + }, +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad" + }, +/turf/simulated/shuttle/plating, +/area/shuttle/supply) +"ev" = ( +/obj/machinery/vending/nifsoft_shop{ + categories = 111; + emagged = 1; + name = "Hacked NIFSoft Shop" + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"ew" = ( +/obj/machinery/atm{ + pixel_y = 26 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"ex" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/firstaid/adv{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/firstaid/adv, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"ey" = ( +/obj/structure/shuttle/engine/heater, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/shuttle/plating/airless, +/area/centcom/terminal/shuttlefluff) +"eB" = ( +/obj/structure/sign/securearea{ + name = "\improper ARMORY"; + pixel_y = 32 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"eD" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor, +/area/centcom/specops) +"eE" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/armor/vest/ert/medical, +/obj/item/clothing/suit/armor/vest/ert/medical, +/obj/item/clothing/suit/armor/vest/ert/medical, +/obj/item/clothing/suit/armor/vest/ert/medical, +/obj/item/clothing/head/helmet/ert/medical, +/obj/item/clothing/head/helmet/ert/medical, +/obj/item/clothing/head/helmet/ert/medical, +/obj/item/clothing/head/helmet/ert/medical, +/obj/item/weapon/storage/backpack/ert/medical, +/obj/item/weapon/storage/backpack/ert/medical, +/obj/item/weapon/storage/backpack/ert/medical, +/obj/item/weapon/storage/backpack/ert/medical, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"eH" = ( +/obj/machinery/door/airlock/centcom{ + name = "General Access"; + req_access = list(101) + }, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"eI" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"eK" = ( +/obj/machinery/light, +/obj/structure/bed/chair/shuttle{ + dir = 8 + }, +/turf/simulated/shuttle/floor/white, +/area/centcom/terminal/shuttlefluff) +"eP" = ( +/obj/machinery/gibber, +/turf/simulated/floor/tiled{ + icon_state = "white" + }, +/area/tdome/tdomeobserve) +"eQ" = ( +/obj/machinery/vending/cigarette, +/turf/unsimulated/floor/steel, +/area/tdome/tdomeobserve) +"eR" = ( +/obj/structure/table/reinforced, +/obj/item/device/aicard, +/obj/item/weapon/pinpointer/advpinpointer, +/obj/item/weapon/stamp/centcomm, +/turf/simulated/floor/wood, +/area/centcom/specops) +"eS" = ( +/obj/machinery/door/airlock/centcom{ + name = "Commander"; + req_access = list(103) + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"eT" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/accessory/holster/hip, +/obj/item/ammo_magazine/m44, +/obj/item/ammo_magazine/m44, +/obj/item/weapon/gun/projectile/deagle, +/turf/simulated/floor/wood, +/area/centcom/specops) +"eU" = ( +/obj/structure/sign/securearea{ + name = "ENGINEERING ACCESS"; + pixel_y = -32 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"eV" = ( +/obj/structure/table/reinforced, +/obj/item/device/pda/ert, +/obj/item/device/perfect_tele, +/obj/item/weapon/hand_tele, +/turf/simulated/floor/wood, +/area/centcom/specops) +"eX" = ( +/turf/simulated/floor/maglev, +/area/centcom/terminal) +"eY" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorblack/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Residential Security" + }) +"eZ" = ( +/obj/item/weapon/stool/padded, +/obj/effect/floor_decal/corner/yellow/diagonal, +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/centcom/control) +"fc" = ( +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tram" + }, +/obj/structure/table/standard, +/turf/simulated/floor/tiled, +/area/shuttle/escape{ + base_turf = /turf/simulated/floor/tiled/techfloor/grid + }) +"fg" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/reinforced, +/area/centcom) +"fj" = ( +/obj/structure/table/reinforced, +/obj/item/device/pda/ert, +/obj/item/device/pda/ert, +/obj/item/device/pda/ert, +/obj/item/device/pda/ert, +/obj/item/device/pda/ert, +/obj/item/device/pda/ert, +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"fk" = ( +/obj/effect/floor_decal/rust/steel_decals_rusted2, +/obj/effect/floor_decal/industrial/warning/dust, +/turf/simulated/floor/tiled, +/area/centcom/terminal) +"fl" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/box/flashshells, +/obj/item/weapon/storage/box/flashshells, +/obj/item/weapon/storage/box/stunshells, +/obj/item/weapon/storage/box/stunshells, +/obj/item/weapon/storage/box/beanbags, +/obj/item/weapon/storage/box/beanbags, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"fo" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/glasses/sunglasses/sechud/tactical, +/obj/item/clothing/glasses/sunglasses/sechud/tactical, +/obj/item/clothing/glasses/sunglasses/sechud/tactical, +/obj/item/clothing/glasses/sunglasses/sechud/tactical, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"fr" = ( +/obj/machinery/telecomms/allinone/ert, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"fs" = ( +/obj/structure/table/reinforced, +/obj/item/device/megaphone, +/obj/item/device/megaphone, +/obj/item/device/megaphone, +/obj/item/device/megaphone, +/obj/item/device/megaphone, +/obj/item/device/megaphone, +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"fz" = ( +/obj/machinery/door/airlock/centcom{ + name = "General Access"; + req_access = list(101) + }, +/turf/unsimulated/floor/steel, +/area/tdome/tdomeadmin) +"fA" = ( +/turf/unsimulated/floor/steel, +/area/tdome/tdomeadmin) +"fC" = ( +/obj/machinery/door/airlock/centcom{ + name = "Living Quarters"; + req_access = list(105) + }, +/turf/simulated/floor/carpet, +/area/centcom/control) +"fD" = ( +/obj/item/clothing/accessory/holster/waist, +/obj/item/clothing/accessory/holster/waist, +/obj/item/clothing/accessory/holster/waist, +/obj/item/clothing/accessory/holster/waist, +/obj/item/clothing/accessory/holster/waist, +/obj/item/clothing/accessory/holster/waist, +/obj/structure/table/reinforced, +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"fE" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + frequency = 1380; + id_tag = null + }, +/obj/effect/map_helper/airlock/atmos/pump_out_external, +/turf/simulated/floor/plating, +/area/shuttle/ccboat) +"fF" = ( +/obj/structure/bed/chair, +/obj/effect/landmark{ + name = "tdomeobserve" + }, +/turf/unsimulated/floor/steel, +/area/tdome/tdomeobserve) +"fG" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/dark/cargo, +/area/shuttle/ccboat) +"fH" = ( +/obj/structure/table/rack, +/obj/item/clothing/glasses/night, +/obj/item/clothing/glasses/night, +/obj/item/clothing/glasses/night, +/obj/item/clothing/glasses/night, +/obj/item/clothing/glasses/night, +/obj/item/clothing/glasses/night, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"fI" = ( +/obj/item/clothing/accessory/holster/hip, +/obj/item/clothing/accessory/holster/hip, +/obj/item/clothing/accessory/holster/hip, +/obj/item/clothing/accessory/holster/hip, +/obj/item/clothing/accessory/holster/hip, +/obj/item/clothing/accessory/holster/hip, +/obj/structure/table/reinforced, +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"fJ" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/box/flashbangs, +/obj/item/weapon/handcuffs, +/obj/item/device/flash, +/obj/item/weapon/melee/baton/loaded, +/obj/item/weapon/storage/belt/security/tactical, +/obj/item/weapon/gun/energy/stunrevolver, +/obj/item/clothing/glasses/sunglasses/sechud/tactical, +/obj/item/weapon/material/knife/tacknife/combatknife, +/turf/simulated/floor/wood, +/area/centcom/specops) +"fL" = ( +/obj/structure/table/rack, +/obj/item/weapon/rig/ert, +/obj/item/clothing/accessory/storage/black_vest, +/turf/simulated/floor/wood, +/area/centcom/specops) +"fM" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/gun/energy/gun/nuclear, +/turf/simulated/floor/wood, +/area/centcom/specops) +"fP" = ( +/obj/machinery/porta_turret/crescent{ + density = 1 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"fR" = ( +/obj/structure/table/rack, +/obj/item/weapon/storage/secure/briefcase/nsfw_pack_hybrid_combat, +/obj/item/weapon/storage/secure/briefcase/nsfw_pack_hybrid_combat, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"fS" = ( +/obj/machinery/vending/engivend, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"fT" = ( +/obj/item/weapon/circuitboard/aiupload, +/obj/item/weapon/circuitboard/borgupload, +/obj/item/weapon/circuitboard/smes, +/obj/item/weapon/aiModule/nanotrasen, +/obj/item/weapon/aiModule/reset, +/obj/item/weapon/aiModule/freeformcore, +/obj/item/weapon/aiModule/protectStation, +/obj/item/weapon/aiModule/quarantine, +/obj/item/weapon/aiModule/paladin, +/obj/item/weapon/aiModule/robocop, +/obj/item/weapon/aiModule/safeguard, +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"fW" = ( +/obj/structure/bed/chair/shuttle{ + dir = 4 + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_red" + }, +/area/centcom/terminal/shuttlefluff) +"fX" = ( +/obj/item/clothing/glasses/welding/superior, +/obj/item/clothing/glasses/welding/superior, +/obj/item/clothing/glasses/welding/superior, +/obj/item/clothing/glasses/welding/superior, +/obj/item/clothing/glasses/welding/superior, +/obj/structure/table/steel_reinforced, +/obj/item/clothing/glasses/welding/superior, +/obj/item/weapon/grenade/chem_grenade/metalfoam, +/obj/item/weapon/grenade/chem_grenade/metalfoam, +/obj/item/weapon/grenade/chem_grenade/metalfoam, +/obj/item/weapon/grenade/chem_grenade/metalfoam, +/obj/item/weapon/grenade/chem_grenade/metalfoam, +/obj/item/weapon/grenade/chem_grenade/metalfoam, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"fY" = ( +/obj/structure/table/glass, +/obj/item/roller/adv, +/obj/item/roller/adv{ + pixel_y = 6 + }, +/obj/item/roller/adv{ + pixel_y = 12 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"fZ" = ( +/obj/structure/table/steel_reinforced, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"ga" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/box/syringes{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/box/syringes, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"gb" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/accessory/storage/black_drop_pouches, +/obj/item/clothing/accessory/storage/black_drop_pouches, +/obj/item/clothing/accessory/storage/black_drop_pouches, +/obj/item/clothing/accessory/storage/black_drop_pouches, +/obj/item/clothing/accessory/storage/black_drop_pouches, +/obj/item/clothing/accessory/storage/black_drop_pouches, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"gc" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/armor/vest/ert/security, +/obj/item/clothing/suit/armor/vest/ert/security, +/obj/item/clothing/suit/armor/vest/ert/security, +/obj/item/clothing/suit/armor/vest/ert/security, +/obj/item/clothing/head/helmet/ert/security, +/obj/item/clothing/head/helmet/ert/security, +/obj/item/clothing/head/helmet/ert/security, +/obj/item/clothing/head/helmet/ert/security, +/obj/item/weapon/storage/backpack/ert/security, +/obj/item/weapon/storage/backpack/ert/security, +/obj/item/weapon/storage/backpack/ert/security, +/obj/item/weapon/storage/backpack/ert/security, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"gd" = ( +/obj/structure/table/rack, +/obj/item/weapon/rig/ert/security, +/obj/item/weapon/rig/ert/security, +/obj/item/weapon/rig/ert/security, +/obj/item/weapon/rig/ert/security, +/obj/item/weapon/rig/ert/security, +/obj/item/weapon/rig/ert/security, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"ge" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/stamp/centcomm, +/obj/item/weapon/pen, +/obj/item/weapon/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/clothing/glasses/graviton, +/obj/item/clothing/glasses/graviton, +/obj/item/clothing/glasses/graviton, +/obj/item/clothing/glasses/graviton, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"gf" = ( +/obj/item/clothing/accessory/holster/armpit, +/obj/item/clothing/accessory/holster/armpit, +/obj/item/clothing/accessory/holster/armpit, +/obj/item/clothing/accessory/holster/armpit, +/obj/item/clothing/accessory/holster/armpit, +/obj/item/clothing/accessory/holster/armpit, +/obj/structure/table/reinforced, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"gg" = ( +/obj/machinery/vending/cigarette{ + name = "hacked cigarette machine"; + prices = list(); + products = list(/obj/item/weapon/storage/fancy/cigarettes = 10, /obj/item/weapon/storage/box/matches = 10, /obj/item/weapon/flame/lighter/zippo = 4, /obj/item/clothing/mask/smokable/cigarette/cigar/havana = 2) + }, +/turf/simulated/floor/wood, +/area/centcom/specops) +"gh" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + frequency = 1380; + id_tag = null + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/effect/shuttle_landmark/shuttle_initializer/ccboat, +/obj/effect/overmap/visitable/ship/landable/ccboat, +/turf/simulated/floor/airless, +/area/shuttle/ccboat) +"gj" = ( +/obj/machinery/vending/cola{ + name = "hacked Robust Softdrinks"; + prices = list() + }, +/turf/simulated/floor/wood, +/area/centcom/specops) +"gl" = ( +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/blue/border, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloorblack/corner2, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Residential Security" + }) +"gm" = ( +/obj/structure/shuttle/engine/propulsion, +/turf/simulated/shuttle/plating/carry, +/area/centcom/terminal/shuttlefluff) +"gn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/turf/simulated/wall/rshull, +/area/shuttle/ccboat) +"go" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1 + }, +/turf/simulated/wall/rshull, +/area/shuttle/ccboat) +"gp" = ( +/obj/machinery/door/blast/regular{ + id = "thunderdome"; + name = "Thunderdome Blast Door" + }, +/turf/unsimulated/floor/techfloor_grid, +/area/tdome/tdome1) +"gw" = ( +/obj/machinery/vending/assist, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"gy" = ( +/obj/structure/table/steel_reinforced, +/obj/item/clothing/gloves/yellow, +/obj/item/clothing/gloves/yellow, +/obj/item/clothing/gloves/yellow, +/obj/item/clothing/gloves/yellow, +/obj/item/clothing/gloves/yellow, +/obj/item/clothing/gloves/yellow, +/obj/item/weapon/storage/belt/utility/full, +/obj/item/weapon/storage/belt/utility/full, +/obj/item/weapon/storage/belt/utility/full, +/obj/item/weapon/storage/belt/utility/full, +/obj/item/weapon/storage/belt/utility/full, +/obj/item/weapon/storage/belt/utility/full, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"gz" = ( +/obj/structure/table/steel_reinforced, +/obj/item/clothing/glasses/meson, +/obj/item/clothing/glasses/meson, +/obj/item/clothing/glasses/meson, +/obj/item/clothing/glasses/meson, +/obj/item/clothing/glasses/meson, +/obj/item/clothing/glasses/meson, +/obj/item/taperoll/engineering, +/obj/item/taperoll/engineering, +/obj/item/taperoll/engineering, +/obj/item/taperoll/engineering, +/obj/item/taperoll/engineering, +/obj/item/taperoll/engineering, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"gA" = ( +/obj/item/stack/material/glass{ + amount = 50 + }, +/obj/item/stack/material/glass{ + amount = 50 + }, +/obj/item/stack/material/glass{ + amount = 50 + }, +/obj/item/stack/material/glass{ + amount = 50 + }, +/obj/item/stack/material/steel{ + amount = 50; + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/stack/material/steel{ + amount = 50; + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/stack/material/steel{ + amount = 50; + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/stack/material/steel{ + amount = 50; + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/stack/material/plasteel{ + amount = 50 + }, +/obj/item/stack/material/plasteel{ + amount = 50 + }, +/obj/item/stack/material/plasteel{ + amount = 50 + }, +/obj/item/stack/material/plasteel{ + amount = 50 + }, +/obj/item/stack/material/glass/reinforced{ + amount = 50 + }, +/obj/item/stack/material/glass/reinforced{ + amount = 50 + }, +/obj/item/stack/material/glass/reinforced{ + amount = 50 + }, +/obj/item/weapon/storage/briefcase/inflatable{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/storage/briefcase/inflatable{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/storage/briefcase/inflatable{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/storage/briefcase/inflatable{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/structure/table/steel_reinforced, +/obj/item/stack/rods, +/obj/item/stack/rods, +/obj/item/stack/material/glass/phoronglass, +/obj/item/stack/material/glass/phoronglass, +/obj/item/stack/rods, +/obj/item/stack/rods, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"gB" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor, +/area/centcom/holding) +"gC" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/book/manual/security_space_law, +/obj/item/device/taperecorder, +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Residential Security" + }) +"gN" = ( +/obj/machinery/airlock_sensor{ + dir = 8; + frequency = 1380; + id_tag = null; + pixel_x = 24 + }, +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1; + frequency = 1380; + id_tag = null + }, +/obj/effect/map_helper/airlock/atmos/pump_out_internal, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/airless, +/area/shuttle/ccboat) +"gP" = ( +/obj/structure/table/rack, +/obj/item/clothing/under/color/green, +/obj/item/clothing/shoes/brown, +/obj/item/clothing/suit/armor/tdome/green, +/obj/item/clothing/head/helmet/thunderdome, +/obj/item/weapon/melee/baton/loaded, +/obj/item/weapon/melee/energy/sword/green, +/turf/unsimulated/floor/techfloor_grid, +/area/tdome/tdome1) +"gR" = ( +/obj/machinery/autolathe{ + desc = "Your typical Autolathe. It appears to have much more options than your regular one, however..."; + hacked = 1; + name = "Unlocked Autolathe" + }, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"gS" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/item/weapon/storage/box/traumainjectors, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"gV" = ( +/obj/item/device/radio/intercom{ + broadcasting = 1; + dir = 1; + frequency = 1443; + listening = 0; + name = "Spec Ops Intercom"; + pixel_y = 28 + }, +/obj/item/modular_computer/console/preset/command{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/centcom/control) +"gX" = ( +/obj/machinery/computer/teleporter, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"gY" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 1 + }, +/obj/machinery/turretid/stun{ + check_access = 0; + check_anomalies = 0; + check_records = 0; + control_area = "\improper CentCom Security"; + pixel_y = 32; + req_access = list(101); + req_one_access = list(101) + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"gZ" = ( +/obj/machinery/teleport/station, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"ha" = ( +/obj/machinery/teleport/hub, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"hb" = ( +/obj/machinery/vending/engineering, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"he" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"hf" = ( +/obj/machinery/portable_atmospherics/canister/air, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"hl" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/item/weapon/cell/hyper, +/obj/item/weapon/cell/hyper, +/obj/item/weapon/cell/hyper, +/obj/item/weapon/cell/hyper, +/obj/item/weapon/cell/hyper, +/obj/item/weapon/cell/hyper, +/obj/item/weapon/cell/hyper, +/obj/item/weapon/cell/hyper, +/obj/item/weapon/cell/hyper, +/obj/item/weapon/cell/hyper, +/obj/item/weapon/cell/hyper, +/obj/item/weapon/cell/hyper, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"hn" = ( +/obj/item/modular_computer/console/preset/command{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/centcom/control) +"ho" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/dark/cargo, +/area/shuttle/ccboat) +"hp" = ( +/obj/machinery/door/blast/regular{ + id = "ArmouryC5"; + name = "Armoury" + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/control) +"hq" = ( +/obj/structure/table/rack, +/obj/item/weapon/gun/energy/gun/martin, +/obj/item/weapon/gun/energy/gun/martin, +/obj/item/device/flash, +/obj/item/device/flash, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/control) +"hr" = ( +/obj/effect/floor_decal/corner/red{ + dir = 10 + }, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"hs" = ( +/turf/simulated/floor/wood, +/area/centcom/specops) +"ht" = ( +/obj/machinery/porta_turret/crescent{ + density = 1 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark, +/area/centcom/control) +"hu" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "reinforced"; + name = "reinforced floor" + }, +/area/centcom) +"hv" = ( +/obj/machinery/light/flamp/noshade, +/turf/simulated/floor/tiled, +/area/centcom/terminal) +"hx" = ( +/obj/structure/table/rack, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"hz" = ( +/obj/machinery/door/airlock/centcom{ + name = "Teleporter"; + req_access = list(103) + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"hA" = ( +/obj/machinery/vending/tool, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"hC" = ( +/obj/machinery/pipedispenser/orderable, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"hD" = ( +/obj/machinery/portable_atmospherics/powered/pump/filled, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"hE" = ( +/obj/item/weapon/stool/padded, +/turf/simulated/floor/wood, +/area/centcom/specops) +"hF" = ( +/obj/structure/table/rack, +/obj/item/rig_module/chem_dispenser/combat, +/obj/item/rig_module/chem_dispenser/combat, +/obj/item/rig_module/chem_dispenser/injector, +/obj/item/rig_module/chem_dispenser/injector, +/obj/item/rig_module/device/healthscanner, +/obj/item/rig_module/device/healthscanner, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"hG" = ( +/obj/structure/table/rack, +/obj/item/rig_module/device/drill, +/obj/item/rig_module/device/drill, +/obj/item/rig_module/maneuvering_jets, +/obj/item/rig_module/maneuvering_jets, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"hH" = ( +/obj/item/device/perfect_tele_beacon/stationary{ + tele_name = "CentCom"; + tele_network = "centcom" + }, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"hI" = ( +/obj/machinery/door/blast/regular{ + id = "ArmouryC5"; + name = "Armoury" + }, +/obj/machinery/button/remote/blast_door{ + id = "ArmouryC5"; + name = "Armoury Access"; + pixel_y = -28; + req_access = list(101) + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/control) +"hL" = ( +/obj/machinery/door/airlock/centcom{ + name = "Special Operations"; + req_access = list(103) + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/specops) +"hM" = ( +/obj/machinery/pipedispenser/disposal/orderable, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/control) +"hN" = ( +/turf/simulated/floor/tiled/dark, +/area/centcom/control) +"hP" = ( +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tram" + }, +/obj/structure/bed/chair/sofa/bench{ + dir = 4; + padding_color = "#99AAFF" + }, +/obj/random/forgotten_tram, +/turf/simulated/floor/tiled, +/area/shuttle/escape{ + base_turf = /turf/simulated/floor/tiled/techfloor/grid + }) +"hQ" = ( +/turf/simulated/shuttle/floor{ + icon_state = "floor_red" + }, +/area/centcom/terminal/shuttlefluff) +"hT" = ( +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tram" + }, +/obj/structure/bed/chair/sofa/bench{ + dir = 8; + padding_color = "#99AAFF" + }, +/obj/random/forgotten_tram, +/turf/simulated/floor/tiled, +/area/shuttle/escape{ + base_turf = /turf/simulated/floor/tiled/techfloor/grid + }) +"hV" = ( +/obj/machinery/shield_capacitor, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/control) +"hW" = ( +/obj/machinery/door/airlock/centcom{ + name = "Special Operations"; + req_access = list(103) + }, +/turf/simulated/floor/tiled, +/area/centcom/specops) +"hX" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/ammo_magazine/m9mml, +/obj/item/ammo_magazine/m9mml, +/obj/item/ammo_magazine/m9mml, +/obj/item/ammo_magazine/m9mml, +/obj/item/ammo_magazine/m9mml, +/obj/item/ammo_magazine/m9mml, +/obj/item/ammo_magazine/m9mml/ap, +/obj/item/ammo_magazine/m9mml/ap, +/obj/item/ammo_magazine/m9mml/ap, +/obj/item/ammo_magazine/m9mml/ap, +/obj/machinery/button/remote/blast_door{ + id = "ArmouryC4"; + name = "Armoury Access"; + pixel_y = 28; + req_access = list(3) + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"hY" = ( +/obj/effect/floor_decal/emblem/stellardelight{ + dir = 8 + }, +/turf/simulated/shuttle/floor/white, +/area/centcom/terminal/shuttlefluff) +"ic" = ( +/obj/machinery/door/airlock/glass, +/turf/simulated/floor/tiled, +/area/shuttle/centcom/ccbay) +"ih" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 5 + }, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"ii" = ( +/obj/machinery/porta_turret/crescent{ + density = 1 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled, +/area/centcom/specops) +"ij" = ( +/obj/machinery/shieldgen, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/control) +"il" = ( +/obj/item/weapon/stool/padded, +/obj/effect/floor_decal/corner/yellow/diagonal, +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/obj/machinery/camera/network/crescent, +/turf/simulated/floor/tiled, +/area/centcom/control) +"im" = ( +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/obj/item/stack/material/glass{ + amount = 50; + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stack/material/steel{ + amount = 50 + }, +/obj/item/clothing/glasses/welding, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"io" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/tiled, +/area/centcom/control) +"ip" = ( +/obj/machinery/mecha_part_fabricator/pros, +/turf/simulated/floor/tiled, +/area/centcom/control) +"iq" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/armor/vest/ert/engineer, +/obj/item/clothing/suit/armor/vest/ert/engineer, +/obj/item/clothing/suit/armor/vest/ert/engineer, +/obj/item/clothing/suit/armor/vest/ert/engineer, +/obj/item/clothing/head/helmet/ert/engineer, +/obj/item/clothing/head/helmet/ert/engineer, +/obj/item/clothing/head/helmet/ert/engineer, +/obj/item/clothing/head/helmet/ert/engineer, +/obj/item/weapon/storage/backpack/ert/engineer, +/obj/item/weapon/storage/backpack/ert/engineer, +/obj/item/weapon/storage/backpack/ert/engineer, +/obj/item/weapon/storage/backpack/ert/engineer, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/control) +"is" = ( +/obj/structure/table/rack, +/obj/item/weapon/rig/ert/engineer, +/obj/item/weapon/rig/ert/engineer, +/obj/item/weapon/rig/ert/engineer, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/control) +"it" = ( +/obj/structure/table/rack, +/obj/item/clothing/accessory/storage/brown_vest, +/obj/item/clothing/accessory/storage/brown_vest, +/obj/item/clothing/accessory/storage/brown_vest, +/obj/item/clothing/accessory/storage/brown_vest, +/obj/item/clothing/accessory/storage/brown_vest, +/obj/item/clothing/accessory/storage/brown_vest, +/obj/item/clothing/accessory/storage/brown_drop_pouches, +/obj/item/clothing/accessory/storage/brown_drop_pouches, +/obj/item/clothing/accessory/storage/brown_drop_pouches, +/obj/item/clothing/accessory/storage/brown_drop_pouches, +/obj/item/clothing/accessory/storage/brown_drop_pouches, +/obj/item/clothing/accessory/storage/brown_drop_pouches, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/control) +"iu" = ( +/obj/machinery/shield_gen, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"iw" = ( +/obj/machinery/power/thermoregulator, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"ix" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/control) +"iy" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/cell/hyper, +/obj/item/weapon/cell/hyper, +/obj/item/weapon/cell/hyper, +/obj/item/weapon/cell/hyper, +/obj/item/weapon/cell/hyper, +/obj/item/weapon/cell/hyper, +/obj/item/weapon/cell/hyper, +/obj/item/weapon/cell/hyper, +/obj/item/weapon/cell/hyper, +/obj/item/weapon/cell/hyper, +/obj/item/weapon/cell/hyper, +/obj/item/weapon/cell/hyper, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"iz" = ( +/obj/item/weapon/gun/energy/sizegun, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/control) +"iA" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"iC" = ( +/turf/unsimulated/floor/techfloor_grid, +/area/tdome) +"iG" = ( +/obj/machinery/computer/communications, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/centcom/command) +"iH" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"iJ" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"iK" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"iL" = ( +/obj/item/weapon/storage/firstaid/regular, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/control) +"iM" = ( +/obj/machinery/computer/supplycomp{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/centcom/control) +"iO" = ( +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tram" + }, +/obj/structure/table/standard, +/obj/random/forgotten_tram, +/turf/simulated/floor/tiled, +/area/shuttle/escape{ + base_turf = /turf/simulated/floor/tiled/techfloor/grid + }) +"iR" = ( +/obj/structure/bed{ + desc = "This is a bed..It says something close to the bottom 'I fuck the cat here too'." + }, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/control) +"iS" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/borderfloor/corner2, +/turf/simulated/floor/tiled, +/area/centcom/command) +"iT" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/centcom/command) +"iU" = ( +/obj/machinery/computer/security/telescreen/entertainment{ + icon_state = "frame"; + pixel_x = 32 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Residential Security" + }) +"iV" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"iW" = ( +/obj/machinery/r_n_d/destructive_analyzer, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"iX" = ( +/turf/simulated/floor/tiled/dark, +/area/centcom/living) +"iZ" = ( +/obj/machinery/r_n_d/protolathe, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"ja" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/tool/crowbar, +/obj/item/weapon/tool/crowbar, +/obj/item/weapon/tool/crowbar, +/obj/item/weapon/tool/crowbar, +/obj/item/weapon/tool/crowbar, +/obj/item/weapon/tool/crowbar, +/obj/item/device/radio/off, +/obj/item/device/radio/off, +/obj/item/device/radio/off, +/obj/item/device/radio/off, +/obj/item/device/radio/off, +/obj/item/device/radio/off, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"jb" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"jc" = ( +/obj/structure/closet/secure_closet/bar, +/turf/simulated/floor/tiled{ + icon_state = "white" + }, +/area/tdome/tdomeobserve) +"jd" = ( +/obj/structure/table/reinforced, +/obj/item/device/binoculars, +/obj/item/device/survivalcapsule, +/obj/item/device/survivalcapsule, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"je" = ( +/turf/simulated/floor/tiled{ + icon_state = "white" + }, +/area/tdome/tdomeobserve) +"jf" = ( +/obj/machinery/turretid/stun{ + check_access = 0; + check_anomalies = 0; + check_records = 0; + control_area = "\improper CentCom Control"; + pixel_x = -28; + pixel_y = -28; + req_access = list(101) + }, +/turf/simulated/floor/tiled, +/area/centcom/control) +"jg" = ( +/obj/machinery/door/airlock/command{ + name = "Thunderdome"; + req_one_access = list() + }, +/turf/unsimulated/floor/steel, +/area/tdome/tdomeadmin) +"jh" = ( +/obj/structure/closet/wardrobe/ert, +/obj/item/modular_computer/laptop/preset/custom_loadout/elite, +/turf/simulated/floor/wood, +/area/centcom/specops) +"ji" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/unsimulated/shuttle/plating, +/area/tdome/tdomeadmin) +"jj" = ( +/obj/structure/table/standard, +/turf/simulated/floor/carpet, +/area/centcom/control) +"jm" = ( +/obj/structure/bed, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/control) +"jo" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/box/handcuffs{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/weapon/storage/box/chemimp{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/weapon/storage/box/trackimp, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"jp" = ( +/obj/machinery/computer/rdconsole/core{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"jq" = ( +/obj/machinery/door/airlock/angled_bay/standard/glass{ + door_color = "#323d80"; + name = "Command Glass"; + req_access = list(19); + req_one_access = list(19); + stripe_color = "#f7d35c" + }, +/turf/simulated/shuttle/floor, +/area/centcom/terminal/shuttlefluff) +"jr" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"ju" = ( +/obj/machinery/r_n_d/circuit_imprinter, +/obj/item/weapon/reagent_containers/glass/beaker/sulphuric, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"jw" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor/plating, +/area/centcom/terminal) +"jx" = ( +/obj/item/weapon/reagent_containers/food/drinks/cans/cola, +/obj/item/weapon/reagent_containers/food/drinks/cans/cola, +/obj/item/weapon/reagent_containers/food/drinks/cans/cola, +/obj/structure/table/standard, +/turf/unsimulated/floor/steel, +/area/tdome/tdomeobserve) +"jy" = ( +/obj/machinery/telecomms/allinone/antag{ + intercept = 1 + }, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"jD" = ( +/obj/structure/reagent_dispensers/beerkeg, +/turf/unsimulated/floor/steel, +/area/tdome/tdomeobserve) +"jE" = ( +/obj/structure/table/steel_reinforced, +/obj/item/stack/material/phoron, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"jF" = ( +/obj/machinery/vending/coffee, +/turf/unsimulated/floor/steel, +/area/tdome/tdomeobserve) +"jG" = ( +/obj/machinery/shield_gen/external, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"jH" = ( +/obj/machinery/power/port_gen/pacman, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"jI" = ( +/obj/machinery/computer/pod{ + id = "thunderdomeaxe"; + name = "Thunderdome Axe Supply" + }, +/turf/unsimulated/floor/steel, +/area/tdome/tdomeadmin) +"jJ" = ( +/obj/structure/table/reinforced, +/obj/item/device/camera, +/obj/item/weapon/storage/box/ids, +/obj/effect/floor_decal/borderfloorblack{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Residential Security" + }) +"jK" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor, +/area/shuttle/ccboat) +"jL" = ( +/obj/machinery/cell_charger, +/obj/structure/table/reinforced, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"jN" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/bed/chair/shuttle, +/turf/simulated/shuttle/floor{ + icon_state = "floor_red" + }, +/area/centcom/terminal/shuttlefluff) +"jO" = ( +/obj/effect/floor_decal/rust, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/centcom/terminal) +"jQ" = ( +/obj/effect/fancy_shuttle/orangeline{ + dir = 1; + fancy_shuttle_tag = "tram" + }, +/obj/effect/fancy_shuttle_floor_preview/orangeline{ + dir = 1; + plane = -45 + }, +/turf/simulated/wall/fancy_shuttle{ + fancy_shuttle_tag = "tram" + }, +/area/shuttle/escape{ + base_turf = /turf/simulated/floor/tiled/techfloor/grid + }) +"kd" = ( +/obj/machinery/computer/pod{ + id = "thunderdomehea"; + name = "Thunderdome Heavy Supply" + }, +/turf/unsimulated/floor/steel, +/area/tdome/tdomeadmin) +"ke" = ( +/obj/machinery/computer/pod{ + id = "thunderdome"; + name = "Thunderdome Blast Door Control" + }, +/turf/unsimulated/floor/steel, +/area/tdome/tdomeadmin) +"kf" = ( +/obj/machinery/camera/network/crescent{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"kg" = ( +/obj/machinery/door/airlock/centcom{ + name = "Private"; + req_access = list(105) + }, +/turf/simulated/floor/tiled, +/area/centcom/control) +"kh" = ( +/obj/item/weapon/melee/baton/cattleprod, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/control) +"ki" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"kj" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"kk" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"kl" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/turf/simulated/floor/tiled{ + icon_state = "white" + }, +/area/tdome/tdomeobserve) +"km" = ( +/obj/machinery/vending/snack, +/turf/unsimulated/floor/steel, +/area/tdome/tdomeobserve) +"kn" = ( +/obj/structure/closet/secure_closet/personal, +/turf/simulated/floor/carpet, +/area/centcom/control) +"ko" = ( +/obj/effect/floor_decal/corner/yellow/diagonal, +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/obj/machinery/vending/snack, +/turf/simulated/floor/tiled, +/area/centcom/control) +"kp" = ( +/obj/item/weapon/folder/white, +/obj/structure/table/standard, +/obj/item/weapon/disk/tech_disk, +/obj/item/weapon/disk/tech_disk, +/obj/item/weapon/disk/design_disk, +/obj/item/weapon/disk/design_disk, +/obj/item/weapon/reagent_containers/dropper{ + pixel_y = -4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 10 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"kq" = ( +/obj/machinery/shield_capacitor, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"kr" = ( +/obj/structure/table/standard, +/obj/item/weapon/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/item/weapon/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/machinery/cell_charger, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/purple/border, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"ks" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/machinery/appliance/cooker/oven, +/turf/simulated/floor/tiled/white, +/area/centcom/bar) +"kt" = ( +/obj/structure/table/rack, +/obj/item/rig_module/mounted/egun, +/obj/item/rig_module/mounted/egun, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"kz" = ( +/obj/effect/floor_decal/industrial/warning/dust/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/centcom/terminal) +"kA" = ( +/obj/machinery/turretid/stun{ + check_access = 0; + check_anomalies = 0; + check_records = 0; + control_area = "\improper CentCom Control"; + pixel_y = -28; + req_access = list(101) + }, +/obj/structure/table/reinforced, +/obj/item/device/pda/captain, +/turf/simulated/floor/tiled, +/area/centcom/control) +"kC" = ( +/obj/effect/floor_decal/borderfloorwhite/corner, +/obj/effect/floor_decal/corner/green/bordercorner, +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"kD" = ( +/obj/effect/floor_decal/emblem/stellardelight/center, +/turf/simulated/shuttle/floor/white, +/area/centcom/terminal/shuttlefluff) +"kE" = ( +/obj/structure/shuttle/engine/propulsion, +/turf/simulated/shuttle/plating/airless/carry, +/area/shuttle/supply) +"kH" = ( +/obj/structure/table/rack, +/obj/item/rig_module/mounted/taser, +/obj/item/rig_module/mounted/taser, +/obj/item/rig_module/mounted/taser, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"kI" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/item/rig_module/rescue_pharm, +/obj/item/rig_module/sprinter, +/obj/item/rig_module/sprinter, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"kJ" = ( +/obj/machinery/door/airlock/centcom{ + name = "General Access"; + req_access = list(101) + }, +/turf/simulated/floor/tiled, +/area/centcom/control) +"kK" = ( +/obj/structure/table/standard, +/obj/structure/reagent_dispensers/acid{ + pixel_y = -30 + }, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/purple/border, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"kM" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/purple/border, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/purple/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"kN" = ( +/obj/structure/closet/crate, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/item/weapon/storage/box, +/obj/item/weapon/storage/box, +/obj/item/weapon/storage/box, +/obj/item/weapon/storage/box, +/obj/item/weapon/storage/box, +/obj/item/weapon/storage/box, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"kO" = ( +/obj/machinery/autolathe{ + desc = "Your typical Autolathe. It appears to have much more options than your regular one, however..."; + hacked = 1; + name = "Unlocked Autolathe" + }, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"kP" = ( +/obj/structure/table/glass, +/obj/item/weapon/reagent_containers/glass/bottle/biomass{ + pixel_x = -4; + pixel_y = 8 + }, +/obj/item/weapon/reagent_containers/glass/bottle/biomass{ + pixel_x = -3; + pixel_y = -2 + }, +/obj/item/weapon/reagent_containers/glass/bottle/biomass{ + pixel_x = 3; + pixel_y = 5 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"kQ" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "reinforced"; + name = "reinforced floor" + }, +/area/centcom) +"kS" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/blue/bordercorner2, +/turf/simulated/floor/tiled, +/area/centcom/command) +"kT" = ( +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tram" + }, +/obj/structure/bed/chair/sofa/bench/right{ + dir = 4; + padding_color = "#99AAFF" + }, +/turf/simulated/floor/tiled, +/area/shuttle/escape{ + base_turf = /turf/simulated/floor/tiled/techfloor/grid + }) +"lb" = ( +/obj/item/weapon/storage/box/donkpockets{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/storage/box/donkpockets{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/storage/box/donkpockets{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/storage/box/donkpockets{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/structure/table/standard, +/turf/simulated/floor/tiled{ + icon_state = "white" + }, +/area/tdome/tdomeobserve) +"lc" = ( +/obj/structure/table/standard, +/obj/machinery/microwave, +/turf/simulated/floor/tiled{ + icon_state = "white" + }, +/area/tdome/tdomeobserve) +"ld" = ( +/obj/structure/dispenser/oxygen, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"le" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"lf" = ( +/obj/structure/table/rack, +/obj/item/weapon/tank/emergency/oxygen/double, +/obj/item/weapon/tank/emergency/oxygen/double, +/obj/item/weapon/tank/emergency/oxygen/double, +/obj/item/weapon/tank/emergency/oxygen/double, +/obj/item/weapon/tank/emergency/oxygen/double, +/obj/item/weapon/tank/emergency/oxygen/double, +/obj/item/weapon/tank/emergency/oxygen/double, +/obj/item/weapon/tank/emergency/oxygen/double, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"lg" = ( +/obj/machinery/door/airlock/glass_security{ + name = "Colonial Security Airlock"; + req_access = list(63) + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"lh" = ( +/obj/item/device/camera, +/turf/unsimulated/floor/steel, +/area/tdome/tdomeobserve) +"li" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/structure/bed/chair/shuttle{ + dir = 8 + }, +/turf/simulated/shuttle/floor, +/area/centcom/terminal/shuttlefluff) +"lj" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/bathroom) +"lm" = ( +/obj/machinery/door/airlock/glass_research{ + name = "Research and Development"; + req_access = list(7) + }, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"ln" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 6 + }, +/obj/structure/table/reinforced, +/obj/machinery/computer/skills, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"lu" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/shuttle/floor/white, +/area/centcom/terminal/shuttlefluff) +"lw" = ( +/obj/structure/table/standard, +/obj/machinery/recharger, +/obj/item/device/flash, +/turf/simulated/floor/tiled, +/area/centcom/control) +"ly" = ( +/obj/machinery/camera/network/crescent, +/turf/simulated/floor/tiled, +/area/centcom/control) +"lz" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-08" + }, +/turf/simulated/floor/tiled, +/area/centcom/control) +"lA" = ( +/obj/structure/closet/firecloset, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"lC" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 27 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"lD" = ( +/obj/structure/bed/chair/office/dark, +/obj/machinery/button/remote/blast_door{ + desc = "A remote control switch for port-side blast doors."; + id = "CentComPort"; + name = "Security Doors"; + pixel_x = -12; + pixel_y = -25; + req_access = list(101) + }, +/turf/simulated/floor/tiled, +/area/centcom/control) +"lE" = ( +/obj/structure/sink{ + pixel_y = 16 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"lF" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"lG" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/bodyscanner{ + dir = 4 + }, +/turf/simulated/shuttle/floor/white, +/area/centcom/terminal/shuttlefluff) +"lR" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 6 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2, +/obj/effect/floor_decal/corner/green/bordercorner2, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"lS" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/green/border, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/green/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"lT" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/green/border, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"lU" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 6 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"lV" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-21" + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 9 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/bordercorner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/purple/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"lW" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/simulated/floor/tiled, +/area/centcom/control) +"lX" = ( +/obj/machinery/door/airlock{ + name = "Prison Showers" + }, +/turf/simulated/floor/tiled/freezer, +/area/centcom/security) +"md" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor, +/area/centcom/control) +"me" = ( +/obj/structure/table/rack, +/obj/item/clothing/under/color/red, +/obj/item/clothing/shoes/brown, +/obj/item/weapon/melee/energy/axe, +/turf/unsimulated/floor/techfloor_grid, +/area/tdome/tdome1) +"mg" = ( +/obj/structure/table/rack, +/obj/item/clothing/under/color/green, +/obj/item/clothing/shoes/brown, +/obj/item/weapon/melee/energy/axe, +/turf/unsimulated/floor/techfloor_grid, +/area/tdome/tdome1) +"mh" = ( +/obj/machinery/door/airlock/research{ + id_tag = "researchdoor"; + name = "Research Division Access"; + req_access = list(47) + }, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"mi" = ( +/obj/machinery/door/blast/regular{ + id = "CentComPort"; + name = "Security Doors" + }, +/turf/simulated/floor/tiled, +/area/centcom/control) +"mj" = ( +/obj/machinery/door/airlock/glass_research{ + name = "Robotics Lab"; + req_access = list(29,47) + }, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"mk" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/weapon/pen, +/turf/simulated/floor/tiled, +/area/centcom/control) +"ml" = ( +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/control) +"mq" = ( +/obj/machinery/power/emitter, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/control) +"mr" = ( +/obj/structure/closet/l3closet/scientist, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"ms" = ( +/obj/structure/closet/emcloset, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/camera/network/crescent{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"mt" = ( +/obj/structure/curtain/open/shower, +/obj/machinery/shower{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"mu" = ( +/obj/structure/closet/wardrobe/robotics_black, +/obj/item/device/radio/headset/headset_sci{ + pixel_x = -3 + }, +/turf/simulated/floor/tiled, +/area/centcom/control) +"mw" = ( +/obj/structure/table/marble, +/obj/item/weapon/reagent_containers/food/drinks/cup{ + pixel_x = 8; + pixel_y = 8 + }, +/obj/item/weapon/reagent_containers/food/drinks/cup{ + pixel_x = -4; + pixel_y = 8 + }, +/obj/item/weapon/reagent_containers/food/drinks/cup{ + pixel_x = 3 + }, +/obj/item/weapon/reagent_containers/food/drinks/cup{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/item/weapon/reagent_containers/food/drinks/cup{ + pixel_x = 8 + }, +/obj/item/weapon/reagent_containers/food/drinks/cup{ + pixel_x = -4 + }, +/obj/item/weapon/reagent_containers/food/drinks/cup{ + pixel_x = 8; + pixel_y = 12 + }, +/obj/item/weapon/reagent_containers/food/drinks/cup{ + pixel_x = -4; + pixel_y = 12 + }, +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/diagonal, +/turf/simulated/floor/tiled, +/area/centcom/control) +"mF" = ( +/obj/effect/floor_decal/emblem/orangeline{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/centcom/terminal) +"mG" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/centcom/terminal) +"mI" = ( +/obj/structure/table/marble, +/obj/machinery/chemical_dispenser/bar_coffee/full, +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/obj/effect/floor_decal/corner/yellow/diagonal, +/turf/simulated/floor/tiled, +/area/centcom/control) +"mJ" = ( +/obj/machinery/vending/cola, +/obj/effect/floor_decal/corner/yellow/diagonal, +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/centcom/control) +"mK" = ( +/obj/machinery/vending/cigarette, +/obj/effect/floor_decal/corner/yellow/diagonal, +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/centcom/control) +"mL" = ( +/obj/machinery/mech_recharger, +/turf/simulated/floor, +/area/centcom/control) +"mM" = ( +/obj/machinery/autolathe{ + desc = "Your typical Autolathe. It appears to have much more options than your regular one, however..."; + hacked = 1; + name = "Centcom Autolathe" + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 9 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"mP" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/belt/utility, +/obj/item/clothing/gloves/sterile/latex, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"mQ" = ( +/obj/structure/table/standard, +/obj/random/forgotten_tram, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tram" + }, +/turf/simulated/floor/tiled, +/area/shuttle/escape{ + base_turf = /turf/simulated/floor/tiled/techfloor/grid + }) +"mR" = ( +/obj/structure/table/rack, +/obj/item/clothing/under/color/red, +/obj/item/clothing/shoes/brown, +/obj/item/clothing/suit/armor/tdome/red, +/obj/item/clothing/head/helmet/thunderdome, +/obj/item/weapon/melee/baton/loaded, +/obj/item/weapon/melee/energy/sword/red, +/turf/unsimulated/floor/techfloor_grid, +/area/tdome/tdome1) +"mS" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/blast/angled/open{ + dir = 4; + id = "ccshuttleshutter" + }, +/turf/simulated/floor, +/area/shuttle/ccboat) +"mT" = ( +/obj/machinery/camera/network/crescent, +/obj/structure/table/reinforced, +/turf/simulated/floor/tiled, +/area/centcom/control) +"mX" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "TelelockdownC"; + name = "Security Doors"; + opacity = 0 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/living) +"mY" = ( +/obj/machinery/airlock_sensor/airlock_exterior/shuttle{ + dir = 10 + }, +/obj/effect/map_helper/airlock/sensor/ext_sensor, +/turf/simulated/wall/rshull, +/area/shuttle/ccboat) +"na" = ( +/obj/structure/bed/chair/shuttle{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/shuttle/ccboat) +"nd" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"ne" = ( +/obj/machinery/camera/network/crescent, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"nf" = ( +/obj/structure/table/standard, +/obj/item/weapon/hand_labeler, +/obj/item/weapon/pen, +/obj/item/weapon/packageWrap, +/obj/item/weapon/packageWrap, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"ni" = ( +/obj/structure/bed/chair/comfy/teal{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/centcom/command) +"nk" = ( +/obj/structure/table/reinforced, +/turf/simulated/floor/tiled{ + icon_state = "white" + }, +/area/tdome/tdomeobserve) +"nl" = ( +/obj/effect/floor_decal/industrial/outline, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"nn" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/brigdoor{ + req_access = list(63); + req_one_access = list(1) + }, +/obj/item/weapon/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/weapon/pen, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"nw" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/centcom/living) +"nz" = ( +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tram" + }, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/machinery/light, +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled, +/area/shuttle/escape{ + base_turf = /turf/simulated/floor/tiled/techfloor/grid + }) +"nA" = ( +/obj/machinery/button/remote/blast_door{ + id = "ccshuttleshutter"; + name = "Shutter Control"; + pixel_x = 17; + pixel_y = 27 + }, +/obj/structure/bed/chair/bay/shuttle{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/shuttle/ccboat) +"nB" = ( +/obj/item/weapon/stock_parts/console_screen, +/obj/structure/table/standard, +/obj/item/weapon/stock_parts/console_screen, +/obj/item/weapon/stock_parts/console_screen, +/obj/item/weapon/stock_parts/matter_bin, +/obj/item/weapon/stock_parts/matter_bin, +/obj/machinery/recharger, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 5 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"nC" = ( +/obj/machinery/camera/network/crescent{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/centcom/control) +"nD" = ( +/obj/machinery/autolathe{ + desc = "Your typical Autolathe. It appears to have much more options than your regular one, however..."; + hacked = 1; + name = "Centcom Autolathe" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"nG" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/centcom/living) +"nI" = ( +/obj/machinery/light/spot, +/turf/simulated/floor/tiled, +/area/centcom/terminal) +"nJ" = ( +/turf/simulated/floor/tiled, +/area/shuttle/centcom/ccbay) +"nL" = ( +/obj/machinery/computer/rdconsole/robotics, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"nM" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/machinery/computer/cryopod/dorms{ + name = "Company Property Retention System"; + pixel_x = -28 + }, +/turf/simulated/floor/tiled, +/area/centcom/living) +"nN" = ( +/obj/structure/bed/chair/comfy/teal, +/turf/simulated/floor/carpet, +/area/centcom/command) +"nQ" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/turf/simulated/floor/tiled/white, +/area/centcom/bar) +"nW" = ( +/obj/structure/table/marble, +/obj/machinery/door/blast/shutters{ + dir = 2; + id = "kitchenC"; + layer = 3.3; + name = "Kitchen Shutters" + }, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"nZ" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/machinery/appliance/cooker/grill, +/turf/simulated/floor/tiled/white, +/area/centcom/bar) +"oa" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/tiled, +/area/shuttle/centcom/ccbay) +"ob" = ( +/obj/machinery/camera/network/crescent{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/orange/border, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/orange/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"oh" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/firstaid/adv, +/obj/item/weapon/storage/firstaid/fire, +/obj/item/weapon/storage/firstaid/o2, +/obj/item/weapon/storage/firstaid/toxin, +/turf/simulated/shuttle/floor/white, +/area/centcom/terminal/shuttlefluff) +"oj" = ( +/obj/structure/bed/chair/sofa/bench/left{ + dir = 4; + padding_color = "#99AAFF" + }, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tram" + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/shuttle/escape{ + base_turf = /turf/simulated/floor/tiled/techfloor/grid + }) +"ok" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/tiled, +/area/centcom/control) +"ol" = ( +/obj/effect/floor_decal/corner_steel_grid/diagonal, +/obj/effect/floor_decal/industrial/warning/dust/corner{ + dir = 4 + }, +/obj/machinery/light/flamp/noshade, +/turf/simulated/floor/tiled, +/area/centcom/terminal) +"om" = ( +/obj/structure/table/glass, +/obj/machinery/chemical_dispenser/full, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"on" = ( +/obj/structure/table/glass, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/machinery/camera/network/crescent, +/obj/item/weapon/reagent_containers/glass/beaker/large, +/obj/item/weapon/reagent_containers/glass/beaker/large, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"oo" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/machinery/door/airlock/glass{ + name = "Kitchen"; + req_access = list(28) + }, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"op" = ( +/obj/machinery/transhuman/synthprinter, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"oq" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 10 + }, +/obj/machinery/computer/transhuman/resleeving, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"os" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/box/bodybags{ + pixel_x = -1; + pixel_y = -2 + }, +/turf/simulated/floor/tiled, +/area/centcom/control) +"ot" = ( +/obj/structure/table/standard, +/obj/machinery/computer/skills{ + pixel_y = 2 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/centcom/command) +"ov" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/structure/flora/pottedplant{ + icon_state = "plant-22" + }, +/turf/simulated/floor/tiled, +/area/centcom/command) +"ow" = ( +/obj/structure/table/standard, +/obj/machinery/computer/skills{ + pixel_y = 2 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/centcom/command) +"ox" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/turf/simulated/floor/tiled, +/area/centcom/command) +"oy" = ( +/obj/structure/reagent_dispensers/water_cooler/full, +/turf/simulated/floor/lino, +/area/centcom/command) +"oz" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/structure/flora/pottedplant{ + icon_state = "plant-22" + }, +/obj/machinery/newscaster{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled, +/area/centcom/command) +"oA" = ( +/obj/machinery/newscaster{ + pixel_y = 30 + }, +/turf/simulated/floor/lino, +/area/centcom/command) +"oC" = ( +/obj/machinery/gibber, +/turf/simulated/floor/tiled/white, +/area/centcom/bar) +"oE" = ( +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/effect/landmark{ + name = "tdome2" + }, +/turf/unsimulated/floor/techfloor_grid, +/area/tdome/tdome1) +"oF" = ( +/obj/machinery/status_display{ + pixel_y = 30 + }, +/turf/simulated/floor/lino, +/area/centcom/command) +"oG" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/turf/simulated/floor/lino, +/area/centcom/command) +"oI" = ( +/obj/machinery/camera/network/crescent, +/turf/simulated/floor/lino, +/area/centcom/command) +"oJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark/cargo, +/area/shuttle/ccboat) +"oL" = ( +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/effect/landmark{ + name = "tdome1" + }, +/turf/unsimulated/floor/techfloor_grid, +/area/tdome/tdome1) +"oM" = ( +/obj/machinery/r_n_d/circuit_imprinter, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/item/weapon/book/manual/robotics_cyborgs{ + pixel_x = 2; + pixel_y = 5 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"oN" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/centcom/control) +"oQ" = ( +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tram" + }, +/obj/machinery/status_display{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled, +/area/shuttle/escape{ + base_turf = /turf/simulated/floor/tiled/techfloor/grid + }) +"oS" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/simulated/floor/tiled/freezer, +/area/centcom/security) +"oT" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/shuttle/floor, +/area/shuttle/supply) +"oX" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 9 + }, +/obj/machinery/turretid/stun{ + check_access = 0; + check_anomalies = 0; + check_records = 0; + control_area = "\improper CentCom Living Quarters"; + pixel_y = 32; + req_access = list(101); + req_one_access = list(101) + }, +/turf/simulated/floor/tiled, +/area/centcom/living) +"oY" = ( +/obj/effect/floor_decal/derelict/d2, +/turf/simulated/floor/tiled, +/area/centcom/terminal) +"pb" = ( +/obj/item/modular_computer/console/preset/command{ + dir = 8 + }, +/obj/item/device/radio/intercom{ + broadcasting = 1; + dir = 4; + frequency = 1443; + listening = 0; + name = "Spec Ops Intercom"; + pixel_x = 24 + }, +/turf/simulated/floor/tiled, +/area/centcom/control) +"pd" = ( +/obj/machinery/atmospherics/binary/pump/fuel{ + dir = 8 + }, +/obj/structure/fuel_port{ + pixel_y = 29 + }, +/turf/simulated/floor/tiled/eris/dark/cargo, +/area/shuttle/ccboat) +"pl" = ( +/obj/effect/floor_decal/emblem/stellardelight{ + dir = 4 + }, +/turf/simulated/shuttle/floor/white, +/area/centcom/terminal/shuttlefluff) +"pq" = ( +/obj/machinery/computer/secure_data, +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 1 + }, +/obj/machinery/camera/network/crescent, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Residential Security" + }) +"pr" = ( +/obj/structure/bed/chair/shuttle{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/shuttle/ccboat) +"pw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/wall/rshull, +/area/shuttle/ccboat) +"px" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled, +/area/shuttle/centcom/ccbay) +"py" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/simulated/floor/tiled, +/area/centcom/control) +"pz" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor/orange{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/centcom/terminal) +"pC" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/centcom/terminal) +"pF" = ( +/obj/structure/closet{ + name = "materials" + }, +/obj/item/stack/material/steel{ + amount = 50 + }, +/obj/item/stack/material/steel{ + amount = 50 + }, +/obj/item/stack/material/steel{ + amount = 50 + }, +/obj/item/stack/material/steel{ + amount = 50 + }, +/obj/item/stack/material/steel{ + amount = 50 + }, +/obj/item/stack/material/glass{ + amount = 50; + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/stack/material/glass{ + amount = 50; + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/stack/material/glass{ + amount = 50; + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/stack/material/glass{ + amount = 50; + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/stack/material/plasteel{ + amount = 10 + }, +/obj/machinery/camera/network/crescent, +/turf/simulated/floor/tiled, +/area/centcom/control) +"pG" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/centcom/command) +"pJ" = ( +/obj/machinery/camera/network/crescent, +/turf/simulated/floor/tiled/dark, +/area/centcom/control) +"pN" = ( +/obj/structure/closet/crate/freezer, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"pR" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/shuttle/centcom/ccbay) +"qc" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"qe" = ( +/obj/machinery/computer/med_data{ + dir = 1 + }, +/turf/simulated/shuttle/floor, +/area/centcom/terminal/shuttlefluff) +"qf" = ( +/obj/structure/table/standard, +/obj/item/device/mmi, +/turf/simulated/floor/tiled, +/area/centcom/control) +"qg" = ( +/obj/effect/landmark{ + name = "tdome2" + }, +/obj/machinery/camera/network/thunder{ + invisibility = 101 + }, +/turf/unsimulated/floor/techfloor_grid, +/area/tdome/tdome1) +"qh" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/centcom/command) +"ql" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/centcom/terminal) +"qo" = ( +/obj/machinery/flasher{ + id = "flash"; + name = "Thunderdome Flash" + }, +/turf/unsimulated/floor/techfloor_grid, +/area/tdome) +"qp" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/item/weapon/folder/blue_captain, +/turf/simulated/floor/carpet, +/area/centcom/command) +"qq" = ( +/obj/effect/landmark{ + name = "tdome1" + }, +/obj/machinery/camera/network/thunder{ + invisibility = 101 + }, +/turf/unsimulated/floor/techfloor_grid, +/area/tdome/tdome1) +"qs" = ( +/obj/effect/floor_decal/derelict/d13, +/turf/simulated/floor/tiled, +/area/centcom/terminal) +"qw" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/shuttle/centcom/ccbay) +"qB" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/shuttle/centcom/ccbay) +"qE" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"qI" = ( +/obj/effect/floor_decal/rust/part_rusted3, +/turf/simulated/floor/tiled, +/area/centcom/terminal) +"qK" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/reinforced, +/area/centcom) +"qL" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor, +/area/shuttle/ccboat) +"qQ" = ( +/obj/effect/floor_decal/derelict/d9, +/turf/simulated/floor/tiled, +/area/centcom/terminal) +"qR" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/weapon/pen, +/obj/machinery/button/remote/blast_door{ + id = "TelelockdownC"; + name = "Teleporter Entrance Lockdown"; + pixel_x = 6; + pixel_y = -5; + req_access = list(63); + req_one_access = list(1) + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "TelelockdownC"; + name = "Security Door"; + opacity = 0 + }, +/obj/machinery/door/window/brigdoor/northleft{ + req_access = list(63); + req_one_access = list(1) + }, +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Residential Security" + }) +"qT" = ( +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tram" + }, +/obj/structure/bed/chair/sofa/bench{ + dir = 8; + padding_color = "#99AAFF" + }, +/turf/simulated/floor/tiled, +/area/shuttle/escape{ + base_turf = /turf/simulated/floor/tiled/techfloor/grid + }) +"qU" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"qW" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "reinforced"; + name = "reinforced floor" + }, +/area/centcom) +"qY" = ( +/obj/machinery/account_database{ + dir = 8; + name = "CentComm Accounts database" + }, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"rc" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/borderfloor, +/turf/simulated/floor/tiled, +/area/centcom/command) +"rd" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/structure/closet/crate/bin, +/turf/simulated/floor/tiled, +/area/centcom/command) +"rf" = ( +/obj/structure/table/standard, +/obj/machinery/computer/skills{ + pixel_y = 2 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/centcom/command) +"rg" = ( +/obj/machinery/camera/network/crescent, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Residential Security" + }) +"ri" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/paper_bin{ + pixel_y = 5 + }, +/obj/item/weapon/pen/multi, +/turf/simulated/floor/tiled, +/area/centcom/control) +"rj" = ( +/obj/structure/bed/chair/backed_grey{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/shuttle/centcom/ccbay) +"rl" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/structure/table/marble, +/obj/item/weapon/book/manual/chef_recipes, +/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{ + pixel_x = -3 + }, +/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{ + pixel_x = 3 + }, +/obj/item/weapon/material/kitchen/rollingpin, +/obj/item/weapon/material/knife/butch, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"rm" = ( +/turf/simulated/floor/lino, +/area/centcom/command) +"rr" = ( +/obj/machinery/door/airlock/freezer{ + name = "Kitchen cold room"; + req_access = list(28) + }, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"ru" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/shuttle/centcom/ccbay) +"rz" = ( +/obj/structure/kitchenspike, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"rC" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/shuttle/floor, +/area/shuttle/supply) +"rM" = ( +/obj/effect/floor_decal/emblem/stellardelight{ + dir = 1 + }, +/turf/simulated/shuttle/floor/white, +/area/centcom/terminal/shuttlefluff) +"rQ" = ( +/obj/structure/bed/chair/shuttle{ + dir = 4 + }, +/turf/simulated/shuttle/floor, +/area/centcom/terminal/shuttlefluff) +"rZ" = ( +/obj/structure/table/standard, +/obj/item/weapon/surgical/circular_saw, +/obj/item/weapon/surgical/scalpel{ + pixel_y = 12 + }, +/obj/item/weapon/surgical/hemostat, +/obj/item/weapon/surgical/retractor, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/tiled{ + icon_state = "white" + }, +/area/centcom/control) +"sb" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"sc" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"se" = ( +/obj/effect/floor_decal/rust/part_rusted3, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/centcom/terminal) +"sf" = ( +/obj/structure/flora/pottedplant, +/turf/simulated/floor/tiled, +/area/centcom/command) +"sg" = ( +/obj/structure/table/glass, +/obj/machinery/computer/skills{ + pixel_y = 2 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/centcom/command) +"sh" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-10" + }, +/turf/simulated/floor/tiled, +/area/centcom/command) +"si" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/tiled{ + icon_state = "white" + }, +/area/centcom/control) +"sj" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/centcom/control) +"sk" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/centcom/terminal) +"sl" = ( +/obj/machinery/body_scanconsole{ + dir = 4 + }, +/turf/simulated/shuttle/floor/white, +/area/centcom/terminal/shuttlefluff) +"sp" = ( +/obj/machinery/door/airlock/angled_bay/standard/glass{ + door_color = "#9fccc7"; + name = "Cockpit"; + req_access = list(67); + stripe_color = "#ffffff" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/shuttle/ccboat) +"sr" = ( +/obj/machinery/button/remote/blast_door{ + id = "crescent_checkpoint_access"; + name = "Crescent Checkpoint Access"; + pixel_x = -6; + pixel_y = -24; + req_access = list(101) + }, +/turf/simulated/floor/tiled, +/area/centcom/control) +"su" = ( +/obj/effect/floor_decal/derelict/d12, +/turf/simulated/floor/tiled, +/area/centcom/terminal) +"sw" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/centcom/control) +"sx" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/turf/simulated/floor/tiled, +/area/centcom/control) +"sz" = ( +/obj/machinery/door/airlock/security{ + name = "Security" + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"sB" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/centcom/terminal) +"sC" = ( +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/blue/bordercorner, +/turf/simulated/floor/tiled, +/area/centcom/security) +"sD" = ( +/obj/machinery/door/airlock/security{ + name = "Security" + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/command) +"sE" = ( +/obj/machinery/camera/network/thunder{ + alpha = 0; + invisibility = 101 + }, +/turf/unsimulated/floor/techfloor_grid, +/area/tdome) +"sH" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/centcom/command) +"sK" = ( +/obj/machinery/camera/network/crescent{ + dir = 4 + }, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"sL" = ( +/obj/machinery/sleeper{ + dir = 4 + }, +/turf/simulated/shuttle/floor/white, +/area/centcom/terminal/shuttlefluff) +"sO" = ( +/obj/structure/reagent_dispensers/water_cooler/full, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"sP" = ( +/obj/machinery/mecha_part_fabricator, +/turf/simulated/floor/tiled, +/area/centcom/control) +"sR" = ( +/obj/machinery/scale, +/turf/simulated/floor/tiled/freezer, +/area/centcom/bathroom) +"sW" = ( +/obj/structure/table/rack, +/obj/item/weapon/gun/projectile/automatic/pdw, +/obj/item/weapon/gun/projectile/automatic/pdw, +/obj/item/weapon/gun/projectile/automatic/pdw, +/obj/item/weapon/gun/projectile/automatic/pdw, +/obj/item/weapon/gun/projectile/automatic/pdw, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"sX" = ( +/turf/simulated/floor/reinforced/airless, +/area/shuttle/centcom/ccbay) +"sY" = ( +/obj/machinery/button/remote/blast_door{ + id = "ArmouryC4"; + name = "Armoury Access"; + pixel_y = -28; + req_access = list(3) + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/control) +"th" = ( +/obj/structure/table/marble, +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/machinery/appliance/mixer/cereal, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"tp" = ( +/obj/structure/table/glass, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/centcom/command) +"tq" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/centcom/terminal) +"tr" = ( +/obj/structure/table/reinforced, +/obj/machinery/light, +/turf/simulated/shuttle/floor/white, +/area/centcom/terminal/shuttlefluff) +"ts" = ( +/obj/structure/closet/athletic_mixed, +/turf/simulated/floor/tiled, +/area/centcom/bathroom) +"tt" = ( +/obj/structure/bed/chair/shuttle{ + dir = 1 + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_red" + }, +/area/centcom/terminal/shuttlefluff) +"tw" = ( +/obj/structure/closet/crate/freezer, +/turf/simulated/floor/tiled/white, +/area/centcom/bar) +"tx" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/turf/simulated/floor/tiled/freezer, +/area/centcom/bathroom) +"tB" = ( +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/blue/border, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"tE" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/machinery/appliance/mixer/cereal, +/turf/simulated/floor/tiled/white, +/area/centcom/bar) +"tH" = ( +/obj/effect/floor_decal/derelict/d10, +/turf/simulated/floor/tiled, +/area/centcom/terminal) +"tJ" = ( +/obj/effect/floor_decal/derelict/d5, +/turf/simulated/floor/tiled, +/area/centcom/terminal) +"tL" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/structure/table/marble, +/obj/machinery/reagentgrinder, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"tM" = ( +/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, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"tO" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-22" + }, +/turf/simulated/floor/tiled, +/area/centcom/command) +"tP" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/machinery/appliance/cooker/oven, +/obj/machinery/camera/network/crescent{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"tQ" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/machinery/appliance/cooker/grill, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"tT" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/shuttle/ccboat) +"tU" = ( +/turf/simulated/floor/tiled, +/area/centcom/command) +"tW" = ( +/obj/machinery/fitness/punching_bag/clown, +/turf/simulated/floor/tiled/freezer, +/area/centcom/bathroom) +"tX" = ( +/obj/structure/table/standard, +/obj/machinery/light, +/obj/structure/closet/secure_closet/medical_wall{ + name = "anesthetic closet"; + pixel_x = -32; + req_access = list(29) + }, +/obj/item/weapon/tank/anesthetic, +/obj/item/weapon/tank/anesthetic, +/obj/item/weapon/tank/anesthetic, +/obj/item/clothing/mask/breath/medical, +/obj/item/clothing/mask/breath/medical, +/obj/item/clothing/mask/breath/medical, +/obj/item/weapon/storage/box/gloves, +/obj/item/device/defib_kit/jumper_kit, +/turf/simulated/floor/tiled{ + icon_state = "white" + }, +/area/centcom/control) +"tY" = ( +/turf/simulated/floor/tiled/freezer, +/area/centcom/bathroom) +"tZ" = ( +/obj/machinery/optable{ + name = "Robotics Operating Table" + }, +/turf/simulated/floor/tiled{ + icon_state = "white" + }, +/area/centcom/control) +"ua" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/computer/operating{ + dir = 1; + name = "Robotics Operating Computer" + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/tiled{ + icon_state = "white" + }, +/area/centcom/control) +"ub" = ( +/obj/machinery/transhuman/synthprinter, +/turf/simulated/floor/tiled, +/area/centcom/control) +"uf" = ( +/turf/simulated/wall/rshull, +/area/shuttle/ccboat) +"ug" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/centcom/control) +"uh" = ( +/mob/living/silicon/decoy{ + name = "A.L.I.C.E." + }, +/turf/simulated/floor/tiled, +/area/centcom/control) +"un" = ( +/obj/machinery/computer/secure_data{ + dir = 1 + }, +/turf/simulated/shuttle/floor, +/area/centcom/terminal/shuttlefluff) +"up" = ( +/obj/machinery/door/airlock/highsecurity{ + desc = "SHIT IS LIT"; + name = "TACTICAL TOILET"; + req_one_access = newlist() + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"uy" = ( +/obj/effect/floor_decal/emblem/orangeline, +/turf/simulated/floor/tiled, +/area/centcom/terminal) +"uz" = ( +/turf/unsimulated/floor/techfloor_grid, +/area/tdome/tdome1) +"uB" = ( +/obj/machinery/door/blast/regular, +/turf/unsimulated/floor/techfloor_grid, +/area/centcom/terminal) +"uD" = ( +/obj/machinery/door/window{ + dir = 2; + name = "AI Core Door"; + req_access = list(109) + }, +/turf/simulated/floor/tiled, +/area/centcom/control) +"uE" = ( +/obj/effect/floor_decal/industrial/outline, +/obj/structure/bed/chair, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"uG" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/ammo_magazine/m545saw/ap, +/obj/item/ammo_magazine/m545saw/ap, +/obj/item/ammo_magazine/m545saw, +/obj/item/ammo_magazine/m545saw, +/obj/item/ammo_magazine/m545saw, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"uI" = ( +/obj/structure/sign/painting/public{ + pixel_x = 30 + }, +/turf/simulated/floor/wood, +/area/centcom/restaurant) +"uK" = ( +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tram" + }, +/obj/structure/closet/walllocker_double/hydrant/west, +/turf/simulated/floor/tiled, +/area/shuttle/escape{ + base_turf = /turf/simulated/floor/tiled/techfloor/grid + }) +"uL" = ( +/turf/unsimulated/wall, +/area/centcom/control) +"uP" = ( +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "residential"; + name = "Security Door"; + opacity = 0 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled, +/area/centcom/security{ + name = "\improper CentCom Residential Security" + }) +"uV" = ( +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tram" + }, +/obj/machinery/door/airlock/glass_external{ + frequency = 1380; + icon_state = "door_locked"; + id_tag = "escape_shuttle_hatch_offsite"; + locked = 1; + name = "Shuttle Hatch" + }, +/turf/simulated/floor/tiled, +/area/shuttle/escape{ + base_turf = /turf/simulated/floor/tiled/techfloor/grid + }) +"vb" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/weapon/gun/projectile/automatic/l6_saw, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"vc" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"vg" = ( +/obj/machinery/door/blast/regular{ + id = "HEAVY"; + name = "HEAVY ORDINANCE" + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"vi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 6 + }, +/turf/simulated/floor/tiled/eris/dark/cargo, +/area/shuttle/ccboat) +"vj" = ( +/obj/structure/table/rack, +/obj/item/clothing/gloves/arm_guard/riot, +/obj/item/clothing/shoes/leg_guard/riot, +/obj/item/clothing/suit/armor/riot/alt, +/obj/item/clothing/head/helmet/riot, +/obj/item/weapon/shield/riot, +/obj/item/weapon/melee/baton/loaded, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"vk" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/weapon/storage/box/shotgunammo/large, +/obj/item/weapon/storage/box/shotgunammo/large, +/obj/item/weapon/storage/box/shotgunammo/large, +/obj/item/weapon/storage/box/shotgunammo/large, +/obj/item/weapon/storage/box/shotgunammo/large, +/obj/item/weapon/storage/box/shotgunammo/large, +/obj/item/weapon/storage/box/shotgunammo/large, +/obj/item/weapon/storage/box/shotgunammo/large, +/obj/item/weapon/storage/box/shotgunammo/large, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"vm" = ( +/obj/machinery/door/airlock/glass_mining{ + id_tag = "cargodoor"; + name = "Cargo Office"; + req_access = list(31); + req_one_access = list() + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled, +/area/centcom) +"vn" = ( +/obj/structure/table/rack, +/obj/item/clothing/gloves/arm_guard/laserproof, +/obj/item/clothing/shoes/leg_guard/laserproof, +/obj/item/clothing/suit/armor/laserproof, +/obj/item/clothing/head/helmet/laserproof, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/camera/network/crescent, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"vo" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/yellow/diagonal, +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/centcom/control) +"vp" = ( +/obj/machinery/computer/card, +/obj/effect/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Residential Security" + }) +"vq" = ( +/obj/structure/bed/chair/shuttle, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/shuttle/ccboat) +"vs" = ( +/obj/machinery/vending/cigarette, +/turf/simulated/floor/carpet, +/area/centcom/restaurant) +"vu" = ( +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"vw" = ( +/obj/effect/floor_decal/industrial/outline, +/turf/simulated/floor/tiled, +/area/centcom/security{ + name = "\improper CentCom Residential Security" + }) +"vy" = ( +/obj/effect/shuttle_landmark{ + base_area = /area/centcom/simulated/evac; + base_turf = /turf/unsimulated/floor/steel; + docking_controller = null; + landmark_tag = "escapepod1_cc"; + name = "Centcom Recovery Area" + }, +/turf/simulated/floor/tiled, +/area/centcom/terminal) +"vG" = ( +/obj/item/modular_computer/console/preset/civilian{ + dir = 8 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/eris/dark/cargo, +/area/shuttle/ccboat) +"vL" = ( +/obj/structure/curtain/open/shower, +/obj/machinery/shower{ + dir = 1 + }, +/turf/simulated/floor/tiled/freezer, +/area/centcom/security) +"vM" = ( +/obj/effect/floor_decal/industrial/warning/dust/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/centcom/terminal) +"vR" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-10" + }, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"vS" = ( +/obj/machinery/camera/network/crescent, +/turf/simulated/floor/wood, +/area/centcom/restaurant) +"vV" = ( +/obj/effect/floor_decal/corner/yellow/diagonal, +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/centcom/control) +"vW" = ( +/obj/machinery/door/blast/regular{ + id = "thunderdomehea"; + name = "Heavy Supply" + }, +/turf/unsimulated/floor/techfloor_grid, +/area/tdome/tdome1) +"vY" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/blast/angled/open{ + id = "ccshuttleshutter" + }, +/turf/simulated/floor, +/area/shuttle/ccboat) +"vZ" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 9 + }, +/obj/machinery/door/window/brigdoor/northleft{ + req_access = list(63); + req_one_access = list(1) + }, +/obj/item/weapon/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/weapon/pen, +/obj/machinery/button/remote/blast_door{ + id = "FrontlockC"; + name = "Colony Entrance Lockdown"; + pixel_x = 6; + pixel_y = -5; + req_access = list(63); + req_one_access = list(1) + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "FrontlockC2"; + name = "Security Door"; + opacity = 0 + }, +/obj/machinery/button/remote/blast_door{ + id = "FrontlockBD"; + name = "Colony Entrance Bottom"; + pixel_x = -3; + pixel_y = -5; + req_access = list(63); + req_one_access = list(1) + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Security Arrivals" + }) +"wf" = ( +/obj/item/clothing/glasses/sunglasses/sechud/tactical, +/obj/item/clothing/gloves/tactical, +/obj/item/clothing/head/helmet/tactical, +/obj/item/clothing/mask/balaclava/tactical, +/obj/item/clothing/shoes/boots/tactical, +/obj/item/clothing/suit/armor/tactical, +/obj/item/clothing/under/tactical, +/obj/item/weapon/storage/belt/security/tactical, +/obj/structure/closet{ + desc = "It's a storage unit for standard-issue attire."; + name = "tactical equipment" + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/item/weapon/storage/backpack/dufflebag/syndie/ammo, +/obj/item/weapon/storage/backpack/satchel/sec, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"wg" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/weapon/storage/backpack/dufflebag/syndie/ammo, +/obj/item/weapon/storage/backpack/dufflebag/syndie/ammo, +/obj/item/weapon/storage/backpack/dufflebag/syndie/ammo, +/obj/item/weapon/storage/backpack/dufflebag/syndie/ammo, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"wi" = ( +/obj/structure/table/rack, +/obj/item/clothing/under/color/red, +/obj/item/clothing/shoes/brown, +/obj/item/clothing/suit/armor/vest, +/obj/item/clothing/head/helmet/swat, +/obj/item/weapon/gun/energy/laser, +/turf/unsimulated/floor/techfloor_grid, +/area/tdome/tdome1) +"wk" = ( +/obj/structure/table/rack, +/obj/item/clothing/under/color/green, +/obj/item/clothing/shoes/brown, +/obj/item/clothing/suit/armor/vest, +/obj/item/clothing/head/helmet/swat, +/obj/item/weapon/gun/energy/laser, +/turf/unsimulated/floor/techfloor_grid, +/area/tdome/tdome1) +"wm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/turf/simulated/floor/tiled/eris/dark/cargo, +/area/shuttle/ccboat) +"wn" = ( +/obj/effect/floor_decal/emblem/stellardelight{ + dir = 6 + }, +/turf/simulated/shuttle/floor/white, +/area/centcom/terminal/shuttlefluff) +"wr" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/air, +/turf/simulated/floor/tiled/eris/dark/cargo, +/area/shuttle/ccboat) +"ws" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"wt" = ( +/obj/machinery/newscaster{ + pixel_y = 30 + }, +/turf/simulated/floor/wood, +/area/centcom/restaurant) +"wu" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/centcom/control) +"ww" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + frequency = 1380; + id_tag = null + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/turf/simulated/floor/airless, +/area/shuttle/ccboat) +"wx" = ( +/obj/structure/bed/chair/shuttle{ + dir = 1 + }, +/obj/effect/floor_decal/emblem/stellardelight{ + dir = 5 + }, +/turf/simulated/shuttle/floor/white, +/area/centcom/terminal/shuttlefluff) +"wy" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"wA" = ( +/obj/machinery/cryopod/robot/door/gateway, +/turf/simulated/floor/tiled/dark, +/area/centcom/living) +"wC" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/ammo_magazine/m95, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"wD" = ( +/obj/structure/sign/directions/elevator{ + pixel_x = -30 + }, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"wF" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/shuttle/centcom/ccbay) +"wG" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/random/multiple/corp_crate, +/turf/simulated/floor/tiled, +/area/centcom) +"wH" = ( +/obj/machinery/computer/teleporter{ + dir = 2 + }, +/turf/simulated/floor/tiled, +/area/centcom) +"wP" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/snacks/cheeseburger{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/reagent_containers/food/snacks/cheeseburger, +/turf/simulated/floor/wood, +/area/centcom/restaurant) +"wT" = ( +/obj/structure/table/standard, +/obj/item/weapon/stock_parts/manipulator, +/obj/item/weapon/stock_parts/capacitor, +/obj/item/weapon/stock_parts/capacitor, +/obj/item/weapon/stock_parts/manipulator, +/obj/item/weapon/stock_parts/micro_laser, +/obj/item/weapon/stock_parts/micro_laser, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"wU" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"wX" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 5 + }, +/obj/machinery/door/window/brigdoor/northright{ + req_access = list(63); + req_one_access = list(1) + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "FrontlockC2"; + name = "Security Door"; + opacity = 0 + }, +/obj/machinery/computer/skills, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Security Arrivals" + }) +"wY" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/weapon/storage/box/sniperammo, +/obj/item/weapon/storage/box/sniperammo, +/obj/item/weapon/storage/box/sniperammo, +/obj/item/weapon/storage/box/sniperammo, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"xc" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/weapon/gun/projectile/heavysniper, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"xe" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/ammo_magazine/m9mmt, +/obj/item/ammo_magazine/m9mmt, +/obj/item/ammo_magazine/m9mmt, +/obj/item/ammo_magazine/m9mmt, +/obj/item/ammo_magazine/m9mmt, +/obj/item/ammo_magazine/m9mmt, +/obj/item/ammo_magazine/m9mmt, +/obj/item/ammo_magazine/m9mmt, +/obj/item/ammo_magazine/m9mmt, +/obj/item/ammo_magazine/m9mmt, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"xg" = ( +/obj/structure/closet/crate/bin, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/bathroom) +"xi" = ( +/obj/machinery/door/airlock{ + name = "Unit 1" + }, +/turf/simulated/floor/tiled/white, +/area/centcom/bathroom) +"xk" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"xt" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/ammo_magazine/m9mmt/rubber, +/obj/item/ammo_magazine/m9mmt/rubber, +/obj/item/ammo_magazine/m9mmt/rubber, +/obj/item/ammo_magazine/m9mmt/rubber, +/obj/item/ammo_magazine/m9mmt/rubber, +/obj/item/ammo_magazine/m9mmt/rubber, +/obj/item/ammo_magazine/m9mmt/rubber, +/obj/item/ammo_magazine/m9mmt/rubber, +/obj/item/ammo_magazine/m9mmt/rubber, +/obj/item/ammo_magazine/m9mmt/rubber, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"xu" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/ammo_magazine/m762, +/obj/item/ammo_magazine/m762, +/obj/item/ammo_magazine/m762, +/obj/item/ammo_magazine/m762, +/obj/item/ammo_magazine/m762, +/obj/item/ammo_magazine/m762, +/obj/item/ammo_magazine/m762/ap, +/obj/item/ammo_magazine/m762/ap, +/obj/item/ammo_magazine/m762/ap, +/obj/item/ammo_magazine/m762/ap, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"xw" = ( +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tram" + }, +/obj/structure/bed/chair/sofa/bench/left{ + dir = 4; + padding_color = "#99AAFF" + }, +/turf/simulated/floor/tiled, +/area/shuttle/escape{ + base_turf = /turf/simulated/floor/tiled/techfloor/grid + }) +"xz" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/weapon/gun/projectile/automatic/z8, +/obj/item/weapon/gun/projectile/automatic/z8, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"xE" = ( +/obj/machinery/button/remote/blast_door{ + id = "HEAVY"; + name = "SHIT IS LIT"; + pixel_y = -28; + req_access = list(3) + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"xF" = ( +/obj/machinery/media/jukebox/hacked, +/turf/simulated/floor/wood, +/area/centcom/restaurant) +"xG" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"xH" = ( +/turf/simulated/floor/tiled/steel, +/area/centcom) +"xJ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 4 + }, +/turf/simulated/wall/rshull, +/area/shuttle/ccboat) +"xK" = ( +/turf/simulated/floor/carpet, +/area/centcom/restaurant) +"xL" = ( +/obj/machinery/atmospherics/portables_connector/fuel{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/phoron, +/obj/effect/floor_decal/industrial/outline/red, +/obj/machinery/door/window/southright{ + dir = 8; + req_one_access = list(11,67) + }, +/turf/simulated/floor/tiled/eris/dark/cargo, +/area/shuttle/ccboat) +"xP" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/machinery/button/remote/blast_door{ + id = "TelelockdownC"; + name = "Teleporter Full Lockdown"; + pixel_x = 6; + pixel_y = -5; + req_access = list(63); + req_one_access = list(1) + }, +/obj/item/weapon/pen, +/turf/simulated/floor/tiled, +/area/centcom/command) +"xQ" = ( +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tram" + }, +/obj/machinery/light, +/obj/structure/bed/chair/sofa/bench/right{ + dir = 4; + padding_color = "#99AAFF" + }, +/turf/simulated/floor/tiled, +/area/shuttle/escape{ + base_turf = /turf/simulated/floor/tiled/techfloor/grid + }) +"xR" = ( +/obj/structure/bed/chair/wood/wings{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/centcom/restaurant) +"xS" = ( +/obj/structure/table/standard, +/obj/item/device/mmi/digital/posibrain, +/obj/item/device/robotanalyzer, +/turf/simulated/floor/tiled, +/area/centcom/control) +"xU" = ( +/obj/machinery/door/airlock/security{ + name = "Security" + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Residential Security" + }) +"xY" = ( +/obj/machinery/computer/card{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 9 + }, +/obj/item/device/radio/intercom{ + dir = 1; + frequency = 1475; + name = "Station Intercom (Security)"; + pixel_y = 27 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Security Arrivals" + }) +"yb" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad" + }, +/turf/simulated/shuttle/floor, +/area/shuttle/supply) +"ye" = ( +/obj/effect/floor_decal/sign/dock/one, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/centcom/terminal) +"yg" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/centcom/control) +"yh" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor, +/area/centcom/security{ + name = "\improper CentCom Security Arrivals" + }) +"yj" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/table/rack, +/obj/item/weapon/gun/energy/gun/nuclear, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"yu" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled{ + icon_state = "white" + }, +/area/centcom/control) +"yy" = ( +/obj/machinery/door/airlock/angled_bay/standard/glass{ + door_color = "#8c1d11"; + name = "Security Glass"; + req_access = list(1); + stripe_color = "#d27428" + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_red" + }, +/area/centcom/terminal/shuttlefluff) +"yB" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/snacks/fries, +/turf/simulated/floor/wood, +/area/centcom/restaurant) +"yC" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/weapon/gun/energy/gun, +/obj/item/weapon/gun/energy/gun, +/obj/item/weapon/gun/energy/gun, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"yD" = ( +/obj/machinery/button/remote/blast_door{ + id = "ArmouryC2"; + name = "Armoury Access"; + pixel_y = -28; + req_access = list(3) + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"yE" = ( +/obj/machinery/door/blast/regular{ + dir = 8; + id = "ArmouryC2"; + layer = 3.3; + name = "Armoury" + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"yF" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 9 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 9 + }, +/obj/machinery/vending/snack, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"yI" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/obj/machinery/vending/coffee, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"yN" = ( +/turf/simulated/floor/grass, +/area/centcom/main_hall) +"yO" = ( +/obj/structure/bed/chair/wood/wings{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/centcom/restaurant) +"yR" = ( +/obj/structure/bed/chair/shuttle, +/turf/simulated/shuttle/floor{ + icon_state = "floor_red" + }, +/area/centcom/terminal/shuttlefluff) +"yT" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/obj/machinery/camera/network/crescent, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"yU" = ( +/obj/structure/table/marble, +/obj/item/weapon/reagent_containers/food/drinks/glass2/square{ + pixel_x = 8; + pixel_y = 8 + }, +/obj/item/weapon/reagent_containers/food/drinks/glass2/square{ + pixel_y = 8 + }, +/obj/item/weapon/reagent_containers/food/drinks/glass2/square{ + pixel_x = -8; + pixel_y = 8 + }, +/obj/item/weapon/reagent_containers/food/drinks/glass2/square{ + pixel_x = 8; + pixel_y = 4 + }, +/obj/item/weapon/reagent_containers/food/drinks/glass2/square{ + pixel_y = 4 + }, +/obj/item/weapon/reagent_containers/food/drinks/glass2/square{ + pixel_x = -8; + pixel_y = 4 + }, +/turf/simulated/floor/wood, +/area/centcom/restaurant) +"yV" = ( +/obj/machinery/status_display{ + pixel_y = 29 + }, +/turf/simulated/floor/wood, +/area/centcom/restaurant) +"yX" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/green, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"yY" = ( +/obj/machinery/disease2/diseaseanalyser, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"yZ" = ( +/obj/machinery/disease2/incubator, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"za" = ( +/obj/effect/floor_decal/industrial/warning/dust/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/centcom/terminal) +"zb" = ( +/obj/machinery/door/airlock/angled_bay/standard/glass{ + door_color = "#9fccc7"; + name = "Airlock"; + req_access = null; + stripe_color = "#ffffff" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/shuttle/ccboat) +"ze" = ( +/turf/simulated/floor/tiled, +/area/centcom) +"zg" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/centcom/terminal) +"zi" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/centcom/terminal) +"zl" = ( +/obj/effect/floor_decal/industrial/warning/dust/corner, +/obj/machinery/light/flamp/noshade, +/turf/simulated/floor/tiled, +/area/centcom/terminal) +"zq" = ( +/obj/structure/table/rack{ + dir = 4 + }, +/obj/item/clothing/suit/space/void/security, +/obj/item/clothing/suit/space/void/security, +/obj/item/clothing/head/helmet/space/void/security, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"zr" = ( +/obj/structure/flora/ausbushes/ppflowers, +/turf/simulated/floor/grass, +/area/centcom/main_hall) +"zt" = ( +/obj/machinery/door/airlock/angled_bay/standard/glass{ + door_color = "#ffffff"; + name = "Medical Glass"; + req_access = list(5); + stripe_color = "#5a96bb" + }, +/turf/simulated/shuttle/floor/white, +/area/centcom/terminal/shuttlefluff) +"zy" = ( +/obj/effect/floor_decal/derelict/d11, +/turf/simulated/floor/tiled, +/area/centcom/terminal) +"zD" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/suit_cycler/security{ + req_access = null + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"zE" = ( +/obj/machinery/teleport/station, +/turf/simulated/floor/tiled, +/area/centcom) +"zG" = ( +/obj/structure/bed/chair/wood/wings, +/turf/simulated/floor/wood, +/area/centcom/restaurant) +"zH" = ( +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tram" + }, +/obj/structure/bed/chair/sofa/bench/left{ + dir = 4; + padding_color = "#99AAFF" + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/shuttle/escape{ + base_turf = /turf/simulated/floor/tiled/techfloor/grid + }) +"zJ" = ( +/obj/structure/table/standard, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/stock_parts/scanning_module{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/weapon/stock_parts/scanning_module, +/obj/machinery/light{ + dir = 4 + }, +/obj/item/clothing/glasses/omnihud/rnd, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"zM" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"zN" = ( +/obj/machinery/door/airlock/angled_bay/external/glass{ + dir = 4; + frequency = 1380; + id_tag = null; + locked = 1; + name = "Docking Port Airlock" + }, +/obj/effect/map_helper/airlock/door/ext_door, +/turf/simulated/floor/tiled/steel_ridged, +/area/shuttle/ccboat) +"zR" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/shuttle/floor/white, +/area/centcom/terminal/shuttlefluff) +"zX" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/sign/nanotrasen{ + plane = -34 + }, +/turf/simulated/floor, +/area/centcom/control) +"zZ" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/reinforced, +/area/centcom) +"Ab" = ( +/obj/structure/table/rack, +/obj/item/weapon/gun/projectile/shotgun/pump/USDF, +/obj/item/weapon/gun/projectile/shotgun/pump/USDF, +/obj/item/weapon/gun/projectile/shotgun/pump/USDF, +/obj/item/weapon/gun/projectile/shotgun/pump/USDF, +/obj/item/weapon/gun/projectile/shotgun/pump/USDF, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Ac" = ( +/obj/structure/table/rack, +/obj/item/weapon/gun/projectile/automatic/wt550/lethal, +/obj/item/weapon/gun/projectile/automatic/wt550/lethal, +/obj/item/weapon/gun/projectile/automatic/wt550/lethal, +/obj/item/weapon/gun/projectile/automatic/wt550/lethal, +/obj/item/weapon/gun/projectile/automatic/wt550/lethal, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/camera/network/crescent, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Af" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 9 + }, +/obj/machinery/turretid/stun{ + check_access = 0; + check_anomalies = 0; + check_records = 0; + control_area = "\improper Main Hallway"; + pixel_y = 32; + req_access = list(101); + req_one_access = list(101) + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/command) +"Ag" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/structure/closet/secure_closet/nanotrasen_commander, +/obj/item/clothing/suit/armor/swat, +/obj/item/clothing/head/helmet/space/deathsquad{ + name = "swat helmet" + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/command) +"Ah" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/structure/table/woodentable, +/obj/item/weapon/storage/box/handcuffs, +/turf/simulated/floor/tiled/dark, +/area/centcom/command) +"Ai" = ( +/obj/machinery/sleep_console{ + dir = 4 + }, +/turf/simulated/shuttle/floor/white, +/area/centcom/terminal/shuttlefluff) +"Ak" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood, +/area/centcom/restaurant) +"Am" = ( +/turf/simulated/floor/wood, +/area/centcom/restaurant) +"An" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor, +/area/centcom/restaurant) +"Ao" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 10 + }, +/obj/structure/closet/secure_closet/nanotrasen_security, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Residential Security" + }) +"Au" = ( +/turf/simulated/floor/lino, +/area/centcom/restaurant) +"Av" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/l3closet/security, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Aw" = ( +/obj/structure/bed/chair/wood/wings{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/centcom/restaurant) +"AE" = ( +/obj/structure/table/rack, +/obj/item/clothing/mask/gas{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/clothing/mask/gas{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/item/clothing/mask/gas{ + pixel_x = -3; + pixel_y = -3 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/extinguisher_cabinet{ + pixel_x = 5; + pixel_y = 28 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"AF" = ( +/obj/structure/table/standard, +/obj/item/weapon/reagent_containers/food/drinks/bottle/small/beer, +/obj/item/weapon/reagent_containers/food/drinks/bottle/small/beer, +/obj/item/weapon/reagent_containers/food/drinks/bottle/small/beer, +/obj/item/weapon/flame/lighter/zippo, +/obj/item/weapon/storage/fancy/cigarettes, +/turf/unsimulated/floor/steel, +/area/tdome/tdomeobserve) +"AG" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/captain, +/turf/simulated/floor/carpet, +/area/centcom/control) +"AH" = ( +/obj/item/weapon/reagent_containers/food/drinks/cans/cola, +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/yellow/diagonal, +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/centcom/control) +"AI" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"AJ" = ( +/obj/structure/table/standard, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/pen/blue, +/turf/simulated/floor/tiled, +/area/centcom/control) +"AK" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/green/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"AM" = ( +/obj/structure/AIcore/deactivated, +/turf/simulated/shuttle/floor, +/area/centcom/terminal/shuttlefluff) +"AO" = ( +/obj/structure/kitchenspike, +/turf/simulated/floor/tiled/white, +/area/centcom/bar) +"AS" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/bed/chair/shuttle, +/turf/simulated/shuttle/floor, +/area/centcom/terminal/shuttlefluff) +"Bb" = ( +/obj/machinery/camera/network/crescent, +/turf/simulated/floor/tiled/freezer, +/area/centcom/security) +"Bc" = ( +/obj/structure/panic_button{ + pixel_x = -32 + }, +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled/eris/dark/cargo, +/area/shuttle/ccboat) +"Bf" = ( +/turf/simulated/floor/reinforced, +/area/centcom) +"Bn" = ( +/obj/structure/bed/chair/shuttle{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/shuttle/ccboat) +"Bp" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/shuttle/centcom/ccbay) +"Bu" = ( +/obj/machinery/door/airlock/freezer{ + name = "Kitchen cold room"; + req_access = list(28) + }, +/turf/simulated/floor/tiled/white, +/area/centcom/bar) +"BC" = ( +/obj/machinery/sleep_console{ + dir = 4 + }, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"BD" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/dispenser/oxygen, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"BJ" = ( +/obj/machinery/door/airlock/glass_external{ + frequency = 1380; + icon_state = "door_locked"; + id_tag = "supply_shuttle_hatch"; + locked = 1; + name = "Shuttle Hatch" + }, +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad2" + }, +/turf/simulated/shuttle/plating, +/area/shuttle/supply) +"BM" = ( +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tram" + }, +/obj/structure/bed/chair/shuttle{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/shuttle/escape{ + base_turf = /turf/simulated/floor/tiled/techfloor/grid + }) +"BR" = ( +/obj/structure/table/rack, +/obj/item/weapon/gun/projectile/shotgun/pump, +/obj/item/weapon/gun/projectile/shotgun/pump, +/obj/item/weapon/gun/projectile/shotgun/pump, +/obj/item/weapon/gun/projectile/shotgun/pump, +/obj/item/weapon/gun/projectile/shotgun/pump, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"BT" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/command) +"Cj" = ( +/turf/simulated/shuttle/floor, +/area/shuttle/supply) +"Cl" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1; + frequency = 1380; + id_tag = null + }, +/obj/effect/map_helper/airlock/atmos/pump_out_internal, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + frequency = 1380; + id_tag = "ccboat"; + pixel_y = 29 + }, +/turf/simulated/floor/airless, +/area/shuttle/ccboat) +"Cn" = ( +/turf/unsimulated/wall, +/area/centcom/main_hall) +"Cv" = ( +/turf/simulated/shuttle/wall, +/area/shuttle/supply) +"Cy" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/command) +"CD" = ( +/obj/machinery/flasher/portable, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/window/reinforced, +/turf/simulated/floor/tiled, +/area/centcom/security) +"CE" = ( +/obj/machinery/computer/card{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 9 + }, +/obj/item/device/radio/intercom{ + dir = 1; + frequency = 1475; + name = "Station Intercom (Security)"; + pixel_y = 27 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Residential Security" + }) +"CF" = ( +/obj/structure/window/reinforced, +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = 30 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"CG" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 6 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2, +/obj/effect/floor_decal/corner/purple/bordercorner2, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"CK" = ( +/obj/structure/bed/chair/bay/shuttle{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/shuttle/ccboat) +"CL" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/centcom/terminal) +"CP" = ( +/obj/structure/sign/painting/public{ + pixel_x = -30 + }, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"CR" = ( +/obj/machinery/porta_turret/crescent{ + density = 1 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled, +/area/centcom/security{ + name = "\improper CentCom Residential Security" + }) +"CS" = ( +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tram" + }, +/obj/structure/bed/chair/sofa/bench/right{ + dir = 8; + padding_color = "#99AAFF" + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/random/forgotten_tram, +/turf/simulated/floor/tiled, +/area/shuttle/escape{ + base_turf = /turf/simulated/floor/tiled/techfloor/grid + }) +"CV" = ( +/obj/machinery/door/airlock/glass_medical{ + name = "Virology Laboratory" + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"CW" = ( +/turf/simulated/floor/tiled/techfloor/grid, +/area/centcom/terminal) +"CX" = ( +/obj/effect/floor_decal/rust, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/centcom/terminal) +"CZ" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Da" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/lino, +/area/centcom/restaurant) +"Dc" = ( +/turf/simulated/wall/fancy_shuttle{ + fancy_shuttle_tag = "tram" + }, +/area/shuttle/escape{ + base_turf = /turf/simulated/floor/tiled/techfloor/grid + }) +"Dd" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table/glass, +/obj/item/weapon/storage/box/monkeycubes, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 5 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Dg" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor, +/area/centcom/security{ + name = "\improper CentCom Residential Security" + }) +"Dh" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/brigdoor{ + dir = 8; + req_access = list(63); + req_one_access = newlist() + }, +/obj/machinery/button/remote/blast_door{ + id = "residential"; + name = "Security Doors"; + pixel_x = 6; + pixel_y = -5; + req_access = list(63); + req_one_access = list(1) + }, +/obj/item/weapon/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/weapon/pen, +/obj/effect/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Residential Security" + }) +"Di" = ( +/obj/machinery/telecomms/receiver/preset_cent, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"Dk" = ( +/obj/machinery/cryopod/robot/door/dorms, +/turf/simulated/floor/tiled, +/area/centcom/living) +"Dl" = ( +/obj/machinery/telecomms/bus/preset_cent, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"Dm" = ( +/obj/machinery/sleeper{ + dir = 4 + }, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Dp" = ( +/obj/machinery/telecomms/server/presets/centcomm, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"Dq" = ( +/obj/machinery/computer/card{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/centcom/control) +"Dr" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/item/weapon/pen, +/turf/simulated/floor/carpet, +/area/centcom/command) +"Ds" = ( +/obj/structure/table/rack{ + dir = 4 + }, +/obj/item/clothing/suit/space/void/security, +/obj/item/clothing/suit/space/void/security, +/obj/item/clothing/head/helmet/space/void/security, +/obj/item/clothing/head/helmet/space/void/security, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Dt" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "Secure Armoury Section"; + req_access = list(58); + req_one_access = list(19) + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Du" = ( +/obj/machinery/computer/security{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/command) +"Dv" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/structure/sink/kitchen{ + pixel_y = 28 + }, +/obj/machinery/button/remote/blast_door{ + id = "kitchenC"; + name = "Kitchen Shutters"; + pixel_x = -26; + pixel_y = 23 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"Dw" = ( +/obj/structure/bed/chair/comfy/black, +/turf/simulated/floor/tiled/dark, +/area/centcom/command) +"Dx" = ( +/obj/structure/closet/wardrobe/orange, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Dy" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "FrontlockC"; + name = "Security Doors"; + opacity = 0 + }, +/obj/structure/fans/tiny, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"Dz" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"DA" = ( +/obj/structure/closet/radiation, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"DB" = ( +/obj/structure/table/glass, +/obj/machinery/computer/med_data/laptop, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 9 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"DC" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 4 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/centcom/terminal) +"DD" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/machinery/computer/arcade{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"DF" = ( +/obj/item/weapon/stool/padded{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"DG" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/bordercorner2{ + dir = 8 + }, +/obj/machinery/computer/centrifuge, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"DH" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"DI" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"DJ" = ( +/obj/structure/table/reinforced, +/turf/simulated/floor/tiled, +/area/centcom/control) +"DK" = ( +/obj/machinery/camera/network/crescent{ + dir = 8 + }, +/obj/machinery/computer/secure_data{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/centcom/control) +"DL" = ( +/obj/item/weapon/storage/box/gloves{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/weapon/storage/box/masks, +/obj/structure/table/glass, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"DO" = ( +/obj/structure/table/rack, +/obj/item/weapon/gun/projectile/automatic/bullpup, +/obj/item/weapon/gun/projectile/automatic/bullpup, +/obj/item/weapon/gun/projectile/automatic/bullpup, +/obj/item/weapon/gun/projectile/automatic/bullpup, +/obj/item/weapon/gun/projectile/automatic/bullpup, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"DP" = ( +/obj/structure/table/reinforced, +/turf/simulated/shuttle/floor{ + icon_state = "floor_red" + }, +/area/centcom/terminal/shuttlefluff) +"DR" = ( +/obj/structure/reagent_dispensers/water_cooler/full, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 10 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/purple/bordercorner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/purple/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"DS" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/command) +"DT" = ( +/obj/structure/toilet{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/centcom/security) +"DU" = ( +/obj/structure/table/woodentable, +/obj/item/device/flashlight/lamp/green{ + pixel_x = 10; + pixel_y = 12 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/command) +"DV" = ( +/obj/structure/table/woodentable, +/obj/machinery/computer/skills{ + pixel_y = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/command) +"DW" = ( +/obj/machinery/computer/shuttle_control/explore/ccboat{ + dir = 4 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/eris/dark/cargo, +/area/shuttle/ccboat) +"DX" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/structure/table/woodentable{ + desc = "It's a table..it has some scratch marks 'the commander likes to fuck me here'." + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/command) +"DZ" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/head/greenbandana, +/obj/effect/floor_decal/borderfloorblack{ + dir = 5 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Eb" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 10 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 10 + }, +/obj/machinery/computer/arcade{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Ec" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/structure/table/glass, +/obj/item/weapon/storage/firstaid/fire, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Ef" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Residential Security" + }) +"Eg" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/green/border, +/obj/item/weapon/stool/padded{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Eh" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/machinery/vending/dinnerware, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"Ei" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/green, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/green/border, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Ek" = ( +/obj/structure/table/rack, +/obj/item/weapon/gun/energy/laser, +/obj/item/weapon/gun/energy/laser, +/obj/item/weapon/gun/energy/laser, +/obj/item/weapon/gun/energy/laser, +/obj/item/weapon/gun/energy/laser, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"El" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 10 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Em" = ( +/obj/machinery/telecomms/broadcaster/preset_cent, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"En" = ( +/obj/structure/bed/chair/office/dark, +/obj/machinery/button/remote/blast_door{ + desc = "A remote control switch for port-side blast doors."; + id = "CentComPort"; + name = "Security Doors"; + pixel_x = -12; + pixel_y = -25; + req_access = list(63); + req_one_access = list(1) + }, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/blue/bordercorner, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Eo" = ( +/obj/machinery/telecomms/processor/preset_cent, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"Eq" = ( +/obj/structure/table/rack, +/obj/item/weapon/storage/box/stunshells/large, +/obj/item/weapon/storage/box/stunshells/large, +/obj/item/weapon/storage/box/stunshells/large, +/obj/item/weapon/storage/box/stunshells/large, +/obj/item/weapon/storage/box/stunshells/large, +/obj/item/weapon/storage/box/stunshells/large, +/obj/item/weapon/storage/box/stunshells/large, +/obj/item/weapon/storage/box/stunshells/large, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Et" = ( +/obj/structure/closet/bombclosetsecurity, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/window/reinforced, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Ev" = ( +/obj/structure/bed/chair/shuttle{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/shuttle/ccboat) +"Ew" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Ex" = ( +/obj/structure/urinal{ + pixel_y = 31 + }, +/turf/simulated/floor/tiled/freezer, +/area/centcom/security) +"EA" = ( +/turf/unsimulated/floor/steel, +/area/centcom/control) +"EB" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/bed/chair/shuttle{ + dir = 8 + }, +/turf/simulated/shuttle/floor/white, +/area/centcom/terminal/shuttlefluff) +"EC" = ( +/obj/machinery/telecomms/hub/preset_cent, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"ED" = ( +/obj/structure/kitchenspike, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/control) +"EE" = ( +/obj/machinery/telecomms/relay/preset/station, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"EF" = ( +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tram" + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/shuttle/escape{ + base_turf = /turf/simulated/floor/tiled/techfloor/grid + }) +"EG" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/purple/border, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"EH" = ( +/obj/structure/toilet, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"EI" = ( +/obj/machinery/computer/station_alert{ + dir = 1 + }, +/turf/simulated/shuttle/floor, +/area/centcom/terminal/shuttlefluff) +"EJ" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/sign/warning/lethal_turrets, +/turf/simulated/floor, +/area/centcom/control) +"EK" = ( +/obj/structure/table/reinforced, +/obj/machinery/computer/skills, +/turf/simulated/floor/tiled, +/area/centcom/control) +"EL" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"EM" = ( +/obj/structure/table/rack, +/obj/item/weapon/gun/projectile/automatic/battlerifle, +/obj/item/weapon/gun/projectile/automatic/battlerifle, +/obj/item/weapon/gun/projectile/automatic/battlerifle, +/obj/item/weapon/gun/projectile/automatic/battlerifle, +/obj/item/weapon/gun/projectile/automatic/battlerifle, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"EO" = ( +/obj/effect/floor_decal/corner_steel_grid/diagonal, +/turf/simulated/floor/tiled, +/area/centcom/terminal) +"EQ" = ( +/obj/structure/table/standard, +/obj/item/device/taperecorder, +/obj/item/device/megaphone, +/obj/item/weapon/packageWrap, +/obj/item/weapon/storage/box, +/obj/item/weapon/hand_labeler, +/obj/item/device/universal_translator, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"ET" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/command) +"EU" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/structure/table/woodentable, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/folder/red_hos, +/obj/item/weapon/pen/multi, +/turf/simulated/floor/tiled/dark, +/area/centcom/command) +"EV" = ( +/obj/machinery/door/airlock/medical{ + name = "Virology Access"; + req_access = list(5) + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"EW" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/machinery/camera/network/crescent, +/turf/simulated/floor/tiled{ + icon_state = "white" + }, +/area/centcom/living) +"EY" = ( +/obj/machinery/flasher/portable, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Fa" = ( +/obj/structure/window/reinforced, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Fb" = ( +/obj/machinery/airlock_sensor{ + dir = 4; + pixel_x = -24 + }, +/obj/effect/map_helper/airlock/sensor/int_sensor, +/turf/simulated/floor/tiled/eris/dark/cargo, +/area/shuttle/ccboat) +"Fe" = ( +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 26 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Ff" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular{ + id = "CentComPort"; + name = "Security Doors" + }, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"Fg" = ( +/obj/machinery/light/flamp/noshade, +/turf/simulated/floor/grass, +/area/centcom/main_hall) +"Fh" = ( +/obj/structure/table/rack, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/clothing/gloves/arm_guard/riot, +/obj/item/clothing/shoes/leg_guard/riot, +/obj/item/clothing/suit/armor/riot/alt, +/obj/item/clothing/head/helmet/riot, +/obj/item/weapon/shield/riot, +/obj/item/weapon/melee/baton/loaded, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Fi" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 10 + }, +/obj/structure/closet/crate/bin, +/turf/simulated/floor/tiled/dark, +/area/centcom/command) +"Fj" = ( +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/blue/border, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/command) +"Fk" = ( +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/blue/border, +/obj/effect/floor_decal/borderfloorblack/corner2, +/obj/effect/floor_decal/corner/blue/bordercorner2, +/turf/simulated/floor/tiled/dark, +/area/centcom/command) +"Fl" = ( +/obj/structure/railing, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor/orange{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/centcom/terminal) +"Fn" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/clothing/suit/storage/vest/heavy/officer, +/obj/item/clothing/suit/storage/vest/heavy/officer, +/obj/item/clothing/suit/storage/vest/heavy/officer, +/obj/item/clothing/suit/storage/vest/heavy/officer, +/obj/item/clothing/suit/storage/vest/heavy/officer, +/obj/item/clothing/suit/storage/vest/heavy/officer, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Fq" = ( +/obj/effect/floor_decal/industrial/warning/dust/corner, +/turf/simulated/floor/tiled, +/area/centcom/terminal) +"Fu" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Fv" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/snacks/meatballsoup, +/turf/simulated/floor/wood, +/area/centcom/restaurant) +"Fy" = ( +/obj/structure/closet/l3closet/virology, +/obj/item/clothing/mask/gas, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Fz" = ( +/obj/structure/table/reinforced, +/obj/item/device/camera, +/obj/item/weapon/storage/box/ids, +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Residential Security" + }) +"FC" = ( +/obj/structure/table/standard, +/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone, +/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = 7; + pixel_y = 1 + }, +/obj/item/weapon/tool/wrench, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"FD" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/machinery/vending/coffee, +/turf/simulated/floor/tiled, +/area/centcom/command) +"FE" = ( +/obj/machinery/atmospherics/unary/freezer, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/machinery/camera/network/crescent, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"FF" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/sign/department/commander, +/turf/simulated/floor, +/area/centcom/command) +"FI" = ( +/obj/machinery/door/airlock/glass_security{ + name = "Security"; + req_access = newlist() + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"FK" = ( +/obj/structure/sign/department/armory, +/turf/simulated/floor/tiled, +/area/centcom/security) +"FL" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor/tiled, +/area/centcom/control) +"FM" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/oxygen/prechilled, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"FN" = ( +/obj/structure/table/rack, +/obj/item/clothing/gloves/arm_guard/bulletproof, +/obj/item/clothing/shoes/leg_guard/bulletproof, +/obj/item/clothing/suit/armor/bulletproof/alt, +/obj/item/clothing/head/helmet/bulletproof, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"FO" = ( +/obj/machinery/shower{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"FP" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Residential Security" + }) +"FS" = ( +/obj/structure/closet/l3closet/virology, +/obj/item/clothing/mask/gas, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"FT" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/ammo_magazine/m762, +/obj/item/ammo_magazine/m762, +/obj/item/ammo_magazine/m762, +/obj/item/ammo_magazine/m762, +/obj/item/ammo_magazine/m762, +/obj/item/ammo_magazine/m762, +/obj/item/ammo_magazine/m762, +/obj/item/ammo_magazine/m762, +/obj/item/ammo_magazine/m762/ap, +/obj/item/ammo_magazine/m762/ap, +/obj/item/ammo_magazine/m762/ap, +/obj/item/ammo_magazine/m762/ap, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"FU" = ( +/obj/machinery/door/blast/regular{ + dir = 8; + id = "ArmouryC4"; + layer = 3.3; + name = "Armoury" + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"FV" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/white, +/area/centcom/bathroom) +"FW" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/box/handcuffs, +/turf/simulated/floor/tiled, +/area/centcom/security) +"FX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"FY" = ( +/obj/structure/bed/chair/shuttle{ + dir = 1 + }, +/turf/simulated/shuttle/floor/white, +/area/centcom/terminal/shuttlefluff) +"FZ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Gb" = ( +/obj/effect/landmark{ + name = "tdome2" + }, +/turf/unsimulated/floor/techfloor_grid, +/area/tdome/tdome1) +"Gc" = ( +/obj/machinery/door/airlock/medical{ + name = "Morgue"; + req_access = list(6) + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/medical) +"Gd" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Gf" = ( +/obj/machinery/door/blast/regular{ + id = "ArmouryC"; + name = "Armoury" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Gg" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Gh" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/living) +"Gi" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 5 + }, +/obj/structure/closet/crate/bin, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Gj" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Gk" = ( +/obj/structure/closet/l3closet/virology, +/obj/item/clothing/mask/gas, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Gl" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/oxygen/prechilled, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 10 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Gm" = ( +/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 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Go" = ( +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Gp" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/centcom/command) +"Gq" = ( +/obj/structure/table/steel, +/obj/item/weapon/paper_bin{ + pixel_y = -6 + }, +/obj/item/device/camera{ + name = "Autopsy Camera"; + pixel_x = -2; + pixel_y = 7 + }, +/obj/item/weapon/pen/red, +/obj/item/weapon/pen/blue{ + pixel_x = 3; + pixel_y = -5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/medical) +"Gr" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/medical) +"Gs" = ( +/obj/structure/table/standard, +/obj/machinery/recharger, +/obj/item/weapon/cell/device/weapon{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/weapon/cell/device/weapon{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/cell/device/weapon, +/obj/item/weapon/cell/device/weapon{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/item/weapon/cell/device/weapon{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/weapon/cell/device/weapon{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/weapon/cell/device/weapon{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/weapon/cell/device/weapon{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/weapon/cell/device/weapon{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/weapon/cell/device/weapon{ + pixel_x = -2; + pixel_y = -2 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Gt" = ( +/obj/machinery/camera/network/crescent{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"Gu" = ( +/obj/machinery/button/remote/blast_door{ + id = "ArmouryC"; + name = "Armoury Access"; + pixel_y = -28; + req_access = list(3) + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Gv" = ( +/obj/machinery/door/blast/regular{ + id = "ArmouryC"; + name = "Armoury" + }, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Gw" = ( +/obj/machinery/button/remote/blast_door{ + id = "ArmouryC"; + name = "Armoury Access"; + pixel_y = -28; + req_access = list(3) + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Gy" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Gz" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 5 + }, +/obj/structure/filingcabinet, +/turf/simulated/floor/tiled/dark, +/area/centcom/command) +"GA" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full{ + maxhealth = 1e+007 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/firedoor/glass, +/turf/unsimulated/shuttle/plating, +/area/centcom) +"GD" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"GH" = ( +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "TelelockdownC"; + name = "Security Doors"; + opacity = 0 + }, +/turf/simulated/floor/tiled, +/area/centcom/living) +"GJ" = ( +/obj/machinery/door/blast/regular{ + id = "thunderdomeaxe"; + name = "Axe Supply" + }, +/turf/unsimulated/floor/techfloor_grid, +/area/tdome/tdome1) +"GL" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/turf/simulated/floor/reinforced, +/area/centcom) +"GM" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/simulated/floor/reinforced, +/area/centcom) +"GN" = ( +/turf/simulated/wall/fancy_shuttle/window{ + fancy_shuttle_tag = "tram" + }, +/area/shuttle/escape{ + base_turf = /turf/simulated/floor/tiled/techfloor/grid + }) +"GO" = ( +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"GP" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/simulated/floor/tiled{ + icon_state = "white" + }, +/area/tdome/tdomeobserve) +"GQ" = ( +/obj/effect/floor_decal/emblem/stellardelight{ + dir = 10 + }, +/turf/simulated/shuttle/floor/white, +/area/centcom/terminal/shuttlefluff) +"GS" = ( +/obj/structure/table/rack{ + dir = 4 + }, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"GT" = ( +/obj/effect/floor_decal/rust, +/obj/effect/floor_decal/industrial/warning/dust, +/turf/simulated/floor/tiled, +/area/centcom/terminal) +"GU" = ( +/obj/machinery/door/airlock{ + name = "Brig Restroom" + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"GV" = ( +/obj/structure/bed/chair/sofa/bench/right{ + padding_color = "#99AAFF" + }, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tram" + }, +/turf/simulated/floor/tiled, +/area/shuttle/escape{ + base_turf = /turf/simulated/floor/tiled/techfloor/grid + }) +"GW" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/reinforced, +/area/centcom) +"GX" = ( +/obj/structure/table/standard, +/obj/item/weapon/surgical/hemostat, +/obj/item/weapon/surgical/cautery, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Ha" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/centcom/terminal) +"Hb" = ( +/obj/structure/bed/chair/shuttle{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/shuttle/ccboat) +"Hc" = ( +/obj/structure/table/standard, +/obj/item/stack/medical/advanced/bruise_pack, +/obj/item/weapon/surgical/retractor, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Hd" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/structure/table/woodentable, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/command) +"Hf" = ( +/obj/effect/floor_decal/derelict/d1, +/turf/simulated/floor/tiled, +/area/centcom/terminal) +"Hg" = ( +/obj/structure/table/standard, +/obj/item/weapon/surgical/circular_saw{ + pixel_y = 8 + }, +/obj/item/weapon/surgical/scalpel, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/machinery/camera/network/crescent, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Hh" = ( +/obj/machinery/ntnet_relay, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"Hi" = ( +/obj/structure/table/woodentable, +/obj/machinery/cash_register/civilian, +/turf/simulated/floor/lino, +/area/centcom/restaurant) +"Hj" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"Hk" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"Hl" = ( +/obj/effect/floor_decal/industrial/warning/dust, +/turf/simulated/floor/tiled, +/area/centcom/terminal) +"Hn" = ( +/obj/machinery/computer/pod{ + id = "thunderdomegen"; + name = "Thunderdome General Supply" + }, +/turf/unsimulated/floor/steel, +/area/tdome/tdomeadmin) +"Hp" = ( +/obj/structure/table/standard, +/obj/item/weapon/surgical/surgicaldrill, +/obj/item/weapon/autopsy_scanner, +/obj/item/weapon/reagent_containers/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner"; + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/surgical/FixOVein, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/item/stack/nanopaste/advanced, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Hq" = ( +/obj/structure/closet/secure_closet/medical2, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 5 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Hr" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/structure/filingcabinet/filingcabinet, +/turf/simulated/floor/tiled, +/area/centcom/command) +"Hs" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 10 + }, +/obj/machinery/computer/transhuman/designer, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Hv" = ( +/turf/simulated/floor/tiled/freezer, +/area/centcom/security) +"Hw" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 1 + }, +/obj/machinery/camera/network/crescent, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 10 + }, +/obj/machinery/clonepod/transhuman/full, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Hy" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-22" + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 5 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 5 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Hz" = ( +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/orange/border, +/obj/effect/floor_decal/borderfloorblack/corner2, +/obj/effect/floor_decal/corner/orange/bordercorner2, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"HA" = ( +/obj/machinery/photocopier, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/machinery/camera/network/crescent, +/turf/simulated/floor/tiled, +/area/centcom/security) +"HD" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10, +/obj/machinery/camera/network/crescent, +/turf/simulated/floor/tiled, +/area/centcom/security{ + name = "\improper CentCom Residential Security" + }) +"HE" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/machinery/status_display{ + pixel_y = 29 + }, +/turf/simulated/floor/tiled, +/area/centcom/command) +"HF" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "TelelockdownC"; + name = "Security Doors"; + opacity = 0 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/living) +"HG" = ( +/obj/structure/shuttle/engine/heater, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/airless, +/area/shuttle/supply) +"HH" = ( +/obj/machinery/computer/security/telescreen/entertainment{ + icon_state = "frame"; + pixel_y = 30 + }, +/turf/simulated/floor/lino, +/area/centcom/command) +"HI" = ( +/obj/structure/bed/padded, +/obj/machinery/camera/network/crescent, +/obj/machinery/flasher{ + id = "CellC1"; + pixel_x = -28 + }, +/turf/simulated/floor/tiled, +/area/centcom/holding) +"HJ" = ( +/obj/structure/bed/padded, +/obj/machinery/camera/network/crescent, +/obj/machinery/flasher{ + id = "CellC2"; + pixel_x = -24; + pixel_y = 25 + }, +/turf/simulated/floor/tiled, +/area/centcom/holding) +"HK" = ( +/obj/structure/table/standard, +/obj/structure/flora/pottedplant{ + icon_state = "plant-06"; + pixel_y = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"HL" = ( +/obj/structure/table/standard, +/obj/machinery/chemical_dispenser/bar_soft/full, +/obj/item/weapon/storage/box/glasses/square, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"HM" = ( +/obj/machinery/atm{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"HN" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/book/manual/security_space_law, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"HO" = ( +/obj/structure/table/standard, +/obj/machinery/recharger, +/obj/item/weapon/reagent_containers/spray/cleaner, +/obj/item/device/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 27 + }, +/obj/item/weapon/storage/box/donut, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"HQ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/centcom/command) +"HS" = ( +/obj/machinery/computer/secure_data{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/command) +"HT" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"HU" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/dark/cargo, +/area/shuttle/ccboat) +"HV" = ( +/obj/structure/table/standard, +/obj/item/weapon/surgical/bonesetter, +/obj/item/weapon/surgical/bonegel, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"HW" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"HY" = ( +/obj/machinery/chem_master, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"HZ" = ( +/obj/structure/bed/chair/office/dark, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Ia" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/centcom/command) +"Ib" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 9 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Id" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/centcom/command) +"Ie" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"If" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/centcom/command) +"Ig" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Ih" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/weapon/storage/box/shotgunshells/large, +/obj/item/weapon/storage/box/shotgunshells/large, +/obj/item/weapon/storage/box/shotgunshells/large, +/obj/item/weapon/storage/box/shotgunshells/large, +/obj/item/weapon/storage/box/shotgunshells/large, +/obj/item/weapon/storage/box/shotgunshells/large, +/obj/item/weapon/storage/box/shotgunshells/large, +/obj/item/weapon/storage/box/shotgunshells/large, +/obj/item/weapon/storage/box/shotgunshells/large, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Ij" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/centcom/command) +"Ik" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/structure/table/standard, +/obj/item/weapon/reagent_containers/blood/OPlus{ + pixel_x = 4; + pixel_y = 2 + }, +/obj/item/weapon/reagent_containers/blood/OMinus{ + pixel_x = -5; + pixel_y = -1 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Il" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/brigdoor{ + dir = 8; + req_access = list(63); + req_one_access = newlist() + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Im" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 1 + }, +/obj/item/device/radio/intercom{ + dir = 1; + frequency = 1475; + name = "Station Intercom (Security)"; + pixel_y = 27 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Residential Security" + }) +"In" = ( +/obj/machinery/optable, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Io" = ( +/obj/machinery/computer/operating, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Ip" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Ir" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/structure/filingcabinet/chestdrawer{ + name = "Medical Forms" + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"It" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/structure/filingcabinet/filingcabinet, +/turf/simulated/floor/tiled, +/area/centcom/command) +"Iu" = ( +/obj/structure/sign/painting/public{ + pixel_x = 30 + }, +/turf/simulated/floor/carpet, +/area/centcom/restaurant) +"Iv" = ( +/obj/structure/table/standard, +/turf/simulated/floor/tiled, +/area/centcom/command) +"Iw" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor, +/area/centcom/command) +"Ix" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/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 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Iy" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/machinery/appliance/cooker/fryer, +/turf/simulated/floor/tiled/white, +/area/centcom/bar) +"IA" = ( +/obj/structure/table/standard, +/obj/machinery/computer/skills{ + pixel_y = 2 + }, +/turf/simulated/floor/tiled, +/area/centcom/command) +"IB" = ( +/obj/machinery/door/airlock/command{ + id_tag = "HoSdoor"; + name = "Head of Security"; + req_access = list(58) + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"IC" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/stamp/hos, +/turf/simulated/floor/tiled/dark, +/area/centcom/command) +"IE" = ( +/obj/structure/table/standard, +/obj/structure/flora/pottedplant{ + icon_state = "plant-06"; + pixel_y = 8 + }, +/turf/simulated/floor/tiled, +/area/centcom/command) +"IF" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/centcom/command) +"IG" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/item/weapon/folder/red_hos, +/turf/simulated/floor/carpet, +/area/centcom/command) +"IH" = ( +/turf/unsimulated/floor/steel, +/area/tdome/tdomeobserve) +"IJ" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 4 + }, +/turf/simulated/floor/carpet, +/area/centcom/command) +"IK" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/item/device/megaphone, +/turf/simulated/floor/carpet, +/area/centcom/command) +"IM" = ( +/obj/item/clothing/glasses/sunglasses/sechud/tactical, +/obj/item/clothing/gloves/tactical, +/obj/item/clothing/head/helmet/tactical, +/obj/item/clothing/mask/balaclava/tactical, +/obj/item/clothing/shoes/boots/tactical, +/obj/item/clothing/suit/armor/tactical, +/obj/item/clothing/under/tactical, +/obj/item/weapon/storage/belt/security/tactical, +/obj/structure/closet{ + desc = "It's a storage unit for standard-issue attire."; + name = "tactical equipment" + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/item/weapon/storage/backpack/dufflebag/syndie/med, +/obj/item/weapon/storage/backpack/satchel/sec, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"IN" = ( +/obj/machinery/door/window/brigdoor/southleft{ + id = "CellC1"; + name = "Cell 1"; + req_access = list(2) + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled, +/area/centcom/holding) +"IO" = ( +/obj/machinery/door/window/brigdoor/southleft{ + id = "CellC2"; + name = "Cell 2"; + req_access = list(2) + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled, +/area/centcom/holding) +"IP" = ( +/obj/machinery/door/window/brigdoor/southleft{ + id = "CellC3"; + name = "Cell 3"; + req_access = list(2) + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled, +/area/centcom/holding) +"IS" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"IT" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"IU" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"IV" = ( +/obj/machinery/bodyscanner{ + dir = 8 + }, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"IW" = ( +/obj/machinery/body_scanconsole, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"IX" = ( +/obj/effect/shuttle_landmark{ + base_area = /area/centcom/simulated/terminal; + base_turf = /turf/simulated/floor/tiled/techfloor/grid; + docking_controller = null; + landmark_tag = "escape_cc"; + name = "Escape Centcom" + }, +/turf/simulated/wall/fancy_shuttle{ + fancy_shuttle_tag = "tram" + }, +/area/shuttle/escape{ + base_turf = /turf/simulated/floor/tiled/techfloor/grid + }) +"IY" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/machinery/vending/medical, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"IZ" = ( +/obj/structure/sign/painting/public{ + pixel_x = 30 + }, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"Ja" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/weapon/gun/energy/gun/burst, +/obj/item/weapon/gun/energy/gun/burst, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Jb" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/borderfloor{ + dir = 1; + pixel_y = -16 + }, +/obj/machinery/photocopier/faxmachine, +/turf/simulated/floor/tiled, +/area/centcom/command) +"Jc" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/obj/structure/closet/secure_closet/nanotrasen_security, +/turf/simulated/floor/tiled, +/area/centcom/command) +"Jd" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/weapon/gun/energy/lasercannon, +/obj/item/weapon/gun/energy/lasercannon, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Je" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/green, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 5 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Jf" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1; + pixel_y = -16 + }, +/turf/simulated/floor/tiled, +/area/centcom/command) +"Jh" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"Ji" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/green/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Jk" = ( +/obj/machinery/porta_turret/crescent{ + density = 1 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/sign/warning/lethal_turrets{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Jm" = ( +/obj/structure/table/steel, +/obj/item/weapon/storage/box/bodybags, +/obj/item/weapon/storage/box/bodybags, +/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/centcom/medical) +"Jo" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/borderfloor{ + dir = 1; + pixel_y = -16 + }, +/obj/item/weapon/paper_bin{ + pixel_x = -1; + pixel_y = 5 + }, +/obj/item/weapon/pen, +/turf/simulated/floor/tiled, +/area/centcom/command) +"Jp" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/centcom/command) +"Jq" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/computer/transhuman/resleeving, +/obj/item/weapon/book/manual/resleeving, +/obj/item/weapon/storage/box/backup_kit, +/turf/simulated/floor/tiled, +/area/centcom/control) +"Jr" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 2 + }, +/turf/simulated/floor/tiled, +/area/centcom/command) +"Js" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/item/weapon/folder/white_cmo, +/turf/simulated/floor/carpet, +/area/centcom/command) +"Jt" = ( +/obj/structure/sign/directions/security{ + dir = 4; + pixel_y = 32 + }, +/obj/structure/sign/directions/medical{ + dir = 4; + pixel_y = 38 + }, +/obj/structure/sign/directions/elevator{ + dir = 4; + pixel_y = 25 + }, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"Jv" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/item/weapon/reagent_containers/food/drinks/cup{ + pixel_x = -2; + pixel_y = 2 + }, +/turf/simulated/floor/carpet, +/area/centcom/command) +"Jw" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/item/weapon/folder/white_rd, +/turf/simulated/floor/carpet, +/area/centcom/command) +"Jx" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/item/weapon/reagent_containers/food/drinks/cup{ + pixel_x = 3 + }, +/turf/simulated/floor/carpet, +/area/centcom/command) +"JA" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"JB" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/item/weapon/folder/yellow_ce, +/turf/simulated/floor/carpet, +/area/centcom/command) +"JD" = ( +/obj/effect/floor_decal/emblem/orangeline{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/centcom/terminal) +"JF" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/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 + }, +/turf/simulated/floor/tiled, +/area/centcom/holding) +"JG" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/machinery/camera/network/crescent, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"JH" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/machinery/appliance/cooker/fryer, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"JI" = ( +/obj/machinery/door_timer/cell_3{ + id = "CellC1"; + name = "Cell 1"; + pixel_y = 28 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/centcom/holding) +"JJ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/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 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"JL" = ( +/obj/machinery/door_timer/cell_3{ + id = "CellC2"; + name = "Cell 2"; + pixel_y = 29 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/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 + }, +/turf/simulated/floor/tiled, +/area/centcom/holding) +"JM" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/machinery/camera/network/crescent{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"JN" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/folder/red_hos, +/turf/simulated/floor/tiled, +/area/centcom/security) +"JO" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/turf/simulated/floor/tiled/freezer, +/area/centcom/security) +"JP" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/blue/bordercorner2, +/turf/simulated/floor/tiled, +/area/centcom/security) +"JS" = ( +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"JT" = ( +/obj/structure/table/reinforced{ + desc = "It's a table, but you see something writen in permanent marker 'Dhael was here'" + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"JU" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/centcom) +"JV" = ( +/obj/structure/closet{ + name = "robotics parts" + }, +/obj/item/weapon/cell/high{ + charge = 100; + maxcharge = 15000; + pixel_x = 5; + pixel_y = -5 + }, +/obj/item/device/assembly/prox_sensor{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/item/device/assembly/prox_sensor{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/item/weapon/cell/high{ + charge = 100; + maxcharge = 15000; + pixel_x = 5; + pixel_y = -5 + }, +/obj/item/weapon/cell/high{ + charge = 100; + maxcharge = 15000; + pixel_x = 5; + pixel_y = -5 + }, +/obj/item/weapon/cell/high{ + charge = 100; + maxcharge = 15000; + pixel_x = 5; + pixel_y = -5 + }, +/obj/item/weapon/storage/firstaid/regular{ + empty = 1; + name = "First-Aid (empty)" + }, +/obj/item/weapon/storage/firstaid/regular{ + empty = 1; + name = "First-Aid (empty)" + }, +/obj/item/weapon/storage/firstaid/regular{ + empty = 1; + name = "First-Aid (empty)" + }, +/obj/item/device/healthanalyzer, +/obj/item/device/healthanalyzer, +/obj/item/device/healthanalyzer, +/obj/item/device/flash/synthetic, +/obj/item/device/flash/synthetic, +/obj/item/device/flash/synthetic, +/obj/item/device/flash/synthetic, +/obj/item/device/flash/synthetic, +/obj/item/device/flash/synthetic, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/turf/simulated/floor/tiled, +/area/centcom/control) +"JX" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/centcom) +"JY" = ( +/obj/machinery/computer/med_data, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 10 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"JZ" = ( +/obj/structure/medical_stand, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Kc" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Kd" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/centcom/terminal) +"Ke" = ( +/obj/machinery/computer/arcade/battle, +/obj/effect/floor_decal/borderfloorblack{ + dir = 6 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/orange/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Kf" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"Kg" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/box/donkpockets, +/obj/item/weapon/storage/box/donkpockets, +/obj/item/weapon/storage/box/donkpockets, +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Residential Security" + }) +"Kh" = ( +/obj/machinery/vending/wallmed1{ + pixel_y = -32 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Ki" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/structure/table/marble, +/obj/item/weapon/book/manual/chef_recipes, +/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{ + pixel_x = -3 + }, +/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{ + pixel_x = 3 + }, +/obj/item/weapon/material/kitchen/rollingpin, +/obj/item/weapon/material/knife/butch, +/turf/simulated/floor/tiled/white, +/area/centcom/bar) +"Kj" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 6 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Kk" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/structure/flora/pottedplant{ + pixel_y = 10 + }, +/turf/simulated/floor/tiled, +/area/centcom/command) +"Kl" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/centcom/command) +"Km" = ( +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tram" + }, +/obj/structure/closet/walllocker_double/hydrant/east, +/turf/simulated/floor/tiled, +/area/shuttle/escape{ + base_turf = /turf/simulated/floor/tiled/techfloor/grid + }) +"Kn" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/centcom/holding) +"Ko" = ( +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tram" + }, +/obj/machinery/light, +/obj/structure/bed/chair/sofa/bench/left{ + dir = 8; + padding_color = "#99AAFF" + }, +/obj/random/forgotten_tram, +/turf/simulated/floor/tiled, +/area/shuttle/escape{ + base_turf = /turf/simulated/floor/tiled/techfloor/grid + }) +"Kp" = ( +/obj/item/weapon/stool/padded, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/machinery/camera/network/crescent{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Kq" = ( +/obj/structure/table/reinforced, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Kr" = ( +/obj/structure/bed/chair/office/dark, +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 26 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Ks" = ( +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = 30 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/centcom/holding) +"Kt" = ( +/obj/item/weapon/storage/box/syringes{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/weapon/storage/box/beakers, +/obj/item/weapon/reagent_containers/dropper, +/obj/structure/table/glass, +/obj/structure/reagent_dispensers/virusfood{ + pixel_y = 28 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Kv" = ( +/obj/machinery/fitness/heavy/lifter, +/turf/simulated/floor/tiled/freezer, +/area/centcom/bathroom) +"Kx" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Ky" = ( +/obj/structure/bed/chair/sofa/bench/left{ + padding_color = "#99AAFF" + }, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tram" + }, +/turf/simulated/floor/tiled, +/area/shuttle/escape{ + base_turf = /turf/simulated/floor/tiled/techfloor/grid + }) +"Kz" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"KA" = ( +/obj/machinery/door/airlock{ + name = "Unit 2" + }, +/turf/simulated/floor/tiled/freezer, +/area/centcom/security) +"KC" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/storage/vest/tactical, +/obj/item/clothing/suit/storage/vest/tactical, +/obj/item/clothing/suit/storage/vest/tactical, +/obj/item/clothing/suit/storage/vest/tactical, +/obj/item/clothing/suit/storage/vest/tactical, +/obj/item/clothing/suit/storage/vest/tactical, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/clothing/suit/storage/vest/tactical, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"KD" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/firstaid/regular, +/obj/item/weapon/storage/firstaid/regular, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 10 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"KF" = ( +/obj/machinery/porta_turret/crescent{ + density = 1 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled, +/area/centcom/control) +"KG" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/firstaid/adv, +/obj/item/weapon/storage/firstaid/adv, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"KH" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 10 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 10 + }, +/obj/machinery/smartfridge/chemistry/virology, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"KJ" = ( +/obj/structure/table/glass, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/item/roller/adv, +/obj/item/roller/adv{ + pixel_y = 6 + }, +/obj/item/roller/adv{ + pixel_y = 12 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"KK" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 6 + }, +/obj/structure/closet/secure_closet/nanotrasen_security, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Residential Security" + }) +"KL" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/structure/closet/secure_closet/medical3, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"KN" = ( +/obj/machinery/r_n_d/server/centcom, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"KO" = ( +/obj/machinery/light, +/obj/structure/bed/chair/shuttle{ + dir = 4 + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_red" + }, +/area/centcom/terminal/shuttlefluff) +"KP" = ( +/obj/effect/floor_decal/corner_steel_grid{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"KR" = ( +/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/closet/secure_closet/paramedic, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"KS" = ( +/obj/effect/floor_decal/emblem/stellardelight, +/turf/simulated/shuttle/floor/white, +/area/centcom/terminal/shuttlefluff) +"KT" = ( +/obj/structure/table/standard, +/obj/machinery/computer/skills{ + pixel_y = 2 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/centcom/command) +"KU" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/machinery/photocopier, +/turf/simulated/floor/tiled, +/area/centcom/command) +"KV" = ( +/obj/structure/table/marble, +/obj/item/weapon/reagent_containers/food/drinks/cup{ + pixel_x = 8; + pixel_y = 8 + }, +/obj/item/weapon/reagent_containers/food/drinks/cup{ + pixel_x = -4; + pixel_y = 8 + }, +/obj/item/weapon/reagent_containers/food/drinks/cup{ + pixel_x = 3 + }, +/obj/item/weapon/reagent_containers/food/drinks/cup{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/item/weapon/reagent_containers/food/drinks/cup{ + pixel_x = 8 + }, +/obj/item/weapon/reagent_containers/food/drinks/cup{ + pixel_x = -4 + }, +/obj/item/weapon/reagent_containers/food/drinks/cup{ + pixel_x = 8; + pixel_y = 12 + }, +/obj/item/weapon/reagent_containers/food/drinks/cup{ + pixel_x = -4; + pixel_y = 12 + }, +/turf/simulated/floor/lino, +/area/centcom/command) +"KW" = ( +/obj/structure/table/marble, +/obj/machinery/chemical_dispenser/bar_coffee/full, +/turf/simulated/floor/lino, +/area/centcom/command) +"KX" = ( +/obj/structure/table/marble, +/obj/item/weapon/reagent_containers/food/drinks/glass2/square{ + pixel_x = 8; + pixel_y = 8 + }, +/obj/item/weapon/reagent_containers/food/drinks/glass2/square{ + pixel_y = 8 + }, +/obj/item/weapon/reagent_containers/food/drinks/glass2/square{ + pixel_x = -8; + pixel_y = 8 + }, +/obj/item/weapon/reagent_containers/food/drinks/glass2/square{ + pixel_x = 8; + pixel_y = 4 + }, +/obj/item/weapon/reagent_containers/food/drinks/glass2/square{ + pixel_y = 4 + }, +/obj/item/weapon/reagent_containers/food/drinks/glass2/square{ + pixel_x = -8; + pixel_y = 4 + }, +/turf/simulated/floor/lino, +/area/centcom/command) +"KY" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/card/id/gold/captain/spare, +/turf/simulated/floor/tiled, +/area/centcom/control) +"KZ" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/book/manual/security_space_law, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"La" = ( +/obj/structure/closet/crate/bin, +/turf/simulated/floor/lino, +/area/centcom/command) +"Lc" = ( +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "turrets"; + name = "Security Door"; + opacity = 0 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Ld" = ( +/obj/effect/floor_decal/rust/mono_rusted3, +/turf/simulated/floor/tiled, +/area/centcom/terminal) +"Lg" = ( +/obj/effect/floor_decal/derelict/d14, +/turf/simulated/floor/tiled, +/area/centcom/terminal) +"Lh" = ( +/obj/structure/table/standard, +/obj/structure/flora/pottedplant{ + pixel_y = 10 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/centcom/holding) +"Li" = ( +/obj/machinery/vending/security, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled, +/area/centcom/holding) +"Lj" = ( +/obj/structure/table/standard, +/obj/item/device/healthanalyzer, +/obj/item/stack/medical/bruise_pack{ + pixel_x = -4; + pixel_y = 3 + }, +/obj/item/stack/medical/bruise_pack{ + pixel_x = 10 + }, +/obj/item/stack/medical/ointment{ + pixel_y = 10 + }, +/obj/random/medical/lite, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled, +/area/centcom/holding) +"Lk" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/structure/flora/pottedplant{ + pixel_y = 8 + }, +/turf/simulated/floor/tiled, +/area/centcom/terminal) +"Ll" = ( +/obj/item/weapon/stool/padded, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Lm" = ( +/obj/structure/grille, +/obj/effect/blocker, +/obj/structure/window/reinforced/full{ + maxhealth = 1e+007 + }, +/turf/unsimulated/shuttle/plating, +/area/tdome/tdomeobserve) +"Ln" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 1 + }, +/obj/structure/closet/crate/bin, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Lo" = ( +/obj/structure/table/standard, +/obj/item/weapon/reagent_containers/syringe/inaprovaline, +/obj/item/weapon/reagent_containers/syringe/inaprovaline{ + pixel_x = -2; + pixel_y = 5 + }, +/obj/item/weapon/reagent_containers/syringe/inaprovaline{ + pixel_y = 10 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled, +/area/centcom/holding) +"Lr" = ( +/obj/structure/closet/secure_closet/brig{ + id = "Cell 1"; + name = "Cell 1 Locker" + }, +/turf/simulated/floor/tiled, +/area/centcom/holding) +"Ls" = ( +/obj/structure/table/standard, +/obj/item/bodybag/cryobag{ + pixel_x = 6 + }, +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/random/firstaid, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled, +/area/centcom/holding) +"Lt" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/table/rack{ + dir = 4 + }, +/obj/item/device/suit_cooling_unit, +/obj/item/device/suit_cooling_unit, +/obj/item/device/suit_cooling_unit, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Lu" = ( +/obj/machinery/computer/diseasesplicer, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 1 + }, +/obj/machinery/camera/network/crescent, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Lv" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-22" + }, +/turf/simulated/floor/wood, +/area/centcom/restaurant) +"Lw" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/book/manual/security_space_law, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Lx" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/mirror{ + pixel_x = -28 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/bathroom) +"Ly" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + req_access = list(5) + }, +/obj/machinery/door/firedoor/multi_tile, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Lz" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/multi_tile/metal{ + name = "NanoTrasen Offices"; + req_one_access = list(101) + }, +/turf/simulated/floor/tiled, +/area/centcom/command) +"LA" = ( +/obj/machinery/door/airlock/centcom{ + name = "NanoTrasen Offices" + }, +/turf/simulated/floor/tiled, +/area/centcom/command) +"LB" = ( +/obj/machinery/computer/ship/engines/adv, +/turf/simulated/floor/tiled/eris/dark/cargo, +/area/shuttle/ccboat) +"LC" = ( +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tram" + }, +/obj/structure/bed/chair/sofa/bench/left{ + dir = 8; + padding_color = "#99AAFF" + }, +/turf/simulated/floor/tiled, +/area/shuttle/escape{ + base_turf = /turf/simulated/floor/tiled/techfloor/grid + }) +"LD" = ( +/obj/machinery/door/airlock/multi_tile/metal{ + name = "NanoTrasen Offices"; + req_one_access = list(101) + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled, +/area/centcom/command) +"LE" = ( +/obj/structure/table/standard, +/obj/machinery/recharger, +/obj/item/weapon/book/codex, +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 26 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"LF" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/mirror{ + pixel_x = -28 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/bathroom) +"LG" = ( +/obj/effect/floor_decal/industrial/outline, +/turf/simulated/floor/tiled, +/area/centcom/security) +"LH" = ( +/obj/effect/floor_decal/sign/dock/two, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/centcom/terminal) +"LI" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/bathroom) +"LK" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 9 + }, +/obj/machinery/vending/medical, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"LL" = ( +/obj/machinery/igniter, +/turf/unsimulated/floor/techfloor_grid, +/area/tdome) +"LM" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/machinery/camera/network/crescent, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"LN" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"LO" = ( +/obj/machinery/camera/network/crescent, +/turf/simulated/floor/tiled, +/area/centcom/command) +"LP" = ( +/obj/machinery/computer/guestpass{ + pixel_y = 27 + }, +/turf/simulated/floor/tiled, +/area/centcom/command) +"LQ" = ( +/obj/structure/closet/wardrobe/orange, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"LR" = ( +/obj/structure/table/reinforced, +/obj/machinery/computer/skills, +/obj/effect/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 10 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Residential Security" + }) +"LS" = ( +/obj/structure/table/glass, +/obj/structure/flora/pottedplant{ + pixel_y = 10 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8; + pixel_x = 16 + }, +/turf/simulated/floor/tiled, +/area/centcom/command) +"LT" = ( +/obj/structure/closet/crate/bin, +/obj/machinery/camera/network/crescent, +/turf/simulated/floor/tiled, +/area/centcom/command) +"LV" = ( +/obj/structure/closet/secure_closet/personal, +/turf/simulated/floor/tiled, +/area/centcom/bathroom) +"LW" = ( +/obj/machinery/door/airlock{ + name = "Unit 2" + }, +/turf/simulated/floor/tiled/white, +/area/centcom/bathroom) +"LX" = ( +/obj/effect/landmark{ + name = "tdome1" + }, +/turf/unsimulated/floor/techfloor_grid, +/area/tdome/tdome1) +"LY" = ( +/obj/machinery/computer/secure_data{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 5 + }, +/obj/machinery/camera/network/crescent, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Residential Security" + }) +"LZ" = ( +/obj/structure/bed/chair/shuttle{ + dir = 8 + }, +/turf/simulated/shuttle/floor, +/area/centcom/terminal/shuttlefluff) +"Ma" = ( +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tram" + }, +/obj/structure/bed/chair/sofa/bench{ + dir = 4; + padding_color = "#99AAFF" + }, +/turf/simulated/floor/tiled, +/area/shuttle/escape{ + base_turf = /turf/simulated/floor/tiled/techfloor/grid + }) +"Mb" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/structure/closet/crate/bin, +/turf/simulated/floor/tiled, +/area/centcom/command) +"Mc" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/computer/skills, +/obj/effect/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Md" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/machinery/computer/crew{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Me" = ( +/obj/structure/table/glass, +/obj/item/weapon/paper_bin{ + pixel_x = -1; + pixel_y = 3 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Mh" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/centcom/command) +"Mi" = ( +/obj/structure/table/glass, +/obj/effect/floor_decal/borderfloor{ + dir = 8; + pixel_x = 16 + }, +/obj/item/weapon/paper_bin{ + pixel_x = -1; + pixel_y = 5 + }, +/obj/item/weapon/pen, +/turf/simulated/floor/tiled, +/area/centcom/command) +"Ml" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/centcom/bathroom) +"Mn" = ( +/obj/machinery/vending/cola, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/blue/bordercorner2, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Mo" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-21" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Mq" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/obj/machinery/vending/nifsoft_shop, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Mr" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/snacks/grilledcheese, +/turf/simulated/floor/wood, +/area/centcom/restaurant) +"Ms" = ( +/obj/structure/bed/chair/comfy/teal{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/centcom/command) +"Mu" = ( +/obj/machinery/door/window/brigdoor{ + req_access = list(63); + req_one_access = list(1) + }, +/obj/machinery/button/remote/airlock{ + id = "front"; + name = "Front doors"; + pixel_x = 5; + pixel_y = 25; + req_access = list(63); + req_one_access = list(1) + }, +/obj/machinery/button/remote/airlock{ + id = "innerS"; + name = "Inner doors"; + pixel_x = -5; + pixel_y = 25; + req_access = list(63); + req_one_access = list(1) + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Mv" = ( +/obj/machinery/vending/cigarette, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Mw" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "reinforced"; + name = "reinforced floor" + }, +/area/centcom) +"Mx" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"My" = ( +/obj/structure/table/rack, +/obj/item/clothing/gloves/arm_guard/combat, +/obj/item/clothing/shoes/leg_guard/combat, +/obj/item/clothing/suit/armor/combat, +/obj/item/clothing/head/helmet/combat, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Mz" = ( +/obj/machinery/door/window/brigdoor{ + dir = 8; + req_access = list(63); + req_one_access = newlist() + }, +/obj/machinery/button/remote/airlock{ + id = "front"; + name = "Front doors"; + pixel_x = 5; + pixel_y = 25; + req_access = list(63); + req_one_access = list(1) + }, +/obj/machinery/button/remote/airlock{ + id = "innerS"; + name = "Inner doors"; + pixel_x = -5; + pixel_y = 25; + req_access = list(63); + req_one_access = list(1) + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"MA" = ( +/obj/structure/table/marble, +/obj/machinery/microwave{ + pixel_x = -3; + pixel_y = 6 + }, +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"MB" = ( +/obj/machinery/vending/snack, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled, +/area/centcom/security) +"MD" = ( +/obj/machinery/vending/coffee, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"ME" = ( +/obj/machinery/computer/communications{ + dir = 1 + }, +/turf/simulated/shuttle/floor, +/area/centcom/terminal/shuttlefluff) +"MF" = ( +/obj/machinery/gibber, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"MG" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/obj/structure/flora/pottedplant{ + icon_state = "plant-22" + }, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"MH" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/mirror{ + pixel_x = -28 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/bathroom) +"MI" = ( +/obj/structure/table/glass, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/item/weapon/backup_implanter{ + pixel_y = -8 + }, +/obj/item/weapon/backup_implanter{ + pixel_y = 8 + }, +/obj/item/weapon/backup_implanter, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"MJ" = ( +/obj/structure/table/glass, +/obj/item/device/healthanalyzer/advanced, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"MK" = ( +/obj/structure/table/glass, +/obj/machinery/computer/med_data{ + icon_keyboard = "laptop_key"; + icon_screen = "medlaptop"; + icon_state = "laptop"; + light_color = "#00b000" + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"ML" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 6 + }, +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = 30 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Residential Security" + }) +"MM" = ( +/obj/structure/table/glass{ + desc = "It's a table, it has some scracthes..they say 'Mlem'." + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"MN" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"MQ" = ( +/obj/structure/table/glass, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"MR" = ( +/obj/structure/table/glass, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/centcom/command) +"MT" = ( +/obj/structure/table/glass, +/obj/effect/floor_decal/borderfloor{ + dir = 1; + pixel_y = -16 + }, +/turf/simulated/floor/tiled, +/area/centcom/command) +"MU" = ( +/obj/structure/table/glass, +/obj/effect/floor_decal/borderfloor{ + dir = 1; + pixel_y = -16 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8; + pixel_x = 16 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10; + pixel_x = 16 + }, +/turf/simulated/floor/tiled, +/area/centcom/command) +"MV" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/centcom/bathroom) +"MY" = ( +/obj/machinery/door/airlock{ + name = "Unisex Showers" + }, +/turf/simulated/floor/tiled/freezer, +/area/centcom/bathroom) +"MZ" = ( +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 26 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Nb" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/simulated/floor/tiled/freezer, +/area/centcom/bathroom) +"Ne" = ( +/obj/item/weapon/stool/padded, +/turf/simulated/floor/tiled/dark, +/area/centcom/medical) +"Nf" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/vending/security, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Nh" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/vending/security, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Ni" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/structure/closet/crate/bin, +/turf/simulated/floor/tiled/white, +/area/centcom/bathroom) +"Nj" = ( +/obj/machinery/door/airlock{ + name = "Unit 3" + }, +/turf/simulated/floor/tiled/white, +/area/centcom/bathroom) +"Nk" = ( +/obj/structure/table/glass, +/obj/item/device/defib_kit/compact/loaded, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Nl" = ( +/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/floor_decal/steeldecal/steel_decals10{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/centcom/living) +"Nm" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/box/cups, +/obj/item/weapon/storage/box/cups, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Nn" = ( +/obj/structure/bed/padded, +/obj/machinery/camera/network/crescent, +/obj/machinery/flasher{ + id = "CellC3"; + pixel_x = -24; + pixel_y = 25 + }, +/turf/simulated/floor/tiled, +/area/centcom/holding) +"No" = ( +/obj/machinery/computer/secure_data, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 9 + }, +/obj/machinery/camera/network/crescent, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Np" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/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/item/device/radio/intercom{ + dir = 1; + frequency = 1475; + name = "Station Intercom (Security)"; + pixel_y = 27 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Nq" = ( +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 26 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/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 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Nr" = ( +/obj/machinery/computer/card, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Nt" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/item/weapon/storage/box/teargas, +/obj/item/weapon/storage/box/teargas, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Nw" = ( +/obj/item/weapon/stool/padded, +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = 30 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Ny" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/structure/closet/crate/bin, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Nz" = ( +/obj/structure/table/reinforced, +/turf/simulated/shuttle/floor/white, +/area/centcom/terminal/shuttlefluff) +"NA" = ( +/obj/structure/shuttle/engine/propulsion{ + icon_state = "burst_r" + }, +/turf/simulated/shuttle/plating/airless/carry, +/area/shuttle/supply) +"NC" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/centcom/control) +"ND" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-22" + }, +/turf/simulated/floor/tiled, +/area/centcom/bathroom) +"NE" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"NF" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"NG" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/item/weapon/storage/box/ids, +/turf/simulated/floor/tiled, +/area/centcom/command) +"NH" = ( +/obj/machinery/door/airlock/security{ + name = "Security" + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"NI" = ( +/obj/machinery/computer/secure_data{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"NJ" = ( +/obj/structure/table/glass, +/obj/machinery/chemical_dispenser/ert, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"NL" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"NN" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/centcom/living) +"NO" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"NP" = ( +/obj/structure/table/standard, +/obj/item/weapon/soap, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/bathroom) +"NQ" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/bathroom) +"NR" = ( +/obj/machinery/door/airlock{ + name = "Unit 4" + }, +/turf/simulated/floor/tiled/white, +/area/centcom/bathroom) +"NS" = ( +/obj/item/device/radio/intercom{ + dir = 1; + frequency = 1475; + name = "Station Intercom (Security)"; + pixel_y = 27 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Residential Security" + }) +"NT" = ( +/obj/machinery/atm{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled, +/area/centcom/command) +"NU" = ( +/obj/structure/table/glass, +/obj/item/roller, +/obj/item/roller{ + pixel_y = 8 + }, +/obj/item/roller{ + pixel_y = 16 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 10 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"NV" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"NW" = ( +/obj/structure/table/rack, +/obj/item/weapon/gun/energy/ionrifle, +/obj/item/weapon/gun/energy/ionrifle, +/obj/item/weapon/gun/energy/ionrifle, +/obj/item/weapon/gun/energy/ionrifle, +/obj/item/weapon/gun/energy/ionrifle, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/camera/network/crescent, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"NX" = ( +/obj/structure/shuttle/engine/propulsion{ + icon_state = "burst_l" + }, +/turf/simulated/shuttle/plating/airless/carry, +/area/shuttle/supply) +"NY" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-22" + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 6 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 6 + }, +/obj/machinery/newscaster{ + pixel_x = 29 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"NZ" = ( +/obj/machinery/vending/snack, +/turf/simulated/floor/tiled, +/area/centcom/command) +"Oa" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-24" + }, +/turf/simulated/floor/tiled, +/area/centcom/command) +"Ob" = ( +/obj/machinery/vending/cola, +/turf/simulated/floor/tiled, +/area/centcom/command) +"Oc" = ( +/obj/machinery/door/airlock/angled_bay/external/glass{ + dir = 4; + frequency = 1380; + id_tag = null; + locked = 1; + name = "Docking Port Airlock" + }, +/obj/effect/map_helper/airlock/door/int_door, +/turf/simulated/floor/tiled/steel_ridged, +/area/shuttle/ccboat) +"Od" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/weapon/cell/device/weapon{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/weapon/cell/device/weapon{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/weapon/cell/device/weapon{ + pixel_x = -2; + pixel_y = -2 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Of" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/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 + }, +/turf/simulated/floor/tiled, +/area/centcom/holding) +"Oh" = ( +/obj/machinery/vending/fitness, +/turf/simulated/floor/tiled, +/area/centcom/bathroom) +"Oi" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/machinery/button/remote/blast_door{ + id = "turrets"; + name = "Turret Doors"; + pixel_x = -23; + req_access = list(63); + req_one_access = list(1) + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Oj" = ( +/obj/structure/table/steel, +/obj/item/clothing/shoes/boots/jackboots{ + desc = "This pair of Jackboots look worn and freshly used. They have several claw markings inside and you can read the initials D and M at the bottom"; + name = "Dhaeleena's Jackboots" + }, +/turf/simulated/floor/tiled/freezer, +/area/centcom/bathroom) +"Ok" = ( +/obj/effect/floor_decal/techfloor/orange{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/centcom/terminal) +"Om" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Residential Security" + }) +"On" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/floor/tiled/freezer, +/area/centcom/bathroom) +"Oo" = ( +/obj/machinery/computer/secure_data{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/blue/border, +/obj/effect/floor_decal/borderfloorblack/corner2, +/obj/effect/floor_decal/corner/blue/bordercorner2, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Op" = ( +/obj/structure/reagent_dispensers/water_cooler/full, +/turf/simulated/floor/tiled/freezer, +/area/centcom/bathroom) +"Oq" = ( +/obj/structure/table/reinforced, +/obj/item/device/camera, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Or" = ( +/obj/machinery/camera/network/crescent, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/bathroom) +"Os" = ( +/obj/machinery/computer/security{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Ot" = ( +/turf/simulated/shuttle/wall/hard_corner, +/area/centcom/terminal/shuttlefluff) +"Ou" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/book/manual/security_space_law, +/obj/item/weapon/gun/energy/taser, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Ov" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Residential Security" + }) +"Ow" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/box/ids, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Ox" = ( +/obj/machinery/door/airlock/command{ + id_tag = "HoSdoor"; + name = "Head of Security"; + req_access = list(58) + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/command) +"Oy" = ( +/obj/structure/table/reinforced, +/obj/machinery/computer/skills, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Oz" = ( +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "reinforced"; + name = "reinforced floor" + }, +/area/centcom) +"OA" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/turf/simulated/floor/tiled, +/area/centcom/security) +"OC" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/centcom/terminal) +"OD" = ( +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tram" + }, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/shuttle/escape{ + base_turf = /turf/simulated/floor/tiled/techfloor/grid + }) +"OE" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/weapon/pen, +/obj/machinery/door/window/brigdoor{ + dir = 2 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"OH" = ( +/obj/effect/floor_decal/derelict/d8, +/turf/simulated/floor/tiled, +/area/centcom/terminal) +"OK" = ( +/obj/machinery/button/remote/blast_door{ + id = "ArmouryC2"; + name = "Armoury Access"; + pixel_x = -28; + pixel_y = 28; + req_access = list(3) + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"OL" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/external/glass{ + door_color = "#822a1e"; + frequency = 1380; + id_tag = "escape_shuttle_hatch"; + locked = 1; + name = "Docking Port Airlock" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/centcom/terminal/shuttlefluff) +"OM" = ( +/obj/effect/floor_decal/industrial/outline, +/obj/structure/closet/secure_closet/nanotrasen_security{ + desc = "This locker is filled silly stickers and some other serious NanoTrasen ones. It is lazily labeled 'The big cat'." + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"ON" = ( +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "TelelockdownC"; + name = "Security Doors"; + opacity = 0 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/living) +"OO" = ( +/obj/machinery/door/airlock/multi_tile/glass, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"OP" = ( +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"OR" = ( +/obj/machinery/door/airlock{ + name = "Unisex Restrooms" + }, +/turf/simulated/floor/tiled, +/area/centcom/bathroom) +"OS" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/machinery/camera/network/crescent{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"OT" = ( +/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 + }, +/turf/simulated/floor/tiled{ + icon_state = "white" + }, +/area/centcom/living) +"OU" = ( +/obj/structure/table/standard, +/obj/machinery/computer/med_data/laptop, +/turf/simulated/floor/tiled, +/area/centcom/control) +"OW" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/sign/department/medbay{ + plane = -34 + }, +/turf/simulated/floor, +/area/centcom/medical) +"OX" = ( +/obj/item/modular_computer/console/preset/command{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/centcom/control) +"OY" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/centcom) +"OZ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/multi_tile/glass, +/turf/simulated/floor/tiled{ + icon_state = "white" + }, +/area/centcom/medical) +"Pa" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled{ + icon_state = "white" + }, +/area/centcom/medical) +"Pc" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/multi_tile/glass, +/turf/simulated/floor/tiled, +/area/centcom/command) +"Pd" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass{ + name = "Locker Room" + }, +/turf/simulated/floor/tiled, +/area/centcom/bathroom) +"Pf" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/snacks/meatsteak, +/turf/simulated/floor/wood, +/area/centcom/restaurant) +"Pg" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"Ph" = ( +/obj/machinery/atmospherics/unary/cryo_cell, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 5 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Pj" = ( +/obj/structure/bed/chair, +/obj/effect/floor_decal/industrial/outline, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"Pk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Pl" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/turf/simulated/floor/tiled{ + icon_state = "white" + }, +/area/centcom/living) +"Pm" = ( +/obj/machinery/computer/rdservercontrol{ + badmin = 1; + dir = 8; + name = "Master R&D Server Controller" + }, +/turf/unsimulated/floor/steel, +/area/centcom/control) +"Pn" = ( +/obj/effect/floor_decal/industrial/outline, +/obj/structure/bed/chair, +/obj/machinery/status_display{ + pixel_y = 29 + }, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"Po" = ( +/obj/machinery/computer/guestpass{ + pixel_y = 27 + }, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"Pp" = ( +/obj/machinery/turretid/stun{ + check_access = 0; + check_anomalies = 0; + check_records = 0; + control_area = "\improper CentCom Residential Security"; + pixel_y = 32; + req_access = list(101); + req_one_access = list(101) + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Residential Security" + }) +"Pq" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/orange, +/obj/effect/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/orange/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Pr" = ( +/obj/machinery/status_display{ + pixel_y = 29 + }, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"Ps" = ( +/obj/structure/table/reinforced, +/obj/machinery/light/floortube, +/turf/simulated/shuttle/floor/white, +/area/centcom/terminal/shuttlefluff) +"Pt" = ( +/obj/structure/bed/chair/shuttle, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/shuttle/ccboat) +"Pu" = ( +/obj/structure/table/glass, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 8 + }, +/obj/item/weapon/reagent_containers/blood/OPlus{ + pixel_x = 4; + pixel_y = 2 + }, +/obj/item/weapon/reagent_containers/blood/OPlus{ + pixel_x = 4; + pixel_y = 2 + }, +/obj/item/weapon/reagent_containers/blood/OPlus{ + pixel_x = 4; + pixel_y = 2 + }, +/obj/item/device/healthanalyzer/advanced, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Pv" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"Pw" = ( +/obj/structure/sign/directions/security{ + dir = 4; + pixel_y = 32 + }, +/obj/structure/sign/directions/elevator{ + dir = 4; + pixel_y = 25 + }, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"Px" = ( +/obj/structure/sign/directions/security{ + dir = 4; + pixel_y = 32 + }, +/obj/structure/sign/directions/elevator{ + dir = 4; + pixel_y = 25 + }, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"Py" = ( +/obj/machinery/door_timer/cell_3{ + id = "CellC3"; + pixel_x = 31 + }, +/turf/simulated/floor/tiled, +/area/centcom/holding) +"Pz" = ( +/obj/effect/floor_decal/derelict/d15, +/turf/simulated/floor/tiled, +/area/centcom/terminal) +"PA" = ( +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "CentComPort"; + name = "Security Doors"; + opacity = 0 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"PB" = ( +/obj/machinery/atmospherics/unary/cryo_cell, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"PC" = ( +/obj/structure/table/reinforced, +/obj/machinery/computer/skills, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 10 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/tiled, +/area/centcom/security) +"PD" = ( +/obj/structure/table/bench/wooden, +/turf/simulated/floor/grass, +/area/centcom/main_hall) +"PE" = ( +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "CentComPort"; + name = "Security Doors"; + opacity = 0 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"PG" = ( +/obj/machinery/camera/network/crescent, +/turf/simulated/floor/tiled, +/area/centcom/living) +"PH" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"PI" = ( +/obj/machinery/computer/cryopod/dorms{ + name = "Company Property Retention System"; + pixel_y = 27 + }, +/turf/simulated/floor/tiled, +/area/centcom/living) +"PJ" = ( +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tram" + }, +/obj/structure/bed/chair/sofa/bench/right{ + dir = 8; + padding_color = "#99AAFF" + }, +/turf/simulated/floor/tiled, +/area/shuttle/escape{ + base_turf = /turf/simulated/floor/tiled/techfloor/grid + }) +"PK" = ( +/obj/structure/closet/l3closet/security, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/camera/network/crescent, +/turf/simulated/floor/tiled, +/area/centcom/security) +"PL" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full{ + maxhealth = 1e+007 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/firedoor/glass, +/turf/unsimulated/shuttle/plating, +/area/centcom/main_hall) +"PM" = ( +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "CentComPort"; + name = "Security Doors"; + opacity = 0 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"PO" = ( +/obj/effect/floor_decal/derelict/d6, +/turf/simulated/floor/tiled, +/area/centcom/terminal) +"PP" = ( +/turf/simulated/floor/carpet, +/area/centcom/control) +"PQ" = ( +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "CentComPort"; + name = "Security Doors"; + opacity = 0 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"PR" = ( +/obj/structure/shuttle/window, +/obj/structure/grille, +/turf/simulated/floor, +/area/centcom/terminal/shuttlefluff) +"PS" = ( +/obj/effect/forcefield{ + desc = "You can't get in. Heh."; + layer = 1; + name = "Blocker" + }, +/turf/simulated/floor/tiled, +/area/centcom/living) +"PT" = ( +/obj/machinery/deployable/barrier, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"PU" = ( +/obj/structure/bed/chair/shuttle{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/shuttle/ccboat) +"PV" = ( +/obj/machinery/computer/robotics{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/centcom/control) +"PW" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/blocker, +/turf/simulated/floor/tiled{ + icon_state = "white" + }, +/area/centcom/living) +"PX" = ( +/turf/simulated/floor/tiled{ + icon_state = "white" + }, +/area/centcom/living) +"PY" = ( +/obj/machinery/cryopod/robot/door/dorms{ + base_icon_state = "door_closed"; + desc = "A small elevator"; + dir = 2; + icon = 'icons/obj/doors/Door2x1glass.dmi'; + icon_state = "door_closed"; + name = "elevator"; + on_enter_occupant_message = "The elevator doors close slowly. You can now head off for the residential, commercial, and other floors."; + on_store_message = "has departed for one of the various colony floors"; + on_store_name = "Colony Oversight"; + on_store_visible_message_2 = "to the colony districts."; + time_till_despawn = 5 + }, +/turf/simulated/floor/tiled, +/area/centcom/living) +"PZ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "FrontlockBD"; + name = "Security Doors"; + opacity = 0 + }, +/obj/structure/fans/tiny, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"Qa" = ( +/obj/structure/table/steel, +/obj/item/weapon/autopsy_scanner, +/obj/item/weapon/surgical/scalpel, +/obj/item/weapon/surgical/cautery, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/medical) +"Qb" = ( +/obj/structure/reagent_dispensers/water_cooler/full, +/turf/simulated/floor/tiled, +/area/centcom/command) +"Qc" = ( +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "CentComPort"; + name = "Security Doors"; + opacity = 0 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"Qd" = ( +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "CentComPort"; + name = "Security Doors"; + opacity = 0 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"Qe" = ( +/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, +/turf/simulated/floor/tiled{ + icon_state = "white" + }, +/area/centcom/living) +"Qg" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/turf/simulated/floor/tiled{ + icon_state = "white" + }, +/area/centcom/living) +"Qh" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/structure/flora/pottedplant{ + icon_state = "plant-24" + }, +/turf/simulated/floor/tiled{ + icon_state = "white" + }, +/area/centcom/living) +"Qi" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/bed/chair/shuttle, +/turf/simulated/shuttle/floor, +/area/centcom/terminal/shuttlefluff) +"Qj" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/machinery/camera/network/crescent, +/turf/simulated/floor/tiled/dark, +/area/centcom/medical) +"Qk" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/bar) +"Ql" = ( +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tram" + }, +/obj/machinery/status_display{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled, +/area/shuttle/escape{ + base_turf = /turf/simulated/floor/tiled/techfloor/grid + }) +"Qm" = ( +/obj/machinery/porta_turret/crescent{ + density = 1 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Security Arrivals" + }) +"Qn" = ( +/obj/effect/floor_decal/industrial/outline, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Security Arrivals" + }) +"Qp" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/multi_tile/glass, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"Qq" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-06"; + pixel_y = 8 + }, +/obj/structure/table/glass, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"Qr" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/centcom) +"Qs" = ( +/obj/structure/shuttle/engine/propulsion, +/obj/effect/shuttle_landmark{ + base_area = /area/space; + base_turf = /turf/unsimulated/floor; + landmark_tag = "supply_cc"; + name = "Centcom Supply Depot" + }, +/turf/simulated/shuttle/plating/airless/carry, +/area/shuttle/supply) +"Qt" = ( +/obj/structure/shuttle/engine/heater{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/centcom) +"Qu" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/orange/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Qw" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"Qx" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/borderfloorblack{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Qy" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 8; + icon_state = "burst_l" + }, +/turf/simulated/floor/tiled, +/area/centcom) +"Qz" = ( +/obj/structure/shuttle/engine/propulsion{ + icon_state = "burst_l" + }, +/turf/simulated/floor/tiled, +/area/centcom) +"QB" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"QC" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled, +/area/centcom) +"QD" = ( +/obj/item/weapon/stool/padded, +/turf/simulated/floor/tiled, +/area/centcom/bathroom) +"QE" = ( +/obj/machinery/computer/supplycomp{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/centcom) +"QF" = ( +/obj/structure/table/standard, +/obj/item/weapon/soap, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/bathroom) +"QH" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/obj/structure/closet/secure_closet/hop, +/turf/simulated/floor/tiled, +/area/centcom/command) +"QI" = ( +/obj/structure/flora/pottedplant, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"QJ" = ( +/obj/machinery/vending/cigarette, +/turf/simulated/floor/wood, +/area/centcom/restaurant) +"QK" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "reinforced"; + name = "reinforced floor" + }, +/area/centcom) +"QL" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full{ + maxhealth = 1e+007 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/firedoor/glass, +/turf/unsimulated/shuttle/plating, +/area/centcom) +"QN" = ( +/obj/effect/floor_decal/derelict/d16, +/turf/simulated/floor/tiled, +/area/centcom/terminal) +"QR" = ( +/obj/structure/closet/crate/bin, +/turf/simulated/floor/wood, +/area/centcom/restaurant) +"QS" = ( +/obj/machinery/camera/network/crescent, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"QT" = ( +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"QU" = ( +/obj/machinery/vending/nifsoft_shop, +/turf/simulated/floor/wood, +/area/centcom/restaurant) +"QV" = ( +/obj/structure/sign/double/barsign{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/centcom/restaurant) +"QW" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/flame/lighter/zippo, +/obj/item/weapon/storage/fancy/cigarettes, +/turf/simulated/floor/carpet, +/area/centcom/restaurant) +"QX" = ( +/obj/structure/morgue{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/medical) +"QY" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/armor/riot, +/obj/item/weapon/melee/baton/loaded, +/obj/item/weapon/shield/riot, +/obj/item/clothing/head/helmet/riot, +/obj/effect/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Ra" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "residential"; + name = "Security Door"; + opacity = 0 + }, +/turf/simulated/floor/tiled, +/area/centcom/security{ + name = "\improper CentCom Residential Security" + }) +"Rb" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/armor/riot, +/obj/item/weapon/melee/baton/loaded, +/obj/item/weapon/shield/riot, +/obj/item/clothing/head/helmet/riot, +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Rd" = ( +/obj/machinery/door/airlock/glass_security{ + name = "Security"; + req_access = newlist() + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Re" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/steel_grid, +/area/centcom/terminal) +"Rf" = ( +/turf/simulated/floor/tiled/dark, +/area/centcom/command) +"Rh" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/armor/riot, +/obj/item/weapon/melee/baton/loaded, +/obj/item/weapon/shield/riot, +/obj/item/clothing/head/helmet/riot, +/obj/effect/floor_decal/borderfloorblack{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Ri" = ( +/obj/structure/table/rack, +/obj/item/weapon/storage/box/beanbags/large, +/obj/item/weapon/storage/box/beanbags/large, +/obj/item/weapon/storage/box/beanbags/large, +/obj/item/weapon/storage/box/beanbags/large, +/obj/item/weapon/storage/box/beanbags/large, +/obj/item/weapon/storage/box/beanbags/large, +/obj/item/weapon/storage/box/beanbags/large, +/obj/item/weapon/storage/box/beanbags/large, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Rj" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/turf/simulated/floor/tiled, +/area/centcom/living) +"Rk" = ( +/obj/machinery/computer/prisoner, +/obj/effect/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 9 + }, +/obj/machinery/camera/network/crescent, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Rl" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/medical) +"Rm" = ( +/obj/machinery/newscaster/security_unit{ + pixel_y = 30 + }, +/obj/structure/table/reinforced, +/obj/item/weapon/gun/projectile/shotgun/pump/combat{ + name = "Discipline" + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Rn" = ( +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 26 + }, +/obj/structure/table/reinforced, +/obj/item/weapon/stamp/ward, +/obj/item/weapon/stamp/denied, +/obj/item/device/binoculars, +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Ro" = ( +/obj/item/device/radio/intercom{ + dir = 1; + frequency = 1475; + name = "Station Intercom (Security)"; + pixel_y = 27 + }, +/obj/machinery/photocopier, +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = 30 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Rp" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-10" + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Rq" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/shuttle/engine/propulsion{ + dir = 8; + icon_state = "burst_l" + }, +/turf/simulated/floor/tiled/steel, +/area/centcom) +"Rr" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/steel, +/area/centcom) +"Rt" = ( +/turf/simulated/floor/tiled, +/area/centcom/security{ + name = "\improper CentCom Residential Security" + }) +"Rv" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor, +/area/centcom) +"Rw" = ( +/turf/simulated/floor, +/area/centcom/control) +"Rx" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/door/window/northright{ + dir = 2; + name = "Cargo Ordering"; + req_access = list(50) + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled, +/area/centcom) +"Ry" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"RB" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorblack/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/bordercorner{ + dir = 1 + }, +/obj/machinery/button/remote/blast_door{ + id = "FrontlockC2"; + name = "Checkpoint Shielding"; + pixel_x = -35; + pixel_y = -8; + req_access = list(63); + req_one_access = list(1) + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Security Arrivals" + }) +"RC" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorblack/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Security Arrivals" + }) +"RD" = ( +/obj/machinery/computer/security{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 5 + }, +/obj/machinery/camera/network/crescent, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Security Arrivals" + }) +"RF" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"RG" = ( +/obj/structure/bed/chair, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"RH" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/centcom/restaurant) +"RI" = ( +/obj/structure/curtain/open/shower, +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/machinery/shower{ + pixel_y = 13 + }, +/turf/simulated/floor/tiled/freezer, +/area/centcom/bathroom) +"RK" = ( +/obj/structure/bed/roller, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/centcom/holding) +"RM" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 10 + }, +/obj/machinery/door/blast/shutters{ + id = "RiotCon"; + name = "Riot Control"; + req_access = list(63); + req_one_access = list(1) + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"RN" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/sign/department/telecoms, +/turf/simulated/floor, +/area/centcom/control) +"RO" = ( +/obj/machinery/door/blast/regular{ + id = "thunderdomegen"; + name = "General Supply" + }, +/turf/unsimulated/floor/techfloor_grid, +/area/tdome/tdome1) +"RP" = ( +/obj/machinery/door/blast/shutters{ + id = "RiotCon"; + name = "Riot Control"; + req_access = list(63); + req_one_access = list(1) + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"RQ" = ( +/obj/structure/morgue{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/turf/simulated/floor/tiled/dark, +/area/centcom/medical) +"RS" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 5 + }, +/obj/machinery/door/blast/shutters{ + id = "RiotCon"; + name = "Riot Control"; + req_access = list(63); + req_one_access = list(1) + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"RT" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/machinery/computer/card, +/turf/simulated/floor/tiled, +/area/centcom/command) +"RU" = ( +/turf/simulated/shuttle/floor/white, +/area/centcom/terminal/shuttlefluff) +"RV" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/kitchenspike{ + desc = "Lifts engines! You could probably also impale people and monkeys on it... but why would you do that, weirdo?"; + name = "engine lift" + }, +/turf/simulated/floor/tiled/steel, +/area/centcom) +"RW" = ( +/obj/structure/table/standard, +/turf/simulated/floor/tiled, +/area/centcom) +"RX" = ( +/obj/structure/flora/pottedplant, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 5 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/purple/bordercorner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"RY" = ( +/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{ + pixel_x = -6 + }, +/obj/structure/table/standard, +/obj/effect/floor_decal/corner/yellow/diagonal, +/obj/effect/floor_decal/corner/blue/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/centcom/control) +"RZ" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/centcom) +"Sa" = ( +/obj/machinery/computer/supplycomp/control{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/centcom) +"Sb" = ( +/obj/machinery/computer/secure_data{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Security Arrivals" + }) +"Sc" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/window/reinforced, +/turf/simulated/floor/tiled/dark, +/area/centcom/living) +"Sd" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 5 + }, +/obj/structure/table/reinforced, +/obj/item/device/camera, +/obj/item/weapon/storage/box/ids, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Security Arrivals" + }) +"Se" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-22" + }, +/turf/simulated/floor/carpet, +/area/centcom/restaurant) +"Sf" = ( +/obj/effect/floor_decal/industrial/outline, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Sg" = ( +/obj/machinery/button/remote/blast_door{ + id = "RiotCon"; + name = "Riot Control"; + pixel_x = -23; + req_access = list(63); + req_one_access = list(1) + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Sh" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/centcom/control) +"Sj" = ( +/obj/item/weapon/stool/padded{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/centcom/specops) +"Sl" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 1; + frequency = 1475; + name = "Station Intercom (Security)"; + pixel_y = 27 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Sn" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/brigdoor{ + req_access = list(63); + req_one_access = list(1) + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"So" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Sp" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Sq" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/shuttle/engine/heater{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel, +/area/centcom) +"Sr" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/shuttle/engine/propulsion{ + icon_state = "burst_l" + }, +/turf/simulated/floor/tiled/steel, +/area/centcom) +"Ss" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 10 + }, +/obj/structure/table/reinforced, +/obj/item/weapon/book/manual/security_space_law, +/obj/item/weapon/book/manual/security_space_law, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Security Arrivals" + }) +"Su" = ( +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Security Arrivals" + }) +"Sw" = ( +/obj/structure/table/glass, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/item/device/healthanalyzer/advanced, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Sx" = ( +/obj/structure/closet/crate/bin, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"Sy" = ( +/obj/structure/curtain/open/shower, +/obj/structure/window/reinforced/tinted{ + dir = 4 + }, +/obj/machinery/shower{ + dir = 1 + }, +/turf/simulated/floor/tiled/freezer, +/area/centcom/bathroom) +"Sz" = ( +/obj/machinery/status_display{ + layer = 4; + pixel_y = 32 + }, +/obj/machinery/vending/security, +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"SB" = ( +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Residential Security" + }) +"SC" = ( +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/blue/border, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Security Arrivals" + }) +"SD" = ( +/obj/machinery/turretid/stun{ + check_access = 0; + check_anomalies = 0; + check_records = 0; + control_area = "\improper CentCom Security Arrivals"; + pixel_x = 32; + req_access = list(101); + req_one_access = list(101) + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Security Arrivals" + }) +"SF" = ( +/obj/machinery/vending/snack, +/turf/simulated/floor/carpet, +/area/centcom/restaurant) +"SG" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor, +/area/centcom/security) +"SJ" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"SK" = ( +/obj/effect/blocker, +/turf/simulated/floor/tiled{ + icon_state = "white" + }, +/area/centcom/living) +"SL" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled, +/area/centcom/security) +"SM" = ( +/obj/effect/floor_decal/industrial/outline, +/obj/structure/closet/secure_closet/nanotrasen_security, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"SN" = ( +/obj/effect/floor_decal/industrial/outline, +/obj/structure/closet/secure_closet/nanotrasen_security, +/obj/item/weapon/storage/box/handcuffs, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"SO" = ( +/obj/machinery/camera/network/crescent{ + dir = 10 + }, +/turf/simulated/floor/tiled/freezer, +/area/centcom/security) +"SP" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/centcom/living) +"SQ" = ( +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/blue/border, +/obj/effect/floor_decal/borderfloorblack/corner2, +/obj/effect/floor_decal/corner/blue/bordercorner2, +/obj/machinery/camera/network/crescent{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"SR" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"SS" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"ST" = ( +/obj/machinery/computer/security{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Residential Security" + }) +"SU" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"SW" = ( +/obj/effect/floor_decal/industrial/outline/grey, +/obj/structure/closet/secure_closet/nanotrasen_warden, +/obj/item/weapon/storage/box/handcuffs, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"SX" = ( +/obj/machinery/door/airlock/security{ + name = "Security" + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Security Arrivals" + }) +"SZ" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/snacks/hotdog, +/obj/item/weapon/reagent_containers/food/snacks/hotdog{ + pixel_x = -5; + pixel_y = -3 + }, +/turf/simulated/floor/wood, +/area/centcom/restaurant) +"Ta" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/snacks/bigbiteburger, +/turf/simulated/floor/wood, +/area/centcom/restaurant) +"Tb" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 10 + }, +/obj/structure/closet/crate/bin, +/turf/simulated/floor/tiled/white, +/area/centcom/bathroom) +"Td" = ( +/obj/structure/table/standard, +/obj/item/clothing/accessory/badge/holo, +/obj/item/clothing/accessory/badge/holo, +/obj/item/clothing/accessory/badge/holo/cord, +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 26 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Te" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/centcom/command) +"Tf" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/material/ashtray/glass, +/obj/machinery/camera/network/crescent{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/centcom/restaurant) +"Tg" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/centcom/restaurant) +"Ti" = ( +/obj/machinery/computer/ship/helm/adv, +/turf/simulated/floor/tiled/eris/dark/cargo, +/area/shuttle/ccboat) +"Tj" = ( +/obj/machinery/door/airlock/medical{ + name = "Operating Theatre"; + req_access = list(45) + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Tk" = ( +/obj/machinery/door/airlock/glass_security{ + id_tag = "innerS"; + name = "Colonial Security Airlock"; + req_access = list(63) + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Tm" = ( +/obj/machinery/door/airlock/glass_security{ + name = "Warden's Office"; + req_access = list(3) + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Tn" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/weapon/gun/energy/sniperrifle, +/obj/item/weapon/gun/energy/sniperrifle, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"To" = ( +/obj/structure/bed/chair/shuttle, +/turf/simulated/shuttle/floor/white, +/area/centcom/terminal/shuttlefluff) +"Tq" = ( +/obj/structure/table/steel, +/obj/item/weapon/storage/firstaid/regular, +/turf/simulated/floor/tiled, +/area/centcom/bathroom) +"Tr" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/structure/table/glass, +/obj/item/weapon/reagent_containers/spray/cleaner, +/obj/item/weapon/reagent_containers/spray/cleaner{ + desc = "Someone has crossed out the 'Space' from Space Cleaner and written in Chemistry. Scrawled on the back is, 'Okay, whoever filled this with polytrinic acid, it was only funny the first time. It was hard enough replacing the CMO's first cat!'"; + name = "Chemistry Cleaner" + }, +/obj/item/weapon/reagent_containers/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner"; + pixel_x = 2; + pixel_y = 2 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Tu" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 9 + }, +/obj/structure/table/reinforced, +/obj/machinery/microwave{ + pixel_y = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Security Arrivals" + }) +"Tv" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 26 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Security Arrivals" + }) +"Tw" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/weapon/gun/energy/netgun, +/obj/item/weapon/gun/energy/netgun, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Tz" = ( +/obj/structure/bed/chair/comfy/teal{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/centcom/command) +"TA" = ( +/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/reagent_dispensers/water_cooler/full, +/turf/simulated/floor/tiled{ + icon_state = "white" + }, +/area/centcom/living) +"TD" = ( +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/blue/border, +/obj/effect/floor_decal/borderfloorblack/corner2, +/obj/effect/floor_decal/corner/blue/bordercorner2, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"TE" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 1 + }, +/obj/machinery/camera/network/crescent, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Security Arrivals" + }) +"TG" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10, +/turf/simulated/floor/tiled, +/area/centcom/security{ + name = "\improper CentCom Residential Security" + }) +"TJ" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/weapon/shield/riot, +/obj/item/weapon/shield/riot, +/obj/item/weapon/shield/riot, +/obj/item/weapon/shield/riot, +/obj/item/weapon/shield/riot, +/obj/item/weapon/shield/riot, +/obj/item/weapon/shield/riot, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"TK" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"TL" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/material/ashtray/glass, +/turf/simulated/floor/carpet, +/area/centcom/restaurant) +"TM" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 9 + }, +/obj/structure/closet/crate/bin, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"TN" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_red" + }, +/area/centcom/terminal/shuttlefluff) +"TO" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"TP" = ( +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 26 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"TQ" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/machinery/camera/network/crescent, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"TR" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 1 + }, +/obj/machinery/turretid/stun{ + check_access = 0; + check_anomalies = 0; + check_records = 0; + control_area = "\improper CentCom Security"; + pixel_y = 32; + req_access = list(101); + req_one_access = list(101) + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"TS" = ( +/obj/machinery/door/airlock/glass_security{ + name = "Security Processing"; + req_access = list(1) + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"TT" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/centcom/terminal) +"TU" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled, +/area/centcom/command) +"TW" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 6 + }, +/obj/structure/sign/warning/lethal_turrets{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/centcom/living) +"TY" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 4 + }, +/obj/machinery/camera/network/crescent, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"TZ" = ( +/obj/machinery/vending/security, +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Ua" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/reinforced, +/area/centcom) +"Ub" = ( +/obj/structure/table/reinforced, +/obj/machinery/computer/skills, +/turf/simulated/floor/tiled, +/area/centcom/command) +"Uc" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/reinforced, +/area/centcom) +"Ud" = ( +/obj/machinery/computer/security, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/centcom/command) +"Ue" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Uf" = ( +/obj/effect/floor_decal/borderfloor{ + pixel_y = -16 + }, +/turf/simulated/floor/tiled, +/area/centcom/command) +"Ug" = ( +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tram" + }, +/obj/machinery/door/airlock/glass_external{ + frequency = 1380; + icon_state = "door_locked"; + id_tag = "escape_shuttle_hatch_station"; + locked = 1; + name = "Shuttle Hatch" + }, +/turf/simulated/floor/tiled, +/area/shuttle/escape{ + base_turf = /turf/simulated/floor/tiled/techfloor/grid + }) +"Uh" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 2 + }, +/turf/simulated/floor/tiled, +/area/centcom/terminal) +"Ui" = ( +/obj/structure/table/rack, +/obj/item/weapon/storage/box/frags, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Uk" = ( +/turf/simulated/floor/tiled, +/area/centcom/security) +"Ul" = ( +/turf/simulated/floor/tiled/white, +/area/centcom/bathroom) +"Um" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/mirror{ + pixel_x = -28 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/bathroom) +"Un" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Uo" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/item/weapon/storage/box/donkpockets, +/obj/item/weapon/storage/box/donkpockets, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Security Arrivals" + }) +"Up" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 6 + }, +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = 30 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Security Arrivals" + }) +"Uq" = ( +/obj/structure/table/standard, +/obj/item/weapon/soap, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/bathroom) +"Ur" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Ut" = ( +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/blue/border, +/obj/effect/floor_decal/borderfloorblack/corner2, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Uu" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/sign/department/interrogation{ + plane = -34 + }, +/turf/simulated/floor, +/area/centcom/security) +"Uv" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/item/weapon/paper_bin{ + pixel_x = -1; + pixel_y = 5 + }, +/obj/item/weapon/pen, +/obj/machinery/camera/network/crescent, +/turf/simulated/floor/tiled, +/area/centcom/command) +"Uw" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 10 + }, +/obj/structure/table/reinforced, +/obj/item/weapon/melee/baton/loaded, +/obj/item/weapon/melee/baton/loaded, +/obj/item/weapon/gun/energy/taser, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Security Arrivals" + }) +"Ux" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/machinery/camera/network/crescent, +/turf/simulated/floor/tiled, +/area/centcom/command) +"Uy" = ( +/obj/structure/toilet{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/bathroom) +"Uz" = ( +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/blue/border, +/obj/structure/closet/secure_closet/nanotrasen_security, +/obj/item/weapon/storage/box/handcuffs, +/obj/item/weapon/gun/energy/gun, +/obj/item/weapon/shield/riot, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Security Arrivals" + }) +"UA" = ( +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/blue/border, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 9 + }, +/obj/structure/closet/secure_closet/nanotrasen_security, +/obj/item/weapon/storage/box/handcuffs, +/obj/item/weapon/gun/energy/gun, +/obj/item/weapon/shield/riot, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Security Arrivals" + }) +"UB" = ( +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/grass, +/area/centcom/main_hall) +"UC" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/turf/simulated/wall/rshull, +/area/shuttle/ccboat) +"UD" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"UE" = ( +/obj/machinery/computer/ship/sensors/adv, +/turf/simulated/floor/tiled/eris/dark/cargo, +/area/shuttle/ccboat) +"UF" = ( +/obj/effect/floor_decal/rust, +/turf/simulated/floor/tiled, +/area/centcom/terminal) +"UG" = ( +/obj/item/weapon/storage/box/evidence, +/obj/item/weapon/folder/red, +/obj/structure/table/reinforced, +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"UH" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/box/empslite{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/weapon/storage/box/flashbangs{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/item/weapon/storage/box/empslite, +/obj/item/weapon/storage/box/flashbangs{ + pixel_x = -2; + pixel_y = -2 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"UJ" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/paper_bin, +/obj/item/weapon/pen, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"UK" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/snacks/roastbeef, +/turf/simulated/floor/wood, +/area/centcom/restaurant) +"UL" = ( +/obj/structure/table/rack, +/obj/item/weapon/gun/projectile/automatic/p90, +/obj/item/weapon/gun/projectile/automatic/p90, +/obj/item/weapon/gun/projectile/automatic/p90, +/obj/item/weapon/gun/projectile/automatic/p90, +/obj/item/weapon/gun/projectile/automatic/p90, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"UM" = ( +/obj/machinery/door/airlock/glass_mining{ + id_tag = "cargodoor"; + name = "Cargo Office"; + req_access = list(31); + req_one_access = list() + }, +/turf/simulated/floor/tiled, +/area/centcom) +"UN" = ( +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tram" + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled, +/area/shuttle/escape{ + base_turf = /turf/simulated/floor/tiled/techfloor/grid + }) +"UO" = ( +/obj/machinery/camera/network/crescent{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/centcom/restaurant) +"UQ" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/snacks/pastatomato, +/turf/simulated/floor/wood, +/area/centcom/restaurant) +"UR" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/snacks/meatballspagetti, +/turf/simulated/floor/wood, +/area/centcom/restaurant) +"US" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 1 + }, +/turf/simulated/shuttle/plating/carry, +/area/centcom/terminal/shuttlefluff) +"UT" = ( +/obj/effect/floor_decal/derelict/d4, +/turf/simulated/floor/tiled, +/area/centcom/terminal) +"UW" = ( +/obj/item/weapon/stool/padded, +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/orange/border, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"UX" = ( +/obj/machinery/computer/guestpass{ + pixel_y = 26 + }, +/turf/simulated/floor/wood, +/area/centcom/restaurant) +"UY" = ( +/obj/structure/table/standard, +/obj/item/weapon/hand_labeler, +/obj/item/weapon/reagent_containers/glass/beaker/large, +/obj/item/weapon/reagent_containers/glass/beaker/sulphuric, +/turf/simulated/floor/tiled, +/area/centcom/control) +"UZ" = ( +/obj/structure/table/marble, +/obj/item/weapon/reagent_containers/food/drinks/cup{ + pixel_x = 8; + pixel_y = 8 + }, +/obj/item/weapon/reagent_containers/food/drinks/cup{ + pixel_x = -4; + pixel_y = 8 + }, +/obj/item/weapon/reagent_containers/food/drinks/cup{ + pixel_x = 3 + }, +/obj/item/weapon/reagent_containers/food/drinks/cup{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/item/weapon/reagent_containers/food/drinks/cup{ + pixel_x = 8 + }, +/obj/item/weapon/reagent_containers/food/drinks/cup{ + pixel_x = -4 + }, +/obj/item/weapon/reagent_containers/food/drinks/cup{ + pixel_x = 8; + pixel_y = 12 + }, +/obj/item/weapon/reagent_containers/food/drinks/cup{ + pixel_x = -4; + pixel_y = 12 + }, +/turf/simulated/floor/wood, +/area/centcom/restaurant) +"Va" = ( +/obj/structure/table/marble, +/obj/machinery/chemical_dispenser/bar_coffee/full, +/obj/machinery/camera/network/crescent, +/turf/simulated/floor/wood, +/area/centcom/restaurant) +"Vb" = ( +/obj/structure/bed/chair/office/dark, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Vc" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Vd" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Vf" = ( +/obj/structure/bed/chair/sofa/bench/right{ + dir = 4; + padding_color = "#99AAFF" + }, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tram" + }, +/obj/random/forgotten_tram, +/turf/simulated/floor/tiled, +/area/shuttle/escape{ + base_turf = /turf/simulated/floor/tiled/techfloor/grid + }) +"Vg" = ( +/obj/structure/table/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_x = -2; + pixel_y = -1 + }, +/obj/item/weapon/tool/crowbar, +/obj/item/weapon/storage/belt/utility, +/obj/item/weapon/storage/toolbox/electrical{ + pixel_x = 1; + pixel_y = 6 + }, +/turf/simulated/floor/tiled, +/area/centcom/control) +"Vh" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 10 + }, +/obj/machinery/camera/network/crescent, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Vj" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Vk" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Vl" = ( +/obj/machinery/vending/hydronutrients, +/obj/effect/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/orange/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Vm" = ( +/obj/machinery/fitness/punching_bag/clown, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Vo" = ( +/obj/machinery/vending/hydroseeds, +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Vp" = ( +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled/dark, +/area/centcom/command) +"Vq" = ( +/turf/simulated/floor/outdoors/grass/sif/virgo3b, +/area/centcom) +"Vr" = ( +/obj/machinery/fitness/heavy/lifter, +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Vt" = ( +/obj/machinery/disease2/isolator, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 5 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Vu" = ( +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Security Arrivals" + }) +"Vv" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/material/minihoe, +/obj/item/device/analyzer/plant_analyzer, +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Vx" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/snacks/kitsuneudon, +/turf/simulated/floor/wood, +/area/centcom/restaurant) +"Vy" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/snacks/lasagna, +/turf/simulated/floor/wood, +/area/centcom/restaurant) +"Vz" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled, +/area/centcom/restaurant) +"VA" = ( +/obj/item/device/camera{ + desc = "A one use - polaroid camera. 30 photos left."; + name = "detectives camera"; + pictures_left = 30; + pixel_x = 2; + pixel_y = 3 + }, +/obj/structure/table/reinforced, +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"VB" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"VC" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"VE" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"VF" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"VH" = ( +/turf/simulated/floor/tiled, +/area/centcom/living) +"VI" = ( +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = 30 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"VJ" = ( +/obj/structure/table/steel_reinforced, +/obj/structure/flora/pottedplant/small{ + name = "Audry VI"; + pixel_x = 1; + pixel_y = 14 + }, +/turf/simulated/floor/tiled/eris/dark/cargo, +/area/shuttle/ccboat) +"VK" = ( +/obj/machinery/computer/security/telescreen/entertainment{ + icon_state = "frame"; + pixel_x = 32 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"VL" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/obj/item/weapon/folder/blue_hop, +/turf/simulated/floor/carpet, +/area/centcom/command) +"VM" = ( +/obj/machinery/optable, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/medical) +"VN" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor, +/area/centcom/main_hall) +"VO" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/item/weapon/paper_bin{ + pixel_x = -1; + pixel_y = 5 + }, +/obj/item/weapon/pen, +/turf/simulated/floor/tiled, +/area/centcom/command) +"VP" = ( +/obj/item/device/taperecorder, +/obj/structure/table/reinforced, +/obj/effect/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"VQ" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/borderfloor, +/obj/item/weapon/paper_bin{ + pixel_x = -1; + pixel_y = 5 + }, +/obj/item/weapon/pen, +/turf/simulated/floor/tiled, +/area/centcom/command) +"VR" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/centcom/command) +"VS" = ( +/obj/structure/table/standard, +/obj/structure/reagent_dispensers/peppertank{ + pixel_x = 30 + }, +/obj/item/device/radio, +/obj/item/device/radio, +/obj/item/device/radio, +/obj/item/device/radio, +/obj/item/device/radio, +/obj/item/device/radio, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/obj/item/device/flashlight, +/obj/item/weapon/tool/crowbar, +/obj/item/weapon/tool/crowbar, +/obj/item/weapon/tool/crowbar, +/obj/item/weapon/tool/crowbar, +/obj/item/weapon/tool/crowbar, +/obj/item/weapon/tool/crowbar, +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 26 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 5 + }, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"VT" = ( +/obj/structure/filingcabinet/filingcabinet, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/centcom/command) +"VV" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/brigdoor{ + dir = 8; + req_access = list(63); + req_one_access = newlist() + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"VW" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"VX" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/ammo_magazine/m9mmp90, +/obj/item/ammo_magazine/m9mmp90, +/obj/item/ammo_magazine/m9mmp90, +/obj/item/ammo_magazine/m9mmp90, +/obj/item/ammo_magazine/m9mmp90, +/obj/item/ammo_magazine/m9mmp90, +/obj/item/ammo_magazine/m9mmp90, +/obj/item/ammo_magazine/m9mmp90, +/obj/item/ammo_magazine/m9mmp90, +/obj/item/ammo_magazine/m9mmp90, +/obj/machinery/camera/network/crescent, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"VY" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"VZ" = ( +/turf/simulated/shuttle/wall, +/area/centcom/terminal/shuttlefluff) +"Wa" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Wb" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 2 + }, +/turf/simulated/floor/tiled, +/area/centcom/restaurant) +"Wc" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/glass, +/turf/simulated/floor/tiled, +/area/centcom/restaurant) +"Wd" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 2 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"We" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Wf" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 10 + }, +/obj/machinery/transhuman/resleever, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Wg" = ( +/obj/machinery/status_display{ + pixel_y = 32 + }, +/turf/simulated/shuttle/floor/white, +/area/centcom/terminal/shuttlefluff) +"Wh" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Wj" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/turf/simulated/floor/tiled{ + icon_state = "white" + }, +/area/centcom/living) +"Wk" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Wl" = ( +/obj/item/weapon/stool/padded, +/turf/simulated/floor/lino, +/area/centcom/restaurant) +"Wm" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-21" + }, +/obj/machinery/camera/network/crescent, +/turf/simulated/floor/tiled/freezer, +/area/centcom/bathroom) +"Wn" = ( +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/blue/border, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Wo" = ( +/obj/structure/bed/chair/office/light, +/turf/simulated/floor/tiled, +/area/centcom/command) +"Wp" = ( +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 26 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Residential Security" + }) +"Wq" = ( +/obj/structure/table/rack, +/obj/item/weapon/storage/box/flashshells/large, +/obj/item/weapon/storage/box/flashshells/large, +/obj/item/weapon/storage/box/flashshells/large, +/obj/item/weapon/storage/box/flashshells/large, +/obj/item/weapon/storage/box/flashshells/large, +/obj/item/weapon/storage/box/flashshells/large, +/obj/item/weapon/storage/box/flashshells/large, +/obj/item/weapon/storage/box/flashshells/large, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Wr" = ( +/obj/structure/curtain/open/shower, +/obj/machinery/shower{ + pixel_y = 13 + }, +/turf/simulated/floor/tiled/freezer, +/area/centcom/security) +"Ws" = ( +/obj/structure/closet{ + name = "Prisoner's Locker" + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Wt" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/effect/floor_decal/corner_steel_grid{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"Wu" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloorblack/corner2, +/obj/effect/floor_decal/corner/blue/bordercorner2, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Ww" = ( +/obj/machinery/computer/card{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Wx" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Wz" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/orange/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"WA" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/orange/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"WB" = ( +/turf/simulated/floor/bluegrid, +/area/centcom/control) +"WC" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/command) +"WD" = ( +/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/table/glass, +/obj/item/weapon/storage/firstaid/o2, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"WE" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/bed/chair/shuttle{ + dir = 4 + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_yellow" + }, +/area/centcom/terminal/shuttlefluff) +"WF" = ( +/obj/machinery/door/airlock/angled_bay/standard/glass{ + dir = 4; + door_color = "#e6ab22"; + name = "Engineering Glass"; + req_access = null; + stripe_color = "#913013" + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_yellow" + }, +/area/centcom/terminal/shuttlefluff) +"WG" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/centcom) +"WH" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/bed/chair/shuttle{ + dir = 8 + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_yellow" + }, +/area/centcom/terminal/shuttlefluff) +"WI" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor, +/area/centcom/medical) +"WJ" = ( +/obj/machinery/computer/secure_data{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/blue/border, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"WK" = ( +/obj/structure/table/standard, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tram" + }, +/turf/simulated/floor/tiled, +/area/shuttle/escape{ + base_turf = /turf/simulated/floor/tiled/techfloor/grid + }) +"WM" = ( +/obj/machinery/camera/network/crescent, +/turf/simulated/floor/tiled, +/area/centcom/bathroom) +"WO" = ( +/obj/machinery/door/blast/angled/open{ + id = "ccshuttleshutter" + }, +/obj/machinery/shipsensors{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/shuttle/ccboat) +"WP" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"WQ" = ( +/obj/structure/filingcabinet/chestdrawer{ + desc = "A large drawer filled with autopsy reports."; + name = "Autopsy Reports" + }, +/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, +/turf/simulated/floor/tiled/dark, +/area/centcom/medical) +"WR" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor, +/area/centcom/bar) +"WS" = ( +/obj/structure/table/standard, +/obj/machinery/computer/skills{ + pixel_y = 2 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/centcom/command) +"WU" = ( +/obj/structure/closet{ + name = "Prisoner's Locker" + }, +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/orange/border, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"WV" = ( +/obj/machinery/door/airlock, +/turf/simulated/floor/tiled, +/area/centcom/security) +"WW" = ( +/obj/effect/floor_decal/corner/blue{ + dir = 6 + }, +/obj/machinery/door/airlock/security{ + name = "Security" + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"WX" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/centcom/command) +"WY" = ( +/obj/structure/bed/chair, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"WZ" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/machinery/button/remote/blast_door{ + id = "TelelockdownC"; + name = "Teleporter Full Lockdown"; + pixel_x = 6; + pixel_y = -5; + req_access = list(63); + req_one_access = list(1) + }, +/obj/item/weapon/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/machinery/camera/network/crescent, +/turf/simulated/floor/tiled, +/area/centcom/command) +"Xb" = ( +/obj/structure/table/rack, +/obj/item/weapon/shield/energy, +/obj/item/weapon/shield/energy, +/obj/item/weapon/shield/energy, +/obj/item/weapon/shield/energy, +/obj/item/weapon/shield/energy, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/weapon/melee/energy/sword/blue, +/obj/item/weapon/melee/energy/sword/blue, +/obj/item/weapon/melee/energy/sword/blue, +/obj/item/weapon/melee/energy/sword/blue, +/obj/item/weapon/melee/energy/sword/blue, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Xc" = ( +/obj/machinery/door/airlock/glass{ + name = "Brig Dormitories" + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Xd" = ( +/obj/structure/bed/chair/shuttle{ + dir = 4 + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_yellow" + }, +/area/centcom/terminal/shuttlefluff) +"Xe" = ( +/obj/structure/closet{ + name = "welding equipment" + }, +/obj/item/clothing/head/welding{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/item/clothing/glasses/welding, +/turf/simulated/floor/tiled, +/area/centcom/control) +"Xf" = ( +/obj/effect/floor_decal/industrial/outline, +/obj/structure/closet/secure_closet/nanotrasen_security, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Xg" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/light, +/obj/machinery/transhuman/resleever, +/turf/simulated/floor/tiled, +/area/centcom/control) +"Xh" = ( +/obj/machinery/door/airlock{ + name = "Unit 1" + }, +/turf/simulated/floor/tiled/freezer, +/area/centcom/security) +"Xi" = ( +/obj/structure/bed/chair/shuttle{ + dir = 8 + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor_yellow" + }, +/area/centcom/terminal/shuttlefluff) +"Xk" = ( +/obj/structure/bed/chair/shuttle{ + dir = 4 + }, +/turf/simulated/shuttle/floor/white, +/area/centcom/terminal/shuttlefluff) +"Xl" = ( +/obj/structure/bed/chair/shuttle{ + dir = 8 + }, +/turf/simulated/shuttle/floor/white, +/area/centcom/terminal/shuttlefluff) +"Xm" = ( +/obj/structure/closet/crate, +/turf/simulated/floor/tiled/dark, +/area/centcom) +"Xn" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-22" + }, +/turf/simulated/floor/tiled, +/area/centcom/living) +"Xp" = ( +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"Xq" = ( +/turf/simulated/floor/tiled/dark, +/area/centcom) +"Xr" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/gun/energy/taser, +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 26 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Xs" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/weapon/gun/energy/xray, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Xt" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"Xu" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"Xw" = ( +/obj/structure/bed/chair/office/dark, +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Xx" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/drinks/bottle/grenadine, +/turf/simulated/floor/lino, +/area/centcom/restaurant) +"Xy" = ( +/turf/simulated/floor/carpet, +/area/centcom/command) +"Xz" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/green, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 6 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"XA" = ( +/obj/structure/bed/chair/sofa/bench/right{ + dir = 1; + padding_color = "#99AAFF" + }, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tram" + }, +/turf/simulated/floor/tiled, +/area/shuttle/escape{ + base_turf = /turf/simulated/floor/tiled/techfloor/grid + }) +"XB" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/drinks/bottle/cola, +/turf/simulated/floor/lino, +/area/centcom/restaurant) +"XD" = ( +/obj/machinery/door/airlock/security{ + id_tag = "front"; + name = "Security" + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"XE" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/drinks/bottle/space_mountain_wind, +/turf/simulated/floor/lino, +/area/centcom/restaurant) +"XF" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/snacks/toastedsandwich{ + pixel_y = 10 + }, +/turf/simulated/floor/lino, +/area/centcom/restaurant) +"XH" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/structure/table/woodentable, +/obj/item/device/radio/off, +/obj/item/device/megaphone, +/obj/machinery/camera/network/crescent, +/turf/simulated/floor/tiled/dark, +/area/centcom/command) +"XI" = ( +/obj/machinery/teleport/hub, +/turf/simulated/floor/tiled, +/area/centcom) +"XJ" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-04" + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"XM" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/machinery/photocopier, +/turf/simulated/floor/tiled/dark, +/area/centcom/command) +"XN" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"XO" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/machinery/newscaster{ + pixel_x = 29 + }, +/turf/simulated/floor/tiled, +/area/centcom/command) +"XP" = ( +/turf/simulated/floor/tiled/dark, +/area/centcom/medical) +"XQ" = ( +/obj/structure/bed/chair/sofa/bench/left{ + dir = 1; + padding_color = "#99AAFF" + }, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tram" + }, +/turf/simulated/floor/tiled, +/area/shuttle/escape{ + base_turf = /turf/simulated/floor/tiled/techfloor/grid + }) +"XR" = ( +/obj/machinery/porta_turret/crescent{ + density = 1 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/camera/network/crescent, +/turf/simulated/floor/tiled, +/area/centcom/security) +"XS" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-22" + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"XT" = ( +/obj/structure/bed/chair/office/dark, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"XU" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/box/donkpockets, +/obj/item/weapon/storage/box/donkpockets, +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"XV" = ( +/obj/structure/table/reinforced, +/obj/item/device/taperecorder, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"XW" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/orange/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"XX" = ( +/obj/machinery/light, +/turf/simulated/shuttle/floor{ + icon_state = "floor_yellow" + }, +/area/centcom/terminal/shuttlefluff) +"XY" = ( +/obj/machinery/camera/network/crescent{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"XZ" = ( +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tram" + }, +/turf/simulated/floor/tiled, +/area/shuttle/escape{ + base_turf = /turf/simulated/floor/tiled/techfloor/grid + }) +"Ya" = ( +/obj/machinery/porta_turret/crescent{ + density = 1 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled, +/area/centcom/living) +"Yc" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-21" + }, +/turf/simulated/floor/tiled, +/area/centcom/terminal) +"Yd" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/orange, +/obj/machinery/camera/network/crescent, +/obj/effect/floor_decal/borderfloorblack{ + dir = 5 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Ye" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/angled_bay/external/glass{ + dir = 4; + door_color = "#822a1e"; + frequency = 1380; + id_tag = "escape_shuttle_hatch"; + locked = 1; + name = "Docking Port Airlock" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/centcom/terminal/shuttlefluff) +"Yf" = ( +/obj/effect/floor_decal/industrial/warning/corner, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "reinforced"; + name = "reinforced floor" + }, +/area/centcom) +"Yh" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 6 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/purple/bordercorner2, +/obj/effect/floor_decal/corner/purple/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"Yj" = ( +/obj/machinery/vending/coffee, +/turf/simulated/floor/wood, +/area/centcom/restaurant) +"Yn" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/structure/reagent_dispensers/water_cooler/full, +/obj/machinery/camera/network/crescent, +/turf/simulated/floor/tiled, +/area/centcom/command) +"Yo" = ( +/obj/machinery/vending/sovietsoda, +/turf/simulated/floor/wood, +/area/centcom/restaurant) +"Yp" = ( +/obj/machinery/vending/snack, +/turf/simulated/floor/wood, +/area/centcom/restaurant) +"Yq" = ( +/obj/machinery/vending/cola, +/turf/simulated/floor/wood, +/area/centcom/restaurant) +"Ys" = ( +/obj/structure/table/rack, +/obj/item/weapon/storage/box/seccarts{ + pixel_x = 3; + pixel_y = 2 + }, +/obj/item/weapon/storage/box/handcuffs, +/obj/item/weapon/storage/box/flashbangs{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/device/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Yt" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 6 + }, +/obj/machinery/camera/network/crescent, +/turf/simulated/floor/tiled, +/area/centcom/living) +"Yu" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/orange, +/obj/effect/floor_decal/borderfloorblack{ + dir = 6 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Yv" = ( +/obj/machinery/atm{ + pixel_x = -26 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Yw" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Yx" = ( +/obj/structure/table/rack, +/obj/item/weapon/gun/projectile/shotgun/pump/combat, +/obj/item/weapon/gun/projectile/shotgun/pump/combat, +/obj/item/weapon/gun/projectile/shotgun/pump/combat, +/obj/item/weapon/gun/projectile/shotgun/pump/combat, +/obj/item/weapon/gun/projectile/shotgun/pump/combat, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Yy" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"Yz" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/orange, +/obj/effect/floor_decal/borderfloorblack{ + dir = 9 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/orange/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"YA" = ( +/obj/structure/table/reinforced, +/obj/machinery/microwave, +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"YB" = ( +/obj/machinery/newscaster{ + layer = 3.3; + pixel_x = 28 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"YC" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/bed/chair/shuttle{ + dir = 4 + }, +/turf/simulated/shuttle/floor/white, +/area/centcom/terminal/shuttlefluff) +"YD" = ( +/obj/structure/bed/chair/shuttle{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/shuttle/ccboat) +"YE" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/control) +"YF" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "reinforced"; + name = "reinforced floor" + }, +/area/centcom) +"YH" = ( +/obj/structure/bed/chair/office/dark, +/obj/effect/floor_decal/borderfloorblack/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Residential Security" + }) +"YI" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 6 + }, +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/drinks/flask/barflask{ + pixel_x = -4; + pixel_y = 8 + }, +/obj/item/device/taperecorder, +/turf/simulated/floor/tiled/dark, +/area/centcom/command) +"YJ" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"YK" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"YM" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 6 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 6 + }, +/obj/structure/table/glass, +/obj/item/weapon/storage/box/syringes, +/turf/simulated/floor/tiled/white, +/area/centcom/medical) +"YN" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/tiles.dmi'; + icon_state = "reinforced"; + name = "reinforced floor" + }, +/area/centcom) +"YQ" = ( +/turf/simulated/shuttle/floor{ + icon_state = "floor_yellow" + }, +/area/centcom/terminal/shuttlefluff) +"YR" = ( +/obj/machinery/smartfridge/drinks, +/turf/simulated/floor/lino, +/area/centcom/restaurant) +"YS" = ( +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tram" + }, +/obj/structure/bed/chair/sofa/bench/left{ + dir = 8; + padding_color = "#99AAFF" + }, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/shuttle/escape{ + base_turf = /turf/simulated/floor/tiled/techfloor/grid + }) +"YT" = ( +/obj/structure/shuttle/engine/heater{ + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/simulated/shuttle/plating/airless, +/area/centcom/terminal/shuttlefluff) +"YU" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"YV" = ( +/obj/structure/table/reinforced, +/obj/machinery/microwave, +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Residential Security" + }) +"YX" = ( +/obj/structure/table/rack, +/obj/item/clothing/gloves/arm_guard/laserproof, +/obj/item/clothing/shoes/leg_guard/laserproof, +/obj/item/clothing/suit/armor/laserproof, +/obj/item/clothing/head/helmet/laserproof, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"YY" = ( +/obj/machinery/vending/boozeomat, +/turf/simulated/floor/lino, +/area/centcom/restaurant) +"YZ" = ( +/obj/structure/table/reinforced, +/obj/machinery/chemical_dispenser/bar_soft/full, +/turf/simulated/floor/lino, +/area/centcom/restaurant) +"Za" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/centcom/terminal) +"Zb" = ( +/obj/structure/table/reinforced, +/obj/machinery/chemical_dispenser/bar_alc/full, +/turf/simulated/floor/lino, +/area/centcom/restaurant) +"Zc" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/medical) +"Zd" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Ze" = ( +/obj/machinery/camera/network/crescent, +/turf/simulated/floor/tiled, +/area/centcom/main_hall) +"Zg" = ( +/turf/simulated/floor/tiled, +/area/centcom/bathroom) +"Zh" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/reagent_containers/food/drinks/flask/barflask, +/obj/item/weapon/reagent_containers/glass/rag, +/obj/item/weapon/reagent_containers/food/drinks/flask/vacuumflask, +/turf/simulated/floor/lino, +/area/centcom/restaurant) +"Zj" = ( +/obj/machinery/newscaster{ + pixel_x = -27 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Zk" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/centcom/command) +"Zl" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Zm" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-04" + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Zo" = ( +/obj/machinery/porta_turret/crescent{ + density = 1 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Zp" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/pill_bottle/dice, +/obj/item/weapon/deck/cards, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Zq" = ( +/obj/machinery/computer/security/telescreen, +/turf/unsimulated/floor/steel, +/area/tdome/tdomeobserve) +"Zs" = ( +/obj/machinery/door/airlock/glass_security{ + name = "Confiscated Items"; + req_access = list(3) + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"Zt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/dark/cargo, +/area/shuttle/ccboat) +"Zu" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/machinery/door/airlock/glass{ + name = "Kitchen"; + req_access = list(28) + }, +/turf/simulated/floor/tiled/white, +/area/centcom/bar) +"Zv" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/machinery/camera/network/crescent, +/turf/simulated/floor/tiled, +/area/centcom/security) +"Zx" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/centcom/living) +"Zy" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9, +/turf/simulated/floor/tiled, +/area/centcom/living) +"Zz" = ( +/obj/machinery/status_display{ + pixel_x = -31 + }, +/turf/simulated/floor/tiled, +/area/centcom/security) +"ZA" = ( +/obj/structure/table/woodentable{ + dir = 5 + }, +/turf/simulated/floor/carpet, +/area/centcom/command) +"ZB" = ( +/obj/machinery/door/airlock, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"ZC" = ( +/turf/simulated/shuttle/floor, +/area/centcom/terminal/shuttlefluff) +"ZD" = ( +/obj/machinery/porta_turret/crescent{ + density = 1 + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled, +/area/centcom/security) +"ZF" = ( +/obj/machinery/computer/secure_data{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"ZG" = ( +/obj/item/weapon/paper{ + info = "You're not supposed to be here."; + name = "unnerving letter" + }, +/turf/simulated/floor/tiled/dark, +/area/centcom) +"ZH" = ( +/obj/structure/table/marble, +/obj/machinery/microwave{ + pixel_x = -3; + pixel_y = 6 + }, +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/bar) +"ZI" = ( +/obj/effect/floor_decal/derelict/d7, +/turf/simulated/floor/tiled, +/area/centcom/terminal) +"ZJ" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/turf/simulated/floor, +/area/centcom/terminal) +"ZK" = ( +/turf/simulated/floor/tiled, +/area/centcom/terminal) +"ZL" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/structure/sink/kitchen{ + pixel_y = 28 + }, +/turf/simulated/floor/tiled/white, +/area/centcom/bar) +"ZM" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/simulated/floor/tiled/white, +/area/centcom/bar) +"ZN" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/tool/crowbar, +/obj/item/weapon/tool/screwdriver, +/obj/item/weapon/tool/wrench, +/obj/item/weapon/tool/crowbar, +/obj/item/weapon/tool/screwdriver, +/obj/item/weapon/tool/wrench, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/tiled{ + icon_state = "dark" + }, +/area/centcom/specops) +"ZO" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/structure/table/marble, +/obj/machinery/reagentgrinder, +/turf/simulated/floor/tiled/white, +/area/centcom/bar) +"ZP" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security{ + name = "\improper CentCom Residential Security" + }) +"ZQ" = ( +/turf/unsimulated/mineral/virgo3b, +/area/centcom) +"ZR" = ( +/obj/machinery/deployable/barrier, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled, +/area/centcom/security) +"ZS" = ( +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/obj/machinery/vending/dinnerware, +/turf/simulated/floor/tiled/white, +/area/centcom/bar) +"ZT" = ( +/obj/structure/table/rack, +/obj/item/weapon/storage/box/empshells/large, +/obj/item/weapon/storage/box/empshells/large, +/obj/item/weapon/storage/box/empshells/large, +/obj/item/weapon/storage/box/empshells/large, +/obj/item/weapon/storage/box/empshells/large, +/obj/item/weapon/storage/box/empshells/large, +/obj/item/weapon/storage/box/empshells/large, +/obj/item/weapon/storage/box/empshells/large, +/obj/item/weapon/storage/box/empshells/large, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/camera/network/crescent, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) +"ZU" = ( +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tram" + }, +/obj/structure/bed/chair/shuttle{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/shuttle/escape{ + base_turf = /turf/simulated/floor/tiled/techfloor/grid + }) +"ZW" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/blue/border, +/turf/simulated/floor/tiled, +/area/centcom/command) +"ZY" = ( +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + id_tag = "supply_shuttle"; + pixel_x = -25; + req_one_access = list(13,31); + tag_door = "supply_shuttle_hatch" + }, +/turf/simulated/shuttle/floor, +/area/shuttle/supply) +"ZZ" = ( +/obj/machinery/computer/arcade/orion_trail, +/obj/effect/floor_decal/borderfloorblack{ + dir = 10 + }, +/obj/effect/floor_decal/corner/orange/border{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/orange/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/centcom/security) + +(1,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(2,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(3,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(4,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(5,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(6,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(7,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(8,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(9,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(10,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(11,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(12,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(13,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(14,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(15,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(16,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(17,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(18,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(19,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(20,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +aH +aH +GA +GA +GA +aH +aH +GA +GA +GA +aH +aH +GA +GA +GA +aH +aH +GA +GA +GA +aH +aH +GA +GA +GA +aH +aH +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(21,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +aH +Ua +GW +GW +GW +GW +GW +GW +GW +GW +GW +GW +GW +GW +GW +GW +GW +GW +GW +GW +GW +GW +GW +GW +GW +fg +aH +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(22,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +QL +Qr +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +zZ +aH +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(23,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +QL +Qr +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +VZ +VZ +PR +PR +PR +PR +VZ +Bf +Bf +Bf +zZ +aH +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(24,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +aH +Qr +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +US +YT +fW +fW +fW +KO +Ot +VZ +Bf +Bf +zZ +aH +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(25,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +QL +Qr +Bf +VZ +VZ +VZ +Ye +VZ +VZ +VZ +VZ +Bf +Bf +Bf +Bf +US +YT +hQ +hQ +hQ +hQ +ey +gm +Bf +Bf +zZ +aH +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(26,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +aH +Qr +Bf +US +YT +YQ +YQ +WE +Xd +Xd +VZ +PR +PR +PR +PR +VZ +VZ +jN +hQ +hQ +tt +ey +gm +Bf +Bf +zZ +aH +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(27,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +QL +Qr +Bf +US +YT +YQ +YQ +YQ +YQ +XX +VZ +Xk +Xk +Xk +Xk +YC +VZ +yR +hQ +hQ +tt +Ot +VZ +VZ +Bf +zZ +aH +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(28,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +QL +Qr +Bf +Ot +VZ +YQ +YQ +YQ +Xi +Xi +VZ +Wg +RU +RU +RU +RU +yy +hQ +hQ +TN +hQ +DP +VZ +VZ +Bf +zZ +aH +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(29,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +aH +Qr +Bf +VZ +VZ +VZ +VZ +WF +VZ +VZ +Ot +RU +To +Nz +FY +RU +Ot +PR +Ot +VZ +VZ +VZ +VZ +VZ +Bf +zZ +aH +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(30,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +ah +ah +PL +PL +PL +ah +ah +PL +PL +PL +ah +ah +Qr +Bf +Bf +Bf +VZ +zR +RU +Xk +Xk +YC +RU +To +Ps +FY +RU +Xk +Xk +VZ +rQ +rQ +Qi +qe +PR +Bf +zZ +aH +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(31,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +ah +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +qU +Qr +Bf +Bf +Bf +OL +RU +RU +RU +RU +RU +RU +To +Nz +cl +hY +GQ +RU +jq +ZC +ZC +ZC +ME +PR +Bf +zZ +aH +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(32,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +ah +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +ah +Qr +Bf +Bf +Bf +VZ +Wg +RU +Nz +Nz +Nz +RU +RU +RU +rM +kD +KS +tr +VZ +AM +ZC +bQ +cm +PR +Bf +zZ +aH +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(33,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +ah +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +qU +Qr +Bf +Bf +Bf +OL +RU +RU +RU +RU +RU +RU +To +Nz +wx +pl +wn +RU +jq +ZC +ZC +ZC +EI +PR +Bf +zZ +aH +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(34,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +ah +dY +vu +vu +vu +ah +ah +ah +ah +ah +ah +ah +Qr +Bf +Bf +Bf +VZ +zR +RU +Xl +Xl +EB +RU +To +Ps +FY +RU +Xl +Xl +VZ +li +LZ +AS +un +PR +Bf +zZ +aH +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(35,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +Vq +ah +vu +vu +vu +vu +ah +dj +ze +dj +ze +ze +ze +Qr +Bf +VZ +VZ +VZ +VZ +WF +VZ +VZ +Ot +RU +To +Nz +FY +RU +Ot +PR +Ot +VZ +VZ +VZ +VZ +VZ +Bf +zZ +aH +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(36,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aH +aH +GA +GA +GA +aH +aH +GA +GA +GA +aH +aH +GA +GA +GA +aH +ah +vu +vu +vu +vu +ah +Qt +ze +ze +ze +dj +ze +Qr +Bf +Ot +VZ +YQ +YQ +YQ +Xd +Xd +VZ +Wg +RU +RU +RU +RU +zt +RU +RU +lu +RU +oh +VZ +VZ +Bf +zZ +aH +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(37,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aH +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +ah +vu +vu +vu +vu +ah +ze +xH +xH +xH +xH +ze +Qr +Bf +US +YT +YQ +YQ +YQ +YQ +XX +VZ +Xl +Xl +Xl +Xl +EB +VZ +sl +RU +RU +Ai +Ot +VZ +VZ +Bf +zZ +aH +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(38,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aH +Bf +GL +WG +WG +WG +WG +JU +Bf +GL +WG +WG +WG +WG +JU +Bf +OO +vu +vu +vu +vu +ah +ze +Rq +RV +Sq +xH +ze +Qr +Bf +US +YT +YQ +YQ +WH +Xi +Xi +VZ +PR +PR +PR +PR +VZ +VZ +lG +RU +RU +sL +ey +gm +Bf +Bf +zZ +aH +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(39,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aH +Bf +zZ +Bf +Bf +Bf +Bf +Qr +Bf +zZ +Bf +Bf +Bf +Bf +Qr +Bf +OP +vu +vu +vu +vu +ah +ze +xH +xH +xH +xH +ze +Qr +Bf +VZ +VZ +VZ +Ye +VZ +VZ +VZ +VZ +Bf +Bf +Bf +Bf +US +YT +RU +RU +RU +RU +ey +gm +Bf +Bf +zZ +aH +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(40,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aH +Bf +zZ +Bf +Bf +Bf +Bf +Qr +Bf +zZ +Bf +Bf +Bf +Bf +Qr +Bf +ah +vu +vu +vu +vu +ah +ze +Rr +dk +Sr +xH +ze +Qr +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +US +YT +Xl +Xl +Xl +eK +Ot +VZ +Bf +Bf +zZ +aH +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(41,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aH +Bf +zZ +Bf +Bf +Bf +Bf +Qr +Bf +zZ +Bf +Bf +Bf +Bf +Qr +Bf +ah +vu +vu +vu +vu +ah +ze +xH +xH +xH +xH +ze +Qr +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +VZ +VZ +PR +PR +PR +PR +VZ +Bf +Bf +Bf +zZ +aH +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(42,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aH +Bf +zZ +Bf +Bf +Bf +Bf +Qr +Bf +zZ +Bf +Bf +Bf +Bf +Qr +Bf +ah +vu +vu +vu +vu +ah +Qy +ze +Qz +ze +ze +ze +Qr +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +zZ +aH +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(43,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aH +Bf +zZ +Bf +Bf +Bf +Bf +Qr +Bf +zZ +Bf +Bf +Bf +Bf +Qr +Bf +ah +vu +vu +vu +vu +ah +Qz +ze +ze +ze +Qy +ze +Uc +WG +WG +WG +WG +WG +WG +WG +WG +WG +WG +WG +WG +WG +WG +WG +WG +WG +WG +WG +WG +WG +WG +WG +qK +aH +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(44,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aH +Bf +zZ +Bf +Bf +Bf +Bf +Qr +Bf +zZ +Bf +Bf +Bf +Bf +Qr +Bf +OO +vu +vu +vu +vu +ah +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(45,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aH +Bf +GM +GW +GW +GW +GW +JX +Bf +GM +GW +GW +GW +GW +JX +Bf +OP +vu +vu +vu +vu +vu +ze +vm +ze +ze +wG +wG +OY +wG +aH +xH +xH +xH +aH +Xm +Xm +Xq +Xm +Xm +Xm +Xq +Xm +Xm +aH +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(46,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aH +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +Bf +ah +vu +vu +vu +vu +vu +OY +bm +ze +ze +xH +xH +xH +xH +aH +xH +xH +xH +aH +Xq +Xq +Xq +Xq +ZG +Xq +Xq +Xq +Xq +aH +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(47,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +ah +vu +vu +vu +vu +vu +OY +Rv +RW +ze +ze +ze +ze +ze +UM +xH +xH +xH +aH +Xm +Xm +Xq +Xm +Xm +Xm +Xq +Xm +Xm +aH +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(48,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ah +dY +vu +vu +vu +vu +OY +Rv +RW +ze +OY +wG +OY +OY +aH +xH +xH +xH +bm +Xq +Xq +Xq +Xq +Xq +Xq +Xq +Xq +Xq +bm +aH +aH +aH +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(49,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ah +vu +vu +vu +vu +vu +QC +Rx +RZ +ze +ze +ze +ze +ze +aH +Oz +Oz +Oz +Oz +Oz +Oz +Oz +Oz +Oz +Oz +Oz +Oz +Oz +Oz +Oz +Oz +aH +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(50,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ah +vu +vu +vu +vu +vu +QE +aH +Sa +ze +wG +OY +wG +OY +aH +Oz +Yf +QK +QK +QK +QK +QK +QK +QK +QK +QK +QK +QK +QK +kQ +Oz +aH +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(51,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aM +aM +aM +aM +aM +aM +aM +aM +aM +dY +vu +vu +vu +aM +aM +aM +aM +aM +aM +aM +aM +aM +aH +Oz +YF +Oz +Oz +Oz +Oz +Oz +Oz +Oz +Oz +Oz +Oz +Oz +Oz +hu +Oz +aH +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(52,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +al +al +al +al +al +al +al +al +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aM +Lx +LF +LF +MH +Ni +lj +NP +aM +vu +vu +vu +vu +aM +QF +lj +xg +LF +LF +LF +Um +aM +aH +Oz +YF +Oz +Oz +Oz +Oz +Oz +Oz +Oz +Oz +Oz +Oz +Oz +Oz +hu +Oz +aH +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(53,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +al +al +al +al +al +al +al +al +mR +mR +mR +mR +mR +uz +al +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aM +Or +Ul +Ul +Ul +Ul +Ul +NQ +aM +vu +vu +vu +vu +aM +Or +Ul +Ul +Ul +Ul +Ul +NQ +aM +aH +Oz +YF +Cv +Cv +Cv +BJ +bB +Cv +bB +et +Cv +Cv +Cv +Oz +hu +Oz +aH +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(54,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +al +jc +jc +kl +kl +al +al +al +RO +RO +RO +RO +RO +RO +al +al +al +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aM +Ul +Ul +Ul +Ul +Ul +Ul +Ul +OR +vu +vu +vu +vu +OR +Ul +Ul +Ul +Ul +Ul +Ul +Ul +aM +aH +Oz +YF +Cv +Cj +oT +dG +Cj +ZY +Cj +yb +oT +Cv +Cv +NX +hu +Oz +aH +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(55,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +al +je +je +je +lb +al +me +GJ +Gb +Gb +Gb +Gb +Gb +Gb +vW +wi +al +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aM +Ul +LI +Ul +LI +Ul +LI +Ul +aM +Ze +vu +vu +vu +aM +Ul +LI +Ul +LI +Ul +LI +Ul +aM +aH +Oz +YF +Cv +Cj +Cj +dG +Cj +Cj +Cj +yb +Cj +Cj +HG +kE +hu +Oz +aH +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(56,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +al +je +je +je +lc +al +me +GJ +Gb +oE +Gb +Gb +oE +Gb +vW +wi +al +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aM +xi +aM +LW +aM +Nj +aM +NR +aM +Pg +vu +vu +nl +aM +xi +aM +LW +aM +Nj +aM +NR +aM +aH +Oz +YF +Cv +Cj +Cj +dG +Cj +Cj +Cj +yb +Cj +Cj +HG +Qs +hu +Oz +aH +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(57,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +al +je +je +je +lc +al +me +GJ +Gb +Gb +qg +Gb +Gb +Gb +vW +wi +al +ZQ +aw +aw +aw +aw +aw +aw +aw +ZQ +ZQ +ZQ +aw +aw +aw +aw +aw +aw +aw +FV +aM +Uy +aM +Uy +aM +Uy +aM +Pj +vu +vu +nl +aM +Uy +aM +Uy +aM +Uy +aM +FV +aM +aH +Oz +YF +Cv +Cj +Cj +Cj +Cj +Cj +Cj +Cj +Cj +Cj +HG +kE +hu +Oz +aH +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(58,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +al +je +je +je +je +al +me +GJ +Gb +oE +Gb +Gb +oE +Gb +vW +wi +al +ZQ +aw +yF +AI +AI +DD +Eb +aw +ZQ +ZQ +ZQ +aw +GX +HV +Ik +IS +JY +aw +aM +aM +aM +aM +aM +aM +aM +aM +uE +vu +vu +nl +aM +aM +aM +aM +aM +aM +aM +aM +aM +aH +Oz +YF +Cv +Cj +rC +Cj +Cj +Cj +Cj +Cj +rC +Cv +Cv +NA +hu +Oz +aH +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(59,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +al +eP +eP +GP +je +al +me +GJ +Gb +Gb +Gb +Gb +Gb +Gb +vW +wi +al +ZQ +aw +yI +QT +QT +DF +Eg +aw +ZQ +ZQ +ZQ +aw +Hc +QT +qc +EL +JZ +aw +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ah +Pn +vu +vu +nl +bk +bk +bk +bk +bk +bk +bk +bk +bk +aH +Oz +YF +Cv +Cv +Cv +Cv +Cv +Cv +Cv +Cv +Cv +Cv +Cv +Oz +hu +Oz +aH +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(60,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +al +al +al +al +nk +al +al +al +gp +gp +gp +gp +gp +gp +al +al +al +ZQ +aw +yT +QT +QT +QT +lT +aw +ZQ +ZQ +ZQ +aw +Hg +QT +In +KP +Kc +aw +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ah +uE +vu +vu +nl +Qm +yh +xY +Sb +Ss +bk +Tu +Uo +Uw +aH +Oz +YF +Oz +Oz +Oz +Oz +Oz +Oz +Oz +Oz +Oz +Oz +Oz +Oz +hu +Oz +aH +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(61,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +al +eQ +IH +IH +IH +Lm +LL +iC +iC +iC +iC +iC +iC +LL +al +ZQ +ZQ +aw +yX +QT +QT +QT +Ei +aw +ZQ +ZQ +ZQ +aw +Hp +QT +Io +KP +Kh +aw +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ah +MG +vu +vu +nl +Qn +vZ +RB +Vu +Su +bk +Tv +Vu +Uz +aH +Oz +YF +Oz +Oz +Oz +Oz +Oz +Oz +Oz +Oz +Oz +Oz +Oz +Oz +hu +Oz +aH +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(62,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +al +AF +fF +IH +fF +Lm +iC +iC +iC +iC +iC +iC +iC +iC +al +ZQ +ZQ +aw +yX +QT +QT +QT +Ei +aw +ZQ +ZQ +ZQ +aw +Hq +HW +Ip +IT +Kj +aw +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ah +HM +vu +vu +vu +Qn +wX +RC +Vu +SC +bk +TE +Vu +UA +aH +Oz +YN +qW +qW +qW +qW +qW +qW +qW +qW +qW +qW +qW +qW +Mw +Oz +aH +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(63,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +al +jx +fF +Zq +fF +Lm +iC +iC +iC +iC +iC +iC +iC +iC +al +ZQ +ZQ +aw +Je +Ji +QT +aF +Xz +aw +ZQ +ZQ +ZQ +aw +aw +aw +aw +Tj +aL +aw +aw +aw +aw +aw +aw +aw +aw +aw +vu +vu +vu +vu +Qm +yh +RD +Sd +SD +SX +Vu +Up +Vu +aH +Oz +Oz +Oz +Oz +Oz +Oz +Oz +Oz +Oz +Oz +Oz +Oz +Oz +Oz +Oz +Oz +aH +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(64,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +al +AF +fF +lh +fF +Lm +iC +iC +iC +iC +iC +iC +iC +iC +al +ZQ +ZQ +aw +aw +WI +CV +WI +WI +aw +ZQ +ZQ +ZQ +aw +om +HY +NJ +QT +Pu +KD +aw +LK +Md +MI +IS +IS +NU +aw +Dy +Dy +Dy +PZ +bk +bk +bk +bk +bk +bk +bk +bk +SX +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +aH +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(65,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ZQ +ZQ +ZQ +al +jD +fF +Zq +fF +Lm +iC +iC +iC +iC +iC +iC +iC +iC +al +ZQ +ZQ +aw +DB +AK +QT +DG +KH +aw +aw +aw +aw +aw +on +HZ +Nk +QT +QT +KG +aw +sc +HZ +MJ +QT +QT +NV +aw +Jt +vu +vu +vu +VN +RG +vu +vu +Hk +Hk +OS +Hk +vu +vu +Hk +Hk +Hk +Hk +kf +Sx +ah +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(66,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ac +nJ +nJ +rj +rj +rj +rj +nJ +rj +rj +rj +rj +nJ +rj +rj +rj +rj +nJ +nJ +nJ +ac +ah +ah +ah +al +IH +fF +IH +fF +Lm +iC +iC +iC +iC +iC +iC +iC +iC +al +ZQ +ZQ +aw +DL +QT +QT +QT +lS +aw +Fu +FO +Gj +aw +kP +QT +QT +qc +QT +KJ +aw +LM +QT +MK +QT +QT +NV +aw +vu +vu +vu +vu +VN +RG +QB +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +TK +Xt +vu +ah +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(67,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ac +nJ +nJ +nJ +nJ +nJ +nJ +nJ +nJ +nJ +nJ +nJ +nJ +nJ +nJ +nJ +nJ +nJ +nJ +nJ +ac +fP +vu +vu +al +IH +IH +IH +IH +Lm +iC +iC +iC +iC +iC +iC +iC +iC +al +ZQ +ZQ +aw +yY +QT +QT +QT +QT +EV +QT +QT +QT +EV +QT +QT +QT +BC +QT +KL +WI +sc +HZ +MM +QT +QT +NV +WI +vu +vu +vu +vu +VN +RG +ws +yN +yN +yN +yN +yN +PD +PD +yN +yN +yN +yN +Kf +vu +ah +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(68,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ac +nJ +nJ +rj +rj +rj +rj +nJ +rj +rj +rj +rj +nJ +rj +rj +rj +rj +nJ +nJ +nJ +ac +vu +vu +vu +jg +IH +IH +IH +IH +Lm +iC +iC +iC +qo +sE +iC +iC +iC +al +ZQ +ZQ +aw +Lu +kC +SJ +SJ +lR +aw +Fy +FS +Gk +aw +Hs +KP +QT +Dm +QT +KR +WI +LN +Me +MQ +QT +QT +Gm +OW +vu +vu +vu +vu +VN +Ze +ws +yN +Fg +zr +zr +zr +zr +zr +zr +zr +Fg +yN +Kf +vu +ah +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(69,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ac +nJ +nJ +nJ +nJ +nJ +nJ +nJ +nJ +nJ +nJ +nJ +nJ +nJ +nJ +nJ +nJ +nJ +nJ +nJ +ac +vu +vu +vu +ji +IH +IH +IH +IH +Lm +iC +iC +iC +iC +iC +iC +iC +iC +al +ZQ +ZQ +aw +yZ +lS +Ib +DH +El +aw +aw +aw +aw +aw +op +Wt +QT +IU +QT +QT +Ly +QT +QT +QT +QT +QT +QT +OZ +vu +vu +vu +vu +Qp +vu +ws +yN +UB +yN +yN +yN +yN +yN +yN +yN +UB +yN +Kf +vu +ah +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(70,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ac +nJ +oa +ru +ru +ru +ru +ru +ru +ru +ru +ru +ru +ru +ru +ru +ru +ru +qw +nJ +ac +vu +vu +vu +ji +IH +fF +IH +fF +Lm +iC +iC +iC +iC +iC +iC +iC +iC +al +ZQ +ZQ +aw +Kt +QT +QT +QT +lT +aw +FC +FX +Gl +aw +oq +KP +QT +IV +QT +QT +QT +QT +QT +QT +QT +QT +QT +Pa +vu +vu +vu +vu +Xp +vu +ws +PD +UB +yN +yN +zr +yN +yN +aT +yN +UB +PD +Kf +Qw +ah +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(71,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ac +nJ +px +sX +sX +sX +sX +sX +sX +fE +gn +mY +zN +uf +mS +uf +sX +sX +pR +nJ +ac +Ze +vu +vu +ji +jD +fF +Zq +fF +Lm +iC +iC +iC +iC +iC +iC +iC +iC +al +ZQ +ZQ +aw +Vt +lR +Dd +DI +lU +aw +PB +YJ +FM +aw +Wf +KP +QT +IW +QT +WD +aw +sb +QT +QT +QT +QT +tM +aZ +vu +vu +vu +vu +VN +vR +ws +yN +UB +yN +yN +yN +yN +yN +yN +yN +UB +yN +Kf +Qw +ah +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(72,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ac +nJ +px +sX +sX +WO +uf +uf +mS +mS +go +Cl +gh +gn +wr +uf +uf +uf +pR +nJ +ac +vu +vu +vu +al +IH +fF +lh +fF +Lm +iC +iC +iC +iC +iC +iC +iC +iC +al +ZQ +ZQ +aw +aw +aw +aw +aw +aw +aw +FE +FZ +Gm +aw +Hw +KP +QT +xk +QT +Ec +aw +sc +QT +QT +QT +QT +Kc +aw +Po +vu +vu +vu +VN +QI +ws +yN +UB +yN +yN +yN +UB +yN +yN +aT +UB +yN +Kf +Qw +ah +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +br +bw +bw +bw +bw +bw +bw +bw +bw +bz +bw +bw +bw +bw +bw +bw +bw +bw +bw +bw +bw +bz +bw +bw +bw +bw +bw +bw +bu +ZQ +ZQ +ZQ +ZQ +aa +"} +(73,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ac +nJ +px +uf +uf +mS +uf +vq +bP +Bn +go +gN +ww +xJ +wm +HU +Bn +uf +pR +nJ +ac +vu +vu +vu +al +jD +fF +Zq +fF +Lm +iC +iC +iC +iC +iC +iC +iC +iC +al +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aw +Ph +Pk +QT +QT +QT +qE +Ir +IY +Tr +YM +aw +Hy +Sw +sO +Nm +Ny +NY +aw +vu +vu +vu +vu +Qp +vu +ws +PD +UB +yN +zr +yN +yN +yN +yN +yN +UB +PD +Kf +Qw +ah +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bt +Ok +Ok +Ok +mG +Ok +Ok +Ok +Ok +mG +Ok +Ok +Ok +Ok +mG +Ok +Ok +Ok +Ok +mG +Ok +Ok +Ok +Ok +mG +Ok +Ok +Ok +bt +ZQ +ZQ +ZQ +ZQ +aa +"} +(74,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ac +nJ +px +vY +Bc +DW +uf +Pt +bP +Bn +pw +uf +Oc +uf +bP +Bn +uf +uf +pR +nJ +ac +vu +vu +vu +al +IH +IH +IH +fF +Lm +iC +iC +iC +iC +iC +iC +iC +iC +al +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aw +aw +Gc +aw +aI +aI +aI +aI +aI +aI +aI +aI +aI +aI +aI +aI +aI +aI +aI +Pr +vu +vu +vu +Xp +vu +ws +yN +UB +yN +yN +yN +yN +yN +yN +yN +UB +yN +Kf +vu +ah +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bt +CW +CW +Dc +Dc +GN +GN +Dc +IX +Ug +Ug +Dc +Dc +GN +GN +GN +Dc +Dc +Ug +Ug +Dc +Dc +GN +GN +Dc +jQ +CW +CW +bt +ZQ +ZQ +ZQ +ZQ +aa +"} +(75,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ac +nJ +px +vY +LB +cX +qL +vq +bP +bP +ho +Fb +bP +uf +vi +YD +cY +df +pR +nJ +ac +vu +vu +vu +al +jF +km +IH +IH +Lm +LL +iC +iC +iC +iC +iC +iC +LL +al +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aw +Jm +Zc +WQ +aI +ot +Ia +It +HQ +Kk +KT +aI +Qb +Mh +Mh +Mh +Mh +NZ +Iw +vu +vu +vu +vu +VN +Ze +ws +yN +Fg +zr +zr +zr +zr +zr +zr +zr +Fg +yN +Kf +vu +ah +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bt +CW +CW +Dc +UN +xw +hP +xQ +Dc +EF +XZ +Dc +oj +Ma +Ma +Vf +OD +Dc +EF +OD +Dc +zH +hP +kT +nz +Dc +CW +CW +bt +ZQ +ZQ +ZQ +ZQ +aa +"} +(76,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ac +nJ +px +vY +Ti +nA +sp +bP +bP +pr +na +pr +bP +zb +Zt +Bn +uf +uf +pR +nJ +ac +vu +vu +vu +al +al +al +fz +al +al +al +gp +gp +gp +gp +gp +gp +al +al +al +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aw +Rl +XP +Qa +aI +Te +Id +tU +tU +Wo +rc +aI +sf +tU +tU +tU +tU +tO +Iw +vu +vu +vu +vu +VN +RG +ws +yN +yN +yN +yN +yN +PD +PD +yN +yN +yN +yN +Kf +vu +ah +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bt +eX +eX +Dc +XZ +XZ +XZ +XZ +cH +XZ +XZ +oQ +XZ +XZ +XZ +XZ +XZ +oQ +XZ +XZ +uK +XZ +XZ +XZ +XZ +Dc +eX +eX +bt +ZQ +ZQ +ZQ +ZQ +aa +"} +(77,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ac +nJ +px +vY +UE +CK +jK +vq +bP +PU +Ev +PU +bP +uf +fG +YD +cY +df +pR +nJ +ac +vu +vu +vu +al +jI +fA +fA +al +mg +GJ +LX +LX +LX +LX +LX +LX +vW +wk +al +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aw +Qj +Ne +VM +aI +Yn +tU +tU +tU +tU +rd +aI +LO +tU +tU +tU +tU +tU +Iw +vu +vu +vu +vu +VN +RG +RF +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Hj +Xu +vu +ah +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bt +CW +CW +Dc +XZ +XZ +XZ +XZ +XZ +XZ +XZ +GV +mQ +XQ +XZ +GV +WK +XQ +XZ +XZ +XZ +XZ +XZ +XZ +XZ +Dc +CW +CW +bt +ZQ +ZQ +ZQ +ZQ +aa +"} +(78,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ac +nJ +px +vY +VJ +vG +uf +Pt +bP +bP +oJ +bP +bP +uf +Zt +Bn +uf +uf +pR +nJ +ac +vu +vu +vu +al +Hn +fA +fA +al +mg +GJ +LX +oL +LX +LX +oL +LX +vW +wk +al +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aw +Rl +XP +Gq +aI +HE +tU +tU +tU +tU +tU +Lz +tU +tU +tU +tU +tU +tU +Pc +vu +vu +vu +vu +VN +RG +vu +vu +zM +zM +zM +zM +vu +vu +zM +zM +zM +zM +vu +Sx +ah +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bt +CW +CW +GN +BM +BM +XZ +BM +BM +XZ +XZ +Ky +WK +XA +XZ +Ky +mQ +XA +XZ +XZ +BM +BM +XZ +BM +BM +Dc +CW +CW +bt +ZQ +ZQ +ZQ +ZQ +aa +"} +(79,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ac +nJ +px +uf +uf +mS +uf +vq +bP +pr +Hb +bP +bP +uf +pd +ck +Bn +uf +pR +nJ +ic +vu +vu +vu +al +kd +fA +fA +al +mg +GJ +LX +LX +qq +LX +LX +LX +vW +wk +al +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aw +Rl +XP +Gr +aI +WS +If +tU +tU +tU +tU +TU +tU +tU +tU +tU +tU +tU +TU +vu +vu +vu +vu +bl +bl +bl +bl +An +An +An +bl +Vz +Wb +bl +An +An +WR +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +ZQ +bt +CW +CW +GN +iO +fc +XZ +iO +fc +XZ +XZ +XZ +XZ +XZ +XZ +XZ +XZ +XZ +XZ +XZ +fc +fc +XZ +fc +iO +Dc +CW +CW +bt +ZQ +ZQ +ZQ +ZQ +aa +"} +(80,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ac +nJ +px +sX +sX +sX +uf +uf +mS +mS +pw +tT +tT +uf +xL +uf +uf +uf +pR +nJ +ac +vu +vu +vu +al +fA +fA +fA +al +mg +GJ +LX +oL +LX +LX +oL +LX +vW +wk +al +ZQ +aH +aH +aH +aH +aH +ZQ +aw +QX +RQ +cK +aI +VO +tU +pG +qh +tU +iS +aI +sg +tp +MR +tU +tU +tU +Iw +vu +vu +vu +vu +Qw +bl +Lv +Am +Am +Am +Am +Am +Am +Am +Am +UO +Am +Wl +Xx +Au +YR +bp +ZH +Ki +aO +bp +tw +nQ +bp +ZQ +bt +CW +CW +GN +ZU +ZU +XZ +ZU +ZU +XZ +XZ +GV +WK +XQ +XZ +GV +WK +XQ +XZ +XZ +ZU +ZU +XZ +ZU +ZU +Dc +CW +CW +bt +ZQ +ZQ +ZQ +ZQ +aa +"} +(81,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ac +nJ +px +sX +sX +sX +sX +sX +sX +fE +UC +uf +uf +uf +mS +uf +sX +sX +pR +nJ +ic +vu +vu +vu +al +ke +fA +fA +al +mg +GJ +LX +LX +LX +LX +LX +LX +vW +wk +al +ZQ +aH +wH +ze +ze +aH +ZQ +aw +aw +aw +aw +aI +oz +Uf +Iv +Jb +tU +VR +aI +NT +Id +MT +tU +tU +tU +ba +vu +vu +vu +vu +Qq +bl +vS +Am +xR +xR +Am +Am +Am +xR +xR +Am +Am +Wl +XB +Au +YY +bp +ZL +Qk +Qk +Bu +dh +dh +bp +ZQ +bt +CW +CW +Dc +XZ +XZ +XZ +XZ +XZ +XZ +XZ +Ky +mQ +XA +XZ +Ky +WK +XA +XZ +XZ +XZ +XZ +XZ +XZ +XZ +Dc +CW +CW +bt +ZQ +ZQ +ZQ +ZQ +aa +"} +(82,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ac +nJ +qB +wF +wF +wF +wF +wF +wF +wF +wF +wF +wF +wF +wF +wF +wF +wF +Bp +nJ +ac +Ze +vu +vu +al +fA +fA +fA +al +al +al +RO +RO +RO +RO +RO +RO +al +al +al +ZQ +aH +zE +ze +ze +aH +ZQ +ah +fP +vu +fP +aI +FD +Uf +IA +Jf +tU +tU +LA +tU +Wo +MT +tU +tU +tU +Iw +Ze +vu +vu +vu +Qw +bl +wt +zG +yB +SZ +Aw +Am +zG +UQ +Vx +Aw +Am +Wl +Hi +Au +YZ +bp +ZM +Qk +tE +bp +AO +oC +bp +ZQ +bt +eX +eX +Dc +XZ +XZ +XZ +XZ +Km +XZ +XZ +Ql +XZ +XZ +XZ +XZ +XZ +Ql +XZ +XZ +bE +XZ +XZ +XZ +XZ +Dc +eX +eX +bt +ZQ +ZQ +ZQ +ZQ +aa +"} +(83,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ac +nJ +nJ +nJ +nJ +nJ +nJ +nJ +nJ +nJ +dm +nJ +nJ +nJ +nJ +nJ +nJ +nJ +nJ +nJ +ac +vu +vu +vu +al +fA +fA +fA +fA +fA +al +gP +gP +gP +gP +gP +uz +al +ZQ +ZQ +ZQ +aH +XI +ze +ze +aH +ZQ +ah +vu +vu +vu +aI +ov +Uf +IE +Jo +tU +iS +aI +LP +Gp +MT +tU +tU +tU +ba +vu +vu +vu +vu +bl +bl +yV +zG +wP +Ta +Aw +Am +zG +UR +Vy +Aw +Am +Wl +XE +Au +Zb +bp +ZO +Qk +ks +bp +bp +bp +bp +ZQ +bt +CW +CW +Dc +UN +PJ +qT +Ko +Dc +EF +XZ +Dc +EF +PJ +qT +hT +YS +Dc +EF +OD +Dc +CS +qT +LC +nz +Dc +CW +CW +bt +ZQ +ZQ +ZQ +ZQ +aa +"} +(84,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ic +ac +ic +ac +ac +ac +ac +vu +vu +vu +Cn +Cn +Cn +Cn +Cn +Cn +Cn +Cn +Cn +Cn +Cn +Cn +Cn +Cn +ah +ah +ah +ah +VN +ah +eH +ah +ah +aD +vu +vu +vu +aI +ox +tU +IF +Jp +tU +VR +aI +LS +Mi +MU +tU +tU +tU +Iw +vu +vu +vu +vu +bl +QJ +Am +Am +yO +yO +Am +Am +Am +yO +yO +Am +Am +Wl +XF +Au +Zh +bp +ZS +Qk +nZ +bp +ZQ +ZQ +ZQ +ZQ +bt +CW +CW +Dc +Dc +GN +GN +Dc +Dc +uV +uV +Dc +Dc +GN +GN +GN +Dc +Dc +uV +uV +Dc +Dc +GN +GN +Dc +Dc +CW +CW +bt +ZQ +ZQ +ZQ +ZQ +aa +"} +(85,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bY +bY +bY +bY +bY +bY +bY +bY +ac +nJ +nJ +nJ +nJ +nJ +nJ +ac +fP +vu +vu +vu +vu +kf +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +kf +vu +vu +vu +vu +vu +Ff +vu +vu +vu +aI +WS +If +tU +tU +tU +tU +LD +tU +tU +tU +tU +tU +tU +Pc +vu +vu +vu +vu +An +QR +Am +Am +Am +Am +Am +Am +Am +Am +Am +Am +Am +Wl +Da +Au +Au +Zu +Qk +Qk +Iy +bp +ZQ +ZQ +ZQ +ZQ +bt +Kd +Kd +Kd +sB +DC +DC +Fl +tq +tq +tq +aN +jw +jw +jw +jw +jw +CL +tq +tq +tq +pz +DC +DC +sB +Kd +Kd +Kd +bt +ZQ +ZQ +ZQ +ZQ +aa +"} +(86,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bY +ab +bS +aX +aX +bS +dr +bY +ac +nJ +nJ +nJ +nJ +nJ +nJ +ac +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +Ff +vu +vu +Gt +aI +Uv +tU +tU +tU +tU +tU +TU +tU +tU +tU +tU +tU +tU +TU +vu +vu +vu +vu +An +QU +Am +Am +xR +xR +Am +Am +Am +Am +Am +Am +Am +Am +Am +Am +bl +bp +bp +bp +bp +bp +ZQ +ZQ +ZQ +ZQ +bu +bw +bw +bw +bw +bu +zi +zi +zi +ZK +ZK +ZK +ZK +ZK +JD +ZK +ZK +ZK +ZK +ZK +zi +zi +zi +Re +bu +bw +bw +bw +bu +ZQ +ZQ +ZQ +ZQ +aa +"} +(87,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bY +ad +bS +aX +aX +bS +du +bY +ac +nJ +nJ +nJ +nJ +nJ +nJ +ac +fP +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +Ff +vu +vu +vu +aI +Hr +tU +tU +tU +tU +KU +aI +LT +tU +tU +tU +tU +tU +Iw +vu +vu +vu +vu +bl +QV +Am +zG +Mr +UK +Aw +Am +Am +Am +Am +Am +Am +Am +Am +Yj +bl +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bw +ZK +ZK +ZK +ZK +ZK +ZK +ZK +ZK +uy +ZK +ZK +ZK +ZK +ZK +ZK +ZK +ZK +ZK +bw +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(88,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bY +bY +bY +aX +aX +bY +bY +bY +ac +nJ +nJ +nJ +nJ +nJ +nJ +ac +bY +hW +hW +bY +uL +uL +uL +uL +aj +aj +md +md +aj +kJ +kJ +aj +md +md +aj +md +md +aj +aj +aj +aj +aj +aj +ar +Xp +Xp +Xp +aI +Te +Gp +tU +tU +Gp +VQ +aI +sh +tU +tU +tU +tU +Oa +Iw +vu +vu +vu +vu +bl +xF +Am +zG +Fv +Pf +Aw +Am +Am +Am +Am +Am +Am +Am +Am +Yo +bl +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bx +ZK +ZK +ZK +ZK +ZK +ZK +ZK +ZK +mF +ZK +ZK +ZK +ZK +ZK +ZK +ZK +ZK +ZK +bw +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(89,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bY +ag +bS +aX +aX +bS +dw +bY +ac +nJ +nJ +nJ +nJ +nJ +nJ +ac +bY +dZ +dZ +uL +AG +PP +kn +uL +KF +em +em +nC +em +em +em +em +em +nC +em +em +em +em +KF +aj +Di +sK +Em +aj +vu +vu +vu +aI +ow +Ij +tU +tU +Kl +rf +aI +Qb +WX +XO +WX +WX +Ob +Iw +vu +vu +vu +vu +An +vS +Am +Am +yO +yO +Am +Am +Am +Am +Am +Am +Am +Am +Am +Yp +bl +bh +bh +bh +bh +bh +bh +bh +bh +bh +bq +ZQ +ZQ +ZQ +ZQ +bw +ZK +ZK +ZK +ZK +ZK +ZK +bw +bw +ZK +OC +bw +bw +ZK +ZK +ZK +ZK +ZK +ZK +bw +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(90,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bY +ai +bS +aX +aX +bS +dx +bY +ac +nJ +nJ +nJ +nJ +nJ +nJ +ac +bY +dZ +dZ +uL +jj +PP +PP +fC +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +RN +Dl +EA +Eo +aj +vu +vu +vu +aI +aI +aI +tU +Jr +aI +aI +aM +aM +aM +aM +aM +aM +aM +aM +HM +vu +vu +vu +An +Lv +Am +Am +Am +Am +Am +Am +uI +Am +Am +Am +Am +Am +Am +Yq +bl +SK +bh +SK +bh +SK +bh +SK +bh +SK +bq +bq +bq +bq +bq +bq +Yc +Lk +TT +TT +TT +Yc +ZJ +er +eI +eI +er +ZJ +Yc +TT +TT +TT +Lk +Yc +bw +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(91,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bY +bY +bY +aX +aX +bY +bY +bY +ac +nJ +nJ +nJ +nJ +nJ +nJ +ac +bY +dZ +dZ +uL +uL +uL +uL +uL +em +em +em +aj +md +md +aj +aj +aj +md +md +aj +em +em +em +kJ +EA +EA +EA +aj +vu +vu +vu +aI +oy +rm +rm +rm +rm +oG +aM +LV +LV +LV +LV +LV +Oh +aM +Pv +vu +vu +vu +bl +bl +bl +bl +An +An +An +bl +bl +bo +Vz +Wb +An +An +bl +bl +bl +Dk +bh +Dk +bh +Dk +bh +Dk +bh +Dk +bq +CR +Rt +Rt +CR +bq +ZJ +ZJ +ZJ +ZJ +ZJ +ZJ +bw +vu +vu +vu +vu +bw +bw +bw +bw +bw +bw +bw +bw +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(92,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bY +av +bS +aX +aX +bS +fR +bY +ac +nJ +nJ +nJ +nJ +nJ +nJ +ac +bY +dZ +dZ +uL +AG +PP +PP +fC +em +em +em +md +py +ri +aj +em +lz +iM +PV +md +em +em +em +RN +Eo +EA +EC +aj +vu +vu +vu +aI +rm +Xy +Tz +Tz +Xy +rm +aM +WM +Zg +Zg +Zg +Zg +Zg +aM +vu +vu +vu +vu +Xp +wD +vu +vu +vu +vu +vu +kf +vu +vu +vu +vu +vu +vu +vu +vu +vu +Zx +Zx +Zx +nM +Zx +Zx +Zx +Zx +SP +uP +Rt +vw +vw +Rt +Ra +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +ah +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(93,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bY +am +bS +aX +aX +bS +dy +bY +ac +ac +ac +ac +ac +ac +ac +ac +bY +dZ +dZ +uL +jj +PP +kn +uL +em +em +em +zX +oN +em +kJ +em +em +wu +wu +zX +em +em +em +aj +Dp +EA +EE +aj +dY +vu +vu +aI +rm +nN +ZA +Js +ni +rm +aM +QD +QD +QD +Zg +Zg +Zg +Pd +vu +vu +vu +vu +Xp +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +VH +VH +VH +VH +VH +VH +VH +VH +VH +uP +Rt +vw +vw +Rt +Ra +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +ah +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(94,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bY +bY +bY +aX +aX +bY +bY +bY +bY +bY +bY +bY +bY +bY +bY +bY +ae +dZ +dZ +uL +uL +uL +uL +uL +em +em +em +aj +pb +OX +aj +ri +em +em +em +aj +em +em +em +RN +jy +EA +fr +aj +vu +vu +vu +aI +oF +nN +IG +Jv +ni +rm +aM +ts +ts +Zg +Zg +ND +Tq +aM +vu +vu +vu +vu +Xp +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +Zy +Zy +Zy +Zy +Zy +Zy +Zy +Zy +nw +uP +Rt +vw +vw +Rt +Ra +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +ah +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(95,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bY +bb +bS +aX +aX +aX +aX +bS +aX +aX +aX +aX +aX +aX +aX +aX +hL +dZ +dZ +uL +AG +PP +PP +fC +em +em +em +aj +aj +aj +aj +mT +em +em +sr +aj +ly +em +em +kJ +EA +EA +Hh +aj +vu +vu +vu +aI +rm +nN +IJ +ZA +ni +rm +aM +aM +aM +MV +MV +aM +aM +aM +vu +vu +vu +vu +aM +aM +aM +aM +aM +aM +OR +aM +aM +bl +Vz +Wb +An +An +bl +bl +bl +Dk +bh +Dk +bh +Dk +bh +Dk +bh +Dk +bq +HD +TG +TG +TG +bq +ah +ah +ah +ah +ah +ah +ah +bw +ZK +Uh +bw +ah +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(96,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bY +ao +bS +aX +aX +aX +aX +bS +aX +aX +aX +aX +aX +aX +aX +aX +hL +dZ +dZ +uL +jj +PP +kn +uL +em +em +em +md +py +ri +aj +DJ +em +em +em +aj +em +em +em +RN +EA +EA +EA +aj +vu +vu +vu +aI +oA +nN +Dr +Jw +ni +rm +aM +sR +tY +tY +tY +tY +Op +aM +Ze +vu +vu +vu +aM +Lx +LF +LF +MH +Tb +Ul +Uq +aM +Lv +Am +Am +Am +Am +Am +Lv +bl +SK +bh +SK +bh +SK +bh +SK +bh +SK +bq +CR +vw +vw +CR +bq +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bw +ZK +ZK +bw +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(97,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bY +bY +bY +bY +bY +bY +bY +ae +aX +aX +aX +bY +bY +bY +bY +bY +bY +ii +ii +uL +uL +uL +uL +uL +ly +em +em +zX +oN +em +kJ +em +em +em +em +kJ +em +em +em +aj +qY +Pm +KN +aj +vu +vu +vu +aI +oI +Xy +Ms +Ms +Xy +KV +aM +Kv +tY +tY +tY +tW +tY +aM +vu +vu +vu +vu +aM +Or +Ul +Ul +Ul +Ul +Ul +NQ +aM +UX +Am +Am +zG +Ak +Ak +Aw +bl +bh +bh +bh +bh +bh +bh +bh +bh +bh +bq +Dg +Dh +LR +Dg +bq +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bw +ZK +ZK +bw +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(98,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bY +bd +aX +aU +bL +cc +fY +bY +ep +aX +eU +bY +fS +gw +hb +hA +uL +uL +uL +uL +AG +PP +PP +fC +em +em +em +md +pb +OX +aj +ug +io +em +kA +aj +em +em +em +aj +aj +aj +aj +ar +vu +vu +vu +aI +HH +Xy +Xy +Xy +Xy +KW +aM +Wm +tY +tY +tY +tY +Oj +aM +Pw +vu +vu +vu +OR +Ul +Ul +Ul +Ul +Ul +Ul +Ul +OR +Am +Am +Am +zG +Ak +Ak +Aw +bl +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bq +vp +eY +YH +ST +bq +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bw +ZK +ZK +bw +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(99,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bY +au +aX +aX +aX +aX +aX +bV +aX +aX +aX +cn +aG +aG +aG +aG +hq +ml +iq +uL +jj +PP +kn +uL +em +em +em +aj +aj +aj +aj +uh +uD +em +sx +aj +em +em +em +ax +em +KF +EJ +KF +vu +vu +vu +aI +oI +Xy +Tz +Tz +Xy +KX +aM +Kv +tY +tY +tY +tW +tY +aM +vu +vu +vu +vu +aM +Ul +LI +Ul +LI +Ul +LI +Ul +aM +UZ +Am +Am +Am +Am +Am +Am +bl +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bq +pq +SB +SB +gC +bq +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bw +ZK +nI +bw +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(100,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bY +be +aX +aV +aX +cf +dz +bV +aX +aX +aX +cn +fT +gy +aG +aG +ml +ml +is +uL +uL +uL +uL +uL +em +em +em +aj +gV +hn +aj +bA +ok +em +KY +aj +em +em +em +kJ +em +em +mi +em +vu +vu +vu +aI +oA +nN +ZA +aQ +ni +rm +aM +sR +tY +tY +tY +tY +On +aM +dY +vu +vu +vu +aM +xi +aM +LW +aM +Nj +aM +NR +aM +Va +Am +Am +Am +Am +Am +Am +bl +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bq +NS +Ov +iU +jJ +bq +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bw +ZK +ZK +bw +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(101,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bY +bf +aX +bc +aX +cF +dA +bV +aX +aX +aX +cn +fX +gz +aG +aG +ml +ml +it +uL +AG +PP +PP +fC +em +em +em +zX +NC +em +kJ +em +em +em +em +zX +em +em +em +ay +ly +KF +md +KF +vu +vu +vu +aI +rm +nN +qp +Dr +ni +rm +aM +aM +aM +MY +MY +aM +aM +aM +vu +vu +vu +vu +aM +Uy +aM +Uy +aM +Uy +aM +FV +aM +yU +Am +Am +zG +Ak +Ak +Aw +bl +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bq +xU +bq +bq +bq +bq +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bw +ZK +ZK +bw +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(102,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bY +az +aX +bi +aX +cL +dB +bV +aX +aX +aX +cn +fZ +gA +aG +hC +hM +dM +ix +uL +jj +PP +kn +uL +em +em +em +md +py +ri +aj +em +em +em +KF +md +em +em +em +aj +kJ +md +aj +ar +vu +vu +vu +aI +oF +nN +VL +Jx +ni +rm +aM +RI +Ml +tY +tY +tx +Sy +aM +dY +vu +vu +vu +aM +aM +aM +aM +aM +aM +aM +aM +aM +yV +Am +Am +zG +Ak +Ak +Aw +bl +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bq +Pp +ZP +Om +Ao +bq +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bw +ZK +ZK +bw +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(103,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bY +bg +aX +ds +aX +ex +bM +bV +aX +aX +aX +cn +cv +jE +aG +kq +hV +ij +ij +uL +uL +uL +uL +uL +em +em +em +aj +md +md +aj +md +aj +md +md +aj +em +em +em +aj +em +jf +EK +md +vu +vu +vu +aI +rm +nN +IK +JB +ni +rm +aM +RI +Ml +tY +tY +tx +Sy +aM +vu +vu +vu +vu +An +QW +RH +Se +SF +Tf +TL +TL +vs +Am +Am +Am +Am +Am +Am +Am +bl +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bq +Wp +SB +SB +Kg +bq +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bw +ZK +ZK +bw +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(104,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bY +bs +aX +bJ +aX +cR +dU +bV +aX +aX +aX +cn +aG +aG +aG +aG +mq +eb +eb +uL +AG +PP +PP +fC +em +em +em +em +em +em +em +em +em +em +em +em +em +em +em +kJ +em +lD +mk +md +vu +vu +vu +aI +rm +Xy +Ms +Ms +Xy +rm +aM +RI +Ml +tY +tY +tx +Sy +aM +dY +vu +vu +vu +An +QW +RH +xK +xK +Tg +Tg +Tg +xK +Am +Am +Am +Am +Am +Am +QR +bl +ZQ +ZQ +ZQ +ZQ +bq +bq +bq +bq +bq +bq +Im +SB +SB +YV +bw +bw +bw +uB +uB +uB +uB +uB +bw +ZK +OC +bw +uB +uB +uB +uB +uB +bw +bw +bw +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(105,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bY +bv +aX +aX +aX +aX +aX +bV +aX +aX +aX +cn +iu +jG +he +hD +mq +ec +ec +uL +jj +PP +kn +uL +em +em +em +em +em +em +em +em +em +em +em +em +em +em +KF +aj +Dq +DK +aj +aj +vu +vu +vu +aI +oG +rm +rm +rm +rm +La +aM +RI +Ml +Nb +Nb +tx +Sy +aM +vu +vu +vu +vu +An +QW +RH +xK +xK +Iu +xK +xK +xK +Am +Am +Am +Am +Am +Am +Yj +bl +ZQ +ZQ +ZQ +ZQ +bq +rg +SB +SB +SB +xU +SB +ML +Ef +KK +bw +hv +Fq +sk +sk +sk +jO +sk +ol +ZK +ZK +zl +sk +sk +sk +sk +sk +kz +hv +bw +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(106,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bY +bK +aX +dv +bT +eE +ga +bY +ep +aX +eU +bY +iw +jH +hf +hf +uL +uL +uL +uL +uL +kg +uL +uL +em +em +em +aq +hp +hp +hI +at +as +as +as +as +as +as +as +as +as +as +as +as +Xp +Xp +Xp +aI +aI +aI +aI +aI +aI +aI +aM +aM +aM +aM +aM +aM +aM +aM +Xp +Xp +Xp +Xp +bl +An +An +An +bl +bl +bl +An +An +An +bl +Wc +bl +An +An +An +bl +ah +ah +ah +ah +bq +xU +bq +bq +bq +bq +bq +bq +xU +bq +bw +ZK +Hl +ZK +ZK +ZK +ZK +ZK +Za +ZK +ZK +fk +se +ZK +ZK +ZK +ZK +Za +ZK +bw +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(107,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bY +bY +bY +bY +bY +bY +bY +bY +ev +aX +aX +bY +bY +bY +bY +bY +uL +ef +ml +iL +ml +ml +ED +uL +em +em +em +aj +hN +hN +hN +as +uG +wg +wY +wg +xu +as +zq +zq +Ds +Ds +Ds +as +vu +vu +vu +Xp +vu +kf +vu +CP +vu +vu +vu +CP +vu +vu +kf +vu +vu +Xp +vu +vu +vu +vu +Xp +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +kf +vu +vu +vu +vu +vu +vu +nl +nl +nl +Dg +CE +Fz +SB +bq +bw +ZK +Hl +ZK +ZK +ZK +ZK +ZK +Za +qQ +Hf +Hl +qI +ZK +UF +UF +ZK +Za +ZK +bw +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(108,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bY +aB +aG +bW +aG +gc +bY +ew +aX +aX +bY +iy +jL +hl +di +uL +ef +iz +iR +jm +kh +ED +uL +ly +em +em +aj +hN +hN +hN +as +vb +GO +xc +GO +xz +as +GO +GO +GO +GO +GO +as +vu +vu +vu +Xp +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +Xp +vu +vu +vu +vu +Xp +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +nl +qR +FP +SB +gl +bq +bw +ZK +Hl +ZK +ZK +UF +ZK +ZK +Za +tH +oY +Hl +ZK +Ld +ZK +ZK +ZK +Za +ZK +bw +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(109,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bY +aC +aG +aG +aG +gd +bY +eB +aX +aX +bY +aG +aG +aG +hF +uL +uL +uL +uL +uL +uL +uL +uL +em +em +em +aj +pJ +hN +sY +as +vg +vg +vg +vg +vg +as +zD +BD +GO +Lt +GS +as +fP +vu +vu +Xp +vu +vu +vu +IZ +vu +vu +vu +vu +vu +vu +vu +vu +vu +Xp +vu +vu +vu +vu +Xp +vu +vu +IZ +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +vu +Ya +Dg +LY +aW +SB +bq +bw +ZK +Hl +ZK +ZK +UF +ZK +ZK +Za +zy +bj +Hl +ZK +ZK +ZK +ZK +EO +Za +ZK +bw +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(110,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bY +aE +aG +aG +aG +aG +hr +aX +aX +aX +ih +aG +cE +aG +kt +uL +eh +vV +vV +vV +vV +vV +md +em +em +em +aj +hN +hN +hN +FU +GO +GO +GO +GO +xE +as +as +aA +lg +aA +as +as +as +as +as +as +as +as +as +as +as +as +aP +sz +sz +aP +SG +SG +SG +as +Px +Xp +Xp +Xp +as +as +as +as +as +as +SG +SG +as +aP +Uk +Wd +aP +as +as +as +as +as +as +bh +bh +GH +GH +GH +bh +bh +aI +aI +aI +sD +aI +bw +ZK +GT +UF +ZK +ZK +ZK +ZK +Za +su +UT +Hl +ZK +UF +ZK +ZK +ZK +Ha +ZK +bw +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(111,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bY +aR +aG +dC +fl +aG +hr +aX +aX +aX +ih +aG +aG +aG +ZN +uL +eZ +eZ +vV +eZ +eZ +vV +md +em +em +em +aj +ht +hN +hN +FU +GO +GO +xe +GO +GO +as +Ab +BR +GO +DO +EM +Fh +vj +vj +vj +as +HI +an +IN +an +Kn +Lh +as +Wa +sC +as +No +NE +Oq +SG +vu +vu +vu +vu +as +QY +RM +Sg +SM +as +TM +Ur +as +Vh +Uk +Uk +Wk +as +XJ +Yv +Zj +Zz +as +Ya +Nl +Nl +Nl +Nl +Nl +Ya +bh +oX +sH +tU +aI +bw +ZK +Hl +ZK +ZK +ZK +ZK +ZK +Za +qs +tJ +Hl +ZK +ZK +ZK +ZK +ZK +Za +ZK +bw +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(112,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bY +aS +aG +bZ +db +aG +hr +aX +aX +aX +fj +gb +aG +aG +hG +uL +dn +vo +vV +vo +vo +vV +md +em +em +em +aj +aj +ar +aj +as +hX +GO +FT +GO +GO +as +Yx +GO +GO +GO +GO +GO +GO +GO +GO +as +Lr +an +gB +JF +an +Li +as +Zd +YK +as +Np +Kz +Os +SG +vu +vu +vu +vu +as +Rb +RP +GO +SN +as +TO +tB +aY +Vj +Uk +Uk +Wn +as +XR +Uk +Uk +Uk +as +Yt +VH +VH +VH +VH +VH +nG +Iw +RT +tU +kS +aI +bw +ZK +Hl +ZK +ZK +ZK +ZK +ZK +Za +Lg +PO +Hl +UF +ZK +ZK +ZK +ZK +Za +ZK +bw +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(113,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bY +cd +aG +dD +dc +aG +hr +aX +aX +aX +fs +ja +aG +aG +kH +uL +AH +vo +vV +AH +RY +vV +em +em +em +em +aj +MA +rl +th +as +VX +GO +GO +GO +GO +GO +GO +GO +GO +GO +GO +GO +GO +GO +GO +as +aK +aK +aK +JI +an +Lj +as +Zd +Uk +sz +Uk +Uk +Ou +SG +Ze +vu +vu +vu +as +Rb +RP +GO +GO +NH +GO +GO +NH +Uk +Uk +Uk +Uk +WV +Uk +Uk +Uk +Uk +as +NN +VH +cT +VH +cT +VH +nG +Iw +WZ +Zk +ZW +aI +bw +ZK +Hl +ZK +ZK +ZK +ZK +ZK +Za +Pz +ZI +Hl +ZK +ZK +EO +ZK +UF +CX +ZK +bw +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(114,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bY +co +aG +ca +dd +aG +hr +aX +aX +aX +fD +ge +aG +aG +kI +uL +il +eZ +vV +eZ +eZ +vV +em +em +em +em +aj +Dv +JA +Eh +as +wC +GO +GO +GO +GO +GO +GO +GO +GO +GO +GO +GO +GO +GO +GO +as +Lr +an +gB +Of +an +Lo +as +Zv +JP +as +Nq +Uk +Ow +SG +vu +vu +vu +vu +as +Rb +RP +GO +SQ +as +TP +TD +aY +Vk +VB +VB +Wu +as +XS +Uk +Uk +Uk +as +TW +VH +cT +VH +cT +VH +nG +Iw +Ud +Ub +ZW +aI +bw +ZK +Hl +ZK +UF +ZK +EO +ZK +Za +QN +OH +Hl +ZK +ZK +ZK +ZK +ZK +Za +ZK +bw +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(115,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bY +cu +aG +cb +dl +aG +hr +aX +aX +aX +fI +gf +aG +aG +kN +uL +mw +vV +vV +vV +vV +vV +em +em +em +em +nW +JA +JA +tL +as +vk +GO +xt +GO +GO +as +Ac +GO +GO +GO +GO +GO +GO +GO +GO +as +HJ +an +IO +an +an +Ls +as +Zd +SL +as +Nr +NF +Oy +SG +vu +vu +vu +vu +as +Rh +RS +GO +SR +as +TQ +Go +as +Mc +VC +VV +Wx +as +as +as +as +WV +as +NN +VH +cT +VH +cT +VH +nG +Iw +xP +Zk +ZW +aI +bw +ZK +Hl +ZK +ZK +ZK +ZK +ZK +CX +ZK +ZK +Hl +ZK +UF +ZK +ZK +ZK +Za +ZK +bw +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(116,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bY +cD +aG +dN +fo +aG +hr +aX +aX +aX +ih +aG +aG +aG +kO +uL +mI +vV +vV +vV +vV +vV +md +em +em +em +nW +JA +JA +tP +as +GO +GO +Ih +GO +yj +as +UL +sW +GO +Gs +Nt +UH +jo +Gd +Gu +as +aK +aK +aK +JL +an +RK +aY +Ix +SL +as +SG +nn +SG +aP +PA +PM +PM +Qc +aP +as +as +Mz +vc +as +Ry +tB +as +MZ +VF +VF +WJ +as +Xr +SG +Rp +Uk +as +Yt +VH +VH +VH +VH +VH +nG +Iw +iG +tU +ZW +aI +bw +ZK +Hl +ZK +ZK +ZK +UF +ZK +Za +ZK +ZK +Hl +ZK +ZK +ZK +ZK +EO +Za +ZK +bw +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(117,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bY +cO +aG +aG +aG +aG +hr +aX +aX +aX +ih +aG +gR +aG +ld +uL +mJ +vV +vV +vV +vV +vV +md +em +em +em +nW +JA +JA +tQ +as +Ri +GO +Tw +GO +yj +as +as +as +Dt +at +as +as +as +Gf +Gv +as +Lr +an +gB +Of +an +an +FI +Uk +YK +as +Zo +LG +LG +LG +Yy +vu +vu +Jh +Lc +Uk +as +Sl +ln +as +Ry +GO +NH +GO +VI +We +GO +NH +GO +SG +Zl +Uk +as +Ya +Nl +Nl +Nl +Nl +Nl +Ya +Iw +NG +tU +QH +aI +bw +ZK +za +ql +ZK +vy +UF +zg +vM +ZK +ZK +za +ql +ZK +ZK +ZK +zg +vM +ZK +bw +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(118,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bY +cZ +aG +aG +aG +aG +bY +eB +aX +aX +bY +aG +aG +aG +le +uL +mK +vV +vV +eZ +vV +ko +md +lz +em +em +oo +JA +JA +JH +as +ZT +GO +GO +GO +wf +as +Af +BT +Rf +DS +ET +Fi +Iw +Gg +Gw +as +Nn +an +IP +Py +Ks +an +FI +Uk +Uk +WW +Uk +Uk +Uk +Uk +Yy +nl +nl +Jh +Lc +ZD +aY +Sn +SG +as +TR +Ut +as +as +as +as +as +as +XT +SG +SG +SG +as +HF +mX +ON +ON +ON +mX +cI +Iw +Ux +tU +Jc +aI +bw +hv +ZK +za +pC +ye +pC +vM +hv +ZK +ZK +hv +za +pC +LH +pC +vM +ZK +hv +bw +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(119,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bY +da +aG +ek +fH +dV +bY +aX +aX +aX +bY +jd +gS +hx +lf +uL +aj +aj +aj +aj +aj +aj +aj +aj +mh +ap +aj +aj +rr +aj +as +Wq +GO +GO +GO +wf +as +Ag +Rf +Rf +Rf +Rf +Vp +Iw +JJ +JP +as +as +as +as +as +as +as +as +JJ +JP +as +Jk +Uk +Uk +Uk +Yy +nl +nl +Jh +Lc +Uk +XD +GO +GO +Tk +GO +GO +Rd +GO +GO +GO +LQ +as +QS +SG +Yw +GO +as +Gh +iX +iX +iX +iX +iX +Sc +Iw +Mb +tU +Jc +aI +bw +bw +bw +bw +bw +bw +bw +bw +bw +bw +bw +bw +bw +bw +bw +bw +bw +bw +bw +bw +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(120,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bY +bY +bY +bY +bY +bY +bY +hs +hs +hs +bY +bY +bY +bY +bY +uL +mM +iA +iA +iA +iA +kp +aj +lA +JS +mr +aj +Mx +JS +GD +as +Eq +GO +Ui +GO +wf +as +Hd +Rf +Du +DU +Rf +Fj +FF +Ix +YK +at +Ln +So +So +JM +So +So +So +HT +YK +as +gY +KZ +PC +LG +Yy +nl +nl +Jh +Lc +Uk +XD +GO +GO +Tk +GO +GO +Rd +GO +GO +GO +LQ +as +GO +SG +Zm +GO +as +Gh +iX +wA +iX +wA +iX +Sc +aI +VT +tU +iT +aI +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(121,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bY +dW +hs +hs +hs +hs +hs +gg +bY +ZQ +ZQ +uL +mP +iH +iV +iV +ki +kr +aj +lC +JS +ms +aj +JS +JS +XY +as +GO +GO +KC +GO +wf +as +XH +Rf +Dw +IC +WC +Rf +Ox +Uk +Uk +Uk +Uk +Uk +Uk +Uk +Uk +Uk +Uk +Uk +Uk +sz +Uk +En +OE +LG +Yy +nl +nl +Jh +Lc +ZD +aY +Il +SG +as +PH +TD +as +SG +Rd +Rd +SG +as +as +as +as +ZB +as +as +as +as +as +as +bh +bh +aI +aI +aI +aI +aI +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(122,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bY +jh +hs +Sj +hs +hE +hs +jh +bY +ZQ +ZQ +uL +nd +iJ +iW +jp +kj +kK +aj +lE +JS +mt +aj +pN +rz +MF +as +Xb +GO +TJ +GO +wf +as +Ah +Rf +HS +DV +Rf +Fk +FF +JJ +JP +aJ +HK +Vc +Vc +Vc +Wa +Uk +sC +Vc +Mn +as +Ww +NI +SG +LG +Yy +vu +vu +Jh +Lc +Uk +as +Kr +ZF +as +TQ +Go +SG +Vl +GO +GO +Wz +Un +XU +YA +Qu +GO +ZZ +as +DT +as +DT +as +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(123,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bY +jh +hs +Sj +hs +hE +hs +jh +bY +ZQ +ZQ +uL +ne +iJ +JS +jr +kj +EG +aj +aj +mh +aj +aj +aj +aj +aj +as +NW +GO +GO +GO +IM +as +XM +Rf +Rf +Rf +Rf +Vp +Iw +Zd +SL +as +as +as +as +as +Zd +Uk +SL +as +as +as +as +as +as +aP +PE +PQ +PQ +Qd +aP +as +as +Mu +SS +as +Fe +Go +SG +Vm +GO +Sf +GO +GO +GO +GO +GO +GO +UW +as +Xh +as +KA +as +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(124,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bY +jh +hs +Sj +hs +hE +hs +jh +bY +ZQ +ZQ +uL +im +iJ +iZ +ju +kj +kM +md +lV +JS +DR +aj +ZQ +ZQ +ZQ +as +Ek +GO +GO +GO +IM +as +Gz +Cy +Rf +DX +EU +YI +Iw +Zd +SL +as +HL +So +So +So +HT +Uk +Gy +So +Mo +Nf +Kp +NL +Xf +as +VH +VH +VH +VH +as +Rk +Oi +GO +SU +SG +Ry +Go +SG +Vo +GO +Sf +GO +GO +XN +XN +XN +GO +ob +as +Hv +Hv +Hv +as +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(125,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bY +ea +hs +hs +hs +hs +hs +gj +bY +ZQ +ZQ +uL +nf +wy +jb +jb +kk +JS +lm +JS +JS +XY +aj +ZQ +as +as +as +Ja +GO +Od +GO +yC +as +as +as +IB +as +as +as +as +Zd +SL +as +LE +Uk +Uk +Uk +Kx +Kx +Uk +Uk +Mq +MN +Ll +OA +Xf +as +PG +VH +VH +VH +as +Rm +GO +GO +SW +SG +TO +Go +SG +Vr +GO +Sf +GO +WY +XV +Kq +HN +WP +GO +GU +Hv +Hv +SO +as +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(126,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bY +bY +bY +hs +hs +hs +bY +bY +bY +bY +bY +uL +nB +wT +zJ +YE +YE +CG +md +RX +JS +Yh +aj +ZQ +as +EH +up +GO +GO +Od +GO +yC +as +EY +CD +Uk +PT +ZR +ZR +SG +Zd +SL +as +HO +Uk +Uk +Uk +ak +Lw +CZ +Uk +SL +MN +Ll +OA +Xf +as +PI +VH +VH +VH +as +Sz +GO +GO +GO +Tm +GO +Go +SG +Vv +GO +Sf +GO +WY +Kq +Kq +Zp +WP +Hz +as +Ex +Hv +Hv +as +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(127,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bY +aX +aX +aX +aX +aX +aX +aX +aX +uL +aj +md +md +md +md +aj +aj +md +mj +md +aj +aj +as +as +as +Jd +GO +Od +GO +yD +as +EY +CD +Uk +PT +ZR +ZR +SG +Ix +SL +as +HA +Uk +Uk +Uk +Uk +ak +CZ +Uk +SL +MN +Ll +OA +Xf +as +VH +VH +VH +VH +as +Rn +GO +GO +Oo +SG +GO +Go +SG +VE +GO +Sf +GO +GO +Yw +Yw +Yw +GO +UW +as +Ex +Hv +oS +as +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(128,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bY +aX +aX +aX +aX +aX +aX +aX +aX +uL +nD +wU +em +AJ +OU +UY +lw +lW +em +mu +os +qf +rZ +tX +as +Tn +GO +GO +GO +GO +yE +OK +Uk +Uk +Uk +Uk +Uk +FI +Uk +Gy +So +HT +Uk +Vb +JN +Uk +Lw +CZ +Uk +Gy +HT +Uk +OA +Xf +as +Xn +Rj +Rj +Xn +as +Ro +GO +Xw +cJ +SG +GO +SR +SG +DZ +VK +lF +WA +GO +XW +YB +WA +GO +Ke +as +as +lX +as +as +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(129,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bY +aX +aX +aX +aX +aX +aX +aX +aX +uL +nL +iK +em +em +em +em +em +em +em +em +em +em +yu +tZ +as +Xs +GO +GO +GO +GO +yE +Uk +Uk +Uk +Uk +Uk +Uk +FI +Uk +sC +Vc +Wa +Uk +Vb +JT +Uk +ak +CZ +Uk +sC +Wa +Uk +OA +Xf +as +bh +PS +PY +bh +as +as +Zs +as +as +as +TS +Uu +as +as +as +as +SG +Xc +SG +as +SG +Xc +SG +as +Wr +JO +vL +as +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(130,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bY +bY +eD +eS +eD +bY +bY +bY +hz +eS +uL +oM +xG +em +em +em +em +em +em +em +em +em +em +si +ua +as +af +GO +My +GO +GO +at +Av +Uk +Uk +Uk +Uk +Uk +FK +JJ +SL +as +Zv +Uk +Uk +Uk +Uk +ak +CZ +Uk +SL +MN +Ll +OA +OM +as +OT +PW +PW +Qe +as +UD +GO +Sp +Dz +as +GO +Sp +UG +VA +VP +as +Yz +GO +Pq +as +Yz +GO +Pq +as +Hv +JO +Hv +as +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(131,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bY +ej +hs +hs +hs +fJ +bY +gX +aG +aG +uL +pF +xS +em +em +em +em +em +em +WB +Rw +WB +em +sj +Jq +as +vn +GO +My +GO +FN +as +PK +Uk +Uk +Uk +Uk +Uk +SG +Zd +SL +as +EQ +Uk +Uk +Uk +ak +FW +CZ +Uk +Mv +MN +Ll +OA +Xf +as +Pl +PX +PX +Qg +as +JG +GO +GO +Wh +as +TY +GO +GO +XN +VW +as +Ws +GO +WU +as +Ws +GO +WU +as +Wr +JO +vL +as +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(132,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bY +el +hs +hs +hs +fL +bY +gZ +aG +aG +uL +ip +yg +em +em +em +em +em +em +WB +mL +WB +em +sw +ub +as +YX +GO +My +GO +FN +as +AE +Fa +Dx +Uk +Et +Uk +SG +Zd +SL +as +Td +Uk +Uk +Uk +Kz +Kz +Uk +Uk +MB +MN +Ll +OA +Xf +as +EW +PX +PX +Qg +as +Ue +GO +GO +Wh +as +TZ +GO +UJ +Kq +VY +as +Ws +GO +WU +as +Ws +GO +WU +as +Bb +JO +Hv +as +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(133,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bY +en +eR +eT +eV +fM +bY +ha +aG +hH +uL +sP +yg +em +FL +Vg +Xe +JV +em +WB +Rw +WB +em +Sh +Xg +as +YX +GO +My +GO +FN +as +Ys +CF +DA +Uk +Et +Fn +SG +Gi +Ig +as +VS +Vc +Vc +Vc +Vc +Vc +Vc +Vc +MD +Nh +Nw +NO +Xf +as +TA +Wj +Wj +Qh +as +Ie +YU +YU +Vd +as +Ie +YU +YU +Ew +Qx +as +Yd +lF +Yu +as +Yd +lF +Yu +as +Wr +JO +vL +as +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(134,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +bY +bY +bY +bY +bY +bY +bY +bY +bY +bY +uL +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +aj +as +as +as +as +as +as +as +as +as +as +as +as +as +as +as +as +as +as +as +as +as +as +as +as +as +as +as +as +as +as +as +bh +bh +bh +bh +as +as +as +as +as +as +as +as +as +as +as +as +as +as +as +as +as +as +as +as +as +as +as +as +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(135,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(136,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(137,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(138,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(139,1,1) = {" +aa +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +ZQ +aa +"} +(140,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} diff --git a/maps/tether/submaps/tether_misc.dmm b/maps/tether/submaps/tether_misc.dmm index f5effee04c..60ca592b50 100644 --- a/maps/tether/submaps/tether_misc.dmm +++ b/maps/tether/submaps/tether_misc.dmm @@ -28,15 +28,6 @@ "ae" = ( /turf/unsimulated/mineral/virgo3b, /area/space) -"af" = ( -/obj/structure/shuttle/engine/propulsion{ - icon_state = "burst_l" - }, -/turf/space, -/turf/simulated/shuttle/plating/airless/carry{ - dir = 1 - }, -/area/shuttle/supply) "ag" = ( /obj/structure/flora/ausbushes/brflowers, /obj/effect/floor_decal/spline/fancy/wood{ @@ -63,17 +54,12 @@ }, /turf/simulated/floor/holofloor/carpet, /area/holodeck/source_courtroom) -"ai" = ( -/obj/structure/shuttle/engine/propulsion, -/turf/space, -/turf/simulated/shuttle/plating/airless/carry{ +"aj" = ( +/obj/machinery/light{ dir = 1 }, -/area/shuttle/supply) -"aj" = ( -/obj/machinery/light, -/turf/simulated/floor/tiled/steel_grid, -/area/centcom/simulated/terminal) +/turf/simulated/floor/tiled/steel, +/area/centcom/simulated/main_hall) "ak" = ( /obj/structure/table/woodentable/holotable, /obj/structure/window/reinforced/holowindow{ @@ -112,9 +98,11 @@ /turf/space, /area/space) "aq" = ( -/obj/effect/step_trigger/teleporter/random, -/turf/space, -/area/space) +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel, +/area/centcom/simulated/main_hall) "ar" = ( /turf/unsimulated/wall, /area/space) @@ -359,8 +347,11 @@ /turf/unsimulated/wall, /area/space) "bc" = ( -/turf/simulated/shuttle/wall, -/area/shuttle/supply) +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel, +/area/centcom/simulated/main_hall) "bd" = ( /obj/structure/flora/ausbushes/fullgrass, /turf/simulated/floor/holofloor/desert, @@ -410,8 +401,8 @@ /turf/simulated/floor/holofloor/tiled, /area/holodeck/source_emptycourt) "bn" = ( -/turf/simulated/shuttle/floor, -/area/shuttle/supply) +/turf/space/internal_edge/topleft, +/area/space) "bo" = ( /obj/structure/flora/ausbushes/brflowers, /obj/effect/floor_decal/spline/fancy/wood/corner, @@ -477,17 +468,11 @@ /turf/simulated/fitness, /area/holodeck/source_boxingcourt) "by" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/shuttle/floor, -/area/shuttle/supply) +/turf/space/internal_edge/top, +/area/space) "bz" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/shuttle/floor, -/area/shuttle/supply) +/turf/space/internal_edge/topright, +/area/space) "bA" = ( /obj/structure/fitness/boxing_ropes{ dir = 8 @@ -590,49 +575,15 @@ /obj/effect/landmark/ai_multicam_room, /turf/unsimulated/ai_visible, /area/ai_multicam_room) -"bO" = ( -/obj/structure/shuttle/engine/propulsion, -/obj/effect/shuttle_landmark{ - base_area = /area/space; - base_turf = /turf/space; - landmark_tag = "supply_cc"; - name = "Centcom Supply Depot" - }, -/turf/space, -/turf/simulated/shuttle/plating/airless/carry{ - dir = 1 - }, -/area/shuttle/supply) -"bP" = ( -/obj/structure/shuttle/engine/propulsion{ - icon_state = "burst_r" - }, -/turf/space, -/turf/simulated/shuttle/plating/airless/carry{ - dir = 1 - }, -/area/shuttle/supply) "bQ" = ( -/obj/machinery/door/airlock/glass_external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "supply_shuttle_hatch"; - locked = 1; - name = "Shuttle Hatch" - }, -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad2" - }, -/turf/simulated/shuttle/plating, -/area/shuttle/supply) +/turf/space/internal_edge/left, +/area/space) "bR" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad2" +/obj/effect/floor_decal/industrial/warning{ + dir = 9 }, -/turf/simulated/shuttle/floor, -/area/shuttle/supply) +/turf/simulated/floor/tiled/steel, +/area/space) "bS" = ( /obj/structure/table/woodentable/holotable, /turf/simulated/floor/holofloor/desert, @@ -750,7 +701,7 @@ /area/ai_multicam_room) "cj" = ( /obj/effect/floor_decal/industrial/warning{ - dir = 9 + dir = 5 }, /turf/simulated/floor/tiled/steel, /area/space) @@ -789,15 +740,8 @@ /turf/simulated/shuttle/wall/alien/blue/hard_corner, /area/unknown/dorm5) "cs" = ( -/obj/machinery/door/airlock/glass_external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "supply_shuttle_hatch"; - locked = 1; - name = "Shuttle Hatch" - }, -/turf/simulated/shuttle/floor, -/area/shuttle/supply) +/turf/space/internal_edge/right, +/area/space) "ct" = ( /obj/structure/holostool, /obj/effect/floor_decal/carpet{ @@ -905,15 +849,11 @@ /turf/simulated/shuttle/floor/alienplating, /area/unknown/dorm5) "cO" = ( -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - frequency = 1380; - id_tag = "supply_shuttle"; - pixel_x = -25; - req_one_access = list(13,31); - tag_door = "supply_shuttle_hatch" +/obj/effect/floor_decal/industrial/warning{ + dir = 8 }, -/turf/simulated/shuttle/floor, -/area/shuttle/supply) +/turf/simulated/floor/tiled/steel, +/area/space) "cP" = ( /obj/structure/flora/ausbushes/ywflowers, /obj/effect/floor_decal/spline/fancy/wood{ @@ -1047,26 +987,14 @@ }, /area/space) "dh" = ( -/obj/machinery/door/airlock/glass_external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "supply_shuttle_hatch"; - locked = 1; - name = "Shuttle Hatch" +/obj/effect/floor_decal/industrial/warning{ + dir = 4 }, -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad" - }, -/turf/simulated/shuttle/plating, -/area/shuttle/supply) +/turf/simulated/floor/tiled/steel, +/area/space) "di" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad" - }, -/turf/simulated/shuttle/floor, -/area/shuttle/supply) +/turf/space/internal_edge/bottomleft, +/area/space) "dj" = ( /obj/structure/holostool, /obj/effect/floor_decal/carpet{ @@ -1237,12 +1165,8 @@ /turf/space/transit/north, /area/space) "dE" = ( -/obj/structure/shuttle/engine/heater, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/airless, -/area/shuttle/supply) +/turf/space/internal_edge/bottomright, +/area/space) "dF" = ( /turf/simulated/floor/holofloor/space, /area/holodeck/source_space) @@ -1347,8 +1271,12 @@ /turf/simulated/floor/holofloor/tiled/dark, /area/holodeck/source_boxingcourt) "dZ" = ( -/turf/unsimulated/wall, -/area/centcom/simulated/terminal) +/obj/machinery/door/airlock/multi_tile/metal, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel, +/area/centcom/simulated/main_hall) "ea" = ( /obj/structure/prop/alien/computer/hybrid{ dir = 8 @@ -1514,9 +1442,11 @@ /turf/simulated/floor/holofloor/wood, /area/holodeck/source_chess) "eE" = ( -/obj/machinery/telecomms/relay/preset/tether, -/turf/unsimulated/floor/steel, -/area/centcom/control) +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel, +/area/centcom/simulated/main_hall) "eF" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/machinery/teleport/hub, @@ -1570,11 +1500,15 @@ /turf/simulated/shuttle/floor/alienplating, /area/unknown/dorm6) "eR" = ( -/obj/machinery/telecomms/allinone/ert, -/turf/unsimulated/floor/steel, -/area/centcom/control) +/obj/structure/fake_stairs/north/bottom{ + _stair_tag = "stairtest" + }, +/turf/simulated/floor/tiled/steel, +/area/centcom/simulated/main_hall) "eS" = ( -/obj/effect/floor_decal/industrial/danger, +/obj/structure/fake_stairs/south/top{ + _stair_tag = "stairtest" + }, /turf/simulated/floor/tiled/steel, /area/centcom/simulated/main_hall) "eT" = ( @@ -1793,12 +1727,11 @@ }, /area/holodeck/source_beach) "fN" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - req_access = list(5) +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 }, -/obj/machinery/door/firedoor/multi_tile, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) +/turf/simulated/floor/tiled/steel, +/area/centcom/simulated/main_hall) "fO" = ( /obj/structure/holostool, /obj/effect/floor_decal/carpet{ @@ -1996,14 +1929,9 @@ /turf/simulated/floor/holofloor/reinforced, /area/holodeck/holodorm/source_off) "gT" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/centcom/simulated/terminal) +/obj/effect/floor_decal/industrial/danger, +/turf/simulated/floor/tiled/steel, +/area/centcom/simulated/main_hall) "gU" = ( /obj/machinery/light, /obj/effect/floor_decal/industrial/danger, @@ -2161,15 +2089,6 @@ }, /turf/simulated/floor/tiled/techfloor/grid/transit, /area/space) -"iq" = ( -/obj/structure/closet/secure_closet/nanotrasen_security, -/obj/item/weapon/storage/box/handcuffs, -/obj/item/weapon/gun/energy/gun, -/obj/item/weapon/shield/riot, -/turf/simulated/floor/tiled, -/area/centcom/simulated/security{ - name = "\improper CentCom Security Arrivals" - }) "is" = ( /obj/effect/floor_decal/transit/orange{ dir = 4 @@ -2208,40 +2127,10 @@ }, /turf/space/transit/west, /area/space) -"kn" = ( -/obj/structure/fake_stairs/north/bottom{ - _stair_tag = "stairtest" - }, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/main_hall) -"kr" = ( -/obj/machinery/telecomms/server/presets/centcomm, -/turf/unsimulated/floor/steel, -/area/centcom/control) "kw" = ( /obj/effect/floor_decal/sign/small_5, /turf/simulated/floor/holofloor/wood, /area/holodeck/source_chess) -"kK" = ( -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "tram" - }, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/shuttle/escape{ - base_turf = /turf/simulated/floor/tiled/techfloor/grid - }) -"kU" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/storage/box/donkpockets, -/obj/item/weapon/storage/box/donkpockets, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/centcom/simulated/security{ - name = "\improper CentCom Security Arrivals" - }) "lf" = ( /obj/effect/floor_decal/transit/orange{ dir = 8 @@ -2258,18 +2147,6 @@ }, /turf/simulated/floor/tiled/techfloor/grid/transit, /area/space) -"lo" = ( -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "tram" - }, -/obj/structure/bed/chair/sofa/bench{ - dir = 4; - padding_color = "#99AAFF" - }, -/turf/simulated/floor/tiled, -/area/shuttle/escape{ - base_turf = /turf/simulated/floor/tiled/techfloor/grid - }) "lu" = ( /obj/effect/step_trigger/thrower{ affect_ghosts = 1; @@ -2322,21 +2199,10 @@ }, /turf/simulated/floor/tiled/techfloor/grid/transit, /area/space) -"mN" = ( -/obj/structure/table/glass, -/obj/machinery/chemical_dispenser/full, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) "nj" = ( /obj/item/toy/chess/rook_white, /turf/simulated/floor/holofloor/wmarble, /area/holodeck/source_chess) -"nn" = ( -/obj/machinery/telecomms/allinone/antag{ - intercept = 1 - }, -/turf/unsimulated/floor/steel, -/area/centcom/control) "nV" = ( /obj/item/toy/chess/rook_black, /turf/simulated/floor/holofloor/wmarble, @@ -2365,10 +2231,6 @@ /obj/item/toy/chess/pawn_black, /turf/simulated/floor/holofloor/wmarble, /area/holodeck/source_chess) -"pb" = ( -/obj/machinery/telecomms/processor/preset_cent, -/turf/unsimulated/floor/steel, -/area/centcom/control) "pf" = ( /obj/effect/floor_decal/sign/small_8, /turf/simulated/floor/holofloor/wood, @@ -2389,10 +2251,6 @@ }, /turf/simulated/floor/tiled/techfloor/grid/transit, /area/space) -"pz" = ( -/obj/machinery/transhuman/resleever, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) "pF" = ( /obj/effect/shuttle_landmark/transit{ base_area = /area/space; @@ -2414,39 +2272,6 @@ "pT" = ( /turf/simulated/floor/holofloor/bmarble, /area/holodeck/source_chess) -"pX" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 4 - }, -/obj/structure/railing{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/centcom/simulated/terminal) -"qa" = ( -/obj/structure/table/standard, -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "tram" - }, -/turf/simulated/floor/tiled, -/area/shuttle/escape{ - base_turf = /turf/simulated/floor/tiled/techfloor/grid - }) -"qb" = ( -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "tram" - }, -/obj/machinery/door/airlock/glass_external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "escape_shuttle_hatch_offsite"; - locked = 1; - name = "Shuttle Hatch" - }, -/turf/simulated/floor/tiled, -/area/shuttle/escape{ - base_turf = /turf/simulated/floor/tiled/techfloor/grid - }) "qc" = ( /obj/effect/transit/light{ dir = 4 @@ -2459,101 +2284,22 @@ "qn" = ( /turf/space/transit/east, /area/space) -"qu" = ( -/obj/structure/table/woodentable, -/turf/simulated/floor/wood, -/area/centcom/simulated/bar) "qv" = ( /obj/effect/floor_decal/sign/small_h, /turf/simulated/floor/holofloor/wood, /area/holodeck/source_chess) -"qz" = ( -/turf/space, -/turf/space/internal_edge/bottomright, -/area/space) -"qQ" = ( -/obj/structure/sign/warning/docking_area, -/turf/unsimulated/wall, -/area/centcom/simulated/terminal) "qV" = ( /obj/effect/floor_decal/sign/small_6, /turf/simulated/floor/holofloor/wood, /area/holodeck/source_chess) -"qY" = ( -/obj/effect/fancy_shuttle/orangeline{ - dir = 1; - fancy_shuttle_tag = "tram" - }, -/obj/effect/fancy_shuttle_floor_preview/orangeline{ - dir = 1; - plane = -45 - }, -/turf/simulated/wall/fancy_shuttle{ - fancy_shuttle_tag = "tram" - }, -/area/shuttle/escape{ - base_turf = /turf/simulated/floor/tiled/techfloor/grid - }) -"ri" = ( -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "tram" - }, -/obj/structure/closet/walllocker_double/hydrant/west, -/turf/simulated/floor/tiled, -/area/shuttle/escape{ - base_turf = /turf/simulated/floor/tiled/techfloor/grid - }) "ru" = ( /obj/item/toy/chess/pawn_black, /turf/simulated/floor/holofloor/bmarble, /area/holodeck/source_chess) -"rD" = ( -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "tram" - }, -/obj/structure/bed/chair/sofa/bench{ - dir = 8; - padding_color = "#99AAFF" - }, -/obj/random/forgotten_tram, -/turf/simulated/floor/tiled, -/area/shuttle/escape{ - base_turf = /turf/simulated/floor/tiled/techfloor/grid - }) -"rE" = ( -/obj/machinery/telecomms/bus/preset_cent, -/turf/unsimulated/floor/steel, -/area/centcom/control) -"rJ" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/steel_grid, -/area/centcom/simulated/terminal) -"rW" = ( -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "tram" - }, -/obj/structure/bed/chair/sofa/bench/right{ - dir = 8; - padding_color = "#99AAFF" - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/random/forgotten_tram, -/turf/simulated/floor/tiled, -/area/shuttle/escape{ - base_turf = /turf/simulated/floor/tiled/techfloor/grid - }) "sb" = ( /obj/item/toy/chess/knight_white, /turf/simulated/floor/holofloor/wmarble, /area/holodeck/source_chess) -"sl" = ( -/turf/space/internal_edge/top, -/area/space) "sp" = ( /obj/effect/step_trigger/lost_in_space/tram, /obj/effect/floor_decal/transit/orange{ @@ -2568,84 +2314,10 @@ }, /turf/simulated/floor/tiled/techfloor/grid/transit, /area/space) -"sw" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/centcom/simulated/terminal) -"sx" = ( -/turf/simulated/floor/maglev, -/area/centcom/simulated/terminal) -"sB" = ( -/obj/structure/table/glass, -/obj/item/weapon/storage/pill_bottle/spaceacillin, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) "sF" = ( /obj/effect/overmap/bluespace_rift, /turf/unsimulated/map, /area/overmap) -"sN" = ( -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "tram" - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/blue, -/obj/structure/closet/emcloset, -/turf/simulated/floor/tiled, -/area/shuttle/escape{ - base_turf = /turf/simulated/floor/tiled/techfloor/grid - }) -"sQ" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/melee/baton/loaded, -/obj/item/weapon/melee/baton/loaded, -/obj/item/weapon/gun/energy/taser, -/turf/simulated/floor/tiled, -/area/centcom/simulated/security{ - name = "\improper CentCom Security Arrivals" - }) -"sT" = ( -/obj/machinery/door/blast/regular{ - dir = 4 - }, -/turf/unsimulated/wall, -/area/centcom/simulated/terminal) -"tr" = ( -/obj/structure/sign/painting/public{ - pixel_y = -30 - }, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/main_hall) -"tu" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/centcom/simulated/terminal) -"tz" = ( -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "tram" - }, -/obj/structure/bed/chair/shuttle{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/shuttle/escape{ - base_turf = /turf/simulated/floor/tiled/techfloor/grid - }) -"tC" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/space) "tD" = ( /obj/effect/step_trigger/thrower{ affect_ghosts = 1; @@ -2655,66 +2327,6 @@ }, /turf/space/transit/east, /area/space) -"tV" = ( -/obj/structure/table/standard, -/obj/random/forgotten_tram, -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "tram" - }, -/turf/simulated/floor/tiled, -/area/shuttle/escape{ - base_turf = /turf/simulated/floor/tiled/techfloor/grid - }) -"uc" = ( -/turf/unsimulated/wall, -/area/centcom/suppy) -"ud" = ( -/obj/machinery/status_display/supply_display, -/turf/unsimulated/wall, -/area/centcom/suppy) -"ue" = ( -/obj/structure/closet/crate, -/turf/unsimulated/floor{ - dir = 1; - icon_state = "vault" - }, -/area/centcom/suppy) -"uf" = ( -/turf/unsimulated/floor{ - icon_state = "dark" - }, -/area/centcom/suppy) -"ug" = ( -/obj/item/weapon/paper{ - info = "You're not supposed to be here."; - name = "unnerving letter" - }, -/turf/unsimulated/floor{ - icon_state = "dark" - }, -/area/centcom/suppy) -"uj" = ( -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "tram" - }, -/obj/structure/bed/chair/sofa/bench/left{ - dir = 4; - padding_color = "#99AAFF" - }, -/turf/simulated/floor/tiled, -/area/shuttle/escape{ - base_turf = /turf/simulated/floor/tiled/techfloor/grid - }) -"uE" = ( -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "tram" - }, -/obj/structure/table/standard, -/obj/random/forgotten_tram, -/turf/simulated/floor/tiled, -/area/shuttle/escape{ - base_turf = /turf/simulated/floor/tiled/techfloor/grid - }) "uG" = ( /obj/effect/step_trigger/lost_in_space/tram, /turf/simulated/floor/tiled/techfloor/grid/transit, @@ -2743,126 +2355,15 @@ /obj/effect/floor_decal/sign/small_3, /turf/simulated/floor/holofloor/wood, /area/holodeck/source_chess) -"wd" = ( -/obj/structure/sign/warning/nosmoking_2, -/turf/unsimulated/wall, -/area/centcom/simulated/terminal) "wh" = ( /obj/item/toy/chess/knight_black, /turf/simulated/floor/holofloor/bmarble, /area/holodeck/source_chess) -"wj" = ( -/turf/space/internal_edge/left, -/area/space) -"wl" = ( -/turf/unsimulated/wall, -/area/centcom/simulated/evac) -"wn" = ( -/obj/structure/fake_stairs/south/top{ - _stair_tag = "stairtest" - }, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/main_hall) -"ws" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/reagent_containers/food/snacks/meatballsoup, -/turf/simulated/floor/wood, -/area/centcom/simulated/restaurant) -"wy" = ( -/turf/unsimulated/wall, -/area/centcom/control) -"wT" = ( -/obj/machinery/bodyscanner{ - dir = 8 - }, -/obj/effect/floor_decal/corner_steel_grid{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"wV" = ( -/obj/structure/sign/department/operational, -/turf/unsimulated/wall, -/area/centcom/simulated/medical) -"wW" = ( -/obj/machinery/clonepod/transhuman/full, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) "wZ" = ( /turf/unsimulated/floor{ icon_state = "sandwater" }, /area/beach) -"xe" = ( -/obj/machinery/account_database{ - dir = 1; - name = "CentComm Accounts database" - }, -/turf/unsimulated/floor/steel, -/area/centcom/control) -"xm" = ( -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "tram" - }, -/obj/machinery/light, -/obj/structure/bed/chair/sofa/bench/left{ - dir = 8; - padding_color = "#99AAFF" - }, -/obj/random/forgotten_tram, -/turf/simulated/floor/tiled, -/area/shuttle/escape{ - base_turf = /turf/simulated/floor/tiled/techfloor/grid - }) -"xu" = ( -/obj/structure/sign/painting/public{ - pixel_y = 30 - }, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/main_hall) -"xB" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister/oxygen/prechilled, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"xE" = ( -/obj/structure/table/glass, -/obj/machinery/chemical_dispenser/ert, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"xM" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/main_hall) -"xT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"xY" = ( -/obj/structure/table/reinforced, -/obj/machinery/chemical_dispenser/bar_soft/full, -/obj/structure/sign/painting/public{ - pixel_y = -30 - }, -/turf/simulated/floor/wood, -/area/centcom/simulated/bar) -"xZ" = ( -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "tram" - }, -/obj/structure/bed/chair/shuttle{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/shuttle/escape{ - base_turf = /turf/simulated/floor/tiled/techfloor/grid - }) "ya" = ( /obj/effect/step_trigger/thrower{ affect_ghosts = 1; @@ -2872,56 +2373,12 @@ }, /turf/simulated/sky/virgo3b/south, /area/space) -"yb" = ( -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "tram" - }, -/obj/structure/bed/chair/sofa/bench/left{ - dir = 4; - padding_color = "#99AAFF" - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/shuttle/escape{ - base_turf = /turf/simulated/floor/tiled/techfloor/grid - }) "yk" = ( /obj/effect/step_trigger/lost_in_space/tram, /turf/simulated/floor/maglev{ icon = 'icons/turf/transit_vr.dmi' }, /area/space) -"ym" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/main_hall) -"yA" = ( -/obj/machinery/telecomms/receiver/preset_cent, -/turf/unsimulated/floor/steel, -/area/centcom/control) -"yK" = ( -/obj/machinery/door/airlock/multi_tile/metal, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/main_hall) -"yV" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"za" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/centcom/simulated/security{ - name = "\improper CentCom Security Arrivals" - }) "zb" = ( /obj/effect/step_trigger/thrower{ direction = 1; @@ -2930,57 +2387,6 @@ }, /turf/space/transit/east, /area/space) -"zd" = ( -/obj/structure/sign/painting/public{ - pixel_x = -30 - }, -/turf/simulated/floor/wood, -/area/centcom/simulated/restaurant) -"zp" = ( -/obj/machinery/chem_master, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"zv" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/centcom/simulated/terminal) -"zF" = ( -/obj/structure/reagent_dispensers/peppertank{ - pixel_x = 30 - }, -/turf/simulated/floor/tiled, -/area/centcom/simulated/security{ - name = "\improper CentCom Security Arrivals" - }) -"zN" = ( -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "tram" - }, -/obj/structure/closet/walllocker/medical/east, -/turf/simulated/floor/tiled, -/area/shuttle/escape{ - base_turf = /turf/simulated/floor/tiled/techfloor/grid - }) -"As" = ( -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "tram" - }, -/obj/machinery/door/airlock/glass_external{ - frequency = 1380; - icon_state = "door_locked"; - id_tag = "escape_shuttle_hatch_station"; - locked = 1; - name = "Shuttle Hatch" - }, -/turf/simulated/floor/tiled, -/area/shuttle/escape{ - base_turf = /turf/simulated/floor/tiled/techfloor/grid - }) "Av" = ( /obj/effect/transit/light{ dir = 8 @@ -2999,20 +2405,6 @@ "Az" = ( /turf/unsimulated/beach/coastline, /area/beach) -"AK" = ( -/obj/machinery/door/airlock/medical{ - name = "Operating Theatre"; - req_access = list(45) - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"Bc" = ( -/obj/structure/filingcabinet/chestdrawer{ - name = "Medical Forms" - }, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) "Bm" = ( /obj/item/toy/chess/bishop_black, /turf/simulated/floor/holofloor/bmarble, @@ -3028,33 +2420,9 @@ /obj/item/toy/chess/king_black, /turf/simulated/floor/holofloor/wmarble, /area/holodeck/source_chess) -"BK" = ( -/turf/space, -/turf/space/internal_edge/bottomleft, -/area/space) "Cn" = ( /turf/simulated/sky/virgo3b/south, /area/space) -"Ct" = ( -/obj/machinery/ntnet_relay, -/turf/unsimulated/floor/steel, -/area/centcom/control) -"Cw" = ( -/obj/machinery/r_n_d/server/centcom, -/turf/unsimulated/floor/steel, -/area/centcom/control) -"Cy" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/main_hall) -"CC" = ( -/obj/structure/sign/warning{ - name = "\improper STAND AWAY FROM TRACK EDGE" - }, -/turf/unsimulated/wall, -/area/centcom/simulated/terminal) "CJ" = ( /obj/item/toy/chess/pawn_white, /turf/simulated/floor/holofloor/bmarble, @@ -3066,29 +2434,15 @@ /obj/effect/floor_decal/sign/small_2, /turf/simulated/floor/holofloor/wood, /area/holodeck/source_chess) -"Dk" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel, -/area/space) "Dw" = ( /obj/structure/table/standard, /obj/item/weapon/reagent_containers/food/snacks/chips, /turf/unsimulated/beach/sand, /area/beach) -"DF" = ( -/turf/space, -/turf/space/internal_edge/topright, -/area/space) "DL" = ( /obj/effect/floor_decal/sign/small_b, /turf/simulated/floor/holofloor/wood, /area/holodeck/source_chess) -"DR" = ( -/obj/machinery/atmospherics/pipe/manifold4w/hidden, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) "El" = ( /turf/space/transit/west, /area/space) @@ -3096,29 +2450,6 @@ /obj/effect/floor_decal/sign/small_g, /turf/simulated/floor/holofloor/wood, /area/holodeck/source_chess) -"Eu" = ( -/obj/structure/sign/painting/public{ - pixel_y = -30 - }, -/turf/simulated/floor/tiled, -/area/centcom/simulated/terminal) -"Ex" = ( -/obj/structure/bed/chair/wood/wings{ - dir = 8 - }, -/obj/structure/sign/painting/public{ - pixel_x = 30 - }, -/turf/simulated/floor/wood, -/area/centcom/simulated/restaurant) -"EO" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, -/area/centcom/simulated/terminal) -"ET" = ( -/turf/simulated/floor/tiled/techfloor/grid, -/area/centcom/simulated/terminal) "EX" = ( /obj/item/toy/chess/bishop_black, /turf/simulated/floor/holofloor/wmarble, @@ -3136,9 +2467,6 @@ icon_state = "rock" }, /area/space) -"FC" = ( -/turf/simulated/floor/wood, -/area/centcom/simulated/bar) "FH" = ( /obj/structure/bed/chair, /obj/effect/landmark{ @@ -3153,9 +2481,6 @@ "FT" = ( /turf/simulated/floor/tiled/techfloor/grid/transit, /area/space) -"Ga" = ( -/turf/unsimulated/floor/steel, -/area/centcom/control) "Gq" = ( /turf/unsimulated/wall, /area/beach) @@ -3167,32 +2492,10 @@ /obj/effect/overlay/palmtree_l, /turf/unsimulated/beach/sand, /area/beach) -"GU" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/structure/sign/painting/public{ - pixel_x = 30 - }, -/turf/simulated/floor/tiled, -/area/centcom/simulated/terminal) "GW" = ( /obj/item/toy/chess/king_white, /turf/simulated/floor/holofloor/bmarble, /area/holodeck/source_chess) -"GX" = ( -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "tram" - }, -/obj/structure/bed/chair/sofa/bench{ - dir = 4; - padding_color = "#99AAFF" - }, -/obj/random/forgotten_tram, -/turf/simulated/floor/tiled, -/area/shuttle/escape{ - base_turf = /turf/simulated/floor/tiled/techfloor/grid - }) "Hf" = ( /obj/effect/shuttle_landmark/transit{ base_area = /area/space; @@ -3210,11 +2513,6 @@ /obj/item/toy/chess/rook_black, /turf/simulated/floor/holofloor/bmarble, /area/holodeck/source_chess) -"Hv" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/reagent_containers/food/snacks/grilledcheese, -/turf/simulated/floor/wood, -/area/centcom/simulated/restaurant) "Hy" = ( /turf/unsimulated/mineral{ icon = 'icons/turf/transit_vr.dmi'; @@ -3225,14 +2523,6 @@ /obj/effect/floor_decal/sign/small_1, /turf/simulated/floor/holofloor/wood, /area/holodeck/source_chess) -"HQ" = ( -/obj/machinery/telecomms/broadcaster/preset_cent, -/turf/unsimulated/floor/steel, -/area/centcom/control) -"HW" = ( -/obj/machinery/light, -/turf/simulated/floor/wood, -/area/centcom/simulated/restaurant) "Ik" = ( /obj/structure/table/standard, /obj/item/weapon/reagent_containers/food/drinks/cans/cola, @@ -3252,10 +2542,6 @@ }, /turf/space/transit/north, /area/space) -"Iq" = ( -/obj/machinery/telecomms/hub/preset_cent, -/turf/unsimulated/floor/steel, -/area/centcom/control) "IR" = ( /obj/effect/step_trigger/thrower{ affect_ghosts = 1; @@ -3265,38 +2551,10 @@ }, /turf/simulated/sky/virgo3b/south, /area/space) -"IV" = ( -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "tram" - }, -/obj/structure/bed/chair/sofa/bench/left{ - dir = 8; - padding_color = "#99AAFF" - }, -/turf/simulated/floor/tiled, -/area/shuttle/escape{ - base_turf = /turf/simulated/floor/tiled/techfloor/grid - }) -"IX" = ( -/obj/structure/table/glass, -/obj/item/device/defib_kit/loaded, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) "Jc" = ( /obj/item/toy/chess/bishop_white, /turf/simulated/floor/holofloor/bmarble, /area/holodeck/source_chess) -"Jw" = ( -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "tram" - }, -/obj/machinery/status_display{ - pixel_x = 32 - }, -/turf/simulated/floor/tiled, -/area/shuttle/escape{ - base_turf = /turf/simulated/floor/tiled/techfloor/grid - }) "Jz" = ( /obj/effect/step_trigger/teleporter/random{ affect_ghosts = 1; @@ -3310,22 +2568,6 @@ }, /turf/space/transit/north, /area/space) -"JA" = ( -/obj/machinery/smartfridge/drinks, -/turf/simulated/floor/wood, -/area/centcom/simulated/bar) -"JC" = ( -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "tram" - }, -/obj/structure/bed/chair/sofa/bench{ - dir = 8; - padding_color = "#99AAFF" - }, -/turf/simulated/floor/tiled, -/area/shuttle/escape{ - base_turf = /turf/simulated/floor/tiled/techfloor/grid - }) "JI" = ( /obj/item/toy/chess/rook_white, /turf/simulated/floor/holofloor/bmarble, @@ -3340,30 +2582,12 @@ }, /turf/space/transit/north, /area/space) -"JR" = ( -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "TelelockdownC"; - name = "Security Doors"; - opacity = 0 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/living) "JW" = ( /turf/unsimulated/beach/water{ density = 1; opacity = 1 }, /area/beach) -"JZ" = ( -/turf/space/internal_edge/right, -/area/space) "Kj" = ( /obj/effect/shuttle_landmark/transit{ base_area = /area/space; @@ -3377,83 +2601,14 @@ /obj/effect/floor_decal/sign/small_d, /turf/simulated/floor/holofloor/wood, /area/holodeck/source_chess) -"KO" = ( -/obj/machinery/body_scanconsole, -/obj/effect/floor_decal/corner_steel_grid{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) "KQ" = ( /obj/effect/floor_decal/sign/small_f, /turf/simulated/floor/holofloor/wood, /area/holodeck/source_chess) -"Lg" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/turf/simulated/floor/tiled/steel, -/area/space) -"Lm" = ( -/obj/structure/bed/chair/sofa/bench/right{ - padding_color = "#99AAFF" - }, -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "tram" - }, -/turf/simulated/floor/tiled, -/area/shuttle/escape{ - base_turf = /turf/simulated/floor/tiled/techfloor/grid - }) -"Lu" = ( -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "tram" - }, -/obj/structure/closet/walllocker/medical/west, -/turf/simulated/floor/tiled, -/area/shuttle/escape{ - base_turf = /turf/simulated/floor/tiled/techfloor/grid - }) -"Lx" = ( -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "tram" - }, -/obj/effect/floor_decal/industrial/outline/blue, -/obj/machinery/light, -/obj/structure/closet/emcloset, -/turf/simulated/floor/tiled, -/area/shuttle/escape{ - base_turf = /turf/simulated/floor/tiled/techfloor/grid - }) "Lz" = ( /obj/effect/step_trigger/teleporter/planetary_fall/virgo3b, /turf/simulated/sky/virgo3b/south, /area/space) -"LD" = ( -/obj/structure/railing, -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/floor_decal/techfloor/orange{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/centcom/simulated/terminal) -"LR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"Mb" = ( -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "tram" - }, -/obj/structure/table/standard, -/turf/simulated/floor/tiled, -/area/shuttle/escape{ - base_turf = /turf/simulated/floor/tiled/techfloor/grid - }) "Me" = ( /turf/simulated/floor/smole/desert, /area/holodeck/source_smoleworld) @@ -3461,26 +2616,6 @@ /obj/item/toy/chess/bishop_white, /turf/simulated/floor/holofloor/wmarble, /area/holodeck/source_chess) -"MB" = ( -/obj/machinery/sleeper{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"ME" = ( -/obj/machinery/computer/rdservercontrol{ - badmin = 1; - dir = 1; - name = "Master R&D Server Controller" - }, -/turf/unsimulated/floor/steel, -/area/centcom/control) -"MK" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/main_hall) "ML" = ( /obj/effect/step_trigger/thrower{ affect_ghosts = 1; @@ -3488,17 +2623,6 @@ }, /turf/space/transit/east, /area/space) -"MP" = ( -/obj/structure/bed/chair/sofa/bench/left{ - padding_color = "#99AAFF" - }, -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "tram" - }, -/turf/simulated/floor/tiled, -/area/shuttle/escape{ - base_turf = /turf/simulated/floor/tiled/techfloor/grid - }) "Nj" = ( /obj/item/clothing/head/collectable/paper, /turf/unsimulated/beach/sand, @@ -3507,68 +2631,12 @@ /obj/item/weapon/beach_ball, /turf/unsimulated/beach/sand, /area/beach) -"Nq" = ( -/turf/simulated/floor/tiled, -/area/centcom/simulated/terminal) -"Nr" = ( -/obj/machinery/cryopod/robot/door/gateway, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/living) "Nt" = ( /turf/unsimulated/beach/sand{ density = 1; opacity = 1 }, /area/beach) -"Nw" = ( -/obj/machinery/sleep_console{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"NA" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/centcom/simulated/terminal) -"NC" = ( -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "tram" - }, -/obj/machinery/light, -/obj/structure/bed/chair/sofa/bench/right{ - dir = 4; - padding_color = "#99AAFF" - }, -/turf/simulated/floor/tiled, -/area/shuttle/escape{ - base_turf = /turf/simulated/floor/tiled/techfloor/grid - }) -"ND" = ( -/obj/effect/shuttle_landmark{ - base_area = /area/centcom/simulated/terminal; - base_turf = /turf/simulated/floor/tiled/techfloor/grid; - docking_controller = null; - landmark_tag = "escape_cc"; - name = "Escape Centcom" - }, -/turf/simulated/wall/fancy_shuttle{ - fancy_shuttle_tag = "tram" - }, -/area/shuttle/escape{ - base_turf = /turf/simulated/floor/tiled/techfloor/grid - }) -"NJ" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/reagent_containers/food/drinks/flask/barflask, -/obj/item/weapon/reagent_containers/glass/rag, -/obj/item/weapon/reagent_containers/food/drinks/flask/vacuumflask, -/turf/simulated/floor/wood, -/area/centcom/simulated/bar) "Oj" = ( /obj/effect/step_trigger/thrower{ affect_ghosts = 1; @@ -3578,44 +2646,13 @@ }, /turf/simulated/sky/virgo3b/south, /area/space) -"Om" = ( -/turf/unsimulated/wall, -/area/centcom/simulated/bar) "Or" = ( /obj/item/toy/chess/knight_white, /turf/simulated/floor/holofloor/bmarble, /area/holodeck/source_chess) -"OS" = ( -/obj/machinery/camera/network/crescent, -/turf/simulated/floor/tiled, -/area/centcom/simulated/security{ - name = "\improper CentCom Security Arrivals" - }) -"OT" = ( -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "tram" - }, -/obj/structure/bed/chair/sofa/bench/left{ - dir = 8; - padding_color = "#99AAFF" - }, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/shuttle/escape{ - base_turf = /turf/simulated/floor/tiled/techfloor/grid - }) "OY" = ( /turf/unsimulated/map, /area/overmap) -"Pf" = ( -/obj/structure/table/woodentable{ - dir = 5 - }, -/obj/structure/flora/pottedplant{ - pixel_y = 8 - }, -/turf/simulated/floor/tiled, -/area/centcom/simulated/terminal) "Pi" = ( /obj/effect/step_trigger/thrower{ affect_ghosts = 1; @@ -3626,184 +2663,13 @@ }, /turf/space/transit/west, /area/space) -"Pk" = ( -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "tram" - }, -/obj/structure/closet/walllocker_double/hydrant/east, -/turf/simulated/floor/tiled, -/area/shuttle/escape{ - base_turf = /turf/simulated/floor/tiled/techfloor/grid - }) -"Pn" = ( -/obj/structure/bed/chair/sofa/bench/left{ - dir = 1; - padding_color = "#99AAFF" - }, -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "tram" - }, -/turf/simulated/floor/tiled, -/area/shuttle/escape{ - base_turf = /turf/simulated/floor/tiled/techfloor/grid - }) -"Pq" = ( -/obj/machinery/vending/coffee{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/centcom/simulated/restaurant) -"Pr" = ( -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "tram" - }, -/obj/structure/bed/chair/sofa/bench/right{ - dir = 8; - padding_color = "#99AAFF" - }, -/turf/simulated/floor/tiled, -/area/shuttle/escape{ - base_turf = /turf/simulated/floor/tiled/techfloor/grid - }) -"Py" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE" - }, -/turf/unsimulated/wall, -/area/centcom/simulated/terminal) -"PF" = ( -/obj/structure/bed/chair/sofa/bench/left{ - dir = 4; - padding_color = "#99AAFF" - }, -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "tram" - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/shuttle/escape{ - base_turf = /turf/simulated/floor/tiled/techfloor/grid - }) "PM" = ( /turf/simulated/floor/smole/megablocks, /area/holodeck/source_smoleworld) -"PU" = ( -/obj/structure/bed/chair/sofa/bench/right{ - dir = 1; - padding_color = "#99AAFF" - }, -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "tram" - }, -/turf/simulated/floor/tiled, -/area/shuttle/escape{ - base_turf = /turf/simulated/floor/tiled/techfloor/grid - }) -"Qo" = ( -/obj/machinery/vending/sovietsoda{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/centcom/simulated/restaurant) "Qs" = ( /obj/item/toy/chess/queen_black, /turf/simulated/floor/holofloor/bmarble, /area/holodeck/source_chess) -"QY" = ( -/obj/structure/flora/pottedplant{ - icon_state = "plant-21" - }, -/turf/simulated/floor/tiled, -/area/centcom/simulated/terminal) -"Rc" = ( -/obj/effect/floor_decal/techfloor/orange{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/centcom/simulated/terminal) -"Rq" = ( -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "TelelockdownC"; - name = "Security Doors"; - opacity = 0 - }, -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/living) -"Rr" = ( -/obj/structure/flora/pottedplant{ - icon_state = "plant-22" - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/main_hall) -"Ru" = ( -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/main_hall) -"Rv" = ( -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "TelelockdownC"; - name = "Security Doors"; - opacity = 0 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/living) -"Ry" = ( -/obj/structure/table/glass, -/obj/item/weapon/storage/firstaid/adv, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"RA" = ( -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "tram" - }, -/obj/machinery/status_display{ - pixel_x = -32 - }, -/turf/simulated/floor/tiled, -/area/shuttle/escape{ - base_turf = /turf/simulated/floor/tiled/techfloor/grid - }) -"RM" = ( -/obj/structure/bed/chair/sofa/bench/right{ - dir = 4; - padding_color = "#99AAFF" - }, -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "tram" - }, -/obj/random/forgotten_tram, -/turf/simulated/floor/tiled, -/area/shuttle/escape{ - base_turf = /turf/simulated/floor/tiled/techfloor/grid - }) -"RN" = ( -/turf/simulated/wall/fancy_shuttle/window{ - fancy_shuttle_tag = "tram" - }, -/area/shuttle/escape{ - base_turf = /turf/simulated/floor/tiled/techfloor/grid - }) "RV" = ( /obj/effect/step_trigger/teleporter/random{ affect_ghosts = 1; @@ -3817,11 +2683,6 @@ }, /turf/simulated/sky/virgo3b/south, /area/space) -"Sf" = ( -/obj/structure/table/reinforced, -/obj/machinery/chemical_dispenser/bar_alc/full, -/turf/simulated/floor/wood, -/area/centcom/simulated/bar) "Sh" = ( /obj/effect/step_trigger/thrower{ affect_ghosts = 1; @@ -3863,18 +2724,6 @@ /obj/machinery/door/airlock/alien/blue/public, /turf/simulated/shuttle/floor/alienplating, /area/unknown/dorm4) -"St" = ( -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "tram" - }, -/obj/structure/bed/chair/sofa/bench/right{ - dir = 4; - padding_color = "#99AAFF" - }, -/turf/simulated/floor/tiled, -/area/shuttle/escape{ - base_turf = /turf/simulated/floor/tiled/techfloor/grid - }) "Su" = ( /obj/structure/closet/alien, /turf/simulated/shuttle/floor/alien, @@ -3938,12 +2787,6 @@ /obj/structure/prop/alien/dispenser, /turf/simulated/shuttle/floor/alien, /area/unknown/dorm4) -"SH" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/centcom/simulated/terminal) "SK" = ( /obj/structure/closet/secure_closet/personal, /turf/simulated/shuttle/floor/alien, @@ -3981,28 +2824,6 @@ /obj/structure/prop/alien/power, /turf/simulated/shuttle/floor/alienplating, /area/unknown/dorm4) -"SV" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/main_hall) -"SW" = ( -/obj/item/device/perfect_tele_beacon/stationary{ - tele_name = "Transfer"; - tele_network = "centcom" - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/living) "SZ" = ( /obj/machinery/recharge_station, /turf/simulated/shuttle/floor/alienplating, @@ -4024,28 +2845,6 @@ }, /turf/simulated/shuttle/floor/alienplating, /area/unknown/dorm3) -"Tf" = ( -/obj/machinery/cryopod/robot/door/gateway, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/living) -"Th" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/living) -"Ti" = ( -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/living) -"Tj" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/living) "Tk" = ( /obj/structure/closet/alien, /turf/simulated/shuttle/floor/alien, @@ -4157,16 +2956,6 @@ /obj/structure/prop/alien/power, /turf/simulated/shuttle/floor/alienplating, /area/unknown/dorm3) -"TI" = ( -/obj/effect/wingrille_spawn/reinforced/crescent, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/centcom/simulated/terminal) -"TJ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/multi_tile/glass, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/main_hall) "TK" = ( /turf/simulated/shuttle/wall/alien/hard_corner, /area/unknown/dorm2) @@ -4177,17 +2966,6 @@ /obj/machinery/recharge_station, /turf/simulated/shuttle/floor/alienplating, /area/unknown/dorm2) -"TO" = ( -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "tram" - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/shuttle/escape{ - base_turf = /turf/simulated/floor/tiled/techfloor/grid - }) "TP" = ( /turf/simulated/shuttle/floor/alienplating, /area/unknown/dorm2) @@ -4246,10 +3024,6 @@ /obj/machinery/sleeper/survival_pod, /turf/simulated/shuttle/floor/alien, /area/unknown/dorm2) -"TZ" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/evac) "Ua" = ( /obj/structure/table/survival_pod, /turf/simulated/shuttle/floor/alien, @@ -4313,36 +3087,6 @@ /obj/structure/prop/alien/power, /turf/simulated/shuttle/floor/alienplating, /area/unknown/dorm2) -"Up" = ( -/obj/effect/floor_decal/industrial/warning/dust, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/evac) -"Ur" = ( -/obj/effect/floor_decal/rust, -/obj/effect/floor_decal/industrial/warning/dust, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/evac) -"Us" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/evac) -"Ut" = ( -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/evac) -"Uu" = ( -/obj/effect/floor_decal/industrial/warning/dust, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/evac) -"Uv" = ( -/obj/effect/floor_decal/industrial/outline, -/obj/structure/bed/chair, -/turf/unsimulated/floor/steel, -/area/centcom/simulated/main_hall) "Uw" = ( /turf/simulated/shuttle/wall/alien/hard_corner, /area/unknown/dorm1) @@ -4370,14 +3114,6 @@ }, /turf/simulated/shuttle/floor/alienplating, /area/unknown/dorm1) -"UE" = ( -/obj/effect/floor_decal/industrial/outline, -/obj/structure/bed/chair, -/obj/machinery/status_display{ - pixel_y = 29 - }, -/turf/unsimulated/floor/steel, -/area/centcom/simulated/main_hall) "UF" = ( /obj/machinery/door/airlock/alien/public, /turf/simulated/shuttle/floor/alienplating, @@ -4430,10 +3166,6 @@ }, /turf/simulated/shuttle/floor/alienplating, /area/unknown/dorm1) -"UO" = ( -/obj/machinery/vending/boozeomat, -/turf/simulated/floor/wood, -/area/centcom/simulated/bar) "UP" = ( /obj/item/weapon/bedsheet/rddouble, /obj/structure/bed/double/padded, @@ -4486,1102 +3218,51 @@ /obj/structure/prop/alien/power, /turf/simulated/shuttle/floor/alienplating, /area/unknown/dorm1) -"Va" = ( -/obj/effect/floor_decal/rust/steel_decals_rusted2, -/obj/effect/floor_decal/industrial/warning/dust, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/evac) -"Vb" = ( -/obj/machinery/recharge_station, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/bathroom) -"Vc" = ( -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/bathroom) -"Vd" = ( -/turf/unsimulated/wall, -/area/centcom/simulated/medical) -"Vf" = ( -/obj/machinery/door/airlock{ - name = "Unit 4" - }, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/bathroom) -"Vg" = ( -/turf/unsimulated/wall, -/area/centcom/simulated/living) -"Vh" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/centcom/simulated/terminal) -"Vi" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/evac) -"Vj" = ( -/turf/simulated/floor/tiled/steel, -/area/shuttle/large_escape_pod2/centcom{ - base_turf = /turf/simulated/floor/tiled/steel_dirty/virgo3b - }) -"Vk" = ( -/turf/unsimulated/wall, -/area/centcom/simulated/bathroom) -"Vl" = ( -/obj/structure/sign/warning{ - name = "\improper STAND AWAY FROM TRACK EDGE" - }, -/turf/unsimulated/wall, -/area/centcom/simulated/living) -"Vm" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled/steel, -/area/shuttle/large_escape_pod2/centcom{ - base_turf = /turf/simulated/floor/tiled/steel_dirty/virgo3b - }) -"Vn" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 10 - }, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/evac) -"Vo" = ( -/obj/machinery/door/blast/regular, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/evac) -"Vp" = ( -/obj/effect/floor_decal/rust/part_rusted3, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 9 - }, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/evac) -"Vq" = ( -/obj/effect/floor_decal/rust/part_rusted3, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/evac) -"Vr" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/evac) -"Vs" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/evac) -"Vt" = ( -/obj/effect/floor_decal/rust/mono_rusted3, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/evac) -"Vu" = ( -/turf/unsimulated/wall, -/area/centcom/simulated/main_hall) -"Vv" = ( -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 8 - }, -/turf/unsimulated/floor/steel, -/area/centcom/simulated/terminal) -"Vw" = ( -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/main_hall) "Vy" = ( -/obj/machinery/door/airlock{ - name = "Unit 3" - }, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/bathroom) -"Vz" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/bathroom) -"VB" = ( -/obj/effect/floor_decal/sign/dock/one, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, /turf/simulated/floor/tiled/steel, -/area/centcom/simulated/evac) +/area/centcom/simulated/main_hall) +"Vz" = ( +/turf/unsimulated/wall, +/area/centcom/simulated/main_hall) "VC" = ( /turf/unsimulated/beach/sand, /area/beach) -"VD" = ( -/obj/effect/floor_decal/corner_steel_grid/diagonal, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/evac) -"VE" = ( -/obj/effect/shuttle_landmark{ - base_area = /area/centcom/simulated/evac; - base_turf = /turf/unsimulated/floor/steel; - docking_controller = null; - landmark_tag = "escapepod1_cc"; - name = "Centcom Recovery Area" - }, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/evac) -"VF" = ( -/obj/effect/floor_decal/sign/dock/two, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/evac) -"VI" = ( -/turf/unsimulated/wall, -/area/centcom/simulated/security{ - name = "\improper CentCom Security Arrivals" - }) -"VJ" = ( -/obj/effect/floor_decal/rust, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/evac) -"VL" = ( -/obj/effect/floor_decal/steeldecal/steel_decals9, -/turf/simulated/floor/tiled, -/area/centcom/simulated/terminal) -"VM" = ( -/turf/unsimulated/wall, -/area/centcom/simulated/restaurant) -"VN" = ( -/obj/effect/floor_decal/corner_steel_grid/diagonal, -/turf/simulated/floor/tiled/steel, -/area/shuttle/large_escape_pod2/centcom{ - base_turf = /turf/simulated/floor/tiled/steel_dirty/virgo3b - }) -"VO" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 9 - }, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/evac) -"VP" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/evac) -"VQ" = ( -/turf/simulated/floor/wood, -/area/centcom/simulated/restaurant) -"VS" = ( -/obj/effect/floor_decal/corner_steel_grid/diagonal, -/obj/effect/floor_decal/industrial/warning/dust/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/evac) -"VU" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/evac) -"VV" = ( -/obj/effect/floor_decal/rust, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/evac) "VW" = ( /turf/space, -/turf/space/internal_edge/topleft, +/turf/space, /area/space) -"VX" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/evac) -"VY" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/centcom/simulated/terminal) -"VZ" = ( -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "tram" - }, -/turf/simulated/floor/tiled, -/area/shuttle/escape{ - base_turf = /turf/simulated/floor/tiled/techfloor/grid - }) -"Wc" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/multi_tile/glass, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/restaurant) -"Wd" = ( -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/restaurant) "Wf" = ( /obj/item/toy/chess/queen_white, /turf/simulated/floor/holofloor/wmarble, /area/holodeck/source_chess) -"Wh" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 9 - }, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/evac) -"Wi" = ( -/obj/machinery/door/airlock{ - name = "Unisex Restrooms" - }, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/bathroom) -"Wj" = ( -/obj/effect/blocker, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/living) -"Wk" = ( -/obj/effect/wingrille_spawn/reinforced/crescent, -/turf/simulated/floor/plating, -/area/centcom/simulated/restaurant) -"Wp" = ( -/obj/machinery/cryopod/robot/door/dorms, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/living) -"Wq" = ( -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/machinery/computer/cryopod/dorms{ - name = "Company Property Retention System"; - pixel_y = 32 - }, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/living) -"Ws" = ( -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/living) -"Wz" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/reagent_containers/food/snacks/pastatomato, -/turf/simulated/floor/wood, -/area/centcom/simulated/restaurant) -"WA" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/turf/unsimulated/floor/steel, -/area/centcom/simulated/terminal) -"WB" = ( -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 8 - }, -/turf/unsimulated/floor/steel, -/area/centcom/simulated/main_hall) -"WC" = ( -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/centcom/simulated/terminal) "WD" = ( /obj/effect/overlay/palmtree_r, /obj/effect/overlay/coconut, /turf/unsimulated/beach/sand, /area/beach) -"WE" = ( -/obj/structure/flora/pottedplant{ - icon_state = "plant-22" - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/main_hall) -"WH" = ( -/obj/structure/bed/chair/wood/wings{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/centcom/simulated/restaurant) -"WJ" = ( -/obj/effect/floor_decal/industrial/loading, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/main_hall) -"WK" = ( -/obj/effect/floor_decal/industrial/loading{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/main_hall) -"WL" = ( -/obj/structure/bed/chair/wood/wings, -/turf/simulated/floor/wood, -/area/centcom/simulated/restaurant) -"WN" = ( -/obj/effect/wingrille_spawn/reinforced/crescent, -/turf/simulated/floor/plating, -/area/centcom/simulated/medical) -"WO" = ( -/obj/effect/wingrille_spawn/reinforced/crescent, -/obj/structure/sign/department/medbay, -/turf/unsimulated/floor{ - icon_state = "plating"; - name = "plating" - }, -/area/centcom/simulated/medical) -"WP" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/multi_tile/glass, -/turf/unsimulated/floor/steel{ - icon_state = "white" - }, -/area/centcom/simulated/medical) -"WQ" = ( -/obj/machinery/door/firedoor, -/turf/unsimulated/floor/steel{ - icon_state = "white" - }, -/area/centcom/simulated/medical) -"WR" = ( -/obj/structure/sign/greencross, -/turf/unsimulated/wall, -/area/centcom/simulated/medical) -"WS" = ( -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"WW" = ( -/obj/item/weapon/stool/padded, -/turf/simulated/floor/wood, -/area/centcom/simulated/bar) -"Xa" = ( -/obj/structure/bed/chair/wood/wings{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/centcom/simulated/restaurant) -"Xb" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/reagent_containers/food/snacks/roastbeef, -/turf/simulated/floor/wood, -/area/centcom/simulated/restaurant) -"Xc" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/reagent_containers/food/snacks/meatsteak, -/turf/simulated/floor/wood, -/area/centcom/simulated/restaurant) -"Xe" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/reagent_containers/food/drinks/bottle/grenadine, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/centcom/simulated/bar) -"Xf" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/reagent_containers/food/drinks/bottle/cola, -/turf/simulated/floor/wood, -/area/centcom/simulated/bar) -"Xg" = ( -/obj/structure/table/woodentable, -/obj/machinery/cash_register/civilian, -/turf/simulated/floor/wood, -/area/centcom/simulated/bar) -"Xh" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/reagent_containers/food/drinks/bottle/space_mountain_wind, -/turf/simulated/floor/wood, -/area/centcom/simulated/bar) -"Xj" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/window/brigdoor/northright{ - req_access = list(63); - req_one_access = list(1) - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "FrontlockC2"; - name = "Security Door"; - opacity = 0 - }, -/obj/machinery/computer/skills, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/centcom/simulated/security{ - name = "\improper CentCom Security Arrivals" - }) -"Xk" = ( -/obj/structure/closet/crate/bin, -/turf/simulated/floor/wood, -/area/centcom/simulated/restaurant) "Xl" = ( /turf/unsimulated/map/edge, /area/overmap) -"Xm" = ( -/obj/structure/bed/chair, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) "Xp" = ( -/obj/structure/toilet{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/bathroom) -"Xv" = ( -/obj/machinery/vending/cigarette{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/centcom/simulated/restaurant) -"Xw" = ( -/obj/effect/floor_decal/industrial/outline, +/obj/machinery/light, /turf/simulated/floor/tiled/steel, -/area/centcom/simulated/security{ - name = "\improper CentCom Security Arrivals" - }) -"Xx" = ( -/obj/machinery/porta_turret/crescent{ - density = 1 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/security{ - name = "\improper CentCom Security Arrivals" - }) -"Xz" = ( -/obj/structure/bed/chair/office/dark{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/centcom/simulated/security{ - name = "\improper CentCom Security Arrivals" - }) -"XA" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/centcom/simulated/security{ - name = "\improper CentCom Security Arrivals" - }) -"XB" = ( -/obj/structure/bed/chair/wood/wings{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/centcom/simulated/restaurant) -"XD" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/brigdoor/northleft{ - req_access = list(63); - req_one_access = list(1) - }, -/obj/item/weapon/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/item/weapon/pen, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "FrontlockC2"; - name = "Security Door"; - opacity = 0 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/centcom/simulated/security{ - name = "\improper CentCom Security Arrivals" - }) -"XH" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/centcom/simulated/terminal) -"XJ" = ( -/obj/structure/bed/chair, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"XK" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/reagent_containers/food/snacks/meatballspagetti, -/turf/simulated/floor/wood, -/area/centcom/simulated/restaurant) -"XM" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/reagent_containers/food/snacks/fries, -/turf/simulated/floor/wood, -/area/centcom/simulated/restaurant) -"XN" = ( -/obj/machinery/atmospherics/unary/freezer, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) +/area/centcom/simulated/main_hall) "XO" = ( /obj/structure/signpost, /turf/unsimulated/beach/sand, /area/beach) -"XP" = ( -/obj/structure/table/standard, -/obj/item/weapon/reagent_containers/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - name = "Surgery Cleaner"; - pixel_x = 2; - pixel_y = 2 - }, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"XQ" = ( -/obj/structure/table/standard, -/obj/item/weapon/storage/firstaid/surgery, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"XR" = ( -/obj/structure/table/standard, -/obj/item/device/healthanalyzer, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"XS" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/reagent_containers/food/snacks/cheeseburger{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/weapon/reagent_containers/food/snacks/cheeseburger, -/turf/simulated/floor/wood, -/area/centcom/simulated/restaurant) -"XU" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/evac) -"XV" = ( -/obj/machinery/computer/security{ - dir = 8 - }, -/obj/machinery/camera/network/crescent, -/turf/simulated/floor/tiled, -/area/centcom/simulated/security{ - name = "\improper CentCom Security Arrivals" - }) -"XX" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/centcom/simulated/restaurant) "XY" = ( /obj/structure/closet, /turf/unsimulated/beach/sand, /area/beach) -"XZ" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 12; - pixel_y = 8 - }, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"Ya" = ( -/obj/machinery/vending/snack{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/centcom/simulated/restaurant) -"Yc" = ( -/obj/structure/table/standard, -/obj/item/stack/nanopaste, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"Yg" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"Yh" = ( -/obj/effect/floor_decal/industrial/loading, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"Yj" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"Yk" = ( -/obj/machinery/computer/secure_data{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/centcom/simulated/security{ - name = "\improper CentCom Security Arrivals" - }) -"Yl" = ( -/obj/structure/table/reinforced, -/obj/item/device/camera, -/obj/item/weapon/storage/box/ids, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/centcom/simulated/security{ - name = "\improper CentCom Security Arrivals" - }) -"Ym" = ( -/obj/structure/table/glass, -/obj/item/weapon/backup_implanter{ - pixel_y = -8 - }, -/obj/item/weapon/backup_implanter{ - pixel_y = 8 - }, -/obj/item/weapon/backup_implanter, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"Yo" = ( -/obj/structure/closet/crate/freezer, -/obj/item/weapon/reagent_containers/blood/OMinus, -/obj/item/weapon/reagent_containers/blood/OMinus, -/obj/item/weapon/reagent_containers/blood/OMinus, -/obj/item/weapon/reagent_containers/blood/OMinus, -/obj/item/weapon/reagent_containers/blood/OMinus, -/obj/item/weapon/reagent_containers/blood/OMinus, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"Yr" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/book/manual/security_space_law, -/obj/item/weapon/book/manual/security_space_law, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/centcom/simulated/security{ - name = "\improper CentCom Security Arrivals" - }) -"Yt" = ( -/obj/effect/floor_decal/rust, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/evac) -"Yu" = ( -/turf/simulated/floor/tiled, -/area/centcom/simulated/security{ - name = "\improper CentCom Security Arrivals" - }) -"Yv" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/reagent_containers/food/snacks/kitsuneudon, -/turf/simulated/floor/wood, -/area/centcom/simulated/restaurant) -"Yw" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/reagent_containers/food/snacks/lasagna, -/turf/simulated/floor/wood, -/area/centcom/simulated/restaurant) -"Yx" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/centcom/simulated/terminal) -"Yy" = ( -/obj/machinery/door/airlock/security{ - name = "Security" - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/tiled, -/area/centcom/simulated/security{ - name = "\improper CentCom Security Arrivals" - }) -"YB" = ( -/obj/machinery/vending/medical, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"YC" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/reagent_containers/food/snacks/hotdog, -/obj/item/weapon/reagent_containers/food/snacks/hotdog{ - pixel_x = -5; - pixel_y = -3 - }, -/turf/simulated/floor/wood, -/area/centcom/simulated/restaurant) -"YD" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/reagent_containers/food/snacks/bigbiteburger, -/turf/simulated/floor/wood, -/area/centcom/simulated/restaurant) -"YE" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/main_hall) -"YF" = ( -/obj/structure/table/glass, -/obj/item/device/healthanalyzer/improved, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"YG" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/living) -"YI" = ( -/obj/structure/table/reinforced, -/obj/machinery/microwave{ - pixel_y = 5 - }, -/turf/simulated/floor/tiled, -/area/centcom/simulated/security{ - name = "\improper CentCom Security Arrivals" - }) -"YJ" = ( -/obj/machinery/recharger/wallcharger{ - pixel_x = 4; - pixel_y = 26 - }, -/turf/simulated/floor/tiled, -/area/centcom/simulated/security{ - name = "\improper CentCom Security Arrivals" - }) -"YK" = ( -/obj/structure/table/glass, -/obj/machinery/computer/med_data{ - icon_keyboard = "laptop_key"; - icon_screen = "medlaptop"; - icon_state = "laptop"; - light_color = "#00b000" - }, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"YL" = ( -/obj/structure/table/glass{ - desc = "It's a table, it has some scracthes..they say 'Mlem'." - }, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"YM" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"YN" = ( -/obj/machinery/oxygen_pump/anesthetic, -/turf/unsimulated/wall, -/area/centcom/simulated/medical) -"YO" = ( -/obj/machinery/optable, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"YP" = ( -/obj/structure/table/standard, -/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone, -/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = 7; - pixel_y = 1 - }, -/obj/item/weapon/tool/wrench, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"YQ" = ( -/obj/machinery/atmospherics/unary/cryo_cell, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"YR" = ( -/turf/unsimulated/floor/steel, -/area/centcom/simulated/main_hall) -"YT" = ( -/obj/structure/table/glass, -/obj/item/weapon/reagent_containers/glass/beaker/large, -/obj/item/weapon/reagent_containers/glass/beaker/large, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"YV" = ( -/obj/structure/table/glass, -/obj/item/weapon/reagent_containers/glass/bottle/biomass{ - pixel_x = -4; - pixel_y = 8 - }, -/obj/item/weapon/reagent_containers/glass/bottle/biomass{ - pixel_x = -3; - pixel_y = -2 - }, -/obj/item/weapon/reagent_containers/glass/bottle/biomass{ - pixel_x = 3; - pixel_y = 5 - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"YW" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) "YX" = ( /obj/effect/floor_decal/sign/small_e, /turf/simulated/floor/holofloor/wood, /area/holodeck/source_chess) -"YZ" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/railing{ - dir = 1 - }, -/obj/effect/floor_decal/techfloor/orange{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/centcom/simulated/terminal) -"Zb" = ( -/obj/machinery/computer/crew{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"Zc" = ( -/obj/structure/bed/chair/office/dark, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"Zd" = ( -/obj/machinery/computer/transhuman/designer{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"Ze" = ( -/obj/machinery/transhuman/synthprinter, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"Zf" = ( -/obj/machinery/camera/network/crescent, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"Zg" = ( -/obj/machinery/computer/transhuman/resleeving{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"Zh" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/reagent_containers/food/snacks/toastedsandwich{ - pixel_y = 10 - }, -/turf/simulated/floor/wood, -/area/centcom/simulated/bar) -"Zi" = ( -/obj/machinery/light, -/turf/simulated/floor/tiled/steel, -/area/centcom/simulated/main_hall) -"Zj" = ( -/obj/structure/table/glass, -/obj/item/weapon/paper_bin{ - pixel_x = -1; - pixel_y = 3 - }, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"Zk" = ( -/obj/effect/wingrille_spawn/reinforced/crescent, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "FrontlockC2"; - name = "Security Door"; - opacity = 0 - }, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/centcom/simulated/security{ - name = "\improper CentCom Security Arrivals" - }) -"Zl" = ( -/obj/effect/floor_decal/industrial/loading{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"Zn" = ( -/obj/structure/medical_stand, -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"Zp" = ( -/obj/machinery/computer/card{ - dir = 4 - }, -/obj/item/device/radio/intercom{ - dir = 1; - frequency = 1475; - name = "Station Intercom (Security)"; - pixel_y = 27 - }, -/turf/simulated/floor/tiled, -/area/centcom/simulated/security{ - name = "\improper CentCom Security Arrivals" - }) -"Zq" = ( -/obj/structure/table/glass, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"Zr" = ( -/obj/machinery/computer/operating{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"Zs" = ( -/obj/machinery/turretid/stun{ - check_access = 0; - check_anomalies = 0; - check_records = 0; - control_area = "\improper CentCom Security Arrivals"; - pixel_x = 32; - req_access = list(101); - req_one_access = list(101) - }, -/turf/simulated/floor/tiled, -/area/centcom/simulated/security{ - name = "\improper CentCom Security Arrivals" - }) -"Zt" = ( -/turf/simulated/floor/tiled/steel_grid, -/area/centcom/simulated/terminal) -"Zx" = ( -/obj/machinery/light, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"Zy" = ( -/obj/structure/table/standard, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"Zz" = ( -/obj/structure/closet/secure_closet/medical2, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) -"ZC" = ( -/obj/structure/bed/chair/wood/wings{ - dir = 8 - }, -/turf/simulated/floor/wood, -/area/centcom/simulated/restaurant) -"ZE" = ( -/turf/simulated/wall/fancy_shuttle{ - fancy_shuttle_tag = "tram" - }, -/area/shuttle/escape{ - base_turf = /turf/simulated/floor/tiled/techfloor/grid - }) -"ZF" = ( -/obj/machinery/vending/cola{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/centcom/simulated/restaurant) "ZQ" = ( /obj/effect/floor_decal/sign/small_c, /turf/simulated/floor/holofloor/wood, /area/holodeck/source_chess) -"ZZ" = ( -/obj/structure/table/standard, -/obj/machinery/light, -/turf/simulated/floor/tiled/white, -/area/centcom/simulated/medical) (1,1,1) = {" ap @@ -16257,60 +13938,60 @@ dG eT dG fZ -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap ap ap ap @@ -16399,60 +14080,60 @@ dG dG dG fZ -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap ap ap ap @@ -16541,60 +14222,60 @@ dG eJ dG fZ -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap ap ap ap @@ -16683,60 +14364,60 @@ dG dG fG fZ -ae -Vu -Vu -Vu -Vu -Vu -Vu -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -qQ -dZ -dZ -dZ -dZ -dZ -dZ -dZ -dZ -Py -dZ -dZ -dZ -dZ -dZ -dZ -dZ -dZ -dZ -dZ -dZ -Py -dZ -dZ -dZ -dZ -dZ -dZ -CC -ae -ae -ae -ae -ae -ae -ae -ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap ap ap ap @@ -16825,60 +14506,60 @@ fG dG dG fZ -ae -Vu -Ru -wn -Cy -eS -Vu -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -sT -sw -sw -sw -tu -sw -sw -sw -sw -tu -sw -sw -sw -sw -tu -sw -sw -sw -sw -tu -sw -sw -sw -sw -tu -sw -sw -sw -sT -ae -ae -ae -ae -ae -ae -ae -ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap ap ap ap @@ -16967,60 +14648,60 @@ dG eT dG fZ -ae -Vu -Vu -Vu -Cy -gU -Vu -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -sT -ET -ET -ZE -ZE -RN -RN -ZE -ND -As -As -ZE -ZE -RN -RN -RN -ZE -ZE -As -As -ZE -ZE -RN -RN -ZE -qY -ET -ET -sT -ae -ae -ae -ae -ae -ae -ae -ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap ap ap ap @@ -17109,60 +14790,60 @@ dG dG dG fZ -ae -Vu -Vu -Vu -Cy -eS -Vu -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -sT -ET -ET -ZE -sN -uj -GX -NC -ZE -TO -VZ -ZE -PF -lo -lo -RM -kK -ZE -TO -kK -ZE -yb -GX -St -Lx -ZE -ET -ET -sT -ae -ae -ae -ae -ae -ae -ae -ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap ap ap ap @@ -17251,60 +14932,60 @@ dG eJ dG fZ -ae -Vu -kn -Ru -Cy -eS -Vu -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -sT -sx -sx -ZE -VZ -VZ -VZ -VZ -Lu -VZ -VZ -RA -VZ -VZ -VZ -VZ -VZ -RA -VZ -VZ -ri -VZ -VZ -VZ -VZ -ZE -sx -sx -sT -ae -ae -ae -ae -ae -ae -ae -ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap ap ap ap @@ -17393,60 +15074,60 @@ dG dG fG fZ -ae -Vu -Vu -Vu -Vu -Vu -Vu -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -sT -ET -ET -ZE -VZ -VZ -VZ -VZ -VZ -VZ -VZ -Lm -tV -Pn -VZ -Lm -qa -Pn -VZ -VZ -VZ -VZ -VZ -VZ -VZ -ZE -ET -ET -sT -ae -ae -ae -ae -ae -ae -ae -ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap ap ap ap @@ -17535,60 +15216,60 @@ aL aL aL ar -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -sT -ET -ET -RN -tz -tz -VZ -tz -tz -VZ -VZ -MP -qa -PU -VZ -MP -tV -PU -VZ -VZ -tz -tz -VZ -tz -tz -ZE -ET -ET -sT -ae -ae -ae -ae -ae -ae -ae -ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap ap ap ap @@ -17677,60 +15358,60 @@ eL eL eL fZ -ae ap ap ap ap ap ap -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -sT -ET -ET -RN -uE -Mb -VZ -uE -Mb -VZ -VZ -VZ -VZ -VZ -VZ -VZ -VZ -VZ -VZ -VZ -Mb -Mb -VZ -Mb -uE -ZE -ET -ET -sT -ae -ae -ae -ae -ae -ae -ae -ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap ap ap ap @@ -17819,60 +15500,60 @@ eK eK eK fZ -ae ap ap ap ap ap ap -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -sT -ET -ET -RN -xZ -xZ -VZ -xZ -xZ -VZ -VZ -Lm -qa -Pn -VZ -Lm -qa -Pn -VZ -VZ -xZ -xZ -VZ -xZ -xZ -ZE -ET -ET -sT -ae -ae -ae -ae -ae -ae -ae -ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap ap ap ap @@ -17961,60 +15642,60 @@ fn fO eK fZ -ae ap ap ap ap ap ap -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -sT -ET -ET -ZE -VZ -VZ -VZ -VZ -VZ -VZ -VZ -MP -tV -PU -VZ -MP -qa -PU -VZ -VZ -VZ -VZ -VZ -VZ -VZ -ZE -ET -ET -sT -ae -ae -ae -ae -ae -ae -ae -ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap ap ap ap @@ -18103,60 +15784,60 @@ fo fP eK fZ -ae ap ap ap ap ap ap -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -sT -sx -sx -ZE -VZ -VZ -VZ -VZ -Pk -VZ -VZ -Jw -VZ -VZ -VZ -VZ -VZ -Jw -VZ -VZ -zN -VZ -VZ -VZ -VZ -ZE -sx -sx -sT -ae -ae -ae -ae -ae -ae -ae -ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap ap ap ap @@ -18245,60 +15926,60 @@ fo fP eK fZ -ae ap ap ap ap ap ap -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -sT -ET -ET -ZE -sN -Pr -JC -xm -ZE -TO -VZ -ZE -TO -Pr -JC -rD -OT -ZE -TO -kK -ZE -rW -JC -IV -Lx -ZE -ET -ET -sT -ae -ae -ae -ae -ae -ae -ae -ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap ap ap ap @@ -18387,60 +16068,60 @@ fo fP eK fZ -ae ap ap ap ap ap ap -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -sT -ET -ET -ZE -ZE -RN -RN -ZE -ZE -qb -qb -ZE -ZE -RN -RN -RN -ZE -ZE -qb -qb -ZE -ZE -RN -RN -ZE -ZE -ET -ET -sT -ae -ae -ae -ae -ae -ae -ae -ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap ap ap ap @@ -18529,60 +16210,60 @@ fo fP eK fZ -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -sT -Rc -Rc -Rc -zv -pX -pX -LD -NA -NA -NA -rJ -EO -EO -EO -EO -EO -gT -NA -NA -NA -YZ -pX -pX -zv -Rc -Rc -Rc -sT -ae -ae -ae -ae -ae -ae -ae -ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap ap ap ap @@ -18671,60 +16352,60 @@ fo fP eK fZ -Vu -Vu -Vu -Vu -Vu -Vu -Vu -Vu -Vu -Vu -Vu -Vu -Vu -ae -ae -ae -ae -Vl -Vg -Vg -Vg -Vl -Vh -Zt -Zt -Zt -Nq -Nq -Nq -Nq -Nq -Nq -Nq -Nq -Nq -Nq -Nq -Zt -Zt -Zt -aj -CC -dZ -dZ -dZ -CC -ae -ae -ae -ae -ae -ae -ae -ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap ap ap ap @@ -18813,60 +16494,60 @@ fH fQ eK fZ -Vu -Ru -Ru -xM -Ru -Ru -Ru -Ru -xM -Ru -Ru -Ru -Vu -ae -ae -ae -ae -ae -Vg -Nr -Th -JR -Nq -Nq -Nq -Nq -Nq -Nq -Yx -VL -VY -WA -VY -WC -Yx -Nq -Nq -Nq -Nq -Nq -Nq -dZ -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap ap ap ap @@ -18955,60 +16636,60 @@ eK eK eK fZ -Vu -Ru -Ru -Ru -Ru -Ru -Ru -Ru -Ru -Ru -Ru -Ru -Vu -ae -ae -ae -ae -ae -Vg -SW -Ti -Rq -Nq -Nq -Nq -Nq -Nq -Nq -wd -dZ -Vv -Vv -Vv -dZ -dZ -Nq -Nq -Nq -Nq -Nq -Eu -dZ -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap ap ap ap @@ -19097,60 +16778,60 @@ aL aL aL ar -Vu -YE -Ru -Vu -Vu -Vu -Vu -Vu -Vu -Vu -Ru -Zi -Vu -ae -ae -ae -ae -ae -Vg -Tf -Tj -Rv -QY -Pf -XH -SH -SH -QY -TI -Rr -SV -WB -SV -WE -TI -QY -SH -GU -XH -Pf -QY -dZ -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap ap ap ap @@ -19239,60 +16920,60 @@ fz fz fS fZ -Vu -Ru -Ru -Vu +ap +ap +ap +ap VW -wj -wj -wj -BK -Vu -Ru -Ru -Vu -ae -ae -ae -wy -wy -Vg -Vg -Vg -Vg -TI -TI -TI -TI -TI -TI -dZ -YE -Ru -Ru -Ru -Zi -dZ -dZ -dZ -dZ -dZ -dZ -dZ -dZ -VI -VI -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae +ap +ap +ap +VW +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap ap ap ap @@ -19381,60 +17062,60 @@ ei ei fJ fZ -Vu -Ru -Ru -Vu -sl -cj -Dk -Dk -Dk -yK -Ru -Ru -Vu -ae -ae -ae -wy -yA -Ga -xe -wl -TZ -Vi -Vi -Vi -VJ -Vi -VS -Vu -Ru -Ru -Ru -Ru -Ru -Xx -Zk -Zp -Yk -Yr -VI -YI -kU -sQ -VI -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap ap ap ap @@ -19523,54 +17204,54 @@ fJ fz fS fZ -Vu -Ru -Ru -Vu -sl -Lg -tC -tC -tC -ym -Ru -Ru -Vu -ae -ae -ae -wy -rE -Ga -Iq -wl -Up -Vj -Vj -Vj -Vj -Vj -VU -Vu -Ru -Ru -Ru -Ru -WJ -Xw -XD -Xz -Yu -Yu -VI -YJ -Yu -iq -VI -ae -ae -ae -ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap ap ap ap @@ -19665,54 +17346,54 @@ fJ ei fT fZ -Vu -Ru -Ru -Vu -DF -JZ -JZ -JZ -qz -Vu -Ru -Ru -Vu -ae -ae -ae -wy -HQ -Ga -eE -wl -Up -Vj -Vj -Vj -Vj -Vj -VU -Vu -xu -Ru -Ru -Ru -WK -Xw -Xj -XA -Yu -Yu -VI -OS -Yu -iq -VI -ae -ae -ae -ae +ap +ap +ap +ap +VW +ap +ap +ap +VW +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap ap ap ap @@ -19807,54 +17488,54 @@ fJ fA fU fZ -Vu -YE -Ru -Vu -Vu -Vu -Vu -Vu -Vu -Vu -Ru -Zi -Vu -ae -ae -ae -wy -pb -Ga -ME -wl -Uu -Vj -Vj -Vm -Vj -Vj -XU -Vu -Ru -Ru -Ru -Ru -Ru -Xx -Zk -XV -Yl -Zs -Yy -za -zF -Yu -VI -ae -ae -ae -ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap ap ap ap @@ -19949,54 +17630,54 @@ ei ei fJ fZ -Vu -Ru -Ru -Ru -Ru -Ru -Ru -Ru -Ru -Ru -Ru -Ru -Vu -ae -ae -ae -wy -kr -Ga -Cw -wl -Up -Vj -Vj -Vm -Vj -Vj -VU -Vu -Ru -Ru -Ru -Ru -Ru -VI -VI -VI -VI -VI -VI -VI -VI -Yy -VI -Om -ae -ae -ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap ap ap ap @@ -20091,54 +17772,54 @@ fA fA fU fZ -Vu -Ru -Ru -MK -Ru -Ru -Ru -Ru -MK -Ru -Ru -Ru -Vu -ae -ae -ae -wy -nn -Ga -eR -wl -Ur -Vm -Vj -Vj -Vj -Vj -VU -Vu -YE -Ru -Ru -Ru -Zi -VM -VQ -XB -Xa -VQ -zd -WW -Xe -FC -JA -Om -ae -ae -ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap ap ap ap @@ -20233,54 +17914,54 @@ bh aG aG fZ -Vu -Vu -Vu -Vu -Vu -Vu -Vu -Vu -Vu -Vu -Vu -Vu -Vu -ae -ae -ae -wy -wy -Ct -wy -wl -Up -Vj -Vj -Vj -Vj -Vj -VU -TJ -Ru -Ru -Ru -Ru -Ru -Wk -WL -Wz -Yv -WH -VQ -WW -Xf -FC -UO -Om -ae -ae -ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap ap ap ap @@ -20375,54 +18056,54 @@ dJ dK dK fZ -aq -aq -aq -aq -aq -aq -aq -aq -aq -aq -aq -aq -aq -ae -ae -ae -ae -wy -wy -wy -wl -Up -Vj -Vj -Vj -Vj -Vj -VU -Vw -Ru -Ru -Ru -Ru -Ru -Wc -WL -XK -Yw -WH -VQ -WW -Xg -FC -xY -Om -ae -ae -ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap ap ap ap @@ -20517,54 +18198,54 @@ dJ dJ dJ fZ -aq -uc -uc -uc -uc -uc -uc -uc -uc -uc -uc -uc -aq -ae -ae -ae -ae -ae -ae -ae -wl -Up -Vj -Vj -Vj -Vj -Vj -VU -Vu -Ru -Ru -Ru -Ru -Ru -Wd -VQ -ZC -ZC -VQ -VQ -WW -Xh -FC -Sf -Om -ae -ae -ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap ap ap ap @@ -20659,54 +18340,54 @@ aL aL aL ar -aq -uc -ue -ue -uf -ue -ue -ue -uf -ue -ue -uc -aq -ae -ae -ae -ae -ae -ae -ae -wl -Up -Vj -Vm -Vj -VN -Vj -VU -Vu -YE -Ru -Ru -Ru -Ru -Wk -VQ -VQ -VQ -VQ -VQ -WW -Zh -FC -NJ -Om -ae -ae -ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap ap ap ap @@ -20801,54 +18482,54 @@ fK fR fR fZ -aq -uc -uf -uf -uf -uf -ug -uf -uf -uf -uf -uc -aq -ae -ae -ae -ae -ae -ae -ae -wl -Uu -Vj -Vj -Vj -Vj -Vj -Yt -Vu -Ru -Ru -Ru -Ru -Ru -Wk -VQ -Xa -Xa -VQ -VQ -WW -qu -FC -FC -Om -ae -ae -ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap ap ap ap @@ -20943,54 +18624,54 @@ fK fR fR fZ -aq -uc -ue -ue -uf -ue -ue -ue -uf -ue -ue -uc -aq -ae -ae -ae -ae -ae -ae -ae -wl -Up -Vj -Vj -Vj -Vm -Vj -VU -Vu -Ru -Ru -Ru -Ru -Ru -Wk -WL -XM -YC -WH -VQ -VQ -VQ -VQ -HW -VM -ae -ae -ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap ap ap ap @@ -21085,54 +18766,54 @@ fK fR fR fZ -aq -ud -uf -uf -uf -uf -uf -uf -uf -uf -uf -ud -aq -ae -ae -ae -ae -ae -ae -ae -wl -Us -Vn -Vj -Vj -Vm -VO -VP -Vu -Ru -Ru -Ru -Ru -Ru -Wk -WL -XS -YD -WH -VQ -VQ -VQ -VQ -Pq -VM -ae -ae -ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap ap ap ap @@ -21227,54 +18908,54 @@ fK fR fR fZ -aq -bc -bc -bc -bQ -cs -bc -cs -dh -bc -bc -bc -aq -aq -ae -ae -ae -ae -ae -ae -wl -Ut -Us -Vs -VB -Vs -VP -Ut -Vu -YE -Ru -Ru -Ru -Ru -Wc -VQ -ZC -ZC -VQ -Xa -Xa -VQ -VQ -Qo -VM -ae -ae -ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap ap ap ap @@ -21369,54 +19050,54 @@ fK fR fR fZ -aq -bc -bn -by -bR -bn -cO -bn -di -by -bc -bc -af -aq -ae -ae -ae -ae -ae -ae -wl -wl -Vo -Vo -Vo -Vo -Vo -wl -Vu -Ru -Ru -Ru -Ru -Ru -Wd -VQ -VQ -VQ -WL -Hv -Xb -WH -VQ -Ya -VM -ae -ae -ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +VW +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap ap ap ap @@ -21511,54 +19192,54 @@ fK fR fR fZ -aq -bc -bn -bn -bR -bn -bn -bn -di -bn -bn -dE -ai -aq -ae -ae -ae -ae -ae -ae -wl -TZ -Vi -Vi -Vi -Vi -Vi -VX -Vu -xu -Ru -Ru -Ru -Ru -Wk -VQ -VQ -VQ -WL -ws -Xc -WH -VQ -ZF -VM -ae -ae -ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +VW +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap ap ap ap @@ -21653,54 +19334,54 @@ fK fR fR fZ -aq -bc -bn -bn -bR -bn -bn -bn -di -bn -bn -dE -bO -aq -ae -ae -ae -ae -ae -ae -wl -Va -Vp -Ut -Ut -Ut -Ut -VU -Vu -Ru -Ru -Ru -Ru -Ru -VM -Xk -XX -VQ -VQ -Ex -ZC -XX -VQ -Xv -VM -ae -ae -ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +VW +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap ap ap ap @@ -21795,56 +19476,56 @@ fK fR fR fZ -aq -bc -bn -bn -bn -bn -bn -bn -bn -bn -bn -dE -ai -aq -ae -ae -ae -ae -ae -ae -wl -Up -Vq -Ut -Vr -Vr -Ut -VU -Vu -YE -Ru -Ru -Ru -Zi -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -VM -ae -ae -ae -ae -ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +VW +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap ap ap ap @@ -21937,56 +19618,56 @@ fK fR fR fZ -aq -bc -bn -bz -bn -bn -bn -bn -bn -bz -bc -bc -bP -aq -ae -ae -ae -ae -ae -ae -wl -Uu -Ut -Vt -Ut -Ut -Ut -XU -Vu -Ru -Ru -Ru -Ru -Ru -Vd -WS -WS -Ym -Zb -YB -Vd -YP -xT -xB -Vd -ae -ae -ae -ae -ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +VW +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap ap ap ap @@ -22079,56 +19760,56 @@ fK fR fR fZ -aq -bc -bc -bc -bc -bc -bc -bc -bc -bc -bc -bc ap -aq -ae -ae -ae -ae -ae -ae -wl -Up -Ut -Ut -Ut -Ut -VD -VU -Vu -Ru -Ru -Ru -Ru -Ru -WN -XJ -WS -YF -Zc -WS -Vd -YQ -DR -xB -Vd -ae -ae -ae -ae -ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap ap ap ap @@ -22221,56 +19902,56 @@ aL aL aL ar -aq -aq -aq -aq -aq -aq -aq -aq -aq -aq -aq -aq -aq -aq -ae -ae -ae -ae -ae -ae -wl -Up -Ut -Vr -Ut -Ut -Ut -Wh -Vu -Ru -Ru -Ru -Ru -Ru -WO -WS -WS -YK -Zf -WS -Vd -XN -yV -Zq -Vd -ae -ae -ae -ae -ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap ap ap ap @@ -22377,42 +20058,42 @@ aI ar ap ap -ae -ae -ae -ae -ae -ae -wl -Up -Ut -Ut -Ut -Ut -Ut -VU -TJ -Ru -Ru -Ru -Ru -Ru -WP -WS -WS -YL -Zc -WS -Vd -YQ -LR -mN -Vd -ae -ae -ae -ae -ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap ap ap ap @@ -22519,42 +20200,42 @@ hx fZ ap ap -ae -ae -ae -ae -ae -ae -wl -Up -Vr -Ut -Ut -Ut -Ut -VU -Vw -Ru -Ru -Ru -Ru -Ru -WQ -WS -WS -Zq -Zj -Zx -Vd -YT -Zc -zp -Vd -ae -ae -ae -ae -ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap ap ap ap @@ -22661,42 +20342,42 @@ hO fZ ap ap -ae -ae -ae -ae -ae -ae -wl -Up -Ut -Ut -VD -Ut -Vr -VV -Vu -YE -Ru -Ru -Ru -Zi -WR -WS -WS -WS -WS -WS -Vd -Zq -WS -xE -Vd -ae -ae -ae -ae -ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap ap ap ap @@ -22803,42 +20484,42 @@ hP fZ ap ap -ae -ae -ae -ae -ae -ae -wl -Up -Ut -Ut -Ut -Ut -Ut -VU -Vu -Ru -Ru -Ru -Ru -Ru -WN -XJ -WS -WS -WS -WS -Vd -Vd -AK -Vd -Vd -Vd -Vd -Vd -ae -ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap ap ap ap @@ -22945,42 +20626,42 @@ hP fZ ap ap -ae -ae -ae -ae -ae -ae -wl -Uu -Ut -Vr -Ut -Ut -Ut -XU -Vu -Ru -Ru -Ru -Ru -Ru -WN -XJ -WS -WS -WS -WS -Vd -YB -WS -WS -WS -WS -Bc -Vd -ae -ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap ap ap ap @@ -23087,42 +20768,42 @@ hQ fZ ap ap -ae -ae -ae -ae -ae -ae -wl -Up -Ut -Ut -Ut -Ut -VD -VU -Vu -xu -Ru -Ru -Ru -Ru -WN -XJ -WS -WS -WS -WS -fN -WS -WS -WS -wT -WS -WS -Vd -ae -ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap ap ap ap @@ -23229,42 +20910,42 @@ hx fZ ap ap -ae -ae -ae -ae -ae -ae -wl -Us -Vn -Ut -VE -Ut -VO -VP -Vu -Ru -Ru -Ru -Ru -Ru -Vd -WS -WS -YM -WS -WS -WS -WS -WS -WS -KO -WS -Zx -Vd -ae -ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap ap ap ap @@ -23371,42 +21052,42 @@ aL ar ap ap -ae -ae -ae -ae -ae -ae -wl -Ut -Us -Vs -VF -Vs -VP -Ut -Vu -Ru -Ru -Ru -Ru -Ru -Vd -Vd -Vd -Vd -Vd -Vd -Vd -IX -WS -WS -WS -WS -WS -Vd -ae -ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap ap ap ap @@ -23513,42 +21194,42 @@ hD fZ ap ap -ae -ae -ae -ae -ae -ae -wl -wl -Vo -Vo -Vo -Vo -Vo -wl -Vu -YE -Ru -Ru -Ru -Zi -Vd -XP -Yc -YN -Zy -Zy -Vd -Ry -WS -WS -WS -WS -WS -Vd -ae -ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap ap ap ap @@ -23655,42 +21336,42 @@ hC fZ ap ap -ae -ae -ae -ae -ae -ae -Vk -Vk -Vk -Vk -Vk -Vk -Vk -Vk -Uv -Ru -Ru -Ru -Ru -Ru -Vd -XQ -Yh -YO -Zl -Zy -Vd -sB -WS -WS -Nw -WS -WS -Vd -ae -ae +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap ap ap ap @@ -23795,44 +21476,44 @@ hD hD hD fZ +Vz +Vz +Vz +Vz +Vz +Vz +Vz +Vz +Vz +Vz +Vz +Vz +Vz +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap ap ap -ae -ae -ae -ae -ae -ae -Vk -Vc -Vz -Vc -Vc -Vz -Vc -Wi -YR -Ru -Ru -Ru -Ru -tr -Vd -XR -Yj -Zr -Yg -ZZ -wV -WS -WS -WS -MB -WS -WS -Vd -ae -ae ap ap ap @@ -23937,44 +21618,44 @@ hD hD hD fZ +Vz +Vy +Vy +aq +Vy +Vy +Vy +Vy +aq +Vy +Vy +Vy +Vz +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap ap ap -ae -ae -ae -ae -ae -ae -Vk -Vc -Vc -Vc -Vc -Vc -Vc -Vk -UE -Ru -Ru -Ru -Ru -Ru -Vd -Xm -XZ -YW -YW -YW -AK -WS -WS -WS -WS -WS -Zx -Vd -ae -ae ap ap ap @@ -24079,44 +21760,44 @@ hE hE hE fZ +Vz +Vy +Vy +Vy +Vy +Vy +Vy +Vy +Vy +Vy +Vy +Vy +Vz +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap ap ap -ae -ae -ae -ae -ae -ae -Vk -Vf -Vk -Vy -Vk -Vy -Vg -Vg -Vg -Wq -Ws -Ws -Ws -Ws -Vg -Vg -Vg -WS -WS -WS -Vd -WS -WS -WS -WS -WS -WS -Vd -ae -ae ap ap ap @@ -24221,44 +21902,44 @@ hD hD hR fZ +Vz +aj +Vy +Vz +Vz +Vz +Vz +Vz +Vz +Vz +Vy +Xp +Vz +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap ap ap -ae -ae -ae -ae -ae -ae -Vk -Vb -Vk -Xp -Vk -Xp -Vg -Wj -Wp -Ti -YG -Ti -YG -Ti -Wp -Wj -Vg -Yo -Zn -Zz -Vd -YV -Zd -Ze -Zg -pz -wW -Vd -ae -ae ap ap ap @@ -24363,44 +22044,44 @@ aL aL aL ar +Vz +Vy +Vy +Vz +bn +bQ +bQ +bQ +di +Vz +Vy +Vy +Vz +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap ap ap -ae -ae -ae -ae -ae -ae -Vk -Vk -Vk -Vk -Vk -Vk -Vg -Vg -Vg -Wp -Vg -Wp -Vg -Wp -Vg -Vg -Vg -Vd -Vd -Vd -Vd -Vd -Vd -Vd -Vd -Vd -Vd -Vd -ae -ae ap ap ap @@ -24505,44 +22186,44 @@ hF hF hF fZ +Vz +Vy +Vy +Vz +by +bR +cO +cO +cO +dZ +Vy +Vy +Vz +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap ap ap -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -Vg -Wj -Vg -Wj -Vg -Wj -Vg -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae ap ap ap @@ -24647,44 +22328,44 @@ hF hF hF fZ +Vz +Vy +Vy +Vz +by +cj +dh +dh +dh +eE +Vy +Vy +Vz +Vz +Vz +Vz +Vz +Vz +Vz +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap ap ap -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -Vg -Vg -Vg -Vg -Vg -Vg -Vg -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae ap ap ap @@ -24789,44 +22470,44 @@ hF hF hF fZ +Vz +Vy +Vy +Vz +bz +cs +cs +cs +dE +Vz +Vy +Vy +Vz +Vz +Vy +eS +fN +gT +Vz +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap ap ap -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae ap ap ap @@ -24931,44 +22612,44 @@ hF hF hF fZ +Vz +aj +Vy +Vz +Vz +Vz +Vz +Vz +Vz +Vz +Vy +Xp +Vz +Vz +Vz +Vz +fN +gU +Vz +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap ap ap -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae ap ap ap @@ -25073,44 +22754,44 @@ hF hF hF fZ +Vz +Vy +Vy +Vy +Vy +Vy +Vy +Vy +Vy +Vy +Vy +Vy +Vz +Vz +Vz +Vz +fN +gT +Vz +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap ap ap -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae ap ap ap @@ -25215,44 +22896,44 @@ hF hF hF fZ +Vz +Vy +Vy +bc +Vy +Vy +Vy +Vy +bc +Vy +Vy +Vy +Vz +Vz +eR +Vy +fN +gT +Vz +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap ap ap -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae ap ap ap @@ -25357,44 +23038,44 @@ bb bb bb ar +Vz +Vz +Vz +Vz +Vz +Vz +Vz +Vz +Vz +Vz +Vz +Vz +Vz +Vz +Vz +Vz +Vz +Vz +Vz +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap ap ap -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae ap ap ap diff --git a/maps/tether/submaps/tether_plains.dmm b/maps/tether/submaps/tether_plains.dmm index a2f656e713..e91b429938 100644 --- a/maps/tether/submaps/tether_plains.dmm +++ b/maps/tether/submaps/tether_plains.dmm @@ -113,6 +113,10 @@ "at" = ( /turf/unsimulated/wall/planetary/virgo3b, /area/tether/outpost/exploration_shed) +"au" = ( +/obj/tether_away_spawner/tether_outside, +/turf/simulated/floor/outdoors/grass/sif/virgo3b, +/area/tether/outpost/exploration_plains) "bj" = ( /obj/effect/floor_decal/rust, /turf/simulated/floor/tiled/steel_dirty/virgo3b, @@ -126,14 +130,6 @@ "Al" = ( /turf/simulated/mineral/virgo3b, /area/mine/explored) -"BE" = ( -/mob/living/simple_mob/animal/space/goose/virgo3b, -/turf/simulated/floor/outdoors/grass/sif/virgo3b, -/area/tether/outpost/exploration_plains) -"Em" = ( -/mob/living/simple_mob/animal/passive/gaslamp, -/turf/simulated/floor/outdoors/grass/sif/virgo3b, -/area/tether/outpost/exploration_plains) "ID" = ( /turf/simulated/mineral/virgo3b, /area/tether/outpost/exploration_shed) @@ -1827,7 +1823,7 @@ ab ab ab ab -BE +au ab ab ab @@ -2672,7 +2668,7 @@ ab ab ab ab -Em +au ab ab ab @@ -2770,7 +2766,7 @@ ab ab ab ab -BE +au ab ab ab @@ -3009,7 +3005,7 @@ ab ab ab ab -BE +au ab ab ab @@ -3031,7 +3027,7 @@ ab ab ab ab -Em +au ab ab ab @@ -3269,7 +3265,7 @@ uw ab ab ab -BE +au ab ab ab @@ -3353,7 +3349,7 @@ ab ab ab ab -BE +au ab ab ab @@ -5256,7 +5252,7 @@ Al uw ab ab -Em +au ab ab ab @@ -7356,7 +7352,7 @@ ab ab ab ab -BE +au ab ab ab @@ -7389,7 +7385,7 @@ ab ab ab ab -BE +au ab ab ab @@ -8438,7 +8434,7 @@ ab ab ab ab -BE +au ab ab ab @@ -9245,7 +9241,7 @@ ab ab ab ab -BE +au ab ab ab @@ -9416,7 +9412,7 @@ ab ab ab ab -BE +au ab ab ab @@ -10802,7 +10798,7 @@ ab ab ab ab -Em +au ab ab ab @@ -11725,7 +11721,7 @@ ab ab ab ab -Em +au ab ab ab @@ -14132,7 +14128,7 @@ ab ab ab ab -BE +au ab ab ab @@ -14647,7 +14643,7 @@ ab ab ab ab -BE +au ab ab ab @@ -14875,7 +14871,7 @@ ab ab ab ab -BE +au ab ab ab @@ -15904,7 +15900,7 @@ ac as Al uw -BE +au ab ab ab @@ -15927,7 +15923,7 @@ ab ab ab ab -Em +au ab ab ab @@ -16251,7 +16247,7 @@ ab ab ab ab -BE +au ab ab ab @@ -17590,7 +17586,7 @@ ab ab ab ab -Em +au ab ab ab @@ -17609,7 +17605,7 @@ as uw uw ab -Em +au ab ab ab diff --git a/maps/tether/submaps/underdark_pois/underdark_things.dm b/maps/tether/submaps/underdark_pois/underdark_things.dm index b080985940..22dd2e4e5e 100644 --- a/maps/tether/submaps/underdark_pois/underdark_things.dm +++ b/maps/tether/submaps/underdark_pois/underdark_things.dm @@ -81,193 +81,6 @@ /mob/living/simple_mob/vore/aggressive/dragon = 1 ) -/obj/random/underdark - name = "random underdark loot" - desc = "Random loot for Underdark." - icon = 'icons/obj/items.dmi' - icon_state = "spickaxe" - -/obj/random/underdark/item_to_spawn() - return pick(prob(3);/obj/random/multiple/underdark/miningdrills, - prob(3);/obj/random/multiple/underdark/ores, - prob(2);/obj/random/multiple/underdark/treasure, - prob(1);/obj/random/multiple/underdark/mechtool) - -/obj/random/underdark/uncertain - icon_state = "upickaxe" - spawn_nothing_percentage = 65 //only 33% to spawn loot - -/obj/random/multiple/underdark/miningdrills - name = "random underdark mining tool loot" - desc = "Random mining tool loot for Underdark." - icon = 'icons/obj/items.dmi' - icon_state = "spickaxe" - -/obj/random/multiple/underdark/miningdrills/item_to_spawn() - return pick( - prob(10);list(/obj/item/weapon/pickaxe/silver), - prob(8);list(/obj/item/weapon/pickaxe/drill), - prob(6);list(/obj/item/weapon/pickaxe/jackhammer), - prob(5);list(/obj/item/weapon/pickaxe/gold), - prob(4);list(/obj/item/weapon/pickaxe/plasmacutter), - prob(2);list(/obj/item/weapon/pickaxe/diamond), - prob(1);list(/obj/item/weapon/pickaxe/diamonddrill) - ) - -/obj/random/multiple/underdark/ores - name = "random underdark mining ore loot" - desc = "Random mining utility loot for Underdark." - icon = 'icons/obj/mining.dmi' - icon_state = "satchel" - -/obj/random/multiple/underdark/ores/item_to_spawn() - return pick( - prob(9);list( - /obj/item/weapon/storage/bag/ore, - /obj/item/weapon/shovel, - /obj/item/weapon/ore/glass, - /obj/item/weapon/ore/glass, - /obj/item/weapon/ore/glass, - /obj/item/weapon/ore/glass, - /obj/item/weapon/ore/glass, - /obj/item/weapon/ore/glass, - /obj/item/weapon/ore/glass, - /obj/item/weapon/ore/glass, - /obj/item/weapon/ore/glass, - /obj/item/weapon/ore/glass, - /obj/item/weapon/ore/hydrogen, - /obj/item/weapon/ore/hydrogen, - /obj/item/weapon/ore/hydrogen, - /obj/item/weapon/ore/hydrogen, - /obj/item/weapon/ore/hydrogen, - /obj/item/weapon/ore/hydrogen - ), - prob(7);list( - /obj/item/weapon/storage/bag/ore, - /obj/item/weapon/pickaxe, - /obj/item/weapon/ore/osmium, - /obj/item/weapon/ore/osmium, - /obj/item/weapon/ore/osmium, - /obj/item/weapon/ore/osmium, - /obj/item/weapon/ore/osmium, - /obj/item/weapon/ore/osmium, - /obj/item/weapon/ore/osmium, - /obj/item/weapon/ore/osmium, - /obj/item/weapon/ore/osmium, - /obj/item/weapon/ore/osmium - ), - prob(4);list( - /obj/item/clothing/suit/radiation, - /obj/item/clothing/head/radiation, - /obj/item/weapon/ore/uranium, - /obj/item/weapon/ore/uranium, - /obj/item/weapon/ore/uranium, - /obj/item/weapon/ore/uranium, - /obj/item/weapon/ore/uranium, - /obj/item/weapon/ore/uranium, - /obj/item/weapon/ore/uranium, - /obj/item/weapon/ore/uranium, - /obj/item/weapon/ore/uranium, - /obj/item/weapon/ore/uranium, - /obj/item/weapon/ore/uranium, - /obj/item/weapon/ore/uranium, - /obj/item/weapon/ore/uranium, - /obj/item/weapon/ore/uranium, - /obj/item/weapon/ore/uranium, - /obj/item/weapon/ore/uranium, - /obj/item/weapon/ore/uranium, - /obj/item/weapon/ore/uranium, - /obj/item/weapon/ore/uranium, - /obj/item/weapon/ore/uranium), - prob(2);list( - /obj/item/device/flashlight/lantern, - /obj/item/clothing/glasses/material, - /obj/item/weapon/ore/diamond, - /obj/item/weapon/ore/diamond, - /obj/item/weapon/ore/diamond, - /obj/item/weapon/ore/diamond, - /obj/item/weapon/ore/diamond, - /obj/item/weapon/ore/diamond, - /obj/item/weapon/ore/diamond, - /obj/item/weapon/ore/diamond, - /obj/item/weapon/ore/diamond, - /obj/item/weapon/ore/diamond - ), - prob(1);list( - /obj/item/weapon/mining_scanner, - /obj/item/weapon/shovel/spade, - /obj/item/weapon/ore/verdantium, - /obj/item/weapon/ore/verdantium, - /obj/item/weapon/ore/verdantium, - /obj/item/weapon/ore/verdantium, - /obj/item/weapon/ore/verdantium - ) - ) - -/obj/random/multiple/underdark/treasure - name = "random underdark treasure" - desc = "Random treasure loot for Underdark." - icon = 'icons/obj/storage.dmi' - icon_state = "cashbag" - -/obj/random/multiple/underdark/treasure/item_to_spawn() - return pick( - prob(5);list( - /obj/random/coin, - /obj/random/coin, - /obj/random/coin, - /obj/random/coin, - /obj/random/coin, - /obj/item/clothing/head/pirate - ), - prob(4);list( - /obj/item/weapon/storage/bag/cash, - /obj/item/weapon/spacecash/c500, - /obj/item/weapon/spacecash/c100, - /obj/item/weapon/spacecash/c50 - ), - prob(3);list( - /obj/item/clothing/head/hardhat/orange, - /obj/item/stack/material/gold, - /obj/item/stack/material/gold, - /obj/item/stack/material/gold, - /obj/item/stack/material/gold, - /obj/item/stack/material/gold, - /obj/item/stack/material/gold, - /obj/item/stack/material/gold, - /obj/item/stack/material/gold, - /obj/item/stack/material/gold, - /obj/item/stack/material/gold), - prob(1);list( - /obj/item/stack/material/phoron, - /obj/item/stack/material/phoron, - /obj/item/stack/material/phoron, - /obj/item/stack/material/phoron, - /obj/item/stack/material/diamond, - /obj/item/stack/material/diamond, - /obj/item/stack/material/diamond - ) - ) - -/obj/random/multiple/underdark/mechtool - name = "random underdark mech equipment" - desc = "Random mech equipment loot for Underdark." - icon = 'icons/mecha/mecha_equipment.dmi' - icon_state = "mecha_clamp" - -/obj/random/multiple/underdark/mechtool/item_to_spawn() - return pick( - prob(12);list(/obj/item/mecha_parts/mecha_equipment/tool/drill), - prob(10);list(/obj/item/mecha_parts/mecha_equipment/tool/hydraulic_clamp), - prob(8);list(/obj/item/mecha_parts/mecha_equipment/generator), - prob(7);list(/obj/item/mecha_parts/mecha_equipment/weapon/ballistic/scattershot/rigged), - prob(6);list(/obj/item/mecha_parts/mecha_equipment/repair_droid), - prob(3);list(/obj/item/mecha_parts/mecha_equipment/gravcatapult), - prob(2);list(/obj/item/mecha_parts/mecha_equipment/weapon/energy/riggedlaser), - prob(2);list(/obj/item/mecha_parts/mecha_equipment/weapon/energy/flamer/rigged), - prob(1);list(/obj/item/mecha_parts/mecha_equipment/tool/drill/diamonddrill), - ) - //POI STUFF VIRGO3B_TURF_CREATE(/turf/simulated/mineral/ignore_oregen) VIRGO3B_TURF_CREATE(/turf/simulated/mineral/floor/ignore_oregen) diff --git a/maps/tether/tether-01-surface1.dmm b/maps/tether/tether-01-surface1.dmm index 9003acce0e..f658a6da07 100644 --- a/maps/tether/tether-01-surface1.dmm +++ b/maps/tether/tether-01-surface1.dmm @@ -2812,6 +2812,18 @@ dir = 10 }, /obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 5 + }, /turf/simulated/floor/tiled, /area/tether/surfacebase/lowernorthhall) "aeE" = ( @@ -3324,9 +3336,6 @@ /obj/effect/floor_decal/corner/paleblue/border{ dir = 5 }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, /obj/effect/floor_decal/borderfloor/corner2{ dir = 4 }, @@ -3545,6 +3554,11 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /turf/simulated/floor/tiled, /area/tether/surfacebase/lowernorthhall) "afN" = ( @@ -3557,6 +3571,11 @@ /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 8 }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /turf/simulated/floor/tiled, /area/tether/surfacebase/lowernorthhall) "afO" = ( @@ -5771,7 +5790,7 @@ /turf/simulated/floor/tiled, /area/rnd/hallway) "ajK" = ( -/mob/living/simple_mob/animal/passive/gaslamp, +/obj/tether_away_spawner/tether_outside, /turf/simulated/floor/outdoors/grass/sif/virgo3b, /area/tether/surfacebase/outside/outside1) "ajL" = ( @@ -6115,6 +6134,9 @@ /turf/simulated/floor/tiled/techfloor, /area/tether/surfacebase/public_garden_one) "aks" = ( +/obj/effect/landmark{ + name = "maint_pred" + }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/public_garden_maintenence) "akt" = ( @@ -8420,6 +8442,7 @@ icon_state = "4-8" }, /obj/structure/disposalpipe/segment, +/obj/effect/landmark/vines, /turf/simulated/floor/tiled, /area/tether/surfacebase/surface_one_hall) "anZ" = ( @@ -14065,6 +14088,10 @@ /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 6 }, +/obj/machinery/item_bank{ + dir = 4; + pixel_x = -28 + }, /turf/simulated/floor/tiled, /area/tether/surfacebase/surface_one_hall) "axj" = ( @@ -17217,21 +17244,9 @@ /turf/simulated/floor/tiled, /area/rnd/hallway) "aCg" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 4 - }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/paleblue/bordercorner2{ - dir = 6 - }, /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 9 }, @@ -20058,6 +20073,7 @@ d2 = 4; icon_state = "2-4" }, +/obj/effect/landmark/vermin, /turf/simulated/floor/wood, /area/vacant/vacant_bar) "aHe" = ( @@ -27708,6 +27724,7 @@ /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 9 }, +/obj/effect/landmark/vines, /turf/simulated/floor/tiled, /area/crew_quarters/visitor_lodging) "aVd" = ( @@ -31456,7 +31473,14 @@ /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_one) "biK" = ( -/obj/structure/barricade/cutout/mime, +/obj/structure/table/alien/blue{ + desc = "Is this imported?"; + name = "obscure table" + }, +/obj/item/toy/figure/mime, +/obj/item/weapon/pen/crayon/marker/mime, +/obj/item/weapon/pen/crayon/mime, +/obj/item/weapon/cartridge/mime, /turf/simulated/floor/carpet/bcarpet, /area/tether/surfacebase/funny/mimeoffice) "bmK" = ( @@ -31826,6 +31850,16 @@ /obj/effect/floor_decal/corner/red/border, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/lowerhall) +"ctE" = ( +/obj/structure/table/rack, +/obj/item/weapon/tank/emergency, +/obj/item/weapon/tank/emergency, +/obj/item/weapon/tank/emergency, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/turf/simulated/floor/tiled/steel_dirty, +/area/maintenance/lowmedbaymaint) "cwS" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -31838,6 +31872,10 @@ "cAR" = ( /turf/simulated/floor/looking_glass/center, /area/looking_glass/lg_1) +"cCx" = ( +/obj/effect/landmark/vermin, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_one) "cGJ" = ( /turf/simulated/floor/plating, /area/maintenance/lower/mining_eva) @@ -31900,6 +31938,16 @@ }, /turf/simulated/floor/tiled, /area/rnd/hallway) +"cKo" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/grey/border{ + dir = 1 + }, +/obj/effect/landmark/vermin, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) "cKr" = ( /obj/machinery/atmospherics/pipe/simple/visible/yellow, /obj/machinery/atmospherics/pipe/simple/hidden/aux, @@ -32103,6 +32151,20 @@ }, /turf/simulated/floor/plating, /area/tether/surfacebase/funny/hideyhole) +"dvU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) "dxY" = ( /obj/structure/table/rack, /obj/item/clothing/mask/gas, @@ -32210,6 +32272,12 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/lowerhall) +"dNE" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/maintenance/lowmedbaymaint) "dNP" = ( /obj/machinery/door/airlock/silver{ name = "Clown's Office"; @@ -32500,6 +32568,10 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/weaponsrange) +"eJc" = ( +/obj/item/weapon/storage/toolbox/brass, +/turf/simulated/floor/plating, +/area/maintenance/lowmedbaymaint) "eJQ" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/blast/regular{ @@ -32697,29 +32769,9 @@ /turf/simulated/floor/plating, /area/maintenance/lower/trash_pit) "fFb" = ( -/obj/machinery/fitness/punching_bag/clown, +/obj/machinery/vending/wardrobe/clowndrobe, /turf/simulated/floor/plating, /area/tether/surfacebase/funny/clownoffice) -"fFT" = ( -/obj/item/clothing/mask/gas/sexyclown, -/obj/item/toy/figure/clown, -/obj/item/clothing/under/sexyclown, -/obj/item/clothing/shoes/clown_shoes, -/obj/item/weapon/bedsheet/clown, -/obj/item/weapon/cartridge/clown, -/obj/item/weapon/stamp/clown, -/obj/item/weapon/storage/backpack/clown, -/obj/item/weapon/bananapeel, -/obj/item/weapon/reagent_containers/food/snacks/pie, -/obj/item/weapon/pen/crayon/marker/rainbow, -/obj/item/weapon/pen/crayon/rainbow, -/obj/structure/closet/secure_closet{ - desc = "Where the Clown keeps their hooliganisms."; - name = "funny locker"; - req_one_access = list(136) - }, -/turf/simulated/floor/carpet/gaycarpet, -/area/tether/surfacebase/funny/clownoffice) "fKm" = ( /obj/random/junk, /obj/random/maintenance/cargo, @@ -32731,6 +32783,16 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/lowerhall) +"fOk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/landmark/vermin, +/turf/simulated/floor/lino, +/area/crew_quarters/visitor_dining) "fOy" = ( /obj/machinery/shower{ pixel_y = 16 @@ -33228,7 +33290,7 @@ "gWO" = ( /obj/structure/table/rack, /obj/effect/floor_decal/rust, -/obj/item/toy/crossbow, +/obj/item/weapon/gun/projectile/revolver/toy/crossbow, /turf/simulated/floor/plating, /area/tether/surfacebase/funny/hideyhole) "gYx" = ( @@ -33956,7 +34018,7 @@ /turf/simulated/floor/tiled/freezer, /area/tether/surfacebase/security/brig/bathroom) "iWa" = ( -/obj/structure/bed/chair/bar_stool, +/obj/machinery/vending/wardrobe/mimedrobe, /turf/simulated/floor/carpet/bcarpet, /area/tether/surfacebase/funny/mimeoffice) "iWx" = ( @@ -34021,6 +34083,12 @@ }, /turf/simulated/floor/tiled, /area/rnd/hallway) +"jkI" = ( +/obj/structure/table/rack/shelf, +/obj/random/maintenance/cargo, +/obj/random/maintenance/cargo, +/turf/simulated/floor/tiled/steel_dirty, +/area/maintenance/lowmedbaymaint) "jnj" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, @@ -34063,10 +34131,10 @@ /obj/structure/table/standard{ name = "plastic table frame" }, -/obj/item/device/flashlight/lamp/green, /obj/structure/sign/painting/public{ pixel_y = 30 }, +/obj/item/device/flashlight/lamp/clown, /turf/simulated/floor/carpet/gaycarpet, /area/tether/surfacebase/funny/clownoffice) "jrh" = ( @@ -34957,6 +35025,7 @@ /obj/machinery/alarm{ pixel_y = 25 }, +/obj/item/toy/figure/clown, /turf/simulated/floor/carpet/gaycarpet, /area/tether/surfacebase/funny/clownoffice) "lDW" = ( @@ -34983,6 +35052,14 @@ "lEA" = ( /turf/simulated/wall, /area/maintenance/engineering/atmos/airlock/gas) +"lEB" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/maintenance/lowmedbaymaint) "lIj" = ( /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark, @@ -35399,6 +35476,12 @@ /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 10 }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 6 + }, /turf/simulated/floor/tiled, /area/tether/surfacebase/lowernorthhall) "mGP" = ( @@ -35824,6 +35907,10 @@ /obj/effect/floor_decal/steeldecal/steel_decals4, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/lowerhall) +"nBZ" = ( +/obj/effect/landmark/vines, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) "nDD" = ( /obj/structure/catwalk, /obj/machinery/atmospherics/pipe/simple/visible/scrubbers, @@ -36035,6 +36122,8 @@ /obj/structure/sign/painting/public{ pixel_y = 30 }, +/obj/item/weapon/reagent_containers/food/snacks/pie, +/obj/effect/floor_decal/rust, /turf/simulated/floor/plating, /area/tether/surfacebase/funny/clownoffice) "okO" = ( @@ -36282,6 +36371,13 @@ /obj/machinery/light/small{ dir = 8 }, +/obj/item/weapon/pen/crayon/marker/rainbow, +/obj/item/weapon/pen/crayon/rainbow, +/obj/item/weapon/stamp/clown, +/obj/item/weapon/cartridge/clown, +/obj/structure/table/standard{ + name = "plastic table frame" + }, /turf/simulated/floor/carpet/gaycarpet, /area/tether/surfacebase/funny/clownoffice) "oPH" = ( @@ -36396,6 +36492,10 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/brig) +"ppS" = ( +/obj/effect/landmark/vermin, +/turf/simulated/floor/tiled, +/area/storage/primary) "prr" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/cyan, /turf/simulated/floor/plating, @@ -36488,6 +36588,10 @@ }, /turf/simulated/floor/plating, /area/maintenance/lower/trash_pit) +"pMd" = ( +/obj/effect/landmark/vermin, +/turf/simulated/floor/grass, +/area/tether/surfacebase/surface_one_hall) "pPF" = ( /obj/machinery/atmospherics/pipe/simple/visible/universal, /obj/machinery/light/small{ @@ -36615,8 +36719,8 @@ /area/maintenance/lower/trash_pit) "qhs" = ( /obj/structure/table/rack, -/obj/item/toy/crossbow, /obj/item/weapon/coin/silver, +/obj/item/weapon/gun/projectile/revolver/toy/crossbow, /turf/simulated/floor/plating, /area/tether/surfacebase/funny/hideyhole) "qjE" = ( @@ -36680,6 +36784,24 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/lowerhall) +"qtC" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) "qtU" = ( /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ dir = 5 @@ -36729,6 +36851,16 @@ }, /turf/simulated/floor/plating, /area/tether/surfacebase/funny/clownoffice) +"qJe" = ( +/obj/structure/table/rack/shelf, +/obj/random/maintenance/cargo, +/obj/random/maintenance/cargo, +/obj/random/maintenance/cargo, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/maintenance/lowmedbaymaint) "qJl" = ( /obj/machinery/door/airlock/maintenance/common, /obj/machinery/door/firedoor/glass, @@ -36808,6 +36940,10 @@ /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled, /area/crew_quarters/locker) +"qOV" = ( +/obj/effect/landmark/vermin, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) "qPs" = ( /obj/structure/railing{ dir = 1 @@ -37019,6 +37155,13 @@ /obj/item/weapon/bedsheet/mimedouble, /turf/simulated/floor/carpet/bcarpet, /area/tether/surfacebase/funny/mimeoffice) +"rtV" = ( +/obj/random/maintenance/medical, +/obj/structure/table/rack, +/obj/random/maintenance/cargo, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/tiled/steel_dirty, +/area/maintenance/lowmedbaymaint) "ruj" = ( /obj/machinery/door/airlock/silver{ name = "Mime's Office"; @@ -37094,6 +37237,12 @@ /obj/item/weapon/material/minihoe, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/brig/storage) +"rCj" = ( +/obj/effect/landmark{ + name = "maint_pred" + }, +/turf/simulated/floor/plating, +/area/vacant/vacant_site/east) "rDJ" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -37363,6 +37512,10 @@ }, /turf/simulated/floor/lino, /area/crew_quarters/visitor_dining) +"syt" = ( +/obj/effect/floor_decal/rust, +/turf/simulated/floor/tiled/steel_dirty, +/area/maintenance/lowmedbaymaint) "szT" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 1 @@ -37421,6 +37574,13 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/surface_one_hall) +"sGh" = ( +/obj/structure/table/rack/shelf, +/obj/random/maintenance/medical, +/obj/random/maintenance/medical, +/obj/random/maintenance/cargo, +/turf/simulated/floor/tiled/steel_dirty, +/area/maintenance/lowmedbaymaint) "sHK" = ( /obj/structure/cable/green{ d1 = 4; @@ -37531,6 +37691,10 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/brig/storage) +"sYi" = ( +/obj/effect/decal/remains/human, +/turf/simulated/floor/plating, +/area/maintenance/lowmedbaymaint) "tak" = ( /obj/structure/table/steel, /obj/structure/cable/green{ @@ -37547,6 +37711,10 @@ /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/brig) +"tcK" = ( +/obj/item/clothing/suit/storage/hooded/wintercoat/ratvar, +/turf/simulated/floor/plating, +/area/maintenance/lowmedbaymaint) "tdg" = ( /turf/simulated/mineral, /area/maintenance/lowmedbaymaint) @@ -37648,6 +37816,20 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/lowerhall) +"tAo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/lowernorthhall) "tAT" = ( /obj/effect/floor_decal/borderfloor{ dir = 9 @@ -37909,6 +38091,16 @@ }, /turf/simulated/floor, /area/tether/surfacebase/security/gasstorage) +"ucq" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/tether/surfacebase/lowernorthhall) "ucv" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/glass_security{ @@ -37926,6 +38118,10 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/lowerhall) +"udU" = ( +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/maintenance/lowmedbaymaint) "uge" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 @@ -38112,6 +38308,10 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/brig/storage) +"uHq" = ( +/obj/effect/landmark/vines, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/tram) "uHS" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 1 @@ -38300,20 +38500,7 @@ /turf/simulated/floor/plating, /area/maintenance/lower/mining_eva) "vCn" = ( -/obj/item/weapon/pen/crayon/mime, -/obj/item/weapon/pen/crayon/marker/mime, -/obj/item/weapon/cartridge/mime, -/obj/item/weapon/bedsheet/mime, -/obj/item/toy/figure/mime, -/obj/item/clothing/under/sexymime, -/obj/item/clothing/shoes/mime, -/obj/item/clothing/mask/gas/sexymime, -/obj/item/clothing/head/soft/mime, -/obj/structure/closet/secure_closet{ - desc = "..."; - name = "silent storage"; - req_one_access = list(138) - }, +/obj/structure/barricade/cutout/mime, /turf/simulated/floor/carpet/bcarpet, /area/tether/surfacebase/funny/mimeoffice) "vDb" = ( @@ -38460,6 +38647,18 @@ }, /turf/simulated/wall, /area/maintenance/substation/surfaceservicesubstation) +"wjd" = ( +/obj/effect/floor_decal/rust, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 28 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/maintenance/lowmedbaymaint) "wjo" = ( /obj/effect/map_helper/airlock/door/ext_door, /obj/machinery/door/blast/regular{ @@ -38767,6 +38966,9 @@ }, /turf/simulated/floor/tiled/freezer, /area/tether/surfacebase/security/brig/bathroom) +"xfm" = ( +/turf/simulated/floor/tiled/steel_dirty, +/area/maintenance/lowmedbaymaint) "xgQ" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -38966,6 +39168,7 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/effect/landmark/vines, /turf/simulated/floor/tiled, /area/tether/surfacebase/surface_one_hall) "xFG" = ( @@ -44470,7 +44673,7 @@ akw akE bdG akW -akN +cCx aly alN amf @@ -45617,7 +45820,7 @@ atG atH atH ahM -anx +nBZ aju aoE apl @@ -47883,7 +48086,7 @@ anp aeW aml afT -afT +ppS afT agJ anj @@ -50425,9 +50628,9 @@ aAD aAD aAD aAD -aAI -aAI -aAI +sGh +qJe +jkI aef aeZ afN @@ -50564,15 +50767,15 @@ aaf aaf aaf aAD -aAI -aAI -aAI -aAI -aAI -aAI +udU +sYi +aAD +xfm +syt +xfm aef aeS -afO +tAo aBB aCr aDa @@ -50706,15 +50909,15 @@ aaf aaf aaf aAD +tcK aAI -aAI -aAI -aAI -aAI -aAI -aef -aeS -afO +aAD +rtV +ctE +lEB +ucq +qtC +dvU aBC aCr aDb @@ -50848,12 +51051,12 @@ aag aaf aaf aAD -aAI -aAI -aAI -aAI -aAI -aAI +eJc +udU +aAD +syt +dNE +wjd aef afi afQ @@ -51740,7 +51943,7 @@ aqf aqf arg aoS -aoj +pMd awI axo ayh @@ -52706,7 +52909,7 @@ aeD aCg mGH aDH -mGH +adx aEX aFv aGw @@ -52745,7 +52948,7 @@ agM aCJ aCJ aCJ -aCJ +rCj aCJ aCJ agM @@ -54413,7 +54616,7 @@ uVK ojM cUB wOK -fFT +ylH rxD bbj agT @@ -54481,7 +54684,7 @@ bcT aVf aVB aVf -cwS +cKo aUP aWY aUm @@ -54597,7 +54800,7 @@ aFS aEM aHm aDu -aIu +fOk aJo aDu aKJ @@ -55861,11 +56064,11 @@ aFW auB auB auB -auB +qOV auB auU auB -auB +uHq auB auB auB diff --git a/maps/tether/tether-02-surface2.dmm b/maps/tether/tether-02-surface2.dmm index b439b014b2..016b82e420 100644 --- a/maps/tether/tether-02-surface2.dmm +++ b/maps/tether/tether-02-surface2.dmm @@ -387,6 +387,15 @@ /obj/structure/window/reinforced, /turf/simulated/floor/wood, /area/tether/surfacebase/medical/centralhall) +"aaH" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/open, +/area/rnd/staircase/secondfloor) "aaI" = ( /obj/structure/cable/green{ icon_state = "2-4" @@ -2748,6 +2757,7 @@ d2 = 2; icon_state = "1-2" }, +/obj/effect/landmark/vermin, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/security/detective) "aei" = ( @@ -7942,6 +7952,7 @@ }, /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/red/bordercorner, +/obj/effect/landmark/vermin, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/middlehall) "amn" = ( @@ -8761,6 +8772,7 @@ /obj/effect/floor_decal/corner/paleblue/diagonal, /obj/item/weapon/deck/cards, /obj/structure/table/glass, +/obj/effect/landmark/vermin, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/breakroom) "anG" = ( @@ -10292,7 +10304,7 @@ /obj/machinery/light/small{ dir = 1 }, -/mob/living/simple_mob/animal/passive/snake/noodle, +/mob/living/simple_mob/animal/passive/snake/python/noodle, /turf/simulated/floor/grass, /area/chapel/main) "aqi" = ( @@ -10368,6 +10380,12 @@ /obj/machinery/door/airlock/maintenance/common, /turf/simulated/floor/plating, /area/maintenance/asmaint2) +"aqt" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/staircase/secondfloor) "aqu" = ( /obj/structure/table/standard{ name = "plastic table frame" @@ -14927,6 +14945,9 @@ /obj/machinery/atmospherics/pipe/simple/visible/purple{ dir = 5 }, +/obj/effect/landmark{ + name = "maint_pred" + }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/asmaint2) "ayB" = ( @@ -16527,6 +16548,9 @@ dir = 4 }, /obj/machinery/light/small, +/obj/effect/landmark{ + name = "maint_pred" + }, /turf/simulated/floor/plating, /area/maintenance/asmaint2) "aCg" = ( @@ -19645,6 +19669,9 @@ dir = 1; pixel_y = -22 }, +/obj/effect/landmark{ + name = "maint_pred" + }, /turf/simulated/floor, /area/maintenance/lower/rnd) "aIk" = ( @@ -21402,6 +21429,7 @@ "aLM" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/effect/landmark/vines, /turf/simulated/floor/tiled/techmaint, /area/tether/surfacebase/surface_two_hall) "aLN" = ( @@ -23637,21 +23665,9 @@ }, /turf/simulated/open, /area/rnd/staircase/secondfloor) -"aPG" = ( -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/open, -/area/rnd/staircase/secondfloor) "aPH" = ( /turf/simulated/open, /area/rnd/staircase/secondfloor) -"aPI" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/simulated/open, -/area/rnd/staircase/secondfloor) "aPJ" = ( /turf/simulated/wall, /area/rnd/breakroom) @@ -32817,6 +32833,10 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/ai) +"dnD" = ( +/obj/effect/landmark/vermin, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/uppersouthstairwell) "dzE" = ( /obj/effect/floor_decal/chapel{ dir = 8 @@ -33060,6 +33080,13 @@ /obj/machinery/light/small, /turf/simulated/floor/plating, /area/tether/surfacebase/fish_farm) +"grX" = ( +/obj/effect/floor_decal/rust, +/obj/effect/landmark{ + name = "maint_pred" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/atmos) "gsU" = ( /obj/structure/table/rack, /obj/random/maintenance/engineering, @@ -33247,6 +33274,12 @@ }, /turf/simulated/floor/bluegrid, /area/ai_upload) +"iLF" = ( +/obj/effect/landmark{ + name = "maint_pred" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/south) "jcd" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -33262,6 +33295,10 @@ }, /turf/simulated/floor/wood, /area/bridge/meeting_room) +"jlG" = ( +/obj/effect/landmark/vermin, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/centralhall) "jtj" = ( /turf/simulated/floor/tiled/techfloor/grid, /area/maintenance/readingrooms) @@ -33604,6 +33641,12 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/breakroom) +"lvb" = ( +/obj/effect/landmark{ + name = "maint_pred" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/rnd) "lJc" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -33632,6 +33675,10 @@ /obj/structure/flora/ausbushes/fullgrass, /turf/simulated/floor/grass, /area/chapel/main) +"lUN" = ( +/obj/effect/landmark/vermin, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_two) "lZx" = ( /turf/simulated/wall/r_wall, /area/maintenance/readingrooms) @@ -33700,6 +33747,12 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/ai_upload_foyer) +"mNT" = ( +/obj/effect/landmark{ + name = "maint_pred" + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/asmaint2) "mNZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -33710,6 +33763,12 @@ }, /turf/simulated/floor/tiled/techfloor, /area/ai_upload_foyer) +"mQc" = ( +/obj/effect/landmark{ + name = "maint_pred" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/atmos) "mUP" = ( /obj/structure/bed/padded, /obj/effect/floor_decal/techfloor, @@ -33732,6 +33791,10 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/ai_upload_foyer) +"ncG" = ( +/obj/effect/landmark/vermin, +/turf/simulated/floor/wood, +/area/bridge/meeting_room) "ndB" = ( /obj/structure/cable/cyan{ d1 = 1; @@ -33864,6 +33927,12 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/bluegrid, /area/ai) +"pny" = ( +/obj/effect/landmark{ + name = "maint_pred" + }, +/turf/simulated/floor/plating, +/area/maintenance/asmaint2) "pqb" = ( /obj/structure/sink/puddle, /turf/simulated/floor/beach/sand/desert, @@ -34021,6 +34090,15 @@ }, /turf/simulated/floor/plating, /area/maintenance/lower/bar) +"qGR" = ( +/obj/effect/floor_decal/corner_techfloor_grid{ + dir = 5 + }, +/obj/effect/landmark{ + name = "maint_pred" + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/south) "qKR" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 @@ -34061,6 +34139,10 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/ai_upload) +"rjM" = ( +/obj/effect/landmark/vines, +/turf/simulated/floor/beach/sand/desert, +/area/tether/surfacebase/fish_farm) "rlN" = ( /turf/simulated/floor/tiled/techfloor/grid, /area/ai) @@ -34107,6 +34189,10 @@ /obj/machinery/vending/wardrobe/chapdrobe, /turf/simulated/floor/lino, /area/chapel/office) +"rBf" = ( +/obj/effect/landmark/vines, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/surface_two_hall) "rJc" = ( /obj/effect/floor_decal/corner/paleblue/diagonal, /obj/effect/landmark/start{ @@ -34452,6 +34538,13 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/ai) +"tZD" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/landmark/vines, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/surface_two_hall) "tZV" = ( /obj/machinery/light, /turf/simulated/floor/tiled/techfloor/grid, @@ -40534,7 +40627,7 @@ aHm aHE aHE aIJ -aIJ +mNT aHE aHE aHE @@ -40648,7 +40741,7 @@ akX aoi apt aqz -aog +lUN ars atI akX @@ -41683,7 +41776,7 @@ aOU aKb aQw aQw -aQw +pny aQw aRj aHE @@ -41801,7 +41894,7 @@ azq azq azq ayw -axR +rjM axR axR axR @@ -42532,7 +42625,7 @@ aMW aNv aOj aOZ -aPG +aaH aPH aPH aRM @@ -42674,7 +42767,7 @@ aMX aNv aOk aOY -aPH +aOY aPH aPH aRM @@ -42816,7 +42909,7 @@ aIP aIP aOl aPa -aPI +aqt aPH aPH aRM @@ -42948,7 +43041,7 @@ aGw aGw aqZ arf -aEc +lvb aJJ aKh aKU @@ -43962,7 +44055,7 @@ aRm aPJ aYd aWH -aQw +pny aXx aXx aXx @@ -44220,7 +44313,7 @@ aEa avD aFh aFl -aEc +lvb aGy aGy aGy @@ -44261,7 +44354,7 @@ baz aHn aHI baz -aIg +grX baU baU baz @@ -44982,7 +45075,7 @@ baU beQ aKK baz -baU +mQc baU biS bjr @@ -46539,7 +46632,7 @@ baz aIM baU baU -baU +mQc baz bfR bgx @@ -47064,7 +47157,7 @@ aGH aHb aHs aHM -aGF +ncG aIU aGE aAG @@ -47666,7 +47759,7 @@ aLY bbm bbM aZr -aZr +iLF aLY adt adt @@ -48892,7 +48985,7 @@ asV awj avD axF -ayc +tZD ayd azg ayh @@ -48916,7 +49009,7 @@ ayd ayd aKA ayd -ayd +rBf aMG avD asm @@ -49158,7 +49251,7 @@ aex afj agh aaU -aam +jlG aiP akq alS @@ -49634,7 +49727,7 @@ qpA dSO tED aLY -aRC +qGR bcM atW aUc @@ -50161,7 +50254,7 @@ aks akF akJ akJ -akJ +dnD akJ alY amJ @@ -50654,7 +50747,7 @@ aLY aLY aZr aZr -aZr +iLF baO bax eps diff --git a/maps/tether/tether-03-surface3.dmm b/maps/tether/tether-03-surface3.dmm index b4311596fa..5a9fd154e5 100644 --- a/maps/tether/tether-03-surface3.dmm +++ b/maps/tether/tether-03-surface3.dmm @@ -11444,7 +11444,9 @@ /turf/simulated/wall/fancy_shuttle{ fancy_shuttle_tag = "lifeboat1" }, -/area/shuttle/tether) +/area/shuttle/tether{ + base_turf = /turf/simulated/floor/reinforced + }) "ask" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 8 @@ -14139,6 +14141,10 @@ }, /turf/simulated/floor/tiled, /area/rnd/research) +"axb" = ( +/obj/tether_away_spawner/tether_outside, +/turf/simulated/floor/outdoors/grass/sif/virgo3b, +/area/tether/surfacebase/outside/outside3) "axc" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/borderfloor{ @@ -14312,6 +14318,12 @@ /obj/effect/floor_decal/corner/mauve/bordercorner2, /turf/simulated/floor/tiled, /area/rnd/xenobiology/xenoflora) +"axt" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/rnd/staircase/thirdfloor) "axu" = ( /obj/structure/sink{ dir = 8; @@ -14319,6 +14331,13 @@ }, /turf/simulated/floor/wood, /area/tether/surfacebase/bar_backroom) +"axv" = ( +/obj/structure/railing, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/open, +/area/rnd/staircase/thirdfloor) "axw" = ( /obj/structure/cable/green{ d1 = 1; @@ -14433,12 +14452,6 @@ }, /turf/simulated/floor/tiled, /area/rnd/research) -"axF" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/open, -/area/rnd/staircase/thirdfloor) "axG" = ( /obj/structure/disposalpipe/segment, /obj/machinery/light{ @@ -14550,7 +14563,6 @@ "axL" = ( /obj/structure/table/standard, /obj/structure/reagent_dispensers/acid{ - density = 0; pixel_y = -30 }, /obj/item/weapon/hand_labeler, @@ -19892,6 +19904,7 @@ dir = 8; icon_state = "pipe-c" }, +/obj/effect/landmark/vines, /turf/simulated/floor/tiled, /area/tether/surfacebase/surface_three_hall) "aGw" = ( @@ -20137,7 +20150,6 @@ dir = 1 }, /obj/structure/reagent_dispensers/acid{ - density = 0; pixel_y = -30 }, /obj/effect/floor_decal/borderfloor, @@ -20159,6 +20171,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, +/obj/effect/landmark/vines, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) "aGW" = ( @@ -21676,7 +21689,10 @@ /area/hallway/lower/third_south) "aJo" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_external/public, +/obj/machinery/door/airlock/glass_external/public{ + frequency = 1380; + id_tag = "tourbus_right" + }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) "aJp" = ( @@ -21688,7 +21704,10 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/door/airlock/glass_external/public, +/obj/machinery/door/airlock/glass_external/public{ + frequency = 1380; + id_tag = "tourbus_right" + }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) @@ -22819,7 +22838,10 @@ /area/rnd/robotics/mechbay) "aLA" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_external/public, +/obj/machinery/door/airlock/glass_external/public{ + frequency = 1380; + id_tag = "tourbus_right" + }, /turf/simulated/floor/tiled, /area/tether/surfacebase/shuttle_pad) "aLB" = ( @@ -22831,7 +22853,10 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/door/airlock/glass_external/public, +/obj/machinery/door/airlock/glass_external/public{ + frequency = 1380; + id_tag = "tourbus_right" + }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/tether/surfacebase/shuttle_pad) @@ -23367,12 +23392,17 @@ /turf/simulated/wall/fancy_shuttle{ fancy_shuttle_tag = "lifeboat1" }, -/area/shuttle/tether) +/area/shuttle/tether{ + base_turf = /turf/simulated/floor/reinforced + }) "aMF" = ( -/turf/simulated/wall/fancy_shuttle/window{ - fancy_shuttle_tag = "lifeboat1" +/obj/structure/window/fancy_shuttle{ + fancy_shuttle_tag = "tourbus" }, -/area/shuttle/tether) +/turf/simulated/floor, +/area/shuttle/tether{ + base_turf = /turf/simulated/floor/reinforced + }) "aMG" = ( /obj/structure/railing{ dir = 4 @@ -23578,12 +23608,24 @@ /obj/machinery/computer/shuttle_control/tether_backup{ req_one_access = list() }, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "lifeboat1"; + name = "lifeboat1" + }, /turf/simulated/floor/tiled, -/area/shuttle/tether) +/area/shuttle/tether{ + base_turf = /turf/simulated/floor/reinforced + }) "aNb" = ( /obj/structure/closet/emcloset, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "lifeboat1"; + name = "lifeboat1" + }, /turf/simulated/floor/tiled, -/area/shuttle/tether) +/area/shuttle/tether{ + base_turf = /turf/simulated/floor/reinforced + }) "aNc" = ( /obj/machinery/alarm{ dir = 8; @@ -23666,8 +23708,14 @@ /obj/structure/bed/chair/shuttle{ dir = 8 }, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "lifeboat1"; + name = "lifeboat1" + }, /turf/simulated/floor/tiled, -/area/shuttle/tether) +/area/shuttle/tether{ + base_turf = /turf/simulated/floor/reinforced + }) "aNn" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 4 @@ -23781,8 +23829,14 @@ locked = 1; name = "Shuttle Hatch" }, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "lifeboat1"; + name = "lifeboat1" + }, /turf/simulated/floor/tiled, -/area/shuttle/tether) +/area/shuttle/tether{ + base_turf = /turf/simulated/floor/reinforced + }) "aNA" = ( /obj/machinery/power/apc{ dir = 4; @@ -23882,8 +23936,14 @@ /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/uppersouthstairwell) "aNK" = ( +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "lifeboat1"; + name = "lifeboat1" + }, /turf/simulated/floor/tiled, -/area/shuttle/tether) +/area/shuttle/tether{ + base_turf = /turf/simulated/floor/reinforced + }) "aNL" = ( /obj/structure/window/basic/full, /obj/structure/grille, @@ -23920,8 +23980,14 @@ /obj/structure/bed/chair/shuttle{ dir = 4 }, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "lifeboat1"; + name = "lifeboat1" + }, /turf/simulated/floor/tiled, -/area/shuttle/tether) +/area/shuttle/tether{ + base_turf = /turf/simulated/floor/reinforced + }) "aNQ" = ( /obj/machinery/firealarm{ dir = 4; @@ -27175,13 +27241,6 @@ }, /turf/simulated/floor/tiled/monotile, /area/hallway/lower/third_south) -"aUq" = ( -/obj/machinery/atmospherics/binary/pump, -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "tourbus" - }, -/turf/simulated/floor/tiled, -/area/shuttle/tourbus/general) "aUr" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -27230,17 +27289,18 @@ /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_three) "aUx" = ( +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tourbus"; + name = "tourbus" + }, +/obj/structure/bed/chair/shuttle{ + dir = 8 + }, /obj/structure/cable/orange{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/structure/bed/chair/bay/chair{ - dir = 8 - }, -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "tourbus" - }, /turf/simulated/floor/tiled, /area/shuttle/tourbus/general) "aUy" = ( @@ -27394,15 +27454,6 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_three) -"aUN" = ( -/obj/structure/bed/chair/bay/chair{ - dir = 4 - }, -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "tourbus" - }, -/turf/simulated/floor/tiled, -/area/shuttle/tourbus/general) "aUO" = ( /obj/effect/floor_decal/techfloor{ dir = 6 @@ -28617,11 +28668,13 @@ /turf/simulated/floor/tiled, /area/tether/surfacebase/security/upperhall) "aXa" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, /obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "tourbus" + fancy_shuttle_tag = "tourbus"; + name = "tourbus" + }, +/obj/structure/cable/green{ + dir = 1; + icon_state = "1-2" }, /turf/simulated/floor/tiled, /area/shuttle/tourbus/general) @@ -31498,17 +31551,17 @@ /turf/simulated/floor/wood, /area/crew_quarters/bar) "bbX" = ( -/obj/effect/fancy_shuttle_floor_preview/tourbus{ - dir = 1 - }, /obj/effect/fancy_shuttle/tourbus{ dir = 1; fancy_shuttle_tag = "tourbus" }, +/obj/effect/fancy_shuttle_floor_preview/tourbus{ + dir = 1 + }, /obj/machinery/atmospherics/unary/engine/fancy_shuttle{ dir = 1 }, -/turf/simulated/wall/fancy_shuttle/nondense{ +/turf/simulated/wall/fancy_shuttle{ fancy_shuttle_tag = "tourbus" }, /area/shuttle/tourbus/general) @@ -32119,7 +32172,6 @@ /obj/item/weapon/soap/nanotrasen, /obj/item/weapon/soap/deluxe, /obj/item/weapon/staff/gentcane, -/obj/item/toy/crossbow, /obj/item/toy/eight_ball/conch, /obj/item/weapon/cell/potato, /obj/structure/cable/green{ @@ -32129,6 +32181,7 @@ }, /obj/item/device/megaphone, /obj/random/cutout, +/obj/item/weapon/gun/projectile/revolver/toy/crossbow, /turf/simulated/floor/lino, /area/tether/surfacebase/entertainment/backstage) "bcV" = ( @@ -33396,7 +33449,10 @@ /area/tether/surfacebase/shuttle_pad) "bfj" = ( /obj/machinery/door/firedoor, -/obj/machinery/door/airlock/glass_external/public, +/obj/machinery/door/airlock/glass_external/public{ + frequency = 1380; + id_tag = "tourbus_right" + }, /turf/simulated/floor/tiled, /area/tether/surfacebase/southhall) "bfk" = ( @@ -33931,7 +33987,10 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/door/airlock/glass_external/public, +/obj/machinery/door/airlock/glass_external/public{ + frequency = 1380; + id_tag = "tourbus_right" + }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/tether/surfacebase/southhall) @@ -37788,40 +37847,29 @@ /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/iaa/officea) "ccN" = ( -/obj/machinery/button/remote/airlock{ - desiredstate = 1; - id = "tourbus_left"; - name = "hatch bolt control"; - pixel_x = 4; - pixel_y = 30; - req_one_access = list(19,43,67); - specialfunctions = 4 +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tourbus"; + name = "tourbus" }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "tourbus_windows"; - name = "Shuttle Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/airlock/angled_tgmc/security_glass{ - dir = 4; +/obj/machinery/door/airlock/glass_external{ icon_state = "door_locked"; id_tag = "tourbus_left"; locked = 1; - name = "tourbus airlock" - }, -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "tourbus" + req_one_access = list() }, +/obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/shuttle/tourbus/general) "cdf" = ( -/turf/simulated/wall/fancy_shuttle{ +/turf/simulated/wall/fancy_shuttle/nondense{ fancy_shuttle_tag = "tourbus" }, /area/shuttle/tourbus/cockpit) "cdv" = ( +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tourbus"; + name = "tourbus" + }, /obj/structure/cable/orange{ d1 = 4; d2 = 8; @@ -37831,20 +37879,11 @@ dir = 4 }, /obj/effect/map_helper/airlock/door/simple, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "tourbus_windows"; - name = "Shuttle Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/airlock/angled_tgmc/security_glass{ - dir = 4; - name = "tourbus airlock" - }, -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "tourbus" +/obj/machinery/door/airlock/glass_external/public{ + frequency = 1380; + id_tag = "tourbus_right" }, +/obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/shuttle/tourbus/general) "ceN" = ( @@ -37854,6 +37893,7 @@ }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/effect/landmark/vines, /turf/simulated/floor/tiled, /area/tether/surfacebase/surface_three_hall) "cmQ" = ( @@ -37909,6 +37949,12 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/briefingroom) +"cta" = ( +/obj/machinery/shipsensors/fancy_shuttle, +/turf/simulated/wall/fancy_shuttle/nondense{ + fancy_shuttle_tag = "tourbus" + }, +/area/shuttle/tourbus/cockpit) "cun" = ( /obj/machinery/atm{ pixel_x = -32 @@ -38031,16 +38077,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood, /area/library) -"cUF" = ( -/obj/machinery/computer/shuttle_control/explore/tourbus, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "tourbus" - }, -/turf/simulated/floor/tiled, -/area/shuttle/tourbus/cockpit) "cVg" = ( /obj/structure/bed/chair/office/dark{ dir = 4 @@ -38181,22 +38217,11 @@ /turf/simulated/floor/tiled, /area/tether/surfacebase/shuttle_pad) "ddn" = ( -/obj/structure/bed/chair/bay/chair{ - dir = 1 - }, -/obj/machinery/power/apc{ - name = "south bump"; - pixel_y = -28; - req_access = list(); - req_one_access = list(11,67) - }, -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, /obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "tourbus" + fancy_shuttle_tag = "tourbus"; + name = "tourbus" }, +/obj/machinery/computer/ship/helm, /turf/simulated/floor/tiled, /area/shuttle/tourbus/cockpit) "dgA" = ( @@ -38384,20 +38409,6 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_hallway) -"dVW" = ( -/obj/structure/bed/chair/bay/chair{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "tourbus" - }, -/turf/simulated/floor/tiled, -/area/shuttle/tourbus/general) "dVZ" = ( /obj/structure/table/woodentable, /obj/item/clothing/accessory/permit/gun{ @@ -38426,6 +38437,16 @@ }, /turf/simulated/floor/tiled/monotile, /area/tether/surfacebase/shuttle_pad) +"eaj" = ( +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 6 + }, +/obj/effect/landmark/vermin, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) "eeD" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 4 @@ -38483,6 +38504,12 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/tether/surfacebase/southhall) +"enD" = ( +/obj/effect/landmark/vermin, +/turf/simulated/mineral/floor/cave{ + name = "dirt" + }, +/area/tether/surfacebase/public_garden_three) "eqZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -38496,6 +38523,7 @@ d2 = 8; icon_state = "1-8" }, +/obj/effect/landmark/vines, /turf/simulated/floor/tiled, /area/tether/surfacebase/shuttle_pad) "erS" = ( @@ -38536,6 +38564,10 @@ /obj/effect/floor_decal/corner/red/border, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/briefingroom) +"eDc" = ( +/obj/effect/landmark/vermin, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) "eEW" = ( /obj/machinery/door/airlock{ name = "Internal Affairs"; @@ -38556,9 +38588,14 @@ /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_main) "eGv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow, /obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "tourbus" + fancy_shuttle_tag = "tourbus"; + name = "tourbus" + }, +/obj/machinery/atmospherics/binary/pump, +/obj/structure/cable/green{ + dir = 1; + icon_state = "1-2" }, /turf/simulated/floor/tiled, /area/shuttle/tourbus/general) @@ -38631,8 +38668,14 @@ pixel_x = 23; tag_door = "tether_shuttle_hatch" }, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "lifeboat1"; + name = "lifeboat1" + }, /turf/simulated/floor/tiled, -/area/shuttle/tether) +/area/shuttle/tether{ + base_turf = /turf/simulated/floor/reinforced + }) "eMY" = ( /obj/structure/sink{ pixel_y = 20 @@ -38645,6 +38688,10 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/barrestroom) +"eOP" = ( +/obj/effect/landmark/vermin, +/turf/simulated/floor/wood, +/area/tether/surfacebase/entertainment) "eQN" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -38669,30 +38716,20 @@ /turf/simulated/floor/tiled, /area/tether/surfacebase/cafeteria) "fag" = ( +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tourbus"; + name = "tourbus" + }, +/obj/structure/bed/chair/shuttle{ + dir = 4 + }, /obj/machinery/atmospherics/pipe/simple/hidden/yellow{ dir = 4 }, -/obj/structure/cable{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/bed/chair/bay/chair{ - dir = 4 - }, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -28; - req_access = list(); - req_one_access = list(11,67) - }, /obj/structure/closet/emergsuit_wall{ dir = 1; pixel_y = -32 }, -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "tourbus" - }, /turf/simulated/floor/tiled, /area/shuttle/tourbus/general) "faL" = ( @@ -38704,6 +38741,10 @@ /turf/simulated/open, /area/tether/surfacebase/southhall) "fcg" = ( +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tourbus"; + name = "tourbus" + }, /obj/effect/shuttle_landmark{ base_area = /area/tether/surfacebase/shuttle_pad; base_turf = /turf/simulated/floor/reinforced; @@ -38720,9 +38761,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/yellow{ dir = 4 }, -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "tourbus" - }, /turf/simulated/floor/tiled, /area/shuttle/tourbus/general) "feu" = ( @@ -38788,6 +38826,13 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/surface_three_hall) +"fsd" = ( +/obj/machinery/item_bank{ + dir = 4; + pixel_x = -28 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/southhall) "fxh" = ( /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -38824,15 +38869,25 @@ "fzy" = ( /turf/simulated/wall, /area/tether/surfacebase/security/iaa/officecommon) +"fzG" = ( +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "lifeboat1"; + name = "lifeboat1" + }, +/obj/machinery/light/floortube, +/turf/simulated/floor/tiled, +/area/shuttle/tether{ + base_turf = /turf/simulated/floor/reinforced + }) "fEX" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tourbus"; + name = "tourbus" }, /obj/machinery/atmospherics/pipe/manifold4w/hidden/yellow, -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "tourbus" +/obj/structure/cable/green{ + dir = 1; + icon_state = "1-2" }, /turf/simulated/floor/tiled, /area/shuttle/tourbus/general) @@ -38852,17 +38907,18 @@ /turf/simulated/floor/tiled, /area/tether/surfacebase/security/briefingroom) "fJJ" = ( +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tourbus"; + name = "tourbus" + }, +/obj/structure/bed/chair/shuttle{ + dir = 8 + }, /obj/machinery/atmospherics/pipe/simple/hidden/yellow{ dir = 4 }, /obj/machinery/power/terminal, /obj/structure/cable/orange, -/obj/structure/bed/chair/bay/chair{ - dir = 8 - }, -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "tourbus" - }, /turf/simulated/floor/tiled, /area/shuttle/tourbus/general) "fLx" = ( @@ -38891,25 +38947,20 @@ /turf/simulated/floor/tiled, /area/tether/surfacebase/security/processing) "fNO" = ( -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - dir = 8; - frequency = 1380; - id_tag = "tourbus_docker"; - pixel_x = 28 +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tourbus"; + name = "tourbus" + }, +/obj/structure/bed/chair/shuttle{ + dir = 8 }, /obj/machinery/atmospherics/pipe/simple/hidden/yellow{ dir = 4 }, -/obj/structure/bed/chair/bay/chair{ - dir = 8 - }, /obj/structure/closet/emergsuit_wall{ dir = 1; pixel_y = -32 }, -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "tourbus" - }, /turf/simulated/floor/tiled, /area/shuttle/tourbus/general) "fOj" = ( @@ -38938,9 +38989,15 @@ /obj/machinery/atmospherics/pipe/simple/hidden/yellow{ dir = 10 }, -/turf/simulated/wall/fancy_shuttle{ +/obj/machinery/door/firedoor/glass/hidden/shuttle, +/obj/machinery/door/blast/shuttle/open{ + id = "tourbus_windows"; + name = "Shuttle Blast Doors" + }, +/obj/structure/window/fancy_shuttle{ fancy_shuttle_tag = "tourbus" }, +/turf/simulated/floor, /area/shuttle/tourbus/general) "gfg" = ( /obj/machinery/light{ @@ -39066,19 +39123,22 @@ }, /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/effect/landmark/vines, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) "gBr" = ( +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tourbus"; + name = "tourbus" + }, +/obj/machinery/door/window/northleft, /obj/machinery/atmospherics/portables_connector{ dir = 4 }, /obj/machinery/portable_atmospherics/canister/phoron, -/obj/machinery/door/window/southleft{ +/obj/machinery/alarm{ dir = 1; - req_one_access = list(19,43,67) - }, -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "tourbus" + pixel_y = -28 }, /turf/simulated/floor/tiled, /area/shuttle/tourbus/general) @@ -39094,49 +39154,57 @@ /turf/simulated/floor/tiled, /area/tether/surfacebase/shuttle_pad) "gCZ" = ( -/obj/machinery/light/small, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tourbus"; + name = "tourbus" }, +/obj/machinery/door/window/northright, /obj/machinery/atmospherics/pipe/simple/hidden/yellow{ dir = 9 }, -/obj/machinery/door/window/southright{ - dir = 1; - req_one_access = list(19,43,67) +/obj/machinery/power/terminal{ + dir = 4 }, -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "tourbus" +/obj/machinery/light, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -28; + req_access = list(); + req_one_access = list(11,67) + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/cable/green{ + icon_state = "1-4" }, /turf/simulated/floor/tiled, /area/shuttle/tourbus/general) "gHc" = ( -/obj/structure/bed/chair/bay/chair{ +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tourbus"; + name = "tourbus" + }, +/obj/structure/bed/chair/shuttle{ dir = 4 }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "tourbus" +/obj/machinery/light{ + dir = 1 }, /turf/simulated/floor/tiled, /area/shuttle/tourbus/general) "gLd" = ( -/obj/machinery/power/smes/buildable{ - charge = 500000 - }, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tourbus"; + name = "tourbus" }, /obj/structure/window/reinforced{ dir = 1 }, -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "tourbus" +/obj/machinery/power/smes/buildable/point_of_interest, +/obj/structure/cable/green{ + icon_state = "0-8" }, /turf/simulated/floor/tiled, /area/shuttle/tourbus/general) @@ -39157,11 +39225,6 @@ }, /turf/simulated/floor/wood, /area/tether/surfacebase/public_garden_three) -"gQb" = ( -/turf/simulated/wall/fancy_shuttle/window{ - fancy_shuttle_tag = "tourbus" - }, -/area/shuttle/tourbus/general) "gRG" = ( /obj/structure/closet/hydrant{ pixel_x = -32 @@ -39180,9 +39243,14 @@ dir = 2; icon_state = "pipe-c" }, +/obj/effect/landmark/vines, /turf/simulated/floor/tiled, /area/tether/surfacebase/surface_three_hall) "gUL" = ( +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tourbus"; + name = "tourbus" + }, /obj/structure/cable/orange{ d1 = 2; d2 = 4; @@ -39191,9 +39259,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/yellow{ dir = 4 }, -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "tourbus" - }, /turf/simulated/floor/tiled, /area/shuttle/tourbus/general) "gVg" = ( @@ -39285,10 +39350,30 @@ /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_hallway) "hjt" = ( -/obj/machinery/shipsensors/fancy_shuttle, -/turf/simulated/wall/fancy_shuttle/nondense{ - fancy_shuttle_tag = "tourbus" +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tourbus"; + name = "tourbus" }, +/obj/structure/table/standard, +/obj/machinery/power/apc{ + alarms_hidden = 1; + dir = 1; + name = "north bump"; + pixel_y = 28 + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "tourbus_windows"; + name = "window blast shields"; + pixel_y = 1 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, /area/shuttle/tourbus/cockpit) "hoQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -39305,7 +39390,7 @@ /obj/machinery/atmospherics/unary/engine/fancy_shuttle{ dir = 1 }, -/turf/simulated/wall/fancy_shuttle/nondense{ +/turf/simulated/wall/fancy_shuttle{ fancy_shuttle_tag = "tourbus" }, /area/shuttle/tourbus/general) @@ -39481,6 +39566,10 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/shuttle_pad) +"ieh" = ( +/obj/effect/landmark/vermin, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/cafeteria) "ieo" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -39583,18 +39672,6 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/upperhall) -"ivq" = ( -/obj/structure/bed/chair/bay/chair{ - dir = 8 - }, -/obj/structure/closet/emergsuit_wall{ - pixel_y = 32 - }, -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "tourbus" - }, -/turf/simulated/floor/tiled, -/area/shuttle/tourbus/general) "iFr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, @@ -39698,6 +39775,26 @@ /obj/structure/window/reinforced, /turf/simulated/wall, /area/tether/surfacebase/medical/storage) +"iUz" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/landmark/vermin, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/upperhall) "iXM" = ( /obj/structure/cable/green{ d1 = 1; @@ -39749,9 +39846,15 @@ /obj/machinery/atmospherics/pipe/simple/hidden/yellow{ dir = 6 }, -/turf/simulated/wall/fancy_shuttle{ +/obj/machinery/door/firedoor/glass/hidden/shuttle, +/obj/machinery/door/blast/shuttle/open{ + id = "tourbus_windows"; + name = "Shuttle Blast Doors" + }, +/obj/structure/window/fancy_shuttle{ fancy_shuttle_tag = "tourbus" }, +/turf/simulated/floor, /area/shuttle/tourbus/general) "jrn" = ( /obj/structure/cable/green{ @@ -39778,21 +39881,6 @@ /obj/effect/floor_decal/steeldecal/steel_decals7, /turf/simulated/floor/tiled, /area/tether/surfacebase/surface_three_hall) -"jvK" = ( -/obj/structure/table/standard, -/obj/structure/closet/emergsuit_wall{ - pixel_y = 32 - }, -/obj/machinery/button/remote/blast_door{ - dir = 4; - id = "tourbus_windows"; - name = "window blast shields" - }, -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "tourbus" - }, -/turf/simulated/floor/tiled, -/area/shuttle/tourbus/cockpit) "jAt" = ( /obj/structure/cable/green{ d1 = 1; @@ -39857,9 +39945,17 @@ /turf/simulated/floor/grass, /area/tether/surfacebase/public_garden_three) "jER" = ( -/turf/simulated/wall/fancy_shuttle/window{ - fancy_shuttle_tag = "tourbus" +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tourbus"; + name = "tourbus" }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/bed/chair/bay/comfy/blue{ + dir = 1 + }, +/turf/simulated/floor/tiled, /area/shuttle/tourbus/cockpit) "jFq" = ( /obj/structure/table/reinforced, @@ -40046,26 +40142,17 @@ /turf/simulated/floor/grass, /area/tether/surfacebase/public_garden_three) "kcC" = ( -/obj/structure/fuel_port{ - pixel_x = 1 +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tourbus"; + name = "tourbus" }, /obj/machinery/atmospherics/pipe/simple/hidden/yellow{ dir = 6 }, -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "tourbus" - }, -/turf/simulated/floor/tiled, -/area/shuttle/tourbus/general) -"kdx" = ( -/obj/structure/bed/chair/bay/chair{ - dir = 4 - }, -/obj/structure/closet/emergsuit_wall{ - pixel_y = 32 - }, -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "tourbus" +/obj/structure/fuel_port, +/obj/structure/cable/green{ + dir = 1; + icon_state = "1-2" }, /turf/simulated/floor/tiled, /area/shuttle/tourbus/general) @@ -40237,6 +40324,10 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/iaa/officea) +"kFE" = ( +/obj/effect/landmark/vermin, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) "kFJ" = ( /obj/structure/table/steel, /obj/machinery/atmospherics/unary/vent_scrubber/on{ @@ -40388,6 +40479,16 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/rnd/research/testingrange) +"lli" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/landmark/vermin, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) "llH" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, @@ -40604,7 +40705,9 @@ /turf/simulated/wall/fancy_shuttle{ fancy_shuttle_tag = "lifeboat1" }, -/area/shuttle/tether) +/area/shuttle/tether{ + base_turf = /turf/simulated/floor/reinforced + }) "lSv" = ( /obj/structure/cable/green{ d1 = 1; @@ -40623,14 +40726,15 @@ /turf/simulated/floor/tiled, /area/rnd/research/testingrange) "lVB" = ( -/obj/structure/bed/chair/bay/chair{ +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tourbus"; + name = "tourbus" + }, +/obj/structure/bed/chair/shuttle{ dir = 8 }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "tourbus" +/obj/structure/closet/emergsuit_wall{ + pixel_y = 32 }, /turf/simulated/floor/tiled, /area/shuttle/tourbus/general) @@ -40745,15 +40849,6 @@ }, /turf/simulated/floor/carpet/blue, /area/tether/surfacebase/security/breakroom) -"mse" = ( -/obj/structure/bed/chair/bay/chair{ - dir = 8 - }, -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "tourbus" - }, -/turf/simulated/floor/tiled, -/area/shuttle/tourbus/general) "mwz" = ( /obj/effect/floor_decal/corner/red{ dir = 9 @@ -40908,14 +41003,11 @@ /turf/simulated/floor/tiled, /area/tether/surfacebase/surface_three_hall) "ndK" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, /obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "tourbus" + fancy_shuttle_tag = "tourbus"; + name = "tourbus" }, +/obj/machinery/computer/shuttle_control/explore/tourbus, /turf/simulated/floor/tiled, /area/shuttle/tourbus/cockpit) "nfl" = ( @@ -40937,14 +41029,15 @@ /turf/simulated/floor/tiled, /area/tether/surfacebase/security/briefingroom) "ngV" = ( -/obj/structure/bed/chair/bay/chair{ +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tourbus"; + name = "tourbus" + }, +/obj/structure/bed/chair/shuttle{ dir = 4 }, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "tourbus" +/obj/structure/closet/emergsuit_wall{ + pixel_y = 32 }, /turf/simulated/floor/tiled, /area/shuttle/tourbus/general) @@ -40968,15 +41061,6 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/surface_three_hall) -"nkq" = ( -/obj/machinery/computer/ship/engines{ - dir = 8 - }, -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "tourbus" - }, -/turf/simulated/floor/tiled, -/area/shuttle/tourbus/cockpit) "nlf" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -41002,6 +41086,22 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/surface_three_hall) +"nnr" = ( +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tourbus"; + name = "tourbus" + }, +/obj/machinery/computer/ship/engines{ + dir = 8 + }, +/obj/machinery/alarm{ + pixel_y = 28 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/shuttle/tourbus/cockpit) "nnY" = ( /obj/item/device/radio/intercom{ dir = 4; @@ -41026,6 +41126,16 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/barrestroom) +"nrQ" = ( +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tourbus"; + name = "tourbus" + }, +/obj/structure/bed/chair/shuttle{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/shuttle/tourbus/general) "nsm" = ( /obj/structure/sign/painting/library_secure{ pixel_y = -30 @@ -41147,6 +41257,16 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/briefingroom) +"nSh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/landmark/vines, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) "nSq" = ( /obj/structure/bed/chair{ dir = 8 @@ -41251,6 +41371,12 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/recreation_area_restroom) +"oqz" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/tether/surfacebase/shuttle_pad) "oqI" = ( /obj/item/weapon/stool/padded{ dir = 4 @@ -41415,6 +41541,13 @@ }, /turf/simulated/floor/plating, /area/tether/surfacebase/security/iaa/officeb) +"oPE" = ( +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tourbus"; + name = "tourbus" + }, +/turf/simulated/floor/tiled, +/area/shuttle/tourbus/general) "oPG" = ( /obj/structure/closet/secure_closet/hos, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -41442,12 +41575,11 @@ /turf/simulated/floor/wood, /area/crew_quarters/recreation_area) "oSQ" = ( -/obj/structure/bed/chair/bay/chair{ - dir = 1 - }, /obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "tourbus" + fancy_shuttle_tag = "tourbus"; + name = "tourbus" }, +/obj/machinery/computer/ship/sensors, /turf/simulated/floor/tiled, /area/shuttle/tourbus/cockpit) "oTr" = ( @@ -41719,17 +41851,12 @@ /turf/simulated/floor/tiled, /area/tether/surfacebase/security/breakroom) "pNk" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/angled_tgmc/prep/prep_delta{ - name = "cockpit"; - req_one_access = list(19,43,67) - }, /obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "tourbus" + fancy_shuttle_tag = "tourbus"; + name = "tourbus" + }, +/obj/structure/cable/green{ + icon_state = "2-8" }, /turf/simulated/floor/tiled, /area/shuttle/tourbus/cockpit) @@ -42129,13 +42256,33 @@ /turf/simulated/floor/carpet, /area/tether/surfacebase/security/hos) "rbR" = ( +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tourbus"; + name = "tourbus" + }, /obj/structure/cable/orange{ d1 = 1; d2 = 2; icon_state = "1-2" }, +/turf/simulated/floor/tiled, +/area/shuttle/tourbus/general) +"rdD" = ( /obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "tourbus" + fancy_shuttle_tag = "tourbus"; + name = "tourbus" + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/button/remote/airlock{ + desiredstate = 1; + id = "tourbus_left"; + name = "hatch bolt control"; + pixel_x = -28; + pixel_y = 4; + req_one_access = list(19,43,67); + specialfunctions = 4 }, /turf/simulated/floor/tiled, /area/shuttle/tourbus/general) @@ -42630,6 +42777,17 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_three) +"sVC" = ( +/obj/machinery/door/firedoor/glass/hidden/shuttle, +/obj/machinery/door/blast/shuttle/open{ + id = "tourbus_windows"; + name = "Shuttle Blast Doors" + }, +/obj/structure/window/fancy_shuttle{ + fancy_shuttle_tag = "tourbus" + }, +/turf/simulated/floor, +/area/shuttle/tourbus/general) "sWs" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 8 @@ -42808,13 +42966,6 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/iaa/officeb) -"tOT" = ( -/obj/machinery/computer/ship/helm, -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "tourbus" - }, -/turf/simulated/floor/tiled, -/area/shuttle/tourbus/cockpit) "tPE" = ( /obj/structure/table/reinforced, /obj/item/weapon/book/manual/security_space_law, @@ -42941,7 +43092,11 @@ /area/tether/surfacebase/public_garden_three) "uhm" = ( /obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "tourbus" + fancy_shuttle_tag = "tourbus"; + name = "tourbus" + }, +/obj/structure/bed/chair/shuttle{ + dir = 4 }, /turf/simulated/floor/tiled, /area/shuttle/tourbus/general) @@ -43045,6 +43200,18 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/briefingroom) +"uzl" = ( +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "lifeboat1"; + name = "lifeboat1" + }, +/obj/machinery/light/floortube{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/shuttle/tether{ + base_turf = /turf/simulated/floor/reinforced + }) "uAI" = ( /obj/structure/cable/green{ d1 = 1; @@ -43075,11 +43242,16 @@ /turf/simulated/floor/tiled, /area/tether/surfacebase/surface_three_hall) "uLh" = ( -/obj/machinery/computer/ship/sensors, -/obj/effect/floor_decal/fancy_shuttle{ +/obj/machinery/door/firedoor/glass/hidden/shuttle, +/obj/machinery/door/blast/shuttle/open{ + dir = 4; + id = "tourbus_windows"; + name = "Shuttle Blast Doors" + }, +/obj/structure/window/fancy_shuttle{ fancy_shuttle_tag = "tourbus" }, -/turf/simulated/floor/tiled, +/turf/simulated/floor, /area/shuttle/tourbus/cockpit) "uMD" = ( /obj/machinery/hologram/holopad, @@ -43103,8 +43275,14 @@ landmark_tag = "tether_backup_low"; name = "Surface Hangar" }, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "lifeboat1"; + name = "lifeboat1" + }, /turf/simulated/floor/tiled, -/area/shuttle/tether) +/area/shuttle/tether{ + base_turf = /turf/simulated/floor/reinforced + }) "uWw" = ( /obj/machinery/door/firedoor/glass, /obj/structure/grille, @@ -43512,6 +43690,23 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/upperhall) +"wnm" = ( +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tourbus"; + name = "tourbus" + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + dir = 8; + frequency = 1380; + id_tag = "tourbus_docker"; + pixel_x = 27; + pixel_y = 4 + }, +/turf/simulated/floor/tiled, +/area/shuttle/tourbus/general) "wob" = ( /obj/structure/table/reinforced, /obj/item/weapon/folder{ @@ -43596,7 +43791,7 @@ /turf/simulated/wall/fancy_shuttle{ fancy_shuttle_tag = "tourbus" }, -/area/shuttle/tourbus/general) +/area/shuttle/tourbus/cockpit) "wBv" = ( /obj/structure/table/reinforced, /obj/machinery/door/firedoor/glass, @@ -43665,23 +43860,16 @@ /turf/simulated/floor/carpet, /area/tether/surfacebase/security/hos) "wQf" = ( +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tourbus"; + name = "tourbus" + }, +/obj/structure/bed/chair/shuttle{ + dir = 4 + }, /obj/machinery/atmospherics/pipe/simple/hidden/yellow{ dir = 4 }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/bed/chair/bay/chair{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "tourbus" - }, /turf/simulated/floor/tiled, /area/shuttle/tourbus/general) "wQs" = ( @@ -43869,9 +44057,22 @@ /turf/simulated/floor/tiled, /area/tether/surfacebase/security/upperhall) "xtq" = ( -/turf/simulated/wall/fancy_shuttle/nondense{ - fancy_shuttle_tag = "tourbus" +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tourbus"; + name = "tourbus" }, +/obj/structure/bed/chair/bay/comfy/blue{ + dir = 1 + }, +/obj/structure/closet/emergsuit_wall{ + dir = 1; + pixel_y = -32 + }, +/obj/structure/panic_button/small{ + pixel_x = 16; + pixel_y = -31 + }, +/turf/simulated/floor/tiled, /area/shuttle/tourbus/cockpit) "xud" = ( /obj/structure/table/rack/shelf, @@ -44042,16 +44243,22 @@ /turf/simulated/floor/tiled, /area/tether/surfacebase/surface_three_hall) "xOa" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "tourbus"; + name = "tourbus" + }, +/obj/structure/cable/green{ + dir = 1; icon_state = "1-2" }, -/obj/effect/floor_decal/fancy_shuttle{ - fancy_shuttle_tag = "tourbus" +/obj/machinery/door/airlock/glass{ + name = "Tourbus Cockpit"; + req_access = null; + req_one_access = list(67) }, +/obj/machinery/door/firedoor, /turf/simulated/floor/tiled, -/area/shuttle/tourbus/general) +/area/shuttle/tourbus/cockpit) "xQv" = ( /obj/structure/table/reinforced, /obj/item/weapon/folder/red_hos, @@ -44161,6 +44368,11 @@ }, /turf/simulated/floor/wood, /area/tether/surfacebase/security/hos) +"ykY" = ( +/turf/simulated/wall/fancy_shuttle{ + fancy_shuttle_tag = "tourbus" + }, +/area/shuttle/tourbus/general) (1,1,1) = {" aaa @@ -46642,7 +46854,7 @@ aac aac aac aac -aac +axb aac aac aac @@ -48758,7 +48970,7 @@ aac aac aac aac -aac +axb aac aac aac @@ -49446,7 +49658,7 @@ aUF xFm aDn hMw -aDn +enD akm aDi aDs @@ -49742,7 +49954,7 @@ aDT arW arW aVE -aWF +lli akn alP aac @@ -49914,7 +50126,7 @@ aac aac aac aac -aac +axb aac aac aac @@ -50310,7 +50522,7 @@ cAZ arW agw aVG -aWF +nSh aTO akS aly @@ -51336,7 +51548,7 @@ atV ahh auu auu -axF +axt ayr aBe afK @@ -51425,7 +51637,7 @@ aac aac aac aac -aac +axb aac aac aac @@ -51478,7 +51690,7 @@ atW ahh auu auu -auu +ayB ayB aBg afK @@ -51620,7 +51832,7 @@ akt ahh auu auu -axO +axv ayB aBh aBj @@ -53712,7 +53924,7 @@ bzK agg adW qAt -snE +iUz ajJ aTX aVI @@ -55182,16 +55394,16 @@ aHR awf aJn aKa -xtq -cdf -cdf +aKU cdf wyi -gQb -gQb +wyi +ykY +sVC +sVC ccN -gQb -gQb +ykY +sVC jpB gjD bbX @@ -55324,19 +55536,19 @@ aHR awf aJn aKa -cdf -cdf -jvK -cdf -kdx +aKU +wyi +wyi +hjt +wyi ngV uhm +oPE +rdD uhm -uhm -aUN fag -wyi -wyi +ykY +ykY aKU aOI aPb @@ -55466,19 +55678,19 @@ aXn aIy ats aKD -jER -tOT +aKU +uLh ddn -cdf -aUN +jER +wyi gHc -xOa -xOa -xOa -dVW +uhm +oPE +oPE +uhm wQf gBr -wyi +ykY aKU avs aKj @@ -55608,19 +55820,19 @@ aXp awf aJn aKa -jER -cUF +aKU +uLh ndK pNk xOa aXa -uhm +aXa kcC eGv -aUq +aXa fEX gCZ -wyi +ykY aKU aOI bgW @@ -55750,19 +55962,19 @@ aXu aIz aJn aKa -jER +aKU uLh oSQ -cdf -mse -mse -uhm +xtq +wyi +nrQ +nrQ gUL rbR aUx fJJ gLd -wyi +ykY aKU aOI bgW @@ -55892,19 +56104,19 @@ aIa aOJ ats ieb -cdf -cdf -nkq -cdf -ivq +aKU +wyi +wyi +nnr +wyi lVB -uhm +nrQ fcg -uhm -mse +wnm +nrQ fNO -wyi -wyi +ykY +ykY aKU aOK bgW @@ -56034,16 +56246,16 @@ aIa aIz aJn aKa -hjt -cdf -cdf -cdf +aKU +cta wyi -gQb -gQb +wyi +ykY +sVC +sVC cdv -gQb -gQb +ykY +sVC fWR gjD hpY @@ -56830,7 +57042,7 @@ bmr acR blA bmI -acR +eDc aim ake aGm @@ -56909,7 +57121,7 @@ aPu qbo bhi bhm -beU +fsd bhp beU beU @@ -57412,7 +57624,7 @@ aeG ajh avG akn -alk +eaj alk bdD ayx @@ -57584,7 +57796,7 @@ beX beX bcY bdq -bbk +eOP bbk beS lHr @@ -58056,7 +58268,7 @@ biH dyV bja biL -biL +ieh bju biF adG @@ -58169,10 +58381,10 @@ aJn aKU aMF aNa +fzG aNK aNK -aNK -aNK +uzl asj aKU abg @@ -58593,13 +58805,13 @@ aKn arJ arJ aKU -aKU +oqz aKU aKU aKI aKU aKU -aKU +oqz aKU aKj aOl @@ -59433,7 +59645,7 @@ asX aLd bbU baF -asX +kFE aLd bbU bdJ @@ -59601,7 +59813,7 @@ aac aac aac aac -aac +axb aac aac aac diff --git a/maps/tether/tether-04-transit.dmm b/maps/tether/tether-04-transit.dmm index bb4701048b..72748da792 100644 --- a/maps/tether/tether-04-transit.dmm +++ b/maps/tether/tether-04-transit.dmm @@ -26,6 +26,10 @@ }, /turf/simulated/floor/plating, /area/maintenance/tether_midpoint) +"cC" = ( +/obj/effect/landmark/vermin, +/turf/simulated/floor/wood, +/area/tether/midpoint) "cH" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, @@ -372,6 +376,10 @@ }, /turf/simulated/floor/wood, /area/tether/midpoint) +"zr" = ( +/obj/effect/landmark/vines, +/turf/simulated/floor/wood, +/area/tether/midpoint) "zG" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -8916,7 +8924,7 @@ kz Et zi pK -pK +zr pK pK pK @@ -10762,7 +10770,7 @@ kz Et Pz Or -pK +cC pK pK Tz diff --git a/maps/tether/tether-05-station1.dmm b/maps/tether/tether-05-station1.dmm index 1df621558f..76a2226a6b 100644 --- a/maps/tether/tether-05-station1.dmm +++ b/maps/tether/tether-05-station1.dmm @@ -64,6 +64,39 @@ /obj/item/clothing/head/pizzaguy, /turf/simulated/floor/tiled, /area/quartermaster/warehouse) +"aai" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "Messaging Server"; + req_one_access = list(16,17,61) + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 8 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/dark, +/area/ai_server_room) +"aaj" = ( +/obj/machinery/door/airlock/glass{ + name = "Medbus Cockpit"; + req_one_access = list(5,67) + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "medbus"; + name = "medbus" + }, +/turf/simulated/floor/tiled, +/area/shuttle/medivac/cockpit) "aak" = ( /obj/machinery/light{ dir = 8 @@ -154,8 +187,8 @@ RCon_tag = "Engine - Core"; charge = 2e+006; input_attempt = 1; - input_level = 100000; - output_level = 200000 + input_level = 200000; + output_level = 250000 }, /obj/structure/cable/cyan{ d2 = 2; @@ -870,6 +903,20 @@ }, /turf/simulated/floor/tiled/techmaint, /area/engineering/engine_smes) +"abJ" = ( +/obj/machinery/door/airlock/glass{ + name = "Secbus Cockpit"; + req_one_access = list(1,67) + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "secbus"; + name = "secbus" + }, +/turf/simulated/floor/tiled, +/area/shuttle/securiship/cockpit) "abK" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -1972,6 +2019,26 @@ /area/tcommsat/entrance{ name = "\improper Telecomms Entrance" }) +"ads" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + frequency = 1381; + icon_state = "door_locked"; + id_tag = "server_access_inner"; + locked = 1; + name = "Telecoms Server Access"; + req_access = list(61) + }, +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1381; + master_tag = "server_access_airlock"; + name = "interior access button"; + pixel_x = -28; + pixel_y = 0; + req_one_access = list(61) + }, +/turf/simulated/floor/tiled/techfloor, +/area/tcommsat/chamber) "adt" = ( /obj/structure/cable/green{ d1 = 1; @@ -2256,6 +2323,29 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/atrium) +"adN" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + frequency = 1381; + icon_state = "door_locked"; + id_tag = "server_access_outer"; + locked = 1; + name = "Telecoms Server Access"; + req_access = list(61) + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1381; + master_tag = "server_access_airlock"; + name = "exterior access button"; + pixel_x = 0; + pixel_y = 26; + req_one_access = list(61) + }, +/turf/simulated/floor/tiled/techfloor, +/area/tcommsat/chamber) "adQ" = ( /obj/machinery/computer/power_monitor{ dir = 4; @@ -2785,6 +2875,14 @@ }, /turf/simulated/floor, /area/maintenance/station/eng_lower) +"afa" = ( +/obj/machinery/sleep_console, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "medbus"; + name = "medbus" + }, +/turf/simulated/floor/tiled, +/area/shuttle/medivac/general) "afe" = ( /obj/machinery/atmospherics/pipe/manifold/hidden, /turf/simulated/floor/tiled, @@ -3534,7 +3632,7 @@ dir = 8 }, /obj/effect/landmark/start{ - name = "Station Engineer" + name = "Engineer" }, /turf/simulated/floor/tiled, /area/engineering/engine_monitoring) @@ -5781,19 +5879,16 @@ /turf/simulated/floor/tiled, /area/tether/exploration/pathfinder_office) "amU" = ( -/obj/machinery/power/apc{ - alarms_hidden = 1; - name = "south bump"; - pixel_y = -28; - req_access = list(); - req_one_access = list(11,67) +/obj/structure/window/fancy_shuttle{ + fancy_shuttle_tag = "medbus" }, -/obj/structure/bed/chair/shuttle{ - dir = 4 +/obj/machinery/door/firedoor/glass/hidden/shuttle, +/obj/machinery/door/blast/shuttle/open{ + id = "medivac blast"; + name = "Shuttle Blast Doors" }, -/obj/structure/cable, -/turf/simulated/floor/tiled/eris/white, -/area/shuttle/medivac/general) +/turf/simulated/floor/plating, +/area/shuttle/medivac/cockpit) "amX" = ( /obj/structure/table/rack/shelf, /obj/item/weapon/tank/oxygen, @@ -5833,7 +5928,7 @@ dir = 8 }, /obj/effect/landmark/start{ - name = "Station Engineer" + name = "Engineer" }, /turf/simulated/floor/tiled, /area/engineering/engineering_monitoring) @@ -6558,9 +6653,6 @@ "aoJ" = ( /turf/simulated/wall/r_wall, /area/engineering/foyer) -"aoL" = ( -/turf/simulated/floor/tiled/eris/white, -/area/shuttle/medivac/general) "aoN" = ( /obj/machinery/telecomms/bus/preset_four, /turf/simulated/floor/tiled/dark{ @@ -7956,7 +8048,7 @@ icon_state = "comfychair_preview" }, /obj/effect/landmark/start{ - name = "Station Engineer" + name = "Engineer" }, /turf/simulated/floor/carpet, /area/engineering/break_room) @@ -8402,7 +8494,7 @@ icon_state = "comfychair_preview" }, /obj/effect/landmark/start{ - name = "Station Engineer" + name = "Engineer" }, /turf/simulated/floor/carpet, /area/engineering/break_room) @@ -8676,6 +8768,7 @@ dir = 4 }, /obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/monotile, /area/tether/station/dock_two) "auY" = ( @@ -8967,7 +9060,7 @@ icon_state = "comfychair_preview" }, /obj/effect/landmark/start{ - name = "Station Engineer" + name = "Engineer" }, /turf/simulated/floor/carpet, /area/engineering/break_room) @@ -8977,7 +9070,7 @@ icon_state = "comfychair_preview" }, /obj/effect/landmark/start{ - name = "Station Engineer" + name = "Engineer" }, /turf/simulated/floor/carpet, /area/engineering/break_room) @@ -9908,10 +10001,6 @@ "azc" = ( /turf/simulated/wall, /area/quartermaster/office) -"aze" = ( -/mob/living/simple_mob/animal/passive/opossum/poppy, -/turf/simulated/floor/tiled/monotile, -/area/engineering/workshop) "azk" = ( /obj/structure/cable/green{ d1 = 1; @@ -13084,7 +13173,7 @@ "aSB" = ( /obj/structure/bed/chair/office/dark, /obj/effect/landmark/start{ - name = "Station Engineer" + name = "Engineer" }, /turf/simulated/floor/tiled, /area/engineering/engineering_monitoring) @@ -13677,21 +13766,20 @@ /turf/simulated/floor/tiled/techmaint, /area/engineering/gravity_gen) "bbl" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ +/obj/effect/floor_decal/borderfloorwhite/corner{ dir = 8 }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, +/obj/effect/floor_decal/corner/paleblue/bordercorner{ + dir = 8 + }, +/turf/simulated/floor/tiled, /area/tether/station/dock_two) "bbs" = ( /obj/structure/bed/chair/office/dark{ dir = 4 }, /obj/effect/landmark/start{ - name = "Station Engineer" + name = "Engineer" }, /turf/simulated/floor/tiled, /area/engineering/foyer) @@ -14064,6 +14152,13 @@ }, /turf/simulated/floor/tiled, /area/engineering/foyer) +"beU" = ( +/turf/simulated/wall/fancy_shuttle/nondense{ + fancy_shuttle_tag = "medbus"; + nitrogen = 0; + oxygen = 0 + }, +/area/shuttle/medivac/general) "beY" = ( /obj/effect/floor_decal/steeldecal/steel_decals4{ dir = 5 @@ -14380,6 +14475,21 @@ /obj/structure/catwalk, /turf/simulated/floor, /area/maintenance/cargo) +"bnG" = ( +/obj/machinery/door/airlock/glass, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "medbus"; + name = "medbus" + }, +/turf/simulated/floor/tiled, +/area/shuttle/medivac/general) "bnI" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -14417,20 +14527,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/gateway/prep_room) -"bpd" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - frequency = 1381; - icon_state = "door_locked"; - id_tag = "server_access_outer"; - locked = 1; - name = "Telecoms Server Access"; - req_access = list(61) - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/tcommsat/chamber) "bpi" = ( /obj/machinery/camera/network/command, /turf/simulated/floor/tiled, @@ -14462,7 +14558,7 @@ icon_state = "1-8" }, /turf/simulated/floor/tiled, -/area/tether/station/dock_two) +/area/hallway/station/docks) "bqj" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ @@ -14549,6 +14645,16 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/tether/exploration/pilot_office) +"btm" = ( +/obj/machinery/atmospherics/unary/engine/fancy_shuttle{ + dir = 1 + }, +/turf/simulated/wall/fancy_shuttle/low{ + fancy_shuttle_tag = "medbus"; + nitrogen = 0; + oxygen = 0 + }, +/area/shuttle/medivac/engines) "btr" = ( /obj/structure/cable{ d1 = 4; @@ -15383,17 +15489,6 @@ /obj/machinery/door/airlock/maintenance/common, /turf/simulated/floor, /area/maintenance/station/exploration) -"bXn" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - frequency = 1381; - icon_state = "door_locked"; - id_tag = "server_access_inner"; - locked = 1; - name = "Telecoms Server Access"; - req_access = list(61) - }, -/turf/simulated/floor/tiled/techfloor, -/area/tcommsat/chamber) "bXv" = ( /obj/structure/cable/green{ d1 = 1; @@ -15628,6 +15723,17 @@ /obj/item/device/multitool, /turf/simulated/floor/plating, /area/storage/tech) +"cbU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/turf/simulated/wall/fancy_shuttle{ + fancy_shuttle_tag = "secbus" + }, +/area/shuttle/securiship/engines) "cbY" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 @@ -15773,6 +15879,22 @@ }, /turf/simulated/floor/tiled/dark, /area/gateway/prep_room) +"cic" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "secbus"; + name = "secbus" + }, +/turf/simulated/floor/tiled, +/area/shuttle/securiship/engines) "cii" = ( /obj/structure/closet/secure_closet/xenoarchaeologist, /turf/simulated/floor/tiled/dark, @@ -15832,8 +15954,9 @@ /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/paleblue/border, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/machinery/light, /turf/simulated/floor/tiled, /area/tether/station/dock_two) "cjQ" = ( @@ -15866,6 +15989,16 @@ }, /turf/space, /area/space) +"cmX" = ( +/obj/machinery/atmospherics/unary/engine/fancy_shuttle{ + dir = 1 + }, +/turf/simulated/wall/fancy_shuttle/low{ + fancy_shuttle_tag = "secbus"; + nitrogen = 0; + oxygen = 0 + }, +/area/shuttle/securiship/engines) "cnB" = ( /obj/structure/cable/green{ d1 = 4; @@ -15998,6 +16131,24 @@ /obj/effect/floor_decal/rust, /turf/simulated/floor, /area/storage/tech) +"cuj" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/station/dock_two) "cwo" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 @@ -16180,20 +16331,17 @@ /turf/simulated/floor/tiled/steel, /area/shuttle/excursion/power) "cDk" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 6 }, /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 5 }, -/obj/machinery/camera/network/tether{ - dir = 4 +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 }, /turf/simulated/floor/tiled, /area/tether/station/dock_two) @@ -16213,6 +16361,17 @@ }, /turf/simulated/floor/tiled, /area/ai_monitored/storage/eva) +"cDU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/turf/simulated/wall/fancy_shuttle{ + fancy_shuttle_tag = "medbus" + }, +/area/shuttle/medivac/engines) "cEE" = ( /turf/simulated/wall/r_wall, /area/bridge/secondary/teleporter) @@ -16299,7 +16458,7 @@ }, /obj/machinery/door/airlock/angled_tgmc{ dir = 4; - req_one_access = list(67) + req_one_access = list(19,43,67) }, /obj/effect/floor_decal/fancy_shuttle{ fancy_shuttle_tag = "explo" @@ -16319,7 +16478,7 @@ /area/quartermaster/belterdock) "cIa" = ( /obj/machinery/door/airlock/angled_tgmc/dropship2_pilot{ - req_one_access = list(67) + req_one_access = list(19,43,67) }, /obj/effect/floor_decal/fancy_shuttle{ fancy_shuttle_tag = "explo" @@ -16347,6 +16506,14 @@ }, /turf/simulated/floor/tiled/dark, /area/bridge/secondary/teleporter) +"cMD" = ( +/obj/structure/bed/chair/bay/chair, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "secbus"; + name = "secbus" + }, +/turf/simulated/floor/tiled, +/area/shuttle/securiship/general) "cNg" = ( /obj/structure/cable/green{ d1 = 1; @@ -16374,7 +16541,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/door/airlock/angled_tgmc/dropship2_pilot{ - req_one_access = list(67) + req_one_access = list(19,43,67) }, /obj/effect/floor_decal/fancy_shuttle{ fancy_shuttle_tag = "explo" @@ -16912,25 +17079,6 @@ }, /turf/simulated/floor/tiled/steel, /area/shuttle/excursion/general) -"dls" = ( -/obj/machinery/door/airlock/highsecurity{ - name = "Messaging Server"; - req_one_access = list(12,16,17,61) - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/tiled/dark, -/area/ai_server_room) "dnU" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -16985,6 +17133,22 @@ /obj/random/tool, /turf/simulated/floor, /area/storage/tech) +"doW" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "medbus"; + name = "medbus" + }, +/turf/simulated/floor/tiled, +/area/shuttle/medivac/engines) "dqh" = ( /obj/machinery/embedded_controller/radio/airlock/docking_port{ dir = 8; @@ -17232,6 +17396,18 @@ }, /turf/simulated/floor, /area/maintenance/substation/exploration) +"dAx" = ( +/obj/machinery/power/smes/buildable/point_of_interest, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "secbus"; + name = "secbus" + }, +/turf/simulated/floor/tiled, +/area/shuttle/securiship/engines) "dAV" = ( /obj/structure/bed/chair/shuttle, /obj/item/device/radio/intercom{ @@ -17249,6 +17425,30 @@ }, /turf/simulated/floor, /area/tether/exploration) +"dCt" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/tether/station/dock_two) +"dDk" = ( +/obj/effect/fancy_shuttle/secbus{ + dir = 1; + fancy_shuttle_tag = "secbus" + }, +/obj/effect/fancy_shuttle_floor_preview/secbus{ + dir = 1 + }, +/turf/simulated/wall/fancy_shuttle/nondense{ + fancy_shuttle_tag = "secbus"; + nitrogen = 0; + oxygen = 0 + }, +/area/shuttle/securiship/engines) "dDo" = ( /obj/structure/bed/chair/comfy/beige{ dir = 4 @@ -17314,7 +17514,7 @@ icon_state = "1-2" }, /obj/machinery/door/airlock/angled_tgmc{ - req_one_access = list(67) + req_one_access = list(19,43,67) }, /obj/effect/floor_decal/fancy_shuttle{ fancy_shuttle_tag = "explo" @@ -17371,8 +17571,11 @@ /obj/effect/floor_decal/corner/red/border{ dir = 8 }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, /turf/simulated/floor/tiled, -/area/tether/station/dock_two) +/area/hallway/station/docks) "dNn" = ( /obj/structure/cable/green{ d1 = 1; @@ -17388,7 +17591,7 @@ /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 6 }, -/obj/effect/floor_decal/corner/red/border{ +/obj/effect/floor_decal/corner/lightgrey/border{ dir = 8 }, /obj/effect/floor_decal/borderfloor/corner2{ @@ -17398,7 +17601,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/station/dock_two) +/area/hallway/station/docks) "dNU" = ( /obj/machinery/firealarm{ dir = 8; @@ -17472,6 +17675,26 @@ /obj/structure/closet/secure_closet/pilot, /turf/simulated/floor/tiled, /area/tether/exploration/pilot_office) +"dRZ" = ( +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 10 + }, +/obj/structure/table/standard, +/obj/item/weapon/tank/phoron, +/obj/random/medical, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "medbus"; + name = "medbus" + }, +/turf/simulated/floor/tiled, +/area/shuttle/medivac/engines) "dSp" = ( /turf/simulated/wall, /area/mine/explored/upper_level) @@ -17589,6 +17812,21 @@ }, /turf/simulated/floor/reinforced, /area/tether/exploration) +"dYK" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "secbus"; + name = "secbus" + }, +/turf/simulated/floor/tiled, +/area/shuttle/securiship/engines) "dYO" = ( /obj/machinery/portable_atmospherics/canister/empty, /obj/machinery/atmospherics/portables_connector, @@ -17690,6 +17928,12 @@ }, /turf/simulated/floor/tiled/steel, /area/shuttle/excursion/power) +"eif" = ( +/obj/machinery/door/airlock/glass_external, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/map_helper/airlock/door/int_door, +/turf/simulated/floor/tiled, +/area/tether/station/dock_two) "ejF" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 1 @@ -17842,26 +18086,11 @@ /turf/simulated/floor/tiled, /area/quartermaster/belterdock/surface_mining_outpost_shuttle_hangar) "etg" = ( -/obj/structure/cable{ - icon_state = "4-8" +/obj/machinery/camera/network/tether{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/station/dock_two) +/turf/space, +/area/space) "etY" = ( /turf/simulated/wall, /area/maintenance/station/exploration) @@ -17878,6 +18107,13 @@ }, /turf/simulated/floor/tiled/steel, /area/shuttle/excursion/general) +"ewT" = ( +/turf/simulated/wall/fancy_shuttle/low{ + fancy_shuttle_tag = "medbus"; + nitrogen = 0; + oxygen = 0 + }, +/area/shuttle/medivac/engines) "exi" = ( /obj/item/device/radio/intercom{ dir = 8; @@ -17910,13 +18146,22 @@ /turf/simulated/floor/tiled, /area/quartermaster/storage) "eyT" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/machinery/camera/network/tether{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloorwhite{ dir = 8 }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, /area/tether/station/dock_two) "ezh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/universal, @@ -17928,7 +18173,7 @@ "eBg" = ( /obj/machinery/door/airlock/angled_tgmc{ dir = 4; - req_one_access = list(67) + req_one_access = list(19,43,67) }, /obj/effect/floor_decal/fancy_shuttle{ fancy_shuttle_tag = "explo" @@ -17974,7 +18219,7 @@ }, /obj/machinery/door/airlock/angled_tgmc{ dir = 4; - req_one_access = list(67) + req_one_access = list(19,43,67) }, /obj/effect/floor_decal/fancy_shuttle{ fancy_shuttle_tag = "explo" @@ -18181,7 +18426,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/tiled, -/area/tether/station/dock_two) +/area/hallway/station/docks) "ePh" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ dir = 4 @@ -18238,6 +18483,17 @@ }, /turf/simulated/floor/wood, /area/quartermaster/qm) +"eSM" = ( +/obj/structure/bed/chair/bay/chair, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "secbus"; + name = "secbus" + }, +/turf/simulated/floor/tiled, +/area/shuttle/securiship/general) "eTo" = ( /obj/machinery/atmospherics/pipe/manifold/hidden{ dir = 4 @@ -18251,28 +18507,25 @@ fancy_shuttle_tag = "explo" }, /area/shuttle/excursion/general) -"eTQ" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "medivac blast"; - name = "Shuttle Blast Doors"; - opacity = 0 - }, -/turf/simulated/floor/plating/eris/under, -/area/shuttle/medivac/general) "eUE" = ( -/obj/machinery/shipsensors{ - dir = 4 +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 }, -/obj/effect/floor_decal/industrial/warning/full, -/turf/simulated/floor/airless, -/area/shuttle/medivac/cockpit) +/turf/simulated/floor/plating, +/area/tether/station/dock_two) +"eVl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 6 + }, +/turf/simulated/wall/fancy_shuttle/low{ + fancy_shuttle_tag = "secbus"; + nitrogen = 0; + oxygen = 0 + }, +/area/shuttle/securiship/engines) "eVP" = ( /obj/structure/closet/secure_closet/pilot, /obj/effect/floor_decal/borderfloor{ @@ -18458,7 +18711,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/station/dock_two) +/area/hallway/station/docks) "fji" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 @@ -18498,7 +18751,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/tiled, -/area/tether/station/dock_two) +/area/hallway/station/docks) "fkj" = ( /obj/machinery/atmospherics/binary/pump/fuel, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -18620,6 +18873,22 @@ /area/tether/outpost/solars_outside{ name = "\improper Telecomms Solar Field" }) +"fpK" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled, +/area/tether/station/dock_two) "fpX" = ( /obj/effect/floor_decal/borderfloor, /obj/machinery/firealarm{ @@ -18809,9 +19078,10 @@ /turf/simulated/floor/tiled/monotile, /area/quartermaster/foyer) "fyi" = ( -/turf/simulated/wall/fancy_shuttle/window{ +/obj/structure/window/fancy_shuttle{ fancy_shuttle_tag = "lifeboat2" }, +/turf/simulated/floor, /area/shuttle/large_escape_pod1) "fyF" = ( /obj/machinery/power/apc{ @@ -18887,6 +19157,20 @@ }, /turf/simulated/floor/tiled, /area/tether/station/dock_one) +"fDY" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/machinery/holoposter{ + pixel_y = -30 + }, +/turf/simulated/floor/tiled, +/area/tether/station/dock_two) "fEF" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -19044,6 +19328,26 @@ }, /turf/simulated/floor/tiled/steel, /area/shuttle/excursion/cargo) +"fNX" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance/common{ + name = "Engine Access"; + req_one_access = list(1,67) + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "secbus"; + name = "secbus" + }, +/turf/simulated/floor/tiled, +/area/shuttle/securiship/engines) "fOn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/fuel{ dir = 8 @@ -19254,6 +19558,19 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/engineering/hallway) +"gbm" = ( +/obj/structure/bed/chair/shuttle{ + dir = 8 + }, +/obj/structure/closet/emergsuit_wall{ + pixel_y = 32 + }, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "secbus"; + name = "secbus" + }, +/turf/simulated/floor/tiled, +/area/shuttle/securiship/general) "gbt" = ( /obj/machinery/door/airlock/glass_external, /obj/effect/map_helper/airlock/door/int_door, @@ -19280,6 +19597,17 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/belterdock/gear) +"gbR" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/phoron, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "secbus"; + name = "secbus" + }, +/turf/simulated/floor/tiled, +/area/shuttle/securiship/engines) "gcc" = ( /obj/machinery/status_display/supply_display{ pixel_y = -32 @@ -19290,9 +19618,6 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/storage) -"gcw" = ( -/turf/simulated/wall/rshull, -/area/shuttle/medivac/general) "gdu" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -19400,6 +19725,13 @@ /obj/effect/floor_decal/rust, /turf/simulated/floor, /area/maintenance/station/eng_lower) +"gio" = ( +/turf/simulated/wall/fancy_shuttle/low{ + fancy_shuttle_tag = "medbus"; + nitrogen = 0; + oxygen = 0 + }, +/area/shuttle/medivac/general) "gjd" = ( /obj/structure/cable/yellow{ d1 = 4; @@ -19557,6 +19889,18 @@ }, /turf/simulated/floor/tiled, /area/engineering/engineering_airlock) +"gmx" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/tether/station/dock_two) "gnc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 @@ -19632,6 +19976,25 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/foyer) +"gqN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "medbus"; + name = "medbus" + }, +/turf/simulated/floor/tiled, +/area/shuttle/medivac/general) "gsz" = ( /obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 4 @@ -19686,6 +20049,14 @@ }, /turf/simulated/floor/tiled, /area/tcommsat/computer) +"gvx" = ( +/obj/machinery/door/window/brigdoor/eastleft, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "secbus"; + name = "secbus" + }, +/turf/simulated/floor/tiled, +/area/shuttle/securiship/general) "gys" = ( /obj/machinery/door/blast/regular{ density = 0; @@ -19754,6 +20125,12 @@ }, /turf/simulated/floor/tiled/dark, /area/gateway) +"gCZ" = ( +/obj/effect/landmark{ + name = "maint_pred" + }, +/turf/simulated/floor, +/area/maintenance/station/eng_lower) "gDl" = ( /obj/machinery/light_switch{ dir = 1; @@ -19984,6 +20361,25 @@ }, /turf/simulated/floor/tiled, /area/tcommsat/computer) +"gPV" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/air, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "medbus"; + name = "medbus" + }, +/turf/simulated/floor/tiled, +/area/shuttle/medivac/engines) "gTz" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -20045,12 +20441,6 @@ /obj/machinery/door/firedoor/glass, /obj/structure/grille, /obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, /turf/simulated/floor/plating, /area/tether/station/dock_two) "gVL" = ( @@ -20482,6 +20872,14 @@ }, /turf/simulated/floor, /area/storage/tech) +"hnk" = ( +/obj/machinery/bodyscanner, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "medbus"; + name = "medbus" + }, +/turf/simulated/floor/tiled, +/area/shuttle/medivac/general) "hnS" = ( /obj/machinery/power/breakerbox/activated{ RCon_tag = "Telecomms Substation Bypass" @@ -20873,6 +21271,15 @@ /area/tcommsat/entrance{ name = "\improper Telecomms Entrance" }) +"hBR" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/tether/station/dock_two) "hBS" = ( /obj/structure/cable/green{ d1 = 4; @@ -20936,6 +21343,11 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/docks) +"hDi" = ( +/turf/simulated/wall/fancy_shuttle{ + fancy_shuttle_tag = "medbus" + }, +/area/shuttle/medivac/engines) "hDB" = ( /obj/structure/cable/green{ d1 = 1; @@ -20955,6 +21367,16 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/engineering/hallway) +"hDI" = ( +/obj/effect/shuttle_landmark{ + base_area = /area/space; + base_turf = /turf/space; + docking_controller = "dock_d2l"; + landmark_tag = "tether_dockarm_d2l"; + name = "Tether Dock D2L" + }, +/turf/space, +/area/space) "hDW" = ( /obj/machinery/atmospherics/pipe/manifold/hidden{ dir = 1 @@ -21293,20 +21715,10 @@ /area/tether/station/dock_two) "hSz" = ( /obj/effect/floor_decal/borderfloor{ - dir = 4 + dir = 1 }, /obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/structure/extinguisher_cabinet{ - dir = 8; - pixel_x = 30 + dir = 1 }, /turf/simulated/floor/tiled, /area/tether/station/dock_two) @@ -21528,9 +21940,10 @@ landmark_tag = "escapepod1_station"; name = "Tether Station" }, -/turf/simulated/wall/fancy_shuttle/window{ +/obj/structure/window/fancy_shuttle{ fancy_shuttle_tag = "lifeboat2" }, +/turf/simulated/floor, /area/shuttle/large_escape_pod1) "iaf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -21611,13 +22024,6 @@ }, /turf/simulated/floor/tiled, /area/tether/exploration/crew) -"ieY" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, -/area/tether/station/dock_two) "ifp" = ( /obj/effect/floor_decal/corner_steel_grid{ dir = 9 @@ -21746,6 +22152,44 @@ /obj/random/junk, /turf/simulated/floor, /area/maintenance/cargo) +"ijG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/station/dock_two) +"ijM" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/station/dock_two) +"imp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/turf/simulated/wall/fancy_shuttle{ + fancy_shuttle_tag = "medbus" + }, +/area/shuttle/medivac/general) "imG" = ( /obj/effect/floor_decal/steeldecal/steel_decals6{ dir = 8 @@ -21816,6 +22260,18 @@ /obj/random/junk, /turf/simulated/floor, /area/maintenance/station/eng_lower) +"ipw" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/tether/station/dock_two) "ipL" = ( /obj/machinery/alarm{ dir = 1; @@ -21898,6 +22354,24 @@ }, /turf/simulated/floor/tiled, /area/tether/station/dock_one) +"ivC" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/station/dock_two) "ivO" = ( /obj/machinery/mineral/stacking_unit_console, /turf/simulated/wall, @@ -22076,6 +22550,22 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/belterdock/gear) +"iEn" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "secbus"; + name = "secbus" + }, +/turf/simulated/floor/tiled, +/area/shuttle/securiship/general) "iGo" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled, @@ -22139,7 +22629,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/station/dock_two) +/area/hallway/station/docks) "iJr" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 @@ -22221,17 +22711,18 @@ /obj/effect/floor_decal/corner/lightgrey/border{ dir = 8 }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 6 }, /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 5 }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -26 +/obj/machinery/light{ + dir = 8 }, -/obj/structure/closet/emcloset, /turf/simulated/floor/tiled, /area/tether/station/dock_two) "iOm" = ( @@ -22322,10 +22813,20 @@ /turf/simulated/floor/tiled, /area/tether/station/dock_two) "iUV" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled, /area/tether/station/dock_two) "iVf" = ( /obj/structure/shuttle/window, @@ -22337,6 +22838,25 @@ }, /turf/simulated/floor/airless, /area/shuttle/belter) +"iVi" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "secbus"; + name = "secbus" + }, +/turf/simulated/floor/tiled, +/area/shuttle/securiship/general) "iVA" = ( /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 9 @@ -22430,9 +22950,18 @@ /obj/machinery/door/firedoor/glass, /obj/structure/grille, /obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, /obj/structure/window/reinforced{ dir = 1 }, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK" + }, /turf/simulated/floor/plating, /area/tether/station/dock_two) "iZJ" = ( @@ -22456,6 +22985,16 @@ /obj/machinery/door/airlock/maintenance/common, /turf/simulated/floor, /area/maintenance/cargo) +"jcX" = ( +/obj/structure/bed/chair/shuttle{ + dir = 8 + }, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "secbus"; + name = "secbus" + }, +/turf/simulated/floor/tiled, +/area/shuttle/securiship/general) "jeL" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled, @@ -22481,6 +23020,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, +/obj/effect/landmark/vermin, /turf/simulated/floor/tiled, /area/quartermaster/office) "jiq" = ( @@ -22510,6 +23050,25 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/quartermaster/storage) +"jjP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1380; + master_tag = "dock_d2a1"; + name = "interior access button"; + pixel_x = 28; + pixel_y = 26; + req_one_access = list(13) + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/tether/station/dock_two) "jjR" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -22607,33 +23166,40 @@ /turf/simulated/floor/tiled, /area/tether/station/dock_one) "jqN" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 4 +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1380; + id_tag = "dock_d2a1_pump" }, -/obj/structure/window/reinforced{ - dir = 1 +/obj/machinery/light/small, +/obj/machinery/airlock_sensor{ + frequency = 1380; + id_tag = "dock_d2a1_sensor"; + pixel_y = -25 }, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK" +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + frequency = 1380; + id_tag = "dock_d2a1"; + pixel_y = 28 }, -/turf/simulated/floor/plating, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/turf/simulated/floor/tiled/dark, /area/tether/station/dock_two) "jqT" = ( -/obj/effect/shuttle_landmark{ - base_area = /area/space; - base_turf = /turf/space; - docking_controller = "dock_d2a1"; - landmark_tag = "tether_dockarm_d2a1"; - name = "Tether Dock D2A1" +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1380; + master_tag = "dock_d2a1"; + name = "exterior access button"; + pixel_x = -5; + pixel_y = -26; + req_one_access = list(13) }, -/turf/space, -/area/space) +/obj/machinery/door/airlock/glass_external, +/obj/effect/map_helper/airlock/door/ext_door, +/turf/simulated/floor/tiled/dark, +/area/tether/station/dock_two) "jsP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -22708,6 +23274,16 @@ }, /turf/simulated/floor/tiled, /area/tether/exploration/crew) +"juV" = ( +/obj/effect/shuttle_landmark{ + base_area = /area/space; + base_turf = /turf/space; + docking_controller = "dock_d2a1"; + landmark_tag = "tether_dockarm_d2a1"; + name = "Tether Dock D2A1" + }, +/turf/space, +/area/space) "jvg" = ( /obj/random/maintenance/medical, /obj/structure/table/rack{ @@ -22738,22 +23314,25 @@ /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - frequency = 1380; - id_tag = "securiship_bay"; - pixel_x = -22; - pixel_y = 24 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 9 - }, /obj/structure/cable/green{ d1 = 4; d2 = 8; icon_state = "4-8" }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, /turf/simulated/floor/tiled, -/area/tether/station/dock_two) +/area/hallway/station/docks) "jyP" = ( /obj/structure/catwalk, /obj/machinery/firealarm{ @@ -22773,6 +23352,21 @@ /obj/machinery/camera/network/mining, /turf/simulated/floor/airless, /area/quartermaster/belterdock) +"jBN" = ( +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + dir = 4; + frequency = 1380; + id_tag = "dock_d2l"; + pixel_x = -28 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/station/dock_two) "jBW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/fuel{ dir = 5 @@ -22864,55 +23458,56 @@ /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 }, -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1380; - master_tag = "dock_d2a1"; - name = "interior access button"; - pixel_x = 28; - pixel_y = 26; - req_one_access = list(13) - }, /obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" + dir = 4 }, +/obj/machinery/door/firedoor/glass/hidden/steel, /turf/simulated/floor/tiled, /area/tether/station/dock_two) "jGw" = ( -/obj/machinery/door/airlock/glass_external, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 +/obj/structure/cable/green{ + icon_state = "4-8" }, -/obj/effect/map_helper/airlock/door/int_door, -/turf/simulated/floor/tiled/dark, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/turf/simulated/floor/tiled, /area/tether/station/dock_two) "jHc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /turf/simulated/floor/tiled, /area/tether/station/dock_two) "jHU" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8; - frequency = 1380; - id_tag = "dock_d2a1_pump" +/obj/effect/floor_decal/borderfloor{ + dir = 1 }, -/obj/machinery/light/small, -/obj/machinery/airlock_sensor{ - frequency = 1380; - id_tag = "dock_d2a1_sensor"; - pixel_y = -25 +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 }, -/obj/machinery/embedded_controller/radio/airlock/docking_port{ - frequency = 1380; - id_tag = "dock_d2a1"; - pixel_y = 28 +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 }, -/obj/effect/map_helper/airlock/atmos/chamber_pump, -/obj/effect/map_helper/airlock/sensor/chamber_sensor, -/turf/simulated/floor/tiled/dark, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled, /area/tether/station/dock_two) "jJo" = ( /obj/structure/handrail, @@ -22928,6 +23523,18 @@ }, /turf/simulated/floor/tiled/steel, /area/shuttle/excursion/cargo) +"jJE" = ( +/obj/structure/window/fancy_shuttle{ + fancy_shuttle_tag = "medbus" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/door/firedoor/glass/hidden/shuttle, +/obj/machinery/door/blast/shuttle/open{ + id = "medivac blast"; + name = "Shuttle Blast Doors" + }, +/turf/simulated/floor/plating, +/area/shuttle/medivac/general) "jJU" = ( /obj/effect/floor_decal/borderfloor{ dir = 6 @@ -22940,6 +23547,25 @@ /obj/structure/closet/emcloset, /turf/simulated/floor/tiled, /area/tether/station/dock_one) +"jLk" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -26 + }, +/turf/simulated/floor/tiled, +/area/tether/station/dock_two) "jLA" = ( /obj/structure/bed/chair/office/light{ dir = 4 @@ -22962,6 +23588,14 @@ /area/tether/outpost/solars_outside{ name = "\improper Telecomms Solar Field" }) +"jOl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/wall/fancy_shuttle{ + fancy_shuttle_tag = "secbus" + }, +/area/shuttle/securiship/general) "jOH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -23017,18 +23651,23 @@ /turf/simulated/floor/tiled, /area/tether/exploration/equipment) "jRG" = ( -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1380; - master_tag = "dock_d2a1"; - name = "exterior access button"; - pixel_x = -5; - pixel_y = -26; - req_one_access = list(13) +/obj/structure/disposalpipe/trunk{ + dir = 1 }, -/obj/machinery/door/airlock/glass_external, -/obj/effect/map_helper/airlock/door/ext_door, -/turf/simulated/floor/tiled/dark, +/obj/machinery/disposal, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled, /area/tether/station/dock_two) "jRT" = ( /obj/effect/fancy_shuttle/lifeboat2{ @@ -23490,6 +24129,19 @@ fancy_shuttle_tag = "explo" }, /area/shuttle/excursion/cargo) +"kiN" = ( +/obj/structure/fuel_port{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ + dir = 1 + }, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "medbus"; + name = "medbus" + }, +/turf/simulated/floor/tiled, +/area/shuttle/medivac/engines) "kjA" = ( /obj/structure/cable{ d1 = 4; @@ -23511,6 +24163,9 @@ /obj/effect/floor_decal/corner/lightgrey/bordercorner{ dir = 8 }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, /turf/simulated/floor/tiled, /area/tether/station/dock_two) "kkH" = ( @@ -23530,14 +24185,15 @@ /turf/simulated/floor/tiled, /area/quartermaster/belterdock/refinery) "klo" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 4 +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 }, -/obj/structure/window/reinforced, -/turf/simulated/floor/plating, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/turf/simulated/floor/tiled, /area/tether/station/dock_two) "klO" = ( /obj/effect/floor_decal/industrial/warning/corner, @@ -23668,12 +24324,10 @@ /turf/simulated/floor/tiled, /area/tether/station/dock_two) "kok" = ( -/obj/machinery/shipsensors{ - dir = 1 +/turf/simulated/wall/fancy_shuttle{ + fancy_shuttle_tag = "secbus" }, -/obj/effect/floor_decal/industrial/warning/full, -/turf/simulated/floor/airless, -/area/shuttle/securiship/cockpit) +/area/shuttle/securiship/general) "koo" = ( /obj/effect/floor_decal/industrial/outline/grey, /obj/machinery/conveyor_switch/oneway{ @@ -23699,6 +24353,10 @@ }, /turf/simulated/floor/airless, /area/ai_monitored/storage/eva) +"kpK" = ( +/obj/effect/landmark/vermin, +/turf/simulated/floor/tiled, +/area/tether/exploration/crew) "kqW" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -23751,6 +24409,10 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/wood, /area/quartermaster/qm) +"kuo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled, +/area/tether/station/dock_two) "kvF" = ( /obj/machinery/shower{ pixel_y = 16 @@ -23826,8 +24488,16 @@ /turf/simulated/shuttle/floor/yellow, /area/shuttle/mining_outpost/shuttle) "kyb" = ( -/turf/simulated/wall/rshull, -/area/shuttle/securiship/cockpit) +/obj/structure/window/fancy_shuttle{ + fancy_shuttle_tag = "secbus" + }, +/obj/machinery/door/firedoor/glass/hidden/shuttle, +/obj/machinery/door/blast/shuttle/open{ + id = "securiship blast"; + name = "Shuttle Blast Doors" + }, +/turf/simulated/floor/plating, +/area/shuttle/securiship/general) "kyd" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, @@ -23840,22 +24510,12 @@ /turf/simulated/floor/tiled, /area/tcommsat/computer) "kzv" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 1 +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "secbus"; + name = "secbus" }, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "securiship blast"; - name = "Shuttle Blast Doors"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/shuttle/securiship/cockpit) +/turf/simulated/floor/tiled, +/area/shuttle/securiship/general) "kzY" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 @@ -23963,6 +24623,20 @@ }, /turf/simulated/floor/tiled, /area/tether/exploration/hallway) +"kEt" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "medbus"; + name = "medbus" + }, +/turf/simulated/floor/tiled, +/area/shuttle/medivac/general) "kEI" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled, @@ -24001,8 +24675,11 @@ name = "\improper Telecomms Solar Field" }) "kIc" = ( -/turf/simulated/wall/rshull, -/area/shuttle/securiship/general) +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/wall/fancy_shuttle{ + fancy_shuttle_tag = "secbus" + }, +/area/shuttle/securiship/engines) "kIj" = ( /obj/effect/landmark/map_data/virgo3b, /turf/space, @@ -24084,6 +24761,20 @@ }, /turf/simulated/floor/tiled, /area/tether/exploration/crew) +"kKe" = ( +/obj/structure/bed/chair/shuttle{ + dir = 8 + }, +/obj/structure/closet/emergsuit_wall{ + dir = 1; + pixel_y = -32 + }, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "secbus"; + name = "secbus" + }, +/turf/simulated/floor/tiled, +/area/shuttle/securiship/general) "kKh" = ( /obj/structure/table/woodentable, /obj/item/weapon/pen, @@ -24094,11 +24785,10 @@ /turf/simulated/floor/tiled, /area/tether/exploration/crew) "kKj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 6 +/turf/simulated/wall/fancy_shuttle{ + fancy_shuttle_tag = "secbus" }, -/turf/simulated/wall/rshull, -/area/shuttle/securiship/general) +/area/shuttle/securiship/engines) "kKF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/landmark/start{ @@ -24107,13 +24797,12 @@ /turf/simulated/floor/tiled, /area/storage/tools) "kKY" = ( -/obj/effect/floor_decal/industrial/warning/full, -/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ - dir = 8 +/turf/simulated/wall/fancy_shuttle/nondense{ + fancy_shuttle_tag = "secbus"; + nitrogen = 0; + oxygen = 0 }, -/obj/effect/map_helper/airlock/atmos/pump_out_external, -/turf/simulated/floor/airless, -/area/shuttle/securiship/general) +/area/shuttle/securiship/engines) "kLG" = ( /obj/random/junk, /turf/simulated/floor, @@ -24235,6 +24924,7 @@ dir = 10 }, /obj/item/device/radio/beacon, +/obj/effect/landmark/vines, /turf/simulated/floor/tiled, /area/tether/station/dock_two) "kOF" = ( @@ -24293,12 +24983,6 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/foyer) -"kPX" = ( -/obj/machinery/computer/ship/helm{ - req_one_access = list(67,58) - }, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/shuttle/securiship/cockpit) "kQQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 @@ -24351,6 +25035,19 @@ /obj/structure/table/gamblingtable, /turf/simulated/floor/wood/broken, /area/maintenance/station/cargo) +"kTK" = ( +/obj/structure/bed/chair/bay/chair{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "secbus"; + name = "secbus" + }, +/turf/simulated/floor/tiled, +/area/shuttle/securiship/general) "kUL" = ( /obj/effect/floor_decal/borderfloor{ dir = 9 @@ -24482,6 +25179,13 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/tether/exploration/crew) +"kXu" = ( +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "medbus"; + name = "medbus" + }, +/turf/simulated/floor/tiled, +/area/shuttle/medivac/general) "kXF" = ( /obj/structure/disposalpipe/segment, /obj/structure/disposalpipe/segment, @@ -24621,19 +25325,6 @@ }, /turf/simulated/floor/tiled, /area/tether/exploration/crew) -"ldE" = ( -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/shuttle/securiship/cockpit) -"let" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/machinery/atmospherics/portables_connector/aux, -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/eris/steel/gray_perforated, -/area/shuttle/securiship/general) "lfI" = ( /obj/machinery/access_button{ command = "cycle_interior"; @@ -24664,6 +25355,25 @@ }, /turf/simulated/floor, /area/maintenance/substation/civilian) +"lhv" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/machinery/alarm{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled, +/area/tether/station/dock_two) "lhz" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 1 @@ -24687,10 +25397,6 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/atrium) -"liG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/aux, -/turf/simulated/wall/rshull, -/area/shuttle/securiship/general) "liM" = ( /obj/structure/cable/green{ d1 = 1; @@ -24819,6 +25525,14 @@ /obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled/white, /area/tether/station/dock_two) +"lof" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/turf/simulated/wall/fancy_shuttle{ + fancy_shuttle_tag = "medbus" + }, +/area/shuttle/medivac/engines) "loz" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -24836,7 +25550,7 @@ dir = 10 }, /turf/simulated/floor/tiled, -/area/tether/station/dock_two) +/area/hallway/station/docks) "loT" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -24902,6 +25616,15 @@ /area/tcomsat{ name = "\improper Telecomms Lobby" }) +"lsw" = ( +/obj/structure/table/rack, +/obj/item/weapon/handcuffs, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "secbus"; + name = "secbus" + }, +/turf/simulated/floor/tiled, +/area/shuttle/securiship/general) "luK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -24954,6 +25677,25 @@ /obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/tiled, /area/ai_monitored/storage/eva) +"lvZ" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1; + frequency = 1380; + id_tag = "dock_d2l_pump" + }, +/obj/machinery/airlock_sensor{ + frequency = 1380; + id_tag = "dock_d2l_sensor"; + pixel_x = -30; + pixel_y = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/turf/simulated/floor/tiled/dark, +/area/tether/station/dock_two) "lwa" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ dir = 8 @@ -25146,6 +25888,9 @@ /obj/structure/cable/green{ icon_state = "4-8" }, +/obj/machinery/camera/network/tether{ + dir = 1 + }, /turf/simulated/floor/tiled, /area/tether/station/dock_two) "lAt" = ( @@ -25183,20 +25928,36 @@ /obj/effect/floor_decal/corner/paleblue/bordercorner2, /turf/simulated/floor/tiled, /area/tether/station/dock_two) -"lCQ" = ( -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ +"lCR" = ( +/obj/machinery/power/terminal{ dir = 8 }, /obj/structure/cable/green{ - icon_state = "4-8" + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/table/standard, +/obj/item/weapon/tank/phoron, +/obj/random/tool, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "secbus"; + name = "secbus" + }, +/obj/structure/fuel_port{ + pixel_y = 32 }, -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled, -/area/tether/station/dock_two) +/area/shuttle/securiship/engines) +"lEm" = ( +/obj/structure/bed/chair/bay/chair{ + dir = 1 + }, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "secbus"; + name = "secbus" + }, +/turf/simulated/floor/tiled, +/area/shuttle/securiship/general) "lEt" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 5; @@ -25228,12 +25989,8 @@ /obj/structure/cable/green{ icon_state = "4-8" }, -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/paleblue/border, -/obj/machinery/light, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 1 - }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, /turf/simulated/floor/tiled, /area/tether/station/dock_two) "lFU" = ( @@ -25275,6 +26032,9 @@ name = "south bump"; pixel_y = -32 }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, /turf/simulated/floor/tiled, /area/tether/station/dock_two) "lGY" = ( @@ -25382,6 +26142,25 @@ }, /turf/simulated/floor/tiled, /area/tether/exploration/equipment) +"lJl" = ( +/obj/structure/bed/chair/shuttle{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -28; + req_access = list(); + req_one_access = list(11,67) + }, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "medbus"; + name = "medbus" + }, +/turf/simulated/floor/tiled, +/area/shuttle/medivac/general) "lJN" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk, @@ -25426,6 +26205,12 @@ }, /turf/simulated/floor/tiled/steel, /area/shuttle/excursion/cargo) +"lKA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/wall/fancy_shuttle{ + fancy_shuttle_tag = "medbus" + }, +/area/shuttle/medivac/engines) "lLp" = ( /obj/machinery/door/airlock/glass_external, /obj/effect/map_helper/airlock/door/int_door, @@ -25543,8 +26328,31 @@ /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 1 }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, /turf/simulated/floor/tiled, /area/tether/station/dock_two) +"lNb" = ( +/obj/structure/bed/chair/shuttle{ + dir = 1 + }, +/obj/structure/sign/nosmoking_1{ + pixel_x = 32 + }, +/obj/structure/closet/emergsuit_wall{ + dir = 1; + pixel_y = -32 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "medbus"; + name = "medbus" + }, +/turf/simulated/floor/tiled, +/area/shuttle/medivac/general) "lNz" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -25574,6 +26382,11 @@ /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 2 }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /turf/simulated/floor/tiled, /area/tether/station/dock_two) "lPD" = ( @@ -25612,6 +26425,24 @@ }, /turf/simulated/floor/tiled, /area/tether/exploration/crew) +"lRe" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/station/dock_two) "lSs" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/borderfloor{ @@ -25720,12 +26551,18 @@ /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, /turf/simulated/floor/tiled, /area/tether/station/dock_two) "lWx" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "2-8" + }, /turf/simulated/floor/tiled, /area/tether/station/dock_two) "lYw" = ( @@ -25744,22 +26581,11 @@ /turf/simulated/floor/tiled, /area/tether/exploration/hallway) "lYR" = ( -/obj/structure/disposalpipe/trunk{ +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/machinery/door/firedoor/glass/hidden/steel{ dir = 1 }, -/obj/machinery/disposal, -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 6 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 6 - }, /turf/simulated/floor/tiled, /area/tether/station/dock_two) "lZz" = ( @@ -25820,12 +26646,6 @@ }, /turf/simulated/floor/tiled, /area/tether/exploration/equipment) -"mbN" = ( -/obj/machinery/computer/ship/engines{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/shuttle/securiship/cockpit) "mdh" = ( /obj/structure/cable/green{ d1 = 2; @@ -25890,36 +26710,6 @@ }, /turf/simulated/floor/tiled, /area/tether/exploration/equipment) -"mgU" = ( -/obj/structure/bed/chair/bay/chair/padded/beige{ - dir = 1 - }, -/obj/machinery/button/remote/blast_door{ - id = "securiship blast"; - name = "Shuttle Blast Doors"; - pixel_x = -28; - pixel_y = 28; - req_access = list(67) - }, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/shuttle/securiship/cockpit) -"mim" = ( -/obj/machinery/computer/ship/sensors{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/shuttle/securiship/cockpit) -"mjc" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux, -/obj/structure/closet/emergsuit_wall{ - pixel_x = 27 - }, -/turf/simulated/floor/tiled/eris/steel/gray_perforated, -/area/shuttle/securiship/general) "mkL" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -25943,72 +26733,17 @@ /obj/machinery/door/firedoor/glass/hidden/steel, /turf/simulated/floor/tiled, /area/engineering/engineering_airlock) -"mnd" = ( -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ - dir = 1 - }, -/obj/machinery/embedded_controller/radio/airlock/docking_port{ - dir = 4; - frequency = 1380; - id_tag = "securiship_docker"; - pixel_x = -28 - }, -/obj/effect/map_helper/airlock/atmos/pump_out_internal, -/obj/machinery/airlock_sensor{ - pixel_y = 28 - }, -/obj/effect/map_helper/airlock/sensor/chamber_sensor, -/obj/effect/shuttle_landmark{ - base_area = /area/space; - base_turf = /turf/space; - docking_controller = "securiship_bay"; - landmark_tag = "tether_securiship_dock"; - name = "Securiship Dock" - }, -/obj/effect/overmap/visitable/ship/landable/securiship, -/turf/simulated/floor/tiled/eris/techmaint_cargo, -/area/shuttle/securiship/general) "mnj" = ( /obj/effect/floor_decal/rust, /turf/simulated/floor, /area/maintenance/station/cargo) "mnt" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 5 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/tiled, +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, /area/tether/station/dock_two) -"mnv" = ( -/obj/machinery/door/airlock/glass_external, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/map_helper/airlock/door/ext_door, -/turf/simulated/floor/tiled/eris/techmaint_panels, -/area/shuttle/securiship/general) "mnT" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -26036,16 +26771,6 @@ }, /turf/simulated/floor/tiled/steel, /area/shuttle/excursion/cargo) -"mou" = ( -/obj/machinery/door/airlock/glass_external, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/map_helper/airlock/door/simple, -/turf/simulated/floor/tiled, -/area/tether/station/dock_two) "mpB" = ( /obj/machinery/hologram/holopad, /obj/structure/cable{ @@ -26249,19 +26974,6 @@ }, /turf/simulated/floor/tiled, /area/engineering/hallway) -"myi" = ( -/obj/structure/cable/cyan{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - cell_type = /obj/item/weapon/cell/super; - dir = 8; - name = "west bump"; - pixel_x = -28 - }, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/shuttle/securiship/cockpit) "myq" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 @@ -26322,11 +27034,9 @@ /obj/structure/cable/green{ icon_state = "4-8" }, -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/paleblue/border, -/obj/machinery/camera/network/tether{ - dir = 1 - }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/machinery/light, /turf/simulated/floor/tiled, /area/tether/station/dock_two) "mAd" = ( @@ -26368,6 +27078,13 @@ }, /turf/simulated/wall/r_wall, /area/maintenance/substation/civilian) +"mBL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/vines, +/turf/simulated/floor/tiled, +/area/hallway/station/docks) "mBY" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -26383,14 +27100,6 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/quartermaster/qm) -"mCt" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/shuttle/securiship/cockpit) "mCI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 8 @@ -26466,31 +27175,6 @@ /area/tcomsat{ name = "\improper Telecomms Lobby" }) -"mFp" = ( -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/shuttle/securiship/cockpit) -"mFw" = ( -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/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/simple/hidden/aux, -/turf/simulated/floor/tiled/eris/steel/gray_perforated, -/area/shuttle/securiship/general) "mFS" = ( /obj/structure/plasticflaps, /obj/structure/window/reinforced{ @@ -26543,18 +27227,25 @@ }, /turf/simulated/floor/tiled, /area/tether/station/dock_one) -"mIR" = ( +"mIV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 6 + }, /obj/structure/cable/green{ - dir = 1; - icon_state = "1-2" + icon_state = "4-8" }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux, -/obj/effect/map_helper/airlock/atmos/chamber_pump, -/obj/machinery/light/small{ - dir = 8 +/obj/structure/cable{ + icon_state = "2-4" }, -/turf/simulated/floor/tiled/eris/techmaint_cargo, -/area/shuttle/securiship/general) +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "secbus"; + name = "secbus" + }, +/turf/simulated/floor/tiled, +/area/shuttle/securiship/engines) "mJd" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 @@ -26640,21 +27331,6 @@ /obj/machinery/camera/network/command, /turf/simulated/floor/tiled/dark, /area/gateway) -"mNy" = ( -/obj/machinery/door/airlock/glass_external, -/obj/effect/map_helper/airlock/door/ext_door, -/obj/machinery/airlock_sensor/airlock_exterior/shuttle{ - dir = 4; - pixel_y = -28 - }, -/obj/effect/map_helper/airlock/sensor/ext_sensor, -/turf/simulated/floor/tiled/eris/techmaint_panels, -/area/shuttle/securiship/general) -"mNU" = ( -/obj/machinery/door/airlock/glass_external, -/obj/effect/map_helper/airlock/door/simple, -/turf/simulated/floor/tiled, -/area/tether/station/dock_two) "mOz" = ( /obj/machinery/firealarm{ dir = 4; @@ -26680,7 +27356,7 @@ dir = 5 }, /turf/simulated/floor/tiled, -/area/tether/station/dock_two) +/area/hallway/station/docks) "mOV" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -26719,11 +27395,20 @@ /turf/simulated/floor/tiled, /area/tether/station/dock_one) "mQh" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 6 }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, /turf/simulated/floor/tiled, -/area/tether/station/dock_two) +/area/hallway/station/docks) "mQR" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ @@ -26745,6 +27430,13 @@ /obj/machinery/computer/timeclock/premade/south, /turf/simulated/floor/tiled, /area/storage/tools) +"mRq" = ( +/turf/simulated/wall/fancy_shuttle/low{ + fancy_shuttle_tag = "secbus"; + nitrogen = 0; + oxygen = 0 + }, +/area/shuttle/securiship/general) "mRU" = ( /obj/structure/shuttle/engine/propulsion{ dir = 1; @@ -26773,31 +27465,24 @@ /turf/simulated/floor/tiled, /area/tether/station/dock_two) "mUp" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ +/obj/machinery/door/firedoor/glass, +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ dir = 4 }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/turf/simulated/floor/tiled, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, /area/tether/station/dock_two) "mUD" = ( /obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/tether/station/dock_two) "mVB" = ( @@ -26830,6 +27515,36 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/belterdock/surface_mining_outpost_shuttle_hangar) +"mWA" = ( +/obj/machinery/door/airlock/glass_external, +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1380; + master_tag = "dock_d2l"; + name = "exterior access button"; + pixel_x = -28; + pixel_y = -6; + req_one_access = list(13) + }, +/obj/effect/map_helper/airlock/door/ext_door, +/turf/simulated/floor/tiled, +/area/tether/station/dock_two) +"mXh" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK" + }, +/turf/simulated/floor/plating, +/area/tether/station/dock_two) "mYJ" = ( /obj/machinery/suit_cycler/exploration, /obj/effect/floor_decal/borderfloor{ @@ -26899,7 +27614,7 @@ fancy_shuttle_tag = "explo" }, /obj/machinery/door/airlock/angled_tgmc{ - req_one_access = list(67) + req_one_access = list(19,43,67) }, /turf/simulated/floor/tiled/steel, /area/shuttle/excursion/general) @@ -26968,14 +27683,26 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/tether/station/dock_two) -"ncX" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 4 +"ncN" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, +/turf/simulated/wall/fancy_shuttle{ + fancy_shuttle_tag = "secbus" + }, +/area/shuttle/securiship/engines) +"ncX" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, /area/tether/station/dock_two) "ndU" = ( /obj/machinery/atmospherics/pipe/simple/hidden, @@ -27002,13 +27729,19 @@ /turf/simulated/floor, /area/maintenance/station/eng_lower) "nfp" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ +/obj/effect/floor_decal/borderfloor{ dir = 4 }, -/turf/simulated/floor/plating, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, /area/tether/station/dock_two) "ngr" = ( /obj/effect/floor_decal/industrial/warning{ @@ -27042,35 +27775,27 @@ /turf/simulated/floor/tiled, /area/quartermaster/belterdock/surface_mining_outpost_shuttle_hangar) "ngU" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1380; - id_tag = "dock_d2l_pump" +/obj/structure/cable/green{ + icon_state = "1-8" }, -/obj/machinery/airlock_sensor{ - frequency = 1380; - id_tag = "dock_d2l_sensor"; - pixel_x = -30; - pixel_y = 8 +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-4" }, -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/obj/effect/map_helper/airlock/atmos/chamber_pump, -/obj/effect/map_helper/airlock/sensor/chamber_sensor, -/turf/simulated/floor/tiled/dark, +/turf/simulated/floor/tiled, /area/tether/station/dock_two) "nhA" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1380; - id_tag = "dock_d2l_pump" +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 }, -/obj/effect/floor_decal/industrial/warning{ - dir = 6 +/obj/effect/floor_decal/corner/red/bordercorner{ + dir = 4 }, -/obj/effect/map_helper/airlock/atmos/chamber_pump, -/turf/simulated/floor/tiled/dark, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, /area/tether/station/dock_two) "nhL" = ( /obj/machinery/sleeper{ @@ -27081,15 +27806,6 @@ }, /turf/simulated/floor/tiled/steel, /area/shuttle/excursion/general) -"nio" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/bed/chair/bay/chair/padded/beige{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/steel/gray_perforated, -/area/shuttle/securiship/general) "njY" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ @@ -27271,17 +27987,8 @@ /turf/simulated/floor, /area/maintenance/station/eng_lower) "nrh" = ( -/obj/machinery/door/airlock/glass_external, -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1380; - master_tag = "dock_d2l"; - name = "exterior access button"; - pixel_x = -28; - pixel_y = -6; - req_one_access = list(13) - }, -/obj/effect/map_helper/airlock/door/ext_door, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/tether/station/dock_two) "nrQ" = ( @@ -27289,9 +27996,6 @@ /obj/effect/map_helper/airlock/door/ext_door, /turf/simulated/floor/tiled, /area/tether/station/dock_two) -"nst" = ( -/turf/simulated/floor/tiled/eris/steel/gray_perforated, -/area/shuttle/securiship/general) "nsz" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 @@ -27310,40 +28014,34 @@ }, /turf/simulated/floor, /area/maintenance/substation/civilian) -"ntd" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/eris/steel/gray_perforated, -/area/shuttle/securiship/general) "ntt" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 4 +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/structure/sign/directions/security{ + dir = 4; + pixel_y = -32 }, -/obj/machinery/door/firedoor/glass, -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK" - }, -/turf/simulated/floor/plating, +/turf/simulated/floor/tiled, /area/tether/station/dock_two) -"nvu" = ( -/obj/effect/shuttle_landmark{ - base_area = /area/space; - base_turf = /turf/space; - docking_controller = "dock_d2l"; - landmark_tag = "tether_dockarm_d2l"; - name = "Tether Dock D2L" +"ntS" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1; + frequency = 1380; + id_tag = "securiship_docker_pump_out_external" }, -/turf/space, -/area/space) +/obj/effect/map_helper/airlock/atmos/pump_out_external, +/turf/simulated/wall/fancy_shuttle/low{ + fancy_shuttle_tag = "secbus"; + nitrogen = 0; + oxygen = 0 + }, +/area/shuttle/securiship/engines) +"nvu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/tether/station/dock_two) "nvM" = ( /obj/machinery/light{ dir = 4 @@ -27372,18 +28070,30 @@ /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled, /area/tether/exploration/hallway) -"nym" = ( -/obj/machinery/light{ - dir = 4 +"nyq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 }, -/obj/structure/cable/cyan{ +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -28; + req_access = list(); + req_one_access = list(11,67) + }, +/obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 4; + icon_state = "1-4" }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux, -/turf/simulated/floor/tiled/eris/steel/gray_perforated, -/area/shuttle/securiship/general) +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "medbus"; + name = "medbus" + }, +/turf/simulated/floor/tiled, +/area/shuttle/medivac/engines) "nyL" = ( /obj/structure/cable/green, /obj/machinery/power/apc{ @@ -27406,21 +28116,35 @@ /obj/effect/floor_decal/corner/brown/bordercorner2, /turf/simulated/floor/tiled, /area/quartermaster/belterdock/gear) +"nAr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 10 + }, +/turf/simulated/wall/fancy_shuttle/low{ + fancy_shuttle_tag = "secbus"; + nitrogen = 0; + oxygen = 0 + }, +/area/shuttle/securiship/engines) +"nAx" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/phoron, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "medbus"; + name = "medbus" + }, +/turf/simulated/floor/tiled, +/area/shuttle/medivac/engines) "nAA" = ( /turf/simulated/floor/tiled/techmaint, /area/tcomfoyer{ name = "\improper Telecomms Storage" }) -"nBA" = ( -/obj/machinery/door/airlock/glass_external, -/obj/structure/cable/green{ - dir = 1; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux, -/obj/effect/map_helper/airlock/door/int_door, -/turf/simulated/floor/tiled/eris/techmaint_panels, -/area/shuttle/securiship/general) "nCa" = ( /obj/structure/table/rack{ dir = 8; @@ -27480,7 +28204,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/station/dock_two) +/area/hallway/station/docks) "nDW" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -27533,7 +28257,7 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals6, /turf/simulated/floor/tiled, -/area/tether/station/dock_two) +/area/hallway/station/docks) "nFA" = ( /obj/machinery/mineral/output, /obj/machinery/conveyor{ @@ -27708,12 +28432,6 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/asteroid_steel/airless, /area/quartermaster/belterdock) -"nOT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 10 - }, -/turf/simulated/wall/rshull, -/area/shuttle/securiship/engines) "nPQ" = ( /obj/structure/grille, /obj/machinery/door/firedoor/glass, @@ -27773,54 +28491,6 @@ /obj/effect/overmap/visitable/sector/virgo3b, /turf/space, /area/space) -"nTL" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 2; - icon_state = "pdoor0"; - id = "securiship blast"; - name = "Shuttle Blast Doors"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/shuttle/securiship/general) -"nUp" = ( -/obj/structure/bed/chair/bay/chair/padded/beige{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/steel/gray_perforated, -/area/shuttle/securiship/general) -"nUY" = ( -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/eris/steel/gray_perforated, -/area/shuttle/securiship/general) -"nWj" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 5 - }, -/turf/simulated/floor/tiled/eris/steel/gray_perforated, -/area/shuttle/securiship/general) "nWo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 @@ -27830,16 +28500,6 @@ }, /turf/simulated/floor/wood, /area/quartermaster/qm) -"nXm" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 8 - }, -/obj/machinery/airlock_sensor{ - pixel_y = 28 - }, -/obj/effect/map_helper/airlock/sensor/int_sensor, -/turf/simulated/floor/tiled/eris/steel/gray_perforated, -/area/shuttle/securiship/general) "nYi" = ( /obj/machinery/mineral/equipment_vendor/survey, /obj/effect/floor_decal/fancy_shuttle{ @@ -27853,33 +28513,6 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, /area/tether/station/dock_one) -"nYL" = ( -/obj/structure/cable/green{ - dir = 1; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/aux{ - dir = 9 - }, -/turf/simulated/floor/tiled/eris/steel/gray_perforated, -/area/shuttle/securiship/general) -"nZc" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 2; - icon_state = "pdoor0"; - id = "securiship blast"; - name = "Shuttle Blast Doors"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/shuttle/securiship/general) "nZC" = ( /obj/machinery/door/airlock/glass_command{ id_tag = "evadoors"; @@ -27981,13 +28614,6 @@ "oer" = ( /turf/simulated/wall, /area/tether/exploration/pathfinder_office) -"ofa" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/bed/chair/bay/chair, -/turf/simulated/floor/tiled/eris/dark/violetcorener, -/area/shuttle/securiship/general) "ofV" = ( /obj/structure/table/standard, /obj/item/weapon/paper/rogueminer, @@ -28037,6 +28663,10 @@ }, /turf/simulated/floor, /area/maintenance/cargo) +"ohH" = ( +/obj/effect/landmark/vermin, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) "ohT" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/tiled, @@ -28069,25 +28699,6 @@ }, /turf/simulated/floor/tiled, /area/engineering/hallway) -"oiK" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/bed/chair/bay/chair, -/turf/simulated/floor/tiled/eris/dark/violetcorener, -/area/shuttle/securiship/general) -"ojn" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/bed/chair/bay/chair/padded/beige, -/turf/simulated/floor/tiled/eris/steel/gray_perforated, -/area/shuttle/securiship/general) "okq" = ( /obj/effect/floor_decal/steeldecal/steel_decals6{ dir = 5 @@ -28101,13 +28712,6 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/atrium) -"olN" = ( -/obj/structure/cable/green{ - dir = 1; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/eris/steel/gray_perforated, -/area/shuttle/securiship/general) "omi" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -28118,13 +28722,6 @@ }, /turf/simulated/floor/tiled, /area/ai_monitored/storage/eva) -"omt" = ( -/turf/simulated/floor/tiled/eris/dark/violetcorener, -/area/shuttle/securiship/general) -"onE" = ( -/obj/machinery/door/window/brigdoor/eastleft, -/turf/simulated/floor/tiled/eris/dark/violetcorener, -/area/shuttle/securiship/general) "ops" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -28139,12 +28736,6 @@ }, /turf/simulated/floor/tiled/monotile, /area/tether/exploration) -"oqg" = ( -/obj/structure/cable/green{ - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/eris/steel/gray_perforated, -/area/shuttle/securiship/general) "oqq" = ( /obj/effect/map_helper/airlock/door/int_door, /obj/machinery/atmospherics/pipe/simple/hidden{ @@ -28153,41 +28744,21 @@ /obj/machinery/door/airlock/glass_external, /turf/simulated/floor/tiled/dark, /area/tether/station/dock_one) -"orh" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/table/rack/shelf, -/turf/simulated/floor/tiled/eris/dark/techfloor, -/area/shuttle/securiship/general) "ort" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/hallway/station/atrium) -"orF" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" +"orD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 }, -/obj/structure/table/rack/shelf, -/obj/machinery/alarm{ - breach_detection = 0; - dir = 8; - pixel_x = 25; - rcon_setting = 3; - report_danger_level = 0 +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 }, -/turf/simulated/floor/tiled/eris/dark/techfloor, -/area/shuttle/securiship/general) -"orK" = ( -/obj/structure/bed/chair/bay/chair{ - dir = 1 +/turf/simulated/wall/fancy_shuttle{ + fancy_shuttle_tag = "medbus" }, -/turf/simulated/floor/tiled/eris/dark/violetcorener, -/area/shuttle/securiship/general) +/area/shuttle/medivac/engines) "orN" = ( /obj/structure/table/rack{ dir = 8; @@ -28225,21 +28796,10 @@ /turf/simulated/floor/tiled, /area/engineering/hallway) "osM" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 4 +/turf/simulated/wall/fancy_shuttle{ + fancy_shuttle_tag = "secbus" }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "medivac blast"; - name = "Shuttle Blast Doors"; - opacity = 0 - }, -/turf/simulated/floor/plating/eris/under, -/area/shuttle/medivac/cockpit) +/area/shuttle/securiship/cockpit) "osY" = ( /obj/effect/floor_decal/rust, /turf/simulated/floor, @@ -28283,15 +28843,6 @@ }, /turf/simulated/floor, /area/maintenance/substation/civilian) -"owo" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/bed/chair/bay/chair{ - dir = 1 - }, -/turf/simulated/floor/tiled/eris/dark/violetcorener, -/area/shuttle/securiship/general) "owQ" = ( /obj/structure/table/steel, /obj/item/weapon/module/power_control, @@ -28304,12 +28855,6 @@ }, /turf/simulated/floor, /area/storage/tech) -"owZ" = ( -/obj/structure/bed/chair/bay/chair/padded/beige{ - dir = 4 - }, -/turf/simulated/floor/tiled/eris/dark/techfloor, -/area/shuttle/securiship/general) "oxa" = ( /obj/effect/shuttle_landmark{ base_area = /area/space; @@ -28518,6 +29063,25 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) +"oRf" = ( +/obj/machinery/camera/network/tether{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 9 + }, +/obj/structure/flora/pottedplant/stoutbush, +/turf/simulated/floor/tiled, +/area/tether/station/dock_two) "oRC" = ( /obj/machinery/light/small{ dir = 8 @@ -28577,6 +29141,16 @@ }, /turf/simulated/floor/tiled, /area/tether/exploration/pathfinder_office) +"oTR" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "secbus"; + name = "secbus" + }, +/turf/simulated/floor/tiled, +/area/shuttle/securiship/general) "oUP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -28592,12 +29166,6 @@ /obj/machinery/door/firedoor/border_only, /turf/simulated/floor/tiled/steel_grid, /area/quartermaster/delivery) -"oWk" = ( -/obj/machinery/computer/shuttle_control/explore/securiship{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/dark/techfloor, -/area/shuttle/securiship/general) "oWu" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -28805,17 +29373,26 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/foyer) -"pjb" = ( -/obj/machinery/door/airlock/multi_tile/metal/mait{ - req_one_access = list(1,67) +"pjJ" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor{ + dir = 4 }, -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 }, -/turf/simulated/floor/tiled/eris/techmaint_panels, -/area/shuttle/securiship/engines) +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/machinery/item_bank{ + dir = 8; + pixel_x = 28 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/atrium) "plm" = ( /obj/machinery/camera/network/exploration{ dir = 1 @@ -28880,6 +29457,16 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/warehouse) +"pnm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/tether/station/dock_two) "pny" = ( /turf/simulated/wall/r_wall, /area/tether/exploration) @@ -28932,12 +29519,12 @@ }, /turf/simulated/floor/tiled, /area/tether/station/dock_one) -"pqB" = ( -/obj/structure/cable/green{ - dir = 1; - icon_state = "1-2" +"psE" = ( +/turf/simulated/wall/fancy_shuttle/low{ + fancy_shuttle_tag = "secbus"; + nitrogen = 0; + oxygen = 0 }, -/turf/simulated/floor/tiled/eris/techmaint_panels, /area/shuttle/securiship/engines) "ptc" = ( /obj/machinery/smartfridge/sheets/persistent_lossy, @@ -28989,6 +29576,11 @@ }, /turf/simulated/floor/tiled, /area/tether/exploration/crew) +"pye" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/floor_decal/sign/dock/two, +/turf/simulated/floor/tiled, +/area/tether/station/dock_two) "pyy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -29077,23 +29669,17 @@ /turf/simulated/floor/tiled, /area/ai_monitored/storage/eva) "pEg" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 +/obj/structure/window/fancy_shuttle{ + fancy_shuttle_tag = "secbus" }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 +/obj/machinery/door/firedoor/glass/hidden/shuttle, +/obj/machinery/door/blast/shuttle/open{ + dir = 4; + id = "securiship blast"; + name = "Shuttle Blast Doors" }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/station/dock_two) +/turf/simulated/floor/plating, +/area/shuttle/securiship/cockpit) "pFY" = ( /obj/structure/cable{ d1 = 1; @@ -29245,9 +29831,6 @@ /obj/structure/cable/green{ icon_state = "4-8" }, -/obj/machinery/holoposter{ - pixel_y = -30 - }, /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -29283,6 +29866,12 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/atrium) +"pSO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/tiled, +/area/tether/station/dock_two) "pSR" = ( /obj/structure/table/reinforced, /obj/item/device/assembly/signaler, @@ -29321,14 +29910,6 @@ }, /turf/simulated/floor/tiled/monotile, /area/tether/exploration) -"pYh" = ( -/obj/machinery/power/smes/buildable/point_of_interest, -/obj/structure/cable/cyan{ - d2 = 4; - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/shuttle/securiship/engines) "qad" = ( /obj/structure/bed/chair/office/dark, /obj/structure/cable/green{ @@ -29352,6 +29933,16 @@ /obj/random/maintenance/cargo, /turf/simulated/floor, /area/maintenance/cargo) +"qaA" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/obj/effect/landmark/vermin, +/turf/simulated/floor/tiled/monotile, +/area/tether/exploration) "qbk" = ( /obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod{ frequency = 1380; @@ -29364,23 +29955,6 @@ }, /turf/simulated/floor/tiled, /area/shuttle/large_escape_pod1) -"qbm" = ( -/obj/structure/cable/cyan{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable/cyan{ - d2 = 4; - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - alarms_hidden = 1; - dir = 1; - name = "north bump"; - pixel_y = 28 - }, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/shuttle/securiship/engines) "qcg" = ( /obj/machinery/camera/network/telecom, /obj/structure/cable/yellow{ @@ -29405,6 +29979,9 @@ name = "Emergency NanoMed"; pixel_y = 30 }, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "lifeboat2" + }, /turf/simulated/floor/tiled, /area/shuttle/large_escape_pod1) "qdy" = ( @@ -29417,6 +29994,7 @@ /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 1 }, +/obj/effect/landmark/vines, /turf/simulated/floor/tiled, /area/hallway/station/atrium) "qdG" = ( @@ -29443,14 +30021,6 @@ }, /turf/simulated/floor/tiled/monotile, /area/tether/exploration) -"qfg" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/shuttle/securiship/engines) "qfA" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled, @@ -29465,16 +30035,6 @@ /obj/structure/closet/emcloset, /turf/simulated/floor/tiled, /area/maintenance/cargo) -"qgB" = ( -/obj/structure/cable/green{ - dir = 1; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 6 - }, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/shuttle/securiship/engines) "qgR" = ( /obj/machinery/access_button{ command = "cycle_interior"; @@ -29488,25 +30048,20 @@ /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled, /area/tether/station/dock_two) -"qhy" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ - dir = 1 - }, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/shuttle/securiship/engines) "qiw" = ( /obj/structure/closet/emcloset, /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor, /area/maintenance/cargo) -"qiQ" = ( -/obj/machinery/atmospherics/portables_connector/fuel{ - dir = 8 +"qiZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 }, -/obj/machinery/portable_atmospherics/canister/phoron, -/obj/effect/floor_decal/industrial/outline/red, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/shuttle/securiship/engines) +/obj/machinery/atmospherics/pipe/manifold/hidden/yellow, +/turf/simulated/wall/fancy_shuttle{ + fancy_shuttle_tag = "medbus" + }, +/area/shuttle/medivac/engines) "qjn" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -29540,6 +30095,9 @@ /turf/simulated/floor/tiled, /area/quartermaster/foyer) "qlt" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -29552,13 +30110,6 @@ /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 9 }, -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 24 - }, /turf/simulated/floor/tiled, /area/tether/station/dock_two) "qmD" = ( @@ -29763,12 +30314,6 @@ /obj/random/maintenance/cargo, /turf/simulated/floor, /area/maintenance/cargo) -"qrY" = ( -/obj/machinery/atmospherics/unary/engine{ - dir = 1 - }, -/turf/simulated/floor/airless, -/area/shuttle/securiship/engines) "qsp" = ( /obj/structure/cable{ d1 = 1; @@ -29796,11 +30341,20 @@ }, /area/tcommsat/chamber) "qtf" = ( -/obj/machinery/body_scanconsole{ - dir = 4 +/obj/structure/bed/chair/bay/comfy/blue{ + dir = 1 }, -/turf/simulated/floor/tiled/eris/white, -/area/shuttle/medivac/general) +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "medbus"; + name = "medbus" + }, +/turf/simulated/floor/tiled, +/area/shuttle/medivac/cockpit) "qum" = ( /obj/structure/bed/chair/shuttle{ dir = 1 @@ -29846,37 +30400,6 @@ /obj/item/device/radio/beacon, /turf/simulated/floor/tiled, /area/hallway/station/docks) -"qvS" = ( -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/table/standard, -/obj/item/weapon/tank/phoron, -/obj/structure/panic_button{ - pixel_x = 32; - pixel_y = -32 - }, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/shuttle/securiship/engines) -"qxn" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/shuttle/securiship/engines) -"qyI" = ( -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/fuel_port{ - dir = 1 - }, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/shuttle/securiship/engines) "qzo" = ( /obj/structure/table/rack, /obj/item/clothing/mask/breath, @@ -29886,16 +30409,6 @@ /obj/machinery/door/window/brigdoor, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"qAY" = ( -/obj/machinery/light, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/binary/pump/fuel, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/shuttle/securiship/engines) "qBP" = ( /obj/machinery/door/firedoor/glass, /obj/structure/grille, @@ -30006,16 +30519,6 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/docks) -"qFq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 5 - }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, -/turf/simulated/floor/tiled/eris/dark/techfloor_grid, -/area/shuttle/securiship/engines) "qGn" = ( /obj/structure/table/rack{ dir = 8; @@ -30085,6 +30588,10 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/foyer) +"qKp" = ( +/obj/effect/landmark/vermin, +/turf/simulated/floor/tiled, +/area/engineering/gravity_gen) "qKr" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -30308,20 +30815,15 @@ /obj/structure/cable/green{ icon_state = "4-8" }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/effect/floor_decal/borderfloorwhite/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/paleblue/bordercorner{ - dir = 8 - }, /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 1 }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25 + }, /turf/simulated/floor/tiled, /area/tether/station/dock_two) "qXe" = ( @@ -30350,11 +30852,14 @@ /obj/structure/cable/green{ icon_state = "4-8" }, -/obj/effect/floor_decal/borderfloorwhite/corner, -/obj/effect/floor_decal/corner/paleblue/bordercorner, /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 8 }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/machinery/holoposter{ + pixel_y = -30 + }, /turf/simulated/floor/tiled, /area/tether/station/dock_two) "qYW" = ( @@ -30367,12 +30872,8 @@ /obj/structure/cable/green{ icon_state = "4-8" }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -25 - }, -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/paleblue/border, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, /turf/simulated/floor/tiled, /area/tether/station/dock_two) "qZs" = ( @@ -30471,6 +30972,17 @@ /area/tether/outpost/solars_outside{ name = "\improper Telecomms Solar Field" }) +"riB" = ( +/obj/structure/window/fancy_shuttle{ + fancy_shuttle_tag = "medbus" + }, +/obj/machinery/door/firedoor/glass/hidden/shuttle, +/obj/machinery/door/blast/shuttle/open{ + id = "medivac blast"; + name = "Shuttle Blast Doors" + }, +/turf/simulated/floor/plating, +/area/shuttle/medivac/general) "riO" = ( /obj/structure/cable/green{ d1 = 1; @@ -30503,6 +31015,14 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor, /area/storage/emergency_storage/emergency4) +"rkl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 4 + }, +/turf/simulated/wall/fancy_shuttle{ + fancy_shuttle_tag = "secbus" + }, +/area/shuttle/securiship/engines) "rkH" = ( /obj/structure/disposalpipe/segment{ dir = 1; @@ -30522,12 +31042,6 @@ /obj/effect/floor_decal/corner/brown/border, /turf/simulated/floor/tiled, /area/quartermaster/office) -"rlP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 6 - }, -/turf/simulated/wall/rshull, -/area/shuttle/securiship/engines) "rnM" = ( /obj/structure/bed/chair/shuttle{ dir = 8 @@ -30569,6 +31083,17 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/steel_grid, /area/tether/station/dock_two) +"rqA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ + dir = 1 + }, +/turf/simulated/wall/fancy_shuttle{ + fancy_shuttle_tag = "secbus" + }, +/area/shuttle/securiship/engines) "rqP" = ( /obj/machinery/access_button{ command = "cycle_exterior"; @@ -30583,12 +31108,6 @@ /obj/effect/map_helper/airlock/door/ext_door, /turf/simulated/floor/tiled/dark, /area/tether/station/dock_one) -"rqZ" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ - dir = 1 - }, -/turf/simulated/wall/rshull, -/area/shuttle/securiship/engines) "rrk" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -30612,46 +31131,24 @@ /turf/simulated/floor/tiled, /area/quartermaster/foyer) "rsp" = ( -/obj/effect/floor_decal/borderfloorwhite{ +/obj/machinery/light{ dir = 8 }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 8 +/obj/machinery/computer/ship/helm, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "secbus"; + name = "secbus" }, -/obj/effect/floor_decal/borderfloorwhite/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/paleblue/bordercorner2{ - dir = 10 - }, -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - dir = 4; - frequency = 1380; - id_tag = "medivac_bay"; - pixel_x = -28 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/white, -/area/tether/station/dock_two) +/turf/simulated/floor/tiled, +/area/shuttle/securiship/cockpit) "rsL" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 +/obj/machinery/computer/shuttle_control/explore/securiship, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "secbus"; + name = "secbus" }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorwhite/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/paleblue/bordercorner2{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/tether/station/dock_two) +/turf/simulated/floor/tiled, +/area/shuttle/securiship/cockpit) "rtP" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 10 @@ -30880,22 +31377,38 @@ /turf/simulated/floor/tiled/white, /area/tether/station/dock_two) "rIA" = ( -/obj/machinery/door/airlock/glass_external, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/machinery/light{ + dir = 4 }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/map_helper/airlock/door/simple, -/turf/simulated/floor/tiled/white, -/area/tether/station/dock_two) +/obj/machinery/computer/ship/sensors, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "secbus"; + name = "secbus" + }, +/turf/simulated/floor/tiled, +/area/shuttle/securiship/cockpit) "rJe" = ( -/obj/machinery/door/airlock/glass_external, -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/map_helper/airlock/door/simple, -/turf/simulated/floor/tiled/white, -/area/tether/station/dock_two) +/obj/machinery/computer/ship/helm, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "medbus"; + name = "medbus" + }, +/turf/simulated/floor/tiled, +/area/shuttle/medivac/cockpit) +"rKa" = ( +/obj/structure/bed/chair/shuttle, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "medbus"; + name = "medbus" + }, +/obj/machinery/alarm{ + pixel_y = 28 + }, +/turf/simulated/floor/tiled, +/area/shuttle/medivac/general) "rKK" = ( /obj/structure/bed/chair/shuttle{ dir = 1 @@ -30935,6 +31448,17 @@ "rMb" = ( /turf/simulated/floor/tiled, /area/quartermaster/belterdock/refinery) +"rOH" = ( +/obj/structure/bed/chair/shuttle, +/obj/structure/closet/emergsuit_wall{ + pixel_y = 32 + }, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "medbus"; + name = "medbus" + }, +/turf/simulated/floor/tiled, +/area/shuttle/medivac/general) "rOV" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -31085,7 +31609,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/door/airlock/angled_tgmc{ - req_one_access = list(67) + req_one_access = list(19,43,67) }, /obj/effect/floor_decal/fancy_shuttle{ fancy_shuttle_tag = "explo" @@ -31109,8 +31633,13 @@ /turf/simulated/floor/tiled, /area/quartermaster/belterdock/gear) "rWS" = ( -/turf/simulated/wall/rshull, -/area/shuttle/medivac/engines) +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "medbus"; + name = "medbus" + }, +/obj/machinery/computer/shuttle_control/explore/medivac, +/turf/simulated/floor/tiled, +/area/shuttle/medivac/cockpit) "rXf" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/light{ @@ -31127,9 +31656,16 @@ /turf/simulated/floor/tiled, /area/quartermaster/storage) "rXo" = ( -/obj/structure/sign/redcross, -/turf/simulated/wall/rshull, -/area/shuttle/medivac/engines) +/obj/structure/window/fancy_shuttle{ + fancy_shuttle_tag = "secbus" + }, +/obj/machinery/door/firedoor/glass/hidden/shuttle, +/obj/machinery/door/blast/shuttle/open{ + id = "securiship blast"; + name = "Shuttle Blast Doors" + }, +/turf/simulated/floor/plating, +/area/shuttle/securiship/cockpit) "rXp" = ( /obj/machinery/conveyor_switch/oneway{ id = "packageSort1" @@ -31174,20 +31710,16 @@ /turf/simulated/floor/tiled, /area/hallway/station/atrium) "rYx" = ( -/obj/machinery/door/airlock/glass_external, -/obj/machinery/airlock_sensor/airlock_exterior/shuttle{ - dir = 5; - pixel_x = -28 +/obj/structure/table/standard, +/obj/machinery/recharger{ + pixel_y = 2 }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "secbus"; + name = "secbus" }, -/obj/effect/map_helper/airlock/sensor/ext_sensor, -/obj/effect/map_helper/airlock/door/ext_door, -/turf/simulated/floor/tiled/eris/techmaint_panels, -/area/shuttle/medivac/general) +/turf/simulated/floor/tiled, +/area/shuttle/securiship/cockpit) "saf" = ( /obj/structure/cable/green{ icon_state = "4-8" @@ -31257,14 +31789,33 @@ }, /turf/simulated/floor/tiled, /area/engineering/hallway) +"sbe" = ( +/turf/simulated/wall/fancy_shuttle/nondense{ + fancy_shuttle_tag = "medbus"; + nitrogen = 0; + oxygen = 0 + }, +/area/shuttle/medivac/engines) "scu" = ( /turf/simulated/wall/r_wall, /area/tether/exploration/crew) "scB" = ( -/obj/machinery/door/airlock/glass_external, -/obj/effect/map_helper/airlock/door/ext_door, -/turf/simulated/floor/tiled/eris/techmaint_panels, -/area/shuttle/medivac/general) +/obj/machinery/alarm{ + pixel_y = 28 + }, +/obj/structure/table/standard, +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "securiship blast"; + name = "window blast shields"; + pixel_y = 1 + }, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "secbus"; + name = "secbus" + }, +/turf/simulated/floor/tiled, +/area/shuttle/securiship/cockpit) "scE" = ( /obj/structure/disposalpipe/segment, /obj/structure/bed/chair/office/dark{ @@ -31272,12 +31823,6 @@ }, /turf/simulated/floor/wood, /area/quartermaster/qm) -"sdi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ - dir = 8 - }, -/turf/simulated/wall/rshull, -/area/shuttle/securiship/engines) "seg" = ( /obj/machinery/firealarm{ dir = 1; @@ -31290,22 +31835,15 @@ /turf/simulated/floor/tiled, /area/tether/station/dock_one) "seP" = ( -/obj/structure/grille, -/obj/machinery/door/firedoor/glass, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ +/obj/structure/bed/chair/bay/comfy/blue{ dir = 1 }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 4; - icon_state = "pdoor0"; - id = "medivac blast"; - name = "Shuttle Blast Doors"; - opacity = 0 +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "secbus"; + name = "secbus" }, -/turf/simulated/floor/plating/eris/under, -/area/shuttle/medivac/general) +/turf/simulated/floor/tiled, +/area/shuttle/securiship/cockpit) "seR" = ( /turf/simulated/wall/r_wall, /area/quartermaster/belterdock) @@ -31399,6 +31937,25 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/delivery) +"smd" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/maintenance/common{ + name = "Engine Access"; + req_one_access = list(5,67) + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "medbus"; + name = "medbus" + }, +/turf/simulated/floor/tiled, +/area/shuttle/medivac/engines) "sme" = ( /obj/machinery/atmospherics/portables_connector{ dir = 4 @@ -31487,25 +32044,37 @@ /turf/simulated/floor/plating, /area/tether/station/dock_one) "suH" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/machinery/atmospherics/portables_connector{ - dir = 4 +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "secbus"; + name = "secbus" }, -/obj/effect/floor_decal/industrial/outline/grey, -/turf/simulated/floor/tiled/eris/dark/techfloor, -/area/shuttle/medivac/engines) +/turf/simulated/floor/tiled, +/area/shuttle/securiship/cockpit) "svP" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10 +/obj/machinery/power/apc{ + alarms_hidden = 1; + dir = 1; + name = "north bump"; + pixel_y = 28 }, +/obj/structure/table/standard, /obj/structure/cable{ - icon_state = "2-4" + d2 = 4; + icon_state = "0-4" }, -/turf/simulated/floor/tiled/eris/dark/techfloor, -/area/shuttle/medivac/engines) +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "medbus"; + name = "medbus" + }, +/obj/machinery/button/remote/blast_door{ + dir = 4; + id = "medivac blast"; + name = "window blast shields"; + pixel_y = 1; + req_access = null + }, +/turf/simulated/floor/tiled, +/area/shuttle/medivac/cockpit) "svZ" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 8 @@ -31523,12 +32092,23 @@ /turf/simulated/floor, /area/maintenance/substation/cargo) "swH" = ( -/obj/machinery/power/smes/buildable/point_of_interest, -/obj/structure/cable{ - icon_state = "0-8" +/obj/structure/panic_button/small{ + pixel_x = 16; + pixel_y = -31 }, -/turf/simulated/floor/tiled/eris/dark/techfloor, -/area/shuttle/medivac/engines) +/obj/structure/closet/emergsuit_wall{ + dir = 1; + pixel_y = -32 + }, +/obj/structure/bed/chair/bay/comfy/blue{ + dir = 1 + }, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "medbus"; + name = "medbus" + }, +/turf/simulated/floor/tiled, +/area/shuttle/medivac/cockpit) "sxj" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled/dark, @@ -31576,9 +32156,6 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/belterdock) -"sDE" = ( -/turf/simulated/wall/rshull, -/area/shuttle/medivac/cockpit) "sDH" = ( /obj/machinery/light{ dir = 8 @@ -31621,30 +32198,20 @@ /turf/simulated/floor/tiled, /area/hallway/station/docks) "sFB" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume, -/obj/machinery/embedded_controller/radio/airlock/docking_port{ - cycle_to_external_air = 1; - dir = 4; - frequency = 1380; - id_tag = "medivac_docker"; - pixel_x = -28 +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 }, -/obj/effect/shuttle_landmark{ - base_area = /area/mine/explored/upper_level; - base_turf = /turf/simulated/floor/airless; - docking_controller = "medivac_bay"; - landmark_tag = "tether_medivac_dock"; - name = "Medivac Bay" +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 }, -/obj/effect/overmap/visitable/ship/landable/medivac, -/obj/effect/map_helper/airlock/atmos/chamber_pump, -/turf/simulated/floor/tiled/eris/steel/gray_perforated, -/area/shuttle/medivac/general) +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/station/dock_two) "sFI" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -31683,21 +32250,20 @@ /turf/simulated/floor/plating, /area/quartermaster/storage) "sHo" = ( -/obj/machinery/airlock_sensor{ - pixel_x = 28 +/obj/effect/floor_decal/borderfloor{ + dir = 4 }, -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - frequency = 1380; - id_tag = "medivac_docker_pump_out_internal" +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 }, -/obj/effect/map_helper/airlock/sensor/chamber_sensor, -/obj/effect/map_helper/airlock/atmos/pump_out_internal, -/turf/simulated/floor/tiled/eris/steel/gray_perforated, -/area/shuttle/medivac/general) -"sHX" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/fuel, -/turf/simulated/wall/rshull, -/area/shuttle/securiship/engines) +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/station/dock_two) "sIo" = ( /obj/structure/table/reinforced, /obj/item/clothing/head/welding, @@ -31744,20 +32310,31 @@ /turf/simulated/floor/tiled, /area/quartermaster/belterdock/gear) "sJw" = ( -/obj/structure/bed/chair/shuttle{ - dir = 4 +/obj/machinery/power/apc{ + name = "south bump"; + nightshift_setting = 2; + pixel_y = -28 }, -/obj/structure/closet/emergsuit_wall{ - pixel_y = 32 +/obj/structure/cable{ + icon_state = "0-4" }, -/turf/simulated/floor/tiled/eris/white, -/area/shuttle/medivac/general) +/obj/machinery/light, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "secbus"; + name = "secbus" + }, +/turf/simulated/floor/tiled, +/area/shuttle/securiship/cockpit) "sJM" = ( -/obj/machinery/sleep_console{ - dir = 4 +/obj/structure/cable{ + icon_state = "2-8" }, -/turf/simulated/floor/tiled/eris/white, -/area/shuttle/medivac/general) +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "secbus"; + name = "secbus" + }, +/turf/simulated/floor/tiled, +/area/shuttle/securiship/cockpit) "sKm" = ( /obj/structure/cable{ d1 = 4; @@ -31796,11 +32373,20 @@ /turf/simulated/shuttle/floor/yellow/airless, /area/shuttle/belter) "sLs" = ( -/obj/machinery/sleeper{ - dir = 4 +/obj/structure/panic_button/small{ + pixel_x = 16; + pixel_y = -31 }, -/turf/simulated/floor/tiled/eris/white, -/area/shuttle/medivac/general) +/obj/structure/closet/emergsuit_wall{ + dir = 1; + pixel_y = -32 + }, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "secbus"; + name = "secbus" + }, +/turf/simulated/floor/tiled, +/area/shuttle/securiship/cockpit) "sLH" = ( /obj/structure/lattice, /obj/structure/disposalpipe/segment{ @@ -31865,6 +32451,14 @@ }, /turf/simulated/floor/tiled, /area/tether/exploration/hallway) +"sOn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 6 + }, +/turf/simulated/wall/fancy_shuttle{ + fancy_shuttle_tag = "medbus" + }, +/area/shuttle/medivac/engines) "sPJ" = ( /obj/structure/table/reinforced, /obj/item/stack/material/plasteel{ @@ -31925,6 +32519,20 @@ /area/tcommsat/entrance{ name = "\improper Telecomms Entrance" }) +"sUt" = ( +/obj/effect/fancy_shuttle/medbus{ + dir = 1; + fancy_shuttle_tag = "medbus" + }, +/obj/effect/fancy_shuttle_floor_preview/medbus{ + dir = 1 + }, +/turf/simulated/wall/fancy_shuttle/nondense{ + fancy_shuttle_tag = "medbus"; + nitrogen = 0; + oxygen = 0 + }, +/area/shuttle/medivac/engines) "sUY" = ( /turf/simulated/floor/reinforced, /area/tether/exploration) @@ -32027,23 +32635,15 @@ /turf/simulated/wall/r_wall, /area/ai_monitored/storage/eva) "tbT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/eris/dark/techfloor, -/area/shuttle/medivac/engines) -"tbV" = ( -/obj/machinery/power/terminal{ +/obj/machinery/computer/ship/engines{ dir = 1 }, -/obj/structure/cable/green{ - icon_state = "0-2" +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "secbus"; + name = "secbus" }, -/turf/simulated/floor/tiled/eris/dark/techfloor, -/area/shuttle/medivac/engines) +/turf/simulated/floor/tiled, +/area/shuttle/securiship/cockpit) "tcS" = ( /obj/structure/bed/chair/office/dark{ dir = 8 @@ -32054,15 +32654,9 @@ /turf/simulated/floor/wood, /area/quartermaster/qm) "tda" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/turf/simulated/wall/fancy_shuttle{ + fancy_shuttle_tag = "medbus" }, -/obj/machinery/door/airlock/glass_external, -/obj/effect/map_helper/airlock/door/int_door, -/turf/simulated/floor/tiled/eris/techmaint_panels, /area/shuttle/medivac/general) "tde" = ( /obj/structure/grille, @@ -32083,19 +32677,25 @@ /turf/simulated/floor/plating, /area/tether/station/dock_one) "tdt" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/door/airlock/glass_external, -/obj/effect/map_helper/airlock/door/int_door, -/turf/simulated/floor/tiled/eris/techmaint_panels, -/area/shuttle/medivac/general) -"ter" = ( -/obj/structure/bed/chair/shuttle{ - dir = 4 - }, /obj/machinery/light{ dir = 8 }, -/turf/simulated/floor/tiled/eris/white, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "medbus"; + name = "medbus" + }, +/turf/simulated/floor/tiled, +/area/shuttle/medivac/general) +"ter" = ( +/obj/machinery/door/window/brigdoor/northleft{ + dir = 4; + req_access = list(5) + }, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "medbus"; + name = "medbus" + }, +/turf/simulated/floor/tiled, /area/shuttle/medivac/general) "teI" = ( /obj/effect/floor_decal/industrial/warning/corner, @@ -32125,25 +32725,38 @@ /turf/simulated/floor/tiled, /area/tether/exploration/equipment) "tgl" = ( -/obj/structure/window/reinforced{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 }, -/obj/machinery/power/apc{ - alarms_hidden = 1; - dir = 1; - name = "north bump"; - pixel_y = 28; - req_access = list(); - req_one_access = list(11,67) - }, -/obj/structure/table/glass, -/obj/machinery/recharger, /obj/structure/cable{ - d2 = 2; - icon_state = "0-2" + icon_state = "1-2" }, -/turf/simulated/floor/tiled/eris/steel/cyancorner, -/area/shuttle/medivac/cockpit) +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "medbus"; + name = "medbus" + }, +/turf/simulated/floor/tiled, +/area/shuttle/medivac/general) +"tgr" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/tether/station/dock_two) "tht" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ @@ -32181,9 +32794,26 @@ }, /area/shuttle/excursion/cargo) "tiN" = ( -/obj/machinery/computer/ship/engines, -/turf/simulated/floor/tiled/eris/steel/cyancorner, -/area/shuttle/medivac/cockpit) +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/glass_external, +/obj/effect/map_helper/airlock/door/int_door, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "medbus"; + name = "medbus" + }, +/turf/simulated/floor/tiled, +/area/shuttle/medivac/general) +"tjZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/wall/fancy_shuttle{ + fancy_shuttle_tag = "secbus" + }, +/area/shuttle/securiship/general) "tkb" = ( /obj/structure/cable/green{ d1 = 4; @@ -32360,6 +32990,13 @@ }, /turf/simulated/floor, /area/maintenance/cargo) +"tqu" = ( +/turf/simulated/wall/fancy_shuttle/nondense{ + fancy_shuttle_tag = "secbus"; + nitrogen = 0; + oxygen = 0 + }, +/area/shuttle/securiship/general) "trn" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -32390,7 +33027,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/station/dock_two) +/area/hallway/station/docks) "tts" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 @@ -32457,6 +33094,15 @@ /area/tether/outpost/solars_outside{ name = "\improper Telecomms Solar Field" }) +"txI" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/tether/station/dock_two) "tyi" = ( /obj/structure/railing{ dir = 8 @@ -32473,11 +33119,36 @@ /turf/space, /area/space) "tAQ" = ( -/obj/machinery/atmospherics/unary/engine{ - dir = 4 +/obj/effect/shuttle_landmark{ + base_area = /area/mine/explored/upper_level; + base_turf = /turf/simulated/floor/airless; + docking_controller = "medivac_bay"; + landmark_tag = "tether_medivac_dock"; + name = "Medivac Bay" }, -/turf/simulated/floor/airless, -/area/shuttle/medivac/engines) +/obj/effect/overmap/visitable/ship/landable/medivac, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + cycle_to_external_air = 1; + frequency = 1380; + id_tag = "medivac_docker"; + pixel_y = 27 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "medbus"; + name = "medbus" + }, +/turf/simulated/floor/tiled, +/area/shuttle/medivac/general) "tBl" = ( /obj/structure/closet/emcloset, /obj/effect/floor_decal/borderfloor{ @@ -32499,35 +33170,31 @@ /turf/simulated/floor/plating, /area/quartermaster/belterdock) "tBt" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ - dir = 1 +/obj/structure/cable/green{ + icon_state = "4-8" }, -/turf/simulated/wall/rshull, -/area/shuttle/medivac/engines) +/obj/machinery/door/airlock/glass_external, +/obj/effect/map_helper/airlock/door/ext_door, +/obj/effect/map_helper/airlock/sensor/ext_sensor, +/obj/machinery/airlock_sensor/airlock_exterior/shuttle{ + dir = 5; + pixel_y = 28 + }, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "medbus"; + name = "medbus" + }, +/turf/simulated/floor/tiled, +/area/shuttle/medivac/general) "tBN" = ( -/obj/machinery/power/apc{ - cell_type = /obj/item/weapon/cell/super; - dir = 8; - name = "west bump"; - pixel_x = -30; - req_access = list(); - req_one_access = list(11,67) +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/glass_external, +/obj/effect/map_helper/airlock/door/simple, +/obj/structure/cable/green{ + icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 10 - }, -/obj/item/weapon/tank/phoron, -/turf/simulated/floor/tiled/eris/dark/techfloor, -/area/shuttle/medivac/engines) +/turf/simulated/floor/tiled/white, +/area/tether/station/dock_two) "tCA" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -32559,21 +33226,30 @@ /turf/simulated/floor, /area/maintenance/station/eng_lower) "tCZ" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden{ +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ dir = 4 }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 4 }, -/turf/simulated/floor/tiled/eris/dark/techfloor, -/area/shuttle/medivac/engines) +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + dir = 4; + frequency = 1380; + id_tag = "medivac_bay"; + pixel_x = -24; + pixel_y = 26 + }, +/turf/simulated/floor/tiled/white, +/area/tether/station/dock_two) "tFR" = ( /obj/random/junk, /obj/random/junk, @@ -32595,37 +33271,63 @@ }, /area/tcommsat/chamber) "tGs" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; icon_state = "4-8" }, -/turf/simulated/floor/tiled/eris/techmaint_panels, -/area/shuttle/medivac/engines) +/turf/simulated/floor/tiled/white, +/area/tether/station/dock_two) "tGB" = ( +/obj/effect/floor_decal/borderfloorwhite/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner{ + dir = 1 + }, /obj/structure/cable/green{ - icon_state = "1-8" + icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 9 +/turf/simulated/floor/tiled, +/area/tether/station/dock_two) +"tGO" = ( +/obj/machinery/power/apc{ + name = "south bump"; + pixel_y = -28; + req_access = list(); + req_one_access = list(11,67) }, -/turf/simulated/floor/tiled/eris/white, -/area/shuttle/medivac/general) +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "secbus"; + name = "secbus" + }, +/turf/simulated/floor/tiled, +/area/shuttle/securiship/general) "tGV" = ( -/obj/machinery/airlock_sensor{ - pixel_x = 28; - pixel_y = 28 +/obj/effect/floor_decal/borderfloor{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 5 +/obj/effect/floor_decal/corner/red/border{ + dir = 1 }, -/obj/effect/map_helper/airlock/sensor/int_sensor, -/turf/simulated/floor/tiled/eris/white, -/area/shuttle/medivac/general) +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/tether/station/dock_two) "tHd" = ( /obj/structure/railing{ dir = 1 @@ -32652,11 +33354,14 @@ /turf/simulated/floor/tiled, /area/quartermaster/storage) "tIb" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 +/obj/effect/map_helper/airlock/door/simple, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/green{ + icon_state = "4-8" }, -/turf/simulated/floor/tiled/eris/white, -/area/shuttle/medivac/general) +/obj/machinery/door/airlock/glass_external, +/turf/simulated/floor/tiled, +/area/tether/station/dock_two) "tIc" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 @@ -32671,17 +33376,22 @@ /turf/simulated/floor/tiled, /area/quartermaster/storage) "tIw" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 10 +/obj/structure/cable/green{ + icon_state = "4-8" }, -/obj/effect/floor_decal/corner/blue{ - dir = 4 +/obj/machinery/airlock_sensor/airlock_exterior/shuttle{ + dir = 5; + pixel_y = 28 }, -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 +/obj/machinery/door/airlock/glass_external, +/obj/effect/map_helper/airlock/door/ext_door, +/obj/effect/map_helper/airlock/sensor/ext_sensor, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "secbus"; + name = "secbus" }, -/turf/simulated/floor/tiled/eris/white, -/area/shuttle/medivac/general) +/turf/simulated/floor/tiled, +/area/shuttle/securiship/general) "tIJ" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/tiled, @@ -32702,32 +33412,48 @@ /turf/simulated/floor/plating, /area/quartermaster/belterdock/refinery) "tKI" = ( -/obj/effect/floor_decal/corner/blue{ - dir = 10 +/obj/structure/cable/green{ + icon_state = "4-8" }, -/obj/effect/floor_decal/corner/blue{ - dir = 1 +/obj/effect/shuttle_landmark{ + base_area = /area/space; + base_turf = /turf/space; + docking_controller = "securiship_bay"; + landmark_tag = "tether_securiship_dock"; + name = "Securiship Dock" }, -/obj/machinery/atmospherics/pipe/simple/hidden{ +/obj/effect/overmap/visitable/ship/landable/securiship, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + cycle_to_external_air = 1; + frequency = 1380; + id_tag = "securiship_docker"; + pixel_y = 27 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ dir = 4 }, -/turf/simulated/floor/tiled/eris/white, -/area/shuttle/medivac/general) +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "secbus"; + name = "secbus" + }, +/turf/simulated/floor/tiled, +/area/shuttle/securiship/general) "tMt" = ( -/obj/machinery/door/window/brigdoor/westright{ - req_access = newlist(); - req_one_access = list(5,67) - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/structure/cable/green{ + icon_state = "4-8" }, +/obj/machinery/door/airlock/glass_external, +/obj/effect/map_helper/airlock/door/int_door, /obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 + dir = 8 }, -/turf/simulated/floor/tiled/eris/steel/cyancorner, -/area/shuttle/medivac/cockpit) +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "secbus"; + name = "secbus" + }, +/turf/simulated/floor/tiled, +/area/shuttle/securiship/general) "tME" = ( /obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/tiled, @@ -32760,14 +33486,23 @@ /turf/simulated/floor/tiled, /area/quartermaster/belterdock) "tOn" = ( -/obj/structure/bed/chair/bay/chair/padded/blue{ - dir = 4 +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" }, /obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10 + dir = 8 }, -/turf/simulated/floor/tiled/eris/steel/cyancorner, -/area/shuttle/medivac/cockpit) +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "secbus"; + name = "secbus" + }, +/turf/simulated/floor/tiled, +/area/shuttle/securiship/general) "tOp" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/borderfloor{ @@ -32779,14 +33514,23 @@ /turf/simulated/floor/tiled, /area/quartermaster/office) "tOr" = ( -/obj/machinery/computer/ship/helm{ - dir = 8 +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" }, -/obj/machinery/light{ - dir = 1 +/obj/structure/cable{ + icon_state = "2-8" }, -/turf/simulated/floor/tiled/eris/steel/cyancorner, -/area/shuttle/medivac/cockpit) +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "secbus"; + name = "secbus" + }, +/turf/simulated/floor/tiled, +/area/shuttle/securiship/general) "tPj" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -32934,25 +33678,34 @@ dir = 8 }, /obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/monotile, /area/tether/station/dock_two) "tZQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 9 +/obj/structure/table/rack, +/obj/machinery/light{ + dir = 1 }, -/turf/simulated/wall/rshull, -/area/shuttle/medivac/engines) +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "secbus"; + name = "secbus" + }, +/obj/item/weapon/handcuffs, +/turf/simulated/floor/tiled, +/area/shuttle/securiship/general) "uaC" = ( /obj/effect/floor_decal/rust, /obj/random/trash_pile, /turf/simulated/floor/plating, /area/maintenance/station/cargo) "uaW" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 1 +/obj/structure/bed/padded, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "medbus"; + name = "medbus" }, -/turf/simulated/floor/tiled/eris/dark/techfloor, -/area/shuttle/medivac/engines) +/turf/simulated/floor/tiled, +/area/shuttle/medivac/general) "ucJ" = ( /obj/effect/floor_decal/rust, /obj/structure/cable{ @@ -32963,11 +33716,16 @@ /turf/simulated/floor, /area/storage/emergency_storage/emergency4) "ucL" = ( -/obj/structure/cable{ - icon_state = "1-4" +/obj/structure/bed/padded, +/obj/structure/window/reinforced{ + dir = 4 }, -/turf/simulated/floor/tiled/eris/dark/techfloor, -/area/shuttle/medivac/engines) +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "medbus"; + name = "medbus" + }, +/turf/simulated/floor/tiled, +/area/shuttle/medivac/general) "udq" = ( /obj/structure/closet, /obj/random/tool, @@ -32980,16 +33738,24 @@ /turf/simulated/floor/plating, /area/maintenance/station/cargo) "udG" = ( -/obj/machinery/door/airlock/multi_tile/metal/mait{ - dir = 2; - req_one_access = list(5,67) - }, -/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden, /obj/structure/cable{ - icon_state = "4-8" + icon_state = "1-2" }, -/turf/simulated/floor/tiled/eris/techmaint_panels, -/area/shuttle/medivac/engines) +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/effect/map_helper/airlock/sensor/int_sensor, +/obj/machinery/airlock_sensor{ + pixel_x = 28; + pixel_y = -28 + }, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "medbus"; + name = "medbus" + }, +/turf/simulated/floor/tiled, +/area/shuttle/medivac/general) "ueZ" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 @@ -33040,26 +33806,19 @@ d2 = 2; icon_state = "1-2" }, +/obj/effect/landmark/vermin, /turf/simulated/floor/tiled, /area/engineering/foyer) -"uhN" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/eris/white, -/area/shuttle/medivac/general) "ujB" = ( /turf/simulated/wall, /area/storage/tools) "ujC" = ( -/obj/structure/cable{ - icon_state = "4-8" +/turf/simulated/wall/fancy_shuttle/nondense{ + fancy_shuttle_tag = "medbus"; + nitrogen = 0; + oxygen = 0 }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/eris/white, -/area/shuttle/medivac/general) +/area/shuttle/medivac/cockpit) "ujK" = ( /obj/structure/cable{ d1 = 1; @@ -33078,28 +33837,6 @@ /obj/effect/floor_decal/industrial/outline/grey, /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) -"umD" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/blue{ - dir = 5 - }, -/obj/effect/floor_decal/corner/blue, -/turf/simulated/floor/tiled/eris/white, -/area/shuttle/medivac/general) -"umF" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/corner/blue{ - dir = 5 - }, -/obj/effect/floor_decal/corner/blue{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/white, -/area/shuttle/medivac/general) "uno" = ( /obj/machinery/status_display/supply_display, /turf/simulated/wall, @@ -33125,16 +33862,16 @@ /turf/simulated/floor/tiled/steel_grid, /area/tether/exploration/pathfinder_office) "unH" = ( -/obj/machinery/door/window/brigdoor/westleft{ - req_access = newlist(); - req_one_access = list(5,67) +/obj/structure/window/fancy_shuttle{ + fancy_shuttle_tag = "medbus" }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" +/obj/machinery/door/firedoor/glass/hidden/shuttle, +/obj/machinery/door/blast/shuttle/open{ + dir = 4; + id = "medivac blast"; + name = "Shuttle Blast Doors" }, -/turf/simulated/floor/tiled/eris/steel/cyancorner, +/turf/simulated/floor/plating, /area/shuttle/medivac/cockpit) "unR" = ( /obj/effect/floor_decal/industrial/warning{ @@ -33160,25 +33897,6 @@ }, /turf/simulated/floor, /area/maintenance/station/eng_lower) -"upT" = ( -/obj/structure/bed/chair/bay/chair/padded/blue{ - dir = 4 - }, -/obj/machinery/button/remote/blast_door{ - dir = 8; - id = "medivac blast"; - name = "Shuttle Blast Doors"; - pixel_x = -28; - pixel_y = -28; - req_access = list(67) - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/structure/panic_button{ - pixel_x = 32; - pixel_y = -32 - }, -/turf/simulated/floor/tiled/eris/steel/cyancorner, -/area/shuttle/medivac/cockpit) "uqi" = ( /obj/machinery/door/firedoor/glass, /obj/structure/grille, @@ -33203,11 +33921,12 @@ /turf/simulated/floor/tiled, /area/quartermaster/storage) "uqU" = ( -/obj/machinery/computer/ship/sensors{ - dir = 8 +/obj/machinery/shipsensors/fancy_shuttle, +/turf/simulated/wall/fancy_shuttle/nondense{ + fancy_shuttle_tag = "medbus"; + nitrogen = 0; + oxygen = 0 }, -/obj/machinery/light, -/turf/simulated/floor/tiled/eris/steel/cyancorner, /area/shuttle/medivac/cockpit) "usX" = ( /obj/structure/grille, @@ -33240,6 +33959,17 @@ "uuz" = ( /turf/simulated/shuttle/wall, /area/shuttle/belter) +"uvN" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/phoron, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "medbus"; + name = "medbus" + }, +/turf/simulated/floor/tiled, +/area/shuttle/medivac/engines) "uxR" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ @@ -33258,35 +33988,14 @@ /turf/simulated/floor/tiled, /area/ai_monitored/storage/eva) "uym" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 +/obj/machinery/door/airlock/glass_external, +/obj/effect/map_helper/airlock/door/int_door, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "medbus"; + name = "medbus" }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/closet/emcloset, /turf/simulated/floor/tiled, -/area/tether/station/dock_two) -"uyn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/effect/floor_decal/sign/dock/two, -/turf/simulated/floor/tiled, -/area/tether/station/dock_two) +/area/shuttle/medivac/general) "uyV" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 @@ -33376,27 +34085,24 @@ /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/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/red/bordercorner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/bordercorner2{ - dir = 9 - }, /obj/machinery/alarm{ dir = 4; pixel_x = -23 }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 9 + }, /turf/simulated/floor/tiled, -/area/tether/station/dock_two) +/area/hallway/station/docks) "uGl" = ( /obj/structure/table/rack{ dir = 8; @@ -33476,14 +34182,21 @@ /turf/simulated/floor/tiled/dark, /area/tcommsat/computer) "uKX" = ( -/obj/structure/fuel_port{ - pixel_x = -32 +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + frequency = 1380; + id_tag = "medivac_docker_pump_out_internal" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ - dir = 8 +/obj/effect/map_helper/airlock/atmos/pump_out_internal, +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/obj/machinery/airlock_sensor{ + pixel_y = -27 }, -/turf/simulated/floor/tiled/eris/dark/techfloor, -/area/shuttle/medivac/engines) +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "medbus"; + name = "medbus" + }, +/turf/simulated/floor/tiled, +/area/shuttle/medivac/general) "uLo" = ( /obj/machinery/door/airlock/glass_mining{ id_tag = "cargodoor"; @@ -33495,13 +34208,14 @@ /turf/simulated/floor/tiled/steel_grid, /area/quartermaster/office) "uLr" = ( -/obj/effect/floor_decal/industrial/outline/red, -/obj/machinery/atmospherics/portables_connector{ - dir = 8 +/obj/machinery/door/airlock/glass_external, +/obj/effect/map_helper/airlock/door/ext_door, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "medbus"; + name = "medbus" }, -/obj/machinery/portable_atmospherics/canister/phoron, -/turf/simulated/floor/tiled/eris/dark/techfloor, -/area/shuttle/medivac/engines) +/turf/simulated/floor/tiled, +/area/shuttle/medivac/general) "uMo" = ( /obj/machinery/atmospherics/binary/passive_gate/on{ dir = 8 @@ -33549,22 +34263,23 @@ /turf/simulated/floor/tiled, /area/quartermaster/office) "uOm" = ( -/obj/machinery/door/window/brigdoor/northleft{ - req_access = list(5) - }, -/turf/simulated/floor/tiled/eris/dark/violetcorener, -/area/shuttle/medivac/general) +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/glass_external, +/obj/effect/map_helper/airlock/door/simple, +/turf/simulated/floor/tiled/white, +/area/tether/station/dock_two) "uOz" = ( -/obj/structure/bed/padded, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/tiled/eris/dark/violetcorener, -/area/shuttle/medivac/general) +/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, +/turf/simulated/floor/tiled/white, +/area/tether/station/dock_two) "uOQ" = ( -/obj/structure/sign/nosmoking_1, -/turf/simulated/wall/rshull, -/area/shuttle/medivac/general) +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/turf/simulated/floor/tiled/white, +/area/tether/station/dock_two) "uOS" = ( /obj/machinery/mineral/output, /obj/machinery/conveyor{ @@ -33573,33 +34288,16 @@ }, /turf/simulated/floor/plating, /area/quartermaster/belterdock/refinery) -"uPs" = ( -/obj/structure/bed/chair/shuttle{ +"uPt" = ( +/obj/machinery/computer/ship/sensors, +/obj/machinery/light{ dir = 4 }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "medbus"; + name = "medbus" }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/white, -/area/shuttle/medivac/general) -"uPt" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/table/glass, -/turf/simulated/floor/tiled/eris/steel/cyancorner, -/area/shuttle/medivac/cockpit) -"uQa" = ( -/obj/machinery/computer/shuttle_control/explore/medivac{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/tiled/eris/steel/cyancorner, +/turf/simulated/floor/tiled, /area/shuttle/medivac/cockpit) "uRY" = ( /obj/effect/shuttle_landmark{ @@ -33612,23 +34310,13 @@ /turf/space, /area/space) "uSR" = ( -/obj/machinery/camera/network/tether{ - dir = 1 +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/structure/sign/directions/medical{ + dir = 8; + pixel_y = -32 }, -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 10 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 9 - }, -/obj/structure/flora/pottedplant/stoutbush, -/turf/simulated/floor/tiled, +/turf/simulated/floor/tiled/white, /area/tether/station/dock_two) "uTq" = ( /obj/machinery/door/firedoor/glass, @@ -33694,10 +34382,6 @@ }, /turf/simulated/floor/tiled, /area/tether/station/dock_one) -"uUL" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/tiled, -/area/tether/station/dock_two) "uVV" = ( /obj/machinery/power/apc{ dir = 4; @@ -33775,6 +34459,18 @@ /obj/effect/map_helper/airlock/door/simple, /turf/simulated/floor/plating, /area/quartermaster/storage) +"uXD" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1; + frequency = 1380; + id_tag = "dock_d2l_pump" + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/effect/map_helper/airlock/atmos/chamber_pump, +/turf/simulated/floor/tiled/dark, +/area/tether/station/dock_two) "uYq" = ( /obj/structure/railing, /obj/effect/floor_decal/rust, @@ -33810,18 +34506,12 @@ /obj/effect/floor_decal/corner/green/border{ dir = 8 }, +/obj/item/device/bluespaceradio/tether_prelinked, /turf/simulated/floor/tiled, /area/tether/exploration/pathfinder_office) "uZb" = ( -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1380; - master_tag = "dock_d2l"; - name = "interior access button"; - pixel_x = 26; - pixel_y = -26; - req_one_access = list(13) - }, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/red/bordercorner, /turf/simulated/floor/tiled, /area/tether/station/dock_two) "uZA" = ( @@ -33831,6 +34521,14 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, /area/tether/station/dock_one) +"vas" = ( +/obj/machinery/door/airlock/glass_external, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/obj/effect/map_helper/airlock/door/int_door, +/turf/simulated/floor/tiled/dark, +/area/tether/station/dock_two) "vaw" = ( /obj/structure/bed/chair/shuttle, /turf/simulated/shuttle/floor/yellow, @@ -33841,10 +34539,10 @@ /turf/simulated/floor/tiled, /area/tether/exploration/crew) "vbA" = ( -/obj/structure/table/standard, -/obj/random/medical, -/turf/simulated/floor/tiled/eris/dark/techfloor, -/area/shuttle/medivac/engines) +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/turf/simulated/floor/tiled, +/area/tether/station/dock_two) "vcw" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 @@ -33879,42 +34577,70 @@ /obj/structure/cable/green{ icon_state = "4-8" }, -/obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 1 }, /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 8 }, -/obj/effect/floor_decal/corner/paleblue/border, /obj/machinery/alarm{ dir = 1; pixel_y = -25 }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, /turf/simulated/floor/tiled, /area/tether/station/dock_two) "vdb" = ( -/obj/machinery/light/small, -/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ - dir = 5 +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 }, -/turf/simulated/floor/tiled/eris/dark/techfloor, -/area/shuttle/medivac/engines) +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 9 + }, +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + dir = 8; + frequency = 1380; + id_tag = "securiship_bay"; + pixel_x = 24; + pixel_y = -26; + req_one_access = null + }, +/turf/simulated/floor/tiled, +/area/tether/station/dock_two) "vdA" = ( -/obj/machinery/portable_atmospherics/canister/phoron, -/obj/effect/floor_decal/industrial/outline/red, -/obj/machinery/atmospherics/portables_connector{ - dir = 8 - }, -/turf/simulated/floor/tiled/eris/dark/techfloor, -/area/shuttle/medivac/engines) +/obj/effect/map_helper/airlock/door/simple, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/door/airlock/glass_external, +/turf/simulated/floor/tiled, +/area/tether/station/dock_two) "vdW" = ( -/turf/simulated/floor/tiled/eris/dark/violetcorener, -/area/shuttle/medivac/general) +/obj/machinery/door/airlock/glass_external, +/obj/effect/map_helper/airlock/door/ext_door, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "secbus"; + name = "secbus" + }, +/turf/simulated/floor/tiled, +/area/shuttle/securiship/general) "veh" = ( -/obj/structure/bed/padded, -/turf/simulated/floor/tiled/eris/dark/violetcorener, -/area/shuttle/medivac/general) +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + frequency = 1380; + id_tag = "securiship_docker_pump_out_internal" + }, +/obj/effect/map_helper/airlock/atmos/pump_out_internal, +/obj/machinery/airlock_sensor{ + pixel_y = -27 + }, +/obj/effect/map_helper/airlock/sensor/chamber_sensor, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "secbus"; + name = "secbus" + }, +/turf/simulated/floor/tiled, +/area/shuttle/securiship/general) "vez" = ( /obj/structure/reagent_dispensers/watertank, /turf/simulated/floor, @@ -33936,11 +34662,17 @@ /turf/simulated/floor, /area/tether/station/dock_two) "vkg" = ( -/obj/machinery/bodyscanner{ - dir = 4 +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" }, -/turf/simulated/floor/tiled/eris/white, -/area/shuttle/medivac/general) +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "medbus"; + name = "medbus" + }, +/turf/simulated/floor/tiled, +/area/shuttle/medivac/cockpit) "vll" = ( /turf/simulated/floor/tiled/asteroid_steel/airless, /area/quartermaster/belterdock) @@ -33999,8 +34731,17 @@ /turf/simulated/floor/tiled, /area/tether/exploration/crew) "vns" = ( -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/wall/rshull, +/obj/machinery/computer/ship/engines{ + dir = 8 + }, +/obj/machinery/alarm{ + pixel_y = 28 + }, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "medbus"; + name = "medbus" + }, +/turf/simulated/floor/tiled, /area/shuttle/medivac/cockpit) "vow" = ( /obj/structure/table/standard, @@ -34031,12 +34772,6 @@ /obj/effect/map_helper/airlock/door/ext_door, /turf/simulated/floor/tiled/dark, /area/tether/station/dock_one) -"voP" = ( -/obj/machinery/door/airlock/glass_external, -/obj/machinery/atmospherics/pipe/simple/hidden, -/obj/effect/map_helper/airlock/door/int_door, -/turf/simulated/floor/tiled, -/area/tether/station/dock_two) "vrr" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 @@ -34065,6 +34800,12 @@ /obj/structure/catwalk, /turf/simulated/floor, /area/maintenance/station/eng_lower) +"vsq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/wall/fancy_shuttle{ + fancy_shuttle_tag = "medbus" + }, +/area/shuttle/medivac/general) "vsW" = ( /obj/structure/cable/green{ d1 = 4; @@ -34088,6 +34829,16 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/docks) +"vtg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 9 + }, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "medbus"; + name = "medbus" + }, +/turf/simulated/floor/tiled, +/area/shuttle/medivac/engines) "vtx" = ( /obj/machinery/sleep_console{ dir = 4 @@ -34137,29 +34888,20 @@ name = "\improper Telecomms Lobby" }) "vyd" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1380; - id_tag = "medivac_docker_pump_out_external" +/turf/simulated/wall/fancy_shuttle{ + fancy_shuttle_tag = "medbus" }, -/obj/effect/floor_decal/industrial/warning/full, -/obj/effect/map_helper/airlock/atmos/pump_out_external, -/turf/simulated/floor/airless, -/area/shuttle/medivac/general) +/area/shuttle/medivac/cockpit) "vyj" = ( -/obj/machinery/embedded_controller/radio/airlock/docking_port{ - dir = 4; - frequency = 1380; - id_tag = "dock_d2l"; - pixel_x = -28 +/obj/machinery/atmospherics/pipe/simple/hidden, +/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/industrial/warning{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, +/turf/simulated/floor/tiled, /area/tether/station/dock_two) "vyI" = ( /obj/machinery/button/remote/driver{ @@ -34219,16 +34961,23 @@ /turf/simulated/floor/tiled, /area/engineering/foyer) "vAQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ +/obj/structure/extinguisher_cabinet{ + dir = 8; + pixel_x = 30 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 10 }, -/obj/machinery/light/small{ +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor{ dir = 4 }, -/obj/effect/floor_decal/industrial/warning{ - dir = 5 +/obj/effect/floor_decal/corner/red/border{ + dir = 4 }, -/turf/simulated/floor/tiled/dark, +/turf/simulated/floor/tiled, /area/tether/station/dock_two) "vBG" = ( /obj/structure/closet/emcloset, @@ -34281,6 +35030,19 @@ /obj/effect/floor_decal/corner/lightgrey/bordercorner, /turf/simulated/floor/tiled, /area/tether/station/dock_two) +"vFi" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1; + frequency = 1380; + id_tag = "medivac_docker_pump_out_external" + }, +/obj/effect/map_helper/airlock/atmos/pump_out_external, +/turf/simulated/wall/fancy_shuttle/low{ + fancy_shuttle_tag = "medbus"; + nitrogen = 0; + oxygen = 0 + }, +/area/shuttle/medivac/engines) "vFn" = ( /obj/structure/extinguisher_cabinet{ dir = 1; @@ -34478,6 +35240,14 @@ /obj/effect/floor_decal/industrial/warning/corner, /turf/simulated/floor/airless, /area/quartermaster/belterdock) +"vVy" = ( +/obj/machinery/body_scanconsole, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "medbus"; + name = "medbus" + }, +/turf/simulated/floor/tiled, +/area/shuttle/medivac/general) "vVA" = ( /obj/structure/cable/green{ d1 = 1; @@ -34591,9 +35361,29 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/office) -"wbd" = ( -/turf/simulated/wall/rshull, -/area/shuttle/securiship/engines) +"vZG" = ( +/obj/machinery/airlock_sensor{ + pixel_x = -28; + pixel_y = -28 + }, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "secbus"; + name = "secbus" + }, +/obj/effect/map_helper/airlock/sensor/int_sensor, +/turf/simulated/floor/tiled, +/area/shuttle/securiship/general) +"waj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 10 + }, +/turf/simulated/wall/fancy_shuttle{ + fancy_shuttle_tag = "medbus" + }, +/area/shuttle/medivac/engines) "wbf" = ( /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 4 @@ -34649,6 +35439,23 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/belterdock/gear) +"weP" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/binary/pump{ + dir = 4 + }, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "medbus"; + name = "medbus" + }, +/turf/simulated/floor/tiled, +/area/shuttle/medivac/engines) "whg" = ( /obj/effect/floor_decal/industrial/warning, /obj/machinery/hologram/holopad, @@ -34814,16 +35621,24 @@ /obj/structure/cable/green{ icon_state = "4-8" }, -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/paleblue/border, /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 8 }, /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 1 }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, /turf/simulated/floor/tiled, /area/tether/station/dock_two) +"wwJ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ + dir = 1 + }, +/turf/simulated/wall/fancy_shuttle{ + fancy_shuttle_tag = "secbus" + }, +/area/shuttle/securiship/engines) "wwR" = ( /obj/structure/cable/green{ d1 = 1; @@ -34860,6 +35675,20 @@ }, /turf/simulated/floor/tiled, /area/tether/exploration/hallway) +"wAK" = ( +/obj/structure/table/standard, +/obj/machinery/recharger{ + pixel_y = 2 + }, +/obj/machinery/alarm{ + pixel_y = 28 + }, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "secbus"; + name = "secbus" + }, +/turf/simulated/floor/tiled, +/area/shuttle/securiship/general) "wBw" = ( /turf/simulated/floor, /area/maintenance/cargo) @@ -34929,7 +35758,7 @@ pixel_x = 32 }, /turf/simulated/floor/tiled, -/area/tether/station/dock_two) +/area/hallway/station/docks) "wIR" = ( /obj/machinery/atmospherics/unary/vent_pump{ dir = 8; @@ -34994,6 +35823,23 @@ /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled, /area/quartermaster/belterdock/surface_mining_outpost_shuttle_hangar) +"wLR" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/airlock/glass_security, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "secbus"; + name = "secbus" + }, +/turf/simulated/floor/tiled, +/area/shuttle/securiship/general) "wLS" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -35105,17 +35951,11 @@ /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 6 }, -/obj/effect/floor_decal/corner/red/border{ +/obj/effect/floor_decal/corner/lightgrey/border{ dir = 8 }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/red/bordercorner2{ - dir = 10 - }, /turf/simulated/floor/tiled, -/area/tether/station/dock_two) +/area/hallway/station/docks) "wQF" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -35493,6 +36333,27 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/janitor) +"xoV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10 + }, +/turf/simulated/wall/fancy_shuttle{ + fancy_shuttle_tag = "medbus" + }, +/area/shuttle/medivac/general) +"xpa" = ( +/obj/machinery/sleeper{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "medbus"; + name = "medbus" + }, +/turf/simulated/floor/tiled, +/area/shuttle/medivac/general) "xpA" = ( /turf/simulated/floor/tiled, /area/ai_monitored/storage/eva) @@ -35581,10 +36442,6 @@ }, /turf/simulated/floor/tiled, /area/gateway/prep_room) -"xwd" = ( -/obj/structure/sign/redcross, -/turf/simulated/wall/rshull, -/area/shuttle/medivac/general) "xwg" = ( /obj/machinery/door/blast/shutters{ dir = 8; @@ -35832,6 +36689,32 @@ }, /turf/simulated/floor/tiled, /area/hallway/station/docks) +"xMQ" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "secbus"; + name = "secbus" + }, +/turf/simulated/floor/tiled, +/area/shuttle/securiship/engines) "xMZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -35881,6 +36764,18 @@ /obj/random/maintenance/clean, /turf/simulated/floor, /area/maintenance/station/eng_lower) +"xPa" = ( +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/smes/buildable/point_of_interest, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "medbus"; + name = "medbus" + }, +/turf/simulated/floor/tiled, +/area/shuttle/medivac/engines) "xPm" = ( /obj/effect/floor_decal/industrial/warning{ dir = 6 @@ -35973,6 +36868,13 @@ /obj/structure/railing, /turf/simulated/floor, /area/maintenance/station/eng_lower) +"xRE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/landmark/vines, +/turf/simulated/floor/tiled, +/area/tether/station/dock_one) "xSF" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, @@ -36057,6 +36959,25 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/belterdock/surface_mining_outpost_shuttle_hangar) +"xZE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + nightshift_setting = 2; + pixel_y = 28 + }, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "secbus"; + name = "secbus" + }, +/turf/simulated/floor/tiled, +/area/shuttle/securiship/engines) "xZW" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -36119,6 +37040,30 @@ }, /turf/simulated/floor/tiled, /area/tether/station/dock_two) +"ybT" = ( +/obj/machinery/door/airlock/glass_external, +/obj/effect/map_helper/airlock/door/int_door, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "secbus"; + name = "secbus" + }, +/turf/simulated/floor/tiled, +/area/shuttle/securiship/general) +"ydq" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/binary/pump, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/obj/effect/floor_decal/fancy_shuttle{ + fancy_shuttle_tag = "secbus"; + name = "secbus" + }, +/turf/simulated/floor/tiled, +/area/shuttle/securiship/engines) "ydT" = ( /obj/machinery/access_button{ command = "cycle_interior"; @@ -36144,6 +37089,14 @@ }, /turf/simulated/floor/tiled, /area/quartermaster/belterdock/surface_mining_outpost_shuttle_hangar) +"yhn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/turf/simulated/wall/fancy_shuttle{ + fancy_shuttle_tag = "secbus" + }, +/area/shuttle/securiship/general) "yif" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -39694,7 +40647,7 @@ gTz trn gTz gTz -gTz +xRE gTz gTz trn @@ -41958,20 +42911,20 @@ bVP pfh bgG aaa -kok -kyb -kyb -kyb -kIc -nTL -nTL -kIc -kIc -wbd -wbd -wbd -wbd -wbd +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -42100,20 +43053,20 @@ bVP pfh bgG aaa -kyb -kyb -mbN -myi -nio -nUp -ofa -omt -orK -wbd -pYh -qvS -rlP -qrY +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -42242,20 +43195,20 @@ bVP pfh bgG aaa -kzv -kPX -mgU -mCt -nst -nst -oiK -onE -owo -wbd -qbm -qxn -rqZ -qrY +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -42384,20 +43337,20 @@ aim kzY vCj aaa -kzv -ldE -mim -mFp -ntd -nUY -ojn -ntd -ntd -pjb -qfg -qyI -sdi -wbd +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -42526,20 +43479,20 @@ bVP hyl vCj aaa -kIc -let -mjc -mFw -nym -nWj -nst -oqg -olN -pqB -qgB -qAY -sHX -wbd +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -42648,7 +43601,7 @@ atB asl asU atS -aze +asU asU asU aNb @@ -42668,20 +43621,20 @@ xQD qFi vCj aaa -kIc -kIc -kIc -kIc -kIc -nXm -nst -orh -owZ -wbd -qhy -qFq -rqZ -qrY +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -42806,24 +43759,24 @@ alt alt alv tMV -bVP +mBL pfh bgG aaa -kKj -liG -mnd -mIR -nBA -nYL -olN -orF -oWk -wbd -qiQ -qiQ -nOT -qrY +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -42952,20 +43905,20 @@ bXv sET vCj aaa -kKY -kIc -mnv -mNy -kIc -nZc -nZc -kIc -nZc -wbd -wbd -wbd -wbd -wbd +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -43093,12 +44046,12 @@ xMk isr fji vCj -fLT -fLT -voE -mou -mNU -voE +vCj +vCj +vCj +vCj +vCj +vCj tal tal tal @@ -43892,7 +44845,7 @@ aEk aXR bbb ahP -brX +qKp ank byy byy @@ -45182,7 +46135,7 @@ dyq fca hcW qHy -ack +gCZ fgA ach abC @@ -46637,7 +47590,7 @@ dPx adM kts vYJ -vYJ +pjJ aba abm abO @@ -46892,7 +47845,7 @@ fMv gnc gMr pPa -eWv +qaA ops pny acH @@ -47659,7 +48612,7 @@ aBW aBW aBW aBW -aDz +ohH aEc gcc awN @@ -48033,7 +48986,7 @@ pXr scu iiU ajj -ajj +kpK kfa alj vmt @@ -48361,8 +49314,8 @@ aaa aaa aaa ahW -aaa -aaa +ahW +ahW ayF ayN aAs @@ -48639,11 +49592,11 @@ fLT fLT fLT fLT -aaa -aaa -aaa -aaa -aaa +ahW +ahW +ahW +ahW +ahW ahW asG asG @@ -48773,7 +49726,7 @@ aaa aaa aaa fLT -wMe +cOV qSM vcG fLT @@ -48917,17 +49870,17 @@ jRT fLT kbq qSM -fQr -qBP +jGw +fLT +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa -rWS -rWS -rWS -tAQ -tAQ -rWS -rWS -rWS aaa asG asG @@ -49056,20 +50009,20 @@ hGr qqe hPw xIm -fLT +qBP wMe rQq wvQ qBP aaa -rWS -suH -rWS -tBt -tZQ -rWS -vbA -rWS +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa asG asG @@ -49198,20 +50151,20 @@ hHo qqe qvg xIm -fLT -cOV +qBP +wMe rQq -fQr +jGw qBP aaa -rXo -svP -tbT -tBN -uaW -uKX -vdb -rXo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa asG asG @@ -49340,20 +50293,20 @@ qcz qqe qum fyi -fLT +qBP wMe rQq -lCQ -fLT +qYW +qBP +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa -rWS -swH -tbV -tCZ -ucL -uLr -vdA -rWS aaa asG asG @@ -49487,15 +50440,15 @@ qCV qOx cjl fLT -fLT -rWS -rWS -rWS -tGs -udG -rWS -rWS -rWS +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -49628,16 +50581,16 @@ tZN uEv kMY qWN -rsp -rIA -rYx -sFB -tda -tGB -uhN -uOm -vdW -gcw +fLT +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa aaa aaa aaa @@ -49770,16 +50723,7 @@ auX uEv rQq qYR -rsL -rJe -scB -sHo -tdt -tGV -uhN -uOz -veh -gcw +fLT aaa aaa aaa @@ -49793,6 +50737,15 @@ aaa aaa aaa aaa +beU +beU +gio +ewT +ewT +ewT +ewT +sUt +aaa aaa aaa aaa @@ -49913,15 +50866,6 @@ klW rQq mzV fLT -fLT -gcw -gcw -gcw -tIb -uhN -uOQ -gcw -gcw aaa aaa aaa @@ -49935,6 +50879,14 @@ aaa aaa aaa aaa +gio +gio +gio +ewT +ewT +ewT +ewT +ewT aaa aaa aaa @@ -49974,6 +50926,7 @@ aaa aaa aaa aaa +aaa "} (98,1,1) = {" aaa @@ -50051,31 +51004,31 @@ qqe qum fyi qBP -kiB -etg +hSz +rQq lFA -fLT +qBP +aaa +aaa +aaa +aaa aaa -gcw -sJw -ter -tIb ujC -uPs +vyd amU -gcw -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa +vyd +tda +tda +tda +tda +riB +riB +tda +hDi +hDi +hDi +sOn +btm aaa aaa aaa @@ -50196,28 +51149,28 @@ qBP wMe rQq qYW -fLT -aaa -seP -aoL -aoL -tIw -umD -aoL -aoL -eTQ -aaa -aaa -aaa -aaa -aaa -aaa -aaa +qBP aaa aaa aaa aaa aaa +vyd +vyd +svP +vyd +tdt +uaW +tda +xpa +kXu +kXu +hnk +hDi +nAx +uvN +lof +ewT aaa aaa aaa @@ -50338,28 +51291,28 @@ qBP wMe rQq pSg -fLT +qBP aaa -seP -sJM -aoL -tKI -umF -aoL +aaa +aaa +aaa +aaa +unH +rJe qtf -eTQ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa +vyd +ter +ucL +tda +afa +kXu +kXu +vVy +hDi +kiN +vtg +lof +ewT aaa aaa aaa @@ -50482,26 +51435,26 @@ rQq lAo fLT aaa -xwd -sLs -aoL -tIb -uhN -aoL +aaa +aaa +aaa +aaa +unH +rWS vkg -xwd -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa +aaj +tgl +udG +bnG +kEt +kEt +kEt +gqN +smd +weP +nyq +orD +vFi aaa aaa aaa @@ -50575,7 +51528,7 @@ aie avO bYg bPX -bXn +ads cyf fck otm @@ -50624,26 +51577,26 @@ qOx llC fLT aaa -sDE -sDE -tgl -tMt +aaa +aaa +aaa +aaa unH uPt -sDE -gcw -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa +swH +vyd +tiN +uym +tda +rKa +kXu +kXu +lJl +hDi +dRZ +doW +qiZ +ewT aaa aaa aaa @@ -50766,26 +51719,26 @@ qSM qZs fLT aaa -eUE -sDE -tiN -tOn -upT -uQa +aaa +aaa +aaa +aaa +vyd +vyd vns vyd -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa +tAQ +uKX +imp +rOH +kXu +kXu +lNb +hDi +xPa +gPV +cDU +ewT aaa aaa aaa @@ -50860,7 +51813,7 @@ avZ thI acu xTB -bpd +adN xTB otm vow @@ -50909,25 +51862,25 @@ saf fLT aaa aaa -sDE -sDE -tOr +aaa +aaa +aaa uqU -sDE -sDE -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa +vyd +amU +vyd +tBt +uLr +xoV +vsq +jJE +jJE +vsq +lKA +lKA +lKA +waj +btm aaa aaa aaa @@ -51052,24 +52005,24 @@ fLT aaa aaa aaa -sDE -osM -osM -sDE -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa aaa aaa aaa aaa aaa +fLT +tBN +uOm +fLT aaa +gio +gio +gio +ewT +ewT +ewT +ewT +ewT aaa aaa aaa @@ -51199,19 +52152,19 @@ aaa aaa aaa aaa +eUE +tCZ +uOz +mnt aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa +beU +beU +gio +ewT +ewT +ewT +ewT +sbe aaa aaa aaa @@ -51341,10 +52294,10 @@ aaa aaa aaa aaa -aaa -aaa -aaa -aaa +eUE +tGs +uOQ +mnt aaa aaa aaa @@ -51478,10 +52431,23 @@ fLT fLT qBP qBP +qBP +fLT +qBP +qBP +qBP +fLT +tGs +uSR +fLT +qBP +qBP +qBP fLT fLT qBP qBP +qBP voE aaa aaa @@ -51523,19 +52489,6 @@ aaa aaa aaa aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa "} (109,1,1) = {" aaa @@ -51580,7 +52533,7 @@ woq jxP acV xEG -dls +aai dTU ady dyt @@ -51617,30 +52570,30 @@ knX wub kkp dUf -mUp +mqR mqR mqR cDk iNZ -uym -uSR -voE -eyT +mqR +mqR +sFB eyT +tGB bbl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa +sFB +sFB +ijM +mqR +jLk +cuj +fpK +fpK +oRf +voE +txI +txI +dCt aaa aaa aaa @@ -51760,31 +52713,31 @@ kNR lWx lNF mUD -lWx -lWx -lWx +vyj +vyj +vyj jHc -uyn -uUL -voP +vyj +vyj +vyj vyj ngU nrh -aaa +pSO nvu +pnm +kuo +kuo +kuo +kuo +pye +kuo +eif +jBN +lvZ +mWA aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa +hDI aaa aaa aaa @@ -51896,21 +52849,34 @@ ahW aaa aaa aaa -iZC +fLT wMe kOK vEF tZJ -pEg -hSz odW odW +odW +nfp qlt -mnt -uZb -mTK +odW +odW +sHo vAQ nhA +uZb +ivC +sHo +lRe +odW +lhv +odW +odW +odW +tgr +mTK +ijG +uXD nrQ aaa aaa @@ -51949,19 +52915,6 @@ aaa aaa aaa aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa "} (112,1,1) = {" aaa @@ -52035,38 +52988,38 @@ ahV ahV ahV ahV -aaa -aaa -aaa -iZC -iTF +ahW +ahW +ahW +fLT +kiB jFv lYR -iUV -nfp +fLT fLT qBP qBP +qBP fLT qBP qBP +qBP +fLT +ncX +ntt +fLT +qBP +qBP +qBP +fLT +fLT +qBP +qBP +qBP voE -ncX -ncX -ntt -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa +hBR +hBR +mXh aaa aaa aaa @@ -52180,11 +53133,24 @@ aaa aaa aaa aaa -gVG -iUV -jGw +fLT iUV +kOK klo +fLT +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +eUE +ncX +vbA +mnt +aaa aaa aaa aaa @@ -52233,19 +53199,6 @@ aaa aaa aaa aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa "} (114,1,1) = {" aaa @@ -52322,23 +53275,11 @@ aaa aaa aaa aaa -aaa -iZC -jHU -ieY -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa +fLT +wMe +kOK +klo +fLT aaa aaa aaa @@ -52347,6 +53288,18 @@ aaa aaa aaa aaa +eUE +tGV +vdb +mnt +tqu +tqu +mRq +psE +psE +psE +psE +dDk aaa aaa aaa @@ -52464,10 +53417,11 @@ aaa aaa aaa aaa -aaa -jqN -jRG +fLT +wMe +kOK klo +fLT aaa aaa aaa @@ -52476,19 +53430,18 @@ aaa aaa aaa aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa +voE +tIb +vdA +voE +mRq +mRq +mRq +psE +psE +psE +eVl +cmX aaa aaa aaa @@ -52606,31 +53559,31 @@ aaa aaa aaa aaa +fLT +wMe +kOK +klo +fLT aaa aaa aaa aaa aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa +osM +rXo +rXo +osM +tIw +vdW +jOl +tjZ +tjZ +tjZ +kIc +kIc +kIc +rqA +cmX aaa aaa aaa @@ -52748,31 +53701,31 @@ aaa aaa aaa aaa -aaa -aaa -jqT -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa +fLT +wMe +kOK +ipw +fLT aaa aaa aaa aaa aaa +osM +rYx +suH +osM +tKI +veh +yhn +cMD +oTR +lEm +kKj +dAx +cic +cbU +psE aaa aaa aaa @@ -52890,31 +53843,31 @@ aaa aaa aaa aaa +gVG +wMe +kOK +klo +gVG aaa aaa aaa aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa +osM +osM +scB +sJw +osM +tMt +ybT +kok +eSM +gvx +kTK +kKj +lCR +dYK +cbU +psE aaa aaa aaa @@ -53032,31 +53985,31 @@ aaa aaa aaa aaa +gVG +wMe +kOK +klo +gVG aaa aaa aaa aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa +pEg +rsp +seP +sJM +abJ +tOn +vZG +kok +wAK +kzv +tGO +kKj +mIV +ydq +ncN +ntS aaa aaa aaa @@ -53173,32 +54126,32 @@ aaa aaa aaa aaa +etg +fLT +jHU +kOK +fDY +fLT aaa aaa aaa aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa +pEg +rsL +suH +sLs +osM +tOr +iEn +wLR +iEn +iEn +iVi +fNX +xMQ +gbR +rkl +psE aaa aaa aaa @@ -53316,31 +54269,31 @@ aaa aaa aaa aaa +eUE +iTF +jjP +jRG +mnt aaa aaa aaa aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa +pEg +rIA +seP +tbT +osM +tZQ +lsw +kok +gbm +jcX +kKe +kKj +xZE +gbR +rkl +psE aaa aaa aaa @@ -53458,31 +54411,31 @@ aaa aaa aaa aaa +gmx +gVG +vas +gVG +mUp aaa aaa aaa aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa +osM +osM +rXo +rXo +osM +kok +kok +kok +kyb +kyb +kyb +kKj +kKj +kKj +wwJ +cmX aaa aaa aaa @@ -53601,6 +54554,9 @@ aaa aaa aaa aaa +eUE +jqN +mnt aaa aaa aaa @@ -53614,17 +54570,14 @@ aaa aaa aaa aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa +mRq +mRq +mRq +psE +psE +psE +nAr +cmX aaa aaa aaa @@ -53743,6 +54696,9 @@ aaa aaa aaa aaa +iZC +jqT +mUp aaa aaa aaa @@ -53756,17 +54712,14 @@ aaa aaa aaa aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa +tqu +tqu +mRq +psE +psE +psE +psE +kKY aaa aaa aaa @@ -54028,7 +54981,7 @@ aaa aaa aaa aaa -aaa +juV aaa aaa aaa diff --git a/maps/tether/tether-06-mining.dmm b/maps/tether/tether-06-mining.dmm index 69f736d6f1..7ca97d1565 100644 --- a/maps/tether/tether-06-mining.dmm +++ b/maps/tether/tether-06-mining.dmm @@ -1120,7 +1120,7 @@ /turf/simulated/floor/tiled/steel_dirty/virgo3b, /area/outpost/mining_main/drill_equipment) "cu" = ( -/mob/living/simple_mob/animal/passive/gaslamp, +/obj/tether_away_spawner/tether_outside, /turf/simulated/floor/outdoors/grass/sif/virgo3b, /area/mine/explored) "cv" = ( diff --git a/maps/tether/tether-07-solars.dmm b/maps/tether/tether-07-solars.dmm index 1addcdd726..e2f98cd044 100644 --- a/maps/tether/tether-07-solars.dmm +++ b/maps/tether/tether-07-solars.dmm @@ -216,7 +216,7 @@ /turf/simulated/floor/virgo3b_indoors, /area/tether/outpost/solars_shed) "aw" = ( -/mob/living/simple_mob/animal/passive/gaslamp, +/obj/tether_away_spawner/tether_outside, /turf/simulated/floor/outdoors/grass/sif/virgo3b, /area/mine/explored) "ax" = ( @@ -624,7 +624,7 @@ /turf/simulated/floor/tiled/steel_dirty/virgo3b, /area/mine/explored) "br" = ( -/mob/living/simple_mob/animal/passive/gaslamp, +/obj/tether_away_spawner/tether_outside, /turf/simulated/floor/tiled/steel_dirty/virgo3b, /area/tether/outpost/solars_outside) "bs" = ( @@ -798,7 +798,7 @@ /turf/simulated/floor/virgo3b, /area/mine/explored) "bJ" = ( -/mob/living/simple_mob/animal/passive/gaslamp, +/obj/tether_away_spawner/tether_outside, /turf/simulated/floor/outdoors/dirt/virgo3b, /area/mine/explored) "bK" = ( diff --git a/maps/tether/tether.dm b/maps/tether/tether.dm index 94137cb8ee..2c77a8c376 100644 --- a/maps/tether/tether.dm +++ b/maps/tether/tether.dm @@ -9,6 +9,7 @@ #include "tether_shuttles.dm" #include "tether_telecomms.dm" #include "tether_jobs.dm" + #include "../offmap_vr/common_offmaps.dm" #if !AWAY_MISSION_TEST //Don't include these for just testing away missions #include "tether-01-surface1.dmm" diff --git a/maps/tether/tether_areas.dm b/maps/tether/tether_areas.dm index a8e7544390..7d8c998346 100644 --- a/maps/tether/tether_areas.dm +++ b/maps/tether/tether_areas.dm @@ -1460,6 +1460,9 @@ /area/shuttle/excursion/power name = "\improper Excursion Shuttle Power" +/* + * Tourbus + */ /area/shuttle/tourbus requires_power = 1 icon_state = "shuttle2" @@ -1471,6 +1474,9 @@ /area/shuttle/tourbus/cockpit name = "\improper Tour Bus Cockpit" +/* + * Medbus + */ /area/shuttle/medivac requires_power = 1 icon_state = "shuttle2" @@ -1484,6 +1490,9 @@ /area/shuttle/medivac/engines name = "\improper Medivac Engines" +/* + * Secbus + */ /area/shuttle/securiship requires_power = 1 icon_state = "shuttle2" @@ -1615,31 +1624,6 @@ /area/bigship/teleporter name = "Bigship Teleporter Room" -//////// Abductor Areas //////// -/area/unknown - requires_power = 0 - flags = RAD_SHIELDED - icon_state = "red2" - limit_mob_size = FALSE - -/area/unknown/dorm1 - name = "Unknown Dorm 1" - -/area/unknown/dorm2 - name = "Unknown Dorm 2" - -/area/unknown/dorm3 - name = "Unknown Dorm 3" - -/area/unknown/dorm4 - name = "Unknown Dorm 4" - -/area/unknown/dorm5 - name = "Unknown Dorm 5" - -/area/unknown/dorm6 - name = "Unknown Dorm 6" - // ERT/Deathsquad Shuttle /area/shuttle/specialops/centcom name = "Special Operations Shuttle - Centcom" diff --git a/maps/tether/tether_defines.dm b/maps/tether/tether_defines.dm index 992a8c5267..ef8cc70e64 100644 --- a/maps/tether/tether_defines.dm +++ b/maps/tether/tether_defines.dm @@ -6,27 +6,26 @@ #define Z_LEVEL_SPACE_LOW 5 #define Z_LEVEL_SURFACE_MINE 6 #define Z_LEVEL_SOLARS 7 -#define Z_LEVEL_MISC 8 -#define Z_LEVEL_UNDERDARK 9 -#define Z_LEVEL_PLAINS 10 -#define Z_LEVEL_OFFMAP1 11 +#define Z_LEVEL_CENTCOM 8 +#define Z_LEVEL_MISC 9 +#define Z_LEVEL_UNDERDARK 10 +#define Z_LEVEL_PLAINS 11 +#define Z_LEVEL_OFFMAP1 12 //#define Z_LEVEL_OFFMAP2 12 -#define Z_LEVEL_ROGUEMINE_1 12 -#define Z_LEVEL_ROGUEMINE_2 13 -#define Z_LEVEL_BEACH 14 -#define Z_LEVEL_BEACH_CAVE 15 -#define Z_LEVEL_AEROSTAT 16 -#define Z_LEVEL_AEROSTAT_SURFACE 17 -#define Z_LEVEL_DEBRISFIELD 18 -#define Z_LEVEL_FUELDEPOT 19 -#define Z_LEVEL_GATEWAY 20 +#define Z_LEVEL_ROGUEMINE_1 13 +#define Z_LEVEL_ROGUEMINE_2 14 +#define Z_LEVEL_BEACH 15 +#define Z_LEVEL_BEACH_CAVE 16 +#define Z_LEVEL_AEROSTAT 17 +#define Z_LEVEL_AEROSTAT_SURFACE 18 +#define Z_LEVEL_DEBRISFIELD 19 +#define Z_LEVEL_FUELDEPOT 20 +#define Z_LEVEL_GATEWAY 21 +#define Z_LEVEL_OM_ADVENTURE 22 //Camera networks #define NETWORK_TETHER "Tether" -#define NETWORK_TCOMMS "Telecommunications" //Using different from Polaris one for better name #define NETWORK_OUTSIDE "Outside" -#define NETWORK_EXPLORATION "Exploration" -#define NETWORK_XENOBIO "Xenobiology" /datum/map/tether/New() ..() @@ -46,7 +45,7 @@ lobby_screens = list(choice) /datum/map/tether - name = "Virgo" + name = "Tether" full_name = "NSB Adephagia" path = "tether" @@ -70,6 +69,7 @@ station_name = "NSB Adephagia" station_short = "Tether" + facility_type = "station" dock_name = "Virgo-3B Colony" dock_type = "surface" boss_name = "Central Command" @@ -154,7 +154,7 @@ lateload_z_levels = list( - list("Tether - Misc","Tether - Underdark","Tether - Plains"), //Stock Tether lateload maps + list("Tether - Centcom","Tether - Misc","Tether - Underdark","Tether - Plains"), //Stock Tether lateload maps list("Offmap Ship - Talon V2"), list("Asteroid Belt 1","Asteroid Belt 2"), list("Desert Planet - Z1 Beach","Desert Planet - Z2 Cave"), @@ -163,7 +163,7 @@ list("Fuel Depot - Z1 Space") ) - lateload_single_pick = list( + lateload_gateway = list( list("Carp Farm"), list("Snow Field"), list("Listening Post"), @@ -174,6 +174,10 @@ list("Wild West") ) + lateload_overmap = list( + list("Grass Cave") + ) + ai_shell_restricted = TRUE ai_shell_allowed_levels = list( Z_LEVEL_SURFACE_LOW, @@ -195,8 +199,6 @@ mining_station_z = list(Z_LEVEL_SPACE_LOW) mining_outpost_z = list(Z_LEVEL_SURFACE_MINE) - lateload_single_pick = null //Nothing right now. - planet_datums_to_make = list(/datum/planet/virgo3b, /datum/planet/virgo4) @@ -229,7 +231,8 @@ Z_LEVEL_SURFACE_HIGH, Z_LEVEL_SURFACE_MINE, Z_LEVEL_SOLARS, - Z_LEVEL_PLAINS + Z_LEVEL_PLAINS, + Z_LEVEL_CENTCOM ) /datum/planet/virgo4 expected_z_levels = list( @@ -245,7 +248,7 @@ [i]Transponder[/i]: Transmitting (CIV), NanoTrasen IFF [b]Notice[/b]: NanoTrasen Base, authorized personnel only"} base = 1 - + icon = 'icons/obj/overmap_vr.dmi' icon_state = "virgo3b" @@ -269,6 +272,7 @@ "tether_medivac_dock", //Medical shuttle dock, "tourbus_dock" //Surface large hangar ) + initial_restricted_waypoints = list("Central Command Shuttlepad" = list("cc_shuttlepad")) //Despite not being in the multi-z complex, these levels are part of the overmap sector extra_z_levels = list( Z_LEVEL_SURFACE_MINE, @@ -306,7 +310,7 @@ /obj/effect/overmap/visitable/sector/virgo3b/generate_skybox(zlevel) var/static/image/bigone = image(icon = 'icons/skybox/virgo3b.dmi', icon_state = "large") var/static/image/smallone = image(icon = 'icons/skybox/virgo3b.dmi', icon_state = "small") - + if(zlevel == Z_LEVEL_TRANSIT) return bigone else @@ -359,6 +363,7 @@ name = "Asteroid 1" base_turf = /turf/space transit_chance = 33 + flags = MAP_LEVEL_STATION|MAP_LEVEL_CONTACT|MAP_LEVEL_PLAYER|MAP_LEVEL_CONSOLES|MAP_LEVEL_XENOARCH_EXEMPT|MAP_LEVEL_PERSIST|MAP_LEVEL_BELOW_BLOCKED holomap_offset_x = TETHER_HOLOMAP_MARGIN_X + TETHER_HOLOMAP_CENTER_GUTTER + TETHER_MAP_SIZE holomap_offset_y = TETHER_HOLOMAP_MARGIN_Y + TETHER_MAP_SIZE diff --git a/maps/tether/tether_jobs.dm b/maps/tether/tether_jobs.dm index 83027da7c1..5d9be113cf 100644 --- a/maps/tether/tether_jobs.dm +++ b/maps/tether/tether_jobs.dm @@ -132,6 +132,30 @@ /datum/alt_title/talon_security title = "Talon Security" +/datum/job/talon_miner + title = "Talon Miner" + flag = TALMIN + department_flag = TALON + job_description = "The miner's job is to excavate ores and refine them for the Talon's use, as well as for trading." + supervisors = "the ITV Talon's captain" + outfit_type = /decl/hierarchy/outfit/job/talon_miner + + offmap_spawn = TRUE + faction = "Station" //Required for SSjob to allow people to join as it + departments = list(DEPARTMENT_TALON) + total_positions = 1 + spawn_positions = 1 + selection_color = "#aaaaaa" + economic_modifier = 5 + minimal_player_age = 14 + pto_type = null + access = list(access_talon) + minimal_access = list(access_talon) + alt_titles = list("Talon Excavator" = /datum/alt_title/talon_excavator) + +/datum/alt_title/talon_excavator + title = "Talon Excavator" + //////////////////////TALON OUTFITS////////////////////// /decl/hierarchy/outfit/job/talon_captain @@ -233,3 +257,20 @@ satchel_one = /obj/item/weapon/storage/backpack/satchel/talon messenger_bag = /obj/item/weapon/storage/backpack/messenger/talon +/decl/hierarchy/outfit/job/talon_miner + name = OUTFIT_JOB_NAME("Talon Miner") + hierarchy_type = /decl/hierarchy/outfit/job + + id_type = /obj/item/weapon/card/id/talon/miner + id_slot = slot_wear_id + pda_type = null + flags = OUTFIT_HAS_BACKPACK|OUTFIT_EXTENDED_SURVIVAL + + l_ear = /obj/item/device/radio/headset/talon + shoes = /obj/item/clothing/shoes/boots/workboots + r_pocket = /obj/item/weapon/storage/bag/ore + l_pocket = /obj/item/weapon/tool/crowbar + uniform = /obj/item/clothing/under/rank/talon/basic + backpack = /obj/item/weapon/storage/backpack/talon + satchel_one = /obj/item/weapon/storage/backpack/satchel/talon + messenger_bag = /obj/item/weapon/storage/backpack/messenger/talon \ No newline at end of file diff --git a/maps/tether/tether_shuttle_defs.dm b/maps/tether/tether_shuttle_defs.dm index 847cd0e480..e7c4452521 100644 --- a/maps/tether/tether_shuttle_defs.dm +++ b/maps/tether/tether_shuttle_defs.dm @@ -223,3 +223,48 @@ landmark_offsite = "mining_outpost" docking_controller_tag = "mining_docking" move_direction = NORTH + +/////Virgo Flyer///// +// The shuttle's 'shuttle' computer +/obj/machinery/computer/shuttle_control/explore/ccboat + name = "Virgo Flyer control console" + shuttle_tag = "Virgo Flyer" + req_one_access = list(access_pilot) + +/obj/effect/overmap/visitable/ship/landable/ccboat + name = "NTV Virgo Flyer" + desc = "A small shuttle from Central Command." + vessel_mass = 1000 + vessel_size = SHIP_SIZE_TINY + shuttle = "Virgo Flyer" + known = TRUE + +// A shuttle lateloader landmark +/obj/effect/shuttle_landmark/shuttle_initializer/ccboat + name = "Central Command Shuttlepad" + base_area = /area/shuttle/centcom/ccbay + base_turf = /turf/simulated/floor/reinforced + landmark_tag = "cc_shuttlepad" + docking_controller = "cc_landing_pad" + shuttle_type = /datum/shuttle/autodock/overmap/ccboat + +/datum/shuttle/autodock/overmap/ccboat + name = "Virgo Flyer" + current_location = "cc_shuttlepad" + docking_controller_tag = "ccboat" + shuttle_area = /area/shuttle/ccboat + fuel_consumption = 0 + defer_initialisation = TRUE + +/area/shuttle/ccboat + icon = 'icons/turf/areas_vr.dmi' + icon_state = "yelwhitri" + name = "Virgo Flyer" + requires_power = 0 + +/area/shuttle/centcom/ccbay + icon = 'icons/turf/areas_vr.dmi' + icon_state = "bluwhisqu" + name = "Central Command Shuttle Bay" + requires_power = 0 + dynamic_lighting = 0 diff --git a/maps/tether/tether_telecomms.dm b/maps/tether/tether_telecomms.dm index ac43e2d453..9adb24aed1 100644 --- a/maps/tether/tether_telecomms.dm +++ b/maps/tether/tether_telecomms.dm @@ -3,8 +3,9 @@ // #### Relays #### // Telecomms doesn't know about connected z-levels, so we need relays even for the other surface levels. -/obj/machinery/telecomms/relay/preset/tether +/obj/machinery/telecomms/relay/preset/station id = "Tether Relay" + listening_level = 9 autolinkers = list("tether_relay") // #### Hub #### diff --git a/maps/tether/tether_things.dm b/maps/tether/tether_things.dm index 99aae29ffd..91f1435f05 100644 --- a/maps/tether/tether_things.dm +++ b/maps/tether/tether_things.dm @@ -135,28 +135,6 @@ /obj/effect/step_trigger/lost_in_space/tram deathmessage = "You fly down the tunnel of the tram at high speed for a few moments before impact kills you with sheer concussive force." - -// Invisible object that blocks z transfer to/from its turf and the turf above. -/obj/effect/ceiling - invisibility = 101 // nope cant see this - anchored = 1 - can_atmos_pass = ATMOS_PASS_PROC - -/obj/effect/ceiling/CanZASPass(turf/T, is_zone) - if(T == GetAbove(src)) - return FALSE // Keep your air up there, buddy - return TRUE - -/obj/effect/ceiling/CanPass(atom/movable/mover, turf/target) - if(target == GetAbove(src)) - return FALSE - return TRUE - -/obj/effect/ceiling/Uncross(atom/movable/mover, turf/target) - if(target == GetAbove(src)) - return FALSE - return TRUE - // // TRAM STATION // @@ -197,29 +175,6 @@ /obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary/tram/powered() return TRUE // Always be powered -//Chemistry 'chemavator' -/obj/machinery/smartfridge/chemistry/chemvator - name = "\improper Smart Chemavator - Upper" - desc = "A refrigerated storage unit for medicine and chemical storage. Now sporting a fancy system of pulleys to lift bottles up and down." - var/obj/machinery/smartfridge/chemistry/chemvator/attached - -/obj/machinery/smartfridge/chemistry/chemvator/down/Destroy() - attached = null - return ..() - -/obj/machinery/smartfridge/chemistry/chemvator/down - name = "\improper Smart Chemavator - Lower" - -/obj/machinery/smartfridge/chemistry/chemvator/down/Initialize() - . = ..() - var/obj/machinery/smartfridge/chemistry/chemvator/above = locate(/obj/machinery/smartfridge/chemistry/chemvator,get_zstep(src,UP)) - if(istype(above)) - above.attached = src - attached = above - item_records = attached.item_records - else - to_chat(world,"[src] at [x],[y],[z] cannot find the unit above it!") - // Tram departure cryo doors that turn into ordinary airlock doors at round end /obj/machinery/cryopod/robot/door/tram name = "\improper Tram Station" @@ -236,6 +191,7 @@ on_store_visible_message_2 = "to the colony" time_till_despawn = 10 SECONDS spawnpoint_type = /datum/spawnpoint/tram + /obj/machinery/cryopod/robot/door/tram/process() if(emergency_shuttle.online() || emergency_shuttle.returned()) // Transform into a door! But first despawn anyone inside @@ -260,27 +216,6 @@ var/mob/observer/dead/newghost = user.ghostize() newghost.timeofdeath = world.time despawn_occupant(user) - -// Tram arrival point landmarks and datum -var/global/list/latejoin_tram = list() - -/obj/effect/landmark/tram - name = "JoinLateTram" - delete_me = 1 - -/obj/effect/landmark/tram/New() - latejoin_tram += loc // Register this turf as tram latejoin. - latejoin += loc // Also register this turf as fallback latejoin, since we won't have any arrivals shuttle landmarks. - ..() - -/datum/spawnpoint/tram - display_name = "Tram Station" - msg = "has arrived on the tram" - -/datum/spawnpoint/tram/New() - ..() - turfs = latejoin_tram - // // Holodorms // @@ -329,30 +264,6 @@ var/global/list/latejoin_tram = list() /obj/machinery/power/supermatter/touch_map_edge() qdel(src) -//Airlock antitox vendor -/obj/machinery/vending/wallmed_airlock - name = "Airlock NanoMed" - desc = "Wall-mounted Medical Equipment dispenser. This limited-use version dispenses antitoxins with mild painkillers for surface EVAs." - icon_state = "wallmed" - density = 0 //It is wall-mounted, and thus, not dense. --Superxpdude - products = list(/obj/item/weapon/reagent_containers/pill/airlock = 20) - contraband = list(/obj/item/weapon/reagent_containers/pill/tox = 2) - req_log_access = access_cmo - has_logs = 1 - -/obj/machinery/vending/wallmed1/public - products = list(/obj/item/stack/medical/bruise_pack = 8,/obj/item/stack/medical/ointment = 8,/obj/item/weapon/reagent_containers/hypospray/autoinjector = 16,/obj/item/device/healthanalyzer = 4) - -/obj/item/weapon/reagent_containers/pill/airlock - name = "\'Airlock\' Pill" - desc = "Neutralizes toxins and provides a mild analgesic effect." - icon_state = "pill2" - -/obj/item/weapon/reagent_containers/pill/airlock/New() - ..() - reagents.add_reagent("anti_toxin", 15) - reagents.add_reagent("paracetamol", 5) - //"Red" Armory Door /obj/machinery/door/airlock/security/armory name = "Red Armory" @@ -364,52 +275,12 @@ var/global/list/latejoin_tram = list() return ..(user) -/obj/structure/closet/secure_closet/guncabinet/excursion - name = "expedition weaponry cabinet" - req_one_access = list(access_explorer,access_armory) - -/obj/structure/closet/secure_closet/guncabinet/excursion/New() - ..() - for(var/i = 1 to 2) - new /obj/item/weapon/gun/energy/locked/frontier(src) - for(var/i = 1 to 2) - new /obj/item/weapon/gun/energy/locked/frontier/holdout(src) - -// Used at centcomm for the elevator -/obj/machinery/cryopod/robot/door/dorms - spawnpoint_type = /datum/spawnpoint/tram - //Tether-unique network cameras /obj/machinery/camera/network/tether network = list(NETWORK_TETHER) -/obj/machinery/camera/network/tcomms - network = list(NETWORK_TCOMMS) - /obj/machinery/camera/network/outside network = list(NETWORK_OUTSIDE) - -/obj/machinery/camera/network/exploration - network = list(NETWORK_EXPLORATION) - -/obj/machinery/camera/network/research/xenobio - network = list(NETWORK_RESEARCH, NETWORK_XENOBIO) - -//Camera monitors -/obj/machinery/computer/security/xenobio - name = "xenobiology camera monitor" - desc = "Used to access the xenobiology cell cameras." - icon_keyboard = "mining_key" - icon_screen = "mining" - network = list(NETWORK_XENOBIO) - circuit = /obj/item/weapon/circuitboard/security/xenobio - light_color = "#F9BBFC" - -/obj/item/weapon/circuitboard/security/xenobio - name = T_BOARD("xenobiology camera monitor") - build_path = /obj/machinery/computer/security/xenobio - network = list(NETWORK_XENOBIO) - req_access = list() // // ### Wall Machines On Full Windows ### // To make sure wall-mounted machines placed on full-tile windows are clickable they must be above the window @@ -466,3 +337,12 @@ var/global/list/latejoin_tram = list() layer = ABOVE_WINDOW_LAYER /obj/structure/noticeboard layer = ABOVE_WINDOW_LAYER + +/obj/tether_away_spawner/tether_outside + name = "Tether Outside Spawner" + prob_spawn = 75 + prob_fall = 50 + mobs_to_pick_from = list( + /mob/living/simple_mob/animal/passive/gaslamp = 300, + /mob/living/simple_mob/vore/alienanimals/teppi = 4 + ) diff --git a/maps/~map_system/maps.dm b/maps/~map_system/maps.dm index 7eb677df5e..757a49b1be 100644 --- a/maps/~map_system/maps.dm +++ b/maps/~map_system/maps.dm @@ -38,6 +38,7 @@ var/list/all_maps = list() var/static/list/hidden_levels = list() // Z-levels who's contents are hidden, but not forbidden (gateways) var/static/list/empty_levels = list() // Empty Z-levels that may be used for various things var/static/list/mappable_levels = list()// List of levels where mapping or other similar devices might work fully + var/static/list/below_blocked_levels = list()// List of levels where mapping or other similar devices might work fully // End Static Lists // Z-levels available to various consoles, such as the crew monitor. Defaults to station_levels if unset. @@ -53,7 +54,8 @@ var/list/all_maps = list() var/list/lateload_z_levels = list() //Similar to above, but only pick ONE to load, useful for random away missions and whatnot - var/list/lateload_single_pick = list() + var/list/lateload_gateway = list() + var/list/lateload_overmap = list() //VOREStation Add - The same thing as gateway, but not var/list/allowed_jobs = list() //Job datums to use. //Works a lot better so if we get to a point where three-ish maps are used @@ -81,6 +83,7 @@ var/list/all_maps = list() var/station_name = "BAD Station" var/station_short = "Baddy" + var/facility_type = "facility" var/dock_name = "THE PirateBay" var/dock_type = "station" //VOREStation Edit - for a list of valid types see the switch block in air_traffic.dm at line 148 var/boss_name = "Captain Roger" @@ -216,14 +219,9 @@ var/list/all_maps = list() // Get a list of 'nearby' or 'connected' zlevels. // You should at least return a list with the given z if nothing else. /datum/map/proc/get_map_levels(var/srcz, var/long_range = FALSE, var/om_range = -1) - //Overmap behavior - if(use_overmap) - //Get what sector we're in - var/obj/effect/overmap/visitable/O = get_overmap_sector(srcz) - if(!istype(O)) - //Anything in multiz then (or just themselves) - return GetConnectedZlevels(srcz) - + //Get what sector we're in + var/obj/effect/overmap/visitable/O = get_overmap_sector(srcz) + if(istype(O)) //Just the sector we're in if(om_range == -1) return O.map_z.Copy() @@ -236,7 +234,7 @@ var/list/all_maps = list() connections += V.map_z // Adding list to list adds contents return connections - //Traditional behavior + //Traditional behavior, if not in an overmap sector else //If long range, and they're at least in contact levels, return contact levels. if (long_range && (srcz in contact_levels)) @@ -315,6 +313,9 @@ var/list/all_maps = list() if(flags & MAP_LEVEL_CONSOLES) if (!map.map_levels) map.map_levels = list() map.map_levels += z + if(flags & MAP_LEVEL_BELOW_BLOCKED) + if (!map.below_blocked_levels) map.below_blocked_levels = list() + map.below_blocked_levels += z if(base_turf) map.base_turf_by_z["[z]"] = base_turf if(transit_chance) diff --git a/sound/AI/aurora.ogg b/sound/AI/aurora.ogg index 2d5298a508..138d5b228c 100644 Binary files a/sound/AI/aurora.ogg and b/sound/AI/aurora.ogg differ diff --git a/sound/AI/aurora_end.ogg b/sound/AI/aurora_end.ogg index b6f6a1b5c3..34204e3b26 100644 Binary files a/sound/AI/aurora_end.ogg and b/sound/AI/aurora_end.ogg differ diff --git a/sound/AI/tramarrived.ogg b/sound/AI/tramarrived.ogg index 8e4e5dde10..947b866373 100644 Binary files a/sound/AI/tramarrived.ogg and b/sound/AI/tramarrived.ogg differ diff --git a/sound/AI/tramcalled.ogg b/sound/AI/tramcalled.ogg index c6db309e89..08da4f2faf 100644 Binary files a/sound/AI/tramcalled.ogg and b/sound/AI/tramcalled.ogg differ diff --git a/sound/AI/tramdepart.ogg b/sound/AI/tramdepart.ogg index 7c8171cdb8..c58e4d100e 100644 Binary files a/sound/AI/tramdepart.ogg and b/sound/AI/tramdepart.ogg differ diff --git a/sound/ambience/approaching_planet.ogg b/sound/ambience/approaching_planet.ogg new file mode 100644 index 0000000000..e70b1246f4 Binary files /dev/null and b/sound/ambience/approaching_planet.ogg differ diff --git a/sound/ambience/boy.ogg b/sound/ambience/boy.ogg new file mode 100644 index 0000000000..47986853f8 Binary files /dev/null and b/sound/ambience/boy.ogg differ diff --git a/sound/ambience/shutdown.ogg b/sound/ambience/shutdown.ogg new file mode 100644 index 0000000000..9f0f6ed4a7 Binary files /dev/null and b/sound/ambience/shutdown.ogg differ diff --git a/sound/ambience/startup.ogg b/sound/ambience/startup.ogg new file mode 100644 index 0000000000..37deaeb732 Binary files /dev/null and b/sound/ambience/startup.ogg differ diff --git a/sound/effects/capture-crystal-in.ogg b/sound/effects/capture-crystal-in.ogg new file mode 100644 index 0000000000..b00d7be9c9 Binary files /dev/null and b/sound/effects/capture-crystal-in.ogg differ diff --git a/sound/effects/capture-crystal-negative.ogg b/sound/effects/capture-crystal-negative.ogg new file mode 100644 index 0000000000..a0d6de3395 Binary files /dev/null and b/sound/effects/capture-crystal-negative.ogg differ diff --git a/sound/effects/capture-crystal-out.ogg b/sound/effects/capture-crystal-out.ogg new file mode 100644 index 0000000000..363ad85c56 Binary files /dev/null and b/sound/effects/capture-crystal-out.ogg differ diff --git a/sound/effects/capture-crystal-problem.ogg b/sound/effects/capture-crystal-problem.ogg new file mode 100644 index 0000000000..3c0a7b343b Binary files /dev/null and b/sound/effects/capture-crystal-problem.ogg differ diff --git a/sound/effects/radio_common.ogg b/sound/effects/radio_common.ogg new file mode 100644 index 0000000000..20a1d1da0a Binary files /dev/null and b/sound/effects/radio_common.ogg differ diff --git a/sound/effects/skeleton_walk.ogg b/sound/effects/skeleton_walk.ogg new file mode 100644 index 0000000000..d5791ec542 Binary files /dev/null and b/sound/effects/skeleton_walk.ogg differ diff --git a/sound/effects/weather/indoorrain_end.ogg b/sound/effects/weather/indoorrain_end.ogg new file mode 100644 index 0000000000..c82039d95b Binary files /dev/null and b/sound/effects/weather/indoorrain_end.ogg differ diff --git a/sound/effects/weather/indoorrain_mid.ogg b/sound/effects/weather/indoorrain_mid.ogg new file mode 100644 index 0000000000..60ab5f1624 Binary files /dev/null and b/sound/effects/weather/indoorrain_mid.ogg differ diff --git a/sound/effects/weather/indoorrain_start.ogg b/sound/effects/weather/indoorrain_start.ogg new file mode 100644 index 0000000000..23165836a1 Binary files /dev/null and b/sound/effects/weather/indoorrain_start.ogg differ diff --git a/sound/items/rped.ogg b/sound/items/rped.ogg new file mode 100644 index 0000000000..93dca60d34 Binary files /dev/null and b/sound/items/rped.ogg differ diff --git a/sound/items/sonic_driver.ogg b/sound/items/sonic_driver.ogg new file mode 100644 index 0000000000..d02a2b6709 Binary files /dev/null and b/sound/items/sonic_driver.ogg differ diff --git a/sound/machines/door/knock_glass.ogg b/sound/machines/door/knock_glass.ogg new file mode 100644 index 0000000000..8878dda801 Binary files /dev/null and b/sound/machines/door/knock_glass.ogg differ diff --git a/sound/machines/door/knock_wood.wav b/sound/machines/door/knock_wood.wav new file mode 100644 index 0000000000..dae7b95b99 Binary files /dev/null and b/sound/machines/door/knock_wood.wav differ diff --git a/sound/voice/prbt.ogg b/sound/voice/prbt.ogg new file mode 100644 index 0000000000..75a24e1207 Binary files /dev/null and b/sound/voice/prbt.ogg differ diff --git a/sound/vore/belches/belch1.ogg b/sound/vore/belches/belch1.ogg new file mode 100644 index 0000000000..875e1be1b1 Binary files /dev/null and b/sound/vore/belches/belch1.ogg differ diff --git a/sound/vore/belches/belch10.ogg b/sound/vore/belches/belch10.ogg new file mode 100644 index 0000000000..5b96e8f2c4 Binary files /dev/null and b/sound/vore/belches/belch10.ogg differ diff --git a/sound/vore/belches/belch11.ogg b/sound/vore/belches/belch11.ogg new file mode 100644 index 0000000000..d1ab4d425b Binary files /dev/null and b/sound/vore/belches/belch11.ogg differ diff --git a/sound/vore/belches/belch12.ogg b/sound/vore/belches/belch12.ogg new file mode 100644 index 0000000000..dfd6b6210f Binary files /dev/null and b/sound/vore/belches/belch12.ogg differ diff --git a/sound/vore/belches/belch13.ogg b/sound/vore/belches/belch13.ogg new file mode 100644 index 0000000000..1863c1d817 Binary files /dev/null and b/sound/vore/belches/belch13.ogg differ diff --git a/sound/vore/belches/belch14.ogg b/sound/vore/belches/belch14.ogg new file mode 100644 index 0000000000..8941c9b31f Binary files /dev/null and b/sound/vore/belches/belch14.ogg differ diff --git a/sound/vore/belches/belch15.ogg b/sound/vore/belches/belch15.ogg new file mode 100644 index 0000000000..8cb87ee579 Binary files /dev/null and b/sound/vore/belches/belch15.ogg differ diff --git a/sound/vore/belches/belch2.ogg b/sound/vore/belches/belch2.ogg new file mode 100644 index 0000000000..df18412d04 Binary files /dev/null and b/sound/vore/belches/belch2.ogg differ diff --git a/sound/vore/belches/belch3.ogg b/sound/vore/belches/belch3.ogg new file mode 100644 index 0000000000..5aae9d182d Binary files /dev/null and b/sound/vore/belches/belch3.ogg differ diff --git a/sound/vore/belches/belch4.ogg b/sound/vore/belches/belch4.ogg new file mode 100644 index 0000000000..a69f66b369 Binary files /dev/null and b/sound/vore/belches/belch4.ogg differ diff --git a/sound/vore/belches/belch5.ogg b/sound/vore/belches/belch5.ogg new file mode 100644 index 0000000000..c95bf30e0a Binary files /dev/null and b/sound/vore/belches/belch5.ogg differ diff --git a/sound/vore/belches/belch6.ogg b/sound/vore/belches/belch6.ogg new file mode 100644 index 0000000000..8e981f3b50 Binary files /dev/null and b/sound/vore/belches/belch6.ogg differ diff --git a/sound/vore/belches/belch7.ogg b/sound/vore/belches/belch7.ogg new file mode 100644 index 0000000000..70d5aab6c8 Binary files /dev/null and b/sound/vore/belches/belch7.ogg differ diff --git a/sound/vore/belches/belch8.ogg b/sound/vore/belches/belch8.ogg new file mode 100644 index 0000000000..1703c9999d Binary files /dev/null and b/sound/vore/belches/belch8.ogg differ diff --git a/sound/vore/belches/belch9.ogg b/sound/vore/belches/belch9.ogg new file mode 100644 index 0000000000..ffb092b1da Binary files /dev/null and b/sound/vore/belches/belch9.ogg differ diff --git a/sound/weapons/dodgeball.ogg b/sound/weapons/dodgeball.ogg new file mode 100644 index 0000000000..3e76dcdfc8 Binary files /dev/null and b/sound/weapons/dodgeball.ogg differ diff --git a/sound/weapons/whip.ogg b/sound/weapons/whip.ogg new file mode 100644 index 0000000000..3c9a4aff09 Binary files /dev/null and b/sound/weapons/whip.ogg differ diff --git a/tgui/packages/tgui-dev-server/package.json b/tgui/packages/tgui-dev-server/package.json index ecc42dd744..b8cbf39a61 100644 --- a/tgui/packages/tgui-dev-server/package.json +++ b/tgui/packages/tgui-dev-server/package.json @@ -3,7 +3,7 @@ "name": "tgui-dev-server", "version": "4.3.0", "dependencies": { - "axios": "^0.21.1", + "axios": "^0.21.2", "common": "workspace:*", "esm": "^3.2.25", "glob": "^7.1.6", diff --git a/tgui/packages/tgui/interfaces/CharacterDirectory.js b/tgui/packages/tgui/interfaces/CharacterDirectory.js index e75d7096de..7a31f1ac0a 100644 --- a/tgui/packages/tgui/interfaces/CharacterDirectory.js +++ b/tgui/packages/tgui/interfaces/CharacterDirectory.js @@ -10,12 +10,16 @@ const getTagColor = tag => { return "label"; case "Pred": return "red"; + case "Pred-Pref": + return "orange"; case "Prey": return "blue"; - case "Switch": - return "purple"; - case "Non-Vore": + case "Prey-Pref": return "green"; + case "Switch": + return "yellow"; + case "Non-Vore": + return "black"; } }; diff --git a/tgui/packages/tgui/interfaces/RIGSuit.js b/tgui/packages/tgui/interfaces/RIGSuit.js index 3b248a56a9..cc7ec9abe3 100644 --- a/tgui/packages/tgui/interfaces/RIGSuit.js +++ b/tgui/packages/tgui/interfaces/RIGSuit.js @@ -25,7 +25,7 @@ export const RIGSuit = (props, context) => { // Non-AI trying to control the hardsuit while it's AI control overridden override = -- HARDSUIT CONTROL OVERRIDDEN BY AI --; } - + return ( { const RIGSuitStatus = (props, context) => { const { act, data } = useBackend(context); - + const { // Power Bar chargestatus, @@ -57,6 +57,7 @@ const RIGSuitStatus = (props, context) => { // Suit Status sealing, sealed, + cooling, // Cover Locks emagged, securitycheck, @@ -77,6 +78,14 @@ const RIGSuitStatus = (props, context) => { onClick={() => act("toggle_seals")} /> ); + const CoolingButton = ( + + {Object.keys(possible_fullscreens).map(key => ( - {Object.keys(possible_fullscreens).map(key => ( - - ))} - - - ) || "Error"} + key={key} + width="256px" + height="256px" + selected={key === belly_fullscreen} + onClick={() => act("set_attribute", { attribute: "b_fullscreen", val: key })}> + + + ))} + ); }; +const VoreSelectedBellyInteractions = (props, context) => { + const { act } = useBackend(context); + + const { belly } = props; + const { + escapable, + interacts, + } = belly; + + return ( +
act("set_attribute", { attribute: "b_escapable" })} + icon={escapable ? "toggle-on" : "toggle-off"} + selected={escapable} + content={escapable ? "Interactions On" : "Interactions Off"} /> + }> + {escapable ? ( + + +
+ ); +}; + const VoreContentsPanel = (props, context) => { const { act, data } = useBackend(context); const { @@ -634,6 +784,7 @@ const VoreUserPreferences = (props, context) => { show_vore_fx, can_be_drop_prey, can_be_drop_pred, + allow_inbelly_spawning, allow_spontaneous_tf, step_mechanics_active, pickup_mechanics_active, @@ -644,6 +795,230 @@ const VoreUserPreferences = (props, context) => { show_pictures, } = data; + const preferences = { + digestion: { + action: "toggle_digest", + test: digestable, + tooltip: { + main: "This button is for those who don't like being digested. It can make you undigestable.", + enable: "Click here to allow digestion.", + disable: "Click here to prevent digestion.", + }, + content: { + enabled: "Digestion Allowed", + disabled: "No Digestion", + }, + }, + absorbable: { + action: "toggle_absorbable", + test: absorbable, + tooltip: { + main: "This button allows preds to know whether you prefer or don't prefer to be absorbed.", + enable: "Click here to allow being absorbed.", + disable: "Click here to disallow being absorbed.", + }, + content: { + enabled: "Absorption Allowed", + disabled: "No Absorption", + }, + }, + devour: { + action: "toggle_devour", + test: devourable, + tooltip: { + main: "This button is to toggle your ability to be devoured by others.", + enable: "Click here to allow being devoured.", + disable: "Click here to prevent being devoured.", + }, + content: { + enabled: "Devouring Allowed", + disabled: "No Devouring", + }, + }, + mobvore: { + action: "toggle_mobvore", + test: allowmobvore, + tooltip: { + main: "This button is for those who don't like being eaten by mobs.", + enable: "Click here to allow being eaten by mobs.", + disable: "Click here to prevent being eaten by mobs.", + }, + content: { + enabled: "Mobs eating you allowed", + disabled: "No Mobs eating you", + }, + }, + feed: { + action: "toggle_feed", + test: feeding, + tooltip: { + main: "This button is to toggle your ability to be fed to or by others vorishly.", + enable: "Click here to allow being fed to/by other people.", + disable: "Click here to prevent being fed to/by other people.", + }, + content: { + enabled: "Feeding Allowed", + disabled: "No Feeding", + }, + }, + healbelly: { + action: "toggle_healbelly", + test: permit_healbelly, + tooltip: { + main: "This button is for those who don't like healbelly used on them as a mechanic." + + " It does not affect anything, but is displayed under mechanical prefs for ease of quick checks.", + enable: "Click here to allow being heal-bellied.", + disable: "Click here to prevent being heal-bellied.", + }, + content: { + enabled: "Heal-bellies Allowed", + disabled: "No Heal-bellies", + }, + }, + dropnom_prey: { + action: "toggle_dropnom_prey", + test: can_be_drop_prey, + tooltip: { + main: "This toggle is for spontaneous, environment related vore" + + " as prey, including drop-noms, teleporters, etc.", + enable: "Click here to allow being spontaneous prey.", + disable: "Click here to prevent being spontaneous prey.", + }, + content: { + enabled: "Spontaneous Prey Enabled", + disabled: "Spontaneous Prey Disabled", + }, + }, + dropnom_pred: { + action: "toggle_dropnom_pred", + test: can_be_drop_pred, + tooltip: { + main: "This toggle is for spontaneous, environment related vore" + + " as a predator, including drop-noms, teleporters, etc.", + enable: "Click here to allow being spontaneous pred.", + disable: "Click here to prevent being spontaneous pred.", + }, + content: { + enabled: "Spontaneous Pred Enabled", + disabled: "Spontaneous Pred Disabled", + }, + }, + inbelly_spawning: { + action: "toggle_allow_inbelly_spawning", + test: allow_inbelly_spawning, + tooltip: { + main: "This toggle is ghosts being able to spawn in one of your bellies." + + " You will have to confirm again when they attempt to.", + enable: "Click here to allow prey to spawn in you.", + disable: "Click here to prevent prey from spawning in you.", + }, + content: { + enabled: "Inbelly Spawning Allowed", + disabled: "Inbelly Spawning Forbidden", + }, + }, + noisy: { + action: "toggle_noisy", + test: noisy, + tooltip: { + main: "Toggle audible hunger noises.", + enable: "Click here to turn on hunger noises.", + disable: "Click here to turn off hunger noises.", + }, + content: { + enabled: "Hunger Noises Enabled", + disabled: "Hunger Noises Disabled", + }, + }, + resize: { + action: "toggle_resize", + test: resizable, + tooltip: { + main: "This button is to toggle your ability to be resized by others.", + enable: "Click here to allow being resized.", + disable: "Click here to prevent being resized.", + }, + content: { + enabled: "Resizing Allowed", + disabled: "No Resizing", + }, + }, + steppref: { + action: "toggle_steppref", + test: step_mechanics_active, + tooltip: { + main: "", + enable: "You will not participate in step mechanics." + + " Click to enable step mechanics.", + disable: "This setting controls whether or not you participate in size-based step mechanics." + + " Includes both stepping on others, as well as getting stepped on. Click to disable step mechanics.", + }, + content: { + enabled: "Step Mechanics Enabled", + disabled: "Step Mechanics Disabled", + }, + }, + vore_fx: { + action: "toggle_fx", + test: show_vore_fx, + tooltip: { + main: "", + enable: "Regardless of Predator Setting, you will not see their FX settings." + + " Click this to enable showing FX.", + disable: "This setting controls whether or not a pred is allowed to mess with your HUD and fullscreen overlays." + + " Click to disable all FX.", + }, + content: { + enabled: "Show Vore FX", + disabled: "Do Not Show Vore FX", + }, + }, + remains: { + action: "toggle_leaveremains", + test: digest_leave_remains, + tooltip: { + main: "", + enable: "Regardless of Predator Setting, you will not leave remains behind." + + " Click this to allow leaving remains.", + disable: "Your Predator must have this setting enabled in their belly modes to allow remains to show up," + + " if they do not, they will not leave your remains behind, even with this on. Click to disable remains.", + }, + content: { + enabled: "Allow Leaving Remains", + disabled: "Do Not Allow Leaving Remains", + }, + }, + pickuppref: { + action: "toggle_pickuppref", + test: pickup_mechanics_active, + tooltip: { + main: "", + enable: "You will not participate in pick-up mechanics." + + " Click this to allow picking up/being picked up.", + disable: "Allows macros to pick you up into their hands, and you to pick up micros." + + " Click to disable pick-up mechanics.", + }, + content: { + enabled: "Pick-up Mechanics Enabled", + disabled: "Pick-up Mechanics Disabled", + }, + }, + spontaneous_tf: { + action: "toggle_allow_spontaneous_tf", + test: allow_spontaneous_tf, + tooltip: { + main: "This toggle is for spontaneous or environment related transformation" + + " as a victim, such as via chemicals.", + enable: "Click here to allow being spontaneously transformed.", + disable: "Click here to disable being spontaneously transformed.", + }, + content: { + enabled: "Spontaneous TF Enabled", + disabled: "Spontaneous TF Disabled", + }, + }, + }; + return (
act("show_pictures")}> @@ -652,198 +1027,61 @@ const VoreUserPreferences = (props, context) => { }> -
); }; + +const VoreUserPreferenceItem = (props, context) => { + const { act } = useBackend(context); + + const { spec, ...rest } = props; + const { + action, + test, + tooltip, + content, + } = spec; + + return ( +